diff options
Diffstat (limited to 'data/extensions/https-everywhere-eff@eff.org/chrome/content')
10 files changed, 536 insertions, 702 deletions
diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul index c3467ad..f22e086 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul @@ -33,28 +33,28 @@ style="color: blue; cursor:hand; text-decoration:underline; font-style:bold" onmouseover="event.target.style.cursor='pointer'" onmouseout="event.target.style.cursor='default'" - onclick="window_opener('https://www.eff.org/donate')"/> + onclick="window_opener('https://supporters.eff.org/donate/support-https-everywhere')"/> </label> <groupbox> <caption label="&https-everywhere.about.version;" /> - <label>5.1.2</label> + <label>5.1.6</label> </groupbox> <groupbox> <caption label="&https-everywhere.about.created_by;" /> - <label>Mike Perry, Peter Eckersley, and Yan Zhu</label> + <label>Mike Perry, Peter Eckersley&https-everywhere.about.and; Yan Zhu</label> </groupbox> <groupbox> <caption label="&https-everywhere.about.librarians;" /> - <label>Seth Schoen, MB and Andreas Jonsson</label> + <label>J0WI, MB, Nick Semenkovich, Sam Reed&https-everywhere.about.and; Søren Fuglede Jørgensen</label> </groupbox> <groupbox> <caption label="&https-everywhere.about.thanks;" /> - <label>Many many contributors, including Aaron Swartz, Alec Moskvin, - Aleksey Kosterin, Alex Xu, Anas Qtiesh, Artyom Gavrichenkov, Brian + <label>&https-everywhere.about.many_contributors; Aaron Swartz, Alec Moskvin, + Aleksey Kosterin, Alex Xu, Anas Qtiesh, Andreas Jonsson, Artyom Gavrichenkov, Brian Carpenter, Chris Palmer, Christian Inci, Christopher Liu, Claudio Moretti, Colonel Graff, Dan Auerbach, Daniel Kahn Gillmor, dm0, The Doctor, Felix Geyer, Fruitless Creek, George Kargiotakis, haviah, Heiko @@ -62,11 +62,9 @@ katmagic, Kevin Jacobs, Korte, Liam K, Leonardo Brondani Schenkel, Marti Raudsepp, Micah Lee, Mike Cardwell, Mangix, Matthias-Christian Ott, Mikko Harhanen, Mishari Muqbil, Neheb, Ori Avtalion, Osama Khalid, nitrox, Pablo Castellano, Paul Wise, Pavel Kazakov, Phol Paucar, Richard - Green, Roan Kattouw, Rules Moore, Stefan Tomanek, Sam Reed, Steve + Green, Roan Kattouw, Rules Moore, Seth Schoen, Stefan Tomanek, Sam Reed, Steve Milner, Sujit Rao, TK-999, Vendo, Victor Garin, Weiland Hoffmann, Whizz - Mo and Yan Zhu. Also, portions of HTTPS Everywhere are based on code - from NoScript, by Giorgio Maone and others. We are grateful for their - excellent work!</label> + Mo and Yan Zhu. &https-everywhere.about.noscript;</label> </groupbox> </vbox> </dialog> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js index 55179ff..1c5263a 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js @@ -73,9 +73,11 @@ ApplicableList.prototype = { populate_list: function() { // The base URI of the dom tends to be loaded from some /other/ // ApplicableList, so pretend we're loading it from here. - HTTPSEverywhere.instance.https_rules.rewrittenURI(this, this.uri, function() { - // do nothing - }); + var uri = this.uri; + if (!(uri.schemeIs("http") || uri.schemeIs("https"))) { + return true; + } + HTTPSEverywhere.instance.https_rules.rewrittenURI(this, uri); this.log(DBUG, "populating using alist #" + this.serial); }, @@ -215,9 +217,15 @@ ApplicableList.prototype = { }, add_command: function(rule) { + // basic validation for data to be added to xul + var ruleId = String(rule.id); + if (!ruleId.match(/^[a-zA-Z_0-9]+$/)) { + return; + } + var command = this.document.getElementById("https-everywhere-menuitem-rule-toggle-template").cloneNode(); - command.setAttribute('id', JSON.stringify(rule.id)+'-command'); - command.setAttribute('data-id', JSON.stringify(rule.id)); + command.setAttribute('id', ruleId+'-command'); + command.setAttribute('data-id', ruleId); command.setAttribute('label', rule.name); this.commandset.appendChild(command); }, diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js index f9134bc..4fb35e6 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js @@ -1,150 +1,150 @@ -Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
-
-function Cookie(s, host) {
- this.parse(s, host);
-}
-Cookie.computeId = function(c) {
- return c.name + ";" + c.host + "/" + c.path;
-};
-Cookie.find = function(f) {
- var cc = Cookie.prototype.cookieManager.enumerator;
- var c;
- while (cc.hasMoreElements()) {
- if (f(c = cc.getNext())) return c;
- }
- return null;
-};
-
-Cookie.attributes = { host: 'domain', path: 'path', expires: 'expires', isHttpOnly: 'HttpOnly', isSecure: 'Secure' };
-Cookie.prototype = {
-
- name: '',
- value: '',
- source: '',
- domain: '',
- host: '',
- rawHost: '',
- path: '',
- secure: false,
- httponly: false,
- session: true,
- expires: 0,
-
- id: '',
-
-
- toString: function() {
- var c = [this['name'] + "=" + this.value];
- var v;
- const aa = Cookie.attributes;
- for (var k in aa) {
- var p = aa[k];
- v = this[k];
- switch(typeof(v)) {
- case "string":
- if (v) c.push(p + "=" + v);
- break;
- case "boolean":
- if (v) c.push(p);
- break;
- case "number":
- if (!this.isSession) c.push(p + "=" + new Date(v * 1000).toUTCString());
- break;
- }
- }
- return c.join("; ");
- },
- parse: function(s, host) {
- var p;
- if (this.source) {
- // cleanup for recycle
- for (p in this) {
- if (typeof (p) != "function") delete this[p];
- }
- }
- this.source = s;
- this.host = host;
-
- var parts = s.split(/;\s*/);
- var nv = parts.shift().split("=");
-
- this.name = nv.shift() || '';
- this.value = nv.join('=') || '';
-
- var n, v;
- for each (p in parts) {
- nv = p.split("=");
- switch (n = nv[0].toLowerCase()) {
- case 'expires':
- v = Math.round(Date.parse((nv[1] || '').replace(/\-/g, ' ')) / 1000);
- break;
- case 'domain':
- case 'path':
- v = nv[1] || '';
- break;
- case 'secure':
- case 'httponly':
- v = true;
- break;
- default:
- n = 'unknown';
- }
- this[n] = v;
- }
- if (!this.expires) {
- this.session = true;
- this.expires = Math.round(new Date() / 1000) + 31536000;
- }
- if (this.domain) {
- if (!this.isDomain) this.domain = "." + this.domain;
- this.host = this.domain;
- }
- this.rawHost = this.host.replace(/^\./, '');
-
- this.id = Cookie.computeId(this);
- },
-
-
- get cookieManager() {
- delete Cookie.prototype.cookieManager;
- var cman = Cc["@mozilla.org/cookiemanager;1"]
- .getService(Ci.nsICookieManager2).QueryInterface(Ci.nsICookieManager);
- return Cookie.prototype.cookieManager = cman;
- },
- belongsTo: function(host, path) {
- if (path && this.path && path.indexOf(this.path) != 0) return false;
- if (host == this.rawHost) return true;
- var d = this.domain;
- return d && (host == d || this.isDomain && host.slice(-d.length) == d);
- },
- save: function() {
- this.save = ("cookieExists" in this.cookieManager)
- ? function() { this.cookieManager.add(this.host, this.path, this.name, this.value, this.secure, this.httponly, this.session, this.expires); }
- : function() { this.cookieManager.add(this.host, this.path, this.name, this.value, this.secure, this.session, this.expires);}
- ;
- return this.save();
- },
- exists: function() {
- var cc = this.cookieManager.enumerator;
- while(cc.hasMoreElements()) {
- if (this.sameAs(cc.getNext())) return true;
- }
- return false;
- },
-
- sameAs: function(c) {
- (c instanceof Ci.nsICookie) && (c instanceof Ci.nsICookie2);
- return Cookie.computeId(c) == this.id;
- },
-
- // nsICookie2 interface extras
- get isSecure() { return this.secure; },
- get expiry() { return this.expires; },
- get isSession() { return this.session; },
- get isHttpOnly() { return this.httponly; },
- get isDomain() { return this.domain && this.domain[0] == '.'; },
- policy: 0,
- status: 0,
- QueryInterface: XPCOMUtils.generateQI([Ci.nsICookie, Ci.nsICookie2])
-
-};
+Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); + +function Cookie(s, host) { + this.parse(s, host); +} +Cookie.computeId = function(c) { + return c.name + ";" + c.host + "/" + c.path; +}; +Cookie.find = function(f) { + var cc = Cookie.prototype.cookieManager.enumerator; + var c; + while (cc.hasMoreElements()) { + if (f(c = cc.getNext())) return c; + } + return null; +}; + +Cookie.attributes = { host: 'domain', path: 'path', expires: 'expires', isHttpOnly: 'HttpOnly', isSecure: 'Secure' }; +Cookie.prototype = { + + name: '', + value: '', + source: '', + domain: '', + host: '', + rawHost: '', + path: '', + secure: false, + httponly: false, + session: true, + expires: 0, + + id: '', + + + toString: function() { + var c = [this['name'] + "=" + this.value]; + var v; + const aa = Cookie.attributes; + for (var k in aa) { + var p = aa[k]; + v = this[k]; + switch(typeof(v)) { + case "string": + if (v) c.push(p + "=" + v); + break; + case "boolean": + if (v) c.push(p); + break; + case "number": + if (!this.isSession) c.push(p + "=" + new Date(v * 1000).toUTCString()); + break; + } + } + return c.join("; "); + }, + parse: function(s, host) { + var p; + if (this.source) { + // cleanup for recycle + for (p in this) { + if (typeof (p) != "function") delete this[p]; + } + } + this.source = s; + this.host = host; + + var parts = s.split(/;\s*/); + var nv = parts.shift().split("="); + + this.name = nv.shift() || ''; + this.value = nv.join('=') || ''; + + var n, v; + for each (p in parts) { + nv = p.split("="); + switch (n = nv[0].toLowerCase()) { + case 'expires': + v = Math.round(Date.parse((nv[1] || '').replace(/\-/g, ' ')) / 1000); + break; + case 'domain': + case 'path': + v = nv[1] || ''; + break; + case 'secure': + case 'httponly': + v = true; + break; + default: + n = 'unknown'; + } + this[n] = v; + } + if (!this.expires) { + this.session = true; + this.expires = Math.round(new Date() / 1000) + 31536000; + } + if (this.domain) { + if (!this.isDomain) this.domain = "." + this.domain; + this.host = this.domain; + } + this.rawHost = this.host.replace(/^\./, ''); + + this.id = Cookie.computeId(this); + }, + + + get cookieManager() { + delete Cookie.prototype.cookieManager; + var cman = Cc["@mozilla.org/cookiemanager;1"] + .getService(Ci.nsICookieManager2).QueryInterface(Ci.nsICookieManager); + return Cookie.prototype.cookieManager = cman; + }, + belongsTo: function(host, path) { + if (path && this.path && path.indexOf(this.path) != 0) return false; + if (host == this.rawHost) return true; + var d = this.domain; + return d && (host == d || this.isDomain && host.slice(-d.length) == d); + }, + save: function() { + this.save = ("cookieExists" in this.cookieManager) + ? function() { this.cookieManager.add(this.host, this.path, this.name, this.value, this.secure, this.httponly, this.session, this.expires); } + : function() { this.cookieManager.add(this.host, this.path, this.name, this.value, this.secure, this.session, this.expires);} + ; + return this.save(); + }, + exists: function() { + var cc = this.cookieManager.enumerator; + while(cc.hasMoreElements()) { + if (this.sameAs(cc.getNext())) return true; + } + return false; + }, + + sameAs: function(c) { + (c instanceof Ci.nsICookie) && (c instanceof Ci.nsICookie2); + return Cookie.computeId(c) == this.id; + }, + + // nsICookie2 interface extras + get isSecure() { return this.secure; }, + get expiry() { return this.expires; }, + get isSession() { return this.session; }, + get isHttpOnly() { return this.httponly; }, + get isDomain() { return this.domain && this.domain[0] == '.'; }, + policy: 0, + status: 0, + QueryInterface: XPCOMUtils.generateQI([Ci.nsICookie, Ci.nsICookie2]) + +}; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js index 3053014..c5834dd 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js @@ -39,53 +39,7 @@ const HTTPS = { * untouched or aborted. */ replaceChannel: function(applicable_list, channel, httpNowhereEnabled) { - var that = this; - // If the callback gets called immediately (not async), it will be called - // before the return from the function sets this variable, so we default it - // to true. - var callbackedImmediate = true; - callbackedImmediate = HTTPSRules.rewrittenURI(applicable_list, channel.URI.clone(), function(blob) { - if (callbackedImmediate) { - that.replaceChannelCallback(applicable_list, channel, httpNowhereEnabled, blob); - } else { - // If we can't redirect right away because we're waiting on some disk - // I/O to read the rules, we will have told the channel to redirect to - // itself and suspend, to insure it doesn't actually open while it's - // waiting for us to decide what to do. See - // https://bugzilla.mozilla.org/show_bug.cgi?id=1170197. - // Now that we're in the callback, we know the rules are loaded. So we - // tell the channel to go ahead and continue with the redirect-to-self. - // That will trigger on-modify-request again, and we'll wind up here - // again, except with the rules already loaded. We don't try a - // redirectTo here because it would fail with NS_ERROR_IN_PROGRESS. - try { - channel.resume(); - } catch (e) { - that.log(WARN, 'Failed to resume ' + channel.URI.spec + ': ' + e); - return; - } - that.log(DBUG, 'Succeeded resuming ' + channel.URI.spec + ' '); - } - }); - if (!callbackedImmediate) { - try { - channel.redirectTo(channel.URI); - } catch (e) { - this.log(WARN, 'Failed to redirect to self ' + channel.URI.spec + ': ' + e); - return; - } - try { - channel.suspend(); - } catch (e) { - this.log(WARN, 'Failed to suspend ' + channel.URI.spec + ': ' + e); - return; - } - this.log(DBUG, 'Succeeded suspending ' + channel.URI.spec); - } - }, - - replaceChannelCallback: function(applicable_list, channel, httpNowhereEnabled, blob, callbackedImmediate) { - var that = this; + var blob = HTTPSRules.rewrittenURI(applicable_list, channel.URI.clone()); var isSTS = securityService.isSecureURI( CI.nsISiteSecurityService.HEADER_HSTS, channel.URI, 0); if (blob === null) { diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js index 0dd2736..78536de 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js @@ -68,10 +68,6 @@ RuleSet.prototype = { ensureCompiled: function() { // Postpone compilation of exclusions, rules and cookies until now, to accelerate // browser load time. - // NOTE: Since rulesets are now lazy-loaded in FF, this will be called immediately - // after the ruleset is loaded, and doesn't give much startup benefit. We - // may want to switch these back so patterns are compiled immediately on - // ruleset load, for simplicity. if (this.compiled) return; var i; @@ -143,13 +139,13 @@ RuleSet.prototype = { var urispec = uri.spec; this.ensureCompiled(); - + if (this.ruleset_match_c && !this.ruleset_match_c.test(urispec)) return false; - + for (var i = 0; i < this.exclusions.length; ++i) if (this.exclusions[i].pattern_c.test(urispec)) return false; - + for (var i = 0; i < this.rules.length; ++i) if (this.rules[i].from_c.test(urispec)) return true; return false; @@ -328,7 +324,7 @@ const RuleWriter = { // Add this ruleset id into HTTPSRules.targets if it's not already there. // This should only happen for custom user rules. Built-in rules get // their ids preloaded into the targets map, and have their <target> - // tags stripped when the sqlite database is built. + // tags stripped when the JSON database is built. var targets = xmlruleset.getElementsByTagName("target"); for (var i = 0; i < targets.length; i++) { var host = targets[i].getAttribute("host"); @@ -391,84 +387,32 @@ const HTTPSRules = { // applicable ruleset ids this.rulesetsByID = {}; this.rulesetsByName = {}; - this.targetsLoaded = false; - this.targetsLoadingCallbacks = []; + var t1 = new Date().getTime(); this.checkMixedContentHandling(); var rulefiles = RuleWriter.enumerate(RuleWriter.getCustomRuleDir()); + + this.loadTargets(); this.scanRulefiles(rulefiles); - // Initialize database connection. - var dbFile = new FileUtils.File(RuleWriter.chromeToPath("chrome://https-everywhere/content/rulesets.sqlite")); - this.rulesetDBConn = Services.storage.openDatabase(dbFile); } catch(e) { this.log(DBUG,"Rules Failed: "+e); } + var t2 = new Date().getTime(); + this.log(NOTE,"Loading targets took " + (t2 - t1) / 1000.0 + " seconds"); return; }, - loadTargets: function(callback) { - if (this.targetsLoaded) { - callback(); - return; - } - // loadTargets can be called multiple times before it resolves. We store a - // list of callbacks to call when done, and make sure we only actually do - // the query once. - this.targetsLoadingCallbacks.push(callback); - if (this.targetsLoadingCallbacks.length > 1) { - this.log(DBUG, "Skipping loadTargets, a query is already in progress."); - } - // Load the mapping of hostname target -> ruleset ID from DB. - // This is a little slow (287 ms on a Core2 Duo @ 2.2GHz with SSD), - // but is faster than loading all of the rulesets. If this becomes a - // bottleneck, change it to load in a background webworker, or load - // a smaller bloom filter instead. - var t1 = new Date().getTime(); - var query = this.rulesetDBConn.createStatement("select host, ruleset_id from targets"); - var that = this; - var count = 0; - this.log(INFO, "Querying targets"); - // TODO: Store "this is pending" and resolve all pending once the whole - // thing is loaded. - query.executeAsync({ - handleResult: function(aResultSet) { - try { - for (let row = aResultSet.getNextRow(); - row; - row = aResultSet.getNextRow()) { - var host = row.getResultByName("host"); - var id = row.getResultByName("ruleset_id"); - count ++; - if (!that.targets[host]) { - that.targets[host] = [id]; - } else { - that.targets[host].push(id); - } - } - } catch (e) { - that.log(WARN, "ERROR " + e); - } - }, - handleError: function(aError) { - that.log(WARN, "SQLite error loading targets: " + aError.message); - callback(); - }, - - handleCompletion: function(aReason) { - if (aReason != Components.interfaces.mozIStorageStatementCallback.REASON_FINISHED) { - that.log(WARN, "SQLite query canceled or aborted!"); - } else { - var t2 = new Date().getTime(); - that.log(NOTE, "Loading " + count + " targets took " + (t2 - t1) / 1000.0 + " seconds"); - that.targetsLoadingCallbacks.forEach(function(callback) { - callback(); - }); - that.targetsLoadingCallbacks = []; - that.targetsLoaded = true; - } - } - }); + /** + * Read and parse the ruleset JSON. + * Note: This only parses the outer JSON wrapper. Each ruleset is itself an + * XML string, which will be parsed on an as-needed basis. + */ + loadTargets: function() { + var file = new FileUtils.File(RuleWriter.chromeToPath("chrome://https-everywhere/content/rulesets.json")); + var rules = JSON.parse(RuleWriter.read(file)); + this.targets = rules.targets; + this.rulesetStrings = rules.rulesetStrings; }, checkMixedContentHandling: function() { @@ -519,9 +463,8 @@ const HTTPSRules = { } }, - // return true iff callback has been called already, false if callback will be - // called asynchronously - rewrittenURI: function(alist, input_uri, callback) { + + rewrittenURI: function(alist, input_uri) { // This function oversees the task of working out if a uri should be // rewritten, what it should be rewritten to, and recordkeeping of which // applicable rulesets are and aren't active. Previously this returned @@ -535,55 +478,44 @@ const HTTPSRules = { if (!alist) this.log(DBUG, "No applicable list rewriting " + input_uri.spec); this.log(DBUG, "Processing " + input_uri.spec); + var uri = this.sanitiseURI(input_uri); + // Get the list of rulesets that target this host try { - var host = input_uri.host + var rs = this.potentiallyApplicableRulesets(uri.host); } catch(e) { - // NS_ERROR_FAILURE is normal for accessing uri.host. It just means that - // host is not applicable for the URI scheme, e.g. about: URIs. - // If that happens we quietly return null. If another exception happens - // we noisily return null. - if (e.name != "NS_ERROR_FAILURE") { - this.log(WARN, 'Could not get host from ' + input_uri.spec + ': ' + e); - } - callback(null); - return true; - } - var that = this; - return this.potentiallyApplicableRulesets(host, function(rs) { - var uri = that.sanitiseURI(input_uri); - // ponder each potentially applicable ruleset, working out if it applies - // and recording it as active/inactive/moot/breaking in the applicable list - for (i = 0; i < rs.length; ++i) { - if (!rs[i].active) { - if (alist && rs[i].wouldMatch(uri, alist)) - alist.inactive_rule(rs[i]); - continue; - } - blob.newuri = rs[i].transformURI(uri); - if (blob.newuri) { - if (alist) { - if (uri.spec in https_everywhere_blacklist) { - alist.breaking_rule(rs[i]); - } else { - alist.active_rule(rs[i]); - } - } - if (userpass_present) blob.newuri.userPass = input_uri.userPass; - blob.applied_ruleset = rs[i]; - callback(blob); - return - } - if (uri.scheme == "https" && alist) { - // we didn't rewrite but the rule applies to this domain and the - // requests are going over https - if (rs[i].wouldMatch(uri, alist)) alist.moot_rule(rs[i]); - continue; - } + this.log(NOTE, 'Could not check applicable rules for '+uri.spec + '\n'+e); + return null; + } + + // ponder each potentially applicable ruleset, working out if it applies + // and recording it as active/inactive/moot/breaking in the applicable list + for (i = 0; i < rs.length; ++i) { + if (!rs[i].active) { + if (alist && rs[i].wouldMatch(uri, alist)) + alist.inactive_rule(rs[i]); + continue; + } + blob.newuri = rs[i].transformURI(uri); + if (blob.newuri) { + if (alist) { + if (uri.spec in https_everywhere_blacklist) + alist.breaking_rule(rs[i]); + else + alist.active_rule(rs[i]); + } + if (userpass_present) blob.newuri.userPass = input_uri.userPass; + blob.applied_ruleset = rs[i]; + return blob; } - callback(null); - return; - }); + if (uri.scheme == "https" && alist) { + // we didn't rewrite but the rule applies to this domain and the + // requests are going over https + if (rs[i].wouldMatch(uri, alist)) alist.moot_rule(rs[i]); + continue; + } + } + return null; }, sanitiseURI: function(input_uri) { @@ -635,82 +567,30 @@ const HTTPSRules = { }, // Load a ruleset by numeric id, e.g. 234 - loadRulesetById: function(ruleset_id, callback) { - var query = this.rulesetDBConn.createStatement( - "select contents from rulesets where id = :id"); - query.params.id = ruleset_id; - var that = this; - query.executeAsync({ - handleResult: function(aResultSet) { - for (let row = aResultSet.getNextRow(); - row; - row = aResultSet.getNextRow()) { - - let value = row.getResultByName("contents"); - RuleWriter.readFromString(value, that, ruleset_id); - } - }, - handleError: function(aError) { - that.log(WARN, "SQLite error: " + aError.message); - callback(); - }, - - handleCompletion: function(aReason) { - if (aReason != Components.interfaces.mozIStorageStatementCallback.REASON_FINISHED) { - that.log(WARN, "SQLite query canceled or aborted!"); - } - callback(); - } - }); + loadRulesetById: function(ruleset_id) { + RuleWriter.readFromString(this.rulesetStrings[ruleset_id], this, ruleset_id); }, // Get all rulesets matching a given target, lazy-loading from DB as necessary. - // Returns true if callback was called immediately: i.e., didn't have to go async. - rulesetsByTargets: function(targets, callback) { - // If the array of target hosts is not already loaded, load it - // (asynchronously). This should only happen once. - if (!this.targetsLoaded) { - this.log(INFO, "Loading targets"); - this.loadTargets(this.rulesetsByTargets.bind(this, targets, callback)); - return false; - } else { - this.log(INFO, "Targets are loaded " + this.targets["www.eff.org"]); - } - var foundIds = []; - var neededIds = []; - var that = this; - targets.forEach(function(target) { - var rulesetIds = that.targets[target] || []; - rulesetIds.forEach(function(id) { - foundIds.push(id); - if (!that.rulesetsByID[id]) { - neededIds.push(id); + rulesetsByTarget: function(target) { + var rulesetIds = this.targets[target]; + + var output = []; + if (rulesetIds) { + this.log(INFO, "For target " + target + ", found ids " + rulesetIds.toString()); + for (var i = 0; i < rulesetIds.length; i++) { + var id = rulesetIds[i]; + if (!this.rulesetsByID[id]) { + this.loadRulesetById(id); + } + if (this.rulesetsByID[id]) { + output.push(this.rulesetsByID[id]); } - }); - }); - - this.log(DBUG, "For targets " + targets.join(' ') + - ", found ids " + foundIds + ", need to load: " + neededIds); - - var callbackImmediate = true; - function loadOne(done) { - if (neededIds.length !== 0) { - callbackImmediate = false; - that.loadRulesetById(neededIds.pop(), loadOne.bind(null, done)); - } else { - done(); } + } else { + this.log(DBUG, "For target " + target + ", found no ids in DB"); } - - loadOne(function() { - output = foundIds.map(function(id) { - return that.rulesetsByID[id]; - }) - that.log(DBUG, "Callback from rulesetsByTargets output = " + output); - callback(output); - }); - that.log(DBUG, "Returning from rulesetsByTargets callbackImmediate = " + callbackImmediate); - return callbackImmediate; + return output; }, /** @@ -719,42 +599,43 @@ const HTTPSRules = { * This function is only defined for fully-qualified hostnames. Wildcards and * cookie-style domain attributes with a leading dot are not permitted. * @param host {string} - * @return true iff we didn't have to go async to load rules + * @return {Array.<RuleSet>} */ - potentiallyApplicableRulesets: function(host, callback) { - if (!callback) { - this.log(WARN, 'Bad problem: potentiallyApplicableRulesets called without callback.'); - return false; - } + potentiallyApplicableRulesets: function(host) { var i, tmp, t; - var targetsToTry = [host]; + var results = []; + + var attempt = function(target) { + this.setInsert(results, this.rulesetsByTarget(target)); + }.bind(this); + + attempt(host); + + // Ensure host is well-formed (RFC 1035) + if (host.indexOf("..") != -1 || host.length > 255) { + this.log(WARN,"Malformed host passed to potentiallyApplicableRulesets: " + host); + return null; + } // replace each portion of the domain with a * in turn var segmented = host.split("."); for (i = 0; i < segmented.length; ++i) { tmp = segmented[i]; - if (tmp.length === 0) { - this.log(WARN,"Malformed host passed to potentiallyApplicableRulesets: " + host); - return false; - } segmented[i] = "*"; t = segmented.join("."); segmented[i] = tmp; - targetsToTry.push(t); + attempt(t); } // now eat away from the left, with *, so that for x.y.z.google.com we // check *.z.google.com and *.google.com (we did *.y.z.google.com above) for (i = 2; i <= segmented.length - 2; ++i) { t = "*." + segmented.slice(i,segmented.length).join("."); - targetsToTry.push(t) - } - var that = this; - return this.rulesetsByTargets(targetsToTry, function(rulesets) { - that.log(DBUG,"Potentially applicable rules for " + host + ":"); - for (i = 0; i < rulesets.length; ++i) - that.log(DBUG, " " + rulesets[i].name); - callback(rulesets); - }); + attempt(t); + } + this.log(DBUG,"Potentially applicable rules for " + host + ":"); + for (i = 0; i < results.length; ++i) + this.log(DBUG, " " + results[i].name); + return results; }, /** @@ -790,33 +671,13 @@ const HTTPSRules = { var i,j; // potentiallyApplicableRulesets is defined on hostnames not cookie-style // "domain" attributes, so we strip a leading dot before calling. - var host = this.hostFromCookieDomain(c.host); - - // When checking for potentially applicable rulesets, we have to wait for a - // callback, because we may need to load the rulesets from disk. However, in - // practice this callback will always be run immediately, because the - // ruleset for the necessary host will have been loaded already for the HTTP - // request. - var result; - var callbackedImmediate = this.potentiallyApplicableRulesets(host, function(rs) { - result = this.shouldSecureCookieWithRulesets(applicable_list, c, known_https, rs); - }.bind(this)); - if (callbackedImmediate) { - return result; - } else { - this.log(WARN, "Shouldn't happen: rulesets were not already loaded for host " + host) - // Default to securing cookies if we aren't sure. - return true - } - }, - - shouldSecureCookieWithRulesets: function(applicable_list, c, known_https, rs) { + var rs = this.potentiallyApplicableRulesets(this.hostFromCookieDomain(c.host)); for (i = 0; i < rs.length; ++i) { var ruleset = rs[i]; if (ruleset.active) { ruleset.ensureCompiled(); // Never secure a cookie if this page might be HTTP - if (!(known_https || this.safeToSecureCookie(c.rawHost, rs))) { + if (!(known_https || this.safeToSecureCookie(c.rawHost))) { continue; } for (j = 0; j < ruleset.cookierules.length; j++) { @@ -856,10 +717,9 @@ const HTTPSRules = { * flagged as secure. * * @param domain {string} The cookie's 'domain' attribute. - * @param rs {Array.<Ruleset>} A list of potentially applicable rulesets. * @return {boolean} True if it's safe to secure a cookie on that domain. */ - safeToSecureCookie: function(domain, rs) { + safeToSecureCookie: function(domain) { if (domain in https_blacklist_domains) { this.log(INFO, "cookies for " + domain + "blacklisted"); return false; @@ -878,7 +738,9 @@ const HTTPSRules = { } this.log(DBUG, "Testing securecookie applicability with " + test_uri); - + // potentiallyApplicableRulesets is defined on hostnames not cookie-style + // "domain" attributes, so we strip a leading dot before calling. + var rs = this.potentiallyApplicableRulesets(this.hostFromCookieDomain(domain)); for (var i = 0; i < rs.length; ++i) { if (!rs[i].active) continue; var rewrite = rs[i].apply(test_uri); diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js index c99f1ec..cbb9396 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js @@ -6,93 +6,86 @@ const X509ChainWhitelist = { '000AA4E99FE86D84F762DFB2DC29323D0614B95AA335A270AF204EBA2F2240AF' : true, '002F83BE1562B658A7BA747EEE36FFBA25A7D6C66E263B2901184058802D9A43' : true, + '0048BB7ED7A65D615D2CA0D74B4B67E3285132CDA4FD22493977AC1662D72869' : true, '007FDDA43F8F2C275CF3AE1D742A0DE86CFE1287B6FAE08F9676A8743E677255' : true, '00AD891EBED89D8B1DE5893D32B98655479B79FAAF02D40BB933BBF726699446' : true, - '00D9377601C1210081CE743C3598E414B6BD2F47525132BE5E4CBA4650EE7C19' : true, '00DBEAA57891E7972D7AE5F00425E309B1A08B8EE4218B24AE3FB50EA98AA864' : true, + '00E60060B345194127FA895551ACA9CB12D5C31CBCE286D1CBEFA26D0BF22CBF' : true, + '0103FD294CAF0DEBB13910E3C115E9037007F6BF1650B704CACC653366AD013B' : true, '013470D100AFBBA6D4E03735C1D924EFA6E25E66F781E9DBB6155EF713336307' : true, - '0147A7B139D599058A43CDE86602DA56375CC78C2C15AC512953E3C98592D4D2' : true, '016BBB29A76DA59A20C5E9909D8D0A9CD25824D7462BD51B022D61B503569936' : true, '018BCB77EB89BD658CFB6388F57F22E40942E08FD6BF3A26DE05A2F992F6E5A2' : true, - '01FC275FB7BB83082EA2C546876545030D74F68355AF2B0CCB1972993B393E58' : true, - '020E3FCA9BCBC32FF8E96460F1666CF889EAC42A586CCC76B46BBE85AAEAA450' : true, '028CD123ABEA12F150435947299419928DC5E80E94E9148841265B64344C3DBC' : true, - '028D7A3A5ACA6156AA42F1DAE25BD6116A417EFD8E64B7E6A004B1911CABCAC0' : true, '0299AD4101A95EA006706582B2E55A35DFD2224EB9A8F8AA822D2354BAC4C640' : true, + '02B269E607C16E29304FF5A10E7B95FBA18B8131D647334007CBBDAE891F92A6' : true, '02E266B8D011CF92708D0DD0D9D840BB8EF54B4A4670BF700AE90EE6F7E445A8' : true, '02EE88738EA513E191ED7197DA80736330AAC72CD846B866683ECA283945113E' : true, '0333E05678F411BCFDAEFB069DDAC8BE1B3B7E45376AE4C3827771C10A53D294' : true, - '0383B8763C6ED572306AB1253E433A3169F1EDF7078F57D07BC3461199BEF86B' : true, + '03693B464434A9683B54121395F0655F77D80A64D36AC7083A2923C3FB6EFC00' : true, '03E2027D68B6F8792C5E99FFA9221CE628E98F0D61346B99E8A2710BD29E1DE0' : true, - '03EF0B687FD2011C8607A83F5F06979C63FC4C905244344BCD85987A0E296133' : true, - '0494ED6BB7E16B78F2AEAAC053DAE6B31B52E39F0E10F5E8D95B77ECBA0A0BAC' : true, + '041E24ED00997AAF1D78BB5A002A3ABCFC654CF09E38017EBD3BE031F05E8FEF' : true, '049E2533BBDE9D2DA0BDD71FB463A0D7D2908706999C63FDCEB4B812864E3091' : true, - '0508390E2DF4B63477E49A461AE883335BC71F03A24BAA06F46EB0DBF42641EF' : true, - '0529FFECC3EB688DEA32684A0348F89876F1BD45FEA23DC8E9A25D524E7B1333' : true, - '054806D84102E23956A821100183D32EC4B5E8E9DE72912A1F8E6EE53FF9A839' : true, - '05546BBD905F23086AF150C0B1E30F0BCA2705B6E0CBDB56092D8E62CFD09D0E' : true, - '0589AF9C3A578488F4259AB8BBFFB2089D4C678B63D4C40B6A46CE2405346C0D' : true, '05C5F3A4C0C5F676DFCA32690BBCE8A7F41D7D6C2438D9AA1F94F886E3015CB9' : true, + '05DDFDA20ECE2375B55CD05F5205E2608B75FF4D40078A4ABC2FD4EB7C7F4410' : true, '061B58EED7864DD73B40146FB4EB9656CBD256F6C10A07C3AC47860150B14948' : true, '06354AFD85075A5BDE2D84F8408B185CCFD354C2D75988D8FC67948AA6F60562' : true, '064A8AF7F078CF04C63643298C3DA278EECA283CE11E3F34F3AB851AB89B5237' : true, - '0698D7B65AF15F9A903D8D364BB7DBC1B238DACA79505B8BCE8D44AEAAB5709D' : true, - '06D7D04035F29672F6921CF0BB432541AE7579AA2591ABFA9155639DBEFFD2F5' : true, + '06A8BAEDC838105FBEB3AF6C20B5E3EA3B98B82069246F1A5A096E8CD0FD3047' : true, '06EA4798A8B6B73ACB72B15DD8D71D6D6541975EA01B6CCE95B92DDE7C0312F7' : true, '06F072A3D91411EAFF93F070B499A88B082E745A2E369567A6DDAAE227B2E195' : true, + '06F3DCA5B295481A6B1A0ED50541CB67C20B4B6BEE7435F06F5FCBAADC27A40F' : true, '06FB76F31639CCDDF599ADEB5E7CE9A475468C68B305442E99A067D09A89DDD0' : true, '0742E85FE9C68350E070039897F5B790BDA92D92229D74BA9C6906D958A5C510' : true, '0780AB0F9801F169F4E7DE6F6F40F9575707D4561E4EFEBBADE71279825E0CE6' : true, - '07B61AF096B72D71AF801B9C7EB9F76C42CC20A7192C78DF1336611644289BE5' : true, '07CF2A06F1718D6E476B98C2B42E370A35FAFE4C1F41CF7A1DE115CDB6222FAC' : true, - '07D5A15EAED5AE2CA304FFCAD864791055797B0252F925AE9177B686461E2C17' : true, '08522737DBEF2F7400033E866B61B3F9E19066EC71294DC9CE2138231921AFAB' : true, '088B1B9C85C5237A785E56C277962D8901D994350403FCA667645A0321EE1754' : true, '093314E52E8CC862C2C0C8A1C57DB5CA4BED8824A3DC7C40B8675DAE1781DC05' : true, '095FB0FC3CC67539621E292205E758437D94D3B651714049E6F99130BD5ADB6D' : true, '097D2DB6895EA5C53529BC38C1258E1461BE15135A9543BDDF5918EF5B5464C9' : true, + '099E4D986B0D8639C59AA04B56C3E45819DE1898E813D55B0879779C47913268' : true, '0AD7BEAF898E621703921886F7EA20EB4B337D03CF968EC45E3B1A234B2D707E' : true, '0B1C1033250F6DED11E4C0A7E43138AD3D52F5661FEC896519BEBCBEFDC16E41' : true, '0B1D9276FF6C18184DDF7409CB6C0916D24320DEC0505096AC79C0D3FFA9C1CD' : true, - '0BA75006139D075BF8CD7D94B460A850F46509B23AD572CD1A1E23134F59431F' : true, + '0B7A5B8BB72BC1897664EC39A1E712A515DA1B3907D8681F0151BB6A8AD364D4' : true, + '0BDA7253AB35BDF6471CE2B8ABCCBBE39780D7A96B58EF2D770B488F3A14D592' : true, '0C2154A365A0DE7DC5BD0AE6EE05A8E06EE782AC5C41F1D3823E2F95C61E0D2C' : true, '0C5C73A428C4601BF261EE2C36DF0D2259CBF2471E25A7B43F52F06C63059195' : true, '0C956E47F2CF8AADB345DBC858E3AB4AA37E48B7930B84BF7AA1A0C1B19A1C8F' : true, '0C9D6EF00C60807C04A1BF61E8C1E28DF2A628CB7CCA3E15593266682736588D' : true, - '0D6FFBC5B8DD431A6C0FA282F1ABE0898E4846B5F82723E11E484F1A61931C18' : true, + '0D8D1B9E2F81D60A99B58380F37E9F8F744E205AC778EAE66810224BF0FF9EEC' : true, '0D98DAB031428D38C96C714C90F0E2ACC9A1767FDC6A953D590928683E8BF8C4' : true, '0DAB05854E84AABD75D30CE09246103436A4C41E931374E16CC374596C8DBB94' : true, '0DB35F56EEAE4C5580F3231EA19F4DBB0FD46DE1BF85F4CCF40103E012CDDA4B' : true, + '0DB6221BC96F9758356209EFB138285A19A72FE5B898511143A0751BA600CC1F' : true, '0DC21B5C66F7A421406E2FF43676B6D7013C6115232AEE0CFD25D70E7D4C2625' : true, - '0E49A9594364BFD4E6943DB24A2F77FA125596414D46F46AFCF070A1645AAC48' : true, '0E8071ED091D6F502E2649CEF26818C0D1DE8F752632B670395E916F1BE748FE' : true, '0ECB53FDA2349AB6008BBC0E5CD361EEC5B6BD769281800FF4B1C9764A925277' : true, '0F0B2EAF8B0C4FBF1A47C048E13196C163ED9D8628AFA4AA264A4624B1CBCF3D' : true, - '0F7391E841B068E145E12DBF6CC16DF16410083111E5F093302BA163AD4EF39F' : true, + '0F2BD48DD412D479C8A61E31993A4545FA703253C2A70D901087A7F5B8843998' : true, '0F820CFB486D8564C83E968049AD119FD838B2CD21C0B342A0D9B5D22C445C25' : true, + '0F8A4084830557DD278CE7C3C6977853A4202E89B5F5F61164D1052F05D67B12' : true, '0FBBC11F4627D5AA5F7A7847E0F8DE298021E175EC69ECA90A62740A71DC9B1F' : true, - '0FEC8F0781CB9193F4996B43806C6D2C539847FBBC0C28146B64FC35617BAB99' : true, '1030FABD87581CC2360917E4B4D94B88AF59A0E4FBFBC796F36DEA520198CD28' : true, '103A6A4F018518AA6454CF8C8D18D7DA301A3F3C9E4C3C7FC2C3EC23E9D4443E' : true, + '10620CC592779120114EB611657851E4859BBA59E0895E2D12A6BB5A69103A23' : true, + '10F22412D1CFAFDEBCF5BCF13FD251853DD98736450E36D989F880901DC4EB20' : true, '1129CEBCB9F0237509FFE00D10AB5A4B9F9C29C1E22777DC621F7B7C94B4EFAC' : true, - '116A5D5F3E99CFE5F72A4AFAC8699CC225C130F4B8520CDB350A1262D9585973' : true, - '118FF53B6BEB35CBFE6592D45BE082BA1228D1817E46B2CC14B8855FCC5C9D59' : true, - '11F7A939F33BDF6270E16C747C0B0918902CD4501AF1843D9EA4445A2E708C58' : true, '12160CB58782201AF8F946F3911DF89177566E67C2AD7A2CF33107C89C65DF5F' : true, - '122789E068A64AFE76989BEC2FC264EE933B6FB31445450E492E37663C083FFE' : true, '1243C75D0F805DA54E780D0D9C55247B1ABB31FC09EB65A7017695945F2A0D4A' : true, '1260F631D1FBC3640BE637469748889E23A2EA907F33F78286408AB56F450A66' : true, '12826065A034136FFC2258AA1A65F9E550A582B4017E396077917C775D42E553' : true, + '12C674B54921107861CA3EF8660E814B8B4D9913D0C7867A4787E3546F8642E7' : true, '12F18371A507D5861569D0AEA4A8E66E551FFE7F312721E9122243EE006D8C46' : true, + '13033A2EA4BC988F6079128723671DE679D332B41D5043BA058FC76F7E5DDDB9' : true, '1306A4D21476D28D3E2F7D6E4385686E1BCB6D7EEBB1A5217346A6E5855DF944' : true, - '130753A8008BBCA6A0DD9037C6C7DA2D149BA8978C5E5444AE1B8C98F3C3DB60' : true, '130F0A3C4B9E9132D1676B4EBBAB2B17AFD2AF39E291C983A696D8BF0DD379BD' : true, + '131F59EC4994BCECEC4BFDA4DD4153463E50830B1EF8629AB6A31DC1BE2F0F39' : true, + '13E77B97AFD7D4712B5BE975257B045E3A0FF8EA08910E1DBD5A64D0DCB95720' : true, '142BA9FFCEF5D09FF3DE4BBF8110156D52FEF1C8C707E4B916692D7DDB335A6D' : true, '14919EA335FB4C65A5314A820ED289B0C8697E0124E6FC92DFCA84FBD56B2D35' : true, '14CF0BEC6B8811A81FF5AD015C62BC85AF172E86B7504D40E9F27F0E0A6F9BDC' : true, - '14D5F704481C18BA8A23559A9E49942C499BA8011926C09F4D721D92ACA5F20E' : true, '15178AD6DD39B91835771E8C2193D0A96CFE82F913A2C10C03144B37DDF45CA0' : true, - '154C4C43AAF5F838B7B9BE748FF671521BDF0ECF3D749EB85487F9C315239778' : true, '15508FBCC229C8D8917DFF5951FBC2BF0840866D4BCA8B406A63EEAC21221D79' : true, '15DDBE5ABC768035989DD30C6A2BC696AA7E5AB2ADDF1F3AA8FEEA35D319B47E' : true, '15ECBA98523C315922CFC13469827BC118123E02D1ADF24C3BF8305769869181' : true, @@ -100,39 +93,42 @@ const X509ChainWhitelist = { '1624DBB95D0B9786B98A4D7F0B7CDD8FF28754C5EB6673CAD7305B1B5B8F8826' : true, '162735074DC673F1ADBAFC8A4202BC1C25549EAA743063B9DCB39B37206C642E' : true, '163227E6A01ADF06502730FF25F39D8F52B79F9AE61D5AA2876980A21985A211' : true, - '1632D9CADAB9444AAC7BBF6389BA59C12CD866725786D9284BF9B205E2586A28' : true, '16A2F0D309D7E5CC00E5DFBDE3DC5DB21532F7E5ECF93E18554698374A5B5C2A' : true, '16C84150B3F3733B9D898ED4F57B4204E8ED00ED1147C06335670DA94CA2E2D7' : true, '16E2B54FD0674D40BFAD5C38803F7563CECDB022DBDCE1F282E1CD5DFDA5B35A' : true, '1715E347E92C85ADCEFCA2ED0C4B56DF7D7A3FA9C834B1F2DFA7CE115DC8DBC4' : true, - '1781FC3318F87AA70A6762F2A6A65D5F5DDCDE992DED94D110EB85A4745E9838' : true, + '17494B14BCE332EADB033DBD6012FD359936E0183EB22AD02C95604EEB9E4B7C' : true, + '1765ACDC57A9EEDE87E6573443C7EBC42B17E012FE153D6D7158402D5CF9365C' : true, '178437C1DC169BA86687755E982E2CAEADE216ADD8A163157614A66F34325FDE' : true, - '178481982D21A3F3AA8DBA7EA0F58124E69BACAA81B2EE4D33FF5EBBFCD8D87B' : true, '18072A06AA04215C18A6DDEF2B57BBFC054A4B3A50CBC2648515BB715B582F23' : true, '1882C2D8D817DD1078933D244E379CFC5BA8EAAE302BCF9FA22636B08FAC86CE' : true, '19230A5E183CB5DD90409C54F01075BB43D5608CE9C322EA3CA3724144FE03B6' : true, + '196603FAE474F910E61B7CFC9A735167422C230CC3917D4F0B1349A8AE18EC81' : true, '197B67187392F9D4653EC70C8BB277DD7DA843E62BA1A47B0BD95B89CB2C1735' : true, '1985D79429E03A4B25EF4195F04D0D6E770B36E8AB4369232CF3A1C1E40886D3' : true, '198719FE25A84786A0C2BD4053E93940AF864498D6071994E09A5335B675A73D' : true, + '1A20D558B752D443D16F9B806ADFFFFA0B15F9A6BF15C4DD9B0127A3BF140BC2' : true, '1A30713C34D901235DF30605AFB82AF55EE4D3940B86E60B50692145013AFBB5' : true, - '1A86C1C38DC645A40F8DF9EDC584DC4175CC30F133737BEE3D19530929708509' : true, '1AA2692979DFDFEFD4854EC9EAB4CC323BE159529C3E85799E2C3C51350FB9C2' : true, '1AAC19B1D8BBA8A33D43E739B1112E89A5E041BCA24ABCE4B13E0B1CFDEF6DFD' : true, - '1AC37940540C25A5A2E2CC1DFF939F3FAE61C194894FD82F5861AC98E1D1ACE6' : true, - '1B4CC90A088C12699F4EFD7103B930FC762CF0BB1CDBE2D652AFC8CA8924C3E6' : true, '1B53976D26A5F691CEFCF098279AAEADDE2651B698FC3F7088F5C2A5B9CB2C5A' : true, '1BCC11E5459BEF3D48BCCFB10F57B0D640EC74C4BFAA3F0AA221B777170A5B6D' : true, '1BDD0D8B130AB4FE89DB814276912F04405F2D202CE9DA8B89C4420740517437' : true, + '1C0A6732DDADEA7031C3AB577D185BA0908FC8CFC68925973F5D8D1EF314A0C4' : true, '1CCFC1F41255B860F2231D11672FFC1AE32D9CEAA341139C2B472A0EA9CB426E' : true, '1CE75CF38E7A5BB9C7C18202C97BFD74E79B3073B1FB6B2BBDB33E78BD22E6B5' : true, '1D16AA433A5042924AE1BB07FC1B53E8549BB93D0F3E40723DE9CF95720D593A' : true, '1D2A6A876B8C8A835206E337529E6C222E272D4AB79E2224E23A5B6414039D50' : true, + '1D968E8C9F5C1FAFE516D2B719A765DFC83AE7AB11BB461C696DFE8051E68C04' : true, '1D9D0031DF904A27E15FB3AF4E004B0A7350788FFEE1C7FC17F0E6118C678AEC' : true, '1DA6DEBFCC0A4BADEB9672E523C95F42B2D16B168759F75FD03EFBD2CD482032' : true, '1E07BA293C78E14CDFC629A797E8046A33F21981334BF6BFF9B4DD2D3C148CF4' : true, - '1EE116E4B79A340456A72C49C1EDDD86786C97258ABEB9966108A9E01AB3836B' : true, + '1EDEF3A2E0616C9B753FF6AF369292C619495091058BA99F9A2C691901600E5F' : true, + '1F0A95E93B1068A37FC1D05FCF5FA845CB7D6514F10DD5E69985F622F750D8C3' : true, '1F4C963A9BA39CE44E46F135EFEAD5B30D6A0A3A43545E18CBE59DE452A6468B' : true, '1F50A8F65E8256363E2710E05BBADE0FD84882DF8D7C5B12A92FC51B4643E4DC' : true, + '1FCEEF2FFF50C9A455ADF1A2FB3A2D150777EE49A0F333F746479D677E3283A3' : true, + '200F113FB8BE9CD93DCF38AF69F714D686AE4D227572F482F774574A5CCFA6DB' : true, '20226C095C430BD6AE483B9806E0C32296B0819273076F35F65B6A52FDFEE19B' : true, '2088FE71BC64663BEA0FB04CF93E3053228D41914681A3F17DA61CA996D453AF' : true, '20C2806DEA7B729E29F7B7BB8B2653B8D71805605AD46394473D1B1F81103664' : true, @@ -141,22 +137,23 @@ const X509ChainWhitelist = { '2128E4E9D372E50A94E43591AAA7C8B6BCDD8BF303C0B22F923B1DCD596E79B6' : true, '2156D89DFDE0B0676EBDE6CC82DF46DA81467DF96F9B8DC4A8B62F71DDA5DF95' : true, '215D8B74267F138F2936F74E6B2029CD8991DD6AAA1CC001ADF88B0202F637F9' : true, + '21773CA8E35B39C05F62E4EC902D512E19BF1249D303EDED85AB5A724D491B44' : true, + '218E1D545DF5578EFDEAEDECD87F3FD80C7DD8D925A529F1BCC6E2D72FF03FFD' : true, '21B2E2C095E47F4762069BA39AAD86802201AC4ED5B6DDBC20D1C7863AE511ED' : true, + '21C612A4E2CD066893391249E3C4DF22613E9DA5FF37690E3F806AA708B0401F' : true, '21CA97793B165187383669364CEFC96F19BAF3F8987F7260CC46F3852721BA5C' : true, + '220A91D48D7994F2C122A3E75527F1C29C57C0FBC60E645E02958217AE7BC759' : true, '223264A2EEB01CD24524FB9273B38688A0AA8E3A2E7D63ECB76012B060039760' : true, '2234133DD7FCAE5D199EB31E1ED8A798554B29A355A895066FA6AE445386D9ED' : true, '225C19F21F4CC5241C15ACC6007060605DDF10817681F676CB8BD1B72014D52E' : true, - '225E3BE43AB71213287128F76D5DE651719EF5C79F946D5A8CB04C44FEA86449' : true, '23980A7B935B10CA69315CDA05E61B4ABAE7876724C0E0C3CC7BE9748E41ACCC' : true, - '23B4591985CFCEFE811945510306C145B21FCE6B79686DC5D245DA69DD6D4128' : true, '23E080919FCBCDBCA08FBA3968559D1D3A5E785802976E27126A25BB7D9958B6' : true, - '23E4D77EC58ED1F674A96FD173C4AFAE53275B67EBDDAEF182855A3AC14FA8B5' : true, '23F00AC8958BF1466784068A5CC7E2179988F1E73446955136DCBBF756CC2171' : true, '244EE1B87977A42E7CA64725F7DD82F337A432744853EFA58C9F386DD4E0283D' : true, '2486367AC0F68DAA6E2BAB0B01CC6B3EEA3496023B3618DA73DC303B520AED8B' : true, '24DFBC07031235121BEBA97AB5A061AAFCD8AAEB2145820A78EB0980E5111E02' : true, - '257335B1AD2B1D562552738ECA1C534A6331FD83B95C91A1EB3B6C2A44650BA9' : true, - '2635178113FBBCC75EABC09C497D411C994AD0170CF9DF999A4FF5C16872CDBB' : true, + '25534DB97A159FDAD476E801A40B0BCDEFE50CA858D2BF923FC51756AB5BA637' : true, + '258A578A6BF92E1A60553F2A17EFDD2C3267E585FB64020225502A19C6A015BF' : true, '2677470F2FBD067904B7014B88988BB94F72403C014240B9843AE5A5FA21661D' : true, '268343ADC21A53E71BD790E19507760E1F7F09B7C51E088E39DD0079C65AAAF7' : true, '26A15E073F71406D8AFF4A4A623F956FA8E3ED70F0C04CB4B28031EA103DB975' : true, @@ -164,56 +161,52 @@ const X509ChainWhitelist = { '26D106DF3FE6E9C99924142C9DA27551E012C72C71FDE6EDD3CF4B5C87D59A26' : true, '2741D5D511257BAB37E2DD48559D3FE3998CB3A5BA4FC1EA9C8656D5694D7BFD' : true, '274C93C8441ED469C7B7E01B5A4DB6D9923C3947C87CA4B71D09F34D13F37D47' : true, - '27560906A3548AB767BA0992FD2F93575AD11AB83AED3354B6267C3F3228C858' : true, - '278480669CEE2AB798934F06B963B68D25C0A276CA3EC4E523D2299CE01C4A4F' : true, - '27B5CA8FBD760D881A9769019B0EC43CDADA9AAC3900861E1E14EE9348736FB9' : true, '27E83ECCF1CAB639F44A2B74BF9A3D463B18BE6D600C1186C336421DF0A8B752' : true, '2855C813E2F7369732C35656DD791928668591AC6AB3F9C73061B80AA7713920' : true, + '286FFB01258C4196768C7C4F9824410C9B5DC80DEB91F4AB0DA89D43BD49FCDE' : true, '28B49BD8083286E1E01C3B94D6358697FE6827CCE71D7C1D0892941B49D83416' : true, '28C725A83ABDD4F961356B2B5583C1F165094C5BC820CF15A4FE18086272107E' : true, - '290DE5FFD5BBBE1A557D3DABD01F3CF8FA5FDCFED4A919F4B73CF80B6CA2E4DF' : true, + '28F5E2863DA83BD5F283E9598D3E8D71817B97BA813C2329DFB2A61814BF56C0' : true, '296C5D3A18B056644774C03385700A24690EB9CD1114CD9E643E4813B69363ED' : true, - '29E0C5434734C0FC43246F066EFA19F533AD59E3A713F97455F8C338F1C3638C' : true, - '2A1E01990593F5DE1C300ED5ACD94B694DECF9DE34BF2836A764910F82BE664B' : true, '2A66B5579421025EC719858E2D80DDBBE02243073DE27DFC7AECC676B0899589' : true, - '2AC8168217387601B753D08652B1FE2CD14E8A7C9A7DE7DF74A8300C976FBED2' : true, '2ADD4406064A5EBBD98A9D53051A0FB086A5D032655C12F503EA73C8179C783D' : true, '2B059B135DC85869AFA0F2BB76122D71B97DF5EF2C87669085646D98CF08213B' : true, '2B1B6843B33770E84785D0FACA5AA6EAB6C480AFA07E95F7A282534BEB69B065' : true, + '2B7C7CAEDD6611BE472B7BE0EDF5907E0F2DEFF89561E09F389343E095DFB90D' : true, '2BE6A67777765CE8EB868416D68CA6AEA8C57D31523F4A683957DF560C152066' : true, + '2C01A7027A6FCCB3EF0B70F134229605465295EE1249F5A582D04CD82689BFC9' : true, + '2C31ACD6B2A6C70625CEBA16E104193524C129E9EB52DB35704B5E5E32F77E9F' : true, '2CAB9683916ADE98D778D3394221D8D07E07353E546771D507232A26FA577902' : true, '2CB5C98C4A0D8A9EE15CC49CB83490CE552677BF353A0FE7AAF1482A8BF8C012' : true, + '2CCE7C6E6F1C405C82DBC09B890BBC8F205F503A010210A67428FC8048DBEA1A' : true, '2CD5E37B2C388FECDF839EE16998A0F0850B5A6BB39AA5A507AE676622001CB0' : true, '2CDCECA60D7F0E4700411340E6CBFE1B3C8FAFA9081E219462D25A14B61F9AB5' : true, '2CF8647F049667F93FC50EBEED00FE30965114437763C339393FA19E306E9CD5' : true, + '2CFB60CBA71ED8ED0B81BBF029CD02B2B025FB4859FCA999DCD96A5D54AB6C93' : true, '2D375C90CC502EA17D4FCBE8EF35BF7E07A84B6B94EC7AC78613C623DD765E74' : true, '2DAE8835F42B7AE9A44C8CC72F12D750EDD8C5AA678D98CEAAE334BC602F0C58' : true, '2DBAF94C053FCCFA1EC09CBB22F54DAFF2DB4ABE1B3C61CFF1BEBC31260F4821' : true, '2DE3B602EC7847028D2EA59A8E241EDE63CEFAE7456802CAFFFAA8433CE9D885' : true, '2DEC053F97460AAAFB67EAB8C769B34049E9D44286F199A8D776D2FBC4A8A41C' : true, - '2E40BCD87CC3A1033F406FD9FB81C5F405BDFC21283B22CE396562EC17CDDF02' : true, '2E936472C0CBE755C72128EECCF5BB8AE91AF188CB2F3277B205E27904A9EF20' : true, '2E9AA94F913F869B027272668BCA46D5076503EB9550737482C337950749E946' : true, '2F3A46F3C2FC1EBB5FB46B3135B7B4ED88CB515C2DB9A508716102340AC3583B' : true, '2F56C46CCFDB3A3F0192313C4801F02FFB1738F328CCF0F33F44C0731D340DD5' : true, + '2F95B5E7F929043B7B2C14546F4E0452A216CC921BBB236C9D8F5DBE30D169A3' : true, '2FABB733337C02FC7D79E61202EC0FF7115DCEE66134F5F8823EE61CB7000005' : true, '2FB44A33A5795F520D20CB4ABC4AE4E239FC193CC2E3D3A85056685ABDA9E0A5' : true, '2FC3524D85A62187238D399692A116C52E4640DD29204B12F991441B7F01E4E6' : true, - '2FEC6D75CCD95ADD4DB327257B4E73A880CC462E1760267970030576C46E0077' : true, '30547BCD70F47CABBDE76FDF5538C39D1894B49CC72B0A8BD07250A65E2437F9' : true, - '305B4CDDF744AA543DA713E7E60C19ED5537D49ED2252330B46B7E664C4E588C' : true, '30664111831B947406CEAFC2E660230B307F401DD060852E0E5281C95D9F526E' : true, - '307483FC4C0D7608C2B6FC2DD068EDB1D686085586C4CA4284791294FC664D6F' : true, '3074E85BD8520085B6E6AE099964DEF737BF95AF53A0A8F3C5F4B4D714CA2824' : true, '308F0B0CF08358D501CB807667A31FEE7FDBF7539E1AE74945DD9245AB9F2CF6' : true, - '30E358967DCBDB42F759C5380FE945EF7142DD37D820E199AEA23DBA51EF541F' : true, '311646C51E3AA0B2E8022B6B1D95E83814131B16921B3B38DA1ACA9518AD4602' : true, '311F6B428C4994F2677A56588DA04B704926D737669A76B1B3C8504EECCE4A61' : true, + '31409761DAABE788EA289CD56CF4B7C2BAD543D7FD4347E2F567264195F5EA37' : true, '317B7685779DAFF1AD898FA790781D54D3EDC11621D1EAA3F4A9BA3262462557' : true, + '31D38D516353CF47DF9A73CF8500D63FCBD9CD963AC8FDD9BB722B287B9C2880' : true, '322EC261687A3829C2C0F1FF70B3E6956F5EC01497F58A422A099521BC236D24' : true, '323C8E2033ADE1E8793BFDB767213691270543CF88FD6356194E5A8E87A755E6' : true, - '3264E084FB98F560090992151EFBCB41AA84EAE0C3D8378127A974DF81473E9E' : true, - '326F94C0B20B06F11A54904E31BCAB0C1A4DEC790BA2D1947E0E11F9B7210F58' : true, '32D398E73D053561EC78257EB01F0945C2A38D9F80674F6F2B4B10BA35A2B4E4' : true, '32ED76AE2E09C58605B9C2BF6A27080DB8C7EEB70889BCCCEA72104C7F33F95D' : true, '33512B5F197ED2B530575C71046268C4E2F5724B645B8DF1C689EC535C0FC791' : true, @@ -222,214 +215,218 @@ const X509ChainWhitelist = { '338CC51C8910ACF7DC6CBC3AB6F2E288D38A7656CD78BF22C57745EE3146BDF0' : true, '3394F2FF8A20D115C929711B75D89260AB3798B93A559CC8BFFBB6A2F0463D12' : true, '33AF2CA60F79D526019EDEA838ADAD51FE541F589F09B0C69A0AA288363D3C72' : true, - '33E0C503F4B4CE3AB1851ABE4630DDCCA720DBE3634CF7A5203ACEAC15031F12' : true, '34B1CD29AECA7639010C4082C4609B8EC6EFC5DF272CC90D2650D01ADEEA8A53' : true, + '350123506BA002EA62350E82CFEC1DA7BF24B405C4160EF1BF4C445F7DC31757' : true, '3551069D5774095145A9731885485CE10FBF3FB46144F33A4E48C03CF2E475E0' : true, '3572DCF086FCEFED230B4D1B47E73DF410A5C775BA3BC9DC2681204F2E980BC4' : true, + '35A0FA13220E762AF04C6148BA44189D2264555AD2FC34601434778390FA5D92' : true, + '35CE5363F4A107CF1BDE8CFA1F3636AC081B94188FD008395A1D8895B5AD2A27' : true, '36267B2A60E0B5997DEEE17CDBE6AC7F7D54D279C6AB4F06CD469919F442E6AE' : true, - '366B123FA1EA2FF7FDBCA0422E504C8E0AB62334AC8941D307060F5ACDFB58AA' : true, + '36C766FC49EDF0C95C068E89E5AFE604B86770D48FF3CF6284A579B200355C09' : true, '36E58C6DDB5038020FC61F17D2728311DEA600AD9FBFBEBAE2EFBB7B5071D884' : true, + '375A5FEFE06518B0BFD2CE02034E185A44118CA92BEC6FE2D5809762C89E8C67' : true, '376690DCA49A37377D699141D59A549953B2A0B730729BC6FF8BFDA67433F763' : true, '37DFE2D5440429C8D48258C7E68500C526C81FA4606E45B6611E68C6AF2917B1' : true, - '37F9EA077605A59865D6CE500A20AAFB318666DD42AE9B17FD10DF4C4DF4D157' : true, '381FB3EE49812423C2F3CA943350617377D0E36E0D7FAE21159F648DA79FD32F' : true, - '383BD359B34DEAADBEF73CF41B93362BB3C59688EFCE1E8403C50C5783F1C50E' : true, '388FDEE7D1F4001D828D2092BBEACF16E5D50375BC16FBF1BA058917BFA03C1F' : true, - '389F1D4E628ED38863C27EB889725AE154D942FE62675E6435256BB4A4EA4D3B' : true, - '38BDD8D544DD1094861968FB021D7E27BC2A9D0031AA914F3398C377A4B5F9EB' : true, '38C737C9B8240CCA0A28FD58D0C0C697B8D1DDDCF895D3F3256D1DAC8C08F513' : true, '38D12483160C6E3AC330EDC1DE173382B4C2AD79A298155181CCBC9A10CF6495' : true, + '3917E4EF55DFBA1A48DF46B693E2E72D708B7B6146C8686C5B3F94FF8B3704FC' : true, '392944F5A1C82284C698C6BB512CB5ABA48445376D54BDDF0A53C66B832D1BB2' : true, '3955C196410B13A2BE4CE66E7CA1238F139DB5F00E2DF2997CD83903BA064B4F' : true, - '39863EF0FA91E0729FB834D4F99A376FE60A015301FBDC91EF818346489EA0E3' : true, + '397B9EB5957CE4F48570ECB1A512AC0CB669DA638AEB298B95C9F155E2D0A841' : true, '39BF13F759A9161866C6DC6898A5E6D71FDDAEB9EC5925FFED274FA8E5FE34D4' : true, '3A260A20CB6DC9BCEE25A21284C2304A9744F494B37359F5F0AFB46A1D0DABA6' : true, '3A2AC86801E185B3B8A189C42AF1574721D452DA425CEDEC6FA0CCD44894BBF2' : true, - '3A694CA4161AD11D5C049313B226513207F5FE4C8966F6886F7B49298494C835' : true, '3AA33F69018FDFEE33875D0690C26D0CBDBED363252891E02592E0F2E2E1EC93' : true, '3ACDE8B9E6B1100535007AC7316F4587DEA84EE0DF1B344DECEFFA952AEEDF96' : true, - '3B00662EE3F01FFE2C40842F0F3B76C039ABB785962E371767E89E2AFA311A74' : true, '3B1CE26F0C0E4393AEAD1BEFD39546A60E52ED5E52727AFEA827E27CA20453F6' : true, '3B209B5718F54F113C557AB8D670B1501B05A16B92E6E16BC97D026087B90C3E' : true, '3B98E076AAEB1E46BA5DAFF4914C9E279EFDB41A348AD849756FC33CB6A4881D' : true, - '3BD39467620E6ABD6EDEECDB96477E54E67F1F63377B977E1C9E2371F0911922' : true, + '3BB4AB8E09B6EFC71B2B292A489372337E48085BCC4C08431D090D63C8920C78' : true, '3C96E89F8B86936DC4FFF044FF1AE0F5C26BBB357356C47EB977C5E5620EE434' : true, - '3C9AD3DFF4DB327C01C03D00389A76E5E699D4C4707E23221DA6C61F949AD532' : true, '3C9E6298F6FC43F504BBBDD12ECC94B4BF47947775FB629D1E1683D8D5AA6A8A' : true, '3CB171EFB062C3F0AC1CBF88CCF28B562B382A5EE096BB48394B16AEE1623F82' : true, + '3CBAC1646A082FD6EB8B9F2A844C1E6314F80DEA301385ED296DB13C3C37BE91' : true, + '3CC56DD89816FE295CF8990750308F966BDCBA97C5A46F6DBD5B781686D2434B' : true, '3D1C44AA234496D76A6BAC3434418253903B3C5019FF91F78348AC7C14E39CB6' : true, '3D666AC8FDB8483D6006C9E22E5E9539E27B322D5BCD0AF264DC8878F9476DB0' : true, '3D76435F7EA7583AD6F474333B7F8AC6368ACB53FAF4AFF9E8644765025ED427' : true, '3DB253A22F1FBD071CBAB9E97294CD6534BC74430123B82198F7A29ECF800D64' : true, '3E08AEB4D01EEE9C19968EDE2D5FEE0E974E6B7FD65769E767C28CCDADD85D46' : true, '3E09F448ED5A72584FA305F82A25706D2AE756083530B4E18665DA2AE46C1410' : true, - '3E0C00CF982CC013733E0AEA478B7329E28EE2A7627E7BE5A53630744F024765' : true, + '3E14ABD512B796887AD5DE7791E098E11B9661C969801944C5F9D9CC2E65A216' : true, '3E5558CB92AEDC7E01DB0FBCD0825CC0F51AA7B683ABFD01D1E5E04C8A4D716B' : true, '3EFF635571ED85551721F01985D1B2C62613C2B7DE25C8DAF17A8767ECFCC39F' : true, '3F1F9323436BD390A2355115CC333592B4B5AE3F3BA2755D342CD863371EAB1E' : true, - '3F56CDF75403392B96E7DA06DEB55C70E8D9166ED6FF6B84D7EC4C176157E6B0' : true, '3FC92874F07DB0DEE11CCB2CA7BDF187641DC78ECE4C76E71B2253FBBC17E3FE' : true, '3FE67F5B06535FC13DE42FBF82AB1238C7C899491A460D62CD2FC08DC87DCB73' : true, - '403F573E7CA3226C59F2AE1CE93EB0EA27FBC8E8A3EA711214FA21DFA6FF0262' : true, - '41748175B1E9E26507156E326B06719603CCC2E54D9D1FAE0F6881012101F692' : true, + '411ABA7575AC3548FE6E02AF1E192B80ADA7FD957D2FDC1360B747598D1327F4' : true, '4181BB2178C564FEA4F0F5C87337921A1DB4C1CB1264B1E2168FFAF334C7DA55' : true, '41CD7602C418FD0831F1F207DD50A19A0A03679113F8508F43DE863AFD32FF45' : true, - '420E1CF047C7A0FEA28411C545C2E0AAC2AB31DE5BBD13F63022C0193E03DF9D' : true, - '422E906DC5CFDA0E2B9711F05E3A36299B9298E7D23392C3ECB11C4173F9DCEF' : true, + '421255699474B76638EBF0F0B09FB1D5DA870483D1F6572913EF411B384DE3E2' : true, '423D0D4DD3D4B507C4115C46321A9B0BE3B9D7224DF626D2027A30FE682099DE' : true, '4245AEAD44ABC8177230DB36491E58FE885773DB0D043E24412A8BF6262D506A' : true, '42A2B7BAFC9E81A94112C062E15EC8017861988A458D8C52A686702633559BEF' : true, + '42D891E625A2FE563C10EC705A036928A9EED088915D480F5DDEDBC4BB35A557' : true, '42F0C6BD144E105B3D14A68E267DDFCAAF76C95CFA265B187480EAB83FAB9215' : true, - '43555C20820B179886354E63251A21247292B3B7BA46D8BEE860A0313258136A' : true, '436A3291C05BB22CBED875AF7642839CC42E7C0BD534AA6698AF162F790F90BA' : true, '437B07B7934374CFEB2F61FB1B9A764548A53C9255F053C59E236CDC6B89B839' : true, + '438F971859A8E9513FF0A066A2DAB7A7605BA447CC82183DC88B53CAF49D1A37' : true, '440D00F6A763CEAF241756BFC150BABBB724D3AD48D6739ADEBC84004E24FB7A' : true, '44C748D62020862C698F3A1BE86A0261BEEF4337B6E28B3597F7FA0E4A01E49A' : true, '450608B6DCC297A7FC00DACC4455E165091B8A4B56873B61C4ACD495A32AA2B7' : true, '452F8C17E67135B1FF58F58BC411FA165E80838C8705B1F6BAF1C90F287BBDC9' : true, - '4582537553F4CE6DAFA6C46939EF567629506C16E76A9F058E2DB3B2435B272D' : true, + '454B18F6DAEAF7047D5B6CBE2639B39B2FD036870978048A5076DC8D50244365' : true, '459F25329680CC7589904EFE8F94F17880AA9DF2BA9408645BC9370DAA937471' : true, '45A2CDAA5DFAFF670425706B6543FBE161BAB6843A156A1D54F340BD8CB87970' : true, + '45C9985056B6629C3B4566E54648AE5DC504ACDA5569CE68023C39D9E554A217' : true, '45CEF64AA866F2A2A72E13722374190F8EEDFE984F022C3B23B492A073741EBD' : true, '45D1C3C1E96982C752313C9059D4D6291BC0652ED7B266E25F67738E4D74915E' : true, - '45EFC525BACC3D6E5AF98E1BFA4A60582231A423EE2E52D5760C184E66241DA5' : true, '4603C35A8304F6057C253381D39404E8B40AE0958B4EB2CEAB7777CD85802C0C' : true, '460D4CA817FB242D2263900689B3CBA7261A390B018391C7E1716991BE8ECAA0' : true, '46236B9468DB40FAF467AFB0C35B517E514251530785695F54440E6730AAE44A' : true, '464CC49DD9D781670D5B24D203D45F2CD011F63C8775862C2D7FAF4B23C64EEC' : true, '46565A05B815225FB600CF1CF1EE4BDBA5A7D39A7ECF45210FEF3C1FCC2B8B1A' : true, - '478E954CA5A715BC4E78DC2730A44ADFBB20D225C3AE4562882E0BFA3B13E374' : true, + '471B0944B33214226AC225854FE158436A278A750C082A48D9E7A5E2A0E1715F' : true, '47C5156F5664D1535C58F11AEBE349CBAEF19728907EBBD794D95E275E5201BD' : true, - '47EC7A6E4CCC0CA9BC386A23F5E31BD14FC0501A02CA4B5867663339257D6EB8' : true, '47F4235DE4F1BBD02682F65A8B465D04721124582B6DEAFDAC164A699F56F419' : true, - '4800E67D74EEC480EF1C5E3B2CF779C940C3177A5713BD1E1B8CB445DCA65345' : true, + '480B822D5A85FA7778AAB5735E46949A668EFBE1F6E8CC1107B01C6B761C2089' : true, '48544D794B99D6942B8C3B2CF051782C2F6CE051860BECDE2736C2CD6A429893' : true, - '48DF42F374FDCD58EB650256F421F6C1A73F663DCB8DE0972DF9421205509F8C' : true, '48E8ED415FD8EFB4407D0C67F3A4EBF15286569D29D566DEFA8B7AD8F135A5CD' : true, '49558145AB82E7F795C2E45402260F1AD1ED43D4DF145CF2577BA1615CD00843' : true, '4A25089DCED84BE3DB1816DA1A2619E2D39D037A7561AB7859949D1401BB6C39' : true, '4A80A015BEC13BF13BF90A093212BC7E939DF1F5F535730273342AE942769A2A' : true, '4A978057E01B2F443BFC218B48E7D00D2542DBA58ABD2609ECE7E152A8F86292' : true, + '4AE85007A69D54CCEA04A3FF18B66CA5AAAC43342506963BF910E2C2C3AC8816' : true, '4AF86DB451BCBBB3BD8BB3D5982DBF4451CD96394540DE9FE6210E69F7C2F8D3' : true, '4B14ADF4E6015B7F5E4EBBEAE635E5FCA547B1885B9386DFD76A25B8D2A2A63C' : true, + '4B1887A5BF5071B7F9EF164F10C4D3B4DADCC0144CC3C4BA26707AB1D336E0B7' : true, '4B29F275C3803C8B4E50951895FE2A4C94442F4A7D14922D54EADBCAAABF4056' : true, '4B50DC7F1BFC4867D02B551EBF66F63645DD5BC27681BA715154809449F381E4' : true, + '4BA794C124A33334A880DFDA09E7CE5B10552C8301447ACA77FD53CD4CE9E725' : true, '4C30D24EA7A5914CCCA63E3EA35BC8FB1235F5DCF380DD8A62A01EF15009668B' : true, + '4C5B87AF5F835DFEBF4FBDA9585178998AF6C7E8681DF65E46494A8F6BEC6EA8' : true, '4C71A0F5907EDCF7950980BCC1B7B6E00141C1FDD4A50D445BB43E1E054B59C5' : true, '4D112C44F7DBE6E0A55667E639E192515C54B00CE5E964EF696B13AA049BA656' : true, '4D26A014A4C4007564C743D9BBF9C2DC9A5A881C05E549DFFDAFCD3814F3966C' : true, '4D6CCD149A9BF9FA30CD78345F827ADB4A51553FCCDE1811FA39872E293EFE59' : true, '4D8C4D5D0326174F4268C67B81010F65F2DDF58CE700989FFFEEA379269B0AB2' : true, '4D934EEB8A02C8031AB9A12A52416AAEEDB4B2EE58FDAA767FAAE917AAF8B645' : true, + '4DA82555F55AC2CB08AC556D75E6C96E1E7CBA6080B1C9F50330ABA393550D18' : true, '4DAD9C6A183D4E385824B6026E226BA5F220BD838F827C2063831B5998504253' : true, '4DC761701AB68524A6BACAD94CAF1D8480229B66D8B9B9C0CDA3D3B233A6B785' : true, '4E49086BA0B8B96D1C31415D8A1464F19B93CF45B46D04AE4C21672279ECEFFB' : true, - '4E5AD8D52C37A505176F9BA95BAF43CB5FD5A7FC4654DC71178ABEA8188E7ED6' : true, + '4E9BD8EE95C95E2F30BC2874E73252CD5F1E93ED8044F8BDB007117ED14E2959' : true, + '4EA0560BBF74EF86493F2C828377068522430AFFC664B1D8E1AB3A2B7AA54FA4' : true, + '4EC463F17C54EFF037FFAC18326F5C8D86F5AC295149408499042DC4F8A96B73' : true, '4EEC544B64210519ACB153834E7AFE21867AA949946FEB78CE5A254D12A0934A' : true, - '4F8EE39D7EFDB0B9FD7B3E781B24978C6602E480169A6092BCAA90386A0AADFB' : true, + '4F2585D48325C6EFDF76B91358BCEA97A428B95E575ABDD83028DF3C7AA10FB0' : true, '505707224B14F1FFF2F5937865DE662C85B0C21D090C59658E24B53CA635EFEA' : true, - '50C6F0A7DF1F05E81EBD31ED778C2DBD7A048043157E91E43B051B34C5E843CA' : true, + '5067207C8A7AD4B7C06290052B7A6395CB34AA598FCBF2811ED504AEA1619C9E' : true, '50CC4D1AE164F66EC09AA6B7D5931074094FA1BB6788AFF3525D7711449CEA81' : true, '50D807568742476BDDFB2B2DD7532ADF770BC0A5D8CCF0710AA8EDA90AC1BF4E' : true, '50DB534A27B601C2268FB45FC5F496F4457DC030EBCDFD6221A85B1D6F612837' : true, '513B3B0E023E7013AD1D77E77AFDAC7D99627F8EE3C8FB291064D6D56C3CDFE4' : true, + '518B663FE089FF3E12F169F8EB5DE2EDC6635A11F14B7FD4207B307BDF2DAED5' : true, '51951278BE011B8562F6F9F629855BCFC7F28856755EA274F29109E2489CCAC4' : true, '51D06F5BD10CCE82EF993587A687822C99C3D8F3DD2F04408E99A5388C07333B' : true, '51F3918557C9F6EED321444D170BB23E4A558FDDE7B966D11FC6B426C51D1676' : true, '51F5AC607BCB1882F792585357C63B23D08267F717AAC5BE2AF557123EB19446' : true, '52064B1A1610B2374CC7319E51B4ABFAD46FA995B9447DF18ECBFC68382A9ACF' : true, + '5208CCACD74C6B569607B3AAB6639B318FD5CEB9E3A3C763F11D6C4BD603ED5A' : true, + '521C2A94F68FD0E4A39D62EDD2F980BA51A70DE79312605479C49E9BD633B854' : true, '527E1D8CBE4936132EB16202101509A3A0535CEF78476DD9317AE7A31C097327' : true, '52AFEFBC93919093868483354CF11C747FB38F946CDEFDCFA6E5117FB0F5039B' : true, '52D622E1A7705A08FC599381FD67871611748B8EE9BD235E6C2A91E315C251D0' : true, + '52E62F52537E672C499E0902B25BC800C87BD8C45BAB7B9683811A7D09C4559F' : true, '52FB96DD74E66D3AAD9362B58E44731D388E0B0E17DE700E2FF3A7ACB2FC1BE2' : true, '5322CEB4048FC373C5BBCCCA48985E2C72A380ECB490D143DA16482383C74B2B' : true, - '533D8997AAFFA435583E114FAF33F105F8CB1B87020DC86F5DA948808EE81AB4' : true, + '53A96B8A54585360591C2CD5A84E299962FAD97F6C1FF0D55484D3F56B2FB87F' : true, '53BC74DCB0A19B859F3FC60A2C6410D22F86321E2AA4D03B08C53181A0FDA996' : true, - '53CB6E4A76F1BDA96200BC21FA943685A88C33EC1A4510F4073BF54644475390' : true, '549714E49A3540F72DBFAD7836857D6566333DBA4645F3C4F349E5FDE00D4302' : true, '54B2BBDF93C79A91B1DC96B4534B8745690C5EBA5FD21A24462ABCE7E869D178' : true, - '54F7FBC10956E45F93F952A8DBF75467CA09CA6D45A0FD859761B66CF53A61E3' : true, - '550C98DA3C1CCC2DB49A389D57397C73C4304F4A4B65A1EE1A300EBBFAB97478' : true, '55360AB9E4626C6A5CABE53D4DC3FFE3339671F040B96E93C3B8ACB6CB1AD4D1' : true, '5572DFAD00443E9C4B0107CBC9FC381C41F3BD44497E4142E63C1E5645ADE8F9' : true, '557AE25211574C66868033236E50981E6DD3AAC09C9A7916CE3A26D03420E774' : true, '55DB7B0ADB76D9C23CFF1CE64083074EAEFFB1F83642E1AEC2A7FBD365A9E962' : true, '560643E22142CFB43DC9055CE558A62AA7102F75F6D42E3CA314920016A5779D' : true, + '562245CF8A84D1D3C1D6B93E913E3B22E5EB561788981CD666125C21EBF44D88' : true, '563A36F203C4A0D86BC2ADC38B1006499E3CD3D651B5C97AA848494CBC5582AC' : true, + '56471B223E05275BE6DC106B9104B5205CE2E6FE11115C5BE564B51B965B5F09' : true, + '566B4401F65B5C29AAB831E836536E791FDCCCE98184D62C0A26E6842F55D303' : true, '56A2C00BEDBCD3A014C22A89A1E887CB0F9A2095FED90ECF196F6719EFA35A5E' : true, - '56B6BEB3100D40CAB0EA4E450188CDDA653F473F3F182578AAB314006E66FA5C' : true, '56C3C0B8AFAC13E7ADBC449142D6782CC3C31A5E19DADEDF1CC01A1C80FD6D4B' : true, '56E517CBA2C7389F835B1BA349D636309FEFF05323957D8E64D6A2EC78F22883' : true, '572F317B14A0D117BA2B0F352841D9AA5DB609C9C5F9A9CB837D56533C983302' : true, - '5747EF64E7C857584498831611D042B568A3FFFBA79F476ED22F4D07E5239266' : true, '575B7E593AA02701C1596A6A45E1FF458D4626BB2A31F5D3031B2023956FE5B7' : true, '57A0A93A8193B5CC90AEED1D0B92696C9516F2C3A6FAF86F7BB8126B5A691311' : true, '57B2958E7031793509E2EB58DE05C460E0791C4F78A43244640F7926FA3BD7D6' : true, '581247229E9E4F0D67498BD22646654479F5E0E21C96DF47CF84EC94218EFAA6' : true, '585568A4010D0650BF0F0C2F78402F25FBF6D0B8C82879E5B475708DA6617E35' : true, '58B590F006C3B293A57D41FF491EDACB580EBBF8AB20A91D6F8F0ACC3D3C19EC' : true, + '590F7D88D52E1E705632486F4CB869B519331ABADB9B139951F8705F33E42C55' : true, '59148BECF90A7738D4915EE2C70C38F7789A26131E0FDC0240A76CA7153EAC00' : true, '592C1FA32CB66B17E0ADC3B3C6C65DB7A7B8863D0302D5E51C53416DB637BE6B' : true, + '592E6A566E519805F81D7C487817C94208B9EA356C03D1A69A3D1702265873E0' : true, + '59473282262DBA200C960F2938F0683168E8316CCBCA3FEE394F0F0D54A4029C' : true, + '59AF4358506C0A2318F28B90E799634921C869C5FD8B624C9D76756E2A9FDF6D' : true, + '59BA7AAEA0B865D4463836C24AB3BBE6D77AA72177831208B2B6A34C8C1DB307' : true, + '5A4A5D3D8F496476A5004C4964B6D4DE0DBD10410CC2346010753DE073A4A315' : true, '5B3B3DEBC9899E074F2AFFE1A660013CDFD66E4F70948B72AAA20DF84433A80C' : true, '5C1AF4338F1854843A251AFCCBFB2F626FA70E1DE41D2C941F34D15230BB56C9' : true, '5C1BDEA6E4051D2FE99D2502AC86707BD008636200DBEE30816399996D796DD0' : true, '5C3F4C823A953A561E8D0787CE7AD8FAC7434EF57CDEFA4520C18A5667C82003' : true, '5CDDF1DF7B5333F1B4C0FAA66297AD72ACA5258C5E9FDE4B9ACD9EAE832C7A02' : true, '5CF1D1896FCEF8E0B72BF6E617D8210ACE7DC6393E38FD4BD4C68E2EFE2EDC03' : true, - '5D133D3BC732EFC05E4C91931F8ACEC74F9BE1FFEC30F8C5E38616D2AF7BB20D' : true, '5D93064489EF0EFC4896A08CAFC0E39631930121F724A3D1CDFB83C96EABBE9E' : true, + '5D9A9954AA2FBF6B426E2D08BCB18387123B6E2CE67BE2FB9F60F8D4B405CD20' : true, '5DBEE57E22D11886178D1B5DCB4CB55C90C1C035B7914BD887A3BF87734A3806' : true, '5DCDD41A1C6B5EC3D7442090754B58FF81C2BD410EE5F730233F5C46B0E541BD' : true, '5DE0EE469B7D133584FC7B15F067761A0A18D73CFCC973EDE76DF596C4F7C9A7' : true, + '5E650BBA8E8037D6BBEE78A730F740DDDCDD7EC828120AD912F4BBD72794070C' : true, '5EA41BBE7505A57EBB3603AB14050A284390BDB6E72B39D918232A5D13E702E1' : true, - '5F05ACF54EAA38008B650AAA2DBB3722805C793616B1A21B43E1879107254E38' : true, + '5F24DC1AC032BB0FFEC76D35C0091D9B658E94D953C8F7576A7C1613ECD728B2' : true, + '5F5B785C935A6757DC0031E7B064C8C456F41CD84F59ADBF9AC22BE75E9442C0' : true, '5F61E01E88738DB91B4328949BC927A80DE24814DFE2B54F9F832FB7871D6926' : true, - '5F71744E0B28E62ABB0626131E0877737B5084AA6E648D268DD7D0D26B115EA2' : true, '5F85D6DF2EFBA0438EA4283D734CFAA8B3C43E22BCF7F6CFC24DBE82232ECD3F' : true, + '5FA6BB08BD3C5B8DEE211E5A08EF52E35079546ED797587E78751D36B31E09D6' : true, '5FB6ECAF5FD5CA42241B12521D7BB6F06B7D804C60C84D7BBA7B7A7543FE754E' : true, '5FEA0DFD20247FA12D63859439FF9F4D5D0207D6E1134820CAA9CFE4A1B08FEF' : true, '60E9F3B150DCF1BD90562DEDD083FD783E2CA9A982C08BCA2C455F50BF977B98' : true, '610B774EA0B634E6F9B5A73C2DE39026C1A55D9425691B68DF4803228BDB7F8A' : true, '6129C7157898F2D29FDF04A78AC6730FFB248F7467858C9F3441A5D4D6B88C8D' : true, - '613E70A1BE3CA6314EDB7C00B2477990271E0C8DE8210EED56ACD391E8CFF28F' : true, + '615745882CBA2C8B9875198E3FB62A6831207B74A21330847BA9AD01DC9D5586' : true, '618F1FA3F38C857898847A865AE73D87B0071C8DCFD4EBB7E80828B11862151A' : true, '61BA185CD2FAB39562813CDCDDFCD75184A1572E2B2B87667728C2EE8596AC65' : true, '61FDD344421DEEB7314FAA2A6C1A5CD97720CB90B48C801EC4AE74C7D88F1E39' : true, - '62210E1578BEBACCA159EED5A0EEE3192B7FA0C17FA2556A686E28B251D80C60' : true, '626D3DAAE3451C750616F520086766043D22C2E2C34F483D6C7EB06E76ABF206' : true, - '628B608326DFE57DF84B8289702D0510AF97D93EE30499B0CB5140921EC87DFD' : true, - '62AD913E74BC37FCF69CB86718E13A47FDF1440C2B18A4241D3EEE7831456160' : true, + '62B59DE2632C2A03669FF060A2C2047B9A95F49050C64B6BF5A782806AC10E99' : true, '62C9A052080F8EBA5E8FEB9615B5CDDFFF1D74F8467653030CB1BA12337EB5D7' : true, '63448627F20BDD4F11B278941D82DE56AD3A689CC06064D867FF060FCFE29A49' : true, '63A4A98B9778705A9CD9A0F1A40827B0A6C86E2A520DEFFB1AD8F815D760D992' : true, - '63AB6D72993230FECFB8A489FC3B76C1A16D158A2F8C0AF9AA7B02F6A638F4E4' : true, - '63B7D2C03D1507A80B8617E50895472A3C9E47CA34E8756069378DCEF952CFD3' : true, - '63E6A22E453B17B4EA3E35C6E39EB315DBB77A237B1BBA9BFB2B3BCF675A63B9' : true, '640ABE7DD00142C0BC18A62F0DF54284DC89AA1BA000DBCD992F719A4B9D2887' : true, - '644685FCA2BDCE4C6D4AA3876174676CB961619414083ADA90FE2443CF929D32' : true, - '64831454483CA9CA55859BBD324F492638DA8179EAAED19EA3CC8E16FCE7A83B' : true, - '648B6539CC321D112EE1762198FAC01AFC8B598E29317833ACFA9C02307F5E72' : true, + '640AD0B7F4803223887EAE106DDD628BED925569AB309C01E1C8B640FF05B2B5' : true, '64D1D9522071A54B43A6C43A759223AEA7AE209FEAB423EA24E3E95FD83BDFCC' : true, - '64E4359CB75DDA1A17413906C2881931CCBA16E52A52F13F16E65A752C2097A4' : true, + '64FA303A129E23C91B42F1C76DBEC8089307AFE11E5C937704D88B919BA60B45' : true, '651F8FBEC4C5909A0FDC3B8E8D557574FAF01B33981B5B725311B57DEBB47B24' : true, '6581498408FD7D10902F7D56704A23B3278D6EE675FBA214F305D43C1B620CE9' : true, '65ACF48C5CF24783794CB8D5AFC30737273D3DDF93F62EF803EDCD05650D775F' : true, '663A06084041682DEE8C4F8C41BB7C829E5946E2A83D28BECD5E62756502825C' : true, + '6640103D01C44839CC471424756C6CEEFE090B3BB98534B35675BC524D2FDA50' : true, '664EF517A09AAC31503712482FAD76860E0376164400E67A96177EDC25CC4CE2' : true, '6688912D47D0A49A3BF7EBA09AFCEA36E0D4DDF4BB571B383C134B763B17DF7A' : true, - '668B926F5EAA59F351B7ABFCBBE5FA17B547B01C5A7D4AE385736CE8FD13359E' : true, '66B10F427AD63DB6544E9E20191BDE4F827A7C96F1DB17E01E0B254D67BE282E' : true, '66D67EC6407BBAA2F4A0EAF49D81F223332DEAADC96292827CD749DB07A82C02' : true, '67118345997FE5257EB55439485C3BE019B32F1235E050EA2769A7DD80E6BBF3' : true, '673739D407C00E1F449A4F9846B8453C09BA0D0F46442053DD5339F93A2B0065' : true, - '67F7903A02481CD91A864899AE21E1D8C7E7D3FFEA34021EDB6F29C3DC9FE9CC' : true, '6860622481E0AB0EAD93B771290792279985D4989D072D5C1E376F451FFB1360' : true, - '688CBCC96F65054917A6D042282C3E33BC4B2F7A7F3C2AA0EFA97F31F2FEF21F' : true, - '688FE577BEDBA2FDAA3581F2A97A1388CA0E380387227AFB252297AEB6BD6FDA' : true, + '68DCC59DAF7A9F7BD72A11A0027A02AD2A4015C4D3351E331FFF7DF81C41F6D8' : true, '68F575FF9F2EE5CBBE2975DB80B0D2E8582B2B5A1624A70EE6470FD562D59E93' : true, - '69643C10B6E53A5667D8BAF683B1D566BB54B001E0588D7B791E648EA5681BBB' : true, + '692C0A28DE13EBB75674023CC105A5F663CF5C67153225EF1193209E985CB1D4' : true, + '69CE183BD9B04AD76F8FEBE25095D92D95888AA7D8735400158CD60B836FCF05' : true, '69EC7BB154853BCCDC5C5646ED659F54B957152BDF1799B2BD48D4EF52DD9A85' : true, - '69F71F4F07365D7F684EC748F9CE61559DA33FBE1C9772F836664D656F51A5F6' : true, + '6A7D32C4F099C8D7ECA61CECDFCE82C5D241F33F6A02B3A00D89802D4689DCBC' : true, '6AAC975279BDCCFB9D64F96F258D116ECDC41E526DE6B14FB10A8EEFA550A784' : true, '6AC112C1828538894A1FAC7CECE0ACFEE75658118041513498E880274BD2B7C9' : true, '6AD39077DC61A2347F25E34A809107D3F11E18B1E197A88A9A39F5FDBB0A3861' : true, @@ -437,16 +434,23 @@ const X509ChainWhitelist = { '6B16CAD6D99596442162EEE7113248C0C77EBA7DBE1D3BDC044AB9802337D2CE' : true, '6B8153379F9AD865DAA48C0B805430D7B62D6624C4AA9389FBD770A366439995' : true, '6BC4B8F5756C6E11852DEAF28C2208733B463931BC5413937F897D4735CC2F01' : true, + '6BF2234F99577BEF099F5A651C125E660A765202F83A7FF24C82FFC87F87C3FB' : true, + '6BF93E269F6A628136F482392804350AED624D75C68CA78D744CC06CF68EE1D4' : true, '6C2FD820535D5A821A1D96C86B45519B751F141CEE8E1DFE6E52EA5370E1E7F5' : true, '6CF13EB678D9631F8E425073339FF5B4FC020969732BBE54ED0D3087FA774303' : true, + '6D1A6A751BC763F5027ADCB9DD5D2FDD2B3BF82A755B3013851D2C8BB98342B1' : true, '6D2E55B7B10EC7E3F82F060350C9BB7DAEED8B6ACB8E79B4B088D9B711A9CC6E' : true, '6D53AA3328CC9AC46F2872113922BC105CC4A5C2B3EB7F45C331A93BBE4ADE3E' : true, '6D9C7D48EBEC4A7D808E0A45C6ADB9A6CC5E61551DDF1A24A3A74846039208AF' : true, '6DB177AE67C272A729818F26A5DC8A327236919BDF09E43961204BD9538CB09F' : true, '6DB3ED8E913F7236F1691473EB370D7FD9DA84FB1D8E07438E128878840EEEE5' : true, '6DC6A2951DC967373452FB4E9A95DEEBCAC70945DDE09BDA398F74161060EEC7' : true, + '6DCF946587948A63E73023A5F33AAEC7EACE0525DA389B15F1F8AF1AF80F51CF' : true, '6DD13D5385101A3323ECC27F7548813E240A1D58E37DF8D820CD2E2998BBB8C1' : true, + '6E1EBDACC8C14CBC6635F612329AA11C13C8C13BF612858C392A3B8C472AD059' : true, + '6E2E497FB005ECE46395535FD0DDFB0D25109D1BDA9D1933F522706D8D79E179' : true, '6EAC221C01F1C4E158E51B8AA15965260D186BDF22A579C9CE8D89E787A36FB3' : true, + '6EB7B7B5944AE125A6CB7A1E47F94EEB2707DB51DDA0A74B6DC73A9EA683F963' : true, '6EC6D27D2BE121B49CCDB7866F4FFCC3C2091AF00405CED481AD072FE4BC2307' : true, '6F45127FE064F0BBB5EAF17D7A4D9EA3A47175AEF7CAB5C98F2B6D11F28A4BB7' : true, '6FFF24F5CF69ACA10DFEBDCEA8B5A56990728D9EADA33D0CD316BF042E79068C' : true, @@ -455,57 +459,53 @@ const X509ChainWhitelist = { '70A137BA9CBC1043B06D08AF2800FC09F4D3334ACDC0915124CDC834A77564A1' : true, '711280787458F0E54B0C9294A54270FA83E8CAB29E212ADAF665D7F6345C4DF9' : true, '711C387F2C7A8AD850D98BB2D145DA6F0240960AC5563A50CC6251C28D659503' : true, + '712DFCF0FDE6A19BB956670492E1C39956012537416F6B0F90EFDF093ECE2D88' : true, '716121E1DA67D3A82CC8116139F78C34C30E6DC96F647B7F474CE569B38D0F3F' : true, '7177E89F5B3033D51F000533ACEA71FDEAEC93E4C3CEA1E0FF68F78BF35C8B21' : true, '71C96A7294C59E44C257A0BDA7578AC44118DE25DEE425F73E0A211066FE6AD4' : true, '71CBA0C7ADFA0E0688BBE75D856278A477C4041C6F0895AB384BAD02B9D951BA' : true, - '721728072AA0815DC7EC109C8737500ECAD862B2003518851C323664A749BB7C' : true, - '722368B696E375C97556E68FA5D53C3BA7CDCA15B13B72DB9E49090EE7C9C163' : true, + '7231ADFE0CF97B4891B54A4F17EC2104C2A732D06878323D7585801DC8883E6E' : true, '72438F5523C4516DEF379EA7206A883EA5876DDAEA39EC848A5C456E9215A1D3' : true, '727EB1C33A66E7DC0768741432204682504B8D4302D3B097181090064DB99F53' : true, - '72950D958C6C1FFDAED4C597635776C7EC60B32CC683D03AF405B023C686FEC0' : true, '72F3DB1BB2B0B3D65683F62D927E20C95303A00E8C845E0088E4DACD4F3B19FE' : true, '730C9CFC51120B6E5C66F07772ECB96F2933EB184A397BAF90453D2BB43BB600' : true, '7334856F73A23C5F0A60FD1EB2DD14EDB444B1B8B62516FFFC38589D1200B09D' : true, '739A4410178E7D1D310A8120651655322CCBA6F84D3F566FE9A9F1C268578DD1' : true, + '739BAFCDED267B356D90B89CEB40EF6C9C77DC768025EC662EDFE035A816DDDE' : true, '73A621FFE0ABD75757F5C92C8EF20E63EC8F4A279A450BACC7E4FA9D75E0EE5A' : true, - '73D889F527C021A7BB8B363C2467F7499145D97DB7B6E0207D6CB12DFA550903' : true, - '74395721FEE13356EFDE73462CBBFB2A471B4C95563BCDB979DA57B786D16A88' : true, '74711F9774C66CEC41DE4FD32197132B13A40A6758A106DC95BCADB9298A6241' : true, '757071EF34F3CA907D7D29C6420EC14B6953F433FA03F2049636F55265E456B0' : true, '7572D3C2860E9D28159C0337E8DC7C693F307AE0F1F02E0C35E091AC1C1571F6' : true, + '757BFE2C52AE03FF39624F9AB6449135C4499CD5BD4839C1204EAD50D589CAB8' : true, '75893F8249D9326D2316BFA87F7DE3062EA1E00116C921C6876AFF322B636664' : true, + '75A9264209E9CFFCF8C4D74F1988A6AD0F509269A5DDA3DAEFC0068EDBE6AB26' : true, '75B83054C471114D4A2839FB6B0FF55FE147D4968770A78F469ABEE5DE3E07E6' : true, '760650CA663BAF50AB023FB340DC4316998A7E66FE226C3A66E7D31CAACC9330' : true, - '7644E55E75802D6FF784B75B8D77DCFADDADA23DA2FBF95836FA3CB975C6B982' : true, - '76498ECB08242DC8AB6DE47C0EF0F87127C2809D2C1E1B8216D6297ED7D791D0' : true, + '7645E014C8465F11596B1B7093FCE41313B51FCAC1FBADD409033F63F5475CC6' : true, + '76CFE101ED5A3770EEFE332008D40852C8F01E9030C06A024117BDA1CCA7AC2F' : true, '76F8713E43FCFFDC282532FD58B8474C514D432CE8C85734923D96450A6623E3' : true, '76F92D711D9E8BB1F3210C9CDEE23CA1DCCA929595CA0F5D0C3150DA56B2618B' : true, + '77011CEBCD8791962FB34FA78597897A9CD8757BD10F4A3A595359986F6022AB' : true, '770784FC2B1A52F110194800E972006E868F055C52A8BE467F3AD7BCD7E441CC' : true, - '7889B1659DAF073B50A3FED9BDD6CA3F3F69E90E22C9EAC126E2F915C476984D' : true, - '78E4E5B9DC94A09084EF738F43D30114F90F95DDC550D6BC2ED203D722323EE3' : true, + '7871679EEF661F72EE1CCD043F1B7C597E8F23196B653B42634C37F2B6619B00' : true, '78EA89695196A279F7B44D8F1AA15080C91C3BB240F1D1878A88F2B27228D430' : true, - '79244B0AFBB3B26770A470A4F23555757DC25D3856F56D0096D9F06EB47D5889' : true, '792EE0B202E6A45AAA85E918497D9C9F16FEAC99500A7940C0FC812ECC42120C' : true, '79506C5663C38F43902B55BE2FFABE0757A806105C2A18473770E9DEE5322E40' : true, '79F3CF8BED0EEB720C3411D03257BB351FF5824181EFA725214AD60C11E7DE2A' : true, - '7A081DEE8006EF40615953A1EF9BA820BADAA31338157E69660B3EBE7852838C' : true, - '7A95B01B834A4CFF097B69C8D84488E0843D9C51A8045BF5AF6AC2CEAB65B079' : true, '7AE7C2EA08D84EB5EE0F978D061FC9D6DDFB57C1382D5215977205894898E0EF' : true, '7B90E5B537B13743AC7B5B9F3EA28B3F5F5E95A6D9F4AA0904DE22858F38C780' : true, '7B91BB0669DCF091D0C042FD14F1CA6B8718A4E1798A4BE8957DE6EEF186AB83' : true, + '7BDE39A76CE550ABEBE58E8195C5D2635A04B6362CEC665EADB76E8807C0A39B' : true, '7C63B78CCB8DE59051349EFBA4A9E34EB627F65855F3C754312DCFCDBFDC270C' : true, - '7C99FBE3E1BF4CE4683186F8BC44BEA34B07919C1542ACDE9420CD75BBF3F388' : true, - '7D08B399CE7B4D7A6DAD696C24FD870D577ED45A8081D3E1BF34577B6DEC77B9' : true, - '7D3EF8DEBFDDD39FA7CA90EAC62E660639521686926488A315B10FB2A0005F6A' : true, + '7D0D5D92F1A6306F7161413B8E086383A6A37A1AEB5E91FC39373464CB9FB217' : true, '7D4642DEBC7CF346EC7846E9B0314B73B6B9C23F8016E23E8BD49ED247D2BEBC' : true, - '7D7CB9E4195E89426B889E09DD6EF0018B702EEA4C8E1C5C39DDB538E20CF150' : true, - '7DFD6433613550E46711F591EB0B0790233460AB951DCCB4B60B61C91C359B83' : true, '7E01E1EBA9D9E46D3DEBEC868180199AE64DB3BC878F66066E91CB4C060B55D0' : true, '7E0920FB66D549811711C20F1789AF9FFC54846E738997B8A18A2F154F57D29F' : true, '7E0AB095FE17F430AAE0B4AB7490366DF97BADF13AC223D96AF0913D6919BE7D' : true, + '7E723113D07305D5E9843032E474637331F1567CF33EDD8316059148AA2E3ED8' : true, '7E73DC62FF77BE88149C85444C4066E0657AADB72716230EBC073848DBD7F59A' : true, '7EAF183A91E8DA3866531C499039CEF3AEC4F214BEE293F268A28616B67D0474' : true, + '7EB86A40F92731EBBE58C26A9ABE78C3C1D2E2406EA2CBB6FC5908EF852253D3' : true, '7F1566D05D1E3A90A9D5D551AEF51D2F1827FC9E82922F2BB32A08CDC5BDEC7F' : true, '7F7453584CDB1B6048A5508FD8FE1FB7009FB225E754CA38FDFFC28206BD2640' : true, '7FFDBE3A1A423CCC6EC3C9FCE2D51B91D70EB1A122BD7FB53875F4BB08E3E966' : true, @@ -517,19 +517,20 @@ const X509ChainWhitelist = { '8117437E2D53CBAF96B03A772D719EA4783D32C4401D6C590BA9F941C52E54FF' : true, '8133AEBBA592FF513EB1EA61723A0CEF57A583CDE66794FA9DE2FC0A8F573B54' : true, '814328B3A40AA4F30950FF66E5DF4304428357F2C5AEA8C1E397723C751651C6' : true, + '817085684B201068835A0E3E8A3B0B8CFC31CB0F8CD5E451DF94997E1A958CAF' : true, '8179173BEEC9E5175036B790F2CED009213A8FF7D62CDED95DE000BE2B03B068' : true, + '820CD9756E7EC92E85459F6F260007CD5EB8CEDCF0A7EDEF61271196CFB946E4' : true, + '82362F61201C87FE00EC65651619A9328FD56E81135F03ACC3D4B366F7F772EB' : true, '826F129EED33C26A96D2FA3EA71B7897E065E2A68280A77C03E948C9EAD80945' : true, '829124925C3F7AB9329A17C8329D55F04DE8C98994845083D9293F2546CFEED3' : true, - '82D1AEF2AFC46271D18C5FE50811DF9A5EAB812156C2FE6F531A34FD529E75A9' : true, '82F25208D7357EE223C6715E802CD0F8D019E3004DEFD76A90BFAB18D2DF07CE' : true, - '836E748E62C7EF083DEC6A11521F79E4F2EFA40CE0EFCDBE43CF3228F905CE14' : true, + '839596D68CDA901FE0D021E3F9AAA8D2163FD2B41F233D90159E656D7C7C534E' : true, '843DE3411DE65A522709898B3CF9AD8A6CD1011BAE6F9DE0FE7DF2496F95C84B' : true, '84A093B67AC79FA09CC2E40B54BE4027DE363B86EDF64B623BC346188B877ACF' : true, '84A8C623C4304D57CE03893ACBF4E51FC9975C58658B89127508E5C33BE992A7' : true, '84B91F7D19D03A64195173E28A98C6A24AD166106B5AC14B36A404C45608B2D6' : true, '8502DA6C4457ACBF635D8B3719166A351ACB8F2EAE0F9756EC1636B90CF6068C' : true, '8540F78EF676D50879CFF30B3CAFCDCDB1287CE9472D0E39AD221AC0B049BF5C' : true, - '8544A63131F49B49F2802FA5FFB5BB62D726E1A5972F668781040E2342770042' : true, '8565CBCC3E3484929C4C2D7408530788E83FF8CE2B8502125176AA2F89D3C350' : true, '856D54922C6DB9C5747A1EE5ADB099907C63E0BB928B1D00BEFBF81E6B0E83A6' : true, '857EB3AE3D76F7A86260D7DF2583D65053D7DBC30558CF41078A51A841A15408' : true, @@ -537,18 +538,15 @@ const X509ChainWhitelist = { '8620FBF8F4B3D858B8AE9A6EF3423068026CEAD38ED1B70B12E65A66EBE62845' : true, '8627217D9525127A4161D0F1809492211C4105596A011CCD2F10968D3C3307CD' : true, '8632291EE6C74182159207F88A43B60EDD3715D9B23CB51B878C7DFA413AEBAC' : true, + '87505A19F4BF8A251C9F7EEC090BB5F91FF1FBF950EFCC6BFB9B513EBB62AEE9' : true, '878F9A1345B5F3F76831E0AA2CEC43E51FD88455FD70FF0C671DDB8D8646BECF' : true, '8798A29F91634076CE7FFE713E075C4A9E231DB4113DEEFE4FF052C73E900069' : true, '88A9F13EF3721A05CD57C6E13E4B2D6F699C00312E92C24E04D86990177BFD3D' : true, - '88D68B8F6C5B10D7E9413E6B62A450E74806DA84C0EB558EE9E98E2BDEDD16E7' : true, + '88C3951EA08F6218D53C848FD0745408A54B8588AD3728B9634AFF9280055838' : true, '88DA049C5A0F1F2FF5C8D53A9763C6E53B5E653753AEBD8C1A7227F5CA83995D' : true, '891419933107B0EC0222BF502DB271240F352C825D2E32776842C40D13C2F8C1' : true, - '89972853B85F67232811C446ADD4CDCEF7D262CAF5E565E92DE28350D653B982' : true, - '8998929C795E1C1A4D769B9E0FB886892FBA9D8F1542DD894E15E12530424BCC' : true, - '8A0A728D550D96C56A17DA2A0A97A6A9CAF22D5AEC3BA7A6434C51FDBF698785' : true, '8A0BD2A91793B98A002F45011E47B8B81C1F11CF4F10550B39861B709A22A8B0' : true, '8AA440E22415685F4A009BA8F14D9B8251614D78159C926A712542B0E9FCA143' : true, - '8ADE74E6435437386C63E8C22DBF3BF0533A4B49E6668F5F15824AB58AF721D0' : true, '8B41B56DC76B41CBEF93FD4F1F74525CF5B11723140CB81A7DD29AA3D95703BD' : true, '8B83806B610FF233FDE11E892A0023140E5CAD1500847E29F5E5C6CC21BF33C5' : true, '8BD1BB8CD29EBAEB36A58AFE2BA070CBB92EC003064B71AEC49E812E39C2874E' : true, @@ -557,18 +555,14 @@ const X509ChainWhitelist = { '8C2DDBA5CA9E4CF79937A5A3AFCA79F371B6F235B37308EB53ADF12C319A7EC9' : true, '8C4AA99089DE2B772FA47DE3D9901FE175AA49A46B9D056BD8211B53848276AF' : true, '8C742B891F670721F4F8E1D4DADEC74C9E9256E0C7D132578973823FE27C3A33' : true, - '8C959CC99EA9E228577582BB36DBC373836E4D91CDD4FA3C89B20A289B11CD23' : true, - '8D0394524B030A612B174B7F2FA75A535F6DE732E9317A394BA9286CD3F42F18' : true, '8D0CF6F0B227BE9394DA0DADABAB81A44900D104A915645ABF030220F3AE187C' : true, '8D1399FC7382FB9F29574FADD5757DD9213F6A13D8A318ED9F60B9936F46C548' : true, - '8D2E6A0020C2C53A264A392C371146ACBC83A8966438387CA289807BB5583C15' : true, '8E778C2C00AEB79E3C3BD5B071E2102021DA3E343A2F39E18B0F114682974D9C' : true, '8E8FBD2654D291051FC080C47960747B4191C58D85765C77CAC1C239FF3DDD1C' : true, - '8F31ABA69837A432E88579184085B0AE867412379E04666EF880DE539CB03257' : true, - '8F9608587BFDD90423D96C82A5338A09203663970E435AF25EE4079922B60E21' : true, - '8FA478A1DE3999FD32313D519AB1BF7DA3C485C1EC90176E34F82CA74EE170B6' : true, + '8EFFA0588BA33DBD060A3822B4486504342BEDB7E0D6F04D642DE2FF89F07758' : true, '9055AB7512901D1134842CD2E96FA6A7ACD149ECB71088495948DB65D70C5377' : true, '90C2F31A64343BA4CBEEAC90A43FCBDB46932CC21CC58095FB6D6CDA7B33F362' : true, + '90E09E115ADE38DD414CC283D49DC3B42D7CD5A45E7501F60CCBF8A0264D3FCE' : true, '90E64A0F26C4DB9ADC398C779A5E526DC969AAFEDD0E93CC3D8E8409EE0A14E5' : true, '91045740421F423B4863813FDA01E15F2DBFFF49AD80C9B732B0921980734999' : true, '9122BF7F13DF3B05605A0F292B4C90830F29A3196A5156D97B76AA8507D3FEB2' : true, @@ -578,211 +572,202 @@ const X509ChainWhitelist = { '91728081A414570C9CFDDB6A7F70CE56010D44F4E165762B73F4B05436D85351' : true, '918B02B75417DE289310E10FC77AF7041D1F380F02939D64F063776F121AD61E' : true, '91EE28B14AB2C7571BE6CDE2D75FD4C05C960FB033DA819EDD463D5D3C494591' : true, - '922D7192C60ECCB0A2367C8E7897C8289C2CD7010B98CF82A964ACA2B56D8BF7' : true, - '9244CDCD0DED69F9AECD82846D0467062DDA89CD32D8174CD69F9DE602AED97E' : true, + '92059CF4A0175D14DDA7D7EC71DFC76A7A91A75F4B9BD886E5595413920885FC' : true, + '924BC74FE59554AEA09046C36D47000CC6DF8D06D63D4C21E7A11D7B3FE6DD92' : true, '926B2CC74A86E6919298CF1B5D43A44E70214CC94C416E9DA227701666BBEE6C' : true, '9295435D6B38A570B2F537814147422BC442A7E39E1AA307550DDEF0AB93C3DC' : true, + '92BF7C35E4A9C241A5D5C74AB7723187BE0D0AA544447BEC0EC3AC45BAC91A8D' : true, '92E91A15A0542407788FCD78EF9287724B2B25A27F703C9FBF2F5BEE709A68F3' : true, '92FC5C28899C60D64BE77DDC8D6F746182A5C5CAED5A3CA093E6A6FC8070B64B' : true, '92FD30739B92B5509945785B19CA286449968DDF5EF7B8F44C6C8556711DD3B5' : true, - '93197C3990B717E3C0A72941DE6DC382265AF352701F62FE07714449334CDD7F' : true, '93671EC41A75DADCAD2454D2D9951DA643ADD6C899C6F4EDF6E8806217949732' : true, - '9386153F7472D5A4E3218FC3353ECF45BE32905B7FDA3D7882C4FFE6CF966AA3' : true, - '939BF6798DB161C0B92007D4E725EF2EAE06985A8FCD7754967CE7AB0D650F5A' : true, - '93BF03482F668B7E936D4EAF23D3EA36DE0E603480C2F559406F2E44B0B3148F' : true, - '93DCEAA3D67BD8992097C446EECE4A6A02DCF89EAB0008EFAE7D0C9BE26B7C00' : true, '9446A5F64DFA26478AFBF6D0F3A0773ACDD46F1A4F7691A72BF24A58A411B340' : true, '9452917F8C5F6F630305312187EA4858EC07A829CC74DAD74BA24EFE7F4F883D' : true, '94F858E57AC5AA1A13209E8D6DB28141036EDF3AE160BE93AE79A7CEB0CA33B9' : true, + '95130BCD7669BD1B1F2FF94AF3096312509FE7FDC95A535D73F7883CAFB18DE5' : true, '951A1AEC1EFF82FA3366E4569838AC37BCE65385B88CF81B0D96B6A552258690' : true, - '95A1D4BC10A9AF2304C4C9489A3C55845CE7BF588BCF920365C6B2A423923A59' : true, + '95344A65172BBC66E7F20CBBED554FC6A745542212A0E3A782C26BE16ABDA783' : true, '95A80082CCA2E52DFF16CA0E49B9FFE32F7ECB93770D20913605BBD47A2C65A6' : true, + '960B5A0740783B428A6F0A86DD6BB5AB90A0FD0A43C237F941E64D8ED8417998' : true, '9663C730BE3E8838AF256662B79C2EEC10D7AB2595D9712EAD7BB4C8F5454837' : true, '9668363E5A4509F63E66C774CC7374E8D7654D0D63E833131665F65BB0116D90' : true, - '96ED7F4947B39E44EDCEEA05043F9B286C35BFA932C02D88A00B5338BE7829D5' : true, '9703B5D60B49A69534FA129729FE3176EA17E03C53BC90BF11280C050F776E73' : true, '970D20E6919A2FACA4E42CDD5E94B6F26ABB2AC051278F10E746CFD897996249' : true, '9728534E56087F5D0E34881BF62834B32DBE8EC7629A7EE04F52878A9A61E36C' : true, '976ECEBA965B747F498F8E4D26E3BABEFC48A6DD2645210168D7D82BB97C15C5' : true, + '977C77EDC0AE3D98F2FE87B8C309DACC9306DC575D2D8FC358973DC716EAD715' : true, '9787C483E07B0D1A0251A93D9F86495C6E39D25375C395E9939145D6C1E818D6' : true, - '979F95AFF9D71DE4B8ECE178862627DE62E0E24E5ABDA2E8A20E5177E8F428D2' : true, '9874E435B3A12419DA88FE7AE98EEFA9DE47D098DC95AA6204B499202AB1A0CB' : true, - '995FB24A5192D81E32B762C20EA1298A1C67820CC360914FCCE1613A12CEF526' : true, - '99A4816C0BCDE615242EF4FCB3CD6E84EC60952E9F97E248424080DAD5D0629F' : true, + '990A30FD404D16728C9D91297777C31FFCD460CCB2E940DEFDB037EE791604B9' : true, '99BD9F4C25AF74058C9E443467C9FBA76EB37661CBEF5A1E1244D8077200A250' : true, + '99CBBF6AFBFF1BD3AC24402B5F4D3CBD7B6984131B6B0A6955AA3295B92891F0' : true, + '99CC71A07B4304B5F9392B1D2AE627E33EC83F527206B3C1D0E6EDB41A93EC07' : true, '99DDDA7A8D6D222C3111DDF5E85A45261AE9A7CAE2972567996A7729D0FD6E68' : true, '99E2609E0CDCFD36015CC659568D5C5B01CE4F7FA0C5671738D525FD8C518B44' : true, '99F02B4F32B9993CB7656021DA511B31A2944585B6B9C6DD5BC1F4A41681C5DD' : true, '9A01E5759613554A5FAEB7E8889F18EEE16568073CCEDEFA0485F01969535C43' : true, '9A2ABE7CC70A0E4C5938A7AF3CB4C165872C3387BFC4653F48A68F39C13F3899' : true, '9ADA51307C3FA225DB6F8E1FA3A218E477F775FA3D3DBE839232E3C385310902' : true, - '9AF3A66EB67ED022E3F99B1E810BA8C0A110F83F0BF250914AA5F1F0989B2196' : true, '9B128E182D224AE31F63FA92892A8A322AE42BF2D4723D62F5A6744973C82F6C' : true, - '9B1F3F707765DA5034A4C9B9C3D341BDEDEEC1A13C3EA464045D905CBB9B4ADA' : true, '9B37ABC1012C67357E1B828C3F70EF7584EA128D20968DA23969B0BE939CB83B' : true, - '9B4F75DA103442C908F7CE2C0D7EF9674813C56C384A0A64D326BE91F34A6F63' : true, - '9B641759FBECFC4BD8839B33889BC669CA8F1592A94AAEF087967530A34BA32B' : true, '9B80DD5C98B0F0A7AE343DBB896DBCE45DA52EB4E31BE057287A2A738D9CE3D6' : true, '9B8B430BCC7FFDD28FA85A1B18690D76DE8F18DE340656F63BD1472816A3C83E' : true, '9BAE8B30BBFA182D0BC3DCE5BADF78381980EE69F15884A0B93F291EA09A7EB9' : true, '9BEB9D4CF88A648ACC9CFFA48A687370D76E9F8188AB3BD638D9BFABD2D6AB24' : true, '9C052D1467B80EC3013D5641910680BFFE3616095B7F3FE61338C31A4E08A6A5' : true, '9C5435D416BDB4EAE642E2A66B8382BC848B362E3937069725DEFD9282772612' : true, - '9C7DCBE2DF8C0BC947A09C39B1B6CD2EE137D366554F8CB46AFD80C5FA9C3B81' : true, '9CBBB47E211DC5C8FB0613F90EF2828B4C14945D15C27A6F16BA4F90B02D066F' : true, '9CFB4802809B54253FD655390678454D0AFFE4E5B0239AF6E4D5CFD90FEF6931' : true, '9D10CB4207766E66BF3482393E13D3E3BB23AEC361470B6693597632FDAEB302' : true, '9D28BF964F6C820DD26D42FFC18689C1D2FD43F4C4DA9B35F11CEB8FA24F2073' : true, '9D98952A99B9FF1B2B7A86D21F50E311B3147CD9475830A856A4C63798B05630' : true, + '9DF8866928CE72889BC13E7A31F716B17E4DBC40AD610615B10AD25629A1E0A9' : true, + '9E1FEA6617DEB24D7E3DCCACDCE1C98337E581262A08D42EB3F912333E977D39' : true, '9E418F784C18C79930946ED9BC408D8E2F694BE1E3DBAE4BB20917F8E1B277A7' : true, - '9E492AEE3B5838FF2E4BDA9FF98D73B48CA846FBD2AEEDA19FB885A489F58DF1' : true, + '9EBA1808D31F89FD26CA580E6FD37B15D0261A807154FBAF11A7DA4B0C9A5E06' : true, '9EE2376792A6437F098A3DA7A2CA9AB54D9E9138051FB201CF84A91653C9C32B' : true, - '9F194F70160074F1321FC1140FD02064E1FC084CFDB96E1080396841F6D3BB4B' : true, '9F31E8A729CDBA0C25E4D73181264776E6DC12F264ACDE58F047382B0326E463' : true, - '9F5CB7420AFF2B5250A87EE7D0F1878496A34BCADB0971DD5AC3C33465C07565' : true, '9FB66B76C9B0AB6ED5DA3188A3DC6FCBC369AB273DCA99468C1EE4604A1E9E99' : true, - 'A0212D4EE874832A0202ECD1349ED750083B1D238DB6E30120702BE1256F53D8' : true, - 'A024128989862D72CA20143420C8437F2E91D063A2D85E3B44C0E9F125DC7E59' : true, - 'A03D7CE2FA040738CCFEF1F20872DDC1E321745B2C34095822A51B3BDC07D9F5' : true, 'A03F32B0A7677B8D7102BCE24F121EE6CC503FF173C43CDD6B914BC69D954ACA' : true, - 'A06E313693C42005CB7B7AE33A96E3ABD66E05A57012B6294671FBBEF4A84AAC' : true, 'A08110BB7D0D5F694D791F82071E44B4C968D4990C73A402B25E0E0ACA5EA6E7' : true, - 'A09161C66FBE8334516AA4F5705D03ED3022BEB980CEC77041C57ACF4C04EB21' : true, 'A0B9ADCD27CD63E8842BAE80188453C09DEC27270C32748A4EC2508372AD36A5' : true, + 'A1359CA553460934748962D75921CFB51E3298EFD3FB1ECF5823BAF599E56136' : true, 'A13EAF82F0814BE5FA12BFB4D2FFBB75FC6375DF19E16B8490D140CFEB54AEE3' : true, 'A1434249C4B9832F01BE03643639D862CD66EA988BB1297822D5ED9A9D0B86D0' : true, 'A15455BAF823A9C2A7B971C6F11D799D4C6E5B59D274150AE67294035C94ADC0' : true, 'A15BB49CD56693B9881AD43F6366FD2966AF816643BB107E8A249E07227F67EA' : true, 'A16BC03AE3E35E7C39B45D339A22BEB39CEC134D6B9CCA289E873F91A384DCBF' : true, - 'A19514A23AD3729EF69553D8293E9693528EC67609464D4EA0A96CEF8E9C3E05' : true, 'A1C8AEB8D3097DE429CEA435BE063B3E16447F24132E1F1AE459C5855BC4DAB3' : true, - 'A242ECCA540644D65C4152B7D44ECC0DD7A831DB42653CB4E92406E2D0AE4CCE' : true, + 'A20571EB3FCEFA102CE99C087F9217BD081AAA8DBB618558D49EC7364AE2CA72' : true, + 'A2263FF0D63F93183AF81B16964F4C8A3AB8A02E836CDFEE2CBE32C3E09EB486' : true, 'A277B893194AE7687EBBCFA344178B3578AA6228D2B430BBE2FC8D5EAEE43135' : true, 'A278FEDD023B6A1BE29917353E38320B8D8EBED9ADB0F88A8D00434D9B1A0851' : true, - 'A28337D306B9F107098D473AF3F34D8C14DCCBF62D725D5F8EEAE11BAAC558B0' : true, 'A29725F7446E6A2AD03DF0B7D77B72F9CF0249733B42F48DA80AE41C6B206C49' : true, 'A2C85895E192F69BFF3BD6CE420B8C84A6FC87B3A999F84701F0230887DD3344' : true, 'A300C56C8CB909C4F6ABAD6A7FCACC5E621BE17D5209717912B3F3BF2F7D6CAF' : true, - 'A32C868E44827044CE85B05E7E694717A5D3A7F8B9D28C41B7770DCD84F81218' : true, - 'A33C924A4181FC26CCE183DF2C30AD332CF6D6A94626E2B6455CEF77560438F4' : true, - 'A35426EFDAE7DC04D5F7926E254D5CEA23D4CAC5371D577ADA3A4AF828766F1F' : true, - 'A37B9444FE3BB0FB2EC43F2677926EF458D0ED4F0688FEA6443A5F243F10C2AB' : true, 'A3BD2DB1D95E67D4A20301B41F1E797421E259948072A2E4B9DF9158D8FA9143' : true, + 'A3D68A1A93E75E8250BE2851500FADA3A3F3A0FB073197DF59ADCF9569C22B4D' : true, 'A41920689CEE150BF8CDA57D32B36D32985FE08AD4F0E52D150D1CE5C7096810' : true, - 'A4A4A1370E59CF5B199B4B0B5A04E12DE67465C6BA51DD379678194E1328FDE0' : true, 'A503E853F535F69CB099A247D5FA9D2F656CA1992C65C050CC5A36FF11DD47FB' : true, + 'A57EE515604253DDBB4FFB6C1FEF243E6F680910808147AE52318A02699220FB' : true, 'A5DF74566E059491858A87805B36E5060095F7963D35877692C2951C1D649E22' : true, - 'A6436C7837EB4F0FD89A1F3ECE954BCDC0D76E3817AD0289B64A22B78B071D7E' : true, + 'A6120E041C5F648F18FFFFD6D79C3A4EB29F8E88FDE41308F28D4A52511B5BC1' : true, 'A66BDA4B1FB0A132F118520414B7C2FE89EB9CAEA7E599743F0DDB2F5DA36294' : true, + 'A67D1D9EAD7E9D1CDCD3070F40B96C88A6214EDCDEE36E84305DFAD4BBFFE78F' : true, 'A686BB3EA8129BEA261D5B99357BDD2BC22DE15F0140AFA2D7CA3ADBCB64DE14' : true, - 'A6B23EA2BFF90B8406D914D1D5B5B11D84F759C88B9AFAF64B77B2DCE08D28F4' : true, - 'A718CF6FB0B4672FDB9BA1CDB812CDB98423DD8ACC8991780BE5E0FAEB863FBC' : true, 'A7636BE0A08F56D7F05A8D69AF0B7199FA7C05AAC123DCE71AB57C538A4D910A' : true, + 'A768C6ECF2758D2070C72BB5C554F89AF332DBE52464482100C703CB7B01AC81' : true, 'A7BBF060D6455FAC1B40C3C14FDC8DCAB6B032A3C636F78EFF0035E035D2A289' : true, - 'A828D902865C9F63FCD670F5752ADB8F8D95C6DD434F33962466496EB8D6BB3C' : true, - 'A82D480B6360B97B8FA507BD461FA4E2D6B73BDF171723C707FDBFD7C9C2C144' : true, 'A85EC0692236ED65D5C36943B771F81FA013E93A887264C8870599C858456241' : true, - 'A8F36E0AEAF9A102084B815C248191CB8EAE56E4A732C669092E6C693606425F' : true, 'A8FFD3DCAC35478A6187DB3E317D7A9BA8D9823BDDA70440B8FCD5D83F49B836' : true, + 'A905FD2FCB5494E9126BFD0372D166EA641B4FB9E0162E56FC70085392036974' : true, 'A91F446F5E2FF93B1FA514B3CECA23118E1000AD358CFE04DFD5E6E25E7AB292' : true, 'A9869713F6E5332E3F4902E82E81EACF34994042C411A28C8AAC116131EE90E9' : true, 'A9913780644EF0A55C80B8BBFFA76A7453DF7F9FC04E9BB09FB9434240D03961' : true, 'A9C3D776062E86182D7BFAD9005B716E1189EBD051D477078341EBA83F602DC7' : true, - 'A9E614A0EBCCB8C193707AB9EB139666AE3C4CE774741351D00A25647ECE659E' : true, 'AA0F48D748A88A3DF4392B0AF891FB99981D3D66D213B261AF14863E44F66870' : true, 'AA6A6EB3A263EC4DD20257BAD1C1A94F80FD17E51BB03DF1BF0332AF48FDA5EF' : true, + 'AA70F6E381B7B7BE508E8D5EB062186FB323FE00A75B264F43B771B731FE96AB' : true, 'AAA0B610FC8267716C7703C164E8E8A47B0DB68F821405F83AFBF5F4D7BB5219' : true, 'AB33CA8B659481B0120C5A227487E4F99D28106362B530D054FD812F7278CA51' : true, - 'AB3975DCF7B531638F8E8EE570E416890F6E1FA4DFB66CD2EA62E81F6CB19383' : true, 'AB5608534365B885795A5E3D004C5F29613BA05E2C9CABE0FE00C99067318A36' : true, + 'ABE32C06C939CB27C5B7744697B92399AB712132074139162FD988DD108C1061' : true, 'ABEAC0745A8B282D5BB1DB3044B94C07D11F414A514894CCE62C067DF99382A5' : true, + 'ABFD6DB878DBD4D664B3449C4F307DDB328C10414164F58492BE73195579B2BA' : true, 'AC1199A88C3BB6564557B6BA422B776E8032D9457EE1099D0BD3E53DC44F73F5' : true, 'AC3DBED034C44698984D68EA44B0B3D74C0DE3B7615C3240A71C1709958DC3BF' : true, 'AC523C58EEF332E2FA0491FD81659997FE32F1EEA4F7694D9C149ADF4B18BF2F' : true, + 'AC523FD08C897CD327DE0751BB2C5DD6AFF7A6948D7561478E300AE758F9BE77' : true, 'AC72106DE06D4C1A17E641546E6DC5C53A1F48FCED34B9BD09368429F828CD70' : true, 'ACA129E9ABBBC9473A45F1F0688C8FB4BB9E7B9965D8BA382DB371575A2100FC' : true, - 'AD0C2E82F0B607A9B4D0571DF0302FF442E2B99ECE91C18E22C416B46B67E4F7' : true, 'AD56E6AD659C808689220F5959DECE86001E37EEB88F452E2111BBAD634B4AFC' : true, 'AD5A935C6684CDB2459FA1D67250E8F9B6A6CB6455BC628750F9633FCF6EBF62' : true, 'AE3359DA4CEE82D978C3C7B4954AD6E0A80E53D1CEDB3A6262996F9CA0B77D83' : true, + 'AE387E179AFCB2F919BA3BD839B2350E9EF48A03A5B5AAC0B87517502456F051' : true, + 'AE4C57D65E9308A4658AE987C0A10AE56939D0578E22D0CE6E5A6E400D492335' : true, 'AE51B75FD36BE0B6CF478F2441E57E91C216179A93BC05E35983D5FCD582CA91' : true, 'AE7D10798CDAEF50F7599FB03394DE7DED48C3054CE987479DB018E789E3718C' : true, 'AEA0E3A8AC6F70B681BDEFB28D9F156116F80230149D8E5C9DE76E9062EC015B' : true, 'AEDE30ABFD76FFEFF77B437F8862FF677913239CB0DE0360FF93EDA6B515F731' : true, 'AF6F25BC29AA257FB80826165B3AA5BECB2CEF777817998D0619544F02FAF897' : true, 'AFE6418D301202651844A84CC8B19A56C479D627DE922366E532643D995470A9' : true, - 'B040095E5483E488179D07D81A9C14C6CE026480DBA570A6D16D75A7414D7499' : true, + 'B03FB37D54CC8E27E281D02BF684E553FFA3CECB66583C141A9C99B22E1D2BB7' : true, 'B05633EABB92254800392A31FA1627F077F2C91B29D82CF1EB1D507EC7D44038' : true, 'B0A3CC901A3D58371289521F9345843F7ADEA438660729BE9B7B520DDB0BB965' : true, 'B145A895F26B09540185848A600F7F58C0B03740C17B61A1B43BDC652740B80B' : true, + 'B17B2A39EF0B4A01171DCA730D2AA7214B570F692ED75B439B84B1EFE528F7D8' : true, 'B19BEC326EB5F611BA8CE10410932955840A0818BFD2C1C690BC1C06C63A686F' : true, + 'B1B58B7EEBC1947CB840FC4C2713D0DDB23DEBC75E58DB15610AB4EA9A1DE1C3' : true, 'B1D9B3EE2512A48A8E703E2D2263EEB4B0A3D24963F5165DB3719CD4750D2986' : true, 'B2618AD6AE584F2CDCEC050ECB0FCE8E5BF0E9E978AFE692E4A1BCB8B7D03044' : true, 'B29A6DB4686379EB52C1D8F249A74FA55A1DD9F2162B0B3E0683912C1E942437' : true, 'B2B46BCF24DBED9CB8A829DEDB3536B95774AE8223A8B160C2B097154A3EB8E0' : true, - 'B2C34569468F2754686AD5C63A5B6C71FBDC5D7C78B161C70F97309CAE2FF270' : true, 'B2CB5A2A69339A575A4198D5B76822E6A0F90871A45C8348F2A060CEE67EC98D' : true, 'B31C07387E56AA457F17CA3D3A4C485683253CF387E6DCE37469B6A8E51CBF29' : true, 'B3251BB9A1B4F219400E69789FB08CA2BBA396C6D2FD3C4B69F4B7E1C0DDB615' : true, 'B33419AF991DF06128CC6A1EF6CAD190F68C1903CFB16B5346D0653C9C5139CA' : true, - 'B3381C627EFBEF5DF3BCC9DB71A9B6E4C0A4F3114F7E7408A356FB33FBA5D20B' : true, - 'B36D72C8B1F436DA49520421FC0A2869A9952DA405DA5E29EC3A1919453DD6F5' : true, 'B38307BF753F924511125E6FE9542C79A8541FCC780FF6905BA237A4C7FCBB13' : true, + 'B394D63292D829C96CB346802B997C42285D8DB94292166AB984F5264BBF8C96' : true, 'B3A416E4B0C7F99B72761D34E3362F92D0F59EED1EA412FBC54F1699A79A1951' : true, 'B3B278DD571DDC491FD26D3B0942C78EC4A1AE3D9A5D07C1E317CE901E6B8979' : true, 'B4130785116E5A84BF7B191696B213BA8877228388B18C2DA38DCB9EE14AC8CA' : true, - 'B458C6F566E833CA5856703868BF09531CCC61D32AAB1BE65808DEEEC56EEF25' : true, + 'B43A735BA55D1C7D255F8E14DE97ED2FC89DEEF492BF38E871556FE7FF1712E4' : true, + 'B470B24D87A479A33017E9EF00405D50EF5A22BB7D4DBEB6217DD71BB6463D62' : true, 'B478303C0A26FF8A262C29BA3A9683FFC4CF075735E637F6A958640C5EC33669' : true, - 'B49A2871E348639F681896FB62D6535C945182A3524297258EE2E356D6D5B3A0' : true, + 'B4A68B8D5855C4F4D988F2E0BED73417308B1681EAF5A2C2338E4783091E6824' : true, 'B50AADEEA7AEA0CC344AFC4BDC81C75292E1F52374DC4E405CA9376CBA5594BF' : true, 'B54B1776D34DF92E8E090FBF0C927D9852E6F18F98E6F306AE0369229A4AE2E6' : true, 'B5826AF547B2C4FBB118246774B8C027E7E18255F864395300F07B03E43571CE' : true, + 'B5E58034813A6D2A70A162E5C9469EA7D31FE15F7478564E5698A388F201A646' : true, 'B5F50267B0042B154B8529FCD98F5E01C986F7D23628B49B63011A3C90398CEC' : true, 'B613D69F10DE096E664C3B4AA083E0BC9F50A98D0F9B682C496FDABB2E4AC9D2' : true, 'B663B6C8C60A5969BEE4F6844813AAB8945EE2CE2253CFBA67500B991CD8A07F' : true, 'B7193D3E26C14AB91AB1C2AB9728C7F9D832A6C4EDBBD2953385E3F1D2B9BB91' : true, - 'B72804ECFF97803B8A40A2FEB3686B4CC1918E9605AA9EA4775441E762D73687' : true, 'B75601AB7AE44FB2C77FF1E9C6FBC4B4D9ECB548009BF40C46CDDBBA8C0FE493' : true, + 'B87A6FAC22CF54752FF918799C09D2D582F3621A35F1AA5751AB86E5A56EEBBA' : true, 'B89D499E25ABC593F9B29B3C7364EF7196146DC810443334895D99BD15A5846E' : true, - 'B902076C4F3E4FC9D45AE90E5AF637247D3A4566DBA2D6DAB15364828CF7BCD3' : true, - 'B93093DB93D5FE8D16B007F9E40D627BB7B78D617879EC6C4F8528F4B21BDD6F' : true, 'B9891F4ABEA7FE5802FA2C07E596905422C39B16E36612B37FFABB81F49A0BCA' : true, + 'B9AE7FDCA7B2FF24247A2E0F5B56AD0F1DC900F238C45BF40D8A852257218298' : true, 'B9B8984BD73419077A912955DEF673CCB572907E2C494256D627DCCAF86226A0' : true, - 'B9EC2202B3D25F6C2CFEEC96ECB1967C1171197A121F6278682988D68C9CCB6B' : true, - 'BA43FBF51015CAA4D822D17A43F4DFB32561617B62E711D921112F12B76F9E43' : true, - 'BA52B8302644DF24B0DBDE018536FE6D2C41315131698A53D2906347DEE8BB82' : true, - 'BA5BE146EA09B76F106B28AC62830E5240D1B7DC43BAD171EECC9998B1718E28' : true, + 'BA4C966939F1680966D9B9BC85E5E7B011F51BCF1F41FB01142D603F9A45EE3D' : true, 'BA74E086962745CB5EDA606276E3FCE2220C2EDEF5824FC5D67EBFD1A94A0685' : true, 'BACEEA64658C6E86E126219A40FCBEE7B3A0C7687503114E59B3EF28E0C06A19' : true, 'BB6970E212CBF8325822B968387F263BA8D6CC479F448CF712381A36C92965DB' : true, 'BB998A2EEB4ED3C4251EB69296AE91EAE7360B0CBAF690FD250C38A710ACB38A' : true, - 'BC6CD35DE4628EB8F61CDA81F90A4E7DC7F58EA9B7A8590DA1BF2F8C78EBAAE1' : true, + 'BBABDCCD647C247047D39ECC57EECD8174CA5A8CF00349B1DAA1DEE75AEB84E9' : true, + 'BC51725047DF86083608C9849E05C1A6C1FFBA6991A6FC781543C906BA479450' : true, + 'BC7FCB90CF245804DAF432637A53FDEF6B5F88BAF87EB23245AF20C668CA74EA' : true, + 'BC86367AF49A238438C89460780C94DE2C1E49021437B3DFC590A63F46332888' : true, 'BC9B66EC1AF4106896624836D64B109922DA4163B83288E2131FD9A012CC95AC' : true, 'BCB6468D80641046B9B1D3A9A24FB092B76603F256FFEF183D0EB6A9218DF2C3' : true, 'BCCC1893C98C4BD177A414C7B3D5EBD74893F964FB9A62B96B48A84F1FE64B53' : true, 'BCEAEC2D8B8C18B58BD320D77850EC38285F419ACA8A9E939DAE7DFDF26696D0' : true, + 'BCF2EE107D285BD0BCB864C39BEB0171DD94657D761DB1EED17DA1D5F8E7D576' : true, 'BD273332A459B8980589FD5B8D03967EA78809CFB4F77AF25F578EA77CE9C785' : true, - 'BD6055F00FD05A1C84C05454958354052E8924FDAC99539EC2291C5B85C8953F' : true, + 'BD2B6A9DA30AAB3D39906793DB2C9C238C7260EC5B8835CCF8D9C58558B4A945' : true, + 'BDB42DE005453117D2B60263504B9B58E9AB64B57A7385279CA0323D7246F02A' : true, 'BE6E70EB169369668EF9523107E95867B1B9C0320C750180303720B35CF09798' : true, + 'BEA63BBA0D4C8E462D0FE2722B9ECC23A8E6E89905E19C15362BC33458D47CFA' : true, 'BEA7ED0A4C77505CFF6FAEA9F1B399C41324C52804D35EE4D9076F726C8D2C4E' : true, 'BED1A9D1A4414F4D465F04F9D8C8EC331F89388E19419D0371D0D177FA60287C' : true, 'BEEA29655F2F0DE938C7460012B5265BDF623C09F11529CDC33A4B6BEAF96616' : true, 'BEEB38B82A906102D7CD92E5FD98661DAB5D3C9B7DCA9DE3533565EA9607C5EA' : true, - 'BF1B69CDF599AA45F38EC98CEE4695058AA29CD8B489108944EA95707D58595B' : true, 'BF209FFCABFF17D3ED4987EC0FB5AAC5C0D961546AF52CF873B560BA4BA48A8A' : true, - 'BF61A5AF1BAF57E17B092D5A833B4C9A392BDC7529676D4C7248816F00CDA5EB' : true, + 'BF46BAD48562C88CA9B110FD99D88DF43EAB728810C78F12A062C292876612B6' : true, 'BF7EAFFAA2647F47D816A83ADD1D7579F0CDDA690CBA00F75BC6ABD564987346' : true, 'C0144D1B67F2AB403DD08B73E5F1772F050E9713D8F2FD98BE999FCEE51D2792' : true, 'C03976BCBA4A9A4ADD099CE8F878A6DFF9B066179EC7DCF932EC4AA737FE415A' : true, 'C0AB8B4E884A20E51AB9325567115F185D18654803E08E2C2C6A4632D7ACC2D0' : true, - 'C0CDB9DCBD1FC873712C871C230C327A9E53E6D78FBD0E5CE1ABED5DA0D1C7D2' : true, 'C0F030365B0F33FE3624CCAE4EB7A81BC7B9127966953E82DEA179DD1AE66458' : true, + 'C1529D3D2B287392E5CFF924DE47B904B2BE179468929FB61D10D5B8F02FC8CD' : true, 'C18C15016390F78742A45137409C8BEAC8A0475E39A444448D3ACE0499546462' : true, 'C1E47B7AE65AB520DC18A03F063101FD14AB70E868F16DB2C42ECCBEEEE5A6D9' : true, 'C1EB50953EE0D16410A5DDFD97F5C05060B39F2902807F139EF6B015D0C66729' : true, 'C2118D84846AAB7DE521B0379672EC639CFD745D82E3D504EF68CA723725C5F6' : true, 'C2126EE4AAC4400E18D80ED8195C1A28517EBB3920244FD66D9F67BE89247FF7' : true, 'C2295D7C0FD4FC4DC7681FAF3CE851F6B416405554781C77FC8212DA169C258D' : true, + 'C23E48B97775B7A76C994A4F0A83C2DAA05C5D741043B84E63840A700031E44F' : true, + 'C2B9C5E5C1B36BDC9D85E9B5883C4E71F0C9CDD45B8691F628480F1EAEA4A8CB' : true, 'C2C9A263D5F88D7064870FD13AB8633A10CD97E8281F0ECC49C2C1C3F54327A6' : true, 'C2EC6DD4A6B571933F5DE0F94508D629FAA849B1A31A8AB979DAAECFED2AD253' : true, 'C3107C690BA5007E11C076B2FEB58BF88E67D1ADA15DF1B8280D226177AB6A13' : true, @@ -792,83 +777,88 @@ const X509ChainWhitelist = { 'C34069193CBFC866E03EB745416B50B25BBCAA00B5DE50D1D62D3365749CEDE4' : true, 'C34CDEA10E72069587970C7033095864B6F069B6637C6263A1E7A7A5187923BB' : true, 'C35CD8ADD8FF80A9CEFC31D3E0DB613D725FDB0BE52B9ECBB730E970A59E7E98' : true, - 'C391E32BB11DD8F6F13BF71E0B9CE225364A50006E3F91147EDE39D2AA6E70E0' : true, + 'C3DCE474FB44F22E6497A1FCE2C45DEE167853134C6F1C21C13F1707B0BC7FBC' : true, + 'C41706089A520406BBBDFB4ECABC4FAC33920CCEE6731CD703B502612E316E54' : true, 'C4BDB4AF6E9CEE6017D3FB7ADD286E4B6348088E14D994CF698095DC86C939EB' : true, 'C58563CE93B0DF900E0681376244F32977F577D130320226D3BD9CF82863402E' : true, 'C586979CC69441D6717388E137E2B01FD04BF3C7C4F6E5006D71B45B81A7C04E' : true, - 'C591A346116A065185360B973A875B0329B48D924E15BE8D4FC4C0B849182732' : true, 'C5C58D7B5A145FD684B3A5A6D12468617BE9DF323D37015420BAEFAFC086EBA1' : true, 'C5FCA59FE803B0F5B7BDD9387C65A1A5B9CDC8D0C76B79C2954CB769506DD1F7' : true, 'C677F67FCA735BCF6AFB51031697A967AD09FB8ED0A9EE9A1F532F1CB5F6AF59' : true, 'C689F3B9238DB156A7D563E76DF45FCA607B4B5F6CD62BDDC1AD1AC720E67952' : true, - 'C6B197D2663DD850504C900569A800D914A5C99FD7E0DC7C2424A063B6C42CE5' : true, 'C6F63ACDAA452E008A1DCC711CAD36D00AFE55F958F2CC82A139BB53E27D11EB' : true, 'C6F893D20A417841D7584A029E6E6A2A44B044D858ADFBAD4B11F35B7199309A' : true, 'C700D31BDB3076006337BC249FF7CDFDFBB8A3677F206CB475E7807FE6FBE286' : true, 'C7056A5FFEA8A4751271C17CAA9EF3BBDB7142A08ACA673522EDFD9AD18AFE66' : true, 'C71294A0124420512711C918C36F77192D2B45CDF8C99824B4BC862D0B31C3B0' : true, + 'C7C3A02A4A1C71C54C37BE7889E60467E9C6A48A64FDC85289598188F4D2D839' : true, 'C82AE26EBA1954BC778047DF9684F330C424E9FF778033485305AE0C87E57D68' : true, + 'C84E5F64496198370D4E53DD6FD1828388E878759375F498A8670C035275D6C1' : true, 'C936FEC68191D7AF75334834906C8CFB18F91FD53BDE7C2F0B2ACF8100ED3855' : true, 'C9462B9099A574DBBB9E2BB9B87C4AEA825DA388EE8153AB74414555420AA6DC' : true, 'C95235BA613C42AEEBE5B2CD04707B323083EF4BAF4B11C633288AAA7CF98AD7' : true, 'C959CD326D9F3AA21FDEDD42A5AF0B7A2FAA5E9B92907654F29F1ACDC691DBE6' : true, + 'C97F815DB2FE0895632311CBE80C5A8F99A025201CDD3F70939D5C1E1BADC94C' : true, 'C9A9B118F63E40C8F5F73E89E580626EDEE028DF8ABE5D3374CDA69459207CDB' : true, 'C9D7767021698AB5CFE3F43AB281F424E1515A52A0868C8752018CB292DE3190' : true, 'CA157632863D3E7B499F141741724FA84DBA48AEB51B04A53A9D3DFEA7F70BF1' : true, 'CA46DA728E76E97AD214DBB6AC9CB1EA2DC87202C88C35E87CE574FC1F2E0438' : true, 'CA529AC5A7489D57CEC2D6BA5881213C5A163409BD6946558DACFE899A977009' : true, - 'CA93EC5E6881B59BFA7B2B59B2A9D574F599534BBA6D3D50834271DEBB31A1A6' : true, 'CAAF21212D1AFB10BA4844150A49541967BC1C9879801E43064429A632DFD941' : true, - 'CAB896F9E8F1D4C0BBF05F4A48DEC534FB7A2E9E21D3C3B36F72D50131917243' : true, - 'CADF1142EA883AABDF13A65D7F0C5044AD293A719AB56A1C1B88D30D96BDA14D' : true, 'CAF98B60B1CE36971AD2DA67A18E72E53345EFCA16382827BD1C2022D009E751' : true, 'CB133229997821E418467CC3A72F77A7B9E31CC62B41032D6A82577B7AF1C6A2' : true, 'CBBF31DA8CB7BF399EFEA030057004346FD5D8BD07CEBCE934E28609BB6AFF14' : true, - 'CBF04D84EDCCF90EDC1BB7FADC6995A4A956A9A6568F2605409BB2A782326D5A' : true, 'CC2E477D4A2640BCF70F232C040954DFC4878E536A4B03E788173E673A2D31FD' : true, + 'CC6267D34E7EFF2C8BA692C3F96B2FDA39BD351D2B8E280E9D81DECAFEFE7233' : true, + 'CC73DEDCFB8EC2BD78A979BAA47FB8D1697C38BD286E0F4A716619939D6F495F' : true, 'CC99A37B34F4914C3E3B8B8D6236CE0E8F92DC77CEBEB09D50C6004D51C8D4CC' : true, 'CC9DE9ACA31709D03188E3FE36B902288F56A3AD1510AAEBCE0881A363CB8B66' : true, 'CCD4C850054C2E89024A8E78E337518B9137528B9190B9417E182E6CFA0180B9' : true, + 'CCDD0AD541F322CED13EB7E00654FD567B39EAC71E146760EBC9D5C736329993' : true, 'CD35C7ABA0839C0D865DEA4C1DB624F709E5EA041A68DB55842E2C189F38BAC1' : true, - 'CDB02DBACBAD381EB4F6854E84372DAD1FD76462ACBC26A9DC86164E81E75C85' : true, 'CE77D1F5ED11C8CA34DA5DBB0E999CAB0469D215552BCAE775B1AE6ED072F01B' : true, + 'CEACC5425237EED1F7736E13A92AE0A70A94F15EB08B564D0CDEA3EB042D1BF2' : true, 'CEB1ADB71C3CBA6FD012A778BF70CC93BEAB621B4DA4A464934C5440868E58C7' : true, + 'CED6501D3B06CDB7033EE79351EC3080BBC2993D0991AB91325DFC0550689AA7' : true, 'CF099A3A9DBE3D79F3E420A47A8447A50A2F87ACF2874CA86D49F271B82A68C5' : true, 'CF19B1004488D5D9C882E2C4D0A47789618E0BCD6475F6D9C6B5591C2BF333C9' : true, 'CF2A79710CABB0EB440EE621B37934C249C50612DB4FF926EDDE5B8A30686BED' : true, 'CF41907FD2550A0AAFF0E09AF82423DCFDFE470F225A003D607C19F709A591CC' : true, - 'CF44B5D052E8869D4632230291A81F3EBB7F681276D371161609BC23E40C8636' : true, 'CFDC25BD3A406CC65DF19685CB300D33E13AB2F2064BE7071ECA3A6F76AA3215' : true, 'CFE1E4D56E0D95E238F3317CC981740011F0D3E4DE08ECD27313F83378F150BA' : true, - 'CFF31BD8AB9FBB4681C17AA4135E67D402345E32CA8DC9D566537CA530F27B7D' : true, 'D004BA3611B7EE32714173A1C1C5EDF071902F49D67542EB4310D6BA34B33DC8' : true, 'D03547E78303C9FBD70A38BEAFE87AA9F266A92275D818D1A8758DCB9D08DAE0' : true, + 'D0F0E41EA07E5EDF9E9241B0FB6FE08AC2F623F2F596406CEA34B73EEF6C5BEC' : true, 'D103ECB2B7F74BEFD44109C1CA30EA92D9016C0F9347F1DF3E5467C3AC20221B' : true, - 'D10DFC97304D163140768E2D1698B1A0A3AF8331C4941F928622AB80091A3273' : true, - 'D1C4E4D1F014FB8F889F45AFA39485BE742F64268C662BB28494855E393ADE96' : true, 'D2785F7C48F180342D70978EEABFFC424D33A495A07D04F32C08B771BC4E43A4' : true, + 'D3676F00560CED41E28BE263ADFC10B602DEA2026CAD2C7E77E9AA585E085DFA' : true, + 'D368841DDBBC15C7CDA82090EB95511736C97FDE82BA9AF5F95114653EB5234A' : true, 'D3946220D26CD68E238632CD7AD63FD62669D9F60770C62788747C7552AEFC8B' : true, 'D39BD0C1656F99A47DA9D2957E2D7A49FC9EDD92CC6BE729C29299ECECFC42E7' : true, 'D3D5C3556B8724C6601E217415EA7E89740A9F1B2523D6421ED2BD2E3044145C' : true, 'D44DF644880E56596405F1364D8C3E5301F05ACBF82FD66B671D895288C75360' : true, 'D462D57028E10CB7A7C87ADA83EBD7FE9B4DA384D2971BD7A708816C4EA8711F' : true, 'D46D29E4176A93E3DCD80BA5861A87E84FB7866B784488A977E7E4E4076DD2BD' : true, - 'D5B0165C0F4C8F14A2E0C2310AE4A51B6EA08D2FD9790DFD49BCF3FD78AD5198' : true, + 'D472AA6946ED45E5746D88E98DF7711E828987ABA8A5D64D466F5C1C5B4EEDA0' : true, + 'D4CB5B06AF9ABEBF5639377BF36B289CA95A3205A84537D36B4506DF51430669' : true, + 'D53A4E1FB44B5C282566F8AC28D68A76E12B76EFEF719AED86F11D15BCE9A0B5' : true, 'D5EDEAF240AD74C81017160821DE0FF6470839A2F8AB998D84E7392E90280D0D' : true, 'D652650A3DE79A5C0DFEC1925007DA094925533D13F14094722A80F936FC9A8B' : true, 'D7198C80471105D95103DB11B6BD2F6CDC8E7A7E67DB8329F1FA75C5F5D5E8CE' : true, 'D74E275CC5800C7DA6D65C11F4FDF07B81EAC91D412D05EA64C928E035F1C129' : true, - 'D83D1AED881CB22ED4E92AABA18DC390D6931CCF74591C64C236C662EFCDF557' : true, 'D844DEE1597B654C0E645C787DB52F6EA5C855C6C35626BD7787E71E873CAF8F' : true, 'D8B6CC82BEA51A5BDEBA5B3B046B0D1965528CCF70B8F7D27E57A99CDD87D226' : true, 'D8B8F53177C1E04D93746C8460A7296707654094814772BFAD31F79C03802240' : true, - 'D9AC7500E87D9DCB4397D3707594267602061F590BEF6DF84CC507412FC43902' : true, - 'D9FDB29EF83808BC82A97839FB2F22C2D20DAB2E6B67BF5862C8922BB1FA9068' : true, + 'D8EB3A26B3132739539EEF2B7E3EB472578112D5D8AE470B0F2CD4EE99250ADC' : true, + 'D942963C31649F76D7F96313922A7B163B631AF72FF9962767D6E4DB84026B62' : true, + 'D97CF453986570998A9B529709574C7A2EC1E7D43CC42A659A5CD908CA3CED89' : true, + 'D9D5FFCAD69421840F7A7159B3F8641F050A53EBF2B91D909C2CD7455FCC5C7D' : true, + 'D9DD6D21944C5623DA765567EF61919B1F6BF2B1E8E79137B5BD48F4AF75C405' : true, + 'D9E191EC52F4ECE1E0C43968EAD53E421ED62A7A7DBC0C39ECB2B8FF7962F01C' : true, + 'D9FF33B827DE9E502ED5380068CEBB6E7855849A8680B49BD2EA11441A7F1E01' : true, 'DA0D9391992825F7A10312F7E85568086F18DB901838A303E721E58239158EA0' : true, - 'DA29D8725034D89C221F415CC5282F82A6502E1EAF416DFA41507BC662C90258' : true, 'DA5110BB1526CBA9E86FBC66B91A8A2880E85440765C9208A1FF4D3DF2E8AD65' : true, 'DA5D20F1A6CF6CEC3AA7028A6E17D8F2E1A60069E497758B0CC938C08F4E76BC' : true, - 'DAA384D0D2A94A18A14E3DDF7A963E59BE41C06B978F3DC8862E1EE6C8E76DD0' : true, 'DAA9CED5BA817CED9942DB9CFAD0210505937A9DB2214298E0BEB831BFC8A31B' : true, 'DAF6B7470355545FF9FF41E11016056CBD9537558F503D7F9C049C8ACC446112' : true, 'DB301590A7DE580916559C6DE948B95A3F7FC50A7AB8678BC365595A4DCE4E4B' : true, @@ -876,73 +866,81 @@ const X509ChainWhitelist = { 'DBB0C3CC436B5E592960BE7E8836AE58D8D632D435365ED2EA3CFAA86681E272' : true, 'DBBF2D4498ED91C779C81FED5E96F9B5210CE86EA463712268BCAF098FE2E285' : true, 'DC04E4E5B03D875F796835B599AE226470B9ACDAF0DC79AB2F766B77AC59F3E5' : true, - 'DC2FCD6AEAEE45D7E82C443FD3F76EDE1C88CE43E5FCEC3B4DEC9F12AF34BAA8' : true, + 'DC31F2640E8AF9887C05C44C34A999030A6D245A36EE45EB48966E8EB6665F9C' : true, 'DC8D710118FF258F27ED436F585756252FDB30F42DBB58B23B8CD3B2140E13B8' : true, 'DCA17501D12F98C84EE99DF4BC8EFC1FFFA9B65E2BC5A92B20C9296EC61C96CA' : true, 'DCF33FB3953551E4B5F06060A7EC211432C30FEF86FA7B45EE76A8F9F3473C86' : true, + 'DCFF47F0DCA2B78BCEC9D6F35E84BAD6803DEC85A888028C9DBA44A9B69C5BC2' : true, 'DD55F1E1BEBA4CF9F582CBEEF4A35E1C1DE36750A3403489C1C98955FCE9950E' : true, 'DD64C7D9E60AE6748B449ACE8CF9C21B5551BC6427EDDCE1D77B7C7720FD21E4' : true, 'DD98420C927FBBBB0F2D1FFFFF359416FB7B352770A6550E3D68BA33CC23ED57' : true, + 'DDD0BC82A32A5341EFA53746F39B0D88C668E0483D705BDE607F071FBE937062' : true, + 'DDDEDD50F49CDC46A4F576F1C571CCCF6F32F2DA30CE9BE228DAD3599BBC34DE' : true, 'DDF758753965C89E747CA6799902A045B22F473F654CEDB51B3C0CA0EA01BB51' : true, 'DE327172F9BCDA3DBD4E6EEFC759F3EE88FBC635BAD34D76E360541420CDC8BC' : true, 'DE411E4537133A4D436E0D730AE192277792AA1D0584E60B1CECCDC736F53407' : true, 'DEA472B5BED8DA9F6F5539F8DC66FB5340010F7316FB28055E14EA76E03BBE41' : true, 'DEB6A31937F3D2822CFA6C563F00F107DB6A445596E8B775D989500FF2E09F0F' : true, 'DEC7DC8AB8ED70C1D2FB2875F0F99FA99FB53E6BED70CD47B244ABA2104DA5AD' : true, + 'DEEB105F77ED36DAECBE1AEC896736B7925F56C86BA06FC1A43AD5F35E9E914E' : true, 'DEF20D4F0C0D98AE8C9786C364182CCD8990A834C96C1F0989AAE9ECAF33720F' : true, 'DF03F73A71A568E6A05A7E9FCE240EC0254EE86E24790D6DFCCDC71A5763C27C' : true, 'DF0525A7807F3709BAD2DEC2ECC569A1D473F97F0C382C932DF726C79926DA0E' : true, - 'DF4482289B54CB444569A5436AEEBEBFB348D966D2FBC8C5115376F3E5496303' : true, - 'DF7FBA4917800A850600F3E7BD4DD0A717F2649060B300F5AF3B1F490BD26536' : true, - 'DF86C03A5DE71075F0F3AEE3A0951A55321BAC33642847CD1EFA0334DBAAE148' : true, + 'DF533C33DB800394971D608B89269426D3A2F58B76F190229C0573985E4F7CB8' : true, 'DFB9975C6CB5E5E0A555789055A543460C93C34378BD0565339A0194D56CE58B' : true, 'DFD291C1074E972A9FE6261BE6FFDDA85472A8AA7F543C867F53B7D8946478DB' : true, 'DFE29EDC6A77622D4963EAF8CEEAD0ED5DE393DD069425FE30175AD008D609DE' : true, + 'DFE3CB9DB34E3CDE7E6B641C90D116F906DB0C916C5B437308CA502C756C6331' : true, + 'DFF00B8DF7748E81750E0302A10B9160B3BD3F56967E854C4F8D7B3C008757D8' : true, 'E01A5251FAC16C537237EE4249874187E3BE3AF9B0F1D472E6C69E6C8B8832ED' : true, 'E09CD94E0A501BB4D25D5BBB02CCAE95A24D0BAF8CABADEC9D55A74B7D2C5BD8' : true, + 'E0D373C9758BB237C4E5C616A072F192E0D11EC0E48ECE22A326ACE69E3CF771' : true, 'E0D7FA4702E25E7F51F94DD0D12C39A352DF48DE10A5249AE2687CBC15020CB3' : true, + 'E0E11F4703CA92B8F0837DDE262F347B3EE57238914F7AC07BBF332636B4CCD7' : true, + 'E0FBE92538CF16C3940552932766472A0821D1539BAC597F5C87F818296D8E14' : true, 'E1117A0AB7E1A80334C1C56891A4306CB553C100424773BB0F10C7574CF44ED5' : true, - 'E113CDDD84A81BB13795798E245E5D1B3CA1650D6A59AC34777577AB764DFC69' : true, 'E1176E46C4FA7841D94FC724013E3D192E7B414933F92CD50EA36C51617A2C60' : true, 'E1595A9AA15B24610100AEB57ED619460CA1D976B769B856398EADA5A01F952B' : true, 'E1A55E7ABA746B4A053359D13C91DCD7415F2CEECB7E87292DFD697213986946' : true, 'E1C97EFF3C246073604F341DBB3CEC9683EB6692463D85C1D23FA5269D9F3FFD' : true, 'E1CB2358E3FB5CE1135999465778BB5E6691353751FE577C1B032DF832532A8A' : true, - 'E26F4C34273553354334DC7A22DC56A781F2491181799287CC91F12871FEB50D' : true, + 'E1DBBD569E797BC58D21935695EB6EF34DAD0C82FCBB4F4A1C5E644EF161F190' : true, + 'E22F7A2669FF7B9F9C89B3BB1B0A5FA485C26A697CF2418869394A0710AA5EAF' : true, 'E297439120E6E2701069440EC321BA98A5CFF9EA3F407FF16185671E466B87F0' : true, 'E2D55EAADCF87AD1BD50E53B7168CCC08561F0172004C1EC4DC13D8166D1A313' : true, + 'E321AD541727DAEC0801A774095546FDD0642CDB597A7AD431C6BFA5C7F447E1' : true, 'E32ECC9EEA662085C10C003A5C910D77A6DCC1E99BD187576EFDD1BFA84591C4' : true, 'E335D8CABE2F4940CA80CA10A6BE55A138A163E1C56C281165FBA3FA601C61A9' : true, 'E3570B254ED1BFACE2C2CFB35A3AF277C8F26A81D1212BEC92CFD84A35FCB53B' : true, 'E37314E72C7304D32336940ABB576DBD7BE3190CD9A5E8F87413CEEB7579D502' : true, 'E381DF6792973BFE322D23C6CF2A6C24A4ECFC77F43F03D2FC04EE39FAD7C683' : true, - 'E4D680D0579075DCA20740BD4EF6AA4CEFD5542727071005774421A247941B8D' : true, + 'E4866B48A6E45C4B11326D3FC5409D4AC595DB81D59075FF1AF4815ADD15B54A' : true, 'E549DACF42BED70415999CB677AD037F972087B39E6B2C20BBF2E3473AC8BB49' : true, 'E5E61E81BD6BDB914235B1C227E3FEB83091ED8F453F0897035EA775A7DD9334' : true, + 'E5F65E0B9FA619FB212BA4DE4AD7166DF37C0690AF8AAF30DD68E2B53802DACB' : true, 'E5FA7806C1E6122EE6F7B008711DAF068DC6FDE60B2A5877DDEECA8A23F96586' : true, + 'E606BBBB4E98E5F9BC9A2DCF767A1D8B5E95AE7E35D5E14C554778BA1890C79D' : true, 'E692108B3683F3C6362DF92476D62BAE60687035B70B9119F962190C9C215B04' : true, 'E696A05D698717888181DFB7B903B380E42454076BA429EC8AB0FB58206AB166' : true, 'E7EB8B4D5DE598BED2B9C817AB7D42F1EC99F16640B8C673AF2152D42F5344C4' : true, + 'E9CFA5E0C69E623B15F54AF73644E6FD5B0F86F24826F378F7C903D50A1AAA28' : true, 'EA7AD4DE86B47BEC726BFE21172676F92E0C0BB86888417916CB3123086E84A1' : true, - 'EAA0454F2BBEED65A2FC7AAB8F308982387BDF33E6B56A1F3203F70F2981083A' : true, + 'EACDBC29504EE8E44559D3FCF154E1CF632CBBB4065734CB5C6C1B16D42352B5' : true, 'EAE734ABC9AB7F65DF19ABE693F0C1AA6AF5E9C76561F0779D523FA5ABC6A3B4' : true, 'EB59182D7ACE742ED7D7AEE751763EF9F09EDF68D1DDF765E80BE40A53AD0E10' : true, 'EB6B1F16F70E3080F38E7ADDC7E3AB69164ECD068F5E8F15931575FDD62B0A64' : true, 'EB6D34EFBF063DCACDFB823734B9788D9FB5E22A48372B7EA8AAFED8046652E1' : true, 'EB907252FF62CCF97B16796B9106686C4260E682878EFCA7721D37D6B8C83319' : true, - 'EB98F744424597BB5AF5F209D20D161DB2682089271EC2662BE177D36A737FBA' : true, - 'EBD2581C1B0224FBDA489A642503CF3D3306751C336A66EB1816989900DA52BE' : true, - 'EC173388B04C066ED8A36DB45C804E353EF6BEEC7BBDCEF4C28DEFDE917A0C5B' : true, 'EC3A708B75908F8EA0660EF8A9C14B07DAB3AECB71E96E87EB06BB317790A118' : true, 'EC521C3B04AF772AF812B63555A7C24BDA282C06EC619E1766CC346780EC6E04' : true, - 'EC869ABCCE3A1C036F1AFABE5ECD4FDA581D16C0E81E16A2734E6004A55896BC' : true, + 'ED4BB615EA54DAB9EDC94BA434DC0B194FA5EB91BCA7E1B05CA9C21ACE3E4A43' : true, 'ED4D737C0BBE1DC2CD305D8A912D1C1D923C1C4325401D66349541F754233B53' : true, + 'ED918BDFDFCB9E4E679BC7C1938F9CE412AA85500BA3531FC550AD5213D5BDC7' : true, 'EDD929C40001C1ACDABD51797B63D689A0B80434FA323B4F7AD213AB8A530B8C' : true, - 'EDEEE393369C2968B2277F06C24CBB9ADFC6D3EAAB264C292A7963065C8FAA49' : true, 'EE3B7480B691828ABEBECA3DB0EE96619F01E886FC959942F6AB7EB3D263A237' : true, 'EE49B2B0E38A16743525D6CEE70CB71038D43094BC71BE2EEE861E4602B6D891' : true, 'EE5B8C42532363A48222B1493803B14EC2C98366CD0C5BA4126F468BA19C559D' : true, - 'EE5D710097EAD11639F98940D1F32793ECC114F0408856CCB6536F1EF2366704' : true, + 'EEEAC8F1C70F20FDF05D777140A4A5F72AA9FEABFA9699F9B0F5120147A26486' : true, 'EF0EE2FBF54D87B6AC02AEB88050155A27E1A60A5A8C4AC46FF24B529D912B04' : true, 'F08A2008114880DE65D1C1A47D55DB0B1EC6029562BA7B8976A78507F4EB80B2' : true, 'F094E7890A2B177AB1517C2EAA8D1DF0F69DB94633C4A510BC02CA8D71B36403' : true, @@ -952,7 +950,6 @@ const X509ChainWhitelist = { 'F0DC85D554A245F0146851FB8FCAB6CE5F955E65ACCAAC92E875F8B8E1E2495A' : true, 'F0EDB0C989C20672BAFC51FA2710F3841BA5793BE379FC212D7ACC3AD4743455' : true, 'F1147FBF98A54E12693453EC571CE8B86C05D7FDF3995D775DFF135E10B9C520' : true, - 'F153813F6CD126543E985CEFA06C8B978FE5D4825C189F58944DC0DE17D5A0E9' : true, 'F15E12419E936A907F201FD9D6D3DE2E01E5F8465AC4D8EDDCE1E58262183223' : true, 'F1A9F7B5F76EC4E234A078662581DE91E76B1CF83C219986D1BEA3717E4513A6' : true, 'F1B73AEECC6698895051EE69179C3897A1DC398C2D72DDD720A29F9C9520457C' : true, @@ -960,47 +957,50 @@ const X509ChainWhitelist = { 'F205928C933AFF1F1A6411AB779CFAE3FAAF43754AB86735DB52F74DB1DA81D2' : true, 'F22F96FB88C9D96104167D95B3AD8B5888C92680B0AD13DC785FD5AD3E19EDB7' : true, 'F234FBFD807A0302CBF855175C73ABF27C94915B95135E3146C0ED73662DE3F5' : true, - 'F28C56AA368BC4F8DA6B77CF3F8D2A7EF4994BBDE7DF85AA40FF740DC004750B' : true, - 'F3926080B8F8289E7DCC479153999D4F459951765A0A22977F056D8249BF5FF5' : true, + 'F35B9D7C54418022E6FD4FDFE88C3261FD138329A11C013AD640145D40BE934A' : true, 'F39D175463288D9639AE5C852B945D89ED858548F8621E5DDC29853E8C84BE36' : true, 'F3D480D69675A57DC2061544BF7F52B631BB02716680C0E5605413C9B2A6183F' : true, 'F402A9D58A73C40B396B5CE756EDFCA68257AC6D8DE80AA8217F16C97512C51B' : true, 'F4F3D03488B8B699725AEBCF9033B73C8997AED2D4504891EE4FFAC3E7CB4272' : true, + 'F501FC68C9AF9E476349B8E40ABBC7B4C371B328A9CFEE397004D7166BEA2EBB' : true, 'F513DC8D7F8B425FCF55E74BDCF2675EF2ABF98523E5226CF8A2391B0A36A919' : true, 'F55617B92584757BB516B19BFCBDA9B4A71237075487651831CD9C5F9C6F5F29' : true, 'F5CACF11F3673BFE76BC638692B907E7E1407AD77F3C8943CF4F4BF22A2D5137' : true, + 'F5D715B6BE56D1A677ECBF7C26B4D79716F5EC2D2E2EC323ABDFE3442F40BD31' : true, 'F5E43F516D61A0329F78A2560454B8346732A9420C172AC9983C0BEFFD8DEA0A' : true, 'F605AA2BD611765748A88F933BCBCEC70272F6C6A1A4AC614C2D02D17DAC6CEC' : true, 'F6620F848AB3CFC1695D2AF5399FD8FDD8F2FEC43F73F2924DF78C1A26C22653' : true, 'F6D424B2B0304F80F9F57E9A501576769B75304FFB569A1118B9B0D5E72561C6' : true, + 'F7120F4A84D6392A786CDE2F29377B267154621AA4DF7D9F4AEEA8461F8F504E' : true, 'F74D9E23F4CB53775CA60178347F2A029F77579000B21AA08EC62A1C2932348A' : true, 'F754352E819D0C33E6CFC06EECBB4356DB5D8BD1FD2591C7C817CCE662BE2BC4' : true, 'F7835EBD5236BECAB435AE25E9D79BB389DFA8462D552965A2B901ED70B4FF79' : true, 'F805AE1FEDB2D94096F0D341B703ECD4975D773A179555DDC83D424F85578571' : true, - 'F94C306978496ED2183DC7591DA0240B513527293E5D522CF7089530E4C58D29' : true, - 'F961BA44302F5AF5DC4045A7E3989D4B77AD4BDD53DE92A45F39FE56947293BF' : true, 'F99371163EC08FF74F0742422AC3108264DCCAAD1A731A5CD5CDCA9FAE8EAEE0' : true, 'F9AA3378654B8DAE243713E502260C71E88F8AD2B7021072A02574D09E34D1A0' : true, + 'F9B011926D3405A3B902B76FD7DB90E8A62429A5A34ADAD21B9870446D425130' : true, 'F9E220AC82D672997DC20E9EE89BF0713BC4153FB5F2EBC8D9AC9EE35A6E494D' : true, + 'FA0E3BFAEEA2FBC6A9E4A33EB6F289EF6C35228008ABAD3878AC4B2C8E87F957' : true, + 'FA324620CEE61AFCCA03A0B31508287FB4A78CCE65362F979770B7AF69CA0AC1' : true, 'FA616BE68A75F14CA6331BD5BFDBE3840CE34CC3C3C98E3C8C3E10F027389F2F' : true, - 'FA75601E87823F0B02F8764B29377F4EBB02A179051297597E93FB4B1F5FCAD5' : true, - 'FAA02D9B700650AAA34F4BDDA8882618BDBF954078A7B4796FD76B7961DE964C' : true, + 'FAD57B1698DDD7EEDC68ACA2B91FFC327696BA682F8B1DC7CC18D058EDB48632' : true, 'FAEDB6948B44BBBEB18CC3DE18788AD31CE938A2BA36BD84765BF47728C415E9' : true, - 'FB067C05D337FC01FC0721FA712A9E1A4FFDE059A35F3B494D36FFE241107465' : true, - 'FB1DF67EE132C7163167839175485C179E82024AD59EF806AF9D968A97F2ACA2' : true, + 'FB26AD0A3ADB010EB9B8C70998BA5AF151F8CCF1B31312A9AE5CCC3B8E4F709B' : true, 'FB3A5B27D3488E28ABA3F303A726C2F0440133025981816FEDF798E45B9B1751' : true, 'FB7EF701469F77B6412100BB2D6399B1A574BB9610186FFFCC0119E14CB2021F' : true, 'FB81BF294DB8EDE0C4DFFB7F5528EB3EB406FE435A6D62E6894482D8B42CCC48' : true, - 'FBF769E6019DEA2724DB5768974B5D32E8A91F8045707B4F50552FE1D3BEAE4E' : true, 'FC072A7AD4E6E41680493AF4BEB98215D4D2F7CE040C95004BB3A1621A9DD513' : true, 'FCA9C3A036EA797D58CA26F793C98A9952E59D37C35E352B67A30D4F8F49FC7D' : true, + 'FD347806B062972B566135DB8D7F2773BACDCD90C0143866EAF386BCFB09AF86' : true, 'FDB416F216D943190D8CADA2EB8F138F77A99CB1BC1334246697D37D8C04AB38' : true, 'FDF0D11B28F98D542D2D0B2658C0CB0CB46E5E155398B8739AD968944B4C41FB' : true, + 'FE075A2C82D9FA253B59B401A7A31C4AD5D17FD66FE393D8EE5ACD7FA478743D' : true, + 'FE0F03CC43B6AA47FF82C4D6CFDD4E696EEE91F2904ACDE87FAC4FF35F511709' : true, + 'FE2ACBE26A3ACFBA15C9C3425A9A06EED0006E94A82669BFE3BE705D578021D6' : true, 'FE739A748FB17DAFB6CBA0DA5B2164B8E0435E8DA7FB85E7970BBE731B428631' : true, - 'FEE9BBCB25431C59C14C72C963CEDF437D795B6BEFE79EBF262B7054B0E583A1' : true, 'FF3E77DFF8C24FE2DC89CE8757B6AE9ACBB838D35AEBDBD9A29D099E211380BB' : true, - 'FF5A1D7B021E92D968CCB4D6955A6A8449BF13D75D9EEB1CF36BEC3A178DB9DE' : true, 'FF8C4E466EBCD5BD1A16F83E6096501479D74D077F84F2EDEA264781DFD82270' : true, + 'FFA2F572D6F89A48043006E117D0B7B7F1D8FC7AC8C264EFD491422A38AEBDE8' : true, 'FFAE947BA6D3D7E8D31D04F02EEEE60601B0200ACDEBCB12AA5D617F650D5FD0' : true, 'FFB09E8C7F4CCA88C213AF60CD7047B85A6085DA93C7C3C7D3B73C57FA05702F' : true, 'FFFB09720CCEF3A610BCB81EEF5FCD614C1602D4968A9DE8400C05256AEDC1ED' : true, diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json b/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json new file mode 100644 index 0000000..6d2c1f3 --- /dev/null +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json @@ -0,0 +1 @@ +{"rulesetStrings": ["<ruleset name=\"00f.net\" f=\"00f.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"01.org\" f=\"01.org.xml\"><rule from=\"^http://mx\\.01\\.org/\" to=\"https://lists.01.org/mailman/listinfo\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0bin.net\" f=\"0bin.net.xml\"><securecookie host=\"^0bin\\.net\" name=\".+\"/><rule from=\"^http://www\\.0bin\\.net/\" to=\"https://0bin.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0nl1ne.at (partial)\" default_off=\"mismatched\" f=\"0nl1ne.at.xml\"><rule from=\"^http://(?:(mb\\.|tools\\.)|www\\.)?0nl1ne\\.at/\" to=\"https://$10nl1ne.at/\"/></ruleset>", "<ruleset name=\"0x41.no\" f=\"0x41.no.xml\"><securecookie host=\"^www\\.0x41\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0x539 dev group (partial)\" f=\"0x539-dev-group.xml\"><securecookie host=\"^\\w+\\.0x539\\.de$\" name=\".+\"/><rule from=\"^http://gobby\\.0x539\\.de/.*\" to=\"https://gobby.github.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0x539.se\" f=\"0x539.se.xml\"><rule from=\"^http://www\\.0x539\\.se/\" to=\"https://0x539.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0xbadc0de.be\" f=\"0xbadc0de.be.xml\"><rule from=\"^http://(www\\.)?0xbadc0de\\.be/\" to=\"https://blog.0xbadc0de.be/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100-gute-gruende.de\" f=\"100-Gute-Gruende.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100R.org\" f=\"100R.org.xml\"><securecookie host=\"^(?:www\\.)?100r\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100 Fans.de\" f=\"100_Fans.org.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.com (false MCB)\" platform=\"mixedcontent\" f=\"101domain.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.com (partial)\" f=\"101domain.com.xml\"><exclusion pattern=\"^http://(?:portuguese|spanish)\\.101domain\\.com/+(?!css/|favicon\\.ico|images/)\"/><rule from=\"^http://russian\\.101domain\\.com/[^?]*\" to=\"https://www.101domain.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"10 Minute Mail.com\" f=\"10_Minute_Mail.com.xml\"><securecookie host=\"^\\.?10minutemail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"10gen.com\" f=\"10gen.xml\"><rule from=\"^http://blog\\.10gen\\.com/+(?:$|\\?.*)\" to=\"https://www.mongodb.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1105 Media.com\" f=\"1105_Media.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1105 pubs.com\" f=\"1105_pubs.com.xml\"><securecookie host=\"^newsletters\\.1105pubs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"112 Cafe.com\" default_off=\"mismatched, self-signed\" f=\"112_Cafe.com.xml\"><rule from=\"^http://(?:www\\.)?112cafe\\.com/\" to=\"https://112cafe.com/\"/></ruleset>", "<ruleset name=\"1177.se\" f=\"1177.se.xml\"><rule from=\"^http://(?:www\\.)?1177\\.se/\" to=\"https://www.1177.se/\"/></ruleset>", "<ruleset name=\"118 Information (partial)\" default_off=\"mismatch\" f=\"118-Information.xml\"><securecookie host=\"^118information\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?118information\\.co\\.uk/\" to=\"https://118information.co.uk/\"/></ruleset>", "<ruleset name=\"11 Main.com\" f=\"11_Main.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"11footballclub\" f=\"11footballclub.xml\"><securecookie host=\"^\\.11footballclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123-reg\" default_off=\"failed ruleset test\" f=\"123-reg.xml\"><securecookie host=\"^.*\\.123-reg\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://inside\\.123-reg\\.co\\.uk/\" to=\"https://www.123-reg.co.uk/blog/\"/><rule from=\"^http://(\\w+\\.)?123-reg\\.co\\.uk/\" to=\"https://$1123-reg.co.uk/\"/><rule from=\"^http://ssllin1\\.123-secure\\.com/\" to=\"https://ssllin1.123-secure.com/\"/></ruleset>", "<ruleset name=\"123ContactForm.com\" f=\"123ContactForm.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123Count.com\" f=\"123Count.com.xml\"><securecookie host=\"^\\.123count\\.com$\" name=\".+\"/><rule from=\"^http://123count\\.com/\" to=\"https://www.123count.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123RF.com\" f=\"123RF.xml\"><securecookie host=\".*\\.123rf\\.com$\" name=\".+\"/><rule from=\"^http://static\\.123rf\\.com/\" to=\"https://d3klshmqqidl5x.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123eHost.com (partial)\" f=\"123eHost.com.xml\"><exclusion pattern=\"^http://www\\.123ehost\\.com/+(?!(?:business-hosting-signup|support-ticket|website-design-quote)(?:$|[?/])|cpanel-webmailLogin\\.html|favicon\\.ico|passwordrecovery\\.htm|wp-content/|wp-includes/)\"/><rule from=\"^http://123ehost\\.com/\" to=\"https://www.123ehost.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123systems.net (partial)\" f=\"123systems.xml\"><exclusion pattern=\"^http://(?:www\\.)?123systems\\.net/+(?!billing(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"12 Foot Hedgehog.com\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"12_Foot_Hedgehog.com.xml\"><rule from=\"^http://(?:www\\.)?12foothedgehog\\.com/\" to=\"https://www.12foothedgehog.com/\"/></ruleset>", "<ruleset name=\"131002.net\" f=\"131002.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1337x.org\" f=\"1337x.org.xml\"><securecookie host=\"^\\.1337x\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1337x.to\" f=\"1337x.to.xml\"><securecookie host=\"^\\.1337x\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiki.15m.cc\" f=\"15Mcc.xml\"><rule from=\"^http://wiki\\.15m\\.cc/+\" to=\"https://15mpedia.org/\"/></ruleset>", "<ruleset name=\"15Mpedia\" f=\"15Mpedia.xml\"><securecookie host=\"^(www\\.)?15mpedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"163.com (MCB)\" platform=\"mixedcontent\" f=\"163.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"163.com (partial)\" f=\"163.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1688.com (partial)\" f=\"1688.com.xml\"><securecookie host=\"^\\.1688\\.com$\" name=\"^(?:ad_prefer|ali_ab|ali_beacon_id)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"168qiquan.com (partial)\" f=\"168qiquan.com.xml\"><rule from=\"^http://hk\\.168qiquan\\.com/(?=bridge/|css/|favicon\\.ico|images/|javax\\.faces\\.resource/|jsp?/|thickbox/|undefined/)\" to=\"https://hk.168qiquan.com/\"/></ruleset>", "<ruleset name=\"16personalities.com\" default_off=\"failed ruleset test\" f=\"16personalities.com.xml\"><rule from=\"^http://16personalities\\.com/\" to=\"https://www.16personalities.com/\"/><rule from=\"^http://([^/:@]+)\\.16personalities\\.com/\" to=\"https://$1.16personalities.com/\"/></ruleset>", "<ruleset name=\"17track.net\" platform=\"mixedcontent\" f=\"17track.net.xml\"><rule from=\"^http://(?:www\\.)?17track\\.net/\" to=\"https://www.17track.net/\"/></ruleset>", "<ruleset name=\"1984.is\" f=\"1984.is.xml\"><securecookie host=\"^(?:\\.|www\\.)?1984\\.is$\" name=\".*\"/><rule from=\"^http://((?:kb|owa|www)\\.)?1984\\.is/\" to=\"https://$11984.is/\"/></ruleset>", "<ruleset name=\"1984 Hosting.com\" f=\"1984_Hosting.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?1984hosting\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1BTCXE.com\" f=\"1BTCXE.com.xml\"><securecookie host=\"^\\.1btcxe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1Cart\" default_off=\"failed ruleset test\" f=\"1Cart.xml\"><securecookie host=\"^(www\\.)?1cart\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?1cart\\.co\\.nz/\" to=\"https://1cart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1LotSTP.com\" f=\"1LotSTP.com.xml\"><securecookie host=\"^\\.1lotstp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1PipFix\" f=\"1PipFix.xml\"><securecookie host=\"^(?:w*\\.)?1pipfix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1ShoppingCart.com (partial)\" f=\"1ShoppingCart.com.xml\"><exclusion pattern=\"^http://www\\.1shoppingcart\\.com/+(?!app/adtrack\\.asp|SecureCart/SecureCart\\.aspx)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1TW.org\" f=\"1TW.org.xml\"><rule from=\"^http://c\\.1tw\\.org/\" to=\"https://d2bj0t3lpy2azd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"1WT.eu (partial)\" default_off=\"expired\" f=\"1WT.eu.xml\"><rule from=\"^http://(?:static|www)\\.1wt\\.eu/\" to=\"https://1wt.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1X.com\" f=\"1X.xml\"><securecookie host=\"^\\.1x\\.com$\" name=\".+\"/><rule from=\"^http://mail\\.1x\\.com/.*\" to=\"https://mail.google.com/a/1x.com\"/><rule from=\"^http://www\\.1x\\.com/\" to=\"https://1x.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1 Deg.org\" f=\"1_Deg.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.com\" f=\"1and1-Internet.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://faq\\.1and1\\.com/\" to=\"https://help.1and1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.ca (partial)\" f=\"1and1.ca.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://1and1\\.ca/\" to=\"https://www.1and1.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.co.uk (partial)\" f=\"1and1.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^chocolateChip$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://community\\.1and1\\.co\\.uk/.*\" to=\"https://community.1and1.com/11-community/?pk_campaign=1and1UK&pk_kwd=redirect\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.es\" f=\"1and1.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1anh.com\" f=\"1anh.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1c-bitrix.ru (partial)\" f=\"1c-bitrix.ru.xml\"><securecookie host=\"^\\.1c-bitrix\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?1c-bitrix\\.ru/\" to=\"https://www.1c-bitrix.ru/\"/><rule from=\"^http://(1c|academy|dev|idea|marketplace|partners|promo)\\.1c-bitrix\\.ru/\" to=\"https://$1.1c-bitrix.ru/\"/></ruleset>", "<ruleset name=\"1d4.us\" f=\"1d4.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1f0.de (partial)\" platform=\"cacert\" f=\"1f0.de.xml\"><rule from=\"^http://(?:www\\.)?1f0\\.de/wp-content/\" to=\"https://www.1f0.de/wp-content/\"/></ruleset>", "<ruleset name=\"1nsk.ru (problematic)\" default_off=\"expired, self-signed\" f=\"1nsk.ru-problematic.xml\"><securecookie host=\"^b?\\.1nsk\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?1nsk\\.ru/\" to=\"https://www.1nsk.ru/\"/><rule from=\"^http://b\\.1nsk\\.ru/\" to=\"https://b.1nsk.ru/\"/></ruleset>", "<ruleset name=\"1nsk.ru (partial)\" f=\"1nsk.ru.xml\"><securecookie host=\"^live\\.1nsk\\.ru$\" name=\".+\"/><rule from=\"^http://live\\.1nsk\\.ru/\" to=\"https://live.1nsk.ru/\"/></ruleset>", "<ruleset name=\"1phads.com\" f=\"1phads.com.xml\"><securecookie host=\"^1phads\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?1phads\\.com/\" to=\"https://1phads.com/\"/></ruleset>", "<ruleset name=\"1s and 0s.nl\" f=\"1s_and_0s.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1st ART Studio\" default_off=\"mismatch\" f=\"1st-ART-Studio.xml\"><rule from=\"^http://(?:www\\.)?1art\\.cz/\" to=\"https://www.1art.cz/\"/></ruleset>", "<ruleset name=\"1stWarning.com\" f=\"1stWarning.com.xml\"><securecookie host=\"^(?:.*\\.)?1stwarning\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1time.co.za (Expired)\" default_off=\"Expired\" f=\"1time.co.za.xml\"><rule from=\"^http://(?:www\\.)?1time\\.aero/\" to=\"https://www.1time.aero/\"/></ruleset>", "<ruleset name=\"1ty.me\" f=\"1ty.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1u1s.de (partial)\" f=\"1u1s.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?1u1s\\.de/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?1u1s\\.de/.*\" to=\"https://www.1und1.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1und1.de (partial)\" f=\"1und1.de.xml\"><securecookie host=\".*\\.1und1\\.de$\" name=\".+\"/><rule from=\"^http://1und1\\.de/\" to=\"https://www.1und1.de/\"/><rule from=\"^http://erfolgscenter\\.1und1\\.de/\" to=\"https://blog.1und1.de/\"/><rule from=\"^http://service-center\\.1und1\\.de/[^?]*\" to=\"https://hilfe-center.1und1.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1xbet.com\" f=\"1xbet.com.xml\"><securecookie host=\"^(?:w*\\.)?1xbet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2020mobile\" default_off=\"failed ruleset test\" f=\"2020mobile.es.xml\"><rule from=\"^http://(?:www\\.)?2020mobile\\.es/\" to=\"https://www.2020mobile.es/\"/></ruleset>", "<ruleset name=\"21.co\" f=\"21.co.xml\"><securecookie host=\"^(www\\.)?21\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"220Volt.hu\" f=\"220volt.hu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"23Systems\" f=\"23Systems.xml\"><securecookie host=\"^(?:w*\\.)?23systems\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"23andMe.com\" f=\"23andMe.com.xml\"><securecookie host=\"^\\.23andme\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^(?:www\\.)?23andme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"24/7 Media clients\" default_off=\"failed ruleset test\" f=\"24-7-Media-clients.xml\"><rule from=\"^http://oascentral\\.bostonherald\\.com/\" to=\"https://oasc08.247realmedia.com/\"/><rule from=\"^http://oascentral\\.aviationweek\\.com/\" to=\"https://oasc10.247realmedia.com/\"/><rule from=\"^http://oascentral\\.globalpost\\.com/\" to=\"https://oasc11.247realmedia.com/\"/></ruleset>", "<ruleset name=\"24/7 Media (partial)\" f=\"24-7-Media.xml\"><securecookie host=\"^.*\\.(?:247)?realmedia\\.com$\" name=\".+\"/><securecookie host=\"^network\\.realmedia\\.com$\" name=\".+\"/><rule from=\"^http://imagec14\\.247realmedia\\.com/\" to=\"https://oasc14.247realmedia.com/\"/><rule from=\"^http://imageceu1\\.247realmedia\\.com/\" to=\"https://oasc-eu1.247realmedia.com/\"/><rule from=\"^http://o(asc[01]\\d|asc-eu1|penadstream(?:1\\d|-eu1))\\.247realmedia\\.com/\" to=\"https://o$1.247realmedia.com/\"/><rule from=\"^http://oasc([01]\\d)(?:a|\\d{1,3})\\.247realmedia\\.com/\" to=\"https://oasc$1.247realmedia.com/\"/><rule from=\"^http://network\\.realmedia\\.com/\" to=\"https://network.realmedia.com/\"/><rule from=\"^http://oas-central\\.realmedia\\.com/\" to=\"https://oasc10.247realmedia.com/\"/></ruleset>", "<ruleset name=\"24/7 Customer (partial)\" f=\"24-7_Customer.xml\"><rule from=\"^http://(cdn|psp)\\.247ilabs\\.com/\" to=\"https://$1.247ilabs.com/\"/></ruleset>", "<ruleset name=\"24 ways (partial)\" f=\"24-ways.xml\"><rule from=\"^http://cloud\\.24ways\\.org/\" to=\"https://d3dtvigi7xxd4v.cloudfront.net/\"/><rule from=\"^http://media\\.24ways\\.org/\" to=\"https://s3.amazonaws.com/media.24ways.org/\"/></ruleset>", "<ruleset name=\"247filmz\" f=\"247filmz.xml\"><securecookie host=\"^(?:www\\.)?247filmz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"254a.com\" f=\"254a.com.xml\"><securecookie host=\"^d\\.254a\\.com$\" name=\".+\"/><rule from=\"^http://d\\.254a\\.com/\" to=\"https://d.254a.com/\"/></ruleset>", "<ruleset name=\"256.com\" default_off=\"expired\" f=\"256.com.xml\"><rule from=\"^http://www\\.256\\.com/\" to=\"https://256.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2Checkout (mismatches)\" default_off=\"mismatch\" f=\"2Checkout-mismatches.xml\"><rule from=\"^http://developers\\.2checkout\\.com/\" to=\"https://developers.2checkout.com/\"/></ruleset>", "<ruleset name=\"2Checkout (partial)\" f=\"2Checkout.xml\"><securecookie host=\"^shopping\\.2co\\.com$\" name=\".*\"/><securecookie host=\"^\\.2checkout\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?2checkout\\.com/\" to=\"https://www.2checkout.com/\"/><rule from=\"^http://(shopping|www)\\.2co\\.com/\" to=\"https://$1.2co.com/\"/></ruleset>", "<ruleset name=\"2Dialog.com (partial)\" default_off=\"failed ruleset test\" f=\"2Dialog.com.xml\"><rule from=\"^http://(www\\.)?2dialog\\.com/([\\w-]+/admin\\.php|(?:[\\w-]+/)?(?:cs|image|j)s/|favicon\\.ico)\" to=\"https://$12dialog.com/$2\"/></ruleset>", "<ruleset name=\"2GIS.ru (partial)\" f=\"2GIS.ru.xml\"><rule from=\"^http://(?:(app\\.)|www\\.)?2gis\\.ru/\" to=\"https://$12gis.ru/\"/></ruleset>", "<ruleset name=\"2K.com (partial)\" f=\"2K.com.xml\"><exclusion pattern=\"^http://store\\.2k\\.com/+(?!Admin/|DRHM/|favicon\\.io)\"/><securecookie host=\"^\\.2k\\.com$\" name=\"^(?:PHPSESSID|blog-2k_(?:last_activity|last_visit|tracker))$\"/><securecookie host=\"^www\\.2k\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2K Games.com (partial)\" f=\"2K_Games.xml\"><securecookie host=\".+\\.2kgames\\.com\" name=\".+\"/><rule from=\"^http://2kgames\\.com/\" to=\"https://www.2kgames.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2K Sports.com\" f=\"2K_Sports.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2 Ton.com.au\" f=\"2_Ton.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2buntu.com\" f=\"2buntu.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.2buntu\\.com/\" to=\"https://2buntu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ch.cm\" f=\"2ch.cm.xml\"><securecookie host=\"^(?:\\.|www\\.)?2ch\\.cm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ch.hk\" f=\"2ch.hk.xml\"><securecookie host=\"^\\.?2ch\\.hk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?2ch\\.hk/\" to=\"https://2ch.hk/\"/></ruleset>", "<ruleset name=\"2cnt.net\" f=\"2cnt.net.xml\"><securecookie host=\"^ssl-fromcs\\.2cnt\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2mdn.net\" f=\"2mdn.net.xml\"><exclusion pattern=\"http://s\\d\\.2mdn\\.net/instream/flash/v3/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2nd Vote.com\" f=\"2nd_Vote.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2o7.net\" f=\"2o7.net.xml\"><securecookie host=\"^(?:.*\\.)?2o7\\.net$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+)(\\.1[12]2|\\.sbx1)?\\.2o7\\.net/\" to=\"https://$1$2.2o7.net/\"/></ruleset>", "<ruleset name=\"2pay.ru\" f=\"2pay.ru.xml\"><rule from=\"^http://(?:www\\.)?2pay\\.ru/[^?]*\" to=\"https://www.xsolla.com/\"/></ruleset>", "<ruleset name=\"2shared.com\" default_off=\"connection refused\" f=\"2shared.xml\"><securecookie host=\"^(?:.*\\.)?2shared\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?2shared\\.com/\" to=\"https://www.2shared.com/\"/></ruleset>", "<ruleset name=\"30 Boxes.com\" default_off=\"expired\" f=\"30_Boxes.com.xml\"><securecookie host=\"^\\.30boxes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"32Red Online Casino\" f=\"32Red_Online_Casino.xml\"><securecookie host=\"^(?:affiliates|gamesarcade|livecasino|www)?\\.32red\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?32red\\.com/\" to=\"https://www.32red.com/\"/><rule from=\"^http://(affiliates|assets|gamesarcade|images|livecasino)\\.32red\\.com/\" to=\"https://$1.32red.com/\"/></ruleset>", "<ruleset name=\"33Across (partial)\" platform=\"mixedcontent\" f=\"33Across.xml\"><exclusion pattern=\"^http://socialdna\\.\"/><securecookie host=\"^(?:.*\\.)?33across\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?33across\\.com/\" to=\"https://$133across.com/\"/></ruleset>", "<ruleset name=\"33Bits.org\" default_off=\"mismatched\" f=\"33Bits.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"33option.com\" f=\"33option.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"350 (partial)\" f=\"350.xml\"><securecookie host=\"^act\\.350\\.org$\" name=\".+\"/><rule from=\"^http://act\\.350\\.org/\" to=\"https://act.350.org/\"/><rule from=\"^http://pacific\\.350\\.org/(bundl|imag)es/\" to=\"https://posterous.com/$1es/\"/></ruleset>", "<ruleset name=\"350zEvolution.com\" default_off=\"connection refused\" f=\"350zEvolution.com.xml\"><securecookie host=\"^(?:.*\\.)?350zevolution\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360.cn (partial)\" f=\"360.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360Cities (partial)\" f=\"360Cities.xml\"><securecookie host=\"^www\\.360cities\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?360cities\\.net/\" to=\"https://$1360cities.net/\"/><rule from=\"^http://cdn1\\.360cities\\.net/\" to=\"https://d2dw0c606n9zn3.cloudfront.net/\"/><rule from=\"^http://cdn2\\.360cities\\.net/\" to=\"https://d3tllcxe89i3i3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"360 Safe.com (partial)\" default_off=\"mismatched\" f=\"360_Safe.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360 Total Security.com\" f=\"360_Total_Security.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360 Yield\" f=\"360_Yield.xml\"><securecookie host=\".*\\.360yield\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?360yield\\.com/\" to=\"https://admin.360yield.com/\"/><rule from=\"^http://ad(min)?\\.360yield\\.com/\" to=\"https://ad$1.360yield.com/\"/></ruleset>", "<ruleset name=\"360buy.com (partial)\" f=\"360buy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://360buy\\.com/+\" to=\"https://www.jd.com/\"/><rule from=\"^http://(?!auth\\.)(\\w+)\\.360buy\\.com/+\" to=\"https://$1.jd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360buyimg.com\" f=\"360buyimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets.co.uk\" f=\"365_Tickets.co.uk.xml\"><securecookie host=\"^\\.365tickets\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets.com\" f=\"365_Tickets.com.xml\"><securecookie host=\"^\\.365tickets\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets Central.com\" f=\"365_Tickets_Central.com.xml\"><securecookie host=\"^\\.365ticketscentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets Global.com\" f=\"365_Tickets_Global.com.xml\"><securecookie host=\"^\\.365ticketsglobal\\.com$\" name=\".+\"/><rule from=\"^http://(cs|image)s\\.365ticketsglobal\\.com/\" to=\"https://$1s.365ticketsglobal.com/\"/></ruleset>", "<ruleset name=\"365 Tickets Scotland.com\" f=\"365_Tickets_Scotland.com.xml\"><securecookie host=\"^\\.365ticketsscotland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"37Signals\" f=\"37Signals.xml\"><securecookie host=\"^(?:(?:www|gettingreal|launchpad|smiley)\\.)?37signals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?37signals\\.com/\" to=\"https://37signals.com/\"/><rule from=\"^http://(gettingreal|launchpad|smiley)\\.37signals\\.com/\" to=\"https://$1.37signals.com/\"/></ruleset>", "<ruleset name=\"38.de\" default_off=\"missing certificate chain\" f=\"38.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://38\\.de/.*\" to=\"https://www.38.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"38degrees.org.uk\" f=\"38degrees.xml\"><securecookie host=\"^(?:.*\\.)?38degrees\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"39dollarglasses.com\" f=\"39dollarglasses.com.xml\"><rule from=\"^http://(?:www\\.)?39dollarglasses\\.com/\" to=\"https://www.39dollarglasses.com/\"/></ruleset>", "<ruleset name=\"3DCenter.org (cacert)\" platform=\"cacert\" f=\"3DCenter.org.xml\"><securecookie host=\"^(www|m)?\\.3dcenter\\.org$\" name=\".+\"/><rule from=\"^http://3dcenter\\.org/\" to=\"https://www.3dcenter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3DStats.com\" f=\"3DStats.xml\"><securecookie host=\"^(?:.*\\.)?3dstats\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3D Robotics.com (partial)\" f=\"3D_Robotics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3D Vision Live.com (partial)\" f=\"3D_Vision_Live.com.xml\"><securecookie host=\"^\\.3dvisionlive\\.com$\" name=\".+\"/><rule from=\"^http://3dvisionlive\\.com/\" to=\"https://www.3dvisionlive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3FM\" f=\"3FM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3M.com (partial)\" f=\"3M.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?3m\\.com/+(?!product/)\"/><exclusion pattern=\"^http://solutions\\.3m\\.com/+(?!3M/themes/|3MContentRetrievalAPI/|wps/)\"/><rule from=\"^http://((?:metricscst|solutions|www)\\.)?3m\\.com/\" to=\"https://$13m.com/\"/></ruleset>", "<ruleset name=\"3Play Media (partial)\" f=\"3Play-Media.xml\"><rule from=\"^http://account\\.3playmedia\\.com/\" to=\"https://account.3playmedia.com/\"/></ruleset>", "<ruleset name=\"3 News\" f=\"3_News.xml\"><securecookie host=\"^(?:www\\.)?3news\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?3news\\.co\\.nz/\" to=\"https://www.3news.co.nz/\"/><rule from=\"^http://cdn\\.3news\\.co\\.nz/\" to=\"https://cdn.mediaworks.co.nz/\"/></ruleset>", "<ruleset name=\"3bbwifi.com\" f=\"3bbwifi.com.xml\"><rule from=\"^http://(?:www\\.)?3bbwifi\\.com/\" to=\"https://www.3bbwifi.com/\"/></ruleset>", "<ruleset name=\"3cdn\" f=\"3cdn.xml\"><rule from=\"^http://(\\w+)\\.3cdn\\.net/\" to=\"https://$1.3cdn.net/\"/></ruleset>", "<ruleset name=\"3dglassesfree.com (partial)\" f=\"3dglassesfree.com.xml\"><rule from=\"^http://www\\.3dglassesfree\\.com/(?=favicon\\.ico|images/|stylesheets/)\" to=\"https://www.3dglassesfree.com/\"/></ruleset>", "<ruleset name=\"3dsupply.de\" f=\"3dsupply.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3min\" default_off=\"Invalid Certificate\" f=\"3min.xml\"><securecookie host=\"^(?:.*\\.)?3min\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?3min\\.de/\" to=\"https://www.3min.de/\"/></ruleset>", "<ruleset name=\"3sat\" default_off=\"breaks video streaming\" f=\"3sat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3scale\" default_off=\"failed ruleset test\" f=\"3scale.xml\"><securecookie host=\".+\\.3scale\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?3scale\\.net/\" to=\"https://$13scale.net/\"/></ruleset>", "<ruleset name=\"3suisses.de\" f=\"3suisses.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3taps\" f=\"3taps.xml\"><securecookie host=\"^developer\\.3taps\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3v4l.org\" f=\"3v4l.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4.CN (partial)\" f=\"4.CN.xml\"><securecookie host=\"^www\\.4\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"419 Eater.com (partial)\" f=\"419_Eater.com.xml\"><securecookie host=\"^forum\\.419eater\\.com$\" name=\".+\"/><rule from=\"^http://forum\\.419eater\\.com/\" to=\"https://forum.419eater.com/\"/></ruleset>", "<ruleset name=\"42.ie\" f=\"42.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.42\\.ie/\" to=\"https://42.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"42Floors.com (partial)\" f=\"42Floors.com.xml\"><securecookie host=\"^(?:www\\.)?42floors\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"435 by MJC.com\" f=\"435_by_MJC.com.xml\"><securecookie host=\"^(?:www)?\\.435bymjc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"451 Research.com\" f=\"451-Group.xml\"><securecookie host=\"^(?:.*\\.)?451research\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"451 Unavailable.org\" default_off=\"mismatched\" f=\"451_Unavailable.org.xml\"><securecookie host=\"^(?:www\\.)?451unavailable\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"45 Million Voices\" default_off=\"mismatched\" f=\"45_Million_Voices.xml\"><rule from=\"^http://(?:www\\.)?45millionvoices\\.org/\" to=\"https://45millionvoices.org/\"/></ruleset>", "<ruleset name=\"48months.ie\" default_off=\"failed ruleset test\" f=\"48months.ie.xml\"><securecookie host=\"^community\\.48months\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4D.com (partial)\" f=\"4D.com.xml\"><securecookie host=\"^\\.store\\.4d\\.com$\" name=\".+\"/><rule from=\"^http://store\\.4d\\.com/\" to=\"https://store.4d.com/\"/></ruleset>", "<ruleset name=\"4DO\" default_off=\"mismatch\" f=\"4DO.xml\"><securecookie host=\"^.*\\.fourdo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fourdo\\.com/\" to=\"https://www.fourdo.com/\"/><rule from=\"^http://(forum|wiki)\\.fourdo\\.com/\" to=\"https://$1.fourdo.com/\"/></ruleset>", "<ruleset name=\"4K Download.com (partial)\" f=\"4K_Download.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4RX.com\" default_off=\"failed ruleset test\" f=\"4RX.com.xml\"><securecookie host=\"^\\.4rx\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?4rx\\.com/\" to=\"https://secure.4rx.com/\"/></ruleset>", "<ruleset name=\"4RunnerForex.com\" default_off=\"failed ruleset test\" f=\"4RunnerForex.com.xml\"><securecookie host=\"^(?:w*\\.)?4runnerforex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4Shared (experimental)\" f=\"4Shared.xml\"><exclusion pattern=\"^http://(?:blog|forum)\\.4shared\\.com/\"/><securecookie host=\"^(?:.*\\.)?4shared\\.com$\" name=\".*\"/><rule from=\"^http://([^/:@]*\\.)?4shared\\.com/\" to=\"https://$14shared.com/\"/></ruleset>", "<ruleset name=\"4Tulemar\" platform=\"mixedcontent\" f=\"4Tulemar.xml\"><securecookie host=\".*\\.4tulemar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4 Free Proxy\" default_off=\"self-signed\" f=\"4_Free_Proxy.xml\"><securecookie host=\"^4freeproxy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?4freeproxy\\.com/\" to=\"https://4freeproxy.com/\"/></ruleset>", "<ruleset name=\"4armed.com\" f=\"4armed.com.xml\"><securecookie host=\"^www\\.4armed\\.com$\" name=\".+\"/><rule from=\"^http://4armed\\.com/\" to=\"https://www.4armed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4chan (partial)\" f=\"4chan.xml\"><exclusion pattern=\"^http://(?:status|blog)\\.\"/><securecookie host=\".*\\.4chan(?:-ads|nel)?\\.org$\" name=\".+\"/><rule from=\"^http://([\\w.]+\\.)?4c(dn|han|han-ads|hannel)\\.org/\" to=\"https://$14c$2.org/\"/></ruleset>", "<ruleset name=\"4dsply.com (partial)\" f=\"4dsply.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4gamer.net (partial)\" f=\"4gamer.net.xml\"><rule from=\"^http://(?:www\\.)?4gamer\\.net/(favicon\\.ico|images/)\" to=\"https://www.4gamer.net/$1\"/></ruleset>", "<ruleset name=\"4plebs.org\" f=\"4plebs.org.xml\"><securecookie host=\"^(?:archive)?\\.4plebs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4sevens\" default_off=\"failed ruleset test\" f=\"4sevens.xml\"><rule from=\"^http://(?:www\\.)?4sevens\\.com/\" to=\"https://www.4sevens.com/\"/></ruleset>", "<ruleset name=\"4sqi.net\" f=\"4sqi.net.xml\"><rule from=\"^http://(irs\\d|is\\d|ss[0-5l])\\.4sqi\\.net/\" to=\"https://$1.4sqi.net/\"/></ruleset>", "<ruleset name=\"4sysops.com\" f=\"4sysops.com.xml\"><rule from=\"^http://www\\.4sysops\\.com/\" to=\"https://4sysops.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"500ish.com\" f=\"500ish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"500px.com (partial)\" f=\"500px.com.xml\"><securecookie host=\"^(?:(?:prime|www)\\.)?500px\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"500px.org (partial)\" f=\"500px.org.xml\"><exclusion pattern=\"^http://assetcdn\\.500px\\.org/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"508surveys.com\" default_off=\"expired\" f=\"508surveys.com.xml\"><securecookie host=\"^508surveys\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?508surveys\\.com/\" to=\"https://508surveys.com/\"/></ruleset>", "<ruleset name=\"511tactical.com\" f=\"511tactical.com.xml\"><rule from=\"^http://(www\\.)?511tactical\\.com/\" to=\"https://www.511tactical.com/\"/></ruleset>", "<ruleset name=\"512 Pixels.net\" default_off=\"mismatched\" f=\"512_Pixels.xml\"><securecookie host=\"^\\.512pixels\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"51 Fanli.net (partial)\" f=\"51_Fanli.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://l[1-4]\\.51fanli\\.net/\" to=\"https://l0.51fanli.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"55ch.org\" f=\"55ch.org.xml\"><securecookie host=\"^\\.55ch\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"55chan.org\" f=\"55chan.org.xml\"><securecookie host=\"^\\.55chan\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5NINES (partial)\" f=\"5NINES.xml\"><securecookie host=\"^portal\\.5ninesdata\\.com$\" name=\".*\"/><rule from=\"^http://portal\\.5ninesdata\\.com/\" to=\"https://portal.5ninesdata.com/\"/></ruleset>", "<ruleset name=\"5 July.org\" f=\"5_July.org.xml\"><securecookie host=\"^5july\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5apps (mismatches)\" default_off=\"tender certificate\" f=\"5apps.com-mismatches.xml\"><securecookie host=\"^help\\.5apps\\.com$\" name=\".*\"/><rule from=\"^http://help\\.5apps\\.com/\" to=\"https://help.5apps.com/\"/></ruleset>", "<ruleset name=\"5apps (partial)\" f=\"5apps.com.xml\"><securecookie host=\"^5apps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?5apps\\.com/\" to=\"https://5apps.com/\"/><rule from=\"^http://(develop|libs)\\.5apps\\.com/\" to=\"https://$1.5apps.com/\"/></ruleset>", "<ruleset name=\"5min.com (partial)\" f=\"5min.com.xml\"><rule from=\"^http://5min\\.com/\" to=\"https://www.5min.com/\"/><rule from=\"^http://[ap](shared|thumbnails)\\.5min\\.com/\" to=\"https://$1.5min.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5vpn.net\" f=\"5vpn.net.xml\"><securecookie host=\"^(?:www\\.)?5vpn.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"64Px.com\" default_off=\"expired\" f=\"64Px.com.xml\"><rule from=\"^http://(?:www\\.)?64px\\.com/\" to=\"https://64px.com/\"/></ruleset>", "<ruleset name=\"66option.com\" f=\"66option.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6PM.com (partial)\" default_off=\"needs clearnet testing\" f=\"6PM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6Scan.com (partial)\" default_off=\"connection refused\" f=\"6Scan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6Wunderkinder (partial)\" default_off=\"mismatch\" f=\"6Wunderkinder.xml\"><rule from=\"^http://(?:www\\.)?6wunderkinder\\.com/(6-Wunderkinder-Logo\\.png|favicon\\.ico|wp-content/)\" to=\"https://www.6wunderkinder.com/$1\"/></ruleset>", "<ruleset name=\"6connect.com\" f=\"6connect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6xq.net (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"6xq.net.xml\"><rule from=\"^http://(?:www\\.)?6xq\\.net/\" to=\"https://6xq.net/\"/></ruleset>", "<ruleset name=\"7-Eleven.com (partial)\" f=\"7-Eleven.com.xml\"><securecookie host=\"^\\.7-eleven\\.com$\" name=\"^__qca$\"/><rule from=\"^http://7-eleven\\.com/\" to=\"https://www.7-eleven.com/\"/><rule from=\"^http://careers\\.7-eleven\\.com/+(?:\\?.*)?$\" to=\"https://sites.7-eleven.com/careers/Careers.html\"/><rule from=\"^http://franchise\\.7-eleven\\.com/+(?:\\?.*)?$\" to=\"https://sites.7-eleven.com/franchise/home\"/><rule from=\"^http://(?:careers|corp|franchise)\\.7-eleven\\.com/\" to=\"https://sites.7-eleven.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"777coin.com\" f=\"777coin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?777coin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7Headlines.com\" f=\"7Headlines.com.xml\"><securecookie host=\"^\\.7headlines\\.com$\" name=\".+\"/><rule from=\"^http://7headlines\\.com/\" to=\"https://www.7headlines.com/\"/><rule from=\"^https?://asset\\.7headlines\\.net/\" to=\"https://asset-7headlines.pixfs.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7 Elements.co.uk\" f=\"7_Elements.co.uk.xml\"><securecookie host=\"^(?:www\\.)?7elements\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7 Springs.com\" default_off=\"failed ruleset test\" f=\"7_Springs.com.xml\"><securecookie host=\"^(?:www\\.)?7springs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7chan\" f=\"7chan.xml\"><securecookie host=\"^\\.7chan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7digital.com (partial)\" f=\"7digital.xml\"><rule from=\"^http://7digital\\.com/\" to=\"https://www.7digital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7eer.net\" f=\"7eer.net.xml\"><securecookie host=\".*\\.7eer\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7search.com (partial)\" f=\"7search.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7static.com\" f=\"7static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7terminals.com\" f=\"7terminals.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"80s Purple.com\" default_off=\"failed ruleset test\" f=\"80s_Purple.com.xml\"><securecookie host=\".*\\.80spurple\\.com$\" name=\".+\"/><rule from=\"^http://(?:smcdn\\.|(news\\.|www\\.))?80spurple\\.com/\" to=\"https://$180spurple.com/\"/></ruleset>", "<ruleset name=\"888173.net (false MCB)\" platform=\"mixedcontent\" f=\"888173.net-falsemixed.xml\"><securecookie host=\"^\\.888173\\.net$\" name=\".+\"/><rule from=\"^http://www\\.888173\\.net/\" to=\"https://www.888173.net/\"/></ruleset>", "<ruleset name=\"888173.net (partial)\" f=\"888173.net.xml\"><exclusion pattern=\"^http://www\\.888173\\.net/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"888VoIP.com\" f=\"888VoIP.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?888voip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8R.com\" f=\"8R.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?8r\\.com$\" name=\".+\"/><rule from=\"^http://8r\\.com/\" to=\"https://www.8r.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8ch.net\" f=\"8ch.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8chan\" f=\"8chan.co.xml\"><rule from=\"^http://(?:www\\.)?8chan\\.co/\" to=\"https://8chan.co/\"/><rule from=\"^http://jp\\.8chan\\.co/\" to=\"https://jp.8chan.co/\"/><rule from=\"^http://media\\.8chan\\.co/\" to=\"https://media.8chan.co/\"/></ruleset>", "<ruleset name=\"8tracks.com\" f=\"8tracks.xml\"><rule from=\"^http://imgix\\.8tracks\\.com/\" to=\"https://8tracks.imgix.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8win88win.com\" default_off=\"failed ruleset test\" f=\"8win88win.com.xml\"><securecookie host=\"^\\.8win88win\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"911.gov (partial)\" f=\"911.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"918autoloans.com\" default_off=\"failed ruleset test\" f=\"918autoloans.com.xml\"><securecookie host=\"^\\.918autoloans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"96boards.org\" f=\"96boards.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"972 Mag.com (partial)\" f=\"972mag.com.xml\"><rule from=\"^http://(?:www\\.)?972mag\\.com/(?=wp-content/|wp-includes/)\" to=\"https://d2f1h9jpcesbx3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"99Bitcoins.com\" f=\"99Bitcoins.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9gag (partial)\" f=\"9gag.xml\"><exclusion pattern=\"^http://(?:m\\.|www\\.)?9gag\\.com/+(?!(?:about|advertise|faq|login|privacy|recover|signup|tos)(?:$|[?/])|favicon\\.ico|img/)\"/><securecookie host=\"^admin\\.9gag\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|api|comment|m|www)\\.)?9gag\\.com/\" to=\"https://$19gag.com/\"/><rule from=\"^http://images-cdn\\.9gag\\.com/\" to=\"https://d24w6bsrhbeh9d.cloudfront.net/\"/><rule from=\"^http://assets-9gag-lol\\.9cache\\.com/\" to=\"https://assets-9gag-lol.9cache.com/\"/></ruleset>", "<ruleset name=\"9seeds.com (partial)\" f=\"9seeds.xml\"><exclusion pattern=\"^http://(?:www\\.)?9seeds\\.com/+(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^\\.9seeds\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://9seeds\\.com/\" to=\"https://www.9seeds.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A Small Orange.com\" f=\"A-Small-Orange.xml\"><securecookie host=\"^customers\\.asmallorange\\.com$\" name=\".+\"/><rule from=\"^http://forums\\.asmallorange\\.com/+\" to=\"https://status.asmallorange.com/\"/><rule from=\"^http://jobs\\.asmallorange\\.com/+\" to=\"https://asmallorange.com/jobs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a-ads.com\" f=\"A-ads.com.xml\"><securecookie host=\"^a-ads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSDN.com\" f=\"A.fsdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A1 Telekom Austria\" f=\"A1-Telekom-Austria.xml\"><securecookie host=\"^.*\\.a1(?:community)?\\.net$\" name=\".*\"/><rule from=\"^http://a1community\\.net/\" to=\"https://www.a1community.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A14 Electronics.com\" f=\"A14_Electronics.com.xml\"><securecookie host=\"^(?:w*\\.)?a14electronics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A16z.com\" f=\"A16z.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A1A Fast Cash\" default_off=\"failed ruleset test\" f=\"A1A_Fast_Cash.xml\"><securecookie host=\"^(?:www)?\\.a1afastcash.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A1WebStats.com (partial)\" f=\"A1WebStats.com.xml\"><rule from=\"^http://(www\\.)?a1webstats\\.com/(?=stats/|wp-content/|wp-includes/)\" to=\"https://$1a1webstats.com/\"/></ruleset>", "<ruleset name=\"A2 Hosting.com (partial)\" f=\"A2_Hosting.xml\"><securecookie host=\"\\.a2hosting\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".+\\.a2hosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a2z, Inc (partial)\" f=\"A2z.xml\"><exclusion pattern=\"^http://www\\.a2zinc\\.net/(?!Show6/custom/newsletter/[\\w-]+\\.htm|show6/(?:css|custom/flexslider|[Cc]ustom/[Ii]mages|include)/)\"/><rule from=\"^http://a2zinc\\.net/\" to=\"https://www.a2zinc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a3li\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"A3li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a4apphack (mismatches)\" default_off=\"mismatch\" f=\"A4apphack-mismatches.xml\"><rule from=\"^http://(?:www\\.)?a4apphack\\.com/blog/wp-content/\" to=\"https://a4apphack.com/~afouapph/blog/wp-content/\"/><rule from=\"^http://apps\\.a4apphack\\.com/apps/timthumb/\" to=\"https://a4apphack.com/~afouapph/apps/timthumb/\"/></ruleset>", "<ruleset name=\"a4apphack (partial)\" f=\"A4apphack.xml\"><rule from=\"^http://img\\.a4apphack\\.com/\" to=\"https://s3.amazonaws.com/img.a4apphack.com/\"/></ruleset>", "<ruleset name=\"a4uexpo.com (false MCB)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"A4uexpo.com.xml\"><securecookie host=\"^\\.a4uexpo\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?a4uexpo\\.com/\" to=\"https://www.a4uexpo.com/\"/></ruleset>", "<ruleset name=\"AA.net.uk (partial)\" f=\"AA.net.uk.xml\"><securecookie host=\"^(?:accounts|clueless|status)\\.aa\\.net\\.uk$\" name=\".+\"/><rule from=\"^http://(accounts|clueless|order|status)\\.aa\\.net\\.uk/\" to=\"https://$1.aa.net.uk/\"/></ruleset>", "<ruleset name=\"American Airlines\" f=\"AA.xml\"><securecookie host=\"^(?:.*\\.)aa\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAAS.org (partial)\" f=\"AAAS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Aged Care Quality Agency\" f=\"AACQA.xml\"><rule from=\"^http://(?:www\\.)?aacqa\\.gov\\.au/\" to=\"https://www.aacqa.gov.au/\"/></ruleset>", "<ruleset name=\"AAMC.org\" f=\"AAMC.org.xml\"><rule from=\"^http://(?:www\\.)?aamc\\.org/\" to=\"https://www.aamc.org/\"/></ruleset>", "<ruleset name=\"AARNet\" f=\"AARNet.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AARP.org (partial)\" f=\"AARP.org.xml\"><exclusion pattern=\"^http://discounts\\.aarp\\.org/+(?!static/)\"/><securecookie host=\"^\\.aarp\\.org$\" name=\"^u$\"/><securecookie host=\"^(?:appsec|community|secure|services\\.share)\\.aarp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAS.org (partial)\" f=\"AAS.org.xml\"><securecookie host=\"^members\\.aas\\.org$\" name=\".+\"/><rule from=\"^http://aj\\.aas\\.org/+\" to=\"https://iopscience.iop.org/1538-3881\"/><rule from=\"^http://apj\\.aas\\.org/+\" to=\"https://iopscience.iop.org/0004-637X\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAU.at (partial)\" f=\"AAU.at.xml\"><rule from=\"^http://pervasive\\.aau\\.at/\" to=\"https://pervasive.aau.at/\"/></ruleset>", "<ruleset name=\"AB9IL.net\" f=\"AB9IL.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABC Music Publishing\" default_off=\"mismatch\" f=\"ABC-Music-Publishing.xml\"><rule from=\"^http://(?:www\\.)?abcmusicpublishing\\.com\\.au/\" to=\"https://abcmusicpublishing.com.au/\"/></ruleset>", "<ruleset name=\"ABC Online (partial)\" f=\"ABC-Online.xml\"><securecookie host=\"^shop.abc.net.au$\" name=\".+\"/><securecookie host=\"^\\.abccommercial\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.abc\\.net\\.au/\" to=\"https://shop.abc.net.au/\"/><rule from=\"^http://(?:www\\.)?abccomercial\\.com/\" to=\"https://abccomercial.com/\"/></ruleset>", "<ruleset name=\"ABC News (false MCB)\" platform=\"mixedcontent\" f=\"ABC_News-falsemixed.xml\"><rule from=\"^http://a\\.abcnews(?:\\.go)?\\.com/\" to=\"https://abcnews.go.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABC News (partial)\" f=\"ABC_News.xml\"><exclusion pattern=\"^http://abcnews\\.go\\.com/+(?!assets/|favicon\\.ico|gma$|images/)\"/><exclusion pattern=\"^http://a\\.abcnews(?:\\.go)?\\.com/.+(?!(?:gif|jpg|png)(?:$|\\?))\"/><rule from=\"^http://a\\.abcnews(?:\\.go)?\\.com/\" to=\"https://abcnews.go.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABI.org.uk (partial)\" f=\"ABI.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://abi\\.org\\.uk/\" to=\"https://www.abi.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABIS-Studien.se (default off)\" default_off=\"expired certificate\" f=\"ABIS-studien.se.xml\"><rule from=\"^http://www\\.abis-studien\\.se/\" to=\"https://www.abis-studien.se/\"/><rule from=\"^http://abis-studien\\.se/\" to=\"https://abis-studien.se/\"/></ruleset>", "<ruleset name=\"ABI Research.com\" f=\"ABI_Research.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABN AMRO Bank\" f=\"ABNAMRO.xml\"><securecookie host=\"^www\\.abnamro\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?abnamro\\.nl/\" to=\"https://www.abnamro.nl/\"/></ruleset>", "<ruleset name=\"ABestWeb.com\" f=\"ABestWeb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACCAN\" default_off=\"failed ruleset test\" f=\"ACCAN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACI-Europe.org\" f=\"ACI-Europe.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLS.org\" f=\"ACLS.org.xml\"><securecookie host=\"^www\\.acls\\.org$\" name=\".+\"/><rule from=\"^http://acls\\.org/.*\" to=\"https://www.acls.org/\"/><rule from=\"^http://www\\.acls\\.org/\" to=\"https://www.acls.org/\"/></ruleset>", "<ruleset name=\"ACLU of Louisiana\" f=\"ACLU-of-Louisiana.xml\"><rule from=\"^http://(?:www\\.)?laaclu\\.org/\" to=\"https://www.laaclu.org/\"/></ruleset>", "<ruleset name=\"ACLU of North Carolina.org\" default_off=\"needs clearnet testing\" f=\"ACLU-of-North-Carolina.xml\"><rule from=\"^http://(?:www\\.)?acluofnc\\.org/\" to=\"https://www.acluofnorthcarolina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Southern California\" f=\"ACLU-of-Southern-California.xml\"><rule from=\"^http://(?:www\\.)?aclu-sc\\.org/\" to=\"https://www.aclu-sc.org/\"/></ruleset>", "<ruleset name=\"ACLU of Texas\" f=\"ACLU-of-Texas.xml\"><securecookie host=\"^(?:vpn|www)\\.aclutx\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aclutx\\.org/\" to=\"https://www.aclutx.org/\"/><rule from=\"^http://vpn\\.aclutx\\.org/\" to=\"https://vpn.aclutx.org/\"/></ruleset>", "<ruleset name=\"ACLU VA.org\" f=\"ACLU-of-Virginia.xml\"><securecookie host=\"^\\.?acluva\\.org$\" name=\".+\"/><rule from=\"^http://www\\.acluva\\.org/\" to=\"https://acluva.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU-WA.org\" f=\"ACLU-of-Washington.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU.org\" f=\"ACLU.xml\"><securecookie host=\"^secure\\.aclu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU SoCal.org\" f=\"ACLU_SoCal.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLUM.org\" f=\"ACLU_of_Massachusetts.xml\"><securecookie host=\"^\\.aclum\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU-NJ.org\" f=\"ACLU_of_New_Jersey.xml\"><securecookie host=\"^www\\.aclu-nj\\.org$\" name=\".+\"/><rule from=\"^http://aclu-nj\\.org/\" to=\"https://www.aclu-nj.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU NC.org\" f=\"ACLU_of_Northern_California.xml\"><securecookie host=\"^(?:www\\.)?aclunc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACM.org (false MCB)\" platform=\"mixedcontent\" f=\"ACM.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACM.org (partial)\" f=\"ACM.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?acm\\.org/+(?!.+\\.(?:/image_thumb$|\\.gif$|\\.jpg$|\\.png$)|favicon\\.ico|images-mail/|portal_css/)\"/><exclusion pattern=\"^http://cacm.acm.org/(?!(?:accounts/(?:forgot-password|new)|login)/*(?:\\?.*)?$|favicon\\.ico|images/|javascripts/|stylesheets/|system/)\"/><securecookie host=\"^(?!cacm\\.).*\\.acm\\.org$\" name=\".+\"/><rule from=\"^http://((?:cacm|campus|dl|myacm|pd|learning|myacm|plone|portal|queue|spam|techpack|www)\\.)?acm\\.org/\" to=\"https://$1acm.org/\"/></ruleset>", "<ruleset name=\"ACNC.gov.au\" f=\"ACNC.gov.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACPICA.org\" f=\"ACPICA.org.xml\"><securecookie host=\"^(?:bugs\\.)?acpica\\.org$\" name=\".+\"/><rule from=\"^http://www\\.acpica\\.org/\" to=\"https://acpica.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACSAC.org\" f=\"ACSAC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A.C.T.I.O.N Kooperative (partial)\" default_off=\"failed ruleset test\" f=\"ACTION_Kooperative.xml\"><securecookie host=\"^mail\\.action\\.at$\" name=\".+\"/><rule from=\"^http://mail\\.action\\.at/\" to=\"https://mail.action.at/\"/></ruleset>", "<ruleset name=\"ADCocktail (partial)\" f=\"ADCocktail.xml\"><securecookie host=\"^track\\.adcocktail\\.com$\" name=\".+\"/><rule from=\"^http://track\\.adcocktail\\.com/\" to=\"https://track.adcocktail.com/\"/></ruleset>", "<ruleset name=\"Attention Deficit Disorders Association - Southern Region\" default_off=\"failed ruleset test\" f=\"ADD-Assoc-Southern-Region.xml\"><rule from=\"^http://(?:www\\.)?adda-sr\\.org/\" to=\"https://www.adda-sr.org/\"/></ruleset>", "<ruleset name=\"ADISC.org\" f=\"ADISC.org.xml\"><securecookie host=\"^\\.adisc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADP Retirement Services\" default_off=\"failed ruleset test\" f=\"ADP_Retirement_Services.xml\"><securecookie host=\"^www\\.mykplan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADP Screening and Selection Services\" f=\"ADP_Screening_and_Selection_Services.xml\"><rule from=\"^http://(?:www\\.)?adpselect\\.com/\" to=\"https://www.adpselect.com/\"/></ruleset>", "<ruleset name=\"ADP VirtualEdge\" default_off=\"failed ruleset test\" f=\"ADP_VirtualEdge.xml\"><securecookie host=\"^www\\.virtualedge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?virtualedge\\.com/\" to=\"https://www.virtualedge.com/\"/></ruleset>", "<ruleset name=\"ADTmag.com\" f=\"ADTmag.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AD Security.org\" f=\"AD_Security.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADindex\" f=\"ADindex.xml\"><securecookie host=\"^(?:.*\\.)?adindex\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AEGEE-Enschede.nl (partial)\" f=\"AEGEE-Enschede.nl.xml\"><securecookie host=\"^\\.aegee-enschede\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AEI.org\" f=\"AEI.org.xml\"><securecookie host=\"^\\.?aei\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Emergency Management Institute\" f=\"AEMI.xml\"><rule from=\"^http://(?:www\\.)?schools\\.aemi\\.edu\\.au/\" to=\"https://schools.aemi.edu.au/\"/></ruleset>", "<ruleset name=\"AEUP.eu\" platform=\"mixedcontent\" default_off=\"self-signed\" f=\"AEUP.eu.xml\"><rule from=\"^http://(?:www\\.)?aeup\\.eu/\" to=\"https://www.aeup.eu/\"/></ruleset>", "<ruleset name=\"AFCEA\" f=\"AFCEA.xml\"><securecookie host=\"^www\\.afcea\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?afcea\\.org/\" to=\"https://www.afcea.org/\"/></ruleset>", "<ruleset name=\"AFCOM.com\" f=\"AFCOM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFNIC.fr\" f=\"AFNIC.fr.xml\"><securecookie host=\"^www\\.(?:sandbox\\.)?afnic\\.fr$\" name=\".+\"/><rule from=\"^http://afnic\\.fr/[^?]*(\\?.*)?\" to=\"https://www.afnic.fr/$1\"/><rule from=\"^http://www\\.(sandbox\\.)?afnic\\.fr/\" to=\"https://www.$1afnic.fr/\"/></ruleset>", "<ruleset name=\"AFP548.com (false MCB)\" platform=\"mixedcontent\" f=\"AFP548.com-falsemixed.xml\"><securecookie host=\"^afp548\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFP548.com (partial)\" f=\"AFP548.com.xml\"><rule from=\"^http://(www\\.)?afp548\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1afp548.com/\"/></ruleset>", "<ruleset name=\"AFRA-Berlin.de\" f=\"AFRA-Berlin.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFUL.org\" f=\"AFUL.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AGU.org (partial)\" f=\"AGU.org.xml\"><exclusion pattern=\"^http://(?:ethics|meetings|publications|sciencepolicy|sharingscience|sites)\\.agu\\.org/+(?!favicon\\.ico|(?:\\w+/)?wp-(?:content|includes)/)\"/><rule from=\"^http://(about|chapman|education|ethics|fallmeeting|geocalendar|giving|honors|meetings|membership|news|publications|sciencepolicy|sharingscience|sites2?|spc)\\.agu\\.org/\" to=\"https://$1.agu.org/\"/></ruleset>", "<ruleset name=\"AI-Radio.org\" f=\"AI-Radio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIA Surety\" f=\"AIA-Surety.xml\"><securecookie host=\"^(?:.*\\.)?(?:aiasurety|expertbail)\\.com$\" name=\".*\"/><rule from=\"^http://((?:becomeanagent|www)\\.)?aiasurety\\.com/\" to=\"https://$1aiasurety.com/\"/><rule from=\"^http://(www\\.)?expertbail\\.com/\" to=\"https://$1expertbail.com/\"/></ruleset>", "<ruleset name=\"AIM.com\" f=\"AIM.com.xml\"><rule from=\"^http://(?:cdn\\.)?aim\\.com/\" to=\"https://www.aim.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIP.org (partial)\" f=\"AIP.org.xml\"><exclusion pattern=\"^http://scitation\\.aip\\.org/+(?!css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?!scitation\\.)\\w\" name=\".\"/><rule from=\"^http://aip\\.org/\" to=\"https://www.aip.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIVD.nl\" f=\"AIVD.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AJC.com (partial)\" default_off=\"mismatched\" f=\"AJC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AJ's Ski & Sports\" default_off=\"failed ruleset test\" f=\"AJs_Ski_and_Sports.xml\"><securecookie host=\"^\\.stowesports\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?stowesports\\.com/\" to=\"https://$1[stowesports.com/\"/></ruleset>", "<ruleset name=\"Vorratsdatenspeicherung.de\" platform=\"cacert\" f=\"AK-Vorrat.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AKA.ms\" f=\"AKA.ms.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AK Vorrat.org (partial)\" default_off=\"failed ruleset test\" f=\"AK_Vorrat.org.xml\"><rule from=\"^http://listen\\.akvorrat\\.org/\" to=\"https://listen.akvorrat.org/\"/></ruleset>", "<ruleset name=\"ALA.org (partial)\" f=\"ALA.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ala\\.org/+(?!Security/|Template\\.cfm)\"/><securecookie host=\"^(?:www\\.alastore|joblist)\\.ala\\.org$\" name=\".+\"/><rule from=\"^http://alastore\\.ala\\.org/\" to=\"https://www.alastore.ala.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aldi\" f=\"ALDI.xml\"><rule from=\"^http://aldi-mobile\\.ch/\" to=\"https://www.aldi-mobile.ch/\"/><rule from=\"^http://aldi-sued\\.de/\" to=\"https://www.aldi-sued.de/\"/><rule from=\"^http://aldi-suisse\\.ch/\" to=\"https://www.aldi-suisse.ch/\"/><rule from=\"^http://aldi\\.be/\" to=\"https://www.aldi.be/\"/><rule from=\"^http://aldi\\.co\\.uk/\" to=\"https://www.aldi.co.uk/\"/><rule from=\"^http://aldi\\.es/\" to=\"https://www.aldi.es/\"/><rule from=\"^http://aldi\\.hu/\" to=\"https://www.aldi.hu/\"/><rule from=\"^http://hirlevel\\.aldi\\.hu/\" to=\"https://www.hirlevel.aldi.hu/\"/><rule from=\"^http://borvilag\\.aldi\\.hu/\" to=\"https://www.borvilag.aldi.hu/\"/><rule from=\"^http://aldi\\.ie/\" to=\"https://www.aldi.ie/\"/><rule from=\"^http://aldi\\.us/\" to=\"https://www.aldi.us/\"/><rule from=\"^http://alditalk\\.de/\" to=\"https://www.alditalk.de/\"/><rule from=\"^http://hofer\\.at/\" to=\"https://www.hofer.at/\"/><rule from=\"^http://hofer\\.si/\" to=\"https://www.hofer.si/\"/><rule from=\"^http://vinothek\\.hofer\\.at/\" to=\"https://www.vinothek.hofer.at/\"/><rule from=\"^http://vinoteka\\.hofer\\.si/\" to=\"https://www.vinoteka.hofer.si/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALDImobile.com.au\" f=\"ALDImobile.com.au.xml\"><securecookie host=\"^.*\\.aldimobile\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALSO Actebis\" f=\"ALSOActebis.xml\"><rule from=\"^http://(?:www\\.)?alsoactebis\\.com/\" to=\"https://www.alsoactebis.com/\"/><exclusion pattern=\"^http://www\\.alsoactebis\\.com/ec/cms3/[0-9]+/ShopStart\\.do\"/></ruleset>", "<ruleset name=\"ALTS.Trade\" f=\"ALTS.Trade.xml\"><securecookie host=\"^\\.alts\\.trade$\" name=\".+\"/><rule from=\"^http://www\\.alts\\.trade/\" to=\"https://alts.trade/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALT Linux.org (untrusted root)\" default_off=\"untrusted root\" f=\"ALT_Linux.org-problematic.xml\"><exclusion pattern=\"^http://packages\\.altlinux\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALT Linux.org (partial)\" f=\"ALT_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A.M. Best Company (partial)\" default_off=\"failed ruleset test\" f=\"AM-Best-Company.xml\"><securecookie host=\"^www3\\.ambest\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ambest\\.com/(CSS|SpryAssets)/\" to=\"https://www3.ambest.com/$1/\"/><rule from=\"^http://(?:www\\.)?ambest\\.com/images/\" to=\"https://www3.ambest.com/simages/\"/><rule from=\"^http://www3\\.ambest\\.com/\" to=\"https://www3.ambest.com/\"/><rule from=\"^http://dev-www3/\" to=\"https://www3.ambest.com/\"/></ruleset>", "<ruleset name=\"AMC TV.com (partial)\" platform=\"mixedcontent\" f=\"AMC.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http://amctv\\.com/\" to=\"https://www.amctv.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMCTheatres\" f=\"AMCTheatres.xml\"><securecookie host=\"^(?:www)?\\.amctheatres\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?amctheatres\\.com/\" to=\"https://www.amctheatres.com/\"/></ruleset>", "<ruleset name=\"AMI.com\" f=\"AMI.com.xml\"><securecookie host=\"^(?:www\\.)?ami\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMMEC.de\" default_off=\"self-signed\" f=\"AMMEC.de.xml\"><securecookie host=\"^ammec\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ammec\\.de/\" to=\"https://ammec.de/\"/></ruleset>", "<ruleset name=\"AMS.org (partial)\" f=\"AMS.org.xml\"><rule from=\"^http://(www\\.)?ams\\.org/(?=animated_favicon1\\.gif|css/|favicon\\.ico|images/)\" to=\"https://$1ams.org/\"/></ruleset>", "<ruleset name=\"AMSl.com\" f=\"AMSl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMetSoc.org (partial)\" f=\"AMetSoc.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ametsoc\\.org/(?!favicon\\.ico|.+(?:css|gif|jpg|png)(?:$|\\?))\"/><exclusion pattern=\"^http://annual\\.ametsoc\\.org/(?!\\d{4}/includes/|cssfiles/|includes/)\"/><exclusion pattern=\"^http://bookstore\\.ametsoc\\.org/(?!(?:cart|user/login)(?:$|\\?)|sites/)\"/><exclusion pattern=\"^http://journals\\.ametsoc\\.org/(?!action/showLogin|favicon\\.ico|na101/home/literatum/publisher/\\w+/journals/|templates/|userimages/)\"/><rule from=\"^http://((?:annual|bookstore|journals|shib|www)\\.)?ametsoc\\.org/\" to=\"https://$1ametsoc.org/\"/></ruleset>", "<ruleset name=\"ANB\" default_off=\"failed ruleset test\" f=\"ANB.xml\"><rule from=\"^http://anb\\.com\\.sa/\" to=\"https://www.anb.com.sa/\"/><rule from=\"^http://(e|ebusiness|onlinebanking|www)\\.anb\\.com\\.sa/\" to=\"https://$1.anb.com.sa/\"/></ruleset>", "<ruleset name=\"ANXBTC.com\" f=\"ANXBTC.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?anxbtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANZ (partial)\" f=\"ANZ.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(businessadvice|social)\\.anz\\.com/\" to=\"https://www.$1.anz.com/\"/><rule from=\"^http://info\\.anz\\.com/\" to=\"https://infos.anz.com/\"/><rule from=\"^http://www\\.nz\\.anz\\.com/\" to=\"https://www.anz.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOE.com (partial)\" f=\"AOE.com.xml\"><rule from=\"^http://(www\\.)?aoe\\.com/(?=$|\\?|en/*(?:$|\\?)|en/press/press-contact\\.html|fileadmin/|typo3conf/|typo3temp/|uploads/)\" to=\"https://$1aoe.com/\"/><rule from=\"^http://cdn1\\.aoe\\.com/\" to=\"https://d1bxvq8g6qmzaf.cloudfront.net/\"/><rule from=\"^http://cdn2\\.aoe\\.com/\" to=\"https://dgpnghoac0a43.cloudfront.net/\"/></ruleset>", "<ruleset name=\"AOK.de\" f=\"AOK.de.xml\"><securecookie host=\"aok\\.de$\" name=\".+\"/><securecookie host=\"aokplus-online\\.de$\" name=\".+\"/><rule from=\"^http://aok\\.de/\" to=\"https://www.aok.de/\"/><rule from=\"^http://www\\.familie\\.aok\\.de/\" to=\"https://familie.aok.de/\"/><rule from=\"^http://www\\.familie\\.(bw|bayern|bremen|hessen|niedersachsen|nordost|nordwest|plus|rh|rps|san)\\.aok\\.de/\" to=\"https://familie.$1.aok.de/\"/><rule from=\"^http://aokplus-online\\.de/\" to=\"https://www.aokplus-online.de/\"/><rule from=\"^http://aok-gesundheitspartner\\.de/\" to=\"https://www.aok-gesundheitspartner.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atwola.com\" f=\"AOL-Advertising.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL (mismatches)\" default_off=\"mismatch\" f=\"AOL-mismatches.xml\"><rule from=\"^http://(?:www\\.)?blogsmithmedia\\.com/corp\\.aol\\.com/media/([\\w\\-\\.]+)\\.css(\\?v=\\d)?$\" to=\"https://www.blogsmithmedia.com/corp.aol.com/media/$1.css$2\"/><rule from=\"^http://(?:www\\.)?blogsmithmedia\\.com/translogic\\.aolautos\\.com/media/\" to=\"https://translogic.aolautos.com/media/\"/><rule from=\"^http://an\\.tacoda\\.net/\" to=\"https://an.tacoda.net/\"/></ruleset>", "<ruleset name=\"AOL.co.uk (partial)\" f=\"AOL.co.uk.xml\"><exclusion pattern=\"^http://uktools\\.aol\\.co\\.uk/(?!media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL.com (partial)\" f=\"AOL.xml\"><exclusion pattern=\"^http://my\\.screenname\\.aol\\.com/_cqr/logout/\"/><securecookie host=\"^(?:dev\\.sandbox\\.autos|new)\\.aol\\.com$\" name=\".\"/><rule from=\"^http://a(s|t)\\.on\\.aol\\.com/\" to=\"https://$1.on.aol.com/\"/><rule from=\"^http://support\\.on\\.aol\\.com/\" to=\"https://support.aolonnetwork.com/\"/><rule from=\"^http://expapi\\.oscar\\.aol\\.com/\" to=\"https://api.oscar.aol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL CDN.com (mismatched)\" default_off=\"mismatched\" f=\"AOL_CDN.com-problematic.xml\"><rule from=\"^http://(?:vivad\\.)?aolcdn\\.com/\" to=\"https://www.aolcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL CDN.com\" f=\"AOL_CDN.com.xml\"><exclusion pattern=\"^http://o\\.aolcdn\\.com/(?:hss/storage(?!/adam/|/midas/)|mars|myfeeds|portaleu|winamp/dp)/\"/><rule from=\"^http://o3?\\.aolcdn\\.com/\" to=\"https://s.aolcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL On Network.com (partial)\" f=\"AOL_On_Network.com.xml\"><securecookie host=\"^console\\.aolonnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL Platforms.com\" f=\"AOL_Platforms.com.xml\"><rule from=\"^http://aolplatforms\\.com/\" to=\"https://www.aolplatforms.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOptix\" default_off=\"mismatch, self-signed\" f=\"AOptix.xml\"><rule from=\"^http://(?:www\\.)?aoptix\\.com(?::7081)?/\" to=\"https://www.aoptix.com/\"/></ruleset>", "<ruleset name=\"APA.org (partial)\" platform=\"mixedcontent\" f=\"APA.org.xml\"><rule from=\"^http://my\\.apa\\.org/\" to=\"https://my.apa.org/\"/><securecookie host=\"^my\\.apa\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"APAN.net (partial)\" f=\"APAN.net.xml\"><securecookie host=\"^(?:master\\.|www\\.)?apan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APAN.org (partial)\" f=\"APAN.org.xml\"><securecookie host=\"^(?:\\w+\\.)?apan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APC Magazine\" default_off=\"connection refused\" f=\"APC-Magazine.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?apcmag\\.com/\" to=\"https://apcmag.com/\"/></ruleset>", "<ruleset name=\"API Analytics.com\" f=\"API_Analytics.com.xml\"><securecookie host=\"^\\.apianalytics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APM.com\" f=\"APM.com.xml\"><securecookie host=\"^(?:myapm|www)\\.apm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APN News & Media (partial)\" default_off=\"failed ruleset test\" f=\"APN_News_and_Media.xml.xml\"><rule from=\"^http://media2\\.apnonline\\.com\\.au/\" to=\"https://d159yll7hxyh2o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"APO Box.com\" f=\"APO_Box.com.xml\"><securecookie host=\"^\\.apobox\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?apobox\\.com/\" to=\"https://$1apobox.com/\"/><rule from=\"^http://support\\.apobox\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://apobox.zendesk.com/\"/></ruleset>", "<ruleset name=\"APS Jobs.gov.au\" f=\"APSJobs.xml\"><rule from=\"^http://apsjobs\\.gov\\.au/\" to=\"https://www.apsjobs.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AP Schedule.com\" f=\"AP_Schedule.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AR15.com\" f=\"AR15.com.xml\"><securecookie host=\"^\\.ar15\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ARIN.net (partial)\" f=\"ARIN.net.xml\"><securecookie host=\"^(?:updown-pilot\\.|w*\\.)?arin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ARM.com (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"ARM.com-problematic.xml\"><securecookie host=\"^(?:i|malidevelope)r\\.arm\\.com$\" name=\".+\"/><rule from=\"^http://(i|malidevelope)r\\.arm\\.com/\" to=\"https://$1r.arm.com/\"/></ruleset>", "<ruleset name=\"ARM (partial)\" f=\"ARM.xml\"><securecookie host=\"^(?:cmsis|(?:apps\\.)?community(?:-uat)?|login)\\.arm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?arm\\.com/(?=css/|images/)\" to=\"https://cmsis.arm.com/\"/><rule from=\"^http://(cmsis|(?:apps\\.)?community(?:-uat)?|login|silver)\\.arm\\.com/\" to=\"https://$1.arm.com/\"/></ruleset>", "<ruleset name=\"ARPNetworks.com (partial)\" f=\"ARPNetworks.com.xml\"><securecookie host=\"^(?:.*\\.)?arpnetworks\\.com$\" name=\".*\"/><rule from=\"^http://(portal\\.|www\\.)?arpnetworks\\.com/\" to=\"https://$1arpnetworks.com/\"/><rule from=\"^http://support\\.arpnetworks\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-2.tenderapp.com/$1/\"/></ruleset>", "<ruleset name=\"ARRL (partial)\" f=\"ARRL.xml\"><rule from=\"^http://(www\\.)?arrl\\.org/(?=css/|favicon\\.ico|img/|shop(?:$|[?/]))\" to=\"https://$1arrl.org/\"/></ruleset>", "<ruleset name=\"AS112.net\" f=\"AS112.net.xml\"><rule from=\"^http://as112\\.net/\" to=\"https://www.as112.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASACP.org\" f=\"ASACP.org.xml\"><securecookie host=\"^www\\.asacp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Sports Anti-Doping Authority\" default_off=\"failed ruleset test\" f=\"ASADA.xml\"><rule from=\"^http://(?:www\\.)?asada\\.gov\\.au/\" to=\"https://www.asada.gov.au/\"/></ruleset>", "<ruleset name=\"ASC Trust.com\" f=\"ASC_Trust.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASDA (partial)\" f=\"ASDA.xml\"><securecookie host=\"^.+\\.asda\\.com$\" name=\".+\"/><rule from=\"^http://credit-card\\.asda\\.com/$\" to=\"https://apply.creation.co.uk/apply/index.html?brandCode=asda_colleague\"/><rule from=\"^http://credit-card\\.asda\\.com/(?!$)\" to=\"https://apply.creation.co.uk/\"/><rule from=\"^http://(cards|(?:ipadkiosk\\.)?direct|email|i(?:\\.|\\d-)groceries|grocieries-qa2|money|online-account-manager|pulse|tradein)\\.asda\\.com/\" to=\"https://$1.asda.com/\"/><rule from=\"^http://omniture\\.groceries\\.asda\\.com/\" to=\"https://groceries.asda.com.d2.sc.omtrdc.net/\"/><rule from=\"^http://survey\\.asda\\.com/(?:\\?.*)?$\" to=\"https://www.emailvision.com/\"/></ruleset>", "<ruleset name=\"ASIC\" f=\"ASIC.xml\"><rule from=\"^http://(?:www\\.)?asic\\.gov\\.au/\" to=\"https://www.asic.gov.au/\"/><rule from=\"^http://(?:www\\.)?insolvencynotices\\.asic\\.gov\\.au/\" to=\"https://insolvencynotices.asic.gov.au/\"/></ruleset>", "<ruleset name=\"ASI robots.com\" f=\"ASI_robots.com.xml\"><securecookie host=\"^\\.asirobots\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASL19.org\" f=\"ASL19.org.xml\"><securecookie host=\"^\\.asl19\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASN Bank.nl (problematic)\" default_off=\"mismatched\" f=\"ASN_Bank.nl-problematic.xml\"><securecookie host=\"^nieuws\\.asnbank\\.nl$\" name=\".+\"/><rule from=\"^http://nieuws\\.asnbank\\.nl/\" to=\"https://nieuws.asnbank.nl/\"/></ruleset>", "<ruleset name=\"ASN Bank.nl (partial)\" f=\"ASN_Bank.nl.xml\"><securecookie host=\"^\\.www\\.asnbank\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?asnbank\\.nl/\" to=\"https://www.asnbank.nl/\"/></ruleset>", "<ruleset name=\"ASP.NET (partial)\" f=\"ASP.NET.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASPNETcdn.com\" f=\"ASPNETcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASPPlayground.NET\" f=\"ASPPlayground.NET.xml\"><securecookie host=\"^www\\.aspplayground\\.net$\" name=\".+\"/><rule from=\"^http://aspplayground\\.net/\" to=\"https://www.aspplayground.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASUS.com (false MCB)\" platform=\"mixedcontent\" f=\"ASUS.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASUS.com (partial)\" f=\"ASUS.xml\"><exclusion pattern=\"^http://rog\\.asus\\.com/+(?!wp-content/)\"/><exclusion pattern=\"^http://www\\.asus\\.com/zenbook(?:$|[?/])\"/><securecookie host=\"^\\.asus\\.com$\" name=\"^frontend$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autodiscover\\.asus\\.com/.*\" to=\"https://mymail.asus.com/owa/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATBank\" default_off=\"failed ruleset test\" f=\"ATBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATG Web Commerce\" f=\"ATG_Web_Commerce.xml\"><securecookie host=\"^[gr]s\\.instantservice\\.com$\" name=\".+\"/><rule from=\"^http://(g|r)s\\.instantservice\\.com/\" to=\"https://$1s.instantservice.com/\"/></ruleset>", "<ruleset name=\"ATNAME\" default_off=\"mismatched\" f=\"ATNAME.xml\"><rule from=\"^http://(?:www\\.)?atname\\.ru/\" to=\"https://atname.ru/\"/></ruleset>", "<ruleset name=\"ATS.aq (partial)\" f=\"ATS.aq.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATV.hu (partial)\" default_off=\"failed ruleset test\" f=\"ATV.hu.xml\"><rule from=\"^http://static\\.atv\\.hu/\" to=\"https://static.atv.hu/\"/></ruleset>", "<ruleset name=\"AT Internet Solutions\" f=\"AT_Internet_Solutions.xml\"><securecookie host=\"^www\\.atinternet-solutions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atinternet-solutions\\.com/\" to=\"https://www.atinternet-solutions.com/\"/></ruleset>", "<ruleset name=\"AT&T (partial)\" f=\"ATandT.xml\"><securecookie host=\"^.*\\.att\\.com$\" name=\".+\"/><rule from=\"^http://((?:connect|www\\.corp|cprodmasx|developer|www\\.e-access|forums|localization|networkingexchangeblog|rewardcenter|smb|trial\\.uc|ufix|uversecentral\\d|webhosting|www\\.wireless|www)\\.)?att\\.com/\" to=\"https://$1att.com/\"/><rule from=\"^http://(?:www\\.)?business\\.att\\.com/(?:enterprise/)?(?:\\?.*)?$\" to=\"https://www.att.com/gen/landing-pages?pid=9214\"/><rule from=\"^http://wireless\\.att\\.com/($|\\?)\" to=\"https://www.att.com/shop/wireless/$1\"/><rule from=\"^http://(\\d)\\.ecom\\.attccc\\.com/\" to=\"https://$1.ecom.attccc.com/\"/></ruleset>", "<ruleset name=\"ATbar (partial)\" f=\"ATbar.xml\"><rule from=\"^http://ssl\\.atbar\\.org/\" to=\"https://ssl.atbar.org/\"/></ruleset>", "<ruleset name=\"aTech.io\" f=\"ATech.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?atech\\.io/\" to=\"https://atechmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aTech Media.com (false MCB)\" platform=\"mixedcontent\" f=\"ATech_Media.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aTech Media.com (partial)\" f=\"ATech_Media.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.atechmedia\\.com/\" to=\"https://atechmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATrpms.net\" default_off=\"self-signed\" f=\"ATrpms.net.xml\"><rule from=\"^http://(?:www\\.)?atrpms\\.net/\" to=\"https://atrpms.net/\"/></ruleset>", "<ruleset name=\"AV-Comparatives\" default_off=\"mismatched, self-signed\" f=\"AV-Comparatives.xml\"><securecookie host=\"^av-comparatives\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?av-comparatives\\.org/\" to=\"https://av-comparatives.org/\"/></ruleset>", "<ruleset name=\"AVG.com (partial)\" f=\"AVG.com.xml\"><securecookie host=\"^(?:\\w+\\.)?inst\\.avg\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?inst\\.avg\\.com/\" to=\"https://$1inst.avg.com/\"/></ruleset>", "<ruleset name=\"AVM.de (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"AVM.de-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AVON.cz\" f=\"AVON.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWEmpire.com (expired)\" default_off=\"expired\" f=\"AWEmpire.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWSInsider.net\" f=\"AWSInsider.net.xml\"><securecookie host=\"^awsinsider\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWS Trust.com\" f=\"AWS_Trust.com.xml\"><rule from=\"^http://awstrust\\.com/([^?]*).*\" to=\"https://www.amazontrust.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWcloud.net\" f=\"AWcloud.net.xml\"><rule from=\"^http://(projecta|stats)\\.awcloud\\.net/\" to=\"https://$1.awcloud.net/\"/></ruleset>", "<ruleset name=\"AWeber Communications (partial)\" f=\"AWeber-Communications.xml\"><securecookie host=\"^(?:forms|help|labs)\\.aweber\\.com$\" name=\".+\"/><rule from=\"^http://(forms|help|labs)\\.aweber\\.com/\" to=\"https://$1.aweber.com/\"/></ruleset>", "<ruleset name=\"AWeber (partial)\" f=\"AWeber.xml\"><exclusion pattern=\"^http://(?:www\\.)?aweber\\.com/(?!assets/|banners/|blog(?:$|[?/])|(?:(?:contact-us|login|order|signup)\\.htm)(?:$|\\?)|favicon\\.ico|images/|img/)\"/><securecookie host=\"^(?:\\.?forms|help|labs)\\.aweber\\.com$\" name=\".+\"/><securecookie host=\".*\\.aweber-static\\.com$\" name=\".+\"/><rule from=\"^http://status\\.aweber\\.com/\" to=\"https://aweber.statuspage.io/\"/><rule from=\"^http://((?:analytics|blog|engineering|forms|help|labs|www)\\.)?aweber\\.com/\" to=\"https://$1aweber.com/\"/><rule from=\"^http://cdn([1-5])\\.aweber-static\\.com/\" to=\"https://cdn$1.weber-static.com/\"/><rule from=\"^http://hostedimages\\.aweber-static\\.com/\" to=\"https://s3.amazonaws.com/hostedimages.aweber-static.com/\"/></ruleset>", "<ruleset name=\"AXA (partial)\" default_off=\"failed ruleset test\" f=\"AXA.xml\"><securecookie host=\"^creativegallery\\.axa\\.com$\" name=\".+\"/><rule from=\"^http://creativegallery\\.axa\\.com/\" to=\"https://creativegallery.axa.com/\"/></ruleset>", "<ruleset name=\"AXA Winterthur\" f=\"AXA_Winterthur.xml\"><rule from=\"^http://axa-winterthur\\.ch/\" to=\"https://www.axa-winterthur.ch/\"/><rule from=\"^http://([^/:@]+)?\\.axa-winterthur\\.ch/\" to=\"https://$1.axa-winterthur.ch/\"/></ruleset>", "<ruleset name=\"AZHCA.org\" f=\"AZHCA.org.xml\"><securecookie host=\"^(?:www)?\\.azhca\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?azhca\\.org/\" to=\"https://www.azhca.org/\"/></ruleset>", "<ruleset name=\"A 1000 Words.com\" default_off=\"failed ruleset test\" f=\"A_1000_Words.com.xml\"><securecookie host=\"^\\.a1000words\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?a1000words\\.com/\" to=\"https://www.a1000words.com/\"/></ruleset>", "<ruleset name=\"A Bigger Society.com\" default_off=\"522\" f=\"A_Bigger_Society.com.xml\"><securecookie host=\"^(?:w*\\.)?abiggersociety\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A+ Flint River Ranch\" f=\"A_Plus_Flint_River_Ranch.xml\"><securecookie host=\"^\\.www\\.aplus-flint-river-ranch\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?aplus-flint-river-ranch\\.com/\" to=\"https://$1aplus-flint-river-ranch.com/\"/><rule from=\"^http://cats\\.aplus-flint-river-ranch\\.com/(?:\\?.*)?$\" to=\"https://www.aplus-flint-river-ranch.com/index-cat.php?\"/></ruleset>", "<ruleset name=\"A Voice for Men.com\" default_off=\"failed ruleset test\" f=\"A_Voice_for_Men.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A Weird Imagination.net\" f=\"A_Weird_Imagination.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAAI.org\" f=\"Aaai.org.xml\"><rule from=\"^http://aaai\\.org/\" to=\"https://www.aaai.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aalborg University (partial)\" f=\"Aalborg_University.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aalto.fi (partial)\" f=\"Aalto.fi.xml\"><exclusion pattern=\"^http://artcoordination\\.aalto\\.fi/(?!fi/midcom-serveattachmentguid-)\"/><securecookie host=\"^\\.aalto\\.fi$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mathsys\\.aalto\\.fi/\" to=\"https://math.aalto.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aan.sh\" f=\"Aan.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aarhus.dk\" f=\"Aarhus.dk.xml\"><securecookie host=\"^www\\.aarhus\\.dk$\" name=\".+\"/><rule from=\"^http://(www\\.)?aarhus\\.dk/\" to=\"https://www.aarhus.dk/\"/></ruleset>", "<ruleset name=\"Aaron Brothers\" f=\"Aaron_Brothers.xml\"><securecookie host=\"^(?:w*\\.)?aaronbrotherscircular.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaron D Campbell.com\" f=\"Aaron_D_Campbell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaron Lindsay.com\" default_off=\"expired\" f=\"Aaron_Lindsay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaronparecki.com\" f=\"Aaronparecki.com.xml\"><rule from=\"^http://aaronparecki\\.com/\" to=\"https://aaronparecki.com/\"/></ruleset>", "<ruleset name=\"Aart de Vos (partial)\" f=\"Aart_de_Vos.xml\"><rule from=\"^http://(www\\.)?aartdevos\\.dk/(_css/|file/|_grafix/|konto(?:$|\\?|/))\" to=\"https://$1aartdevos.dk/$2\"/></ruleset>", "<ruleset name=\"aaspring.com\" f=\"Aaspring.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaulan.dk\" f=\"Aaulan.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abacus.com (partial)\" f=\"Abacus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abbo-shop.ch\" default_off=\"redirect to http\" f=\"Abbo-Shop.xml\"><securecookie host=\"^(?:.*\\.)?abbo-shop\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abbott Laboratories\" default_off=\"failed ruleset test\" f=\"Abbott-Laboratories.xml\"><securecookie host=\"^(?:www\\.)?abbott\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abc.xyz\" f=\"Abc.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbcLinuxu.cz\" f=\"AbcLinuxu.cz.xml\"><securecookie host=\"^(?:w*\\.)?abclinuxu\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abdn.ac.uk (partial)\" f=\"Abdn.ac.uk.xml\"><rule from=\"^http://(?:www\\.)?abdn\\.ac\\.uk/\" to=\"https://www.abdn.ac.uk/\"/></ruleset>", "<ruleset name=\"Abdussamad.com\" f=\"Abdussamad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbeBooks.co.uk (partial)\" f=\"AbeBooks.co.uk.xml\"><exclusion pattern=\"^http://www\\.abebooks\\.co\\.uk/(?!(?:affiliate-programme|bestbuys|customer-support|sell-books)/?(?:$|\\?)|docs/|favicon\\.ico|images/|servlet/(?:CSActionRequest|LoginDirector|SignOn|SignOnPL)(?:$|\\?))\"/><rule from=\"^http://abebooks\\.co\\.uk/\" to=\"https://www.abebooks.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbeBooks.com (partial)\" f=\"AbeBooks.xml\"><exclusion pattern=\"^http://www\\.abebooks\\.com/(?!(?:bestbuys|careers|customer-support|help)/?(?:$|\\?)|docs/|favicon\\.ico|images/|servlet/(?:CSActionRequest|LoginDirector|SignOn|SignOnPL)(?:$|\\?))\"/><rule from=\"^http://abebooks\\.com/\" to=\"https://www.abebooks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbenteuerLand.at (partial)\" default_off=\"failed ruleset test\" f=\"AbenteuerLand.at.xml\"><rule from=\"^http://psara\\.abenteuerland\\.at/\" to=\"https://psara.abenteuerland.at/\"/></ruleset>", "<ruleset name=\"Aberdeen City.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Aberdeen_City.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberdeen City.gov.uk (partial)\" f=\"Aberdeen_City.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberdeenshire.gov.uk (partial)\" f=\"Aberdeenshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:host1\\.)?aberdeenshire\\.gov\\.uk/\" to=\"https://www.aberdeenshire.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberystwyth University (mismatches)\" default_off=\"expired, self-signed\" f=\"Aberystwyth-University-mismatches.xml\"><securecookie host=\"^connect\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://connect\\.aber\\.ac\\.uk/\" to=\"https://connect.aber.ac.uk/\"/></ruleset>", "<ruleset name=\"Aberystwyth University (partial)\" f=\"Aberystwyth-University.xml\"><exclusion pattern=\"^http://cadair\\.aber\\.ac\\.uk/(?!dspace/ldap-login)\"/><exclusion pattern=\"^http://(?:connect|www\\.inf|jump|nexus|users)\\.\"/><exclusion pattern=\"^http://primo\\.aber\\.ac\\.uk(?:80)?/primo_library/libweb/\"/><securecookie host=\"^[^cp][\\w\\.]+\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:beta\\.)?aber\\.ac\\.uk/\" to=\"https://www.aber.ac.uk/\"/><rule from=\"^http://([\\w\\.]+)\\.aber\\.ac\\.uk/\" to=\"https://$1.aber.ac.uk/\"/></ruleset>", "<ruleset name=\"abftracker.com\" f=\"Abftracker.com.xml\"><rule from=\"^http://affiliate\\.abftracker\\.com/\" to=\"https://affiliate.abftracker.com/\"/></ruleset>", "<ruleset name=\"Abhayagiri Buddhist Monastery\" f=\"Abhayagiri.org.xml\"><securecookie host=\"^www\\.abhayagiri\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abila.com\" platform=\"mixedcontent\" f=\"Abila.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abiliba\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Abiliba.xml\"><securecookie host=\"^secure\\.abiliba\\.net$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?abiliba\\.net/\" to=\"https://secure.abiliba.net/\"/></ruleset>", "<ruleset name=\"Abine.com\" f=\"Abine.xml\"><securecookie host=\"^(?:w*\\.)?abine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbleGamers\" default_off=\"failed ruleset test\" f=\"AbleGamers.xml\"><securecookie host=\"^www\\.ablegamers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abma.de\" default_off=\"self-signed\" f=\"Abma.de.xml\"><rule from=\"^http://(?:ssl|www)\\.abma\\.de/\" to=\"https://abma.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abosgratis.de\" f=\"Abosgratis.de.xml\"><rule from=\"^http://(?:www\\.)?abosgratis\\.de/\" to=\"https://www.abosgratis.de/\"/></ruleset>", "<ruleset name=\"About Ads (partial)\" f=\"About-Ads.xml\"><exclusion pattern=\"^http://(?:www\\.)?aboutads\\.info/(?:choices)/\"/><rule from=\"^http://(?:www\\.)?aboutads\\.info/\" to=\"https://www.aboutads.info/\"/></ruleset>", "<ruleset name=\"AboutMe\" f=\"AboutMe.xml\"><securecookie host=\"^(?:.*\\.)?about.me$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AboutUs (problematic)\" default_off=\"expired\" f=\"AboutUs-problematic.xml\"><rule from=\"^http://(www\\.)?aboutus\\.org/(favicon\\.ico|Special/)\" to=\"https://$1aboutus.org/$2\"/></ruleset>", "<ruleset name=\"AboutUs (partial)\" platform=\"mixedcontent\" f=\"AboutUs.xml\"><rule from=\"^http://static\\.aboutus\\.org/\" to=\"https://s3.amazonaws.com/au-site-static-assets/\"/></ruleset>", "<ruleset name=\"About My Vote.co.uk\" f=\"About_My_Vote.co.uk.xml\"><securecookie host=\"^www\\.aboutmyvote\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://aboutmyvote\\.co\\.uk/\" to=\"https://www.aboutmyvote.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"About the Data.com\" f=\"About_the_Data.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Above.com (partial)\" f=\"Above.com.xml\"><securecookie host=\"^(?:www\\.)?above\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Absolute Software\" f=\"Absolute.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abuse.ch\" f=\"Abuse.ch.xml\"><securecookie host=\".*\\.abuse\\.ch$\" name=\".+\"/><rule from=\"^http://(sslbl|spyeyetracker|www|zeustracker)\\.abuse\\.ch/\" to=\"https://$1.abuse.ch/\"/></ruleset>", "<ruleset name=\"abusix.com\" f=\"Abusix.com.xml\"><rule from=\"^http://((?:abusehq|blackholemx|leakdb|spamfeedme|www)\\.)?abusix\\.com/\" to=\"https://$1abusix.com/\"/></ruleset>", "<ruleset name=\"abysmal.nl\" f=\"Abysmal.nl.xml\"><securecookie host=\"^\\.abysmal.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Academia Press\" default_off=\"expired, self-signed\" f=\"Academia-Press.xml\"><securecookie host=\"^(?:.*\\.)?academiapress\\.be$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?academiapress\\.be/\" to=\"https://www.academiapress.be/\"/></ruleset>", "<ruleset name=\"Academia-assets.com\" f=\"Academia-assets.com.xml\"><rule from=\"^http://a\\.academia-assets\\.com/\" to=\"https://a.academia-assets.com/\"/></ruleset>", "<ruleset name=\"Academia.edu (partial)\" f=\"Academia.edu.xml\"><rule from=\"^http://(assets|images|photos)\\.academia\\.edu/\" to=\"https://s3.amazonaws.com/academia.edu.$1/\"/><rule from=\"^http://(independent\\.|www\\.)?academia\\.edu/\" to=\"https://$1academia.edu/\"/></ruleset>", "<ruleset name=\"academics.de\" f=\"Academics.de.xml\"><securecookie host=\"^(?:www)?\\.academics\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Academy of Model Aeronautics (partial)\" f=\"Academy-of-Model-Aeronautics.xml\"><securecookie host=\"^(?:www\\.)?modelaircraft\\.org$\" name=\".*\"/><rule from=\"^http://modelaircraft\\.org/\" to=\"https://modelaircraft.org/\"/><rule from=\"^http://www\\.modelaircraft\\.org/(advertising/|(?:clubsearch|hobbyshopsearch|joinrenew|ping|shopama/dept)\\.ashx|(?:fil|imag|templat|UserFil)es/|forums/)\" to=\"https://www.modelaircraft.org/$1\"/></ruleset>", "<ruleset name=\"Acalog\" f=\"Acalog.xml\"><securecookie host=\".+\\.acalogadmin\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.acalogadmin\\.com/\" to=\"https://$1.acalogadmin.com/\"/></ruleset>", "<ruleset name=\"Accela Communications (partial)\" default_off=\"failed ruleset test\" f=\"Accela-Communications.xml\"><securecookie host=\"^.*\\.accelacomm\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?accelaworks\\.com$\" name=\".*\"/><rule from=\"^http://accelacomm\\.com/\" to=\"https://www.accelacomm.com/\"/><rule from=\"^http://(reg|www)\\.accelacomm\\.com/\" to=\"https://$1.accelacomm.com/\"/><rule from=\"^http://(www\\.)?accelaworks\\.com/\" to=\"https://$1accelaworks.com/\"/></ruleset>", "<ruleset name=\"Accellion\" platform=\"mixedcontent\" f=\"Accellion.xml\"><securecookie host=\"^(?:.*\\.)accellion\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accenture\" f=\"Accenture.com.xml\"><rule from=\"^http://beacon4\\.abba\\.accenture\\.com/\" to=\"https://beacon4.abba.accenture.com/\"/></ruleset>", "<ruleset name=\"Acceptiva.com (partial)\" f=\"Acceptiva.com.xml\"><rule from=\"^http://secure\\.acceptiva\\.com/\" to=\"https://secure.acceptiva.com/\"/></ruleset>", "<ruleset name=\"access-kaiseki-tools.com\" f=\"Access-kaiseki-tools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessGuardian.com\" f=\"AccessGuardian.com.xml\"><securecookie host=\"^(?:www\\.)?accessguardian\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessLabs\" default_off=\"failed ruleset test\" f=\"AccessLabs.xml\"><securecookie host=\"^(?:www\\.)?accesslabs\\.(?:net|org)$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessNow.org\" f=\"AccessNow.xml\"><securecookie host=\".*\\.accessnow\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessPress Themes.com\" f=\"AccessPress_Themes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessPrivacy.ca\" f=\"AccessPrivacy.ca.xml\"><securecookie host=\"^(?:w*\\.)?accessprivacy\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Access Office Products\" default_off=\"failed ruleset test\" f=\"Access_Office_Products.xml\"><securecookie host=\"^\\.accessofficeproducts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Access Privacy.com\" f=\"Access_Privacy.com.xml\"><securecookie host=\"^(?:w*\\.)?accessprivacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accessibility.nl\" f=\"AccessibilityNL.xml\"><rule from=\"^http://(?:www\\.)?accessibility\\.nl/\" to=\"https://www.accessibility.nl/\"/></ruleset>", "<ruleset name=\"Accessible Information Management (gunadiframework.com)\" f=\"Accessible-Information-Management.xml\"><securecookie host=\"^(?:(?:[a-zA-Z0-9\\-]*)\\.)?gunadiframework.com$\" name=\".+\"/><rule from=\"^http://gunadiframework\\.com/\" to=\"https://gunadiframework.com/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.gunadiframework\\.com/\" to=\"https://$1.gunadiframework.com/\"/></ruleset>", "<ruleset name=\"Accessorize (partial)\" f=\"Accessorize.xml\"><rule from=\"^http://uk\\.accessorize\\.com/(medias/|monsoon/|registerSession\\.gif)\" to=\"https://uk.accessorize.com/$1\"/></ruleset>", "<ruleset name=\"Access to Justice.gov.au\" default_off=\"expired\" f=\"AccesstoJustice.xml\"><rule from=\"^http://accesstojustice\\.gov\\.au/\" to=\"https://www.accesstojustice.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"accesstrade.net (partial)\" f=\"Accesstrade.net.xml\"><securecookie host=\"^member\\.accesstrade\\.net$\" name=\".+\"/><rule from=\"^http://member\\.accesstrade\\.net/\" to=\"https://member.accesstrade.net/\"/></ruleset>", "<ruleset name=\"Accordance Bible.com (partial)\" f=\"Accordance_Bible.com.xml\"><securecookie host=\"^\\.accordancebible\\.com$\" name=\"^(?:__utm\\w+|newsession_id)$\"/><rule from=\"^http://(www\\.)?accordancebible\\.com/(?=archive/|(?:custom_)?content/|errors/|files/|(?:forums|site/thirdparty|store/(?:checkout_info|gift_card))(?:$|[?/])|thirdparty/)\" to=\"https://$1accordancebible.com/\"/></ruleset>", "<ruleset name=\"account3000.com\" f=\"Account3000.com.xml\"><securecookie host=\"^(?:www\\.)?account3000\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccountKiller.com\" f=\"AccountKiller.com.xml\"><securecookie host=\"^www\\.accountkiller\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccountSupport.com\" f=\"AccountSupport.com.xml\"><securecookie host=\"^\\.accountsupport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Account Chooser\" f=\"Account_Chooser.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Account Online.com\" f=\"Account_Online.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.accountonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?accountonline\\.com/(\\?.*)?$\" to=\"https://creditcards.citi.com/$1\"/><rule from=\"^http://(?:www\\.)?accountonline\\.com/\" to=\"https://www.accountonline.com/\"/></ruleset>", "<ruleset name=\"accountservergroup.com\" f=\"Accountservergroup.com.xml\"><rule from=\"^http://(?!www\\.)([\\w-]+)\\.accountservergroup\\.com/\" to=\"https://$1accountservergroup.com/\"/></ruleset>", "<ruleset name=\"Accredible.com\" f=\"Accredible.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccuWeather (partial)\" f=\"AccuWeather.xml\"><securecookie host=\"^enterpriseportal\\.accuweather\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (problematic)\" default_off=\"connection refused\" f=\"Accuen-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (partial)\" default_off=\"connection dropped\" f=\"Accuen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuvant.com\" f=\"Accuvant.com.xml\"><securecookie host=\"^(?:www)?\\.accuvant\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?accuvant\\.com/\" to=\"https://$1accuvant.com/\"/><rule from=\"^http://blog\\.accuvant\\.com/\" to=\"https://blog.accuvant.com/\"/><rule from=\"^http://files\\.accuvant\\.com/\" to=\"https://accuvantstorage.blob.core.windows.net/\"/></ruleset>", "<ruleset name=\"ace-analyzer.com\" f=\"Ace-analyzer.com.xml\"><securecookie host=\"^(?:www\\.)?ace-analyzer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ace Hotel.com (partial)\" f=\"Ace_Hotel.com.xml\"><exclusion pattern=\"^http://shop\\.acehotel\\.com/+(?!media/)\"/><securecookie host=\"^www\\.acehotel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acenet (partial)\" f=\"Acenet.xml\"><exclusion pattern=\"http://billing\\.ace-host\\.net/(?:announcements|index)\\.php$\"/><exclusion pattern=\"http://(?:demos|testimonials)\\.ace-host\\.net/\"/><securecookie host=\"^(?:.*\\.)?ace-host\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?acenet-inc\\.net$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?ace-host\\.net/\" to=\"https://$1ace-host.net/\"/><rule from=\"^http://(www\\.)?ace-net\\.net/\" to=\"https://$1ace-host.net/\"/><rule from=\"^http://(billing|esupport|warthog)\\.acenet-inc\\.net/\" to=\"https://$1.acenet-inc.net/\"/></ruleset>", "<ruleset name=\"acessoseguro.net\" f=\"Acessoseguro.net.xml\"><securecookie host=\".+\\.acessoseguro\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.acessoseguro\\.net/\" to=\"https://$1.acessoseguro.net/\"/></ruleset>", "<ruleset name=\"Achelem.org (partial)\" default_off=\"self-signed\" f=\"Achelem.org.xml\"><securecookie host=\"^mail\\.achelem\\.org$\" name=\".+\"/><rule from=\"^http://mail\\.achelem\\.org/\" to=\"https://mail.achelem.org/\"/></ruleset>", "<ruleset name=\"Acik Akademi.com\" f=\"Acik_Akademi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://acikakademi\\.com/\" to=\"https://www.acikakademi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acorns.com (partial)\" f=\"Acorns.com.xml\"><rule from=\"^http://(?:www\\.)?acorns\\.com/\" to=\"https://www.acorns.com/\"/></ruleset>", "<ruleset name=\"AcoustID.org\" f=\"AcoustID.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acoustics.org\" f=\"Acoustics.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acquia\" f=\"Acquia.xml\"><securecookie host=\"^.*\\.acquia\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|docs|insight|library|network|showcase|www)\\.)?acquia\\.com/\" to=\"https://$1acquia.com/\"/></ruleset>", "<ruleset name=\"Acro Media (partial)\" f=\"Acro-Media.xml\"><rule from=\"^http://(?:www\\.)?acromediainc\\.com/(acronet|careers|co(?:ntact|ntent-management|nversion-calculator)|drupal-development|news(?:/|letter/|-articles)|ongoing-(?:services|marketing)|privacy-policy|process|sites/|strategy-planning|team|uploads/)\" to=\"https://www.acromediainc.com/$1\"/></ruleset>", "<ruleset name=\"Acrobat.com\" f=\"Acrobat.com.xml\"><rule from=\"^http://success\\.acrobat\\.com/+\" to=\"https://success.adobe.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acrobat Users.com\" f=\"Acrobat_Users.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"acrocomcontent.com\" f=\"Acrocomcontent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acronis.com (partial)\" f=\"Acronis.com.xml\"><exclusion pattern=\"^http://www\\.acronis\\.com/(?!modules/|sites/|(?:\\w\\w-\\w\\w/)?(?:my|support)(?:$|[?/]))\"/><securecookie host=\"^\\.forum\\.acronis\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?acronis\\.com/\" to=\"https://www.acronis.com/\"/><rule from=\"^http://(forum|i4|kb)\\.acronis\\.com/\" to=\"https://$1.acronis.com/\"/></ruleset>", "<ruleset name=\"Acronymfinder.com\" f=\"Acronymfinder.com.xml\"><securecookie host=\"^(www\\.)?acronymfinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acrylic Wifi.com\" f=\"Acrylic_Wifi.com.xml\"><securecookie host=\"^\\.(?:www\\.)?acrylicwifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Act-On Software (partial)\" f=\"Act-On-Software.xml\"><securecookie host=\"^(?:.*\\.)?actonsoftware\\.com$\" name=\".+\"/><rule from=\"^http://(ci\\d*\\.|mktg\\.|www\\.)?actonsoftware\\.com/\" to=\"https://$1actonsoftware.com/\"/></ruleset>", "<ruleset name=\"Act.demandprogress.org\" f=\"Act.demandprogress.org.xml\"><rule from=\"^http://act\\.demandprogress\\.org/\" to=\"https://act.demandprogress.org/\"/></ruleset>", "<ruleset name=\"ActBlue (partial)\" f=\"ActBlue.xml\"><securecookie host=\"^\\.actblue\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.actblue\\.com/\" to=\"https://secure.actblue.com/\"/><rule from=\"^http://(?:www|m)\\.actblue\\.com/\" to=\"https://secure.actblue.com/\"/><rule from=\"^http://i\\.actblue\\.com/\" to=\"https://s3.amazonaws.com/i.actblue.com/\"/></ruleset>", "<ruleset name=\"Actel.com\" f=\"Actel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Action Auto Wreckers\" f=\"Action-Auto-Wreckers.xml\"><securecookie host=\"^www\\.actionautowreckers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?actionsalvage\\.com/\" to=\"https://www.actionautowreckers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ActionKit.com (partial)\" f=\"ActionKit.com.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^\\w+\\.actionkit\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.actionkit\\.com/\" to=\"https://$1.actionkit.com/\"/></ruleset>", "<ruleset name=\"Action Intell\" f=\"Actionable_Intelligence.xml\"><rule from=\"^http://(?:www\\.)?action-intell\\.com/\" to=\"https://www.action-intell.com/\"/></ruleset>", "<ruleset name=\"actionallocator.com\" default_off=\"failed ruleset test\" f=\"Actionallocator.com.xml\"><securecookie host=\"^(?:www)?\\.actionallocator\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?actionallocator\\.com/\" to=\"https://www.actionallocator.com/\"/></ruleset>", "<ruleset name=\"activatejavascript.org\" default_off=\"mismatch\" f=\"Activatejavascript.xml\"><securecookie host=\"^(?:.*\\.)?activatejavascript\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?activatejavascript\\.org/\" to=\"https://activatejavascript.org/\"/></ruleset>", "<ruleset name=\"Active Events (partial)\" f=\"Active-Events.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.+\\.activenetwork\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+)\\.activeevents\\.com/\" to=\"https://$1.activeevents.com/\"/></ruleset>", "<ruleset name=\"active-srv02.de\" f=\"Active-srv02.de.xml\"><securecookie host=\"^\\.active-srv02\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active.com (partial)\" f=\"Active.com.xml\"><securecookie host=\"^(?:(?:community|mobile|myevents|sso|sites|www)\\.)?active\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets-results2|community|m|mobile|myevents|results|rolassets|sites|sso|www)\\.)?active\\.com/\" to=\"https://$1active.com/\"/><rule from=\"^http://schwaggle\\.active\\.com/help/faq/?(?=$|\\?)\" to=\"https://schwaggle.active.com/help/faq\"/><rule from=\"^http://schwaggle\\.active\\.com/content/\" to=\"https://schwaggle.active.com/content/\"/></ruleset>", "<ruleset name=\"ActiveDataX.com (partial)\" f=\"ActiveDataX.com.xml\"><securecookie host=\"^calendar\\.activedatax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ActiveState Software (partial)\" f=\"ActiveState-Software.xml\"><securecookie host=\".*\\.activestate\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|code|store|templates|www)\\.)?activestate\\.com/\" to=\"https://$1activestate.com/\"/></ruleset>", "<ruleset name=\"Active Melody.com (partial)\" f=\"Active_Melody.xml\"><exclusion pattern=\"^http://(?:www\\.)?activemelody\\.com/+(?!assets/|images/)\"/><securecookie host=\"^\\.activemelody\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active Network.com (partial)\" f=\"Active_Network.com.xml\"><exclusion pattern=\"http://(?:www\\.)?activenetwork\\.com/+(?![Aa]ssets/(?!.+\\.css(?:$|\\?))|asset\\d+\\.aspx|favicon\\.ico|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active static.net\" f=\"Active_static.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Activision Blizzard.com (partial)\" f=\"Activision_Blizzard.com.xml\"><rule from=\"^http://investor\\.activisionblizzard\\.com/common/\" to=\"https://investor.shareholder.com/common/\"/></ruleset>", "<ruleset name=\"Acuity Scheduling.com\" f=\"Acuity_Scheduling.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.acuityscheduling\\.com/\" to=\"https://acuityscheduling.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acuity platform.com\" f=\"Acuity_platform.com.xml\"><securecookie host=\"^\\.acuityplatform\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aculab.com (partial)\" f=\"Aculab.com.xml\"><securecookie host=\"^cloud\\.aculab\\.com$\" name=\".+\"/><rule from=\"^http://cloud\\.aculab\\.com/\" to=\"https://cloud.aculab.com/\"/></ruleset>", "<ruleset name=\"Acunetix.com\" f=\"Acunetix.com.xml\"><securecookie host=\"^acunetix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acxiom-online.com\" default_off=\"failed ruleset test\" f=\"Acxiom-online.com.xml\"><rule from=\"^http://p\\.acxiom-online\\.com/\" to=\"https://p.acxiom-online.com/\"/></ruleset>", "<ruleset name=\"Acxiom (partial)\" default_off=\"handshake fails\" f=\"Acxiom.xml\"><rule from=\"^http://(?:www\\.)?infobaselistexpress\\.com/\" to=\"https://infobaselistexpress.com/\"/></ruleset>", "<ruleset name=\"Acyba.com\" f=\"Acyba.com.xml\"><securecookie host=\"^www\\.acyba\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad-Center.com (partial)\" f=\"Ad-Center.com.xml\"><securecookie host=\"^ads\\.ad-center\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.ad-center\\.com/\" to=\"https://ads.ad-center.com/\"/></ruleset>", "<ruleset name=\"Ad-Juster (partial)\" f=\"Ad-Juster.xml\"><securecookie host=\"^tagscan\\.ad-juster\\.com$\" name=\".+\"/><rule from=\"^http://(?:tagscan\\.|www\\.)?ad-juster\\.com/\" to=\"https://ad-juster.com/\"/></ruleset>", "<ruleset name=\"Ad-Stir.com (partial)\" f=\"Ad-Stir.com.xml\"><securecookie host=\"^\\.ad-stir\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad4Game (partial)\" f=\"Ad4Game.xml\"><securecookie host=\"\\.?ads\\.ad4game\\.com$\" name=\".*\"/><rule from=\"^http://(ads|traffic)\\.ad4game\\.com/\" to=\"https://$1.ad4game.com/\"/></ruleset>", "<ruleset name=\"ad6media (partial)\" f=\"Ad6media.xml\"><rule from=\"^http://r\\.ad6media\\.fr/\" to=\"https://r.ad6media.fr/\"/></ruleset>", "<ruleset name=\"AdBit.co\" f=\"AdBit.co.xml\"><securecookie host=\"^\\.?adbit\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBlock\" f=\"AdBlock.xml\"><rule from=\"^http://(www\\.)?getadblock\\.com/\" to=\"https://$1getadblock.com/\"/><rule from=\"^http://support\\.getadblock\\.com/(?=favicon\\.ico|help/theme\\.css|pkg/|stylesheets/)\" to=\"https://help.tenderapp.com/\"/><rule from=\"^http://(?:www\\.)?chromeadblock\\.com/\" to=\"https://chromeadblock.com/\"/></ruleset>", "<ruleset name=\"AdBulter\" f=\"AdButler.xml\"><securecookie host=\"^\\.adbutler\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adbutler\\.com/\" to=\"https://www.adbutler.com/\"/><rule from=\"^http://(?:www\\.)?servedbyadbutler\\.com/\" to=\"https://servedbyadbutler.com/\"/></ruleset>", "<ruleset name=\"AdCap.biz\" f=\"AdCap.biz.xml\"><securecookie host=\"^\\.adcap\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdExcite (partial)\" f=\"AdExcite.xml\"><rule from=\"^http://cdn\\.adexcite\\.com/\" to=\"https://adexcite.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"AdExtent.com (problematic)\" default_off=\"mismatched\" f=\"AdExtent.com-problematic.xml\"><rule from=\"^http://appv2\\.adextent\\.com/(?!favicon\\.ico|Frontend/(?:bootstrap|scripts|theme)/)\" to=\"https://appv2.adextent.com/\"/></ruleset>", "<ruleset name=\"AdExtent.com (partial)\" f=\"AdExtent.com.xml\"><securecookie host=\"^\\.appv2\\.adextent\\.com$\" name=\".+\"/><rule from=\"^http://appv2\\.adextent\\.com/(?=favicon\\.ico|Frontend/(?:bootstrap|scripts|theme)/)\" to=\"https://s3.amazonaws.com/appv2.adextent.com/\"/><rule from=\"^http://dynads\\.adextent\\.com/\" to=\"https://d2dxlvlyoblbme.cloudfront.net/\"/><rule from=\"^http://ssl\\.adextent\\.com/\" to=\"https://ssl.adextent.com/\"/><rule from=\"^http://support\\.adextent\\.com/\" to=\"https://adextent.freshdesk.com/\"/></ruleset>", "<ruleset name=\"AdF.ly (buggy)\" default_off=\"trips on its own referrers\" f=\"AdF.ly.xml\"><securecookie host=\"^adf\\.ly$\" name=\".+\"/><securecookie host=\"^\\.adf\\.ly$\" name=\"^(?:adf[12]|__cfduid|FLYSESSID)$\"/><rule from=\"^http://(www\\.)?adf\\.ly/\" to=\"https://$1adf.ly/\"/><rule from=\"^http://cdn\\.adf\\.ly/\" to=\"https://adf.ly/\"/></ruleset>", "<ruleset name=\"AdFox.ru\" f=\"AdFox.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdHands.ru (partial)\" f=\"AdHands.ru.xml\"><rule from=\"^http://(api|sedu)\\.adhands\\.ru/\" to=\"https://$1.adhands.ru/\"/></ruleset>", "<ruleset name=\"AdJug.com (partial)\" f=\"AdJug.com.xml\"><securecookie host=\"^\\.adjug\\.com$\" name=\"^AJUserGUID$\"/><rule from=\"^http://adjug\\.com/\" to=\"https://www.adjug.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdJuggler (problematic)\" default_off=\"mismatched\" f=\"AdJuggler-problematic.xml\"><rule from=\"^http://(?:www\\.)?adjuggler\\.com/\" to=\"https://adjuggler.com/\"/></ruleset>", "<ruleset name=\"AdJuggler (partial)\" f=\"AdJuggler.xml\"><exclusion pattern=\"^http://hwcdn\\.hadj[147]\\.adjuggler\\.net/banners/\"/><securecookie host=\"^rotator\\.hadj7\\.adjuggler\\.net$\" name=\".+\"/><rule from=\"^http://(?:rotator\\.adjuggler\\.(?:com|net)|hwcdn\\.hadj[14]\\.adjuggler\\.net)/\" to=\"https://rotator.adjuggler.com/\"/><rule from=\"^http://(?:(?:\\w+\\.)?rotator|hwcdn)\\.hadj7\\.adjuggler\\.net/\" to=\"https://rotator.hadj7.adjuggler.net/\"/></ruleset>", "<ruleset name=\"AdMarvel.com (partial)\" f=\"AdMarvel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdMaster.com.cn (partial)\" f=\"AdMaster.com.cn.xml\"><securecookie host=\"^\\.admaster\\.com\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdMatrix.jp\" f=\"AdMatrix.jp.xml\"><securecookie host=\"^(?:www\\.)?admatrix\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdMob.com\" f=\"AdMob.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdReactor (partial)\" f=\"AdReactor.xml\"><rule from=\"^http://adserver\\.adreactor\\.com/\" to=\"https://adserver.adreactor.com/\"/></ruleset>", "<ruleset name=\"AdRiver.ru (partial)\" f=\"AdRiver.xml\"><exclusion pattern=\"^http://content\\.adriver\\.ru/+(?:$|\\?)\"/><exclusion pattern=\"^http://ad\\.adriver\\.ru/crossdomain.xml\"/><securecookie host=\"^\\.adriver\\.ru$\" name=\".+\"/><rule from=\"^http://adriver\\.ru/\" to=\"https://www.adriver.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdRoll (problematic)\" default_off=\"mismatched\" f=\"AdRoll-problematic.xml\"><rule from=\"^http://feedback\\.adroll\\.com/(?!s/)\" to=\"https://feedback.adroll.com/\"/></ruleset>", "<ruleset name=\"AdRoll (partial)\" f=\"AdRoll.xml\"><exclusion pattern=\"^http://feedback\\.adroll\\.com/(?!s/)\"/><securecookie host=\"^\\.adroll\\.com$\" name=\"^__adroll$\"/><rule from=\"^http://adroll\\.com/\" to=\"https://www.adroll.com/\"/><rule from=\"^http://a\\.adroll\\.com/\" to=\"https://s.adroll.com/\"/><rule from=\"^http://feedback\\.adroll\\.com/\" to=\"https://userecho.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSafe control.com\" f=\"AdSafe.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSafe protected.com\" f=\"AdSafe_protected.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSonar.com\" f=\"AdSonar.com.xml\"><securecookie host=\"^\\.adsonar\\.com$\" name=\".+\"/><rule from=\"^http://adsonar\\.com/\" to=\"https://www.adsonar.com/\"/><rule from=\"^http://js\\.adsonar\\.com/\" to=\"https://secure-js.adsonar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSpeed.biz\" f=\"AdSpeed.biz.xml\"><rule from=\"^http://(?:www\\.)?adspeed\\.biz/.*\" to=\"https://www.adspeed.com/?src=dotbiz\"/><rule from=\"^http://\\w\\d+\\.adspeed\\.biz/\" to=\"https://g.adspeed.net/\"/></ruleset>", "<ruleset name=\"AdSpeed.net\" f=\"AdSpeed.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?adspeed\\.net/\" to=\"https://adspeed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSpeed.com (partial)\" f=\"AdSpeed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSpirit.de (partial)\" f=\"AdSpirit.xml\"><exclusion pattern=\"http://www\\.adspirit\\.de/\"/><rule from=\"^http://([\\w-]+)\\.adspirit\\.de/\" to=\"https://$1.adspirit.de/\"/></ruleset>", "<ruleset name=\"AdSupply.com (partial)\" f=\"AdSupply.xml\"><securecookie host=\"^(?!\\.adsupply\\.com$)\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdXpansion.com (partial)\" default_off=\"failed ruleset test\" f=\"AdXpansion.com.xml\"><securecookie host=\"^(?:w*\\.)?adxpansion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad Peeps hosted.com\" f=\"Ad_Peeps_hosted.com.xml\"><securecookie host=\"^(?:www\\.)?adpeepshosted\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ada.lt (partial)\" f=\"Ada.lt.xml\"><securecookie host=\"^(?:www\\.)?ada\\.lt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdaCore\" platform=\"mixedcontent\" f=\"AdaCore.xml\"><securecookie host=\"^www\\.adacore\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adactio.com\" f=\"Adactio.com.xml\"><rule from=\"^http://www\\.adactio\\.com/\" to=\"https://adactio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdaFruit.com\" f=\"Adafruit.xml\"><securecookie host=\"^\\.?www\\.adafruit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adagio.com\" f=\"Adagio.com.xml\"><rule from=\"^http://(www\\.)?adagio\\.com/\" to=\"https://www.adagio.com/\"/></ruleset>", "<ruleset name=\"Adallom.com (partial)\" f=\"Adallom.com.xml\"><rule from=\"^http://(console\\.|www\\.)?adallom\\.com/\" to=\"https://$1adallom.com/\"/><rule from=\"^http://learn\\.adallom\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-ab01.marketo.com/\"/></ruleset>", "<ruleset name=\"Adam Caudill.com\" f=\"Adam_Caudill.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adap.TV (partial)\" f=\"Adap.TV.xml\"><securecookie host=\"^\\.adap\\.tv$\" name=\".*\"/><rule from=\"^http://redir\\.adap\\.tv/\" to=\"https://ads.adap.tv/\"/><rule from=\"^http://www\\.adap\\.tv/\" to=\"https://adap.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adaptavist.com (partial)\" f=\"Adaptavist.com.xml\"><exclusion pattern=\"^http://www\\.adaptavist\\.com/+(?!s/\\d{4}/\\d\\d/[\\d.]{1,2}/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adaptec.com (partial)\" f=\"Adaptec.com.xml\"><rule from=\"^http://(?:www\\.)?adaptec\\.com/\" to=\"https://www.adaptec.com/\"/></ruleset>", "<ruleset name=\"Adapteva.com (partial)\" f=\"Adapteva.com.xml\"><rule from=\"^http://shop\\.adapteva\\.com/\" to=\"https://adapteva.myshopify.com/\"/></ruleset>", "<ruleset name=\"Adaptive Computing (partial)\" f=\"Adaptive_Computing.xml\"><exclusion pattern=\"^http://www\\.adaptivecomputing\\.com/+(?!wp-content/|wp-login\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adara Media.com (partial)\" default_off=\"mismatched\" f=\"Adara-Media.xml\"><securecookie host=\"^login\\.adaramedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adblade.com (partial)\" f=\"Adblade.xml\"><exclusion pattern=\"^http://(?:www\\.)?adblade\\.com/+(?!css/|favicon\\.ico|images/|img/|registration/)\"/><securecookie host=\"^\\.adblade\\.com$\" name=\"^__sgs$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdblockPlus.org\" f=\"AdblockPlus.xml\"><securecookie host=\"^(?:.*\\.)?adblockplus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adbooth.net\" f=\"Adbooth.net.xml\"><rule from=\"^http://cdn\\.adbooth\\.net/\" to=\"https://s3.amazonaws.com/cdn.adbooth.net/\"/><rule from=\"^http://help\\.adbooth\\.net/track\\.gif\" to=\"https://cdn.uservoice.com/track.gif\"/><rule from=\"^http://yieldmanager\\.adbooth\\.net/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"AdBrite.com (expired)\" default_off=\"expired\" f=\"Adbrite-expired.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBrite.com (partial)\" default_off=\"failed ruleset test\" f=\"Adbrite.xml\"><rule from=\"^http://(?:www\\.)?adbrite\\.com/\" to=\"https://www.sitescout.com/adbrite/?utm_source=adbrite\"/><rule from=\"^http://files\\.adbrite\\.com/\" to=\"https://www.adbrite.com/\"/></ruleset>", "<ruleset name=\"Adbusters.org\" f=\"Adbusters.org.xml\"><rule from=\"^http://(?:www\\.)?adbusters\\.org/\" to=\"https://www.adbusters.org/\"/></ruleset>", "<ruleset name=\"adbuyer.com\" f=\"Adbuyer.com.xml\"><securecookie host=\"^(?:gbid)?\\.adbuyer\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adbuyer\\.com/([^?]*)(\\?:.*)?\" to=\"https://app.mbuy.com/$1\"/><rule from=\"^http://(gbid|pixel)\\.adbuyer\\.com/\" to=\"https://$1.adbuyer.com/\"/></ruleset>", "<ruleset name=\"Adcash\" f=\"Adcash.xml\"><securecookie host=\"^(?:www\\.)?adcash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Add2Net (mismatches)\" default_off=\"mismatch\" f=\"Add2Net-mismatches.xml\"><securecookie host=\"^marketing\\.lunarpages\\.com$\" name=\".*\"/><rule from=\"^http://marketing\\.lunarpages\\.com/\" to=\"https://marketing.lunarpages.com/\"/></ruleset>", "<ruleset name=\"Add2Net (partial)\" default_off=\"failed ruleset test\" f=\"Add2Net.xml\"><securecookie host=\"^www\\.lunarmods\\.com$\" name=\".*\"/><securecookie host=\"^(?:account|secure|support|www)?\\.lunarpages\\.com$\" name=\".*\"/><securecookie host=\"^(?:www)?\\.tremendesk\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?lpdedicated\\.com/\" to=\"https://$1lpdedicated.com/\"/><rule from=\"^http://(?:www\\.)?lplogin\\.com/\" to=\"https://account.lunarpages.com/\"/><rule from=\"^http://(www\\.)?lunar(mod|page)s\\.com/\" to=\"https://$1lunarpages.com/\"/><rule from=\"^http://(account|secure|support)\\.lunarpages\\.com/\" to=\"https://$1.lunarpages.com/\"/><rule from=\"^http://(www\\.)?lunarpages\\.co(m\\.mx|\\.uk)/\" to=\"https://$1lunarpages.co$2/\"/><rule from=\"^http://(www\\.)?tremendesk\\.com/\" to=\"https://$1tremendesk.com/\"/></ruleset>", "<ruleset name=\"AddBooks.se\" platform=\"mixedcontent\" f=\"AddBooks.se.xml\"><rule from=\"^http://www\\.addbooks\\.se/\" to=\"https://www.addbooks.se/\"/><rule from=\"^http://addbooks\\.se/\" to=\"https://addbooks.se/\"/></ruleset>", "<ruleset name=\"AddThis (partial)\" f=\"AddThis.xml\"><exclusion pattern=\"^http://(?:www\\.)?addthis\\.com/(?!bookmark\\.php|blog(?:$|\\?|/)|download/|images/|(?:get(?:/just-analytics|/sharing|/trending)?|landing|login|press|register)(?:$|\\?))\"/><securecookie host=\"^\\.addthis.com$\" name=\"^(?:__atuvc|di|uid|xtc)$\"/><rule from=\"^http://(www\\.)?addthis\\.com/get($|\\?)\" to=\"https://$1addthis.com/get/sharing$2\"/><rule from=\"^http://((?:api|cache|cf|ct\\d|ds|m|s[3579u]|secure|www)\\.)?addthis\\.com/\" to=\"https://$1addthis.com/\"/><rule from=\"^http://cache\\.addthiscdn\\.com/\" to=\"https://cache.addthiscdn.com/\"/></ruleset>", "<ruleset name=\"AddThisedge.com\" f=\"AddThisedge.com.xml\"><rule from=\"^http://m\\.addthisedge\\.com/\" to=\"https://m.addthisedge.com/\"/></ruleset>", "<ruleset name=\"AddToAny.com\" f=\"AddToAny.xml\"><securecookie host=\"^(?:\\.static)?\\.addtoany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Addictech\" default_off=\"failed ruleset test\" f=\"Addictech.xml\"><rule from=\"^http://(?:www\\.)?addictech\\.com/\" to=\"https://www.addictech.com/\"/><rule from=\"^http://assets\\.musicwindow\\.com/public/\" to=\"https://www.addictech.com/shared/assetlink.php?file=public/\"/></ruleset>", "<ruleset name=\"Addiction Help.com\" f=\"Addiction_Help.xml\"><securecookie host=\"^www\\.addictionhelpchat\\.com$\" name=\".+\"/><rule from=\"^http://addictionhelpchat\\.com/\" to=\"https://www.addictionhelpchat.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Addison.com.hk (partial)\" f=\"Addison.com.hk.xml\"><rule from=\"^http://(www\\.)?addison\\.com\\.hk/(?=(?:contact_us|what_we_do)(?:$|[?/])|favicon\\.ico|images/|libraries/|media/|templates/|wp-content/|wp-includes/)\" to=\"https://$1addison.com.hk/\"/></ruleset>", "<ruleset name=\"Addison Lee\" default_off=\"failed ruleset test\" f=\"Addison_Lee.xml\"><securecookie host=\"^(?:.*\\.)?addisonlee\\.com$\" name=\".+\"/><rule from=\"^http://addisonlee\\.com/\" to=\"https://www.addisonlee.com/\"/><rule from=\"^http://([^/:@]+)?\\.addisonlee\\.com/\" to=\"https://$1.addisonlee.com/\"/></ruleset>", "<ruleset name=\"Address Picker.io\" f=\"Address_Picker.io.xml\"><securecookie host=\"^(?:www)?\\.addresspicker\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"addy.co\" f=\"Addy.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adecco Way to Work\" f=\"Adecco_Way_to_Work.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adelaide.edu.au (partial)\" f=\"Adelaide.edu.au.xml\"><securecookie host=\"^(?:apps|blogs|myuni|orbit|shop)\\.adelaide\\.edu\\.au$\" name=\".+\"/><rule from=\"^http://((?:apps|auth|cas-prd\\.auth|blogs|global|international|login|m|myuni|orbit|password|shop|unified|www)\\.)?adelaide\\.edu\\.au/\" to=\"https://$1adelaide.edu.au/\"/></ruleset>", "<ruleset name=\"adelphi.de\" f=\"Adelphi.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adentifi.com\" f=\"Adentifi.com.xml\"><securecookie host=\"^(?:www\\.)?adentifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adestra (partial)\" f=\"Adestra.xml\"><rule from=\"^http://new\\.adestra\\.com/\" to=\"https://new.adestra.com/\"/><rule from=\"^http://cup\\.msgfocus\\.com/\" to=\"https://cup.msgfocus.com/\"/></ruleset>", "<ruleset name=\"Adform\" f=\"Adform.xml\"><securecookie host=\"^www\\.adform\\.com$\" name=\".+\"/><securecookie host=\"^\\.adform\\.net$\" name=\".+\"/><securecookie host=\"^track\\.adform\\.net$\" name=\".+\"/><securecookie host=\"^\\.adformdsp\\.net$\" name=\".+\"/><securecookie host=\"^server\\.adformdsp\\.net$\" name=\".+\"/><rule from=\"^http://adform\\.com/\" to=\"https://www.adform.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adgenie.co.uk (partial)\" f=\"Adgenie.co.uk.xml\"><rule from=\"^http://adverts\\.adgenie\\.co\\.uk/\" to=\"https://adverts.adgenie.co.uk/\"/></ruleset>", "<ruleset name=\"Adhocracy.de (partial)\" f=\"Adhocracy.de.xml\"><securecookie host=\"^\\.adhocracy\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adicio.com (partial)\" f=\"Adicio.com.xml\"><securecookie host=\"^sitemanager2\\.adicio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adify\" f=\"Adify.xml\"><rule from=\"^http://ad\\.afy11\\.net/\" to=\"https://ad.afy11.net/\"/></ruleset>", "<ruleset name=\"adigital (partial)\" f=\"Adigital.xml\"><rule from=\"^http://(?:www\\.)?adigital\\.org/(misc/|registrate/?(?:$|\\?)|sites/|user(?:$|\\?|/))\" to=\"https://www.adigital.org/$1\"/></ruleset>", "<ruleset name=\"Adility Gmbh\" f=\"Adility.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adingo (partial)\" f=\"Adingo.xml\"><securecookie host=\"^product\\.adingo\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.adingo\\.jp/\" to=\"https://adingo.jp/\"/><rule from=\"^http://product\\.adingo\\.jp\\.eimg\\.jp/\" to=\"https://product.adingo.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adis.ws\" f=\"Adis.ws.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adition.com (partial)\" f=\"Adition.com.xml\"><exclusion pattern=\"^http://(?:en|www)\\.adition\\.com/\"/><securecookie host=\"^(?:ad1)?\\.adfarm1\\.adition\\.com$\" name=\".+\"/><rule from=\"^http://([\\w+\\.-]+)\\.adition\\.com/\" to=\"https://$1.adition.com/\"/></ruleset>", "<ruleset name=\"Adium.im\" f=\"Adium.im.xml\"><securecookie host=\"^trac\\.adium\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adjust-net.jp\" f=\"Adjust-net.jp.xml\"><rule from=\"^http://(ads|ifr)\\.adjust-net\\.jp/\" to=\"https://$1.adjust-net.jp/\"/></ruleset>", "<ruleset name=\"adjust.com\" f=\"Adjust.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adk2 (partial)\" default_off=\"failed ruleset test\" f=\"Adk2.xml\"><securecookie host=\"^\\.?ads\\.adk2\\.com$\" name=\".+\"/><rule from=\"^http://((?:ads|adstract|cpmrocket)\\.)?adk2\\.com/\" to=\"https://$1adk2.com/\"/><rule from=\"^http://cdn\\.adk2\\.com/\" to=\"https://d38cp5x90nxyo0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Adknowledge (partial)\" f=\"Adknowledge.xml\"><securecookie host=\"^advertiser\\.adknowledge\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?bidsystem\\.com$\" name=\".+\"/><rule from=\"^http://advertiser\\.adknowledge\\.com/\" to=\"https://advertiser.adknowledge.com/\"/><rule from=\"^http://(tracker\\.|www\\.)?bidsystem\\.com/\" to=\"https://$1bidsystem.com/\"/></ruleset>", "<ruleset name=\"Adkontekst.pl (problematic)\" default_off=\"mismatched\" f=\"Adkontekst.pl-problematic.xml\"><rule from=\"^http://(?:www\\.)?adkontekst\\.pl/\" to=\"https://www.adkontekst.pl/\"/></ruleset>", "<ruleset name=\"Adkontekst.pl (partial)\" f=\"Adkontekst.pl.xml\"><securecookie host=\"^wydawcy\\.panel\\.adkontekst\\.pl$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?adsearch|wydawcy\\.panel)\\.adkontekst\\.pl/\" to=\"https://$1.adkontekst.pl/\"/></ruleset>", "<ruleset name=\"Adlegend.com (partial)\" f=\"Adlegend.com.xml\"><securecookie host=\"^(?:ad)?\\.adlegend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adlibris/Capris\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Adlibris.xml\"><rule from=\"^http://(?:www\\.)?(adlibris\\.com|capris\\.no)/\" to=\"https://www.$1/\"/></ruleset>", "<ruleset name=\"adlink.net\" f=\"Adlink.net.xml\"><rule from=\"^http://js\\.adlink\\.net/\" to=\"https://js.adlink.net/\"/></ruleset>", "<ruleset name=\"Admatic\" f=\"Admatic.xml\"><securecookie host=\"^\\.admatic\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adme.ru (partial)\" f=\"Adme.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Admeld\" f=\"Admeld.xml\"><securecookie host=\"^portal\\.admeld\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?admeld\\.com/images/interface/masthead_bk\\.jpg$\" to=\"https://portal.admeld.com/images/bg.jpg\"/><rule from=\"^http://portal\\.admeld\\.com/\" to=\"https://portal.admeld.com/\"/></ruleset>", "<ruleset name=\"Admeta Aktiebolag (partial)\" f=\"Admeta-Aktiebolag.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Admissions.com\" f=\"Admissions.com.xml\"><rule from=\"^http://(?:www\\.)?admissions\\.com/+\" to=\"https://www.fastweb.com/\"/></ruleset>", "<ruleset name=\"admitad.com\" f=\"Admitad.com.xml\"><rule from=\"^http://(ad|cdn)\\.admitad\\.com/\" to=\"https://$1.admitad.com/\"/></ruleset>", "<ruleset name=\"Admized\" f=\"Admized.xml\"><rule from=\"^http://ads\\.admized\\.com/\" to=\"https://ads.admized.com/\"/></ruleset>", "<ruleset name=\"Adnxs.com\" f=\"Adnxs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.adnxs\\.com/\" to=\"https://secure.adnxs.com/\"/><rule from=\"^http://(\\w+|cdn\\.oas-c18)\\.adnxs\\.com/\" to=\"https://$1.adnxs.com/\"/></ruleset>", "<ruleset name=\"Adobe Digital Marketing\" f=\"Adobe-Digital-Marketing.xml\"><securecookie host=\"^(?:.*\\.)?worldsecuresystems\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe.com (mismatched)\" default_off=\"mismatched\" f=\"Adobe-mismatches.xml\"><rule from=\"^http://(airdownload|gaming|html)\\.adobe\\.com/\" to=\"https://$1.adobe.com/\"/></ruleset>", "<ruleset name=\"Adobe.com\" f=\"Adobe.xml\"><exclusion pattern=\"^http://community\\.adobe\\.com/+(?!$|\\?)\"/><exclusion pattern=\"^http://fpdownload\\.adobe\\.com/(?:pub/swz/)?crossdomain\\.xml$\"/><exclusion pattern=\"^http://ns\\.adobe\\.com/(?!$|xap/)\"/><securecookie host=\".+\\.adobe\\.com$\" name=\".+\"/><rule from=\"^http://community\\.adobe\\.com/+\" to=\"https://www.adobe.com/communities\"/><rule from=\"^http://cookbooks\\.adobe\\.com/[^?]*\" to=\"https://forums.adobe.com/\"/><rule from=\"^http://edexchange\\.adobe\\.com/.*\" to=\"https://edex.adobe.com/\"/><rule from=\"^http://cem\\.events\\.adobe\\.com/[^?]*\" to=\"https://www.adobe.com/solutions/web-experience-management.html\"/><rule from=\"^http://get2\\.adobe\\.com/\" to=\"https://get.adobe.com/\"/><rule from=\"^http://images\\.groups\\.adobe\\.com/\" to=\"https://s3.amazonaws.com/images.groups.adobe.com/\"/><rule from=\"^http://ns\\.adobe\\.com/$\" to=\"https://www.adobe.com/\"/><rule from=\"^http://ns\\.adobe\\.com/xap/\" to=\"https://www.adobe.com/products/xmp/\"/><rule from=\"^http://stats\\.adobe\\.com/\" to=\"https://mxmacromedia.d1.sc.omtrdc.net/\"/><rule from=\"^http://techlive\\.adobe\\.com/[^?]*\" to=\"https://www.adobe.com/devnet/archive/techlive.html\"/><rule from=\"^http://wwwimages\\.adobe\\.com/www\\.adobe\\.com/css/\" to=\"https://www.adobe.com/css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe Connect.com\" f=\"Adobe_Connect.xml\"><rule from=\"^http://((?:bridges|events-(?:emea\\d+|na\\d+)|experts|na\\d+cps|www)\\.)?adobeconnect\\.com/\" to=\"https://$1adobeconnect.com/\"/></ruleset>", "<ruleset name=\"Adobe Exchange.com\" f=\"Adobe_Exchange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe forms central.com\" f=\"Adobe_forms_central.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe login.com\" f=\"Adobe_login.com.xml\"><securecookie host=\"^ims-na1\\.adobelogin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adobelogin\\.com/+\" to=\"https://www.adobe.com/\"/><rule from=\"^http://ims-na1\\.adobelogin\\.com/\" to=\"https://ims-na1.adobelogin.com/\"/></ruleset>", "<ruleset name=\"Adobetag.com\" f=\"Adobetag.com.xml\"><securecookie host=\"^www\\.adobetag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adometry.com (partial)\" f=\"Adometry.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adoyacademy.se\" f=\"Adoyacademy.se.xml\"><rule from=\"^http://www\\.adoyacademy\\.se/\" to=\"https://adoyacademy.se/\"/><rule from=\"^http://adoyacademy\\.se/\" to=\"https://adoyacademy.se/\"/></ruleset>", "<ruleset name=\"Adpay.com (partial)\" f=\"Adpay.com.xml\"><exclusion pattern=\"^http://secure\\.adpay\\.com/(?!ajaxpro/|[bB]randing/|favicon\\.ico|[iI]mages/|Includes/|RadControls/|WebResource\\.axd)\"/><exclusion pattern=\"^http://staging\\.adpay\\.com//searchresults\\.aspx\"/><securecookie host=\"^\\.adpay\\.com$\" name=\"^adpay$\"/><rule from=\"^http://s(ecure|taging)\\.adpay\\.com/\" to=\"https://s$1.adpay.com/\"/></ruleset>", "<ruleset name=\"Adperium.com\" f=\"Adperium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adrolays.de (partial)\" f=\"Adrolays.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adscale\" f=\"Adscale.xml\"><securecookie host=\".*\\.adscale\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adscale\\.de/\" to=\"https://www.adscale.de/\"/><rule from=\"^http://(ih|js|rh)\\.adscale\\.de/\" to=\"https://$1.adscale.de/\"/></ruleset>", "<ruleset name=\"Adscend Media\" platform=\"mixedcontent\" f=\"Adscend-Media.xml\"><securecookie host=\"^adscendmedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adseekmedia.com\" f=\"Adseekmedia.xml\"><rule from=\"^http://delivery\\.adseekmedia\\.com/\" to=\"https://delivery.adseekmedia.com/\"/></ruleset>", "<ruleset name=\"adserver01.de\" f=\"Adserver01.de.xml\"><securecookie host=\"^ad2\\.adserver01\\.de$\" name=\".+\"/><rule from=\"^http://(ad|r)2\\.adserver01\\.de/\" to=\"https://$12.adserver01.de/\"/></ruleset>", "<ruleset name=\"adshostnet.com\" default_off=\"failed ruleset test\" f=\"Adshostnet.com.xml\"><rule from=\"^http://n5\\.adshostnet\\.com/\" to=\"https://n5.adshostnet.com/\"/></ruleset>", "<ruleset name=\"Adsimilis\" platform=\"mixedcontent\" f=\"Adsimilis.xml\"><securecookie host=\"^(?:.*\\.)?adsimilis\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adspdbl.com (partial)\" f=\"Adspdbl.com.xml\"><rule from=\"^http://files\\.adspdbl\\.com/\" to=\"https://d3ijm230svej28.cloudfront.net/\"/></ruleset>", "<ruleset name=\"adsrvmedia.com\" f=\"Adsrvmedia.com.xml\"><rule from=\"^http://ads\\.adsrvmedia\\.com/\" to=\"https://ads.adk2.com/\"/><rule from=\"^http://cdn\\.adsrvmedia\\.com/\" to=\"https://d3vg9hiogk70qz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"adsrvmedia.net\" default_off=\"mismatched\" f=\"Adsrvmedia.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsrvr.org (partial)\" f=\"Adsrvr.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsurve.com (partial)\" default_off=\"expired\" f=\"Adsurve.com.xml\"><securecookie host=\"^adsurve\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adsurve\\.com/\" to=\"https://adsurve.com/\"/></ruleset>", "<ruleset name=\"adtarget.me\" f=\"Adtarget.me.xml\"><rule from=\"^http://static[.-]trackers\\.adtarget\\.me/\" to=\"https://static-trackers.adtarget.me/\"/></ruleset>", "<ruleset name=\"Adtech.de (partial)\" f=\"Adtech.de.xml\"><securecookie host=\"^\\.adtech\\.de\" name=\".+\"/><rule from=\"^http://aka-cdn-ns\\.adtech\\.de/\" to=\"https://aka-cdn.adtech.de/\"/><rule from=\"^http://ad\\.dc2\\.adtech\\.de/\" to=\"https://adserver.adtech.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adtechus.com (partial)\" f=\"Adtechus.com.xml\"><securecookie host=\".*\\.adtechus\\.com$\" name=\".+\"/><rule from=\"^http://aka-cdn-ns\\.adtechus\\.com/\" to=\"https://aka-cdn.adtechus.com/\"/><rule from=\"^http://ad\\.us-ec\\.adtechus\\.com/\" to=\"https://adserverec.adtechus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adtile.me (partial)\" f=\"Adtile.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adtraxx.de\" f=\"Adtraxx.de.xml\"><securecookie host=\"^\\.adtraxx\\.de$\" name=\".+\"/><rule from=\"^http://view\\.adtraxx\\.de/\" to=\"https://view.adtraxx.de/\"/></ruleset>", "<ruleset name=\"Adult Ad World (partial)\" f=\"Adult-Ad-World.xml\"><rule from=\"^http://(?:newt[27]|hippo)\\.adultadworld\\.com/\" to=\"https://hippo.adultadworld.com/\"/></ruleset>", "<ruleset name=\"Adult FriendFinder.com (partial)\" f=\"Adult-FriendFinder.xml\"><rule from=\"^http://(?:banners\\.|www\\.)?adultfriendfinder\\.com/\" to=\"https://secure.adultfriendfinder.com/\"/><rule from=\"^http://graphics\\.adultfriendfinder\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdultShopping.com\" f=\"AdultShopping.com.xml\"><securecookie host=\"^(?:admin|affiliates|checkout|secure|www)\\.adultshopping\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdultWork.com (partial)\" default_off=\"failed ruleset test\" f=\"AdultWork.com.xml\"><securecookie host=\"^(?:www\\.)?adultwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adult Toys 4 U.com\" f=\"Adult_Toys_4_U.com.xml\"><securecookie host=\"^\\.www\\.adulttoys4u\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWEmpire.com (partial)\" f=\"Adult_Webmaster_Empire.xml\"><securecookie host=\"^\\.awempire\\.com$\" name=\"^awesec_session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adultcineporn.com\" default_off=\"connection refused\" f=\"Adultcineporn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advance Digital (partial)\" f=\"Advance_Digital.xml\"><rule from=\"^http://blog\\.advance\\.net/\" to=\"https://blog.advance.net/\"/></ruleset>", "<ruleset name=\"Advantage Business Media\" f=\"Advantage-Business-Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advantage\" default_off=\"failed ruleset test\" f=\"Advantage.xml\"><securecookie host=\"^click\\.discountclick\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?advantageseoservices\\.com/\" to=\"https://$1advantageseoservices.com/\"/><rule from=\"^http://(?:www\\.)?discountclick\\.com/\" to=\"https://www.advantageseoservices.com/\"/><rule from=\"^http://click\\.discountclick\\.com/\" to=\"https://click.discountclick.com/\"/></ruleset>", "<ruleset name=\"advconversion.com\" default_off=\"missing certificate chain\" f=\"Advconversion.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advel\" default_off=\"self-signed\" f=\"Advel.xml\"><securecookie host=\"^(?:.*\\.)?advel\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?advel\\.cz/\" to=\"https://www.advel.cz/\"/></ruleset>", "<ruleset name=\"Advent.com (partial)\" f=\"Advent.com.xml\"><securecookie host=\"^\\.advent\\.com$\" name=\"^VISITORID$\"/><securecookie host=\"^(?:engage\\.|login\\.|www\\.)?advent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adversary\" default_off=\"self-signed\" f=\"Adversary.org.xml\"><rule from=\"^http://(?:www\\.)?adversary\\.org/\" to=\"https://www.adversary.org/\"/></ruleset>", "<ruleset name=\"AdvertServe.com\" f=\"AdvertServe.com.xml\"><securecookie host=\"^tradefx\\.advertserve\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?advertserve\\.com/\" to=\"https://secure.advertserve.com/\"/><rule from=\"^http://([\\w-]+)\\.advertserve\\.com/\" to=\"https://$1.advertserve.com/\"/></ruleset>", "<ruleset name=\"Advert Stream (partial)\" f=\"Advert_Stream.xml\"><securecookie host=\"^\\.adaccess\\.advertstream\\.com$\" name=\".+\"/><rule from=\"^http://(a?d|adaccess)\\.advertstream\\.com/\" to=\"https://$1.advertstream.com/\"/></ruleset>", "<ruleset name=\"Adverticum\" f=\"Adverticum.xml\"><rule from=\"^http://([^@:/]*)\\.adverticum\\.net/\" to=\"https://$1.adverticum.net/\"/></ruleset>", "<ruleset name=\"Advertise.com (partial)\" f=\"Advertise.com.xml\"><securecookie host=\"^admin\\.advertise\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.advertise\\.com/\" to=\"https://ad.rmxads.com/\"/><rule from=\"^http://admin\\.advertise\\.com/\" to=\"https://admin.advertise.com/\"/></ruleset>", "<ruleset name=\"advertisers-OpenX.com\" f=\"Advertisers-OpenX.com.xml\"><securecookie host=\"^d3\\.advertisers-openx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advertising.com (mismatches)\" default_off=\"mismatched\" f=\"Advertising.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advertising.com (partial)\" f=\"Advertising.com.xml\"><securecookie host=\"^\\.(?:adaptv\\.)?advertising\\.com$\" name=\".+\"/><rule from=\"^http://(?:[\\w-]+\\.)?ace\\.advertising\\.com/\" to=\"https://secure.ace.advertising.com/\"/><rule from=\"^http://(ace-tag|leadback|uac)\\.advertising\\.com/\" to=\"https://secure.$1.advertising.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adverts.ie\" f=\"Adverts.ie.xml\"><securecookie host=\"^www\\.adverts\\.ie$\" name=\".+\"/><rule from=\"^http://(c\\d\\.|www\\.)?adverts\\.ie/\" to=\"https://$1adverts.ie/\"/></ruleset>", "<ruleset name=\"advg.jp (partial)\" f=\"Advg.jp.xml\"><rule from=\"^http://r\\.advg\\.jp/\" to=\"https://r.advg.jp/\"/></ruleset>", "<ruleset name=\"Adviceguide.org.uk\" f=\"Adviceguide.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://adviceguide\\.org\\.uk/\" to=\"https://www.adviceguide.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adview.pl\" f=\"Adview.pl.xml\"><securecookie host=\"^\\.\" name=\"^AdViewPIBann$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.adview\\.pl/\" to=\"https://adview.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advisor Mailout.com\" default_off=\"mismatched\" f=\"Advisor_Mailout.com.xml\"><securecookie host=\"^advisormailout\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?advisormailout\\.com/\" to=\"https://advisormailout.com/\"/></ruleset>", "<ruleset name=\"Adviva.net\" f=\"Adviva.net.xml\"><rule from=\"^http://smdd\\.adviva\\.net/\" to=\"https://secure.adviva.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advocate-Europe.eu\" f=\"Advocate-Europe.eu.xml\"><securecookie host=\"^advocate-europe\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advocates for Youth (partial)\" f=\"Advocates_for_Youth.xml\"><securecookie host=\"^\\.?s(?:ecure|hop)\\.advocatesforyouth\\.org$\" name=\".+\"/><rule from=\"^http://s(ecure|hop)\\.advocatesforyouth\\.org/\" to=\"https://s$1.advocatesforyouth.org/\"/></ruleset>", "<ruleset name=\"advolution.de\" f=\"Advolution.de.xml\"><securecookie host=\"^\\.advolution\\.de$\" name=\".+\"/><rule from=\"^http://asn\\.advolution\\.de/\" to=\"https://asn.advolution.de/\"/></ruleset>", "<ruleset name=\"Adweek (partial)\" default_off=\"mismatch\" f=\"Adweek.xml\"><securecookie host=\"^jobs\\.adweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?adweek\\.com/\" to=\"https://www.adweek.com/\"/><rule from=\"^http://jobs\\.adweek\\.com/\" to=\"https://jobs.adweek.com/\"/></ruleset>", "<ruleset name=\"Ady Advantage.com (false MCB)\" platform=\"mixedcontent\" f=\"Ady_Advantage.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?adyadvantage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ady Advantage.com (partial)\" f=\"Ady_Advantage.com.xml\"><rule from=\"^http://(www\\.)?adyadvantage\\.com/(?=favicon\\.ico|sites/|wp-content/|wp-includes/)/\" to=\"https://$1adyadvantage.com/\"/></ruleset>", "<ruleset name=\"Adzerk.net (partial)\" f=\"Adzerk.net.xml\"><securecookie host=\"^(?:engine)?\\.adzerk\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adzerk.com (partial)\" f=\"Adzerk.xml\"><rule from=\"^http://static\\.adzerk\\.com/\" to=\"https://d36aw3ue2ntmsq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"adzip.co\" f=\"Adzip.co.xml\"><rule from=\"^http://metrics\\.adzip\\.co/\" to=\"https://metrics.adzip.co/\"/></ruleset>", "<ruleset name=\"AeXp-static.com (partial)\" f=\"AeXp-static.com.xml\"><exclusion pattern=\"^http://qwww\\.aexp-static\\.com/$\"/><rule from=\"^http://www\\.aexp-static\\.com/$\" to=\"https://www.americanexpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aea.se\" platform=\"mixedcontent\" f=\"Aea.se.xml\"><rule from=\"^http://www\\.aea\\.se/\" to=\"https://www.aea.se/\"/><rule from=\"^http://aea\\.se/\" to=\"https://aea.se/\"/></ruleset>", "<ruleset name=\"Aeolus\" default_off=\"failed ruleset test\" f=\"Aeolus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aeon.co (partial)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Aeon.co.xml\"><rule from=\"^http://(?:www\\.)?aeon\\.co/\" to=\"https://aeon.co/\"/></ruleset>", "<ruleset name=\"Aer Lingus (testing)\" default_off=\"broken?\" f=\"AerLingus.xml\"><rule from=\"^http://aerlingus\\.com/\" to=\"https://aerlingus.com/\"/><rule from=\"^http://(portal|training|www)\\.aerlingus\\.com/\" to=\"https://$1.aerlingus.com/\"/></ruleset>", "<ruleset name=\"Aera.net\" f=\"Aera.net.xml\"><securecookie host=\"^(?:w*\\.)?aera\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aereo.com (problematic)\" default_off=\"expired, mismatched\" f=\"Aereo.com-problematic.xml\"><rule from=\"^http://blog\\.aereo\\.com/\" to=\"https://blog.aereo.com/\"/></ruleset>", "<ruleset name=\"Aereo.com (partial)\" default_off=\"failed ruleset test\" f=\"Aereo.com.xml\"><securecookie host=\"^\\.aereo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?aereo\\.com/\" to=\"https://$1aereo.com/\"/><rule from=\"^http://support\\.aereo\\.com/favicon\\.ico\" to=\"https://d3jyn100am7dxp.cloudfront.net/favicon.ico\"/></ruleset>", "<ruleset name=\"Aeriagames\" f=\"Aeriagames.xml\"><rule from=\"^http://(?:www\\.)?aeriagames\\.com/\" to=\"https://www.aeriagames.com/\"/><rule from=\"^http://c\\.aeriastatic\\.com/\" to=\"https://c.aeriastatic.com/\"/><rule from=\"^https?://s\\.aeriastatic\\.com/\" to=\"https://c.aeriastatic.com/\"/></ruleset>", "<ruleset name=\"aerio.biz\" f=\"Aerio.biz.xml\"><rule from=\"^http://www\\.aerio\\.biz/\" to=\"https://www.aerio.biz/\"/></ruleset>", "<ruleset name=\"AeroFS.com\" f=\"AeroFS.xml\"><securecookie host=\".+\\.aerofs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AeroHosting.cz\" f=\"AeroHosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aéroports de Montréal\" default_off=\"failed ruleset test\" f=\"Aeroports_de_Montreal.xml\"><rule from=\"^http://admtl\\.com/\" to=\"https://www.admtl.com/\"/><rule from=\"^http://([^/:@]+)?\\.admtl\\.com/\" to=\"https://$1.admtl.com/\"/></ruleset>", "<ruleset name=\"Aeryon Labs\" f=\"Aeryon_Labs.xml\"><securecookie host=\"^(?:www\\.)?aeryon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aesload.de\" default_off=\"failed ruleset test\" f=\"Aesload.de.xml\"><rule from=\"^http://(?:www\\.)?aesload\\.de/\" to=\"https://www.aesload.de/\"/></ruleset>", "<ruleset name=\"Aether Flyff.com (false MCB)\" platform=\"mixedcontent\" f=\"AetherFlyff.com-falsemixed.xml\"><exclusion pattern=\"^http://basilisk\\.aetherflyff\\.com/+(?!forums(?!/favicon\\.ico|/index\\.php\\?app=core&module=task|/public/|/uploads/))\"/><exclusion pattern=\"^http://support\\.aetherflyff\\.com/+(?:cron/index\\.php\\?/Base/|favicon\\.ico|index\\.php\\?/Core/|__swift/)\"/><securecookie host=\"^(?:\\.basilisk|support)?\\.aetherflyff\\.com$\" name=\".+\"/><rule from=\"^http://(basilisk|support)\\.aetherflyff\\.com/\" to=\"https://$1.aetherflyff.com/\"/></ruleset>", "<ruleset name=\"Aether Flyff.com (partial)\" default_off=\"failed ruleset test\" f=\"AetherFlyff.com.xml\"><exclusion pattern=\"^http://basilisk\\.aetherflyff\\.com/+forums(?!/favicon\\.ico|/index\\.php\\?app=core&module=task|/public/|/uploads/)\"/><exclusion pattern=\"^http://support\\.aetherflyff\\.com/+(?!cron/index\\.php\\?/Base/|favicon\\.ico|index\\.php\\?/Core/|__swift/)\"/><rule from=\"^http://((?:basilisk|support|www)\\.)?aetherflyff\\.com/\" to=\"https://$1aetherflyff.com/\"/></ruleset>", "<ruleset name=\"Aff.biz\" f=\"Aff.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AffUtd.com\" default_off=\"failed ruleset test\" f=\"AffUtd.com.xml\"><securecookie host=\"^www\\.affutd\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?affutd\\.com/\" to=\"https://www.affutd.com/\"/></ruleset>", "<ruleset name=\"Affair-Guide.com (false MCB)\" platform=\"mixedcontent\" f=\"Affair-Guide.com-falsemixed.xml\"><securecookie host=\"^\\.?affair-guide\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Affair-Guide.com (partial)\" f=\"Affair-Guide.com.xml\"><rule from=\"^http://(www\\.)?affair-guide\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1affair-guide.com/\"/></ruleset>", "<ruleset name=\"Affec.tv (partial)\" f=\"Affec.tv.xml\"><securecookie host=\"^\\.go\\.affec\\.tv$\" name=\".+\"/><rule from=\"^http://go\\.affec\\.tv/\" to=\"https://go.affec.tv/\"/></ruleset>", "<ruleset name=\"affili.net (partial)\" f=\"Affili.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?affili\\.net/(?:\\w\\w/defaultdesktop|de/Startseite)\\.aspx\"/><securecookie host=\"^www\\.affili\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?affili\\.net/\" to=\"https://www.affili.net/\"/><rule from=\"^http://(?:www\\.)?affili\\.de/\" to=\"https://www.affili.net/de/\"/></ruleset>", "<ruleset name=\"Affiliate-B.com\" f=\"Affiliate-B.com.xml\"><rule from=\"^http://affiliate-b\\.com/\" to=\"https://www.affiliate-b.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AffiliateTracking.com\" f=\"AffiliateTracking.com.xml\"><securecookie host=\"^\\.affiliatetracking\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?affiliatetracking\\.com/\" to=\"https://affiliatetracking.com/\"/></ruleset>", "<ruleset name=\"affility.com (partial)\" f=\"Affility.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Affinix.com (partial)\" default_off=\"expired\" f=\"Affinix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afford.com\" f=\"Afford.com.xml\"><securecookie host=\"(?:^|\\.)afford\\.com$\" name=\".+\"/><rule from=\"^http://borrowsmart\\.afford\\.com/\" to=\"https://borrowsmart.afford.com/\"/><rule from=\"^http://(?:www\\.)?afford\\.com/\" to=\"https://www.afford.com/\"/></ruleset>", "<ruleset name=\"Afiestas.org\" f=\"Afiestas.org.xml\"><securecookie host=\"^\\.afiestas\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afilias\" f=\"Afilias.xml\"><securecookie host=\"^\\.afilias\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeDNS.Afraid.org\" f=\"Afraid.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"African Network Information Center\" platform=\"mixedcontent\" f=\"African-Network-Information-Center.xml\"><securecookie host=\"^(?:.*\\.)?afrinic\\.net$\" name=\".*\"/><rule from=\"^http://((?:meeting|my|www2?)\\.)?afrinic\\.net/\" to=\"https://$1afrinic.net/\"/></ruleset>", "<ruleset name=\"African Grey Parrot Centre\" f=\"African_Grey_Parrot_Centre.xml\"><securecookie host=\"^(?:www)?\\.africangreyparrotcentre\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aftenposten.no (false MCB)\" platform=\"mixedcontent\" f=\"Aftenposten.no-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?aftenposten\\.no/(?=nyheter(?:$|[?/]))\" to=\"https://www.aftenposten.no/\"/></ruleset>", "<ruleset name=\"Aftenposten (partial)\" f=\"Aftenposten.xml\"><exclusion pattern=\"^http://www\\.aftenposten\\.no/+(?!.+\\.(?:css|gif|jpg|png)(?:$|\\?)|\\?service=css|favicon\\.ico|skins/)\"/><securecookie host=\"^(?:a|kundesenter|kundeweb|onlinesos)\\.aftenposten\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aftenposten\\.no/\" to=\"https://www.aftenposten.no/\"/><rule from=\"^http://kundeservice\\.aftenposten\\.no/(?=$|\\?.*)\" to=\"https://a.aftenposten.no/kundeservice/\"/><rule from=\"^http://(a|kundesenter|kundeweb|onlinesos)\\.aftenposten\\.no/\" to=\"https://$1.aftenposten.no/\"/><rule from=\"^http://ap\\.mnocdn\\.no/\" to=\"https://www.aftenposten.no/\"/></ruleset>", "<ruleset name=\"AfterShip.com\" f=\"AfterShip.com.xml\"><securecookie host=\"^www\\.aftership\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afton Trial Run\" f=\"Afton_Trial_Run.xml\"><securecookie host=\"^(?:www\\.)?aftontrailrun\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aftonbladet-CDN.se\" default_off=\"failed ruleset test\" f=\"Aftonbladet-CDN.se.xml\"><rule from=\"^http://gfx2?\\.aftonbladet-cdn\\.se/\" to=\"https://www.aftonbladet.se/\"/></ruleset>", "<ruleset name=\"Aftonbladet.se (partial)\" default_off=\"failed ruleset test\" f=\"Aftonbladet.xml\"><exclusion pattern=\"^http://bloggar\\.aftonbladet\\.se/+(?!wp-content/)\"/><securecookie host=\"^(?:ads|\\.smetrics)\\.aftonbladet\\.se$\" name=\".+\"/><rule from=\"^http://aftonbladet\\.se/\" to=\"https://www.aftonbladet.se/\"/><rule from=\"^http://metrics\\.aftonbladet\\.se/\" to=\"https://smetrics.aftonbladet.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"afx.ms\" f=\"Afx.ms.xml\"><rule from=\"^http://(bay|dub)(\\d+)\\.afx\\.ms/\" to=\"https://$1$2.afx.ms/\"/></ruleset>", "<ruleset name=\"AgKn.com (partial)\" f=\"AgKn.com.xml\"><exclusion pattern=\"^http://d\\.agkn\\.com/$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agar.io\" f=\"Agar.io.xml\"><rule from=\"^http://(?:www\\.)?agar\\.io/\" to=\"https://agar.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agari\" default_off=\"failed ruleset test\" f=\"Agari.xml\"><securecookie host=\"^(?:w*\\.)?agari\\.com$\" name=\".+\"/><rule from=\"^http://(app\\.|www\\.)?agari\\.com/\" to=\"https://$1agari.com/\"/><rule from=\"^http://dev\\.agari\\.com/wp-content/\" to=\"https://agari.com/wp-content/\"/></ruleset>", "<ruleset name=\"Agariomods.com\" f=\"Agariomods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Age of Mine.com\" f=\"Age_of_Mine.com.xml\"><securecookie host=\"^\\.ageofmine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agence France-Presse (partial)\" default_off=\"mismatch\" f=\"Agence-France-Presse.xml\"><securecookie host=\"^ediplomacy\\.afp\\.com$\" name=\".*\"/><rule from=\"^http://ediplomacy\\.afp\\.com/\" to=\"https://ediplomacy.afp.com/\"/></ruleset>", "<ruleset name=\"Agendaless.com\" f=\"Agendaless.com.xml\"><rule from=\"^http://(?:www\\.)?agendaless\\.com/\" to=\"https://agendaless.com/\"/></ruleset>", "<ruleset name=\"Aggemam.dk\" f=\"Aggemam.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aggregate Knowledge.com\" f=\"Aggregate_Knowledge.xml\"><exclusion pattern=\"^http://data\\.aggregateknowledge\\.com/$\"/><securecookie host=\"^\\.aggregateknowledge\\.com$\" name=\".+\"/><rule from=\"^http://aggregateknowledge\\.com/+\" to=\"https://www.aggregateknowledge.com/\"/><rule from=\"^http://(?:creative|www-stage)\\.aggregateknowledge\\.com/\" to=\"https://www.aggregateknowledge.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AgileBits\" f=\"AgileBits.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?agilewebsolutions\\.com/\" to=\"https://agilebits.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AgileU.com\" f=\"AgileU.com.xml\"><securecookie host=\"^\\.agileu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agmk.net\" f=\"Agmk.net.xml\"><securecookie host=\"^(?:.+\\.)?agmk\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agnitum\" default_off=\"failed ruleset test\" f=\"Agnitum.com.xml\"><rule from=\"^http://www\\.agnitum\\.com/\" to=\"https://www.agnitum.com/\"/><rule from=\"^http://agnitum\\.com/\" to=\"https://www.agnitum.com/\"/></ruleset>", "<ruleset name=\"Agol.dk\" f=\"Agol.dk.xml\"><rule from=\"^https?://(www\\.)?agol\\.dk/\" to=\"https://agol.dk/\"/></ruleset>", "<ruleset name=\"Agora Voting.com\" default_off=\"failed ruleset test\" f=\"Agora_Voting.com.xml\"><securecookie host=\"^\\.agoravoting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agra-net.com (partial)\" f=\"Agra-net.com.xml\"><securecookie host=\"^(?:\\.store|www)?\\.agra-net\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agra-net.net (partial)\" f=\"Agra-net.net.xml\"><securecookie host=\"^(?:www)?\\.agra-net\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agri Supply.com (partial)\" f=\"Agri_Supply.com.xml\"><rule from=\"^http://(?:www\\.)?agrisupply\\.com/((?:editaccount|signin)\\.aspx|favicon\\.ico|images/|Java[sS]cript/|Styles/)\" to=\"https://www.agrisupply.com/$1\"/></ruleset>", "<ruleset name=\"Agwa.name\" f=\"Agwa.name.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ahm.com.au (partial)\" f=\"Ahm.com.au.xml\"><exclusion pattern=\"^http://(?:providers|www)\\.ahm\\.com\\.au/+(?!assets/)\"/><securecookie host=\"^members\\.ahm\\.com\\.au$\" name=\".+\"/><rule from=\"^http://((?:members|providers|www)\\.)?ahm\\.com\\.au/\" to=\"https://$1ahm.com.au/\"/></ruleset>", "<ruleset name=\"ahmia.fi\" f=\"Ahmia.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ahnlab\" platform=\"mixedcontent\" f=\"Ahnlab.com.xml\"><rule from=\"^http://global\\.ahnlab\\.com/\" to=\"https://global.ahnlab.com/\"/><rule from=\"^http://image\\.ahnlab\\.com/\" to=\"https://image.ahnlab.com/\"/></ruleset>", "<ruleset name=\"aidsmap.com\" f=\"Aidsmap.com.xml\"><rule from=\"^http://aidsmap\\.com/\" to=\"https://www.aidsmap.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aim4Media.com (partial)\" default_off=\"failed ruleset test\" f=\"Aim4Media.com.xml\"><rule from=\"^http://ad\\.aim4media\\.com/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"aimatch.com\" f=\"Aimatch.com.xml\"><rule from=\"^http://(?:www\\.)?aimatch\\.com/[^?]*\" to=\"https://www.sas.com/software/customer-intelligence/intelligent-advertising.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aimpulse.com\" f=\"Aimpulse.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aioe.org\" default_off=\"expired\" f=\"Aioe.org.xml\"><rule from=\"^http://(?:www\\.)?aioe\\.org/\" to=\"https://aioe.org/\"/></ruleset>", "<ruleset name=\"Air Canada Pilot's Association (partial)\" default_off=\"failed ruleset test\" f=\"Air-Canada-Pilots-Association.xml\"><rule from=\"^http://(?:www\\.)?acpa\\.ca/(client_asset/|multimedia/)\" to=\"https://secure.acpa.ca/$1/\"/><rule from=\"^http://secure\\.acpa\\.ca/\" to=\"https://secure.acpa.ca/\"/></ruleset>", "<ruleset name=\"Air Asia (broken)\" default_off=\"currently broken\" f=\"AirAsia.xml\"><rule from=\"^http://(?:www\\.)?airasia\\.com/\" to=\"https://www.airasia.com/\"/><rule from=\"^http://(booking|booking2|goholiday|mobile|origin-www|redtix-tickets)\\.airasia\\.com/\" to=\"https://$1.airasia.com/\"/><rule from=\"^http://(?:www\\.)?airasiamegastore\\.com/\" to=\"https://www.airasiamegastore.com/\"/></ruleset>", "<ruleset name=\"AirPair.com\" f=\"AirPair.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Air VPN.org\" f=\"AirVPN.xml\"><securecookie host=\"^airvpn\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airbnb (partial)\" f=\"Airbnb.xml\"><securecookie host=\"^\\.airbnb\\.(?:ca|co\\.kr|co\\.uk|com|com\\.au|com\\.br|de|es|fr|it|jp|ru)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?airbnb\\.(ca|co\\.kr|co\\.uk|com|com\\.au|com\\.br|de|es|fr|it|jp|ru)/\" to=\"https://www.airbnb.$1/\"/><rule from=\"^http://(m\\.|www\\.)?airbnb\\.com/\" to=\"https://$1airbnb.com/\"/><rule from=\"^http://a(0|1)\\.muscache\\.com/\" to=\"https://a$1.muscache.com/\"/></ruleset>", "<ruleset name=\"Aircrack-ng.org (mismatched)\" default_off=\"mismatched\" f=\"Aircrack-ng.org-problematic.xml\"><securecookie host=\"^(?:.+\\.)?aircrack-ng\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airs\" default_off=\"expired, self-signed\" f=\"Airs.xml\"><rule from=\"^http://(?:www\\.)?airs\\.com/\" to=\"https://airs.com/\"/></ruleset>", "<ruleset name=\"AirshipVentures\" default_off=\"failed ruleset test\" f=\"AirshipVentures.xml\"><rule from=\"^http://(?:www\\.)?airshipventures\\.com/\" to=\"https://www.airshipventures.com/\"/></ruleset>", "<ruleset name=\"Airshow Journal\" default_off=\"mismatch\" f=\"Airshow-Journal.xml\"><rule from=\"^http://(\\w+)\\.airshowjournal\\.com/\" to=\"https://$1.airshowjournal.com/\"/></ruleset>", "<ruleset name=\"AirsoftGI.com\" f=\"AirsoftGI.com.xml\"><securecookie host=\"^\\.airsoftgi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airtime.pro\" f=\"Airtime.pro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airtop-pc.com\" f=\"Airtop-pc.com.xml\"><rule from=\"^http://www\\.airtop-pc\\.com/\" to=\"https://airtop-pc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airtricity\" platform=\"mixedcontent\" f=\"Airtricity.xml\"><rule from=\"^http://airtricity\\.com/\" to=\"https://www.airtricity.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.airtricity\\.com/\" to=\"https://$1.airtricity.com/\"/></ruleset>", "<ruleset name=\"AkademikerFörsäkring.se\" default_off=\"failed ruleset test\" f=\"AkademikerForsakring.se.xml\"><rule from=\"^http://(?:www\\.)?akademikerf[oö]rs[aä]kring\\.se/\" to=\"https://www.akademikerforsakring.se/\"/></ruleset>", "<ruleset name=\"AkademiskaHus.se (partial)\" f=\"AkademiskaHus.se.xml\"><securecookie host=\"^(?:portal|vpn)\\.akademiskahus\\.se$\" name=\".+\"/><rule from=\"^http://(portal|vpn)\\.akademiskahus\\.se/\" to=\"https://$1.akademiskahus.se/\"/></ruleset>", "<ruleset name=\"Edgesuite (mismatches)\" default_off=\"mismatch\" f=\"Akamai-mismatches.xml\"><rule from=\"^http://(\\w+\\.\\w+)\\.edgesuite\\.net/\" to=\"https://$1.edgesuite.net/\"/></ruleset>", "<ruleset name=\"Akamai.com (partial)\" f=\"Akamai.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akamai\" f=\"Akamai.xml\"><exclusion pattern=\"^http://ak1\\.abmr\\.net/$\"/><exclusion pattern=\"^http://[\\w_-]+-(?:f|i|s|lh|vh)\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://eaassets-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://imagesmtv-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://steamcommunity-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://zynga\\d-a.akamaihd\\.net/\"/><exclusion pattern=\"^http://tedcdnpb-a\\.akamaihd\\.net/\"/><securecookie host=\".*\\.abmr\\.net$\" name=\".+\"/><rule from=\"^http://ak1s\\.abmr\\.net/\" to=\"https://ak1s.abmr.net/\"/><rule from=\"^http://([^@:/\\.]+)\\.akamaihd\\.net/\" to=\"https://$1.akamaihd.net/\"/><rule from=\"^http://ak1\\.abmr\\.net/is/(www.imiclk|pixel\\.mathtag)\\.com(?=$|\\?)\" to=\"https://ak1s.abmr.net/is/$1.com\"/></ruleset>", "<ruleset name=\"Akamaized.net\" f=\"Akamaized.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akban.org\" f=\"Akban.org.xml\"><rule from=\"^http://images\\.akban\\.org/\" to=\"https://c3198132.ssl.cf0.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Akira.org\" f=\"Akira.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akismet\" f=\"Akismet.xml\"><rule from=\"^http://(?:www\\.)?akismet\\.com/\" to=\"https://akismet.com/\"/></ruleset>", "<ruleset name=\"aklamio.com\" f=\"Aklamio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akola Project.org (false MCB)\" platform=\"mixedcontent\" f=\"Akola_Project.org.xml\"><securecookie host=\"^\\.akolaproject\\.org$\" name=\".+\"/><rule from=\"^http://www\\.akolaproject\\.org/\" to=\"https://akolaproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aktien Check.de (partial)\" default_off=\"expired, self-signed\" f=\"Aktien_Check.de.xml\"><rule from=\"^http://partner\\.aktiencheck\\.de/\" to=\"https://partner.aktiencheck.de/\"/></ruleset>", "<ruleset name=\"Aktion-Deutschland-Hilft.de (partial)\" f=\"Aktion-Deutschland-Hilft.de.xml\"><rule from=\"^http://(?:www\\.)?aktion-deutschland-hilft\\.de/(css/|favicon\\.ico|fileadmin/|index\\.php\\?eID=adh_banner|typo3(?:conf|temp)/|uploads/)\" to=\"https://www.aktion-deutschland-hilft.de/$1\"/><rule from=\"^http://media\\.aktion-deutschland-hilft\\.de/\" to=\"https://d3c57cw0c70g44.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Aktivix.org\" f=\"Aktivix.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.aktivix\\.org/\" to=\"https://aktivix.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"al-akhbar\" f=\"Al-akhbar.xml\"><securecookie host=\"^(?:english)?\\.al-akhbar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alain Wolf.ch\" f=\"Alain_Wolf.ch.xml\"><securecookie host=\"^\\.alainwolf\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alamo Drafthouse\" f=\"Alamo-Drafthouse.xml\"><securecookie host=\"^drafthouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alamy\" f=\"Alamy.xml\"><securecookie host=\"^\\.alamy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alandroidnet.com\" f=\"Alandroidnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alaska Robotics\" default_off=\"mismatch\" f=\"Alaska-Robotics.xml\"><securecookie host=\"^alaskarobotics\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alaskarobotics\\.com/\" to=\"https://alaskarobotics.com/\"/></ruleset>", "<ruleset name=\"Alaska Airlines\" platform=\"mixedcontent\" f=\"AlaskaAirlines.xml\"><rule from=\"^http://alaskaair\\.com/\" to=\"https://www.alaskaair.com/\"/><rule from=\"^http://(careers|easybiz|myeagle|webselfservice|www)\\.alaskaair\\.com/\" to=\"https://$1.alaskaair.com/\"/></ruleset>", "<ruleset name=\"Alastair’s Place\" platform=\"mixedcontent\" f=\"Alastairs-Place.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"albinoloverats\" f=\"Albinoloverats.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlbumArsiv.com\" f=\"AlbumArsiv.com.xml\"><securecookie host=\"^(?:w*\\.)?albumarsiv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alcatel-Lucent.com (partial)\" f=\"Alcatel-Lucent.com.xml\"><exclusion pattern=\"^http://developer-enterprise.alcatel-lucent.com/(?!api_content(?:$|[?/])|components/|images/|libraries/|media/|modules/|plugins/|templates/|webapp/)\"/><securecookie host=\"^(?:\\.?applicationpartner|businessportal|service\\.esd|market|www3)\\.alcatel-lucent\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alcatel-lucent\\.com/\" to=\"https://www.alcatel-lucent.com/\"/><rule from=\"^http://corporatereporting\\.alcatel-lucent\\.com/.*\" to=\"https://www3.alcatel-lucent.com/corporate-portal/corporate-reporting-portal.html\"/><rule from=\"^http://(applicationpartner|businessportal|developer-enterprise|service\\.esd|market|my-home|(?:services\\.)?support|www3)\\.alcatel-lucent\\.com/\" to=\"https://$1.alcatel-lucent.com/\"/><rule from=\"^http://www2\\.alcatel-lucent\\.com/(?:\\?.*)?$\" to=\"https://wwww.alcatel-lucent.com/\"/><rule from=\"^http://(market|services\\.support)\\.lucent\\.com/\" to=\"https://$1.lucent.com/\"/></ruleset>", "<ruleset name=\"alchemistowl.org\" f=\"Alchemistowl.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alchemy Global.com\" f=\"Alchemy_Global.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alcuda (partial)\" f=\"Alcuda.xml\"><securecookie host=\"^affiliates\\.upforitnetworks\\.com$\" name=\".*\"/><rule from=\"^http://whitelabeldating\\.(?:alcuda|upforitnetworks)\\.com/\" to=\"https://whitelabeldating.upforitnetworks.com/\"/><rule from=\"^http://(?:cdn\\.)?wl\\.easydategroup\\.com/static/\" to=\"https://www.upforit.com/static/\"/><rule from=\"^http://(?:cdn\\.picstat2|upforit)\\.com/\" to=\"https://www.upforit.com/\"/><rule from=\"^http://shagaholic\\.com/\" to=\"https://www.shagaholic.com/\"/><rule from=\"^http://www\\.(shagaholic|upforit)\\.com/(login\\.html|static/)\" to=\"https://www.$1.com/$2\"/><rule from=\"^http://affiliates\\.upforitnetworks\\.com/\" to=\"https://affiliates.upforitnetworks.com/\"/><rule from=\"^http://(?:www\\.)?xhamster\\.biz/static/\" to=\"https://www.upforit.com/static/\"/></ruleset>", "<ruleset name=\"Aleavia.com (partial)\" f=\"Aleavia.xml\"><rule from=\"^http://(www\\.)?shop\\.aleavia\\.com/(?=\\w+_\\d+\\.css|checkout\\.sc|images/|media/|qsctemplates/|static/)\" to=\"https://$1shop.aleavia.com/\"/></ruleset>", "<ruleset name=\"Alecomm.com\" f=\"Alecomm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlertBot\" f=\"AlertBot.xml\"><securecookie host=\"^w*\\.alertbot\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alertbot\\.com/\" to=\"https://www.alertbot.com/\"/></ruleset>", "<ruleset name=\"Alert Investor Relations\" f=\"Alert_Investor_Relations.xml\"><securecookie host=\"^\\.alertir\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alertir\\.com/\" to=\"https://www.alertir.com/\"/><rule from=\"^http://vp(\\d+)\\.alertir\\.com/\" to=\"https://vp$1.alertir.com/\"/></ruleset>", "<ruleset name=\"Alert Logic.com\" f=\"Alert_Logic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alert Online.nl\" f=\"Alert_Online.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alestic.com\" f=\"Alestic.com.xml\"><rule from=\"^http://feeds\\.alestic\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://www\\.alestic\\.com/\" to=\"https://alestic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alex.se\" f=\"Alex.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alex Cabal.com\" f=\"Alex_Cabal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexa (partial)\" f=\"Alexa.xml\"><exclusion pattern=\"^http://www\\.alexa\\.com/(?!favicon\\.ico|css/|images/|secure/|\\w+/wp-content/)\"/><rule from=\"^http://pcache\\.alexa\\.com/\" to=\"https://d1uki75gjpelap.cloudfront.net/\"/><rule from=\"^http://xslt\\.alexa\\.com/\" to=\"https://d1loejjcvv1d9m.cloudfront.net/\"/><rule from=\"^http://pixel\\.alexametrics\\.com/\" to=\"https://d5nxst8fruw4z.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexander Interactive (partial)\" f=\"Alexander-Interactive.xml\"><rule from=\"^http://(?:cdn|origin)\\.at\\.ai/\" to=\"https://dzutovmmu6g2t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"AlexanderCoward.com\" f=\"AlexanderCoward.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexandras Angel Gifts.co.uk (partial)\" default_off=\"expired\" f=\"Alexandras_Angel_Gifts.co.uk.xml\"><exclusion pattern=\"^http://alexandrasangelgifts\\.co\\.uk/+(?!wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexhaydock.co.uk\" f=\"Alexhaydock.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alfa Media Partner (partial)\" default_off=\"failed ruleset test\" f=\"Alfa-Media-Partner.xml\"><rule from=\"^http://owa\\.alfa\\.de/\" to=\"https://owa.alfa.de/\"/><rule from=\"^http://sso\\.alfa-openmedia\\.de/\" to=\"https://sso.alfa-openmedia.de/\"/></ruleset>", "<ruleset name=\"Alfa.cz\" f=\"Alfa.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alfresco.com\" f=\"Alfresco.com.xml\"><securecookie host=\"^my\\.alfresco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Algolia.com\" f=\"Algolia.com.xml\"><securecookie host=\"^www\\.algolia\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|hn|status|www)\\.)?algolia\\.com/\" to=\"https://$1algolia.com/\"/></ruleset>", "<ruleset name=\"Algonquin College\" f=\"Algonquin-College.xml\"><securecookie host=\"^([\\w.-]+)\\.algonquincollege\\.com$\" name=\".+\"/><rule from=\"^http://([\\w.-]+)\\.algonquincollege\\.com/\" to=\"https://$1.algonquincollege.com/\"/><exclusion pattern=\"^http://myalgonquin2\\.algonquincollege\\.com/\"/></ruleset>", "<ruleset name=\"AliCDN.com (partial)\" f=\"AliCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliExpress.com (partial)\" f=\"AliExpress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alianza\" f=\"Alianza.xml\"><securecookie host=\"\\.alianza\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alias.io\" default_off=\"failed ruleset test\" f=\"Alias.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alibaba.com (partial)\" f=\"Alibaba.xml\"><securecookie host=\"^\\.alibaba\\.com$\" name=\"^ali_beacon_id$\"/><securecookie host=\"^(?:102|escrow|job|security)\\.alibaba\\.com$\" name=\".+\"/><rule from=\"^http://style\\.alibaba\\.com/\" to=\"https://stylessl.alibaba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliceDSL\" default_off=\"failed ruleset test\" f=\"AliceDSL.xml\"><securecookie host=\"^(?:.*\\.)?alice-dsl\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alice\\.de/\" to=\"https://www.alice-dsl.de/\"/><rule from=\"^http://alice\\.de/\" to=\"https://www.alice-dsl.de/\"/><rule from=\"^http://alice-dsl\\.de/\" to=\"https://www.alice-dsl.de/\"/><rule from=\"^http://(?:www\\.)?alice-dsl\\.de/\" to=\"https://www.alice-dsl.de/\"/></ruleset>", "<ruleset name=\"Alien.net.au\" f=\"Alien.net.au.xml\"><securecookie host=\"^\\.alien\\.net\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlienVault (partial)\" f=\"AlienVault.xml\"><securecookie host=\"^.*\\.alienvault\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alienvault\\.com/\" to=\"https://www.alienvault.com/\"/><rule from=\"^http://(cloud|communities|resources)\\.alienvault\\.com/\" to=\"https://$1.alienvault.com/\"/><rule from=\"^http://forums\\.alienvault\\.com/\" to=\"https://alienvault.vanillaforums.com/\"/></ruleset>", "<ruleset name=\"Aliimg.com (partial)\" default_off=\"mismatched\" f=\"Aliimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alimama.com (partial)\" f=\"Alimama.com.xml\"><rule from=\"^http://alimama\\.com/\" to=\"https://www.alimama.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alionet.org\" f=\"Alionet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alipay.com (javascript loop)\" default_off=\"js redirect to http\" f=\"Alipay.com-noscript.xml\"><securecookie host=\"^fun\\.alipay\\.com$\" name=\".+\"/><rule from=\"^http://fun\\.alipay\\.com/\" to=\"https://fun.alipay.com/\"/></ruleset>", "<ruleset name=\"Alipay.com (partial)\" f=\"Alipay.com.xml\"><securecookie host=\"^(?!fun\\.).*\\.alipay\\.com$\" name=\".+\"/><rule from=\"^http://alipay\\.com/\" to=\"https://www.alipay.com/\"/><rule from=\"^http://job\\.alipay\\.com/\" to=\"https://job.alibaba.com/\"/><rule from=\"^http://static\\.alipayobjects\\.com/\" to=\"https://a.alipayobjects.com/\"/><rule from=\"^http://pic\\.alipayobjects\\.com/\" to=\"https://i.alipayobjects.com/\"/><rule from=\"^http://fun\\.alipay\\.com/favicon.ico$\" to=\"https://fun.alipay.com/favicon.ico\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alitrip.com\" f=\"Alitrip.com.xml\"><securecookie host=\"^\\.alitrip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aliunicorn.com\" f=\"Aliunicorn.com.xml\"><rule from=\"^http://style\\.aliunicorn\\.com/\" to=\"https://stylessl.aliunicorn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alivenotdead.com\" f=\"Alivenotdead.com.xml\"><securecookie host=\"^(?:www)?\\.alivenotdead\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alivenotdead\\.com/\" to=\"https://www.alivenotdead.com/\"/><rule from=\"^http://s3\\.alivenotdead\\.com/\" to=\"https://s3.alivenotdead.com/\"/></ruleset>", "<ruleset name=\"Aliyun.com (partial)\" f=\"Aliyun.com.xml\"><securecookie host=\"^(?:account|buy|(?:bsn|workorder)\\.console|finance|workorder)\\.aliyun\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alkasir.com\" f=\"Alkasir.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alkohol.cz\" f=\"Alkohol.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All Above Offers\" platform=\"mixedcontent\" f=\"All-Above-Offers.xml\"><rule from=\"^http://(?:www\\.)?abovealloffers\\.com/\" to=\"https://www.abovealloffers.com/\"/></ruleset>", "<ruleset name=\"All-inkl.com\" f=\"All-Inkl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?all-inkl\\.\\w\\w/\" to=\"https://all-inkl.com/\"/><rule from=\"^http://([^/:@.]+\\.)?all-inkl\\.com/\" to=\"https://$1all-inkl.com/\"/></ruleset>", "<ruleset name=\"all4xs.net\" f=\"All4xs.net.xml\"><securecookie host=\"^(?:www\\.)?all4xs\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllClear ID.com\" f=\"AllClearid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllCoin.com\" f=\"AllCoin.com.xml\"><securecookie host=\"^(?:www)?\\.allcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllCrypt.com\" default_off=\"needs clearnet testing\" f=\"AllCrypt.com.xml\"><securecookie host=\"^\\.allcrypt\\.com$\" name=\".+\"/><rule from=\"^http://support\\.allcrypt\\.com/.*\" to=\"https://allcrypt.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllDebrid.com (partial)\" default_off=\"failed ruleset test\" f=\"AllDebrid.com.xml\"><securecookie host=\"^(?:w*\\.)?alldebrid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllDebrid.fr\" f=\"AllDebrid.fr.xml\"><securecookie host=\"^(?:www\\.)?alldebrid\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllJoyn.org\" default_off=\"mismatched\" f=\"AllJoyn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllMyChanges.com\" f=\"AllMyChanges.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllPlayers.com\" f=\"AllPlayers.com.xml\"><securecookie host=\".*\\.allplayers\\.com$\" name=\".+\"/><rule from=\"^http://((?:f|m|platform|store|usarugbystats|www)\\.)?allplayers\\.com/\" to=\"https://$1allplayers.com/\"/></ruleset>", "<ruleset name=\"AllPosters.com (partial)\" f=\"AllPosters.com.xml\"><securecookie host=\"^(?:\\.|affiliates\\.|\\.atrack\\.)?allposters\\.com$\" name=\".+\"/><rule from=\"^http://allposters\\.com/\" to=\"https://www.allposters.com/\"/><rule from=\"^http://imagecache(2)?\\.allposters\\.com/\" to=\"https://secureimg$1.allposters.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllPosters images.com\" f=\"AllPosters_images.com.xml\"><rule from=\"^http://cache1\\.allpostersimages\\.com/\" to=\"https://secureimg.allposters.com/\"/></ruleset>", "<ruleset name=\"AllSeen Alliance.org\" f=\"AllSeen_Alliance.org.xml\"><securecookie host=\"^(?:ask|jira|wiki)\\.allseenalliance\\.org$\" name=\".+\"/><rule from=\"^http://((?:ask|git|jira|lists|wiki|www)\\.)?allseenalliance\\.org/\" to=\"https://$1allseenalliance.org/\"/></ruleset>", "<ruleset name=\"AllShare Play\" default_off=\"failed ruleset test\" f=\"AllShare_Play.xml\"><securecookie host=\"^.*\\.allshareplay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?allshareplay\\.com/\" to=\"https://www.allshareplay.com/\"/><rule from=\"^http://(fwk|m)\\.allshareplay\\.com/\" to=\"https://$1.allshareplay.com/\"/></ruleset>", "<ruleset name=\"AllThingsD.com (mismatched)\" default_off=\"mismatched\" f=\"AllThingsD.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllThingsD (partial)\" default_off=\"failed ruleset test\" f=\"AllThingsD.xml\"><exclusion pattern=\"^http://allthingsd\\.com/+(?!favicon\\.ico|files/|theme/|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllUnmanaged.com\" f=\"AllUnmanaged.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllYou.net\" f=\"AllYou.net.xml\"><securecookie host=\"^(?:www)?\\.allyou\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All About Security\" default_off=\"mismatched, self-signed\" f=\"All_About_Security.xml\"><securecookie host=\"^www\\.all-about-security\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?all-about-security\\.de/\" to=\"https://www.all-about-security.de/\"/></ruleset>", "<ruleset name=\"All American Trains\" f=\"All_American_Trains.xml\"><securecookie host=\"^\\.(?:www\\.)?aat-net\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All Day Calm\" f=\"All_Day_Calm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All My Base.com\" f=\"All_My_Base.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All Star Tire\" default_off=\"failed ruleset test\" f=\"All_Star_Tire.xml\"><securecookie host=\"^(?:.*\\.)?allstartire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All You Can Arcade.com (partial)\" f=\"All_You_Can_Arcade.com.xml\"><securecookie host=\"^www\\.allyoucanarcade\\.com$$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?allyoucanarcade\\.com/\" to=\"https://www.allyoucanarcade.com/\"/><rule from=\"^http://blog\\.allyoucanarcade\\.com/wp-content/\" to=\"https://secure.bluehost.com/~findmymi/allyoucanarcadeblog/wp-content/\"/></ruleset>", "<ruleset name=\"Allegro\" default_off=\"reported broken\" f=\"Allegro.xml\"><rule from=\"^http://(?:www\\.)?allegro\\.pl/\" to=\"https://ssl.allegro.pl/\"/></ruleset>", "<ruleset name=\"Alliance '90/The Greens (partial)\" f=\"Alliance-90-The-Greens.xml\"><securecookie host=\"^www\\.gruene\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllianceBernstein (partial)\" f=\"AllianceBernstein.xml\"><securecookie host=\"^(?:www\\.)?alliancebernstein\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(alliance)?bernstein\\.com/\" to=\"https://$1$2bernstein.com/\"/></ruleset>", "<ruleset name=\"Allianz für Cyber-Sicherheit\" f=\"Allianz_fur_Cyber-Sicherheit.xml\"><securecookie host=\"^www\\.(?:allianz-?fuer-?cybersicherheit\\.(?:de|org)|cybersicherheits-allianz\\.de)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(allianz-?fuer-?cybersicherheit\\.(?:de|org)|cybersicherheits-allianz\\.de)/\" to=\"https://www.$1/\"/></ruleset>", "<ruleset name=\"AlliedModders\" f=\"AlliedMods.xml\"><securecookie host=\"^(?:.*\\.)?alliedmods\\.net$\" name=\".+\"/><rule from=\"^http://([^/@:\\.]+)\\.alliedmods\\.net/\" to=\"https://$1.alliedmods.net/\"/><rule from=\"^http://alliedmods\\.net/\" to=\"https://alliedmods.net/\"/></ruleset>", "<ruleset name=\"Allied Media.org\" default_off=\"failed ruleset test\" f=\"Allied_Media.org.xml\"><securecookie host=\"^\\.(?:store|talk)\\.alliedmedia\\.org$\" name=\".+\"/><rule from=\"^http://((?:amc|store|talk|www)\\.)?alliedmedia\\.org/\" to=\"https://$1alliedmedia.org/\"/></ruleset>", "<ruleset name=\"Allistene.fr\" f=\"Allistene.fr.xml\"><rule from=\"^http://allistene\\.fr/\" to=\"https://www.allistene.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allizom.org (partial)\" f=\"Allizom.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://developer-dev\\.allizom\\.org/+\" to=\"https://allizom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allmyvideos.net (partial)\" f=\"Allmyvideos.net.xml\"><securecookie host=\"^(?:api|cacti)?\\.allmyvideos\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alloscomp.com\" platform=\"cacert\" default_off=\"expired\" f=\"Alloscomp.com.xml\"><rule from=\"^http://(?:www\\.)?alloscomp\\.com/\" to=\"https://www.alloscomp.com/\"/></ruleset>", "<ruleset name=\"Alloy Digital (partial)\" default_off=\"failed ruleset test\" f=\"Alloy_Digital.xml\"><rule from=\"^http://cdn\\.b5media\\.com/\" to=\"https://d36nwfv100lk1n.cloudfront.net/\"/><rule from=\"^http://cdn\\.blisstree\\.com/\" to=\"https://d2oiv51wjnj5wa.cloudfront.net/\"/><rule from=\"^http://cdn\\.crushable\\.com/\" to=\"https://d1r0ty19i0gtvo.cloudfront.net/\"/><rule from=\"^http://cdn\\.mommyish\\.com/\" to=\"https://dkuyan05fvz6l.cloudfront.net/\"/><rule from=\"^http://cdn\\.thegloss\\.com/\" to=\"https://daispricmon6s.cloudfront.net/\"/><rule from=\"^http://cdn\\.thegrindstone\\.com/\" to=\"https://d176o63igdzvgd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Allpoetry\" default_off=\"breaks login\" f=\"Allpoetry.xml\"><securecookie host=\"^\\.?allpoetry\\.com$\" name=\".+\"/><rule from=\"^http://(?:(a\\.)|www\\.)?allpoetry\\.com/\" to=\"https://$1allpoetry.com/\"/></ruleset>", "<ruleset name=\"Alltop\" default_off=\"expired, self-signed\" f=\"Alltop.xml\"><rule from=\"^http://(?:www\\.)?alltop\\.com/\" to=\"https://alltop.com/\"/></ruleset>", "<ruleset name=\"AllTube Download\" f=\"AlltubeDownload.xml\"><rule from=\"^http://(www\\.)?alltubedownload\\.net/\" to=\"https://alltube.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Alluremedia (partial)\" f=\"Alluremedia.xml\"><rule from=\"^http://edge\\.alluremedia\\.com\\.au/(assets/img|m)/\" to=\"https://i0.wp.com/edge.alluremedia.com.au/$1/\"/><rule from=\"^http://(?:edge|secure)\\.alluremedia\\.com/\" to=\"https://secure.alluremedia.com.au/\"/></ruleset>", "<ruleset name=\"Ally Financial (problematic)\" default_off=\"mismatched\" f=\"Ally_Financial-problematic.xml\"><rule from=\"^http://community\\.ally\\.com/\" to=\"https://community.ally.com/\"/></ruleset>", "<ruleset name=\"Ally Financial (partial)\" default_off=\"failed ruleset test\" f=\"Ally_Financial.xml\"><securecookie host=\".*\\.ally\\.com$\" name=\".+\"/><rule from=\"^http://((?:billpay|chat|m|online-application|secure|survey|www)\\.)?ally\\.com/\" to=\"https://$1ally.com/\"/><rule from=\"^http://(?:www\\.)?allybank\\.com/\" to=\"https://www.ally.com/\"/><rule from=\"^http://www\\.smartauction\\.biz/\" to=\"https://www.smartauction.biz/\"/></ruleset>", "<ruleset name=\"alonetone (partial)\" f=\"Alonetone.xml\"><rule from=\"^http://stash\\.alonetone\\.com/\" to=\"https://s3.amazonaws.com/stash.alonetone.com/\"/></ruleset>", "<ruleset name=\"AlphaSSL\" f=\"AlphaSSL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alpha Dominche.com\" default_off=\"404\" f=\"Alpha_Dominche.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alpine Linux.org (partial)\" platform=\"mixedcontent\" f=\"Alpine_Linux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlreadyHosting.com (partial)\" default_off=\"connection refused\" f=\"AlreadyHosting.com.xml\"><securecookie host=\"^(?:.*\\.)?bestwebhostinggeek\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alt-Sheff.org\" f=\"Alt-Sheff.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AltQuick.co\" f=\"AltQuick.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alta Ski Area\" f=\"Alta_Ski_Area.xml\"><securecookie host=\"^shop\\.alta\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alta\\.com/\" to=\"https://www.alta.com/\"/><rule from=\"^http://shop\\.alta\\.com/\" to=\"https://shop.alta.com/\"/></ruleset>", "<ruleset name=\"Alteeve.ca\" f=\"Alteeve.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlterNet.org (partial)\" f=\"AlterNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?alternet\\.org/(?!images/)\"/><exclusion pattern=\"^http://beta\\.alternet\\.org/+(?!sandbox/)\"/><rule from=\"^http://blogs\\.alternet\\.org/speakeasy/wp-content/avatars/\" to=\"https://images.alternet.org/images/avatars/\"/><rule from=\"^http://((?:beta|donate|files|images|www)\\.)?alternet\\.org/\" to=\"https://$1alternet.org/\"/></ruleset>", "<ruleset name=\"Altera.com (partial)\" f=\"Altera.com.xml\"><rule from=\"^http://(?:www\\.)?altera\\.com/(?=common/|favicon\\.ico|js\\.lib/|myaltera(?:$|[?/]))\" to=\"https://www.altera.com/\"/></ruleset>", "<ruleset name=\"Altera Praxis.com\" default_off=\"self-signed\" f=\"Altera_Praxis.com.xml\"><rule from=\"^http://(?:www\\.)?alterapraxis\\.com/\" to=\"https://www.alterapraxis.com/\"/></ruleset>", "<ruleset name=\"AlternC (partial)\" f=\"AlternC.xml\"><securecookie host=\"^(?:www\\.)?alternc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlternaLabs (partial)\" f=\"AlternaLabs.xml\"><rule from=\"^http://(www\\.)?alternalabs\\.com/(assets/|favicon\\.ico|wp-content/)\" to=\"https://$1alternalabs.com/$2\"/></ruleset>", "<ruleset name=\"Alternate\" platform=\"mixedcontent\" f=\"Alternate.xml\"><rule from=\"^http://([^/:@]*)\\.alternate\\.be/\" to=\"https://$1.alternate.be/\"/><rule from=\"^http://alternate\\.be/\" to=\"https://alternate.be/\"/><rule from=\"^http://([^/:@]*)\\.alternate\\.nl/\" to=\"https://$1.alternate.nl/\"/><rule from=\"^http://alternate\\.nl/\" to=\"https://alternate.nl/\"/><rule from=\"^http://([^/:@]*)\\.alternate-b2b\\.nl/\" to=\"https://$1.alternate-b2b.nl/\"/><rule from=\"^http://alternate-b2b\\.nl/\" to=\"https://alternate-b2b.nl/\"/></ruleset>", "<ruleset name=\"Alternatif Bilisim.org\" default_off=\"failed ruleset test\" f=\"Alternatif_Bilisim.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternatives.ca\" f=\"Alternatives.ca.xml\"><rule from=\"^http://(?:www\\.)?alternatives\\.ca/\" to=\"https://www.alternatives.ca/\"/></ruleset>", "<ruleset name=\"Alternativet (partial)\" f=\"Alternativet.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternativeto.net\" f=\"Alternativeto.net.xml\"><rule from=\"^http://www\\.alternativeto\\.net/\" to=\"https://alternativeto.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternativlos.org\" f=\"Alternativlos.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altex.ro (false MCB)\" platform=\"mixedcontent\" f=\"Altex.ro.xml\"><securecookie host=\"^\\.\" name=\"^_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.altex\\.ro/\" to=\"https://d2qpxedcu5ji30.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alticore (mismatches)\" default_off=\"Akamai certificate, expired\" f=\"Alticore-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?amwaygrand\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?amwaygrand\\.com/\" to=\"https://www.amwaygrand.com/\"/><rule from=\"^http://lauramercier\\.ugc\\.bazaarvoice\\.com/\" to=\"https://lauramercier.ugc.bazaarvoice.com/\"/></ruleset>", "<ruleset name=\"Alticore (partial)\" f=\"Alticore.xml\"><exclusion pattern=\"^http://www\\.amway\\.com/Shop/Product/\"/><rule from=\"^http://(?:www\\.)?amway\\.com/\" to=\"https://www.amway.com/\"/><rule from=\"^http://(www\\.)?bww\\.com/(css/|images/|Common/CharitableGiving\\.aspx)\" to=\"https://$1bww.com/$2\"/><rule from=\"^http://(www\\.)?lauramercier\\.com/(store/(account|cart|template)/|subscription/)\" to=\"https://$1lauramercier.com/$2\"/></ruleset>", "<ruleset name=\"altii.de\" f=\"Altii.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altimate Wellness (partial)\" f=\"Altimate_Wellness.xml\"><rule from=\"^http://(www\\.)?altimatewellness\\.com/wp-(admin(?:/|\\.php)|content/|includes/)\" to=\"https://$1altimatewellness.com/wp-$2\"/></ruleset>", "<ruleset name=\"Altinget.dk (partial)\" f=\"Altinget.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altmetric.com\" f=\"Altmetric.com.xml\"><exclusion pattern=\"^http://(www\\.)?altmetric.com/blog/\"/><rule from=\"^https://(www\\.)?altmetric\\.com/blog/\" to=\"http://$1altmetric.com/blog/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AltonTowers (broken)\" default_off=\"broken\" f=\"AltonTowers.xml\"><securecookie host=\"^(?:.+\\.)?altontowers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?altontowers\\.com/\" to=\"https://www.altontowers.com/\"/></ruleset>", "<ruleset name=\"Altoona Mirror.com (partial)\" f=\"Altoona-Mirror.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mobile\\.altoonamirror\\.com/$\" to=\"https://www.altoonamirror.com/page/wap.frontPage/\"/><rule from=\"^http://(?:mobile\\.)?altoonamirror\\.com/\" to=\"https://www.altoonamirror.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlumFX.com\" f=\"AlumFX.com.xml\"><rule from=\"^http://(www\\.)?alumfx\\.com/images/\" to=\"https://$1alumfx.com/images/\"/></ruleset>", "<ruleset name=\"alumniconnections.com\" f=\"Alumniconnections.com.xml\"><securecookie host=\"^secure\\.www\\.alumniconnections\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.www\\.|www\\.)?alumniconnections\\.com/\" to=\"https://$1alumniconnections.com/\"/></ruleset>", "<ruleset name=\"alwaysdata.com (problematic, false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Alwaysdata.com-problematic.xml\"><securecookie host=\"^(?:\\.?blog|forum)\\.alwaysdata\\.com$\" name=\".+\"/><rule from=\"^http://(blog|forum)\\.alwaysdata\\.com/\" to=\"https://$1.alwaysdata.com/\"/></ruleset>", "<ruleset name=\"alwaysdata.com (partial)\" f=\"Alwaysdata.com.xml\"><securecookie host=\"^(?!blog\\.|forum\\.)\\w+\\.alwaysdata\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|help|php(?:my|pg)admin|static|status|webmail|www)\\.)?alwaysdata\\.com/\" to=\"https://$1alwaysdata.com/\"/></ruleset>", "<ruleset name=\"Alzforum.org (partial)\" f=\"Alzforum.org.xml\"><rule from=\"^http://(www\\.)?alzforum\\.org/(?=favicon\\.ico|(?:login|my-alzforum|password-recovery|registration)(?:$|[?/])|sites/)\" to=\"https://$1alzforum.org/\"/></ruleset>", "<ruleset name=\"Alzheimer's Association (partial)\" f=\"Alzheimers_Association.xml\"><exclusion pattern=\"^http://act\\.alz\\.org/+(?!$|\\?|\\w+/images/|css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?:sdc\\.|www\\.)?alz\\.org$\" name=\".+\"/><rule from=\"^http://((?:sdc|shop|www)\\.)?alz\\.org/\" to=\"https://$1alz.org/\"/></ruleset>", "<ruleset name=\"Alzheimer's Society (partial)\" default_off=\"failed ruleset test\" f=\"Alzheimers_Society.xml\"><securecookie host=\"^(?:www)?\\.alzheimers\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alzheimers\\.org\\.uk/\" to=\"https://www.alzheimers.org.uk/\"/><rule from=\"^http://shop\\.alzheimers\\.org\\.uk/(checkout(?:$|\\?|/)|_css/|images/|_img/|_js/)\" to=\"https://shop.alzheimers.org.uk/$1\"/></ruleset>", "<ruleset name=\"AmEx Travel.com\" f=\"AmEx_Travel.com.xml\"><securecookie host=\"^faq\\.amextravel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AmExserve-static.com\" f=\"AmExserve-static.com.xml\"><rule from=\"^http://cdnsecureservep1\\.amexserve-static\\.com/\" to=\"https://cdnsecureservep1.amexserve-static.com/\"/></ruleset>", "<ruleset name=\"Am I unique.org\" f=\"Am_I_unique.org.xml\"><rule from=\"^http://www\\.amiunique\\.org/\" to=\"https://amiunique.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amadeu-Antonio-Stiftung.de\" f=\"Amadeu-Antonio-Stiftung.de.xml\"><rule from=\"^http://amadeu-antonio-stiftung\\.de/\" to=\"https://www.amadeu-antonio-stiftung.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amahi.org (partial)\" f=\"Amahi.org.xml\"><securecookie host=\"^(?:(?:bugs|\\.shop|wiki|www)\\.)?amahi\\.org$\" name=\".+\"/><rule from=\"^http://((?:blog|bugs|forums|shop|wiki|www)\\.)?amahi\\.org/\" to=\"https://$1amahi.org/\"/><rule from=\"^http://talk\\.amahi\\.org/.*\" to=\"https://webchat.freenode.net/?channels=amahi\"/></ruleset>", "<ruleset name=\"Amara (false MCB)\" platform=\"mixedcontent\" f=\"Amara.xml\"><securecookie host=\"^www\\.amara\\.org$\" name=\".+\"/><rule from=\"^https?://(www\\.)?amara\\.org/\" to=\"https://www.amara.org/\"/></ruleset>", "<ruleset name=\"amazingweb\" f=\"Amazingweb.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon-Adsystem.com (partial)\" f=\"Amazon-Adsystem.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ps-us\\.amazon-adsystem\\.com/\" to=\"https://dnd1av4y9k5gc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon Associates\" f=\"Amazon-Associates.xml\"><securecookie host=\"^widgets\\.amazon\\.com$\" name=\".+\"/><rule from=\"^http://rcm-images\\.amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"astore.Amazon.com\" default_off=\"sometimes returns 500\" f=\"Amazon.com.astore.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.jobs\" f=\"Amazon.jobs.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon (needs feedback)\" default_off=\"needs testing and feedback\" f=\"Amazon.xml\"><exclusion pattern=\"^http://askville\\.amazon\\.com/(?!css/)\"/><exclusion pattern=\"^http://www\\.amazon\\.[^/]+/+(?!|$|\\?|(?:.+/)?(?:b|business|gp/(?:browse\\.html|search)|mn/search|s)(?:$|[?/]))\"/><securecookie host=\"^local\\.amazon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?amazon\\.c(a|n|om)/mn/search/uedata/\" to=\"https://www.amazon.c$1/uedata/\"/><rule from=\"^http://(?:www\\.)?amazon\\.c(a|n|om)/\" to=\"https://www.amazon.c$1/\"/><rule from=\"^http://(askville|developer|local)\\.amazon\\.com/\" to=\"https://$1.amazon.com/\"/></ruleset>", "<ruleset name=\"Amazon Web Services (break zoom)\" default_off=\"breaks image zoom\" f=\"AmazonAWS-breakzoom.xml\"><rule from=\"^http://ecx\\.images-amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/></ruleset>", "<ruleset name=\"Amazon Web Services\" f=\"AmazonAWS.xml\"><exclusion pattern=\"^http://webservices\\.amazon\\.com/scratchpad/\"/><exclusion pattern=\"^http://(?:static\\.via\\.me|img\\.wired\\.co\\.uk|s3\\.sandbaguk\\.com|spiegeltv-ivms2-restapi|www\\.mercyships\\.org|www-prod-storage\\.cloud\\.caltech\\.edu)\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://badracket-website\\.s3\\.amazonaws\\.com/swf/soundmanager\\d_flash\\d\\.swf\"/><exclusion pattern=\"^http://s3\\.amazonaws\\.com/pb_(sfx_)?previews/\"/><exclusion pattern=\"^http://ec\\.images-amazon\\.com/$\"/><exclusion pattern=\"^http://em\\.css\\.s3\\.amazonaws\\.com/style\\.css\"/><exclusion pattern=\"^http://s3\\.lbrcdn\\.net\\.s3-external-3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://charts-datawrapper\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://darkskysatellite(?:maps)?\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://g-ecx\\.images-amazon\\.com/.*(?:[mM][pP]3|zeitgeist|digital/music)\"/><exclusion pattern=\"^http://ecx\\.images-amazon\\.com/\"/><rule from=\"^http://dis(\\.resized)?\\.images\\.s3\\.amazonaws\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/dis$1.images/\"/><rule from=\"^http://cms\\.kiva\\.org\\.s3\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/cms.kiva.org/\"/><rule from=\"^http://fls-eu\\.amazon\\.co\\.uk/\" to=\"https://fls-eu.amazon.co.uk/\"/><rule from=\"^http://((?:docs|forums)\\.aws|aws|aws-portal|fls-eu|fls-na|payments|sis|webservices)\\.amazon\\.com/\" to=\"https://$1.amazon.com/\"/><rule from=\"^http://s3(?:-website)?(-ap-(?:nor|sou)theast-1|-eu-central-\\d|-(?:eu|us)-west-\\d|-external-\\d|-sa-east-1)?\\.amazonaws\\.com/\" to=\"https://s3$1.amazonaws.com/\"/><rule from=\"^http://static-course-assets\\.s3\\.amazonaws\\.com/\" to=\"https://static-course-assets.s3.amazonaws.com/\"/><rule from=\"^http://([\\w-]+)\\.s3(-ap-(?:nor|sou)theast-1|-(?:eu|us)-west-\\d|-external-\\d|-sa-east-1)?\\.amazonaws\\.com/\" to=\"https://$1.s3$2.amazonaws.com/\"/><rule from=\"^http://([\\w.-]+)\\.s3-us-west-2\\.amazonaws\\.com/\" to=\"https://s3-us-west-2.amazonaws.com/$1/\"/><rule from=\"^http://s3-website-us-east-1\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/\"/><rule from=\"^http://(?:www\\.)?amazonwebservices\\.com/\" to=\"https://aws.amazon.com/\"/><rule from=\"^http://developer\\.amazonwebservices\\.com/\" to=\"https://developer.amazonwebservices.com/\"/><rule from=\"^http://media\\.amazonwebservices\\.com/\" to=\"https://s3.amazonaws.com/awsmedia/\"/><rule from=\"^http://(?:g-images\\.|(?:ec[5x]|g-ecx)\\.images-)amazon\\.com/\" to=\"https://d1ge0kk1l5kms0.cloudfront.net/\"/><rule from=\"^http://(?:(?:ec[1-8x]|z-ak)\\.images-|images(?:-jp)?\\.)amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/><exclusion pattern=\"^http://amazon-zg\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://[^@:/]+images[^@:/]+/images/G/01/zeitgeist/mp3player\"/><rule from=\"^http://images-(eu|fe|na)\\.ssl-images-amazon\\.com/\" to=\"https://images-$1.ssl-images-amazon.com/\"/></ruleset>", "<ruleset name=\"AmazonSupply.com\" f=\"AmazonSupply.com.xml\"><securecookie host=\"^(?:staging|www)?\\.amazonsupply\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon EU (we need feedback)\" default_off=\"needs testing and feedback\" f=\"Amazon_EU.xml\"><exclusion pattern=\"^http://www\\.amazon\\.[\\w.]+/+(?!$|\\?|(?:ap|(?:[\\w-]+/)?b/|gp/(?:BIT/InternetBasedAds|cart|css|help|prime|primecentral|registry/wishlist)|s)(?:$|[?/]))\"/><securecookie host=\"^local\\.amazon\\.co\\.uk$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon Japan (partial)\" f=\"Amazon_JP.xml\"><rule from=\"^http://(?:www\\.)?amazon\\.co\\.jp/(ap|gp/(?:bestsellers|cart|cobrandcard|registry|uedata))/\" to=\"https://www.amazon.co.jp/$1/\"/></ruleset>", "<ruleset name=\"Amazon Trust.com\" f=\"Amazon_Trust.com.xml\"><rule from=\"^http://amazontrust\\.com/([^?]*).*\" to=\"https://www.amazontrust.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon blogs.com\" f=\"Amazon_blogs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amber Swann Publishing (partial)\" f=\"Amber_Swann_Publishing.xml\"><rule from=\"^http://(www\\.)?amberswann\\.com/(components/|favicon\\.ico|images/|libraries/|media/|modules/|plugins/|templates/)\" to=\"https://$1amberswann.com/$2\"/></ruleset>", "<ruleset name=\"amblin.io (partial)\" f=\"Amblin.io.xml\"><securecookie host=\"^amblin\\.io$\" name=\".+\"/><rule from=\"^http://amblin\\.io/\" to=\"https://amblin.io/\"/></ruleset>", "<ruleset name=\"Ambx.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ambx.com.xml\"><rule from=\"^http://(?:www\\.)?ambx\\.com/\" to=\"https://www.ambx.com/\"/></ruleset>", "<ruleset name=\"amd.co.at (partial)\" f=\"Amd.co.at.xml\"><exclusion pattern=\"^http://mail\\.amd\\.co\\.at/+(?!(?:phpmyadmin|roundcube)(?:$|[?/]))\"/><rule from=\"^http://(?:(diebold\\.|mail\\.)|www\\.)?amd\\.co\\.at/\" to=\"https://$1amd.co.at/\"/></ruleset>", "<ruleset name=\"Amd.com\" f=\"Amd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ameba.jp (partial)\" f=\"Ameba.xml\"><exclusion pattern=\"^http://stat\\.ameba\\.jp/user_images/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amelia Andersdotter.eu\" f=\"Amelia_Andersdotter.eu.xml\"><rule from=\"^http://(?:www\\.)?ameliaandersdotter\\.eu/\" to=\"https://ameliaandersdotter.eu/\"/></ruleset>", "<ruleset name=\"American Association of Neurological Surgeons\" default_off=\"failed ruleset test\" f=\"American-Association-of-Neurological-Surgeons.xml\"><securecookie host=\"^(?:.*\\.)?aans\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?aans\\.org/\" to=\"https://$1aans.org/\"/></ruleset>", "<ruleset name=\"ACS.org (partial)\" f=\"American-Chemical-Society.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^(?!pubs\\.)\\w\" name=\".\"/><rule from=\"^http://renew\\.acs\\.org/\" to=\"https://www.renew.acs.org/\"/><rule from=\"^http://webanalytics\\.acs\\.org/\" to=\"https://achsportal.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Epilepsy Society (partial)\" default_off=\"failed ruleset test\" f=\"American-Epilepsy-Society.xml\"><rule from=\"^http://(?:www\\.)?aesnet\\.org/erc/\" to=\"https://www.aesnet.org/erc/\"/></ruleset>", "<ruleset name=\"American Foundation for Suicide Prevention\" f=\"American-Foundation-Suicide-Prevention.xml\"><exclusion pattern=\"^http://(?:www\\.)?afsp\\.org/indiana$\"/><rule from=\"^(?:http://(?:www\\.)?|https://)afsp\\.org/\" to=\"https://www.afsp.org/\"/></ruleset>", "<ruleset name=\"American Physical Society (partial)\" platform=\"mixedcontent\" f=\"American-Physical-Society.xml\"><exclusion pattern=\"^http://(?:counter|feeds|physics|pr[bel]|prola)\\.\"/><exclusion pattern=\"^http://publish\\.aps\\.org/(?:image|stylesheet)s/\"/><securecookie host=\"^journals\\.aps\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aps\\.org/(?=commonspot/|elementadmin/|[\\w/-]+images/|style/|templates/)\" to=\"https://www.aps.org/\"/><rule from=\"^http://(\\w+)\\.aps\\.org/((?:files|images|misc|sites/[\\w.-]+themes|style(?:sheets)?)/)\" to=\"https://$1.aps.org/\"/><rule from=\"^http://(author|journal|referee|tesseract-asset)s\\.aps\\.org/\" to=\"https://$1s.aps.org/\"/><rule from=\"^http://publish\\.aps\\.org/(?=login|signup)\" to=\"https://publish.aps.org/\"/><rule from=\"^http://publish\\.aps\\.org/favicon\\.ico\" to=\"https://www.aps.org/favicon.ico/\"/></ruleset>", "<ruleset name=\"American Postal Workers Union\" f=\"American-Postal-Workers-Union.xml\"><securecookie host=\"^www\\.apwu\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?apwu\\.org/\" to=\"https://www.apwu.org/\"/><rule from=\"^http://(?:www\\.)?apwustore\\.org/(?:apwu/)?\" to=\"https://www.costore.com/apwu/\"/></ruleset>", "<ruleset name=\"American University (partial)\" f=\"American-University.xml\"><rule from=\"^http://library\\.american\\.edu/\" to=\"https://www.american.edu/library/\"/><rule from=\"^http://([\\w\\.]+\\.)?american\\.edu/\" to=\"https://$1american.edu/\"/></ruleset>", "<ruleset name=\"AmericanExpress.com (partial)\" f=\"AmericanExpress.xml\"><securecookie host=\"^(?:www01\\.extra|online|rewards|search|travel|www209|www295|www304)\\.americanexpress\\.com$\" name=\".+\"/><rule from=\"^http://axptravel\\.americanexpress\\.com/$\" to=\"https://axptravel.americanexpress.com/consumertravel/travel.do\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Academy of Neurology (partial)\" f=\"American_Academy_of_Neurology.xml\"><securecookie host=\"^patients\\.aan\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aan\\.com/(CFFileServlet/|contact/|globals/|go/|(?:index\\.cfm)?\\?axon=user\\.(?:login|profile)|skins/)\" to=\"https://www.aan.com/$1\"/><rule from=\"^http://patients\\.aan\\.com/\" to=\"https://patients.aan.com/\"/></ruleset>", "<ruleset name=\"American Ancestors.org (partial)\" f=\"American_Ancestors.org.xml\"><securecookie host=\"^www\\.americanancestors\\.org$\" name=\"^EkAnalytics$\"/><rule from=\"^http://(www\\.)?americanancestors\\.org/(?=css/|favicon\\.ico|images/|membershipproduct\\.aspx|uploadedImages/|WebResource\\.axd|WorkArea/)\" to=\"https://$1americanancestors.org/\"/></ruleset>", "<ruleset name=\"American Bar Association\" f=\"American_Bar_Association.xml\"><securecookie host=\"^(?:.*\\.)?americanbar\\.org$\" name=\".+\"/><rule from=\"^http://www\\.abanet\\.org/+(?=search/+common/+img/)\" to=\"https://apps.americanbar.org/\"/><rule from=\"^http://www\\.abanet\\.org/+(?=$|\\?)\" to=\"https://www.americanbar.org/content/aba/\"/><rule from=\"^http://www\\.abanet\\.org/+rppt(?:(?:/[^?]*)?(\\?.*)?)$\" to=\"https://www.americanbar.org/publications/probate_property_magazine_home.html$1\"/><rule from=\"^http://(apps\\.|www\\.)?americanbar\\.org/\" to=\"https://$1americanbar.org/\"/><rule from=\"^http://webstats\\.americanbar\\.org/\" to=\"https://americanbar-org.d1.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"American Center for Law and Justice (partial)\" f=\"American_Center_for_Law_and_Justice.xml\"><securecookie host=\"^aclj\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?aclj\\.org/\" to=\"https://$1aclj.org/\"/><rule from=\"^http://action\\.aclj\\.org/\\??$\" to=\"https://www.aclj.org/\"/><rule from=\"^http://images\\.aclj\\.org/\" to=\"https://c427193.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://media\\.aclj\\.org/\" to=\"https://c391070.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"ACS.org (problematic)\" default_off=\"mismatched\" f=\"American_Chemical_Society-problematic.xml\"><rule from=\"^http://chemistryjobs\\.acs\\.org/\" to=\"https://chemistryjobs.acs.org/\"/></ruleset>", "<ruleset name=\"American College of Radiology (partial)\" f=\"American_College_of_Radiology.xml\"><securecookie host=\"^(?:login|shop)\\.acr\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?acr\\.org/(~|css|images|js|Login)($|\\?|/)\" to=\"https://www.acr.org/$1$2\"/><rule from=\"^http://(login|shop)\\.acr\\.org/\" to=\"https://$1.acr.org/\"/></ruleset>", "<ruleset name=\"American Flyer Trains.com\" f=\"American_Flyer_Trains.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Freedom.com\" default_off=\"failed ruleset test\" f=\"American_Freedom.com.xml\"><securecookie host=\"^americanfreedom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Future Fund\" default_off=\"failed ruleset test\" f=\"American_Future_Fund.xml\"><securecookie host=\"^(?:www\\.)?americanfuturefund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Heart.org (partial)\" default_off=\"failed ruleset test\" f=\"American_Heart.org.xml\"><exclusion pattern=\"^http://my\\.americanheart\\.org/(?!\\w+/(?:imag|theme)es/|favicon\\.ico)\"/><securecookie host=\"^donate\\.americanheart\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?americanheart\\.org/.*\" to=\"https://www.heart.org/\"/><rule from=\"^http://(donate|my)\\.americanheart\\.org/\" to=\"https://$1.americanheart.org/\"/></ruleset>", "<ruleset name=\"American Scientist.org\" f=\"American_Scientist.org.xml\"><securecookie host=\"^www\\.americanscientist\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?americanscientist\\.org/\" to=\"https://www.americanscientist.org/\"/><rule from=\"^http://amsciadmin\\.eresources\\.com/Libraries/\" to=\"https://www.americanscientist.org/Libraries/\"/></ruleset>", "<ruleset name=\"American Society of Media Photographers\" f=\"American_Society_of_Media_Photographers.xml\"><securecookie host=\"^.*\\.asmp\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?(admin\\.)?asmp\\.org/\" to=\"https://$1$2asmp.org/\"/></ruleset>", "<ruleset name=\"Americana Exchange\" default_off=\"failed ruleset test\" f=\"AmericanaExchange.xml\"><rule from=\"^http://(?:www\\.)?americanaexchange\\.com/\" to=\"https://www.americanaexchange.com/\"/></ruleset>", "<ruleset name=\"Americans United (partial)\" f=\"Americans_United.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"America's Charities\" default_off=\"failed ruleset test\" f=\"Americas-Charities.xml\"><securecookie host=\"^www\\.charities\\.org$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)charities\\.org/\" to=\"https://www.charities.org/\"/></ruleset>", "<ruleset name=\"America's Longest War\" default_off=\"failed ruleset test\" f=\"Americas_Longest_War.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amerika21.de\" f=\"Amerika21.de.xml\"><rule from=\"^http://(?:www\\.)?amerika21\\.de/\" to=\"https://amerika21.de/\"/></ruleset>", "<ruleset name=\"amgdgt.com\" f=\"Amgdgt.com.xml\"><securecookie host=\"^\\.amgdgt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amherst.edu\" f=\"Amherst.edu.xml\"><rule from=\"^http://(?:www\\.)?amherst\\.edu/\" to=\"https://www.amherst.edu/\"/></ruleset>", "<ruleset name=\"amiando (partial)\" f=\"Amiando.xml\"><securecookie host=\".*\\.amiando\\.com$\" name=\".+\"/><rule from=\"^http://amiando\\.com/\" to=\"https://www.amiando.com/\"/><rule from=\"^http://(?!blog\\.|info\\.)(\\w+)\\.amiando\\.com/\" to=\"https://$1.amiando.com/\"/></ruleset>", "<ruleset name=\"Amnesty.org (partial)\" f=\"Amnesty-International.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty-in-Bewegung.de\" f=\"Amnesty-in-Bewegung.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.at\" f=\"Amnesty.at.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.ch (partial)\" f=\"Amnesty.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.de (partial)\" f=\"Amnesty.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.fi\" f=\"Amnesty.fi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.fi/\" to=\"https://www.amnesty.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.fr (partial)\" f=\"Amnesty.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.gr\" f=\"Amnesty.gr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.gr/\" to=\"https://www.amnesty.gr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.ie\" f=\"Amnesty.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.it (partial)\" f=\"Amnesty.it.xml\"><exclusion pattern=\"^http://www\\.amnesty\\.it/+(?!flex/(?:Extensions/templates|FixedPages|TemplatesUSR|cm/pages/ServeCSS\\.php|images)/)\"/><securecookie host=\"^\\.\" name=\"^ubvt$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.or.jp\" f=\"Amnesty.or.jp.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.or\\.jp/\" to=\"https://www.amnesty.or.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.nz\" f=\"Amnesty.org.nz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.org\\.nz/\" to=\"https://www.amnesty.org.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.pl\" f=\"Amnesty.org.pl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.amnesty\\.org\\.pl/\" to=\"https://amnesty.org.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.ru\" f=\"Amnesty.org.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.tr (partial)\" f=\"Amnesty.org.tr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.uk (partial)\" f=\"Amnesty.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.se (partial)\" f=\"Amnesty.se.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.tw (partial)\" f=\"Amnesty.tw.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.no (partial)\" f=\"Amnesty_International_Norway.xml\"><exclusion pattern=\"^http://www\\.amnesty\\.no/+(?!sites/)\"/><securecookie host=\"^minside\\.amnesty\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty USA.org (partial)\" f=\"Amnesty_USA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnistia.cl\" default_off=\"expired\" f=\"Amnistia.cl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnistia.org.mx (false MCB)\" platform=\"mixedcontent\" f=\"Amnistia.org.mx.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnistia.org.pe\" platform=\"mixedcontent\" f=\"Amnistia.org.pe.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amoena\" f=\"Amoena.xml\"><rule from=\"^http://(www\\.)?amoena\\.com/\" to=\"https://www.amoena.com/\"/><rule from=\"^http://(www\\.)?amoena\\.de/\" to=\"https://www.amoena.de/\"/><rule from=\"^http://(www\\.)?amoena\\.fr/\" to=\"https://www.amoena.fr/\"/><rule from=\"^http://(www\\.)?amoena\\.us/\" to=\"https://www.amoena.us/\"/><rule from=\"^http://b2b\\.amoena\\.(fr|us)/\" to=\"https://b2b.amoena.$1/\"/></ruleset>", "<ruleset name=\"ampatico.com\" default_off=\"mismatched\" f=\"Ampatico.com.xml\"><rule from=\"^http://(?:www\\.)?ampatico\\.com/\" to=\"https://ampatico.com/\"/></ruleset>", "<ruleset name=\"Ampersandjs.com (partial)\" f=\"Ampersandjs.com.xml\"><rule from=\"^http://ampersandjs\\.com/\" to=\"https://ampersandjs.com/\"/></ruleset>", "<ruleset name=\"Ampush.com\" default_off=\"failed ruleset test\" f=\"Ampush.com.xml\"><securecookie host=\"^(?:w*\\.)?ampush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMS-IX.net\" f=\"Amsterdam_Internet_Exchange.xml\"><securecookie host=\"^(?:w*\\.)?ams-ix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amtel (partial)\" default_off=\"mismatch\" f=\"Amtel.xml\"><rule from=\"^http://ir\\.amtel\\.com/common/\" to=\"https://ir.amtel.com/common/\"/><rule from=\"^http://store\\.atmel\\.com/\" to=\"https://store.atmel.com/\"/></ruleset>", "<ruleset name=\"An.de\" f=\"An.de.xml\"><securecookie host=\"^pk\\.an\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"An Post.ie (partial)\" f=\"AnPost.xml\"><securecookie host=\"^(?:edocket|www)\\.anpost\\.ie$\" name=\".+\"/><rule from=\"^http://anpost\\.ie/\" to=\"https://www.anpost.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Analyst One.com (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Analyst_One.com.xml\"><securecookie host=\"^\\.analystone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?analystone\\.com/\" to=\"https://analystone.com/\"/></ruleset>", "<ruleset name=\"analytics.edgesuite.net\" f=\"Analytics.edgesuite.net.xml\"><rule from=\"^http://([\\w-]+)\\.analytics\\.edgekey\\.net/\" to=\"https://$1.analytics.edgekey.net/\"/></ruleset>", "<ruleset name=\"Ananda.org (partial)\" f=\"Ananda_Sangha.xml\"><exclusion pattern=\"^http://www\\.ananda\\.org/+(?!support-ananda/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?ananda\\.org/\" to=\"https://www.ananda.org/\"/></ruleset>", "<ruleset name=\"AnarchistNews.org\" default_off=\"self-signed\" f=\"AnarchistNews.xml\"><securecookie host=\"^anarchistnews.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?anarchistnews\\.org/\" to=\"https://anarchistnews.org/\"/></ruleset>", "<ruleset name=\"Anarplex.net\" f=\"Anarplex.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ancestry.com (partial)\" f=\"Ancestry.xml\"><securecookie host=\"^secure\\.ancestry\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^dna\\.ancestry\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.ancestry\\.co\\.uk/\" to=\"https://secure.ancestry.co.uk/\"/><rule from=\"^http://dna\\.ancestry\\.com/\" to=\"https://dna.ancestry.com/\"/><rule from=\"^http://(?:secure\\.)?store\\.ancestry\\.com/\" to=\"https://secure.store.ancestry.com/\"/><rule from=\"^http://c\\.(?:ancestry|mfcreative)\\.com/\" to=\"https://c.mfcreative.com/\"/></ruleset>", "<ruleset name=\"Anchor.com.au (partial)\" f=\"Anchor.xml\"><exclusion pattern=\"^http://www\\.anchor\\.com\\.au/+(?!forms(?:$|[?/])|wp-content/)\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnchorFree (partial)\" f=\"AnchorFree.xml\"><rule from=\"^http://rpt\\.anchorfree\\.net/\" to=\"https://rpt.anchorfree.net/\"/></ruleset>", "<ruleset name=\"Ancud.de\" default_off=\"self-signed\" f=\"Ancud.de.xml\"><securecookie host=\"^www\\.ancud\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ancud\\.de/\" to=\"https://www.ancud.de/\"/></ruleset>", "<ruleset name=\"Andalucia Property Rentals\" default_off=\"expired, self-signed\" f=\"Andalucia_Property_Rentals.com.xml\"><securecookie host=\"^andaluciapropertyrentals\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?andaluciapropertyrentals\\.com/\" to=\"https://andaluciapropertyrentals.com/\"/></ruleset>", "<ruleset name=\"Anders.com\" default_off=\"expired, self-signed\" f=\"Anders.com.xml\"><securecookie host=\"^www\\.anders\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anders\\.com/\" to=\"https://www.anders.com/\"/></ruleset>", "<ruleset name=\"Andesi.org\" default_off=\"self-signed\" f=\"Andesi.org.xml\"><securecookie host=\"^andesi\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andor.com\" f=\"Andor.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?andor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andrea Fabrizi.it\" f=\"Andrea_Fabrizi.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andrew Blum\" default_off=\"mismatch\" f=\"Andrew-Blum.xml\"><rule from=\"^http://(?:www\\.)?andrewblum\\.net/\" to=\"https://andrewblum.net/\"/></ruleset>", "<ruleset name=\"Andrew Munsell\" f=\"Andrew-Munsell.xml\"><rule from=\"^http://(www\\.)?andrewmunsell\\.com/\" to=\"https://www.andrewmunsell.com/\"/></ruleset>", "<ruleset name=\"Andrew Brookins.com\" default_off=\"missing certificate chain\" f=\"Andrew_Brookins.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Android-Arsenal.com\" f=\"Android-Arsenal.com.xml\"><securecookie host=\"^android-arsenal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?android-arsenal\\.com/\" to=\"https://android-arsenal.com/\"/></ruleset>", "<ruleset name=\"Android-Port.de\" f=\"Android-Port.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Android.com\" f=\"Android.xml\"><securecookie host=\".+\\.android\\.com$\" name=\".+\"/><rule from=\"^http://((?:developer|market|source)\\.)?android\\.com/\" to=\"https://$1android.com/\"/><rule from=\"^http://tools\\.android\\.com/\" to=\"https://sites.google.com/a/android.com/tools/\"/></ruleset>", "<ruleset name=\"Androidpolice\" default_off=\"failed ruleset test\" f=\"AndroidPolice.xml\"><rule from=\"^http://(?:www\\.)?androidpolice\\.com/\" to=\"https://www.androidpolice.com/\"/></ruleset>", "<ruleset name=\"Androidfilehost.com\" f=\"Androidfilehost.com.xml\"><rule from=\"^http://(?:www\\.)?androidfilehost\\.com/\" to=\"https://www.androidfilehost.com/\"/></ruleset>", "<ruleset name=\"Androidpit\" f=\"Androidpit.xml\"><securecookie host=\"^(www\\.)?androidpit\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andy Tyson.com\" f=\"Andy_Tyson.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andy Walsh.com\" f=\"Andy_Walsh.com.xml\"><securecookie host=\"^(?:www)?\\.andywalsh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"andyet.com (partial)\" f=\"Andyet.com.xml\"><rule from=\"^http://(?:(blog\\.|labs\\.)|www\\.)?andyet\\.com/\" to=\"https://$1andyet.com/\"/></ruleset>", "<ruleset name=\"Aneros.com\" f=\"Aneros.com.xml\"><securecookie host=\"^(?:www\\.)?aneros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angel.co (partial)\" f=\"AngelList.xml\"><securecookie host=\"^angel\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angelika Film Center.com\" f=\"Angelika_Film_Center.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anglomedia.net\" f=\"Anglomedia.net.xml\"><securecookie host=\"^www\\.anglomedia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anglomedia\\.net/\" to=\"https://www.anglomedia.net/\"/><rule from=\"^http://cdn\\.anglomedia\\.net/\" to=\"https://3024-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Angola 3.org\" default_off=\"expired, self-signed\" f=\"Angola_3.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angreifer.org\" f=\"Angreifer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angular-Gantt.com\" f=\"Angular-Gantt.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angus.gov.uk (partial)\" f=\"Angus.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:archive|services|www)\\.\" name=\".\"/><rule from=\"^http://library\\.angus\\.gov\\.uk/[^?]*\" to=\"https://angus.spydus.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AniRena\" f=\"AniRena.xml\"><securecookie host=\"^\\.(?:www\\.)?anirena\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AniDB.net\" f=\"Anidb.net.xml\"><rule from=\"^http://(www\\.)?anidb\\.net/\" to=\"https://anidb.net/\"/></ruleset>", "<ruleset name=\"Animal Law.info\" f=\"Animal_Law.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Animenfo.com\" platform=\"mixedcontent\" f=\"Animenfo.com.xml\"><rule from=\"^http://(?:www\\.)?animenfo\\.com/\" to=\"https://www.animenfo.com/\"/><securecookie host=\"\\.animenfo\\.com$\" name=\"PHPSESSID\"/><securecookie host=\"\\.animenfo\\.com$\" name=\"anforadio_(?:user|hash)\"/></ruleset>", "<ruleset name=\"Animoto.com (partial)\" f=\"Animoto.com.xml\"><rule from=\"^http://(www\\.)?animoto\\.com/(?=favicon\\.ico|images/|sign_(?:in|up)/*(?:$|\\?))\" to=\"https://$1animoto.com/\"/><rule from=\"^http://help\\.animoto\\.com/(?=favicon\\.ico|generated/|images/|system/|widgets/)\" to=\"https://animoto.zendesk.com/\"/><rule from=\"^http://static\\.animoto\\.com/\" to=\"https://d150hyw1dtprld.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Anker\" default_off=\"expired\" f=\"Anker.xml\"><securecookie host=\"^anker\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ann Summers.com (partial)\" f=\"Ann_Summers.xml\"><exclusion pattern=\"^http://www\\.annsummers\\.com/+(?:$|\\?|c/|page/|store)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anne Summers.com Jobs\" default_off=\"mismatched\" f=\"Ann_Summers_Jobs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anne van Kesteren.nl\" f=\"Anne_van_Kesteren.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"annihil.us\" f=\"Annihil.us.xml\"><rule from=\"^http://[ix]\\.annihil\\.us/\" to=\"https://i.annihil.us/\"/></ruleset>", "<ruleset name=\"Annonce.cz\" f=\"Annonce.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnnualCreditReport.com\" f=\"AnnualCreditReport.com.xml\"><securecookie host=\"^(?:.*\\.)?annualcreditreport\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?annualcreditreport\\.com/\" to=\"https://$1annualcreditreport.com/\"/></ruleset>", "<ruleset name=\"Anomos (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Anomos.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.co\" f=\"Anon-IB.co.xml\"><securecookie host=\"^\\.anon-ib\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.com\" f=\"Anon-IB.com.xml\"><securecookie host=\"^\\.anon-ib\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.la\" f=\"Anon-IB.la.xml\"><securecookie host=\"^\\.anon-ib\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.net\" f=\"Anon-IB.net.xml\"><securecookie host=\"^\\.anon-ib\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.ru\" f=\"Anon-IB.ru.xml\"><securecookie host=\"^\\.anon-ib\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.su\" f=\"Anon-IB.su.xml\"><securecookie host=\"^\\.anon-ib\\.su$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anon.click\" f=\"Anon.click.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonFiles.com\" f=\"AnonFiles.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonOps.com\" f=\"AnonOps.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon Imag.es\" f=\"Anon_Imag.es.xml\"><securecookie host=\"^\\.?anonimag\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonabox.com\" f=\"Anonabox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anonbox.net\" platform=\"cacert\" f=\"Anonbox.net.xml\"><rule from=\"^http://www\\.anonbox\\.net/\" to=\"https://anonbox.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonine.com\" f=\"Anonine.com.xml\"><securecookie host=\"^(?:www\\.)?anonine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anonine\\.com/\" to=\"https://anonine.com/\"/></ruleset>", "<ruleset name=\"AnonySurfer.com\" f=\"AnonySurfer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonymizer\" f=\"Anonymizer.xml\"><rule from=\"^http://(www1?\\.)?anonymizer\\.com/\" to=\"https://$1anonymizer.com/\"/></ruleset>", "<ruleset name=\"anonymoX\" f=\"AnonymoX.xml\"><securecookie host=\"^(?:.*\\.)?anonymox\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonymousSpeech.com\" f=\"AnonymousSpeech.com.xml\"><securecookie host=\"^(?:www\\.)?anonymousspeech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonymousads.com\" default_off=\"connection dropped\" f=\"Anonymousads.com.xml\"><rule from=\"^http://(?:www\\.)?anonymousads\\.com/\" to=\"https://anonymousads.com/\"/></ruleset>", "<ruleset name=\"Anonymouse\" default_off=\"mismatched\" f=\"Anonymouse.xml\"><securecookie host=\"^anonymouse\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anonymouse\\.me/\" to=\"https://anonymouse.me/\"/></ruleset>", "<ruleset name=\"Anpdm.com\" f=\"Anpdm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anquanbao.com\" f=\"Anquanbao.com.xml\"><rule from=\"^http://(?:www\\.)?anquanbao\\.com/\" to=\"https://www.anquanbao.com/\"/></ruleset>", "<ruleset name=\"Ansa.it\" platform=\"mixedcontent\" f=\"Ansa.it.xml\"><rule from=\"^http://(?:www\\.)?ansa\\.it/\" to=\"https://www.ansa.it/\"/></ruleset>", "<ruleset name=\"Ansible.com (mismatched)\" default_off=\"mismatched\" f=\"Ansible.com-problematic.xml\"><rule from=\"^http://ansible\\.com/\" to=\"https://www.ansible.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ansible.com (partial)\" f=\"Ansible.com.xml\"><securecookie host=\"^\\.ansible\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^galaxy\\.ansible\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ansible works.com (partial)\" f=\"Ansible_works.com.xml\"><securecookie host=\"^\\.ansibleworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnswCDN.com\" f=\"AnswCDN.com.xml\"><rule from=\"^http://en\\.site1\\.answcdn\\.com/\" to=\"https://sitecdn.answcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Answers.com (partial)\" f=\"Answers.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.answers\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Answers Cloud.com\" f=\"Answers_Cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antergos.com (partial)\" f=\"Antergos.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antevenio (partial)\" default_off=\"failed ruleset test\" f=\"Antevenio.xml\"><securecookie host=\"^reachandrich\\.antevenio\\.com$\" name=\".+\"/><rule from=\"^http://reachandrich\\.antevenio\\.com/\" to=\"https://reachandrich.antevenio.com/\"/></ruleset>", "<ruleset name=\"Anthony Cameron.com\" f=\"Anthony_Cameron.com.xml\"><rule from=\"^http://(?:blog|www)\\.anthonycameron\\.com/\" to=\"https://anthonycameron.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anthrocon\" f=\"Anthrocon.xml\"><securecookie host=\"^\\.anthrocon\\.org$\" name=\".+\"/><securecookie host=\"^www\\.anthrocon\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anthrocon\\.org/\" to=\"https://www.anthrocon.org/\"/></ruleset>", "<ruleset name=\"APWG.org\" f=\"Anti-Phishing_Working_Group.xml\"><securecookie host=\"^(?:.+\\.)?apwg\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?antiphishing\\.org/\" to=\"https://$1apwg.org/\"/><rule from=\"^http://((?:docs|education|info|members|www)\\.)?apwg\\.org/\" to=\"https://$1apwg.org/\"/></ruleset>", "<ruleset name=\"AntiPolygraph.org\" f=\"AntiPolygraph.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antifa.cz (default off)\" default_off=\"certificate mismatch\" f=\"Antifa.cz.xml\"><rule from=\"^http://(?:www\\.)?antifa\\.cz/\" to=\"https://www.antifa.cz/\"/></ruleset>", "<ruleset name=\"AntiSpam e.V.\" platform=\"mixedcontent\" f=\"Antispam.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antivigilancia.org\" f=\"Antivigilancia.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.antivigilancia\\.org/\" to=\"https://antivigilancia.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antok.co\" default_off=\"missing certificate chain\" f=\"Antok.co.xml\"><securecookie host=\"^\\.antok\\.co$\" name=\".+\"/><rule from=\"^http://www\\.antok\\.co/\" to=\"https://antok.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antpool.com\" f=\"Antpool.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnubisNetworks.com (partial)\" f=\"AnubisNetworks.com.xml\"><rule from=\"^http://anubisnetworks\\.com/\" to=\"https://www.anubisnetworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anunciou.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Anunciou.com-falsemixed.xml\"><securecookie host=\"^\\.anunciou\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anunciou.com (partial)\" f=\"Anunciou.com.xml\"><rule from=\"^http://(www\\.)?anunciou\\.com/(?=componentes/|estilo\\.css|favicon\\.ico|images/)\" to=\"https://$1anunciou.com/\"/></ruleset>", "<ruleset name=\"anxpro.com (partial)\" f=\"Anxpro.com.xml\"><securecookie host=\"^\\.?anxpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anybeat\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Anybeat.com.xml\"><rule from=\"^http://(?:www\\.)?anybeat\\.com/\" to=\"https://www.anybeat.com/\"/></ruleset>", "<ruleset name=\"Anybots.com\" f=\"Anybots.com.xml\"><securecookie host=\"^(?:w*\\.)?anybots\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anyfi.net\" default_off=\"failed ruleset test\" f=\"Anyfi.net.xml\"><securecookie host=\"^anyfi\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?anyfi\\.net/\" to=\"https://anyfi.net/\"/></ruleset>", "<ruleset name=\"anyoption.com (partial)\" f=\"Anyoption.com.xml\"><rule from=\"^http://(?:www\\.)?anyoption\\.com/(?=bridge/|css/|favicon\\.ico|images/|javax\\.faces\\.resource/|jsp?/|thickbox/)\" to=\"https://www.anyoption.com/\"/><rule from=\"^http://(image|l)s\\.anyoption\\.com/\" to=\"https://$1s.anyoption.com/\"/></ruleset>", "<ruleset name=\"Anyproz\" f=\"Anyproz.xml\"><securecookie host=\"^www\\.anonyproz\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anzen.org.uk\" default_off=\"failed ruleset test\" f=\"Anzen.org.uk.xml\"><securecookie host=\"^(?:w*\\.)?anzen\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ao2.it (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Ao2.it.xml\"><securecookie host=\"(?:.*\\.)ao2\\.it$\" name=\".*\"/><rule from=\"^http://(www\\.)?ao2\\.it/\" to=\"https://$1.ao2.it/\"/></ruleset>", "<ruleset name=\"OpenOffice.org (partial)\" f=\"Apache-OpenOffice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apache-SSL.org\" default_off=\"expired\" f=\"Apache-SSL.org.xml\"><securecookie host=\".+\\.apache-ssl\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apache.org (false MCB)\" platform=\"mixedcontent\" f=\"Apache.org-falsemixed.xml\"><rule from=\"^http://(activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\\.apache\\.org/\" to=\"https://$1.apache.org/\"/></ruleset>", "<ruleset name=\"Apache.org (partial)\" f=\"Apache.xml\"><exclusion pattern=\"^http://(?:ci|feathercast|git|ooo-forums|vmgump)\\.apache\\.org/\"/><exclusion pattern=\"^http://(?:activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\\.apache\\.org/+(?!css/|favicon\\.ico|images/|oodt\\.css|style/|stylesheets/)\"/><securecookie host=\"^(?:.+\\.)?apache\\.org$\" name=\".+\"/><rule from=\"^http://apache\\.org/\" to=\"https://www.apache.org/\"/><rule from=\"^http://www\\.us\\.apache\\.org/\" to=\"https://www.apache.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ApacheCon.com\" default_off=\"mismatched\" f=\"ApacheCon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apereo.org\" f=\"Apereo.org.xml\"><rule from=\"^http://apereo\\.org/\" to=\"https://www.apereo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aphyr.com\" f=\"Aphyr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"api.sh\" default_off=\"failed ruleset test\" f=\"Api.sh.xml\"><securecookie host=\"^\\.?api\\.sh$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?api\\.sh/\" to=\"https://api.sh/\"/></ruleset>", "<ruleset name=\"Apica\" f=\"Apica.xml\"><securecookie host=\"^.+\\.apicasystem\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?apicasystem\\.com/\" to=\"https://www.apicasystem.com/\"/><rule from=\"^http://webtracker\\.apicasystem\\.com/\" to=\"https://webtracker.apicasystem.com/\"/></ruleset>", "<ruleset name=\"Apigee (partial)\" f=\"Apigee.xml\"><securecookie host=\"^(?:accounts\\.)?apigee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apigility.org\" f=\"Apigility.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apkmirror.com\" f=\"Apkmirror.com.xml\"><securecookie host=\"^(www\\.)?apkmirror\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apna India\" f=\"Apna_India.xml\"><securecookie host=\"^\\.apnaindia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apomedifot.de (partial)\" f=\"Apomedifot.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apotea.se\" f=\"Apotea.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apoteket.se\" f=\"Apoteket.se.xml\"><rule from=\"^http://apoteket\\.se/\" to=\"https://www.apoteket.se/\"/><rule from=\"^http://www\\.apoteket\\.se/\" to=\"https://www.apoteket.se/\"/></ruleset>", "<ruleset name=\"Apotheke.de\" f=\"Apotheke_de.xml\"><rule from=\"^http://(?:www\\.)?apotheke\\.de/\" to=\"https://www.apotheke.de/\"/></ruleset>", "<ruleset name=\"AppCoding\" f=\"App-Coding.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"App.net\" f=\"App.net.xml\"><securecookie host=\"^(?:(?:account|alpha|\\.?join|www)\\.)?app\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"appCanary.com (partial)\" f=\"AppCanary.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppDynamics\" f=\"AppDynamics.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppGratis\" f=\"AppGratis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppGuru.com\" f=\"AppGuru.com.xml\"><securecookie host=\"^(?:data|www)\\.appguru\\.com$\" name=\".+\"/><rule from=\"^http://appguru\\.com/\" to=\"https://www.appguru.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppHarbor.com\" f=\"AppHarbor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppHub.io (partial)\" f=\"AppHub.io.xml\"><securecookie host=\"^\\.apphub\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppNexus.com (partial)\" f=\"AppNexus.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppThemes.com\" f=\"AppThemes.com.xml\"><rule from=\"^http://((?:cdn|demos|docs|forums|ideas|marketplace|my|www)\\.)?appthemes\\.com/\" to=\"https://$1appthemes.com/\"/></ruleset>", "<ruleset name=\"AppVault (partial)\" default_off=\"failed ruleset test\" f=\"AppVault.xml\"><securecookie host=\"^(?:www)?\\.skilldrum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?appvault\\.com/\" to=\"https://appvault.com/\"/><rule from=\"^http://(www\\.)?skilldrum\\.com/\" to=\"https://$1skilldrum.com/\"/></ruleset>", "<ruleset name=\"App Developer Magazine.com\" f=\"App_Developer_Magazine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appcelerator.com (partial)\" f=\"Appcelerator.xml\"><securecookie host=\"^(?:community|developer|marketplace|www)?\\.appcelerator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appear.in (partial)\" f=\"Appear.in.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appetize.io\" f=\"Appetize.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appie Hein.com\" f=\"Appie_Hein.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple-MapKit.com\" f=\"Apple-MapKit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple (false MCB)\" platform=\"mixedcontent\" f=\"Apple-falsemixed.xml\"><securecookie host=\"^support\\.apple\\.com$\" name=\".+\"/><rule from=\"^http://support\\.apple\\.com/\" to=\"https://support.apple.com/\"/></ruleset>", "<ruleset name=\"Apple (mismatches)\" default_off=\"Akamai certificate\" f=\"Apple-mismatches.xml\"><rule from=\"^http://a\\d+\\.phobos\\.apple\\.com/\" to=\"https://a1.mzstatic.com/\"/><rule from=\"^http://(adcdownload|www\\.info|static-mynews|trailers)\\.apple\\.com/\" to=\"https://$1.apple.com/\"/><rule from=\"^http://(r\\d|store)\\.mzstatic\\.com/\" to=\"https://$1.mzstatic.com/\"/></ruleset>", "<ruleset name=\"Apple.com (partial)\" f=\"Apple.xml\"><exclusion pattern=\"^http://concierge\\.apple\\.com/(?!resources/)\"/><exclusion pattern=\"^http://store\\.apple\\.com/(?!$|Catalog/|[\\w/]+/css/|rs/)\"/><exclusion pattern=\"^http://trailers\\.apple\\.com/(?!(?:app/*|.+\\.(?:css|gif|jpg|png|svg))(?:$|\\?))\"/><exclusion pattern=\"^https://trailers\\.apple\\.com/(?:app/*|.+\\.(?:css|gif|jpg|png|svg|xml))(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.apple\\.com/(?:\\w\\w/)?shop(?:$|[?/])\"/><exclusion pattern=\"^http://www\\.apple\\.com/apple-events/\"/><securecookie host=\"^\\.apple\\.com$\" name=\"^s_.+$\"/><securecookie host=\"^(?!\\.?(?:concierge|store|www)\\.apple\\.com).+\\.apple\\.com$\" name=\".+\"/><rule from=\"^http://devimages\\.apple\\.com/\" to=\"https://devimages.apple.com.edgekey.net/\"/><rule from=\"^http://images\\.apple\\.com/\" to=\"https://ssl.apple.com/\"/><rule from=\"^http://(?:prod|www)\\.lists\\.apple\\.com/\" to=\"https://lists.apple.com/\"/><rule from=\"^http://metrics\\.apple\\.com/\" to=\"https://securemetrics.apple.com/\"/><rule from=\"^http://www\\.opensource\\.apple\\.com/\" to=\"https://opensource.apple.com/\"/><rule from=\"^http://storeimages\\.apple\\.com/\" to=\"https://storeimages.apple.com.edgekey.net/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://trailers\\.apple\\.com/\" to=\"http://trailers.apple.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Apple CDN buckets\" f=\"Apple_CDN_buckets.xml\"><exclusion pattern=\"^http://a772\\.g\\.akamai\\.net/(?!7/772/51/ef865529940b9e/www\\.apple\\.com/)\"/><rule from=\"^http://ax\\.phobos\\.apple\\.com\\.edgesuite\\.net/\" to=\"https://s.mzstatic.com/\"/></ruleset>", "<ruleset name=\"Apple.com.cn\" default_off=\"mismatched\" f=\"Apple_China.xml\"><rule from=\"^http://apple\\.com\\.cn/\" to=\"https://www.apple.com.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple Parts Store (partial)\" default_off=\"failed ruleset test\" f=\"Apple_Parts_Store.xml\"><securecookie host=\"^\\.(?:www\\.)?applepartsstore\\.com$\" name=\".+\"/><securecookie host=\"^\\.re-pear\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?applepartsstore\\.com/\" to=\"https://applepartsstore.com/\"/><rule from=\"^http://(?:www\\.)?re-pear\\.com/\" to=\"https://www.re-pear.com/\"/></ruleset>", "<ruleset name=\"Applebee's\" platform=\"mixedcontent\" f=\"Applebees.xml\"><rule from=\"^http://applebees\\.com/\" to=\"https://applebees.com/\"/><rule from=\"^http://(my|www)\\.applebees\\.com/\" to=\"https://$1.applebees.com/\"/></ruleset>", "<ruleset name=\"Applianceshop.eu\" f=\"Applianceshop.eu.xml\"><securecookie host=\"^\\.www\\.applianceshop\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Applicom (partial)\" default_off=\"webmaster request\" f=\"Applicom.xml\"><securecookie host=\"^launchpad\\.apollohq\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?apollohq\\.com/img/favicon(\\d\\d)\\.png$\" to=\"https://launchpad.apollohq.com/js/__dojo__1332519149/res/img/common/icon$1.png\"/><rule from=\"^http://launchpad\\.apollohq\\.com/\" to=\"https://launchpad.apollohq.com/\"/></ruleset>", "<ruleset name=\"Apply2Jobs.com\" f=\"Apply2Jobs.com.xml\"><rule from=\"^http://(?:www\\.)?apply2jobs\\.com/\" to=\"https://www.apply2jobs.com/\"/><rule from=\"^http://www\\.llcampus\\.apply2jobs\\.com/\" to=\"https://www.llcampus.apply2jobs.com/\"/></ruleset>", "<ruleset name=\"ApplyTracking.com\" f=\"ApplyTracking.com.xml\"><securecookie host=\"^www\\.applytracking\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ApplyWeb.com\" f=\"ApplyWeb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ApplyYourself\" f=\"ApplyYourself.xml\"><securecookie host=\"^app\\.applyyourself\\.com$\" name=\".+\"/><rule from=\"^http://app\\.applyyourself\\.com/\" to=\"https://app.applyyourself.com/\"/></ruleset>", "<ruleset name=\"AppsFlyer.com (partial)\" f=\"AppsFlyer.com.xml\"><securecookie host=\"^(?:hq|partners)\\.appsflyer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appsec USA (partial)\" default_off=\"mismatched, self-signed\" f=\"Appsec_USA.xml\"><securecookie host=\"^(?:\\.2012\\.)?appsecusa\\.org$\" name=\".+\"/><rule from=\"^http://(?:(videos\\.2012\\.|next-year\\.)|www\\.)?appsecusa\\.org/\" to=\"https://$1appsecusa.org/\"/></ruleset>", "<ruleset name=\"AppSec California.org\" f=\"Appseccalifornia.org.xml\"><securecookie host=\"^appseccalifornia\\.org$\" name=\".+\"/><rule from=\"^http://www\\.appseccalifornia\\.org/\" to=\"https://appseccalifornia.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appsecute\" default_off=\"failed ruleset test\" f=\"Appsecute.xml\"><securecookie host=\"^\\.appsecute\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appsites.com\" f=\"Appsites.com.xml\"><securecookie host=\"^appsites\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?appsites\\.com/\" to=\"https://appsites.com/\"/></ruleset>", "<ruleset name=\"appsto.re\" f=\"Appsto.re.xml\"><rule from=\"^http://www\\.appsto\\.re/[^?]*\" to=\"https://www.apple.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apress.com\" f=\"Apress.com.xml\"><securecookie host=\"^\\.www\\.apress.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apricorn.com\" f=\"Apricorn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"April.org\" platform=\"mixedcontent\" f=\"April.org.xml\"><securecookie host=\"^.*\\.april\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?april\\.org/\" to=\"https://$1april.org/\"/></ruleset>", "<ruleset name=\"Apsis Lead.com\" f=\"Apsis_Lead.com.xml\"><securecookie host=\"^tr\\.apsislead\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AptDeco.com\" f=\"AptDeco.com.xml\"><securecookie host=\"^www\\.aptdeco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AquaBounty.com\" f=\"AquaBounty.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AquaGear\" f=\"AquaGear.xml\"><securecookie host=\"^(www\\.)?aquagear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aquent (partial)\" platform=\"mixedcontent\" f=\"Aquent.xml\"><securecookie host=\"^(?:.*\\.)?aquent\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?aquent\\.com/\" to=\"https://$1aquent.com/\"/><rule from=\"^http://(www\\.)?aquent\\.us/(common|global)/\" to=\"https://$1aquent.com/$2/\"/></ruleset>", "<ruleset name=\"Aqueous Vapor.com (partial)\" f=\"Aqueous_Vapor.com.xml\"><rule from=\"^http://(www\\.)?aqueousvapor\\.com/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1aqueousvapor.com/\"/></ruleset>", "<ruleset name=\"AquilaClothing.co.uk\" f=\"AquilaClothing.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aquiss (partial)\" f=\"Aquiss.xml\"><exclusion pattern=\"^http://ebilling\\.aquiss\\.net/(?!css/|templates/)\"/><securecookie host=\"^secure\\.aquiss\\.net$\" name=\".*\"/><rule from=\"^http://(ebilling|secure)\\.aquiss\\.net/\" to=\"https://$1.aquiss.net/\"/></ruleset>", "<ruleset name=\"arXiv (partial) (default off)\" default_off=\"default off by site request\" f=\"ArXiv.xml\"><rule from=\"^http://www\\.arxiv\\.org/\" to=\"https://arxiv.org/\"/><rule from=\"^http://arxiv\\.org/(css/|favicon\\.ico)\" to=\"https://arxiv.org/$1\"/><rule from=\"^http://arxiv\\.org/icons/\" to=\"https://s3.amazonaws.com/arxiv-web-static1/icons/\"/><rule from=\"^http://static\\.arxiv\\.org/\" to=\"https://s3.amazonaws.com/arxiv-web-static1/\"/></ruleset>", "<ruleset name=\"Arachnys\" default_off=\"failed ruleset test\" f=\"Arachnys.xml\"><securecookie host=\"^(?:app)?\\.arachnys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aral Balkan.com\" f=\"Aral_Balkan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArangoDB.com\" f=\"ArangoDB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arbeitsagentur.de\" platform=\"mixedcontent\" f=\"Arbeitsagentur.xml\"><rule from=\"^http://(?:www\\.)?arbeitsagentur\\.de/\" to=\"https://www.arbeitsagentur.de/\"/><rule from=\"^http://jobboerse\\.arbeitsagentur\\.de/\" to=\"https://jobboerse.arbeitsagentur.de/\"/></ruleset>", "<ruleset name=\"Arbitrary.ch\" f=\"Arbitrary.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arbor Networks\" f=\"Arbor-Networks.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?arbor\\.net/+\" to=\"https://www.arbornetworks.com/\"/><rule from=\"^http://atlas\\.arbornetworks\\.com/+\" to=\"https://atlas.arbor.net/\"/><rule from=\"^http://ddos\\.arbornetworks\\.com/+\" to=\"https://www.arbornetworks.com/asert/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArcGIS.com (partial)\" f=\"ArcGIS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArcGIS online.com\" f=\"ArcGIS_online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arch Linux.org\" f=\"Arch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArchBang.org\" default_off=\"mismatched\" f=\"ArchBang.org.xml\"><rule from=\"^http://((?:bbs|wiki|www)\\.)?archbang\\.org(?::80)?/\" to=\"https://$1archbang.org/\"/></ruleset>", "<ruleset name=\"Arch Linux.fr\" f=\"Arch_Linux.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archaic Binary.net\" f=\"Archaic_Binary.net.xml\"><securecookie host=\"^\\.archaicbinary\\.net$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archi-Strasbourg\" default_off=\"failed ruleset test\" f=\"Archi-Strasbourg.xml\"><rule from=\"^http://(?:www\\.)?archi-strasbourg\\.org/\" to=\"https://archi-strasbourg.org/\"/></ruleset>", "<ruleset name=\"Architect's Journal\" f=\"Architects_Journal.xml\"><securecookie host=\"^www\\.architectsjournal\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:architectsjournal|theaj)\\.co\\.uk/\" to=\"https://www.architectsjournal.co.uk/\"/></ruleset>", "<ruleset name=\"Archive-It.org\" f=\"Archive-It.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archive.is (partial)\" f=\"Archive.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"archive.moe\" f=\"Archive.moe.xml\"><securecookie host=\"^archive\\.moe$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archive.org Way Back Machine\" f=\"Archive.org_Way_Back_Machine.xml\"><securecookie host=\"^web\\.archive\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArchiveOfOurOwn.org\" f=\"ArchiveOfOurOwn.xml\"><securecookie host=\"^archiveofourown\\.org$\" name=\".+\"/><rule from=\"^http://www\\.archiveofourown\\.org/\" to=\"https://archiveofourown.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archives-ouvertes.fr\" f=\"Archives-ouvertes.fr.xml\"><securecookie host=\"^tel\\.archives-ouvertes\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?archives-ouvertes\\.fr/+\" to=\"https://hal.archives-ouvertes.fr/\"/><rule from=\"^http://(api|aurehal|aurehal-preprod|hal|hal-\\w+|halshs|pastel|tel)\\.archives-ouvertes\\.fr/\" to=\"https://$1.archives-ouvertes.fr/\"/></ruleset>", "<ruleset name=\"archlinux.de\" f=\"Archlinux.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archomedia\" default_off=\"mismatched, self-signed\" f=\"Archomedia.xml\"><securecookie host=\"^archomedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?archomedia\\.com/\" to=\"https://archomedia.com/\"/></ruleset>", "<ruleset name=\"Archos.com\" platform=\"mixedcontent\" f=\"Archos.com.xml\"><rule from=\"^http://(?:www\\.)?archos\\.com/\" to=\"https://www.archos.com/\"/></ruleset>", "<ruleset name=\"Arciszewski.me (partial)\" f=\"Arciszewski.me.xml\"><securecookie host=\"^\\.arciszewski\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArcorCentralLogin\" f=\"ArcorCentralLogin.xml\"><securecookie host=\"^(?:.*\\.)?arcor\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?arcor\\.de/login/login\\.jsp\" to=\"https://www.arcor.de/login/login.jsp\"/></ruleset>", "<ruleset name=\"Ardamis.com\" f=\"Ardamis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ardour (partial)\" f=\"Ardour.xml\"><securecookie host=\"^\\.community\\.ardour\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?(community\\.)?ardour\\.org/\" to=\"https://$1$2ardour.org/\"/></ruleset>", "<ruleset name=\"Arduino.cc (partial)\" f=\"Arduino.cc.xml\"><rule from=\"^http://id\\.arduino\\.cc/\" to=\"https://id.arduino.cc/\"/></ruleset>", "<ruleset name=\"Are We Slim Yet.com\" f=\"Are_We_Slim_Yet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Are We Compressed Yet.com\" f=\"Are_Wecompressed_Yet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Area 17.com\" f=\"Area_17.com.xml\"><securecookie host=\"^www\\.area17\\.com$\" name=\".+\"/><rule from=\"^http://area17\\.com/\" to=\"https://www.area17.com/\"/><rule from=\"^http://assets\\.area17\\.com/\" to=\"https://d6115e0oaclnc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArenaVC.com\" f=\"ArenaVC.com.xml\"><securecookie host=\"^arenavc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argeweb.nl\" f=\"Argeweb.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argeweb hosting.nl\" f=\"Argeweb_hosting.nl.xml\"><rule from=\"^http://webmail\\.argewebhosting\\.nl/\" to=\"https://webmail.argewebhosting.nl/\"/></ruleset>", "<ruleset name=\"Argonit.cz\" default_off=\"mismatched\" f=\"Argonit.cz.xml\"><securecookie host=\"(?:.+\\.)?argonit\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argonne National Laboratory (partial)\" f=\"Argonne-National-Laboratory.xml\"><rule from=\"^http://(?:www\\.)?(cels|evs|mcs)\\.anl\\.gov/\" to=\"https://www.$1.anl.gov/\"/><rule from=\"^http://(?:www\\.)?aps\\.anl\\.gov/(css/|img/)\" to=\"https://www.aps.anl.gov/$1\"/></ruleset>", "<ruleset name=\"Argos (mismatches)\" default_off=\"mismatch\" f=\"Argos-mismatches.xml\"><exclusion pattern=\"^http://answers\\.argos\\.(?:co\\.uk|ie)/(?:\\d+-\\w\\w_\\w\\w/allquestions|category/\\d+/category|product/\\d+/questions)\\.htm(?:$|\\?)\"/><rule from=\"^http://(answer|review)s\\.argos\\.(co\\.uk|ie)/\" to=\"https://$1s.argos.$2/\"/></ruleset>", "<ruleset name=\"Argos (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Argos.xml\"><securecookie host=\"^.*\\.argos\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.argos\\.ie$\" name=\".*\"/><securecookie host=\"^www\\.argoscareers\\.com$\" name=\".*\"/><securecookie host=\"^www\\.argosemails\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.argosonline\\.es$\" name=\".*\"/><securecookie host=\"^www\\.greatcareers\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.wearechoosy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?argosemails\\.co\\.uk/\" to=\"https://www.argosemails.co.uk/\"/><rule from=\"^http://image\\.email\\.argos\\.co\\.uk/\" to=\"https://image.email.argos.co.uk/\"/><rule from=\"^http://(?:www\\.)?argos\\.ie/\" to=\"https://www.argos.ie/\"/><rule from=\"^http://competitions\\.argos\\.ie/\" to=\"https://competitions.argos.ie/\"/><rule from=\"^http://(?:www\\.)?argos-spain\\.co\\.uk/.*\" to=\"https://www.argosonline.es/webapp/wcs/stores/servlet/LogonForm\"/><rule from=\"^http://(?:www\\.)?argoscareers\\.com/\" to=\"https://www.argoscareers.com/\"/><rule from=\"^http://(?:www\\.)?argosonline\\.es/\" to=\"https://www.argosonline.es/\"/><rule from=\"^http://www\\.greatcareers\\.co\\.uk/\" to=\"https://www.greatcareers.co.uk/\"/><rule from=\"^http://(?:www\\.)?wearechoosy\\.com/\" to=\"https://www.wearechoosy.com/\"/></ruleset>", "<ruleset name=\"Arguggi.co.uk\" f=\"Arguggi.co.uk.xml\"><rule from=\"^http://www\\.arguggi\\.co\\.uk/\" to=\"https://arguggi.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argus.ch (partial)\" f=\"Argus.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Argus Leader\" default_off=\"failed ruleset test\" f=\"Argus_Leader.xml\"><securecookie host=\"^www\\.argusleader\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)argusleader\\.com/\" to=\"https://www.argusleader.com/\"/></ruleset>", "<ruleset name=\"Argyle Social (mismatches)\" default_off=\"mismatch\" f=\"Argyle-Social-mismatches.xml\"><rule from=\"^http://www2\\.argylesocial\\.com/\" to=\"https://www2.argylesocial.com/\"/></ruleset>", "<ruleset name=\"Argyle Social (partial)\" default_off=\"failed ruleset test\" f=\"Argyle-Social.xml\"><rule from=\"^http://goals\\.ar\\.gy/\" to=\"https://goals.ar.gy/\"/></ruleset>", "<ruleset name=\"Ariejan.net\" f=\"Ariejan.net.xml\"><rule from=\"^http://(?:(spock\\.)|www\\.)?ariejan\\.net/\" to=\"https://$1ariejan.net/\"/></ruleset>", "<ruleset name=\"Arisebitcoin.com\" default_off=\"connection refused\" f=\"Arisebitcoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arizona State University (partial)\" f=\"Arizona-State-University.xml\"><exclusion pattern=\"^http://(?:www\\.)?herbergercollege\\.asu\\.edu/images/\"/><exclusion pattern=\"^http://lib\\.asu\\.edu/(?!misc/|sites/)\"/><securecookie host=\"^\\.(?:(?:articulation|asuevents|asuonline|asuresearch|catalog|cfo|s(?:hprs|st)\\.clas|commons|contact|cronkite|csid|cubic|eadvisor|flexdisplay|geo(?:da|dacenter|plan)?|global|graduat(?:e|ion)|havasu|healthsolutions|lsi|viewer\\.mars|mayo|newcollege|nursingandhealth|ocw|outreach|prehealth|researchadmin|shesc|sls|sols|student(?:succes|venture)?s|technology|uresearch|uto|visit|web|webconsulting|yourfuture)\\.)?asu\\.edu$\" name=\".+\"/><securecookie host=\"^\\w[\\w\\.]*\\.asu\\.edu$\" name=\".+\"/><securecookie host=\"^secure\\.asufoundation\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?asu\\.edu/\" to=\"https://www.asu.edu/\"/><rule from=\"^http://(articulation|artsandsciences|asu(?:events(?:-dev)?|news|research|webdevilarchive)|aztransmac2|bmi|(?:www\\.)?cabhp|caliper|catalog|ccj|cfo|chemistry|chem-webtools|(?:shprs\\.|sst\\.|www\\.)?clas|commguide|commons|connect|contact|copp|cronkite|csid|cubic|docs|drupal|eadvisor|email|ex2010|flexdisplay|forms|global|geoda(?:center)?|graduation|havasu|healthsolutions|herbergeronline2?|hpchelp|humanities|labs|(?:www\\.)?law|lists|lodestar|lsi|(?:drupal|jmars|viewer)\\.mars|mathpost|mayo|morrisoninstitute|mslgoee|my|myasucourses|(?:crm\\.|hrsa\\.)?oasis|ocw|outreach|prehealth|scholarships|search|selfsub|shibboleth2?|sls|spa|studyabroad|syshealth|uresearch|sirc|ssw|uto|vcweb|visit|secure\\.vpsa|washingtoncenter|web(?:app\\d?|consulting|login|work2?)?|(?:www\\.)?west|wpcareyonline|yourfuture)\\.asu\\.edu/\" to=\"https://$1.asu.edu/\"/><rule from=\"^http://budget\\.asu\\.edu/\" to=\"https://cfo.asu.edu/budget\"/><rule from=\"^http://(?:www\\.)?(asuonline|pgs\\.clas|digitalculture|geoplan|graduate|lib|newcollege|nursingandhealth|opendoor|origins|researchadmin|shesc|sols|student(?:succes|venture)?s|technology|wpcarey)\\.asu\\.edu/\" to=\"https://$1.asu.edu/\"/><rule from=\"^http://career\\.asu\\.edu/(?:index\\.htm)?(?:$|\\?.*)\" to=\"https://students.asu.edu/career/\"/><rule from=\"^http://cronkitenews\\.(?:jmc\\.)?asu\\.edu/\" to=\"https://cronkitenews.jmc.asu.edu/\"/><rule from=\"^http://geo(?:graphy|plan)\\.asu\\.edu/\" to=\"https://geoplan.asu.edu/\"/><rule from=\"^http://(?:www\\.)?prod\\.gios\\.asu\\.edu/\" to=\"https://www.prod.gios.asu.edu/\"/><rule from=\"^http://(?:www\\.)?herberger(?:college|institute)\\.asu\\.edu/\" to=\"https://herbergerinstitute.asu.edu/\"/><rule from=\"^http://web\\.hida\\.asu\\.edu/(?:$|\\?.*)\" to=\"https://herbergerinstitute.asu.edu/\"/><rule from=\"^http://libguides\\.asu\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://marsed\\.(?:mars\\.)?asu\\.edu/\" to=\"https://marsed.mars.asu.edu/\"/><rule from=\"^http://technology\\.poly\\.asu\\.edu/(?:$|\\?.*)\" to=\"https://technology.asu.edu/\"/><rule from=\"^http://(?:www\\.)?wikispaces\\.asu\\.edu/i/\" to=\"https://ssl.wikicdn.com/i/\"/><rule from=\"^http://secure\\.asufoundation\\.org/\" to=\"https://secure.asufoundation.org/\"/><rule from=\"^http://(www\\.)?geodacenter\\.org/\" to=\"https://$1geodacenter.org/\"/></ruleset>", "<ruleset name=\"Arizona State University (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Arizona_State_University-problematic.xml\"><securecookie host=\"^\\.parents\\.asu\\.edu$\" name=\".+\"/><rule from=\"^http://(parents|themis|webhost355)\\.asu\\.edu/\" to=\"https://$1.asu.edu/\"/><rule from=\"^http://(?:www\\.)?sustainability\\.asu\\.edu/\" to=\"https://sustainability.asu.edu/\"/><rule from=\"^http://(?:www\\.)?wikispaces\\.asu\\.edu/(?!i/)\" to=\"https://www.wikispaces.asu.edu/\"/></ruleset>", "<ruleset name=\"arkOS.io\" f=\"ArkOS.io.xml\"><securecookie host=\"^bbs\\.arkos\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arkane Studios\" default_off=\"mismatch\" f=\"Arkane-Studios.xml\"><rule from=\"^http://(?:www\\.)?arkane-studios\\.com/\" to=\"https://www.arkane-studios.com/\"/></ruleset>", "<ruleset name=\"Arkena.com (partial)\" f=\"Arkena.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arlanda.se\" f=\"Arlanda.se.xml\"><rule from=\"^http://arlanda\\.se/\" to=\"https://www.arlanda.se/\"/><rule from=\"^http://www\\.arlanda\\.se/\" to=\"https://www.arlanda.se/\"/></ruleset>", "<ruleset name=\"Arlen.io\" f=\"Arlen.io.xml\"><securecookie host=\"^\\.arlen\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arlt.com\" f=\"Arlt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmA 3 (Partial)\" default_off=\"Bad Cert\" f=\"Arma3.com.xml\"><rule from=\"^http://(?:www\\.)?arma3\\.com/\" to=\"https://www.arma3.com/\"/><rule from=\"^http://(?:www\\.)?(?:feedback\\.|dev\\.)?arma3\\.com/\" to=\"https://feedback.arma3.com/\"/></ruleset>", "<ruleset name=\"Armed Forces Day.org.uk\" f=\"Armed_Forces_Day.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmoryBids.com\" f=\"ArmoryBids.com.xml\"><securecookie host=\"^www\\.armorybids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Army Times (partial)\" f=\"Army_Times.xml\"><securecookie host=\"^\\.armytimes\\.com\" name=\"^s_(?!p|s)\\w+$\"/><rule from=\"^http://(awi|projects)\\.armytimes\\.com/\" to=\"https://$1.armytimes.com/\"/></ruleset>", "<ruleset name=\"Armyoutlet.de\" f=\"Armyoutlet.de.xml\"><rule from=\"^http://(?:www\\.)?armyoutlet\\.de/\" to=\"https://www.armyoutlet.de/\"/></ruleset>", "<ruleset name=\"Arne.schuldt.info\" f=\"Arne.schuldt.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azorus (partial)\" f=\"Arozus.xml\"><rule from=\"^http://content\\.azorus\\.com/\" to=\"https://content.azorus.com/\"/></ruleset>", "<ruleset name=\"arpxs.com\" f=\"Arpxs.com.xml\"><securecookie host=\"^www\\.arpxs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arq Backup.com\" f=\"Arq_Backup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arquetype.org\" f=\"Arquetype.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arranca.org\" default_off=\"mismatched\" f=\"Arranca.org.xml\"><securecookie host=\"^\\.arranca\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?arranca|arranca\\.nadir)\\.org/\" to=\"https://arranca.org/\"/></ruleset>", "<ruleset name=\"Array.is (partial)\" f=\"Array.is.xml\"><securecookie host=\"^array\\.is$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?array\\.is/\" to=\"https://array.is/\"/></ruleset>", "<ruleset name=\"Arris.com\" f=\"Arris.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arrisi.com (partial)\" f=\"Arrisi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arriva\" f=\"Arriva.xml\"><securecookie host=\"^www\\.arrivabus\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?arrivabus\\.co\\.uk/\" to=\"https://www.arrivabus.co.uk/\"/></ruleset>", "<ruleset name=\"Ars Technica (partial)\" f=\"Ars-Technica.xml\"><exclusion pattern=\"^http://(?:www\\.)?arstechnica\\.com/(?!ads/|civis/ucp\\.php|favicon\\.ico|public-shared/|services/incr\\.php|subscriptions(?:$|[?/])|wp-content/)\"/><securecookie host=\"^\\.arstechnica\\.com$\" name=\"^(?:mbox|s_\\w+|timeSpent|__utm\\w)$\"/><rule from=\"^http://ars\\.to/\" to=\"https://bit.ly/\"/><rule from=\"^http://((?:cms|coins|hq|www)\\.)?arstechnica\\.com/\" to=\"https://$1arstechnica.com/\"/><rule from=\"^http://feeds\\.arstechnica\\.com/(?:\\?.*)?$\" to=\"https://feedburner.google.com/fb/a/home\"/><rule from=\"^http://stats2\\.arstechnica\\.com/\" to=\"https://condenast.112.2o7.net/\"/><rule from=\"^http://api\\.arstechnica\\.net/\" to=\"https://api.arstechnica.net/\"/><rule from=\"^http://(?:(?:media|origin)\\.arstechnica\\.com|(?:cdn|static)\\.arstechnica\\.net)/\" to=\"https://cdn.arstechnica.net/\"/></ruleset>", "<ruleset name=\"Art Practical\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Art-Practical.xml\"><rule from=\"^http://(?:www\\.)?artpractical\\.com/\" to=\"https://artpractical.com/\"/></ruleset>", "<ruleset name=\"Art.com (partial)\" f=\"Art.com.xml\"><securecookie host=\"^(?:\\.atrack|eu)?\\.art\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art2pO.com\" f=\"Art2pO.com.xml\"><securecookie host=\"^(?:w*\\.)?art2po\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArtChristina\" default_off=\"expired, mismatched\" f=\"ArtChristina.xml\"><rule from=\"^http://(?:www\\.)?artchristina\\.com/\" to=\"https://artchristina.com/\"/></ruleset>", "<ruleset name=\"ArtSkills\" f=\"ArtSkills.xml\"><securecookie host=\"^(?:w*\\.)?artskills\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art Lebedev.ru (partial)\" f=\"Art_Lebedev.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?artlebedev\\.ru/+(?!everything/|favicon\\.ico|svalka/)\"/><exclusion pattern=\"^http://store\\.artlebedev\\.ru/+(?!_i/|favicon\\.ico|products/images/|themes/)\"/><rule from=\"^http://((?:img|store|web|www)\\.)?artlebedev\\.ru/\" to=\"https://$1artlebedev.ru/\"/></ruleset>", "<ruleset name=\"Art Schools.com (partial)\" f=\"Art_Schools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art print images.com\" default_off=\"mismatched\" f=\"Art_print_images.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artday\" f=\"Artday.xml\"><securecookie host=\"^auction\\.artday\\.co\\.kr$\" name=\".+\"/><rule from=\"^http://(?:auction\\.|www\\.)?artday\\.co\\.kr/\" to=\"https://auction.artday.co.kr/\"/></ruleset>", "<ruleset name=\"Arte do Lar.com.br\" default_off=\"plaintext reply\" f=\"Arte_do_Lar.com.br.xml\"><securecookie host=\"^\\.(?:www\\.)?artedolar\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artemis-IA.eu\" f=\"Artemis-IA.eu.xml\"><securecookie host=\"^artemis-ia\\.eu$\" name=\".+\"/><rule from=\"^http://community\\.artemis-ia\\.eu/[^?]*\" to=\"https://artemis-ia.eu/community\"/><rule from=\"^http://www\\.artemis-ia\\.eu/\" to=\"https://artemis-ia.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artemis.net\" f=\"Artemis.net.xml\"><securecookie host=\"^\\.artemis(?:\\.net|internet\\.com)$\" name=\".+\"/><rule from=\"^http://(www\\.)?artemis(\\.net|internet\\.com)/\" to=\"https://$1artemis$2/\"/></ruleset>", "<ruleset name=\"Artfiles New Media (partial)\" f=\"Artfiles_New_Media.xml\"><securecookie host=\"^(?:webmail|www)?\\.artfiles\\.de$\" name=\".+\"/><rule from=\"^http://((?:dcp\\.c|documents|www)\\.)?artfiles\\.de/\" to=\"https://$1artfiles.de/\"/><rule from=\"^http://(?:www\\.)?webmail\\.artfiles\\.de/\" to=\"https://webmail.artfiles.de/\"/></ruleset>", "<ruleset name=\"Article 19.org\" f=\"Article_19.org.xml\"><securecookie host=\"^www\\.article19\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Articulate.com (false MCB)\" platform=\"mixedcontent\" f=\"Articulate.com-falsemixed.xml\"><securecookie host=\"^www\\.articulate\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?articulate\\.com/\" to=\"https://www.articulate.com/\"/></ruleset>", "<ruleset name=\"Articulate.com (partial)\" f=\"Articulate.com.xml\"><securecookie host=\"^\\.?store\\.articulate\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?articulate\\.com/(?=blog/wp-(?:content|includes)/|favicon\\.ico|images/|javascripts/|stylesheets/)\" to=\"https://www.articulate.com/\"/><rule from=\"^http://store\\.articulate\\.com/\" to=\"https://store.articulate.com/\"/></ruleset>", "<ruleset name=\"Artizone (partial)\" f=\"Artizone.xml\"><exclusion pattern=\"^http://(?:www\\.)?artizone\\.com/(?!Content/|favicon\\.ico|Scripts/|Shipping/(?:Account/LogOn|Help/ContactUs))\"/><securecookie host=\"^\\.artizone\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^www\\.artizone\\.com$\" name=\"^artizoneStat$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artsy.net\" f=\"Artsy.net.xml\"><securecookie host=\"^(?:admin|www)\\.artsy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArturKim (partial)\" default_off=\"mismatch\" f=\"ArturKim.xml\"><rule from=\"^http://(?:www\\.)?arturkim\\.com/wp-content/\" to=\"https://arturkim.com/wp-content/\"/></ruleset>", "<ruleset name=\"Arukereso.hu\" f=\"Arukereso.xml\"><securecookie host=\".*\\.arukereso\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arvixe.com\" f=\"Arvixe.xml\"><securecookie host=\"^(?:.*\\.)?arvixe\\.com$\" name=\".+\"/><rule from=\"^http://mail\\.arvixe\\.com/\" to=\"https://postoffice.arvixe.com/\"/><rule from=\"^http://((?:affiliates|postoffice|support|www)\\.)?arvixe\\.com/\" to=\"https://$1arvixe.com/\"/></ruleset>", "<ruleset name=\"arvm.de\" default_off=\"failed ruleset test\" f=\"Arvm.de.xml\"><rule from=\"^http://i\\.arvm\\.de/\" to=\"https://i.arvm.de/\"/></ruleset>", "<ruleset name=\"AsSeenOnTV.com (partial)\" f=\"AsSeenOnTV.com.xml\"><exclusion pattern=\"http://www\\.asseenontv\\.com/+(?!account\\.php|asseenontv/|cart\\.php|default/|favicon\\.ico|img/)\"/><rule from=\"^http://(?:www\\.)?asseenontv\\.com/\" to=\"https://www.asseenontv.com/\"/></ruleset>", "<ruleset name=\"Asahi Shimbun (partial)\" f=\"Asahi_Shimbun.xml\"><exclusion pattern=\"^http://digital\\.asahi\\.com/(?!css/|img/|login)\"/><securecookie host=\"^ajw\\.asahi\\.com$\" name=\".+\"/><rule from=\"^http://(ajw|digital)\\.asahi\\.com/\" to=\"https://$1.asahi.com/\"/></ruleset>", "<ruleset name=\"Asana.com (partial)\" f=\"Asana.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://connect\\.asana\\.com/\" to=\"https://t.trackedlink.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asbestos Safety and Eradication Agency\" f=\"AsbestosSafetyandEradicationAgency.xml\"><rule from=\"^http://(?:www\\.)?asbestossafety\\.gov\\.au/\" to=\"https://asbestossafety.gov.au/\"/></ruleset>", "<ruleset name=\"Asbury Park Press (partial)\" default_off=\"failed ruleset test\" f=\"Asbury_Park_Press.xml\"><securecookie host=\"^www\\.app\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?app\\.com/\" to=\"https://www.app.com/\"/></ruleset>", "<ruleset name=\"Ascend app.com\" f=\"Ascend_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AscenderFonts.com\" f=\"AscenderFonts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asciinema.org (partial)\" f=\"Asciinema.org.xml\"><exclusion pattern=\"^http://blog\\.asciinema\\.org/+(?!css/|img/)\"/><securecookie host=\"^asciinema\\.org$\" name=\".+\"/><rule from=\"^http://blog\\.asciinema\\.org/\" to=\"https://asciinema-blog.herokuapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ascio.com (partial)\" f=\"Ascio.com.xml\"><securecookie host=\"^portal\\.ascio\\.com$\" name=\".+\"/><rule from=\"^http://portal\\.ascio\\.com/\" to=\"https://portal.ascio.com/\"/></ruleset>", "<ruleset name=\"Asecus\" f=\"Asecus.xml\"><securecookie host=\"^asecus\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashampoo.com (partial)\" f=\"Ashampoo.com.xml\"><securecookie host=\"^(?:.+\\.)?ashampoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asheville Citizen-Times\" default_off=\"failed ruleset test\" f=\"Asheville_Citizen-Times.xml\"><securecookie host=\"^www\\.citizen-times\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?citizen-times\\.com/\" to=\"https://www.citizen-times.com/\"/></ruleset>", "<ruleset name=\"Ashford.com (partial)\" default_off=\"failed ruleset test\" f=\"Ashford.com.xml\"><rule from=\"^http://(?:www\\.)?ashford\\.com/(css_compressed/|images/|global/util/loginRedirect\\.jsp|marketing/|myaccount/)\" to=\"https://www.ashford.com/$1\"/></ruleset>", "<ruleset name=\"Ashland Fiber.net (partial)\" f=\"Ashland_Fiber.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashley Madison.com (false MCB)\" platform=\"mixedcontent\" f=\"Ashley_Madison.com-falsemixed.xml\"><securecookie host=\"^blog(?:\\w\\w)?\\.ashleymadison\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashley Madison.com (partial)\" f=\"Ashleymadison.com.xml\"><exclusion pattern=\"^http://amblog\\.ashleymadison\\.com/+(?!wp-content/)\"/><securecookie host=\"^(?:\\.affiliate|www)?\\.ashleymadison\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asia-Pacific Network Information Centre (mismatches)\" default_off=\"mismatch\" f=\"Asia-Pacific-Network-Information-Centre-mismatches.xml\"><rule from=\"^http://conference\\.apnic\\.net/\" to=\"https://conference.apnic.net/\"/></ruleset>", "<ruleset name=\"Asia-Pacific Network Information Centre (partial)\" f=\"Asia-Pacific-Network-Information-Centre.xml\"><securecookie host=\"^\\.apnic\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?apnic\\.net/\" to=\"https://www.apnic.net/\"/><rule from=\"^http://submit\\.apnic\\.net/\" to=\"https://submit.apnic.net/\"/><rule from=\"^http://(?:www\\.)?myapnic\\.net/\" to=\"https://myapnic.net/\"/></ruleset>", "<ruleset name=\"AsiaBSDCon.org\" f=\"AsiaBSDCon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asianfanfics\" f=\"Asianfanfics.xml\"><securecookie host=\"^\\.asianfanfics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asjo.org\" f=\"Asjo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask.fm\" f=\"Ask.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AskMonty.org (partial)\" f=\"AskMonty.xml\"><rule from=\"^http://(?:www\\.)?askmonty\\.org/+\" to=\"https://mariadb.com/about/\"/><rule from=\"^http://downloads\\.askmonty\\.org/+\" to=\"https://downloads.mariadb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask Leo.com\" f=\"Ask_Leo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask Leo media.com\" f=\"Ask_Leo_media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask a Patient\" f=\"Ask_a_Patient.xml\"><securecookie host=\"^(?:www\\.)?askapatient\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?askapatient\\.com/\" to=\"https://www.askapatient.com/\"/></ruleset>", "<ruleset name=\"Ask the Builder.com (partial)\" default_off=\"missing certificate chain\" f=\"Ask_the_Builder.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.shop\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Askives.com\" f=\"Askives.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"asknet (partial)\" f=\"Asknet.xml\"><rule from=\"^http://srv\\.(cdn-)?asknet\\.(com|de)/\" to=\"https://srv.$1asknet.$2/\"/></ruleset>", "<ruleset name=\"Asmc.de\" f=\"Asmc.de.xml\"><rule from=\"^http://(?:www\\.)?asmc\\.de/\" to=\"https://www.asmc.de/\"/></ruleset>", "<ruleset name=\"asnetworks.de (partial)\" default_off=\"expired, self-signed\" f=\"Asnetworks.com.xml\"><rule from=\"^http://ads\\.asnetworks\\.de/\" to=\"https://ads.asnetworks.de/\"/></ruleset>", "<ruleset name=\"Aspect Security\" default_off=\"failed ruleset test\" f=\"Aspect-Security.xml\"><rule from=\"^http://(?:www\\.)?aspectsecurity\\.com/\" to=\"https://www.aspectsecurity.com/\"/></ruleset>", "<ruleset name=\"Aspen.com (partial)\" f=\"Aspen.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?aspen\\.com/(?!favicon\\.ico|files/|sites/)\"/><securecookie host=\"^\\.aspen\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?aspen\\.com/\" to=\"https://secure.bluehost.com/~aspenco3/\"/></ruleset>", "<ruleset name=\"Aspiration Tech.org\" f=\"Aspiration_Tech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aspsys.com\" f=\"Aspsys.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assay Assured.co.uk (partial)\" f=\"Assayassured.co.uk.xml\"><rule from=\"^http://(www\\.)?assayassured\\.co\\.uk/(?!$|\\?|index\\.php|site/*(?:$|[?/]))\" to=\"https://$1assayassured.co.uk/\"/></ruleset>", "<ruleset name=\"asseenonresponsetv.com\" default_off=\"failed ruleset test\" f=\"Asseenonresponsetv.com.xml\"><securecookie host=\"^www\\.asseenonresponsetv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assembla (mismatches)\" default_off=\"mismatched\" f=\"Assembla-mismatches.xml\"><rule from=\"^http://(blog|feedback)\\.assembla\\.com/\" to=\"https://$1.assembla.com/\"/></ruleset>", "<ruleset name=\"Assembla (partial)\" f=\"Assembla.xml\"><securecookie host=\"^(?:.*\\.)?assembla\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|nooku|(?:scala-ide-)?portfolio|svn2|trac2?|www)\\.)?assembla\\.com/\" to=\"https://$1assembla.com/\"/><rule from=\"^http://feedback\\.assembla\\.com/track\\.gif\" to=\"https://assembla.uservoice.com/track.gif\"/></ruleset>", "<ruleset name=\"Assemble.me\" f=\"Assemble.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assembly.Wales (partial)\" f=\"Assembly.Wales.xml\"><exclusion pattern=\"^http://(?:www\\.)?assembly\\.wales/+(?!en/help/contact-the-assembly/Pages/enquiryform\\.aspx|SiteCollectionImages/|Style%20Library/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assembly.com (partial)\" f=\"Assembly.com.xml\"><rule from=\"^http://(?:(treasure\\.)|www\\.)?assembly\\.com/\" to=\"https://$1assembly.com/\"/></ruleset>", "<ruleset name=\"Asset Insight\" f=\"Asset_Insight.xml\"><securecookie host=\"^\\.assetinsightinc.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assets-Yammer.com\" f=\"Assets-Yammer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assistance-Multimedia.fr\" default_off=\"connection dropped\" f=\"Assistance-Multimedia.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.ca\" f=\"Assoc-Amazon.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.co.jp\" f=\"Assoc-Amazon.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.co.uk\" f=\"Assoc-Amazon.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.com\" f=\"Assoc-Amazon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.de\" f=\"Assoc-Amazon.de.xml\"><rule from=\"^http://assoc-amazon\\.de/\" to=\"https://www.assoc-amazon.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.fr\" f=\"Assoc-Amazon.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Associated Press (partial)\" f=\"Associated_Press.xml\"><rule from=\"^http://binaryapi\\.ap\\.org/\" to=\"https://d3obzbnzikmki9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"AWP.is\" f=\"Associated_Whistleblowing_Press.xml\"><securecookie host=\"^\\.awp\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"associatedcontent.com\" default_off=\"failed ruleset test\" f=\"Associatedcontent.com.xml\"><rule from=\"^http://associatedcontent\\.com/\" to=\"https://www.associatedcontent.com/\"/><rule from=\"^http://www\\.associatedcontent\\.com/\" to=\"https://www.associatedcontent.com/\"/></ruleset>", "<ruleset name=\"APC.org (partial)\" f=\"Association-for-Progressive-Communications.xml\"><securecookie host=\"^\\.(?:www\\.gn\\.)?apc\\.org$\" name=\".+\"/><rule from=\"^http://flossprize\\.apc\\.org/[^?]*\" to=\"https://www.apc.org/en/node/1786\"/><rule from=\"^http://gn\\.apc\\.org/[^?]*\" to=\"https://www.gn.apc.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Association for Learning Technology (partial)\" f=\"Association_for_Learning_Technology.xml\"><rule from=\"^http://(www\\.)?alt\\.ac\\.uk/((?:civicrm|user)(?:$|\\?|/)|modules/|sites/|themes/)\" to=\"https://$1alt.ac.uk/$2\"/></ruleset>", "<ruleset name=\"Association for Psychological Science\" f=\"Association_for_Psychological_Science.xml\"><securecookie host=\"^.+\\.psychologicalscience\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?psychologicalscience\\.org/\" to=\"https://www.psychologicalscience.org/\"/><rule from=\"^http://aps\\.psychologicalscience\\.org/\" to=\"https://aps.psychologicalscience.org/\"/></ruleset>", "<ruleset name=\"Association of National Advertisers\" f=\"Association_of_National_Advertisers.xml\"><securecookie host=\"^\\.ana\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ana\\.net/\" to=\"https://www.ana.net/\"/></ruleset>", "<ruleset name=\"Astaro.com\" f=\"Astaro.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://feature\\.astaro\\.com/\" to=\"https://astaro.uservoice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asterisk.org (partial)\" default_off=\"failed ruleset test\" f=\"Asterisk.xml\"><securecookie host=\"^wiki\\.asterisk\\.org$\" name=\".+\"/><rule from=\"^http://((?:ari|bamboo|issues|profiles|reviewboard|signup|wiki)\\.)?asterisk\\.org/\" to=\"https://$1asterisk.org/\"/></ruleset>", "<ruleset name=\"Asterisk Exchange (partial)\" f=\"Asterisk_Exchange.xml\"><rule from=\"^http://(www\\.)?asteriskexchange\\.com/(images|stylesheets|system)/\" to=\"https://$1asteriskexchange.com/$2/\"/></ruleset>", "<ruleset name=\"Astra.io\" f=\"Astra.io.xml\"><rule from=\"^http://(?:www\\.)?astra\\.io/\" to=\"https://astra.io/\"/></ruleset>", "<ruleset name=\"Astrill.com\" f=\"Astrill.com.xml\"><rule from=\"^http://((?:support|www)\\.)?astrill\\.com/\" to=\"https://$1astrill.com/\"/></ruleset>", "<ruleset name=\"Astrobotic.com\" f=\"Astrobotic.com.xml\"><securecookie host=\"^www\\.astrobotic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?astrobotic\\.com/\" to=\"https://www.astrobotic.com/\"/></ruleset>", "<ruleset name=\"Astrocentro.com (partial)\" f=\"Astrocentro.com.xml\"><rule from=\"^http://tienda\\.astrocentro\\.com/\" to=\"https://tienda.astrocentro.com/\"/></ruleset>", "<ruleset name=\"AstronomicalTours.net\" default_off=\"mismatched\" f=\"AstronomicalTours.xml\"><securecookie host=\"^www\\.astronomicaltours\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Astronomy Now.com\" f=\"Astronomy_Now.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aswirlgirl.com (partial)\" f=\"Aswirlgirl.com.xml\"><rule from=\"^http://(?:www\\.)?(?:aswirlgirl|theswirlworld)\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~aswirlgi/\"/></ruleset>", "<ruleset name=\"Kingdom of Loathing.com (testing)\" default_off=\"needs testing\" f=\"Asymmetric-Publications.xml\"><securecookie host=\"^www\\.kingdomofloathing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atagar.com\" f=\"Atagar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AtariAge\" f=\"AtariAge.xml\"><securecookie host=\"^(?:.*\\.)?atariage\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atariage\\.com/\" to=\"https://atariage.com/\"/></ruleset>", "<ruleset name=\"atgsvcs.com\" f=\"Atgsvcs.com.xml\"><rule from=\"^http://(rules|static)\\.atgsvcs\\.com/\" to=\"https://$1.atgsvcs.com/\"/></ruleset>", "<ruleset name=\"Athaliasoft (partial)\" default_off=\"self-signed\" f=\"Athaliasoft.xml\"><securecookie host=\"^(?:.*\\.)?agenda\\.athaliasoft\\.fr$\" name=\".*\"/><rule from=\"^http://agenda\\.athaliasoft\\.fr/\" to=\"https://agenda.athaliasoft.fr/\"/></ruleset>", "<ruleset name=\"Atheists.org (partial)\" f=\"Atheists.xml\"><securecookie host=\"^(?:w*\\.)?atheists\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atipso.com\" default_off=\"failed ruleset test\" f=\"Atipso.com.xml\"><securecookie host=\"^\\.app\\.atipso\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|piwik|static|www)\\.)?atipso\\.com/\" to=\"https://$1atipso.com/\"/></ruleset>", "<ruleset name=\"Ativismo.org.br (partial)\" default_off=\"failed ruleset test\" f=\"Ativismo.org.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlantic Media (partial)\" default_off=\"failed ruleset test\" f=\"Atlantic-Media.xml\"><securecookie host=\"\\.govexec\\.com$\" name=\".*\"/><securecookie host=\"^admin\\.theatlantic(?:cities|wire)$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?govexec\\.com/\" to=\"https://www.govexec.com/\"/><rule from=\"^http://secure\\.nationaljournal\\.com/\" to=\"https://secure.nationaljournal.com/\"/><rule from=\"^http://admin\\.theatlantic(cities|wire)\\.com/\" to=\"https://admin.theatlantic$1.com/\"/><rule from=\"^http://cdn\\.theatlanticcities\\.com/\" to=\"https://admin.theatlanticcities.com/\"/></ruleset>", "<ruleset name=\"Atlantic Metro Communications (partial)\" platform=\"mixedcontent\" f=\"Atlantic-Metro-Communications.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\"^(?:.*\\.)?atlanticmetro\\.net$\" name=\".*\"/><rule from=\"^http://(my\\.|www\\.)?atlanticmetro\\.net/\" to=\"https://$1my.atlanticmetro.net/\"/></ruleset>", "<ruleset name=\"Atlantic.net\" f=\"Atlantic.net.xml\"><securecookie host=\"^(?:.*\\.)?atlantic\\.net$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?atlantic\\.net/\" to=\"https://$1atlantic.net/\"/></ruleset>", "<ruleset name=\"Atlantis.sk\" f=\"Atlantis.sk.xml\"><securecookie host=\"^(?:.+\\.)?atlantis\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlas of Prejudice.com\" f=\"Atlas_of_Prejudice.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlassian.com (partial)\" f=\"Atlassian.xml\"><exclusion pattern=\"http://(?:click\\.mailer|status\\.marketplace|swag)\\.atlassian\\.com/\"/><exclusion pattern=\"^http://(?:.+\\.(?:ams|dyn\\.syd|inf|internal|sf|office)|go)\\.atlassian\\.com/\"/><securecookie host=\"^(?:ace|answers|aug|confluence|developer|id|jira|marketplace|my|openid|support)\\.atlassian\\.com$\" name=\".+\"/><rule from=\"^http://status\\.atlassian\\.com/\" to=\"https://atlassian.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlatszo.hu (partial)\" default_off=\"md5, self-signed\" f=\"Atlatszo.hu.xml\"><securecookie host=\"^www\\.atlatszo\\.hu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atlatszo\\.hu/\" to=\"https://www.atlatszo.hu/\"/></ruleset>", "<ruleset name=\"Atmail\" f=\"Atmail.xml\"><securecookie host=\"^\\.atmail\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atom.io (partial)\" f=\"Atom.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomic Cowlick\" default_off=\"failed ruleset test\" f=\"Atomic-Cowlick.xml\"><securecookie host=\"^(?:www\\.)?atomiccowlick\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomic Insights\" default_off=\"self-signed\" f=\"Atomic-Insights.xml\"><securecookie host=\"^atomicinsights\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atomicinsights\\.com/\" to=\"https://atomicinsights.com/\"/></ruleset>", "<ruleset name=\"Atomic Object.com (partial)\" f=\"Atomic_Object.com.xml\"><exclusion pattern=\"^http://spin\\.atomicobject\\.com/+(?!wp-content/)\"/><securecookie host=\"^(?:craft-staging|www)\\.atomicobject\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomicorp\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Atomicorp.xml\"><rule from=\"^http://(?:www\\.)?atomicorp\\.com/\" to=\"https://www.atomicorp.com/\"/></ruleset>", "<ruleset name=\"Atomz\" default_off=\"failed ruleset test\" f=\"Atomz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atos.net\" f=\"Atos.net.xml\"><securecookie host=\"^(?:\\w+\\.)?atos\\.net$\" name=\".+\"/><rule from=\"^http://((?:a[eprtu]|ascentlookout|b[egr]|c[hnz]|cms|de|dk|eg|es|fi|fr|hr|in|it|jp|mx|n[alz]|p[hlt]|prd|r[osu]|se|sk|t[hrw]|uk|www|za)\\.)?atos\\.net/\" to=\"https://$1atos.net/\"/></ruleset>", "<ruleset name=\"Atrativa.com.br (partial)\" f=\"Atrativa.com.br.xml\"><exclusion pattern=\"^http://(?:www\\.)?atrativa\\.com\\.br/+(?!img/)\"/><rule from=\"^http://(?:secure\\.|www\\.)?atrativa\\.com\\.br/\" to=\"https://secure.atrativa.com.br/\"/></ruleset>", "<ruleset name=\"atsec.com\" f=\"Atsec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"@stuff\" f=\"Atstuff.xml\"><securecookie host=\"^\\.atstuff\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attac.at (partial)\" f=\"Attac.at.xml\"><exclusion pattern=\"^http://www\\.attac\\.at/+(?!fileadmin/|index\\.php\\?eID=fontsizer|piwik/|typo3conf/|typo3temp/)\"/><securecookie host=\"^attac\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attachmate Group.com (partial)\" f=\"Attachmate-Group.xml\"><securecookie host=\"^(?:esp|login)\\.attachmategroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attachmate.com (partial)\" f=\"Attachmate.xml\"><securecookie host=\"^download\\.attachmate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attendesource.com\" default_off=\"Appears to break certain registration pages when JavaScript scripting is enabled.\" f=\"Attendesource.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attic-backup.org\" f=\"Attic-backup.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AtticTV.com\" f=\"AtticTV.com.xml\"><securecookie host=\"^\\.attictv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attorney-General's Department\" f=\"Attorney-GeneralsDepartment.xml\"><rule from=\"^http://(?:www\\.)?ag\\.gov\\.au/\" to=\"https://www.ag.gov.au/\"/></ruleset>", "<ruleset name=\"Attracta\" f=\"Attracta.xml\"><securecookie host=\"^(?:.*\\.)?attracta\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?attracta\\.com/\" to=\"https://$1attracta.com/\"/></ruleset>", "<ruleset name=\"Atypon\" platform=\"mixedcontent\" f=\"Atypon.xml\"><securecookie host=\"^(?:.*\\.)?atypon\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aucklandairport.co.nz\" f=\"Aucklandairport.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auctionbunker\" f=\"Auctionbunker.xml\"><securecookie host=\"^(?:w*\\.)?auctionbunker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"auctionthing.net\" default_off=\"failed ruleset test\" f=\"Auctionthing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auctiva.com (partial)\" f=\"Auctiva.com.xml\"><rule from=\"^http://img\\.auctiva\\.com/\" to=\"https://s3.amazonaws.com/img.auctiva.com/\"/></ruleset>", "<ruleset name=\"Audemars Piguet.com\" default_off=\"failed ruleset test\" f=\"Audemars_Piguet.com.xml\"><securecookie host=\"^\\.audemarspiguet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?audemarspiguet\\.com/\" to=\"https://www.audemarspiguet.com/\"/></ruleset>", "<ruleset name=\"Audentio.com\" f=\"Audentio.com.xml\"><securecookie host=\"^www\\.audentio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audible.de\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Audible.de.xml\"><securecookie host=\"^(?:.*\\.)?audible\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?audible\\.de/\" to=\"https://www.audible.de/\"/><rule from=\"^http://audible\\.de/\" to=\"https://www.audible.de/\"/></ruleset>", "<ruleset name=\"Audicon.net\" f=\"Audicon.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audience Ad Network (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Audience-Ad-Network.xml\"><rule from=\"^http://manage\\.audienceadnetwork\\.com/\" to=\"https://manage.audienceadnetwork.com/\"/><rule from=\"^http://(\\w+)\\.qwobl\\.net/\" to=\"https://$1.qwobl.net/\"/><securecookie host=\"^manage\\.audienceadnetwork\\.com$\" name=\".*\"/><securecookie host=\"^\\.qwobl\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"Audience-Discovery.com\" default_off=\"failed ruleset test\" f=\"Audience-Discovery.com.xml\"><securecookie host=\"^(?:w*\\.)?audience-discovery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AudienceScience\" f=\"AudienceScience.xml\"><securecookie host=\"^demand\\.audiencescience\\.com$\" name=\"^hsPagesViewedThisSession$\"/><securecookie host=\"^gateway\\.audiencescience\\.com$\" name=\"^JSESSIONID$\"/><securecookie host=\"^gateway\\.audiencescience\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.targetingmarketplace\\.com/\" to=\"https://ad.yieldmanager.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audience Amplify.com (partial)\" f=\"Audience_Amplify.com.xml\"><rule from=\"^http://ads\\.audienceamplify\\.com/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"Audience IQ.com\" f=\"Audience_IQ.com.xml\"><securecookie host=\"^\\.audienceiq\\.com$\" name=\".+\"/><rule from=\"^http://www\\.audienceiq\\.com/.*\" to=\"https://www.experian.com/business-services/digital-advertising.html?cat1=marketing-services\"/><rule from=\"^http://d\\.audienceiq\\.com/\" to=\"https://d.audienceiq.com/\"/></ruleset>", "<ruleset name=\"Audience Targeting\" default_off=\"mismatch\" f=\"Audience_Targeting.xml\"><securecookie host=\"^audiencetargeting\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?audiencescience\\.com/\" to=\"https://audiencescience.com/\"/></ruleset>", "<ruleset name=\"Audiko\" platform=\"mixedcontent\" f=\"Audiko.xml\"><rule from=\"^http://(s[45]\\.|www\\.)?audiko\\.net/\" to=\"https://$1audiko.net/\"/><rule from=\"^http://css\\.cdn\\.audiko\\.net/\" to=\"https://d21bsjqmai8lm5.cloudfront.net/\"/><rule from=\"^http://jpg\\.st\\.audiko\\.net/\" to=\"https://s4.audiko.net/\"/></ruleset>", "<ruleset name=\"AudioGO\" default_off=\"failed ruleset test\" f=\"AudioGO.xml\"><securecookie host=\"^\\.?www\\.audiogo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?audiogo\\.com/\" to=\"https://www.audiogo.com/\"/></ruleset>", "<ruleset name=\"Audioboo.fm (partial)\" f=\"Audioboo.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audioscrobbler.com\" f=\"Audioscrobbler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AuditShark.com\" f=\"AuditShark.com.xml\"><securecookie host=\"^www\\.auditshark\\.com$\" name=\".+\"/><rule from=\"^http://auditshark\\.com/\" to=\"https://www.auditshark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auditorius.ru\" default_off=\"expired, mismatched\" f=\"Auditorius.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audtd.com (partial)\" f=\"Audtd.com.xml\"><securecookie host=\"^\\.audtd\\.com$\" name=\".+\"/><rule from=\"^http://audtd\\.com/\" to=\"https://auditorius.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audubon.org\" f=\"Audubon.org.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://audubon\\.org/\" to=\"https://www.audubon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aufbix.org (mismatched)\" default_off=\"mismatched\" f=\"Aufbix.org-problematic.xml\"><securecookie host=\"^tnt\\.aufbix\\.org$\" name=\".+\"/><rule from=\"^http://tnt\\.aufbix\\.org/\" to=\"https://tnt.aufbix.org/\"/></ruleset>", "<ruleset name=\"Aufbix.org (partial)\" default_off=\"failed ruleset test\" f=\"Aufbix.org.xml\"><securecookie host=\"^hydra\\.aufbix\\.org$\" name=\".+\"/><rule from=\"^http://hydra\\.aufbix\\.org/\" to=\"https://hydra.aufbix.org/\"/></ruleset>", "<ruleset name=\"Aulani.jobs\" f=\"Aulani.jobs.xml\"><securecookie host=\"^aulani\\.jobs$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aulani\\.jobs/\" to=\"https://aulani.jobs/\"/></ruleset>", "<ruleset name=\"Aulo.in\" default_off=\"Certificate mismatch\" f=\"Aulo.in.xml\"><rule from=\"^http://(?:www\\.)?aulo\\.in/\" to=\"https://aulo.in/\"/></ruleset>", "<ruleset name=\"aunggo.com\" default_off=\"failed ruleset test\" f=\"Aunggo.com.xml\"><rule from=\"^http://tracking\\.aunggo\\.com/\" to=\"https://gunggo.go2cloud.org/\"/></ruleset>", "<ruleset name=\"Auphonic.com\" f=\"Auphonic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aurous.me (partial)\" f=\"Aurous.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AusCERT.org\" f=\"AusCERT.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AusGamers.com (buggy)\" default_off=\"breaks CSS\" f=\"AusGamers.com.xml\"><rule from=\"^http://(www\\.)?ausgamers\\.com/(account|ajax|res)/\" to=\"https://$1ausgamers.com/$1/\"/></ruleset>", "<ruleset name=\"AusRegistry (partial)\" f=\"AusRegistry.xml\"><securecookie host=\"^(?:www\\.)?ausregistry\\.com\\.au$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AusinfoTech.net\" f=\"AusinfoTech.xml\"><securecookie host=\"^(?:\\.|www\\.)?ausinfotech\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aussie Perth Tours\" f=\"Aussie-Perth-Tours.xml\"><securecookie host=\"aussieperthtours\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Austin Fit Magazine.com\" default_off=\"failed ruleset test\" f=\"Austin_Fit_Magazine.com.xml\"><securecookie host=\"^(?:w*\\.)?austinfitmagazine\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?austinfitmagazine\\.com/\" to=\"https://$1austinfitmagazine.com/\"/><rule from=\"^https?://static\\d\\.austinfitmagazine\\.com/\" to=\"https://www.austinfitmagazine.com/\"/></ruleset>", "<ruleset name=\"Austiners.com (false MCB)\" platform=\"mixedcontent\" f=\"Austiners.com.xml\"><securecookie host=\"^(?:www)?\\.austiners\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?austiners\\.com/\" to=\"https://www.austiners.com/\"/></ruleset>", "<ruleset name=\"Austrade\" f=\"Austrade.xml\"><rule from=\"^http://(?:www\\.)?austrade\\.gov\\.au/\" to=\"https://www.austrade.gov.au/\"/></ruleset>", "<ruleset name=\"Australia: UNSC\" f=\"AustraliaUNSC.xml\"><rule from=\"^http://(?:www\\.)?australia-unsc\\.gov\\.au/\" to=\"https://australia-unsc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Koala Foundation\" default_off=\"failed ruleset test\" f=\"Australian-Koala-Foundation.xml\"><rule from=\"^http://(?:www\\.)?savethekoala\\.com/\" to=\"https://www.savethekoala.com/\"/></ruleset>", "<ruleset name=\"Australian Antarctic Data Centre\" default_off=\"failed ruleset test\" f=\"AustralianAntarcticDataCentre.xml\"><rule from=\"^http://(?:www\\.)?data\\.aad\\.gov\\.au/\" to=\"https://data.aad.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Business Register\" f=\"AustralianBusinessRegister.xml\"><rule from=\"^http://(?:www\\.)?abr\\.gov\\.au/\" to=\"https://abr.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Clinical Trials\" f=\"AustralianClinicalTrials.xml\"><rule from=\"^http://(?:www\\.)?australianclinicaltrials\\.gov\\.au/\" to=\"https://www.australianclinicaltrials.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Competition and Consumer Commission\" f=\"AustralianCompetitionandConsumerCommission.xml\"><rule from=\"^http://(?:www\\.)?accc\\.gov\\.au/\" to=\"https://www.accc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Crime Commission\" f=\"AustralianCrimeCommission.xml\"><rule from=\"^http://(?:www\\.)?crimecommission\\.gov\\.au/\" to=\"https://www.crimecommission.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Data Archive\" f=\"AustralianDataArchive.xml\"><rule from=\"^http://(?:www\\.)?ada\\.edu\\.au/\" to=\"https://www.ada.edu.au/\"/></ruleset>", "<ruleset name=\"Australian Early Development Census\" f=\"AustralianEarlyDevelopmentCensus.xml\"><rule from=\"^http://(?:www\\.)?aedc\\.gov\\.au/\" to=\"https://www.aedc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Emergency Management\" f=\"AustralianEmergencyManagement.xml\"><rule from=\"^http://(?:www\\.)?em\\.gov\\.au/\" to=\"https://www.em.gov.au/\"/><rule from=\"^http://(?:www\\.)?emknowledge\\.gov\\.au/\" to=\"https://www.emknowledge.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Energy Regulator\" f=\"AustralianEnergyRegulator.xml\"><rule from=\"^http://(?:www\\.)?aer\\.gov\\.au/\" to=\"https://www.aer.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Export Awards\" f=\"AustralianExportAwards.xml\"><rule from=\"^http://(?:www\\.)?exportawards\\.gov\\.au/\" to=\"https://www.exportawards.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Financial Security Authority\" f=\"AustralianFinancialSecurityAuthority.xml\"><rule from=\"^http://(?:www\\.)?afsa\\.gov\\.au/\" to=\"https://www.afsa.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Government Boards\" f=\"AustralianGovernmentBoards.xml\"><rule from=\"^http://(?:www\\.)?ausgovboards\\.gov\\.au/\" to=\"https://www.ausgovboards.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Health Practitioner Regulation Agency\" f=\"AustralianHealthPractitionerRegulationAgency.xml\"><rule from=\"^http://(?:www\\.)?ahpra\\.gov\\.au/\" to=\"https://www.ahpra.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Human Rights Commission\" f=\"AustralianHumanRightsCommission.xml\"><rule from=\"^http://(?:www\\.)?humanrights\\.gov\\.au/\" to=\"https://www.humanrights.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Law Reform Commission\" f=\"AustralianLawReformCommission.xml\"><rule from=\"^http://(?:www\\.)?alrc\\.gov\\.au/\" to=\"https://www.alrc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Maritime Safety Authority\" f=\"AustralianMaritimeSafetyAuthority.xml\"><rule from=\"^http://(?:www\\.)?amsa\\.gov\\.au/\" to=\"https://www.amsa.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Passport Office\" f=\"AustralianPassportOffice.xml\"><rule from=\"^http://(?:www\\.)?passports\\.gov\\.au/\" to=\"https://www.passports.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Plants, Botany and Horticulture\" f=\"AustralianPlantsBotanyandHorticulture.xml\"><rule from=\"^http://(?:www\\.)?anbg\\.gov\\.au/\" to=\"https://www.anbg.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Sports Commission Learning Portal\" f=\"AustralianSportsCommissionLearningPortal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Strategic Policy Institute\" f=\"AustralianStrategicPolicyInstitute.xml\"><rule from=\"^http://(?:www\\.)?aspi\\.org\\.au/\" to=\"https://www.aspi.org.au/\"/></ruleset>", "<ruleset name=\"Australian Taxation Office\" f=\"AustralianTaxationOffice.xml\"><rule from=\"^http://(?:www\\.)?ato\\.gov\\.au/\" to=\"https://www.ato.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Transport Safety Bureau\" f=\"AustralianTransportSafetyBureau.xml\"><rule from=\"^http://(?:www\\.)?atsb\\.gov\\.au/\" to=\"https://www.atsb.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Valuation Office\" default_off=\"failed ruleset test\" f=\"AustralianValuationOffice.xml\"><rule from=\"^http://(?:www\\.)?avo\\.gov\\.au/\" to=\"https://www.avo.gov.au/\"/></ruleset>", "<ruleset name=\"Australian War Memorial\" default_off=\"failed ruleset test\" f=\"AustralianWarMemorial.xml\"><rule from=\"^http://(?:www\\.)?awm\\.gov\\.au/\" to=\"https://www.awm.gov.au/\"/></ruleset>", "<ruleset name=\"Austrian Airlines\" f=\"AustrianAirlines.xml\"><rule from=\"^http://(?:www\\.)?austrian\\.com/\" to=\"https://www.austrian.com/\"/></ruleset>", "<ruleset name=\"Auth0.com\" f=\"Auth0.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"authbox.io\" f=\"Authbox.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Authorea.com\" f=\"Authorea.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Authorize.Net\" default_off=\"failed ruleset test\" f=\"Authorize.net.xml\"><securecookie host=\"^(?:.*\\.)?authorize\\.net$\" name=\".+\"/><rule from=\"^http://authorize\\.net/\" to=\"https://www.authorize.net/\"/><rule from=\"^http://(account|captcha|content|(?:community\\.)?developer|ems|simplecheckout|support|verify|www)\\.authorize\\.net/\" to=\"https://$1.authorize.net/\"/><rule from=\"^http://(?:www\\.)?authorizenet\\.com/\" to=\"https://www.authorize.net/\"/><rule from=\"^http://(?:www\\.)?fuzeqna\\.com/\" to=\"https://www.fuzeqna.com/\"/></ruleset>", "<ruleset name=\"Authy.com (partial)\" f=\"Authy.com.xml\"><securecookie host=\"^(?:www)?\\.authy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autistic Self-Advocacy Network\" f=\"Autistic_Self-Advocacy_Network.xml\"><securecookie host=\"^autisticadvocacy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?autisticadvocacy\\.org/\" to=\"https://autisticadvocacy.org/\"/></ruleset>", "<ruleset name=\"Autistici/inventati\" default_off=\"self-signed\" f=\"Autistici-Inventati.xml\"><securecookie host=\"^www\\.autistici\\.org$\" name=\".+\"/><securecookie host=\"^\\.noblogs\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:autistic|inventat)i\\.org/\" to=\"https://www.autistici.org/\"/><rule from=\"^http://([^/:@\\.]+)\\.(autistici|inventati)\\.org/\" to=\"https://$1.$2.org/\"/></ruleset>", "<ruleset name=\"Auto.ro (partial)\" default_off=\"missing certificate chain\" f=\"Auto.ro.xml\"><exclusion pattern=\"^http://(?:www\\.)?auto\\.ro/+(?!favicon\\.ico|resize\\.php|resources/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AutoHits.vn\" default_off=\"expired, mismatched, self-signed\" f=\"AutoHits.vn.xml\"><securecookie host=\"^\\.autohits\\.vn$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?autohits\\.vn/\" to=\"https://autohits.vn/\"/></ruleset>", "<ruleset name=\"AutoIt CDN.com\" f=\"AutoIt-CDN.com.xml\"><rule from=\"^http://static1\\.autoit-cdn\\.com/\" to=\"https://static1.autoit-cdn.com/\"/></ruleset>", "<ruleset name=\"AutoIt script.com\" f=\"AutoIt_script.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AutoTrack.nl\" f=\"AutoTrack.nl.xml\"><rule from=\"^http://((?:assets|media|www)\\.)?autotrack\\.nl/\" to=\"https://$1autotrack.nl/\"/></ruleset>", "<ruleset name=\"AutoTrader.com (partial)\" default_off=\"failed ruleset test\" f=\"AutoTrader.com.xml\"><securecookie host=\"^\\.autotraderstatic\\.com$\" name=\".*\"/><rule from=\"^http://(ads\\.)?autotrader\\.com/\" to=\"https://$1autotrader.com/\"/><rule from=\"^http://www\\.autotrader\\.com/(no_cache/)\" to=\"https://www.autotrader.com/$1\"/><rule from=\"^http://(?:www\\.)?autotraderstatic\\.com/\" to=\"https://www.autotraderstatic.com/\"/></ruleset>", "<ruleset name=\"Auto Ad Manager.com (partial)\" f=\"Auto_Ad_Manager.com.xml\"><securecookie host=\"^\\.autoadmanager\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Blog.com\" platform=\"mixedcontent\" f=\"Auto_Blog.com.xml\"><rule from=\"^http://autoblog\\.com/\" to=\"https://www.autoblog.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Rims & Accessories\" default_off=\"failed ruleset test\" f=\"Auto_Rims_and_Accessories.xml\"><securecookie host=\"^(?:.*\\.)?autorimsandaccessories\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto VPS.net\" default_off=\"failed ruleset test\" f=\"Auto_VPS.net.xml\"><securecookie host=\"^\\.www\\.autovps\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autobytel.com (false MCB)\" platform=\"mixedcontent\" f=\"Autobytel.com-falsemixed.xml\"><securecookie host=\"^(?:new|www)\\.autobytel\\.com$\" name=\".+\"/><rule from=\"^http://autobytel\\.com/\" to=\"https://www.autobytel.com/\"/><rule from=\"^http://hybrid\\.autobytel\\.com/[^?]*\" to=\"https://www.autobytel.com/green-cars/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autobytel.com (partial)\" f=\"Autobytel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Automatak.net\" default_off=\"failed ruleset test\" f=\"Automatak.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Automatic Data Processing (partial)\" default_off=\"failed ruleset test\" f=\"Automatic_Data_Processing.xml\"><securecookie host=\".*\\.adp\\.com$\" name=\".+\"/><securecookie host=\"^adpe\\.csod\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(edu\\.|flexdirect\\.)?adp\\.com/\" to=\"https://www.$1adp.com/\"/><rule from=\"^http://([ac]gateway|clientcenter|(?:checkprint|yearend)\\.pss|downtime2|eetime1|ewallet|glinterface|payexag|resource-secure|runpayroll|www\\.tlm|totalsource)\\.adp\\.com/\" to=\"https://$1.adp.com/\"/><rule from=\"^http://(www\\.)?(adpvantage|documax|etime|ezlm|ipay(?:admin)?|ireports|netsecure|paystatements|payex|portal|quickview|reporting|select|support|timesaver)\\.adp\\.com/\" to=\"https://$1$2.adp.com/\"/><rule from=\"^http://(?:www\\.)?(adp4me|easynet|smallbusiness)\\.adp\\.com/\" to=\"https://$1.adp.com/\"/><rule from=\"^http://(?:www\\.)?dataaccessregistration\\.adp\\.com/(?:.*)\" to=\"https://runpayroll.adp.com/default.aspx?action=newclient&RAP=1\"/><rule from=\"^http://(?:www\\.)?ilearn\\.adp\\.com/\\?*$\" to=\"https://adpe.csod.com/\"/><rule from=\"^http://(?:www\\.)?virtualedge\\.adp\\.com/(?:.*)\" to=\"https://www.adp.com/solutions/employer-services/pre-employment-services.aspx\"/><rule from=\"^http://adpe\\.csod\\.com/\" to=\"https://adpe.csod.com/\"/></ruleset>", "<ruleset name=\"Automotive Industries\" platform=\"mixedcontent\" f=\"Automotive-Industries.xml\"><securecookie host=\"^(?:.*\\.)?ai-online\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?ai(?:\\.ai|-online\\.com)/\" to=\"https://$1ai-online.com/\"/></ruleset>", "<ruleset name=\"Automotive Linux.org\" f=\"Automotive_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"automx.org (partial)\" default_off=\"missing certificate chain\" f=\"Automx.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autopilot HQ.com (partial)\" f=\"Autopilot_HQ.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autosite.com (partial)\" f=\"Autosite.com.xml\"><exclusion pattern=\"^http://dealers\\.autosite\\.com/+(?![Cc]ontent/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autotools.io\" f=\"Autotools.io.xml\"><rule from=\"^http://(?:www\\.)?autotools\\.io/\" to=\"https://autotools.io/\"/></ruleset>", "<ruleset name=\"av18mov.com\" default_off=\"failed ruleset test\" f=\"Av18mov.com.xml\"><securecookie host=\"^(?:w*\\.)?av18mov\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvaDomains.com\" default_off=\"expired\" f=\"AvaDomains.com.xml\"><rule from=\"^http://(?:www\\.)?avadomains\\.com/\" to=\"https://www.avadomains.com/\"/></ruleset>", "<ruleset name=\"AvaHost (partial)\" default_off=\"failed ruleset test\" f=\"AvaHost.xml\"><securecookie host=\"^(?:www\\.)?secure\\.avahost\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avaaz.org\" f=\"Avaaz.xml\"><securecookie host=\"^\\.avaaz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AVADirect.com (partial)\" f=\"Avadirect.com.xml\"><exclusion pattern=\"^http://www\\.avadirect\\.com/+(?!(?:[Aa]ccount|[Ff]orum|[Ll]ogin)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avangate (partial)\" f=\"Avangate.xml\"><securecookie host=\"^secure\\.avangate\\.com$\" name=\".*\"/><rule from=\"^http://www\\.avangate\\.com/(docs/|favicon\\.ico|images/|template_new/)\" to=\"https://www.avangate.com/$1\"/><rule from=\"^http://cdn\\.avangate\\.com/web/\" to=\"https://www.avangate.com/\"/><rule from=\"^http://((?:arms|download2?|secure)\\.)?avangate\\.com/\" to=\"https://$1avangate.com/\"/><rule from=\"^http://edge\\.avangate\\.net/\" to=\"https://edge.avangate.net/\"/></ruleset>", "<ruleset name=\"Avanis.fr\" f=\"Avanis.fr.xml\"><securecookie host=\"^\\.avanis\\.fr$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avantar.com\" default_off=\"missing certificate chain\" f=\"Avantar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avanticdn (partial)\" default_off=\"expired\" f=\"Avanticdn.xml\"><rule from=\"^http://cdn\\.avanti247\\.com/\" to=\"https://cdn.avanti247.com/\"/></ruleset>", "<ruleset name=\"Avanza.se\" f=\"Avanza.se.xml\"><rule from=\"^http://www\\.avanza\\.se/\" to=\"https://www.avanza.se/\"/><rule from=\"^http://avanza\\.se/\" to=\"https://www.avanza.se/\"/></ruleset>", "<ruleset name=\"Avast.com (partial)\" f=\"Avast.com.xml\"><securecookie host=\"^\\.\" name=\"^s_vi$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://an\\.avast\\.com/\" to=\"https://avast-co-jp-ldc.d3.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvatarPicker.com\" f=\"AvatarPicker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avaya (partial)\" f=\"Avaya.xml\"><securecookie host=\"^.+\\.avaya\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?avaya\\.com/(_assets/|PremiumIcon\\.asp|uk/ResourceWriter\\.ashx|uk/RtImage\\.aspx)\" to=\"https://www.avaya.com/$1\"/><rule from=\"^http://(downloads|grt|sso|support(?:betasite-stg)?)\\.avaya\\.com/\" to=\"https://$1.avaya.com/\"/></ruleset>", "<ruleset name=\"Avectra.com (partial)\" f=\"Avectra.com.xml\"><securecookie host=\"^www2\\.avectra\\.com$\" name=\".+\"/><rule from=\"^http://success\\.avectra\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-abk.marketo.com/\"/><rule from=\"^http://www2\\.avectra\\.com/\" to=\"https://www2.avectra.com/\"/></ruleset>", "<ruleset name=\"Avinc.com\" f=\"Avinc.com.xml\"><securecookie host=\"^(?:\\.avportal|www)?\\.avinc\\.com$\" name=\".+\"/><rule from=\"^http://(avportal\\.|www\\.)?avinc\\.com/\" to=\"https://$1avinc.com/\"/><rule from=\"^http://investor\\.avinc\\.com/common/\" to=\"https://investor.shareholder.com/common/\"/></ruleset>", "<ruleset name=\"Avira.com\" f=\"Avira.xml\"><securecookie host=\"^\\.avira\\.com$\" name=\"^__qca$\"/><securecookie host=\"^www\\.avira\\.com$\" name=\".+\"/><rule from=\"^http://www\\.(analysis|forum|license|myaccount|partnernet)\\.avira\\.com/\" to=\"https://$1.avira.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aviris näönvälineet\" default_off=\"failed ruleset test\" f=\"Aviris-naonvalineet.xml\"><securecookie host=\"^aviris\\.nkl\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aviris(?:\\.nkl)?\\.fi/\" to=\"https://aviris.nkl.fi/\"/></ruleset>", "<ruleset name=\"Avis.com\" f=\"Avis.com.xml\"><securecookie host=\".*\\.avis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avisservices.com\" f=\"Avisservices.com.xml\"><securecookie host=\"^(?:\\.?snap)?\\.avisservices\\.com$\" name=\".+\"/><rule from=\"^http://snap\\.avisservices\\.com/\" to=\"https://snap.avisservices.com/\"/></ruleset>", "<ruleset name=\"AVM.de (partial)\" f=\"Avm.de.xml\"><exclusion pattern=\"^http://(en\\.)?avm\\.de/+(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avon and Somerset Constabulary\" f=\"AvonandSomersetConstabulary.xml\"><rule from=\"^http://(www\\.)?avonandsomerset\\.police\\.uk/\" to=\"https://www.avonandsomerset.police.uk/\"/></ruleset>", "<ruleset name=\"avonmaquiagem.com.br\" f=\"Avonmaquiagem.com.br.xml\"><securecookie host=\"^(?:w*\\.)?avonmaquiagem\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avropa.se\" default_off=\"failed ruleset test\" f=\"Avropa.se.xml\"><rule from=\"^http://www\\.avropa\\.se/\" to=\"https://www.avropa.se/\"/><rule from=\"^http://avropa\\.se/\" to=\"https://avropa.se/\"/></ruleset>", "<ruleset name=\"Avtrade\" default_off=\"self-signed\" f=\"Avtrade.xml\"><rule from=\"^http://(?:www\\.)?avtrade\\.co\\.uk/\" to=\"https://avtrade.co.uk/\"/></ruleset>", "<ruleset name=\"Avue Central\" f=\"Avue_Central.xml\"><rule from=\"^http://(?:www\\.)?avuecentral\\.com/\" to=\"https://www.avuecentral.com/\"/></ruleset>", "<ruleset name=\"Avue Digital Services\" f=\"Avue_Digital_Services.xml\"><rule from=\"^http://(?:www\\.)?avuedigitalservices\\.com/\" to=\"https://www.avuedigitalservices.com/\"/></ruleset>", "<ruleset name=\"awe.sm (partial)\" f=\"Awe.sm.xml\"><securecookie host=\"^\\.awe\\.sm$\" name=\".+\"/><rule from=\"^http://widgets\\.awe\\.sm/$\" to=\"https://totally.awe.sm/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"awesome-it.de\" f=\"Awesome-it.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AwesomeJar.com\" f=\"AwesomeJar.xml\"><rule from=\"^http://(?:www\\.)?awesomejar\\.com/\" to=\"https://awesomejar.com/\"/></ruleset>", "<ruleset name=\"Awio Web Services (mismatches)\" default_off=\"mismatch\" f=\"Awio-Web-Services-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?dialshield\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dialshield\\.com/\" to=\"https://www.dialshield.com/\"/></ruleset>", "<ruleset name=\"Awio Web Services (partial)\" default_off=\"failed ruleset test\" f=\"Awio-Web-Services.xml\"><securecookie host=\"^app\\.dialshield\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?(?:visitorboost|w3roi)\\.com$\" name=\".*\"/><rule from=\"^http://app\\.dialshield\\.com/\" to=\"https://app.dialshield.com/\"/><rule from=\"^http://(?:www\\.)?visitorboost\\.com/\" to=\"https://www.visitorboost.com/\"/><rule from=\"^http://(www\\.)?w3roi\\.com/\" to=\"https://$1w3roi.com/\"/></ruleset>", "<ruleset name=\"awxcnx.de\" default_off=\"broken\" f=\"Awxcnx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axamba (partial)\" default_off=\"failed ruleset test\" f=\"Axamba.xml\"><securecookie host=\"^my\\.webtapestry\\.net$\" name=\".*\"/><rule from=\"^http://my\\.webtapestry\\.net/\" to=\"https://my.webtapestry.net/\"/></ruleset>", "<ruleset name=\"Axantum.com (partial)\" f=\"Axantum.com.xml\"><rule from=\"^http://(?:www\\.)?axantum\\.com/(?=Xecrets/Log(On|gedOff)\\.aspx|favicon\\.ico)\" to=\"https://www.axantum.com/\"/></ruleset>", "<ruleset name=\"Axboe (partial)\" default_off=\"failed ruleset test\" f=\"Axboe.xml\"><securecookie host=\"^webmail\\.axboe\\.dk$\" name=\".*\"/><rule from=\"^http://webmail\\.axboe\\.dk/\" to=\"https://webmail.axboe.dk/\"/></ruleset>", "<ruleset name=\"Axel Springer (partial)\" f=\"Axel-Springer.xml\"><exclusion pattern=\"^http://www\\.aufeminin\\.com/.+(?:\\.asp$|/)\"/><rule from=\"^http://(?:www\\.)?aufeminin\\.com/(a/|[\\w\\W]+(?:\\.(?:css|gif|js|ico|jpg|png)(?:$|\\?)|\\?lsh|v=[\\d\\.]+))\" to=\"https://www.aufeminin.com/$1\"/><rule from=\"^http://network\\.aufeminin\\.com/call/pubimppixel/\\d{7}/\\d+\\??\" to=\"https://im2.smartserver.com/images/shim.gif\"/></ruleset>", "<ruleset name=\"Axel Arnbak.nl\" f=\"Axel_Arnbak.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axel Simon.net\" default_off=\"self-signed\" f=\"Axel_Simon.net.xml\"><securecookie host=\"^axelsimon\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?axelsimon\\.net/\" to=\"https://axelsimon.net/\"/></ruleset>", "<ruleset name=\"Axeso5.com (false MCB)\" platform=\"mixedcontent\" f=\"Axeso5.com-falsemixed.xml\"><securecookie host=\"^www\\.axeso5\\.com$\" name=\".+\"/><rule from=\"^http://axeso5\\.com/\" to=\"https://www.axeso5.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axeso5.com (partial)\" f=\"Axeso5.com.xml\"><securecookie host=\"^(?:billing|oauth2)\\.axeso5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axis Bank (partial)\" default_off=\"failed ruleset test\" f=\"Axis_Bank.xml\"><securecookie host=\"^.+\\.axisbank\\.co(?:\\.in|m)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?axisbank\\.co(\\.in|m)/\" to=\"https://www.axisbank.co$1/\"/><rule from=\"^http://aps\\.axisbank\\.com/\" to=\"https://aps.axisbank.com/\"/></ruleset>", "<ruleset name=\"Axonify (partial)\" f=\"Axonify.xml\"><rule from=\"^http://cdn\\.axonify\\.com/\" to=\"https://cdn.axonify.com/\"/></ruleset>", "<ruleset name=\"Axonix.com (partial)\" f=\"Axonix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axosoft.com\" f=\"Axosoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ay Yildiz\" f=\"Ay_Yildiz.xml\"><securecookie host=\"^www\\.ayyildiz\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ayyildiz\\.de/\" to=\"https://www.ayyildiz.de/\"/></ruleset>", "<ruleset name=\"Azabani.com\" f=\"Azabani.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"azcentral.com (partial)\" default_off=\"failed ruleset test\" f=\"Azcentral.com.xml\"><securecookie host=\"^\\.azcentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:[il]\\.|(www\\.))?azcentral\\.com/\" to=\"https://$1azcentral.com/\"/></ruleset>", "<ruleset name=\"Azet.sk\" f=\"Azet.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azingsport.se\" default_off=\"failed ruleset test\" f=\"Azingsport.se.xml\"><rule from=\"^http://www\\.azingsport\\.se/\" to=\"https://www.azingsport.se/\"/><rule from=\"^http://azingsport\\.se/\" to=\"https://azingsport.se/\"/></ruleset>", "<ruleset name=\"Azure.com (partial)\" f=\"Azure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azure websites.net\" f=\"Azure_websites.net.xml\"><securecookie host=\"^\\.oauthplay\\.azurewebsites\\.net$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AzurecomCDN.net\" f=\"AzurecomCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"b2bmediaportal.com\" f=\"B2bmediaportal.com.xml\"><securecookie host=\"^www\\.b2bmediaportal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?b2bmediaportal\\.com/\" to=\"https://www.b2bmediaportal.com/\"/></ruleset>", "<ruleset name=\"b3n.org\" f=\"B3n.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BritishAirways\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BA.xml\"><securecookie host=\"^(?:.*\\.)?britishairways.com$\" name=\".*\"/><rule from=\"^http://shopping\\.ba\\.com/\" to=\"https://www.britishairways.com/\"/><rule from=\"^http://(?:www\\.)?britishairways\\.com/\" to=\"https://www.britishairways.com/\"/></ruleset>", "<ruleset name=\"BANAN.CZ\" f=\"BANAN.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BAPCo.com\" f=\"BAPCo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BASE (partial)\" default_off=\"failed ruleset test\" f=\"BASE.xml\"><exclusion pattern=\"^http://infos\\.base\\.de/\\?\"/><securecookie host=\"^.*\\.base\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?base\\.de/\" to=\"https://www.base.de/\"/><rule from=\"^http://(?:www\\.)?angebote\\.base\\.de/\" to=\"https://angebote.base.de/\"/><rule from=\"^http://(chatsurvey|m|proactive2?|tracking)\\.base\\.de/\" to=\"https://$1.base.de/\"/><rule from=\"^http://facebook\\.base\\.de/\" to=\"https://angebote.base.de/\"/><rule from=\"^http://(?:infos|promotion)\\.base\\.de/(?:$|\\?.*)\" to=\"https://www.base.de/\"/></ruleset>", "<ruleset name=\"BATS Exchange\" f=\"BATS_Exchange.xml\"><securecookie host=\"^(?:www\\.)?batstrading\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BAWSI.org\" f=\"BAWSI.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBB Online.org (partial)\" f=\"BBB_Online.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?bbbonline\\.org/(?!cks\\.asp\\?id=\\d)\"/><rule from=\"^http://(?:www\\.)?bbbonline\\.org/cks\\.asp\" to=\"https://www.bbb.org/us/bbb-online-business/\"/></ruleset>", "<ruleset name=\"BBB Silicon.org (partial)\" f=\"BBB_Silicon.org.xml\"><exclusion pattern=\"http://(?:www\\.)?bbbsilicon\\.org/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?bbbsilicon\\.org/+(?:\\?.*)?\" to=\"https://sanjose.bbb.org/\"/></ruleset>", "<ruleset name=\"BBC (self-signed)\" default_off=\"mismatch, self-signed\" f=\"BBC-mismatches.xml\"><rule from=\"^http://electradl\\.iplayer\\.bbc\\.co\\.uk/\" to=\"https://electradl.iplayer.bbc.co.uk/\"/></ruleset>", "<ruleset name=\"BBC.com (false MCB)\" platform=\"mixedcontent\" f=\"BBC.com-falsemixed.xml\"><exclusion pattern=\"^http://www\\.bbc\\.com/(?:$|\\?|favicon\\.ico|news/[\\w-]+-\\d+(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBC.com (partial)\" f=\"BBC.com.xml\"><rule from=\"^http://sa\\.bbc\\.com/\" to=\"https://bbc.112.2o7.net/\"/><rule from=\"^http://ssl\\.bbc\\.com/\" to=\"https://ssl.bbc.com/\"/></ruleset>", "<ruleset name=\"BBC (broken)\" default_off=\"Breaks videos\" f=\"BBC.xml\"><exclusion pattern=\"^http://www\\.bbc\\.co\\.uk/iplayer/episode/\\w+/(?:hd/)?\\w+/?(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?bbc\\.co\\.uk/iplayer(?:/?\\?|/?$|/radio(?:$|[?/]))\"/><exclusion pattern=\"^http://www\\.bbc\\.co\\.uk/iplayer/playlist/\\w+$\"/><exclusion pattern=\"^http://open\\.live\\.bbc\\.co\\.uk/(?!mediaselector/|wurfldemi/(?:network|useragent)\\.jsonp|weather/feeds/\\w\\w/maps/forecast\\.json)\"/><securecookie host=\"^\\.bbc\\.co\\.uk$\" name=\"^s1$\"/><securecookie host=\"^(?:iplayerhelp\\.external|ssl)\\.bbc\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www(?:img)?\\.)?bbc\\.co\\.uk/(aboutthebbc/override\\.css|a-z/style|cbbc/(?:all/homepage-background|img|structure)|help/404_img|help/style|inc|nfp/holepunched/api|news/special/shared|player/emp|survey/pulse|tv/js|view/1_0_\\d\\d/wide|weather/locales)/\" to=\"https://beta.bbc.co.uk/$1/\"/><rule from=\"^http://feeds\\.bbc\\.co\\.uk/modules/comments/\" to=\"https://www.bbc.co.uk/modules/comments/\"/><rule from=\"^http://(ichef|www\\.live|sa|static)\\.bbci?\\.co\\.uk/\" to=\"https://$1.bbc.co.uk/\"/><rule from=\"^http://(?:www\\.)?bbc\\.co\\.uk/(?=emp/|favicon\\.ico$|glow/|guidance/|iplayer/|podcasts/assets/)\" to=\"https://www.bbc.co.uk/\"/><rule from=\"^http://(?:www\\.)?bbc\\.co\\.uk/(?=programmes/branding/)\" to=\"https://ssl.bbc.co.uk/\"/><rule from=\"^http://www\\.bbc\\.co\\.uk/webwise/static/\" to=\"https://static.bbc.co.uk/webwise/\"/><rule from=\"^http://(beta|careers|downloads|iplayerhelp\\.external|id|ssl)\\.bbc\\.co\\.uk/\" to=\"https://$1.bbc.co.uk/\"/><rule from=\"^http://open\\.live\\.bbc\\.co\\.uk/\" to=\"https://open.live.bbc.co.uk/\"/><rule from=\"^http://news\\.bbc\\.co\\.uk/(?=css/|furniture/|stylesheets/|js/app/av/emp/)\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://newsimg\\.bbc\\.co\\.uk/(?=media/images/|shared/img/)\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://a-ssl\\.files\\.bbci\\.co\\.uk/\" to=\"https://a-ssl.files.bbci.co.uk/\"/><rule from=\"^http://news\\.bbcimg\\.co\\.uk/media/images/\" to=\"https://ssl.bbc.co.uk/media/images/\"/><rule from=\"^http://node[12]\\.bbcimg\\.co\\.uk/(?=crossdomain\\.xml$|glow/|iplayer/)\" to=\"https://www.bbc.co.uk/\"/><rule from=\"^http://node\\d\\.bbcimg\\.co\\.uk/(?=podcasts/|tv/p2/)\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://polling\\.bbc\\.co\\.uk/(?=modules/onairpanel/include/)\" to=\"https://ssl.bbc.co.uk/\"/><rule from=\"^http://emp\\.bbci\\.co\\.uk/emp/(?=bump/|releases/)\" to=\"https://www.bbc.co.uk/emp/\"/><rule from=\"^http://news\\.bbcimg\\.co\\.uk/\" to=\"https://beta.bbc.co.uk/\"/><rule from=\"^http://tile\\d\\.bbcimg\\.co\\.uk/\" to=\"https://static.bbc.co.uk/\"/></ruleset>", "<ruleset name=\"BBC Children In Need\" f=\"BBC_Children_In_Need.xml\"><securecookie host=\"^(?:.*\\.)?bbcchildreninneed\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://bbcchildreninneed\\.co\\.uk/\" to=\"https://www.bbcchildreninneed.co.uk/\"/><rule from=\"^http://([^/:@]+)\\.bbcchildreninneed\\.co\\.uk/\" to=\"https://$1.bbcchildreninneed.co.uk/\"/></ruleset>", "<ruleset name=\"BBVA-Bancomer\" f=\"BBVA-Bancomer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC.edu (MCB)\" platform=\"mixedcontent\" f=\"BC.edu-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC.edu (partial)\" f=\"BC.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC Automobile Association\" f=\"BCAA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BCCLA.org\" f=\"BCCLA.org.xml\"><securecookie host=\"^(?:www\\.)?bccla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BCGolf.com (mismatches)\" default_off=\"mismatch\" f=\"BCGolf.com-mismatches.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.golf2go\\.net$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.golf2go\\.net/\" to=\"https://$1.golf2go.net/\"/></ruleset>", "<ruleset name=\"BCGolf.com\" f=\"BCGolf.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BCLA Connect.ca\" f=\"BCLA_Connect.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.bclaconnect\\.ca/\" to=\"https://bclaconnect.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC Hydro\" f=\"BC_Hydro.xml\"><securecookie host=\"^(?:www)?(?:\\.)?bchydro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BEL Solution\" default_off=\"self-signed\" f=\"BEL-Solutions.xml\"><rule from=\"^http://(?:www\\.|zeus\\.)?bel\\.fi/\" to=\"https://zeus.bel.fi/\"/></ruleset>", "<ruleset name=\"BEM.info\" f=\"BEM.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BE One Spark.com (partial)\" f=\"BE_One_Spark.com.xml\"><rule from=\"^http://(www\\.)?beonespark\\.com/(?=assets/|berlin/(?:sign-in|users/password)/*(?:$|\\?))\" to=\"https://$1beonespark.com/\"/></ruleset>", "<ruleset name=\"BGPStream.com\" f=\"BGPStream.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BGPmon.net\" f=\"BGPmon.net.xml\"><securecookie host=\"^portal\\.bgpmon\\.net$\" name=\".+\"/><rule from=\"^http://bgpmon\\.(?:com|net)/\" to=\"https://www.bgpmon.net/\"/><rule from=\"^http://(portal|www)?\\.bgpmon\\.net/\" to=\"https://$1.bgpmon.net/\"/><rule from=\"^http://(portal|www)?\\.bgpmon\\.com/\" to=\"https://$1.bgpmon.net/\"/></ruleset>", "<ruleset name=\"BGR.com\" f=\"BGR.com.xml\"><rule from=\"^http://cdn\\.bgr\\.com/\" to=\"https://boygeniusreport.files.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bGamed.de (partial)\" f=\"BGamed.de.xml\"><securecookie host=\"^bgamed\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bgamed\\.de/\" to=\"https://bgamed.de/\"/></ruleset>", "<ruleset name=\"BHW.de\" f=\"BHW.de.xml\"><securecookie host=\"^apps\\.bhw\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bHosted.nl (partial)\" f=\"BHosted.nl.xml\"><securecookie host=\"^webmail\\.bhosted\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bhosted\\.nl/(css/|favicon\\.ico|images/|js/|webmail(?:$|\\?|/))\" to=\"https://www.bhosted.nl/$1\"/><rule from=\"^http://(admin|klant|webmail)\\.bhosted\\.nl/\" to=\"https://$1.bhosted.nl/\"/></ruleset>", "<ruleset name=\"bHosting.ru\" default_off=\"mismatched\" f=\"BHosting.ru.xml\"><securecookie host=\"^www\\.bhosting\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bhosting\\.ru/\" to=\"https://www.bhosting.ru/\"/></ruleset>", "<ruleset name=\"Breitbandinfrastrukturgesellschaft Oberhessen\" f=\"BIGO.xml\"><rule from=\"^http://www\\.bigo\\.net/\" to=\"https://www.bigo.net/\"/></ruleset>", "<ruleset name=\"BIKT\" default_off=\"mismatched, self-signed\" f=\"BIKT.xml\"><securecookie host=\"^bikt\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bikt\\.de/\" to=\"https://bikt.de/\"/></ruleset>", "<ruleset name=\"BIO.org (partial)\" f=\"BIO-International-Convention.xml\"><securecookie host=\"^convention\\.bio\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BIT.nl\" f=\"BIT.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BKK-Advita\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BKK-Advita.xml\"><rule from=\"^http://(?:www\\.)?bkk-advita\\.de/\" to=\"https://www.bkk-advita.de/\"/></ruleset>", "<ruleset name=\"BLOX (partial)\" f=\"BLOX.xml\"><rule from=\"^http://([\\w\\-]+)\\.bloxcms\\.com/\" to=\"https://$1.bloxcms.com/\"/></ruleset>", "<ruleset name=\"bls.ch\" f=\"BLS.xml\"><rule from=\"^http://bls\\.ch/\" to=\"https://www.bls.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMC.com (partial)\" f=\"BMC.com.xml\"><securecookie host=\"^communities\\.bmc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bmc\\.com/(?=includes/|s\\?action=doLogin)\" to=\"https://www.bmc.com/\"/><rule from=\"^http://(media\\.cms|communities|docs|webapps)\\.bmc\\.com/\" to=\"https://$1.bmc.com/\"/></ruleset>", "<ruleset name=\"BMC Logo Store.com\" f=\"BMC_Logo_Store.com.xml\"><securecookie host=\"^www\\.bmclogostore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMDW.org\" f=\"BMDW.org.xml\"><securecookie host=\"^(?:www\\.)?bmdw\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMF-Steuerrechner.de\" f=\"BMF-Steuerrechner.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://bmf-steuerrechner\\.de/\" to=\"https://www.bmf-steuerrechner.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMW China Custom Login\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BMW-China-Custom-Login.xml\"><securecookie host=\"^.*\\.cardealerstudy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cardealerstudy\\.com/\" to=\"https://www.cardealerstudy.com/\"/></ruleset>", "<ruleset name=\"BM Pharmacy\" f=\"BM_Pharmacy.xml\"><securecookie host=\"^\\.bmpharmacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BN-static.com\" f=\"BN-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BNZ.co.nz\" f=\"BNZ.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|incap_ses_\\d+_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BOALT\" f=\"BOALT.xml\"><securecookie host=\"^\\.boalt\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?boalt\\.com/\" to=\"https://$1boalt.com/\"/><rule from=\"^http://adamboalt\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://boalt.com/\"/></ruleset>", "<ruleset name=\"Boe.es\" default_off=\"failed ruleset test\" f=\"BOE.xml\"><rule from=\"^http://boe\\.es/\" to=\"https://www.boe.es/\"/><rule from=\"^http://([^/:@\\.]+)\\.boe\\.es/\" to=\"https://$1.boe.es/\"/></ruleset>", "<ruleset name=\"BoF.nl\" f=\"BOF.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BPS (partial)\" default_off=\"failed ruleset test\" f=\"BPS.xml\"><rule from=\"^http://(?:www\\.)?bps\\.org\\.uk/sites/default/(files/cs|theme)s/\" to=\"https://www.bps.org.uk/sites/default/$1s/\"/><rule from=\"^http://login\\.bps\\.org\\.uk/\" to=\"https://login.bps.org.uk/\"/><rule from=\"^http://(?:www\\.)?bpsshop\\.org\\.uk/((?:App_Theme|Asset|image)s/|login\\.aspx)\" to=\"https://www.bpsshop.org.uk/$1\"/></ruleset>", "<ruleset name=\"Bayrischer Rundfunk\" f=\"BR.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"B.R.S.M.\" default_off=\"mismatch\" f=\"BRSM.xml\"><rule from=\"^http://(?:www\\.)?brsmblog\\.com/\" to=\"https://brsmblog.com/\"/></ruleset>", "<ruleset name=\"BSD.net (partial)\" f=\"BSD.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSD Can.org (partial)\" f=\"BSDCan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSD Consulting.co.jp\" f=\"BSD_Consulting.co.jp.xml\"><rule from=\"^http://www\\.bsdconsulting\\.co\\.jp/\" to=\"https://www.bsdconsulting.co.jp/\"/></ruleset>", "<ruleset name=\"Buddhist Society of Western Australia\" platform=\"mixedcontent\" f=\"BSWA.xml\"><securecookie host=\"^(?:www)?(?:\\.)?dhammaloka\\.org\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSidesLV.org\" f=\"BSidesLV.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSidesSLC.org\" f=\"BSidesSLC.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT PLC.com\" f=\"BT-Group.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.co.uk (partial)\" f=\"BT.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.com (RC4)\" f=\"BT.com-RC4.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://shop\\.bt\\.com/.*\" to=\"https://www.shop.bt.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.no (false MCB)\" platform=\"mixedcontent\" f=\"BT.no-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?bt\\.no/(?=tips(?:$|[?/]))\" to=\"https://www.bt.no/\"/></ruleset>", "<ruleset name=\"BT.com (partial)\" f=\"BT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://globalservices\\.bt\\.com/\" to=\"https://www.globalservices.bt.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Buy\" default_off=\"failed ruleset test\" f=\"BTC-Buy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC-E.com\" f=\"BTC-E.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC-Trade.ru\" default_off=\"failed ruleset test\" f=\"BTC-Trade.ru.xml\"><securecookie host=\"^\\.btc-trade\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?btc-trade\\.ru/\" to=\"https://www.btc-trade.ru/\"/></ruleset>", "<ruleset name=\"BTC.Diet\" f=\"BTC.Diet.xml\"><securecookie host=\"^\\.btc\\.diet$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC100.com\" default_off=\"missing certificate chain\" f=\"BTC100.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCChina.com\" f=\"BTCChina.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?btcchina\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCGreece.com\" f=\"BTCGreece.com.xml\"><securecookie host=\"^\\.(?:www\\.)?btcgreece\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCGuild.com\" platform=\"mixedcontent\" f=\"BTCGuild.xml\"><rule from=\"^http://(?:www\\.)?btcguild\\.com/\" to=\"https://www.btcguild.com/\"/></ruleset>", "<ruleset name=\"BTCJam.com (partial)\" f=\"BTCJam.com.xml\"><securecookie host=\"^btcjam\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCKan.com\" f=\"BTCKan.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCS.com\" f=\"BTCS.com.xml\"><securecookie host=\"^\\.shop\\.btcs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCTrader.com\" f=\"BTCTrader.com.xml\"><securecookie host=\"^\\.(?:www\\.)?btctrader\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCTurk.com (partial)\" f=\"BTCTurk.com.xml\"><securecookie host=\"^\\.(?:www\\.)?btcturk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCZone\" default_off=\"failed ruleset test\" f=\"BTCZone.xml\"><securecookie host=\"^(?:www\\.)?btczone\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Gear.com\" default_off=\"failed ruleset test\" f=\"BTC_Gear.com.xml\"><securecookie host=\"^(?:w*\\.)?btcgear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Markets.net\" f=\"BTC_Markets.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?btcmarkets\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Media.org (partial)\" f=\"BTC_Media.org.xml\"><securecookie host=\"^(?:www\\.)?btcmedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Store.eu\" f=\"BTC_Store.eu.xml\"><securecookie host=\"^\\.btcstore\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTDigg\" f=\"BTDigg.xml\"><securecookie host=\"^\\.?btdigg\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?btdigg\\.org/\" to=\"https://btdigg.org/\"/></ruleset>", "<ruleset name=\"BTGuard.com\" f=\"BTGuard.com.xml\"><securecookie host=\"^(?:.*\\.)?btguard\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(affiliate\\.)?btguard\\.com/\" to=\"https://$1btguard.com/\"/></ruleset>", "<ruleset name=\"BTH.se\" platform=\"mixedcontent\" f=\"BTH.se.xml\"><rule from=\"^http://bth\\.se/\" to=\"https://www.bth.se/\"/><rule from=\"^http://www\\.bth\\.se/\" to=\"https://www.bth.se/\"/></ruleset>", "<ruleset name=\"BTR CDN.com\" f=\"BTR_CDN.com.xml\"><rule from=\"^http://cdn\\.btrcdn\\.com/\" to=\"https://cdn2.btrstatic.com/\"/></ruleset>", "<ruleset name=\"BTR static.com\" f=\"BTR_static.com.xml\"><rule from=\"^http://cdn([1-3])\\.btrstatic\\.com/\" to=\"https://cdn$1.btrstatic.com/\"/></ruleset>", "<ruleset name=\"BTXIndia.com (partial)\" f=\"BTXIndia.com.xml\"><securecookie host=\"^btcxindia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Sport.com (partial)\" f=\"BT_Sport.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Sport Business.com\" f=\"BT_Sport_for_Business.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Wholesale.com\" f=\"BT_Wholesale.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Wi-fi\" f=\"BT_Wi-fi.xml\"><securecookie host=\"^(?:.+\\.)?btwifi\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://(my\\.|www\\.)?btwifi\\.co(\\.uk|m)/\" to=\"https://$1btwifi.co$2/\"/></ruleset>", "<ruleset name=\"BTstatic.com (partial)\" f=\"BTstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTunnel\" platform=\"mixedcontent\" f=\"BTunnel.xml\"><securecookie host=\"^(?:.+\\.)?btunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?btunnel\\.com/\" to=\"https://btunnel.com/\"/></ruleset>", "<ruleset name=\"BVG.de\" f=\"BVG.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BVI Photo Video.com\" f=\"BVI_Photo_Video.com.xml\"><securecookie host=\"^(?:www)\\.bviphotovideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BW.com\" f=\"BW.com.xml\"><rule from=\"^http://bw\\.com/\" to=\"https://www.bw.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BWurst.org\" f=\"BWurst.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BX.in.th\" f=\"BX.in.th.xml\"><securecookie host=\"^bx\\.in\\.th$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brigham Young University (partial)\" platform=\"mixedcontent\" f=\"BYU.xml\"><exclusion pattern=\"^http://cpms\\.byu\\.edu/(?:content/|ESM(?:$|/)|newsletters/StudentNews/)\"/><exclusion pattern=\"^http://(?:www\\.)?byu\\.edu/(?:family|o(?:n|ff)campus)?housing(?:$|/)\"/><exclusion pattern=\"^http://www\\.physics\\.byu\\.edu/Graduate(?:/?$|/[dD]efault\\.aspx(?:\\?|$))\"/><rule from=\"^http(?:://(?:www\\.)?|s://www\\.)(alumni[23]|animation|asme|assess|at|barbershop|blackboard|bookexchange|booklist|byuems|byusa|cac|calendar|ccr|cheme|chemicalengineering|cles|clsupport|comd|cougarprints|coursemanagement|cpms|creativeworks|(?:(?:(?:accounts|docs|faculty|facwiki|help|labs|students|tick)\\.)?cs)|delegate|developer|education|edward|eroom|(?:(?:org|pml)\\.et)|events|examstat|facultyprofile|finserve|finserve-dev|gamescenter|gamma|gamma-stg|gardner|globalcareer|go|gradebook|home|honorcode|hrms|inshop|internationalservices|irbtutorial|it|itmedia|ittest|jobs|kennedy|kronprod|lambda|leadershiped|lockers|lodges|login|map|marylou|(?:mail01\\.)?math|mathed|multicultural|news|newsnet|oit|online[12]?|orca|(?:mail\\.physics)|pmpc|pmpcapps|police|printandmail|purchasing|redefineservice|remedy|risk|ry|sa|saas|sasapps|scheduling|software|spiral|stab|stleader|stokes|studentratings|testing|tutoring|uac|unicomm|volta|webmail|wilk|www|y|yfacts|yjobs|yscience)\\.byu\\.edu/\" to=\"https://$1.byu.edu/\"/><rule from=\"^http(?:://(?:www\\.)?|s://)((?:acerc|et|chem|physics)\\.)?byu\\.edu/\" to=\"https://www.$1byu.edu/\"/><rule from=\"^http://((?:secure\\.chem)|(?:support\\.cheme)|(?:(?:contentdm|listserver)\\.lib))\\.byu\\.edu/\" to=\"https://$1.byu.edu/\"/><rule from=\"^http://([a-zA-Z\\d\\-]+)\\.groups\\.et\\.byu\\.net/\" to=\"https://$1.groups.et.byu.net/\"/></ruleset>", "<ruleset name=\"B. E. Smith\" default_off=\"failed ruleset test\" f=\"B_E_Smith.xml\"><securecookie host=\".+\\.besmith\\.com$\" name=\".+\"/><rule from=\"^http://((?:ex1|mail|thebridge|www)\\.)?besmith\\.com/\" to=\"https://$1besmith.com/\"/><rule from=\"^http://autodiscover\\.besmith\\.com/\" to=\"https://autodiscover-s.outlook.com/\"/></ruleset>", "<ruleset name=\"Babbel.com (false MCB)\" platform=\"mixedcontent\" f=\"Babbel.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Babbel.com (partial)\" f=\"Babbel.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BabelZilla\" default_off=\"expired\" f=\"BabelZilla.xml\"><securecookie host=\"^\\.?babelzilla\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?babelzilla\\.org/\" to=\"https://babelzilla.org/\"/></ruleset>", "<ruleset name=\"Babeljs.io\" f=\"Babeljs.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BabyMed.com (partial)\" f=\"BabyMed.com.xml\"><rule from=\"^http://(?:www\\.)?babymed\\.com/(favicon\\.ico|sites/|themes/|user(?:$|\\?/))\" to=\"https://www.babymed.com/$1\"/></ruleset>", "<ruleset name=\"Babylon (partial)\" f=\"Babylon.xml\"><securecookie host=\"^store\\.babylon\\.com$\" name=\".*\"/><rule from=\"^http://(img|store|utils)\\.babylon\\.com/\" to=\"https://$1.babylon.com/\"/></ruleset>", "<ruleset name=\"Backblaze\" f=\"Backblaze.com.xml\"><securecookie host=\"^(www|secure)\\.backblaze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backbone Security\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Backbone-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backbox.org\" f=\"Backbox.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backcountry.com (partial)\" f=\"Backcountry.com.xml\"><securecookie host=\"^m\\.backcountry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?backcountry\\.com/(css|images|promo_upload)/\" to=\"https://www.backcountry.com/$1/\"/><rule from=\"^http://(api|beta|m)\\.backcountry\\.com/\" to=\"https://$1.backcountry.com/\"/><rule from=\"^http://(?:content|promoimages)\\.backcountry\\.com/\" to=\"https://www.backcountry.com/\"/></ruleset>", "<ruleset name=\"Backed.io\" f=\"Backed.io.xml\"><securecookie host=\"^www\\.backed\\.io$\" name=\".+\"/><rule from=\"^http://backed\\.io/\" to=\"https://www.backed.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backlift.com\" default_off=\"failed ruleset test\" f=\"Backlift.com.xml\"><securecookie host=\"^(?:\\w+\\.)?backlift\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|docs|www)\\.)?backlift\\.com/\" to=\"https://$1backlift.com/\"/></ruleset>", "<ruleset name=\"Backpackers Lucerne\" f=\"Backpackers_Lucerne.xml\"><securecookie host=\"^(?:.*\\.)?backpackerslucerne\\.ch$\" name=\".+\"/><rule from=\"^http://backpackerslucerne\\.ch/\" to=\"https://www.backpackerslucerne.ch/\"/><rule from=\"^http://([^/:@]+)?\\.backpackerslucerne\\.ch/\" to=\"https://$1.backpackerslucerne.ch/\"/></ruleset>", "<ruleset name=\"Backpage.com (partial)\" f=\"Backpage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backstreet International Merchandise\" f=\"Backstreet-International-Merchandise.xml\"><securecookie host=\"^(?:.*\\.)?backstreetmerch\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?backstreet-merch\\.com/\" to=\"https://www.backstreetmerch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backupify\" f=\"Backupify.xml\"><securecookie host=\"^(?:.*\\.)?backupify\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?backupify\\.com/\" to=\"https://www.backupify.com/\"/></ruleset>", "<ruleset name=\"BadgeKit.org\" f=\"BadgeKit.org.xml\"><securecookie host=\"^badgekit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badgeville.com (problematic)\" default_off=\"expired, self-signed\" f=\"Badgeville.com-problematic.xml\"><securecookie host=\"^\\.?badgeville\\.com$\" name=\".+\"/><rule from=\"^http://(?:(community\\.)|www\\.)?badgeville\\.com/\" to=\"https://$1badgeville.com/\"/></ruleset>", "<ruleset name=\"Badgeville.com (partial)\" f=\"Badgeville.com.xml\"><rule from=\"^http://(users\\.admin|api\\.v2)\\.badgeville\\.com/\" to=\"https://$1.badgeville.com/\"/></ruleset>", "<ruleset name=\"Badongo (partial)\" default_off=\"failed ruleset test\" f=\"Badongo.xml\"><rule from=\"^http://(?:www\\.)?badongo\\.com/(inc/|(?:imag|styl)es/|login)\" to=\"https://www.badongo.com/$1\"/><rule from=\"^http://cdn\\d\\w\\.badongo\\.com/\\w{1,6}/(imag|styl)es/\" to=\"https://www.badongo.com/$1es/\"/></ruleset>", "<ruleset name=\"Badoo.com\" f=\"Badoo.com.xml\"><rule from=\"^http://www\\.badoo\\.com/\" to=\"https://www.badoo.com/\"/><rule from=\"^http://badoo\\.com/\" to=\"https://www.badoo.com/\"/></ruleset>", "<ruleset name=\"Badosoft.com\" f=\"Badosoft.com.xml\"><securecookie host=\"^www\\.badosoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badssl.com\" f=\"Badssl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badwarebusters.org\" f=\"Badwarebusters.org.xml\"><securecookie host=\"^(?:www)?\\.badwarebusters\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baekdal (partial)\" f=\"Baekdal.xml\"><rule from=\"^http://(?:www\\.)?baekdal\\.com/\" to=\"https://www.baekdal.com/\"/></ruleset>", "<ruleset name=\"Bagatoo.se\" default_off=\"failed ruleset test\" f=\"Bagatoo.se.xml\"><rule from=\"^http://www\\.bagatoo\\.se/\" to=\"https://www.bagatoo.se/\"/><rule from=\"^http://bagatoo\\.se/\" to=\"https://bagatoo.se/\"/></ruleset>", "<ruleset name=\"Bagnet.org (partial)\" f=\"Bagnet.org.xml\"><exclusion pattern=\"^http://www\\.bagnet\\.org/(?!skin/|vendor/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bahn-BKK\" f=\"Bahn-BKK.xml\"><rule from=\"^http://(?:www\\.)?bahn-bkk\\.de/\" to=\"https://www.bahn-bkk.de/\"/></ruleset>", "<ruleset name=\"Bahn.de\" f=\"Bahn.de.xml\"><rule from=\"^http://bahn\\.de/\" to=\"https://www.bahn.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidu.com (breaks logged-in downloads)\" default_off=\"apparently breaks downloads for logged-in users\" f=\"Baidu.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidu.com (partial)\" f=\"Baidu.xml\"><exclusion pattern=\"^http://8\\.baidu\\.com/+(?!(?:ask|[bg]f_index|finance91)(?:$|[?/])|content/|gf_index/detail\\?)\"/><exclusion pattern=\"^http://developer\\.baidu\\.com/+(?!static/)\"/><securecookie host=\"^\\.m\\.baidu\\.com$\" name=\"^__bsi$\"/><securecookie host=\"^zhanzhang\\.baidu\\.com$\" name=\"^SITEMAPSESSID$\"/><securecookie host=\"^(?:open2\\.|openapi|\\.?www|zhanzhang)\\.baidu\\.com$\" name=\".+\"/><rule from=\"^http://baidu\\.com/\" to=\"https://www.baidu.com/\"/><rule from=\"^http://developer\\.baidu\\.com/\" to=\"https://openapi.baidu.com/\"/><rule from=\"^http://financestatic\\.baidu\\.com/\" to=\"https://8.baidu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidupcs.com\" f=\"Baidupcs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baifubao.com (partial)\" f=\"Baifubao.com.xml\"><rule from=\"^http://baifubao\\.com/\" to=\"https://www.baifubao.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bakabt.me\" f=\"Bakabt.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baker & Taylor (minimal)\" f=\"Baker-and-Taylor.xml\"><securecookie host=\"^(?:contentcafe2|images[abc])\\.btol\\.com$\" name=\".+\"/><rule from=\"^http://(contentcafe2|images[abc])\\.btol\\.com/\" to=\"https://$1.btol.com/\"/></ruleset>", "<ruleset name=\"BalaBit.com\" f=\"BalaBit.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Balatarin\" platform=\"mixedcontent\" f=\"Balatarin.xml\"><rule from=\"^http://(?:www\\.)?balatarin\\.com/\" to=\"https://www.balatarin.com/\"/></ruleset>", "<ruleset name=\"Balboa.io\" f=\"Balboa.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baldershage.se\" platform=\"mixedcontent\" f=\"Baldershage.se.xml\"><rule from=\"^http://www\\.baldershage\\.se/\" to=\"https://www.baldershage.se/\"/><rule from=\"^http://baldershage\\.se/\" to=\"https://baldershage.se/\"/></ruleset>", "<ruleset name=\"Balkan Leaks\" default_off=\"failed ruleset test\" f=\"Balkan_Leaks.xml\"><securecookie host=\"^www\\.balkanleaks\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Balkongshoppen.se\" f=\"Balkongshoppen.se.xml\"><rule from=\"^http://www\\.balkongshoppen\\.se/\" to=\"https://www.balkongshoppen.se/\"/><rule from=\"^http://balkongshoppen\\.se/\" to=\"https://balkongshoppen.se/\"/></ruleset>", "<ruleset name=\"Ballerup.dk\" f=\"Ballerup.dk.xml\"><securecookie host=\"^www\\.ballerup\\.dk$\" name=\".+\"/><rule from=\"^http://(www\\.)?ballerup\\.dk/\" to=\"https://www.ballerup.dk/\"/></ruleset>", "<ruleset name=\"Ballicom\" default_off=\"failed ruleset test\" f=\"Ballicom.xml\"><securecookie host=\"^www\\.ballicom\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ballicom\\.co\\.uk/\" to=\"https://www.ballicom.co.uk/\"/></ruleset>", "<ruleset name=\"Ballot Measure Domains\" default_off=\"failed ruleset test\" f=\"Ballot_Measure_Domains.xml\"><securecookie host=\"^(?:www\\.)?ballotmeasuredomains\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ballou (partial)\" f=\"Ballou.xml\"><securecookie host=\"^(?:mail|mailadministration|minasidor|www)\\.ballou\\.se$\" name=\".+\"/><rule from=\"^http://((?:autodiscover|mail|mailadministration|minasidor|websally|wiki|www)\\.)?ballou\\.se/\" to=\"https://$1ballou.se/\"/><rule from=\"^http://(?:registrar|support)\\.ballou\\.se/\" to=\"https://minasidor.ballou.se/\"/></ruleset>", "<ruleset name=\"Balsamiq (partial)\" f=\"Balsamiq.xml\"><rule from=\"^http://(?!builds\\.|support\\.|www\\.)([\\w-]+)\\.mybalsamiq\\.com/\" to=\"https://$1.mybalsamiq.com/\"/></ruleset>", "<ruleset name=\"Bamsoftware.com\" f=\"Bamsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bananian.org\" f=\"Bananian.org.xml\"><securecookie host=\"^(dev\\.|webmail\\.|www\\.)?bananian\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BandPass.me\" default_off=\"connection dropped\" f=\"BandPass.me.xml\"><rule from=\"^http://(?:www\\.)?bandpass\\.me/\" to=\"https://bandpass.me/\"/></ruleset>", "<ruleset name=\"Bandcamp\" f=\"Bandcamp.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\"^\\.bandcamp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?bandcamp\\.com/\" to=\"https://$1bandcamp.com/\"/><rule from=\"^http://(www\\.)?bandcamp\\.mu/\" to=\"https://$1bandcamp.com/\"/><rule from=\"^http://(f|s)0\\.bcbits\\.com/\" to=\"https://$10.bcbits.com/\"/></ruleset>", "<ruleset name=\"Bandinelli.net\" f=\"Bandinelli.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bangor University (self-signed)\" default_off=\"self-signed\" f=\"Bangor-University-self-signed.xml\"><rule from=\"^http://www\\.undeb\\.bangor\\.ac\\.uk/\" to=\"https://www.undeb.bangor.ac.uk/\"/></ruleset>", "<ruleset name=\"Bangor University (partial)\" f=\"Bangor-University.xml\"><securecookie host=\"^[^w]\\w+\\.bangor\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bangor\\.ac\\.uk/itservices/user($|/)\" to=\"https://www.bangor.ac.uk/itservices/user$1\"/><rule from=\"^http://(bangorportal|blackboard|forum|inside|intranet|webmail)\\.bangor\\.ac\\.uk/\" to=\"https://$1.bangor.ac.uk/\"/></ruleset>", "<ruleset name=\"Bangor Daily News (partial)\" f=\"Bangor_Daily_News.xml\"><rule from=\"^http://(chrisbusby\\.|www\\.)?bangordailynews\\.com/\" to=\"https://$1bangordailynews.com/\"/><rule from=\"^http://(?:static\\.bangordailynews|bdnpull\\.bangorpublishing\\.netdna-cdn)\\.com/\" to=\"https://bangordailynews.com/\"/></ruleset>", "<ruleset name=\"BankID.no\" f=\"BankID.no.xml\"><securecookie host=\"^www\\.bankid\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bankid\\.no/\" to=\"https://www.bankid.no/\"/></ruleset>", "<ruleset name=\"Bank of England.co.uk (partial)\" f=\"Bank_of_England.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bank of Taipei.com.tw\" f=\"Bank_of_Taipei.com.tw.xml\"><securecookie host=\"^ebank\\.bankoftaipei\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://(ebank|www)\\.bankoftaipei\\.com\\.tw/\" to=\"https://$1.bankoftaipei.com.tw/\"/></ruleset>", "<ruleset name=\"Banki.ru\" f=\"Banki.ru.xml\"><rule from=\"^http://(?:www\\.)?banki\\.ru/\" to=\"https://www.banki.ru/\"/></ruleset>", "<ruleset name=\"Banking.co.at\" f=\"Banking.co.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BankofAmerica.com (buggy)\" default_off=\"breaks some URLs\" f=\"BankofAmerica.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?bankofamerica\\.com/\" to=\"https://www.bankofamerica.com/\"/></ruleset>", "<ruleset name=\"BankofAmerica.com (partial)\" f=\"BankofAmerica.xml\"><rule from=\"^http://webmedia\\.bankofamerica\\.com/\" to=\"https://webmedia.bankofamerica.com/\"/></ruleset>", "<ruleset name=\"Bankofscotland.de\" f=\"BankofScotland.de.xml\"><rule from=\"^http://bankofscotland\\.de/\" to=\"https://www.bankofscotland.de/\"/><rule from=\"^http://([^/:@]*)\\.bankofscotland\\.de/\" to=\"https://$1.bankofscotland.de/\"/></ruleset>", "<ruleset name=\"bankrate.com\" default_off=\"failed ruleset test\" f=\"Bankrate.com.xml\"><securecookie host=\"^(?:.*\\.)?bankrate\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bankrate\\.com/\" to=\"https://origin.bankrate.com/\"/></ruleset>", "<ruleset name=\"BannerSnack.com\" f=\"BannerSnack.com.xml\"><securecookie host=\"^(?:www\\.)?bannersnack\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bannersnack\\.com/\" to=\"https://$1bannersnack.com/\"/><rule from=\"^http://files\\.bannersnack\\.com/\" to=\"https://s3.amazonaws.com/files.bannersnack.com/\"/></ruleset>", "<ruleset name=\"Banque CIC\" f=\"Banque_CIC.xml\"><securecookie host=\"^(?:.*\\.)?cic\\.fr$\" name=\".+\"/><rule from=\"^http://cic\\.fr/\" to=\"https://www.cic.fr/\"/><rule from=\"^http://([^/:@]+)?\\.cic\\.fr/\" to=\"https://$1.cic.fr/\"/></ruleset>", "<ruleset name=\"Banque CIC (Suisse)\" f=\"Banque_CIC_Suisse.xml\"><securecookie host=\"^(?:.*\\.)?cic\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banque Cantonale du Valais\" f=\"Banque_Cantonale_du_Valais.xml\"><securecookie host=\"^(?:.*\\.)?bcvs\\.ch$\" name=\".+\"/><rule from=\"^http://bcvs\\.ch/\" to=\"https://www.bcvs.ch/\"/><rule from=\"^http://([^/:@]+)?\\.bcvs\\.ch/\" to=\"https://$1.bcvs.ch/\"/><rule from=\"^http://mybcvs\\.ch/\" to=\"https://www.mybcvs.ch/\"/><rule from=\"^http://([^/:@]+)?\\.mybcvs\\.ch/\" to=\"https://$1.mybcvs.ch/\"/></ruleset>", "<ruleset name=\"Banu.com\" default_off=\"failed ruleset test\" f=\"Banu.com.xml\"><securecookie host=\"^(?:.*\\.)?banu\\.com$\" name=\".+\"/><rule from=\"^http://((?:bugzilla|git|mail|staff|wiki|www)\\.)?banu\\.com/\" to=\"https://$1banu.com/\"/></ruleset>", "<ruleset name=\"Banx.io\" f=\"Banx.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?banx\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banyen Books and Sound\" f=\"Banyen-Books-and-Sound.xml\"><securecookie host=\"^www\\.banyen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banym.de\" f=\"Banym.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baomoi.com\" default_off=\"mismatched\" f=\"Baomoi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barbican\" f=\"Barbican.xml\"><securecookie host=\"^www\\.barbican\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?barbican\\.org\\.uk/\" to=\"https://www.barbican.org.uk/\"/></ruleset>", "<ruleset name=\"Barclays.co.uk\" f=\"Barclays.xml\"><securecookie host=\"^\\.barclays\\.co\\.uk$\" name=\"^s_vi$\"/><securecookie host=\"^(?:.+\\.)?barclays\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(jobs\\.)?barclays\\.co\\.uk/\" to=\"https://www.$1barclays.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barclays Corporate.com\" f=\"Barclays_Corporate.com.xml\"><securecookie host=\"^(?:.+\\.)?barclayscorporate\\.com$\" name=\".+\"/><rule from=\"^http://barclayscorporate\\.com/\" to=\"https://www.barclayscorporate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barclaycard.co.uk\" f=\"Barcleycard.co.uk.xml\"><securecookie host=\"^(?:.+\\.)?barclaycard\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://barclaycard\\.co\\.uk/\" to=\"https://www.barclaycard.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bardwil Home (partial)\" default_off=\"failed ruleset test\" f=\"Bardwil_Home.xml\"><rule from=\"^http://(?:www\\.)?bardwilhome\\.com/(cdn-cgi/ping|Controller/User_Session/CallTryCookie|css/|photos/|Public/|store_image/|Styles/)\" to=\"https://www.bardwilhome.com/$1\"/></ruleset>", "<ruleset name=\"BareMetal\" platform=\"mixedcontent\" f=\"BareMetal.xml\"><securecookie host=\"^swww\\.baremetal\\.com$\" name=\".*\"/><rule from=\"^http://(proxy\\.|s?www\\.)?baremetal\\.com/\" to=\"https://$1baremetal.com/\"/></ruleset>", "<ruleset name=\"Baremetrics.io\" f=\"Baremetrics.io.xml\"><securecookie host=\"^(?:www)?\\.baremetrics\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bareos\" f=\"Bareos.xml\"><securecookie host=\"^www\\.bareos\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bareos\\.org/\" to=\"https://www.bareos.org/\"/></ruleset>", "<ruleset name=\"Bargains 4 Business\" default_off=\"connection refused\" f=\"Bargains_4_Business.xml\"><securecookie host=\"^(?:w*\\.)?bargains4business\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BarkBox.com (partial)\" f=\"BarkBox.com.xml\"><securecookie host=\"^\\.barkbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BarkerJr.net\" f=\"BarkerJr.net.xml\"><rule from=\"^http://www\\.barkerjr\\.net/\" to=\"https://www.barkerjr.net/\"/></ruleset>", "<ruleset name=\"Barmer-GEK\" f=\"Barmer-GEK.xml\"><rule from=\"^http://(?:www\\.)?barmer-gek\\.de/\" to=\"https://www.barmer-gek.de/\"/></ruleset>", "<ruleset name=\"Barna.org (partial)\" f=\"Barna.org.xml\"><securecookie host=\"^\\.www\\.barna\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnard College\" f=\"Barnard_College.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnebys.co.uk\" f=\"Barnebys.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnebys.com\" f=\"Barnebys.com.xml\"><rule from=\"^http://widget\\.barnebys\\.com/\" to=\"https://d3dvc13yhtcxbb.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnes-Jewish Hospital (partial)\" f=\"Barnes-Jewish_Hospital.xml\"><rule from=\"^http://(?:www\\.)?barnesjewish\\.org/(BJHControls/|favicon\\.ico|images/|MediaGallery/|skins/|styles/|[uU]pload/)\" to=\"https://www.barnesjewish.org/$1\"/></ruleset>", "<ruleset name=\"Barnes and Noble (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BarnesandNoble.xml\"><exclusion pattern=\"^http://www\\.barnesandnoble\\.com/(?:google/ad\\?url=|p/[\\w-]+|[sw]/)\"/><securecookie host=\"^(?:cart\\d|my|\\.?mynook)\\.barnesandnoble\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?b(?:arnesandnoble|n)\\.com/\" to=\"https://www.barnesandnoble.com/\"/><rule from=\"^http://(cart\\d|my|mynook|pnr)\\.barnesandnoble\\.com/\" to=\"https://$1.barnesandnoble.com/\"/><rule from=\"^http://images\\.barnesandnoble\\.com/\" to=\"https://simg1.imagesbn.com/\"/></ruleset>", "<ruleset name=\"Barnskospecialisten.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Barnskospecialisten.se.xml\"><rule from=\"^http://www\\.barnskospecialisten\\.se/\" to=\"https://www.barnskospecialisten.se/\"/><rule from=\"^http://barnskospecialisten\\.se/\" to=\"https://barnskospecialisten.se/\"/></ruleset>", "<ruleset name=\"Barracuda.com\" f=\"Barracuda.com.xml\"><securecookie host=\"^www\\.barracuda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bart.gov\" f=\"Bart.gov.xml\"><rule from=\"^http://(www\\.)?bart\\.gov/\" to=\"https://www.bart.gov/\"/></ruleset>", "<ruleset name=\"Bart Bania.com (partial)\" f=\"Bart_Bania.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barter.vg\" f=\"Barter.vg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bartleby.com\" default_off=\"expired, mismatched, self-signed\" f=\"Bartleby.com.xml\"><securecookie host=\"^bartleby\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bartleby\\.com/\" to=\"https://bartleby.com/\"/></ruleset>", "<ruleset name=\"Barvaux.org\" default_off=\"untrusted root\" f=\"Barvaux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Base INC!\" default_off=\"failed ruleset test\" f=\"Base_INC.xml\"><securecookie host=\"^(?:www)?\\.base-valid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Basecamp.com\" f=\"Basecamp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bassetlaw.gov.uk (partial)\" f=\"Bassetlaw.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bathnes.gov.uk (partial)\" f=\"Bathnes.gov.uk.xml\"><exclusion pattern=\"^http://(?:idox\\.|www\\.)?bathnes\\.gov\\.uk/+(?!misc/|sites/)\"/><securecookie host=\"^(?!(?:idox\\.|www\\.)?bathnes\\.gov\\.uk$)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Batman Arkham Knight.com\" f=\"Batman_Arkham_Knight.com.xml\"><rule from=\"^http://batmanarkhamknight\\.com/\" to=\"https://www.batmanarkhamknight.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Batmanarkhamorigins.com\" f=\"Batmanarkhamorigins.com.xml\"><rule from=\"^http://(?:www\\.)?batmanarkhamorigins\\.com/\" to=\"https://www.batmanarkhamorigins.com/\"/></ruleset>", "<ruleset name=\"Battelle (partial)\" f=\"Battelle.xml\"><rule from=\"^http://(www\\.)?battelle\\.org/(careers/(?:benefits|current-openings|our-culture)(?:$|\\?)|docs/|doing-business-with-us/commercial-clients(?:$|\\?)|favicon\\.ico|feeds/|images/|Sitefinity/|Telerik\\.Web\\.UI\\.WebResource\\.axd)\" to=\"https://$1battelle.org/$2\"/></ruleset>", "<ruleset name=\"Battle.net (partial)\" f=\"Battle.net.xml\"><exclusion pattern=\"^http://(?:(?:eu|kr|sea|tw|us|www)\\.)?battle\\.net/(?!(?:account|d3|login)(?:$|\\?|/)|favicon\\.ico|static(?:-render)?/|.+/static/)\"/><securecookie host=\"^forums\\.battle\\.net$\" name=\".+\"/><rule from=\"^http://((?:eu|forums|kr|sea|tw|us|www)\\.)?battle\\.net/\" to=\"https://$1battle.net/\"/><rule from=\"^http://us\\.media3\\.battle\\.net/\" to=\"https://bnetcmsus-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"Battle Creek Enquirer\" default_off=\"failed ruleset test\" f=\"Battle_Creek_Enquirer.xml\"><securecookie host=\"^www\\.battlecreekenquirer\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?battlecreekenquirer\\.com/\" to=\"https://www.battlecreekenquirer.com/\"/></ruleset>", "<ruleset name=\"Battle for the Net.com\" f=\"Battle_for_the_Net.com.xml\"><securecookie host=\"^\\.battleforthenet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bauhaus-University Weimar (partial)\" f=\"Bauhaus-University_Weimar.xml\"><securecookie host=\"^.+\\.uni-weimar\\.de$\" name=\".+\"/><rule from=\"^http://w(ebmail|ww)\\.uni-weimar\\.de/\" to=\"https://w$1.uni-weimar.de/\"/></ruleset>", "<ruleset name=\"The Baxter Bulletin\" default_off=\"failed ruleset test\" f=\"Baxter_Bulletin.xml\"><securecookie host=\"^www\\.baxterbulletin\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?baxterbulletin\\.com/\" to=\"https://www.baxterbulletin.com/\"/></ruleset>", "<ruleset name=\"BayFiles\" default_off=\"failed ruleset test\" f=\"BayFiles.xml\"><rule from=\"^http://(?:www\\.)?bayfiles\\.com/\" to=\"https://bayfiles.net/\"/><rule from=\"^http://(www\\.)?bayfiles\\.net/\" to=\"https://$1bayfiles.net/\"/></ruleset>", "<ruleset name=\"BayLeaks.com\" f=\"BayLeaks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BayLibre.com\" f=\"BayLibre.com.xml\"><securecookie host=\"^(?:www\\.)?baylibre\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bay Area Amusements\" f=\"Bay_Area_Amusements.xml\"><securecookie host=\"^(?:www\\.)?bayareaamusements\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bay Citizen.org\" f=\"Bay_Citizen.org.xml\"><securecookie host=\"^www\\.baycitizen\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?baycitizen\\.org/\" to=\"https://www.baycitizen.org/\"/></ruleset>", "<ruleset name=\"Bayan.ir (expired)\" default_off=\"expired\" f=\"Bayan.ir-expired.xml\"><rule from=\"^http://cdn\\.bayan\\.ir/\" to=\"https://cdn.bayan.ir/\"/></ruleset>", "<ruleset name=\"Bayan.ir (partial)\" f=\"Bayan.ir.xml\"><securecookie host=\"^bayan\\.ir$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bayden.com\" f=\"Bayden.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baylor.edu (partial)\" f=\"Baylor.edu.xml\"><securecookie host=\"^\\.(?:m|www)\\.baylor\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?baylor\\.edu/\" to=\"https://www.baylor.edu/\"/><rule from=\"^http://(m|www1)\\.baylor\\.edu/\" to=\"https://$1.baylor.edu/\"/></ruleset>", "<ruleset name=\"Bazaarvoice.com (problematic)\" default_off=\"mismatch\" f=\"Bazaarvoice-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaarvoice.com (partial)\" f=\"Bazaarvoice.xml\"><exclusion pattern=\"^http://resources\\.bazaarvoice\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^login\\.\" name=\".\"/><rule from=\"^http://spark\\.bazaarvoice\\.com/\" to=\"https://bazaarvoice.secure.force.com/\"/><rule from=\"^http://resources\\.bazaarvoice\\.com/\" to=\"https://na-aba.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"baztab.net\" default_off=\"failed ruleset test\" f=\"Baztab.net.xml\"><securecookie host=\"^\\.baztab\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BazzApp\" default_off=\"failed ruleset test\" f=\"BazzApp.xml\"><securecookie host=\"^bazzapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bazapp\\.com/\" to=\"https://bazapp.com/\"/></ruleset>", "<ruleset name=\"bbPress.org\" f=\"BbPress.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bbcshop.com\" platform=\"mixedcontent\" f=\"Bbcshop.com.xml\"><rule from=\"^http://www\\.bbcshop\\.com/\" to=\"https://www.bbcshop.com/\"/></ruleset>", "<ruleset name=\"bbelements.com (partial)\" f=\"Bbelements.com.xml\"><securecookie host=\"^\\.go\\.\" name=\".\"/><rule from=\"^http://go\\.arbopl\\.bbelements\\.com/\" to=\"https://go.goldbachpoland.bbelements.com/\"/><rule from=\"^http://go\\.(?:cz|pl)\\.bbelements\\.com/\" to=\"https://go.eu.bbelements.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bbsey.es (partial)\" default_off=\"failed ruleset test\" f=\"Bbsey.es.xml\"><rule from=\"^http://(www\\.)?bbsey(?:\\.es|es\\.com)/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1bbseye.es/\"/></ruleset>", "<ruleset name=\"Bcash.com.br (partial)\" f=\"Bcash.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bcobandits.com\" default_off=\"failed ruleset test\" f=\"Bcobandits.com.xml\"><securecookie host=\"^\\.bcobandits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bcove.me\" f=\"Bcove.me.xml\"><rule from=\"^http://bcove\\.me/\" to=\"https://bcove.me/\"/></ruleset>", "<ruleset name=\"Bdimg.com (partial)\" f=\"Bdimg.com.xml\"><rule from=\"^http://apps\\d?\\.bdimg\\.com/\" to=\"https://openapi.baidu.com/\"/></ruleset>", "<ruleset name=\"Bdone.hu\" default_off=\"failed ruleset test\" f=\"Bdone.hu.xml\"><rule from=\"^http://(?:www\\.)?bdone\\.hu/\" to=\"https://www.bdone.hu/\"/></ruleset>", "<ruleset name=\"BeCoquin.com (partial)\" f=\"BeCoquin.com.xml\"><securecookie host=\"^\\.becoquin\\.com$\" name=\"^(?:TRACK_(?:CLOG|VISIT)|__utm\\w)$\"/><rule from=\"^http://(?:www\\.)?becoquin\\.com/(?=blog(?:$|[?/])|ext\\.php|favicon\\.ico|login\\.html|static/)\" to=\"https://www.becoquin.com/\"/></ruleset>", "<ruleset name=\"BeNaughty.com (partial)\" f=\"BeNaughty.com.xml\"><exclusion pattern=\"^http://ed\\.benaughty\\.com/(?!ext\\.php)\"/><securecookie host=\"^(?:.*\\.)?benaughty\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?benaughty\\.com/\" to=\"https://www.benaughty.com/\"/><rule from=\"^http://(cdn|ed)\\.benaughty\\.com/\" to=\"https://$1.benaughty.com/\"/></ruleset>", "<ruleset name=\"BeSTGRID.org (partial)\" f=\"BeSTGRID.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Be Diff.com.br\" f=\"Be_Diff.com.br.xml\"><securecookie host=\"^(?:w*\\.)?bediff\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Be Mobile.ua\" default_off=\"missing certificate chain\" f=\"Be_Mobile.ua.xml\"><securecookie host=\"^bemobile\\.ua$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"be quiet.com (false MCB)\" platform=\"mixedcontent\" f=\"Be_quiet.com.xml\"><securecookie host=\"^www\\.bequiet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bequiet\\.com/\" to=\"https://www.bequiet.com/\"/></ruleset>", "<ruleset name=\"Beacon Initiative\" default_off=\"failed ruleset test\" f=\"Beacon_Initiative.xml\"><securecookie host=\"^\\.beaconinitiative\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beacon Reader.com\" f=\"Beacon_Reader.com.xml\"><securecookie host=\"^www\\.beaconreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?beaconreader\\.com/\" to=\"https://www.beaconreader.com/\"/></ruleset>", "<ruleset name=\"Beagle Street (partial)\" f=\"Beagle_Street.xml\"><securecookie host=\"^quotes\\.beaglestreet\\.com$\" name=\".+\"/><rule from=\"^http://quotes\\.beaglestreet\\.com/\" to=\"https://quotes.beaglestreet.com/\"/></ruleset>", "<ruleset name=\"Beaker-Project.org\" f=\"Beaker-Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeamYourScreen\" default_off=\"failed ruleset test\" f=\"BeamYourScreen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beanbag Inc.com\" f=\"Beanbag_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beanstalk Data\" f=\"Beanstalk_Data.xml\"><securecookie host=\"^app\\.beanstalkdata\\.com$\" name=\".+\"/><rule from=\"^http://app\\.beanstalkdata\\.com/\" to=\"https://app.beanstalkdata.com/\"/></ruleset>", "<ruleset name=\"Beanstock Media (partial)\" f=\"Beanstock_Media.xml\"><rule from=\"^http://tag\\.beanstock\\.co/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"bear.im\" f=\"Bear.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeastNode (expired)\" default_off=\"expired\" f=\"BeastNode-problematic.xml\"><rule from=\"^http://cp\\.beastnode\\.com/\" to=\"https://cp.beastnode.com/\"/></ruleset>", "<ruleset name=\"BeastNode (partial)\" f=\"BeastNode.xml\"><securecookie host=\"^.*\\.beastnode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beatport (buggy)\" default_off=\"JS redirection loop\" f=\"Beatport.xml\"><securecookie host=\"^(?:baseware)?\\.beatport\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|baseware|geo-media|mixes|news|play|sounds|www)\\.)?beatport\\.com/\" to=\"https://$1beatport.com/\"/><rule from=\"^http://embed\\.beatport\\.com/(?:$|\\?)\" to=\"https://www.beatport.com/\"/><rule from=\"^http://static\\.bpddn\\.com/\" to=\"https://static.bpddn.com/\"/></ruleset>", "<ruleset name=\"Beatsmedia\" default_off=\"failed ruleset test\" f=\"Beatsmedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beauteprivee.fr\" f=\"Beauteprivee.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:statics\\d\\.)?beauteprivee\\.fr/\" to=\"https://www.beauteprivee.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeautifulDecay.com (partial)\" f=\"BeautifulDecay.com.xml\"><securecookie host=\"^\\.beautifuldecay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeautyBar.com (partial)\" f=\"BeautyBar.com.xml\"><rule from=\"^http://(?:c\\d\\.)?beautybar\\.com/\" to=\"https://www.beautybar.com/\"/><rule from=\"^http://www\\.beautybar\\.com/(app/|(?:checkout|login)\\.qs|[iI]mages/|giftcertificate/|helpcenter/|myaccount/|SampleSociety/|(?:App_)?Themes/|[\\w\\-]+\\.aspx)\" to=\"https://www.beautybar.com/$1\"/></ruleset>", "<ruleset name=\"Beaverbrooks.co.uk (partial)\" f=\"Beaverbrooks.co.uk.xml\"><securecookie host=\"^\\.beaverbrooks\\.co\\.uk$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?beaverbrooks\\.co\\.uk/(?=_client/|favicon\\.ico|images/|myaccount(?:$|[?/])|_uploads/)\" to=\"https://www.beaverbrooks.co.uk/\"/><rule from=\"^http://content\\.beaverbrooks\\.co\\.uk/\" to=\"https://content.beaverbrooks.co.uk/\"/></ruleset>", "<ruleset name=\"Bebo.com\" f=\"Bebo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beck PC.ch\" default_off=\"missing certificate chain\" f=\"Beck_PC.ch.xml\"><securecookie host=\"^\\.beckpc\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedis.eu\" default_off=\"expired\" f=\"Bedis.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://stats\\.bedis\\.eu/\" to=\"https://wiki.bedis.eu/\"/><rule from=\"^http://www\\.bedis\\.eu/\" to=\"https://bedis.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeeFree.io\" f=\"BeeFree.io.xml\"><securecookie host=\"^(?:www\\.)?beefree\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beefy Miracle.org\" f=\"Beefy_Miracle.org.xml\"><securecookie host=\"^\\.beefymiracle\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beeld en Geluid.nl (partial)\" f=\"Beeld_en_Geluid.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeenVerified (partial)\" f=\"BeenVerified.xml\"><exclusion pattern=\"^http://(?:www\\.)?beenverified\\.com/(?!(?:\\?.*)?$|sitemap\\.html)\"/><securecookie host=\"^m\\.beenverified\\.com$\" name=\".+\"/><rule from=\"^http://(api\\.|(?:www\\.)?sor\\.api\\.|m\\.|www\\.)?beenverified\\.com/\" to=\"https://$1beenverified.com/\"/><rule from=\"^http://support\\.beenverified\\.com/(generated|images)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"beender.co\" f=\"Beender.co.xml\"><securecookie host=\"^\\.?beender\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?beender\\.co/\" to=\"https://beender.co/\"/></ruleset>", "<ruleset name=\"Beetailer.com\" f=\"Beetailer.com.xml\"><securecookie host=\"^www\\.beetailer\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?beetailer\\.com/\" to=\"https://$1beetailer.com/\"/><rule from=\"^http://support\\.beetailer\\.com/\" to=\"https://beetailer.tenderapp.com/\"/></ruleset>", "<ruleset name=\"Beget.ru\" f=\"Beget.ru.xml\"><securecookie host=\"^(?:www\\.)?beget\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeginLinux.com\" f=\"BeginLinux.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beginner Triathlete (partial)\" default_off=\"failed ruleset test\" f=\"Beginner_Triathlete.xml\"><securecookie host=\"^(?:www\\.)?beginnertriathlete\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Begun.ru\" f=\"Begun.xml\"><securecookie host=\"^(?:www)?\\.begun\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Behance (partial)\" f=\"Behance.xml\"><securecookie host=\"^(?:a2|www)\\.behance\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?behance\\.net/\" to=\"https://www.behance.net/\"/><rule from=\"^http://(a2|help)\\.behance\\.net/\" to=\"https://$1.behance.net/\"/></ruleset>", "<ruleset name=\"Behavioral Policy.org\" f=\"Behavioral_Policy.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Behr\" default_off=\"failed ruleset test\" f=\"Behr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beijing Qianfendian (partial)\" f=\"Beijing_Qianfendian.xml\"><rule from=\"^http://baifendian\\.com/\" to=\"https://www.baifendian.com/\"/><rule from=\"^http://(\\w+\\.api|ssl-[\\w\\-]+|www)\\.baifendian\\.com/\" to=\"https://$1.baifendian.com/\"/></ruleset>", "<ruleset name=\"Beleza na Web (partial)\" default_off=\"failed ruleset test\" f=\"Beleza_na_Web.xml\"><securecookie host=\"^\\.belezanaweb\\.net\\.br$\" name=\"^__sonar$\"/><rule from=\"^http://(www\\.)?belezanaweb\\.com\\.br/(css/|favicon\\.ico|imagen?s/|scripts/)\" to=\"https://$1belezanaweb.com.br/$2\"/><rule from=\"^http://static\\d?\\.belezanaweb\\.net\\.br/\" to=\"https://d33827d8ipi614.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Belgacoin.com\" f=\"Belgacoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Belkin (partial)\" f=\"Belkin.xml\"><rule from=\"^http://(?:www\\.)?belkin\\.com/(favicon\\.ico|images/|\\w\\w/login(?:$|\\?|/)|medias/|resources/|_ui/|\\w\\w/_ui/)\" to=\"https://www.belkin.com/$1\"/></ruleset>", "<ruleset name=\"Bell Canada (partial)\" f=\"Bell-Canada.xml\"><securecookie host=\"^(?:www|business|mybell)?(?:\\.)?bell\\.ca$\" name=\".+\"/><securecookie host=\"^jobs\\.bce\\.ca$\" name=\".+\"/><securecookie host=\"^webmail\\.bell\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bell-Labs.com\" f=\"Bell-Labs.com.xml\"><securecookie host=\"^www\\.bell-labs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bell-labs\\.com/\" to=\"https://www.bell-labs.com/\"/></ruleset>", "<ruleset name=\"BellSouth (partial)\" default_off=\"failed ruleset test\" f=\"BellSouth.xml\"><securecookie host=\"^smallbusiness\\.bellsouth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bellsouth\\.com/\" to=\"https://www.bellsouth.com/\"/><rule from=\"^http://smallbusiness\\.bellsouth\\.com/\" to=\"https://smallbusiness.bellsouth.com/\"/></ruleset>", "<ruleset name=\"Bellingcat.com\" f=\"Bellingcat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bellingham School District (partial)\" f=\"Bellingham_School_District.xml\"><rule from=\"^http://(sehome\\.|www\\.)?bellinghamschools\\.org/(misc|sites)/\" to=\"https://$1bellinghamschools.org/$2/\"/></ruleset>", "<ruleset name=\"Belly Button Biodiversity\" default_off=\"mismatched\" f=\"Belly_Button_Biodiversity.xml\"><rule from=\"^http://(?:www\\.)?wildlifeofyourbody\\.org/\" to=\"https://wildlifeofyourbody.org/\"/></ruleset>", "<ruleset name=\"Belnet.be (partial)\" f=\"Belnet.be.xml\"><securecookie host=\"^(?:\\.?dcs|\\.events?|idpcustomer)\\.belnet\\.be$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?belnet\\.be/\" to=\"https://www.belnet.be/\"/><rule from=\"^http://(bcg|certificates|changepass(?:word)?|dcs|events?|fiorano|idp|idpcustomer|scs)\\.belnet\\.be/\" to=\"https://$1.belnet.be/\"/><rule from=\"^http://bnc\\.belnet\\.be/+(\\?.*)?$\" to=\"https://events.belnet.be/nl/content/belnet-networking-conference-2012$1\"/><rule from=\"^http://loba\\.belnet\\.be/+[^?]*(\\?.*)?\" to=\"https://dcs.belnet.be/$1\"/></ruleset>", "<ruleset name=\"Belpino.se\" default_off=\"failed ruleset test\" f=\"Belpino.se.xml\"><rule from=\"^http://www\\.belpino\\.se/\" to=\"https://www.belpino.se/\"/><rule from=\"^http://belpino\\.se/\" to=\"https://belpino.se/\"/></ruleset>", "<ruleset name=\"Belspo.be (partial)\" f=\"Belspo.be.xml\"><rule from=\"^http://www\\.belspo\\.be/\" to=\"https://www.belspo.be/\"/></ruleset>", "<ruleset name=\"BenTasker.co.uk\" f=\"BenTasker.co.uk.xml\"><rule from=\"^http://bentasker\\.co\\.uk/\" to=\"https://www.bentasker.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ben Marshall.me\" f=\"Ben_Marshall.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bendigo Bank\" f=\"BendigoBank.xml\"><rule from=\"^http://bendigobank\\.com\\.au/\" to=\"https://www.bendigobank.com.au/\"/><rule from=\"^http://(edroom|m|shop|www)\\.bendigobank\\.com\\.au/\" to=\"https://$1.bendigobank.com.au/\"/></ruleset>", "<ruleset name=\"Benedikt-Bitterli.me\" f=\"Benedikt-Bitterli.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Benefit.nl\" f=\"Benefit.nl.xml\"><securecookie host=\"^www\\.benefit\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"benefitsweb.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Benefitsweb.com.xml\"><securecookie host=\"^(?:www)?\\.benefitsweb\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?benefitsweb\\.com/\" to=\"https://www.benefitsweb.com/\"/></ruleset>", "<ruleset name=\"Benetech\" f=\"Benetech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bennetts (partial)\" default_off=\"failed ruleset test\" f=\"Bennetts.xml\"><securecookie host=\"^\\.?quotes\\.bennets\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bennetts\\.co\\.uk/(assets/|bikesocial/signin|Global/|PageFiles/|[tT]emplates/)\" to=\"https://www.bennetts.co.uk/$1\"/><rule from=\"^http://(classified|quote)s\\.bennetts\\.co\\.uk/\" to=\"https://$1s.bennetts.co.uk/\"/></ruleset>", "<ruleset name=\"Benthams Gaze.org\" f=\"Benthams_Gaze.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bentley University (partial)\" f=\"Bentley_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?bentley\\.edu/(?!favicon\\.ico|files/|sites/)\"/><securecookie host=\"^\\.secureforms\\.bentley\\.edu$\" name=\".+\"/><rule from=\"^http://((?:secureforms|www)\\.)?bentley\\.edu/\" to=\"https://$1bentley.edu/\"/></ruleset>", "<ruleset name=\"Benzinga.com (partial)\" f=\"Benzinga.com.xml\"><exclusion pattern=\"^http://pro\\.benzinga\\.com/+(?!sites/)\"/><exclusion pattern=\"^http://www\\.benzinga\\.com/+(?!favicon\\.ico)\"/><rule from=\"^http://((?:cdn\\d|jobs|pro|www)\\.)?benzinga\\.com/\" to=\"https://$1benzinga.com/\"/></ruleset>", "<ruleset name=\"bepress.com (partial)\" f=\"Bepress.xml\"><exclusion pattern=\"^http://[^/]+\\.[^/]+\\.bepress\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.no (partial)\" f=\"BergensTidende.xml\"><exclusion pattern=\"^http://kundesenter\\.bt\\.no/+(?!keypublisher_gui/|sitefiles/)\"/><exclusion pattern=\"^http://(?:www\\.)?bt\\.no/+(?!external/|skins/)\"/><rule from=\"^http://(?:www\\.)?bt\\.no/\" to=\"https://www.bt.no/\"/><rule from=\"^http://(kundesenter|statisk)\\.bt\\.no/\" to=\"https://$1.bt.no/\"/></ruleset>", "<ruleset name=\"Berkeley LUG.com\" default_off=\"failed ruleset test\" f=\"Berkeley_LUG.com.xml\"><securecookie host=\"^www\\.berkeleylug\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?berkeleylug\\.com/\" to=\"https://www.berkeleylug.com/\"/></ruleset>", "<ruleset name=\"Berkeley Chess School (partial)\" default_off=\"404\" f=\"Berkely-Chess-School.xml\"><securecookie host=\"^(?:.*\\.)?berkeleychessschool\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?berkeleychessschool\\.org/(imgs|images|stylesheets)/\" to=\"https://$1berkeleychessschool.org/$2/\"/></ruleset>", "<ruleset name=\"Berklee College of Music\" f=\"Berklee.edu.xml\"><rule from=\"^http://apply\\.berklee\\.edu/\" to=\"https://apply.berklee.edu/\"/></ruleset>", "<ruleset name=\"Berkshire-Hathaway (partial)\" f=\"Berkshire-Hathaway.xml\"><rule from=\"^http://businesswire\\.com/\" to=\"https://www.businesswire.com/\"/><rule from=\"^http://(?:www\\.)?businesswire\\.com/(css/|images/|portal/(?:binary|site/home/(?:template\\.LOGIN|index\\.jsp\\?epi-content=[\\w&=]+wizardName=userreg)))\" to=\"https://www.businesswire.com/$1\"/><rule from=\"^http://(connect|secure)\\.businesswire\\.com/\" to=\"https://$1.businesswire.com/\"/><rule from=\"^http://cts\\.businesswire\\.com/ct/CT\\?id=\" to=\"https://www.businesswire.com/images/spacer.gif\"/><rule from=\"^http://mms\\.businesswire\\.com/bwapps/mediaserver/\" to=\"https://connect.businesswire.com/bwapps/mediaserver/\"/></ruleset>", "<ruleset name=\"BerliOS\" default_off=\"self-signed\" f=\"BerliOS.xml\"><securecookie host=\"^.+\\.berlios\\.de$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+)\\.berlios\\.de/\" to=\"https://$1.berlios.de/\"/></ruleset>", "<ruleset name=\"Berlin Airport\" default_off=\"failed ruleset test\" f=\"Berlin-Airport.de.xml\"><rule from=\"^http://berlin-airport\\.de/\" to=\"https://www.berlin-airport.de/\"/><rule from=\"^http://([^/:@]+)?\\.berlin-airport\\.de/\" to=\"https://$1.berlin-airport.de/\"/></ruleset>", "<ruleset name=\"Berlin.de\" default_off=\"http redirect\" f=\"Berlin.de.xml\"><exclusion pattern=\"^http://action\\.berlin\\.de/\"/><exclusion pattern=\"^http://daten\\.berlin\\.de/\"/><rule from=\"^http://berlin\\.de/\" to=\"https://www.berlin.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Berliner Energietisch\" default_off=\"mismatch, self-signed\" f=\"Berliner-Energietisch.xml\"><securecookie host=\"^berliner-energietisch\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?berliner-energietisch\\.net/\" to=\"https://berliner-energietisch.net/\"/></ruleset>", "<ruleset name=\"Berlinonline.de\" platform=\"mixedcontent\" f=\"Berlinonline.de.xml\"><rule from=\"^http://(www|boss)\\.berlinonline\\.de/\" to=\"https://$1.berlinonline.de/\"/><rule from=\"^http://berlinonline\\.de/\" to=\"https://www.berlinonline.de/\"/><securecookie host=\"^boss\\.berlinonline\\.de\" name=\".*\"/><securecookie host=\"www\\.berlinonline\\.de\" name=\".*\"/></ruleset>", "<ruleset name=\"Bernal Bucks\" f=\"Bernal_Bucks.xml\"><securecookie host=\"^\\.?bernalbucks\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bernard Hodes Group (partial)\" default_off=\"failed ruleset test\" f=\"Bernard_Hodes_Group.xml\"><securecookie host=\"^.+\\.sc\\.hodesdigital\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.sc\\.hodesdigital\\.com/\" to=\"https://$1.sc.hodesdigital.com/\"/><rule from=\"^http://jobmatcher\\.hodesiq\\.com/\" to=\"https://jobmatcher.hodesiq.com/\"/></ruleset>", "<ruleset name=\"Bernie Sanders.com\" f=\"Bernie_Sanders.com.xml\"><securecookie host=\"^\\.berniesanders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"berniw.org\" default_off=\"mismatch\" f=\"Berniw.org.xml\"><securecookie host=\"^berniw\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?berniw\\.org/\" to=\"https://berniw.org/\"/></ruleset>", "<ruleset name=\"BerryReview.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BerryReview.com.xml\"><securecookie host=\"^(?:\\.?www\\.)?berryreview\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bertrand Meyer.com\" f=\"Bertrand_Meyer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bespied-ons-niet.nl\" f=\"Bespied-ons-niet.nl.xml\"><rule from=\"^http://(?:www\\.)?bespied-ons-niet\\.nl/\" to=\"https://bespied-ons-niet.nl/\"/></ruleset>", "<ruleset name=\"Best Buy (partial)\" f=\"Best-Buy.xml\"><securecookie host=\"^www-ssl\\.bestbuy\\.com$\" name=\".+\"/><rule from=\"^http://bestbuy\\.ugc\\.bazaarvoice\\.com/\" to=\"https://bestbuy.ugc.bazaarvoice.com/\"/><rule from=\"^http://www-ssl\\.bestbuy\\.com/\" to=\"https://www-ssl.bestbuy.com/\"/><rule from=\"^http://images(?:-ssl)?\\.bestbuy\\.com/\" to=\"https://images-ssl.bestbuy.com/\"/></ruleset>", "<ruleset name=\"Best Lawyers\" f=\"Best-Lawyers.xml\"><securecookie host=\"^www\\.bestlawyers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bestlawyers\\.com/\" to=\"https://www.bestlawyers.com/\"/></ruleset>", "<ruleset name=\"Best Master's Degrees\" default_off=\"mismatch\" f=\"Best-Masters-Degrees.xml\"><securecookie host=\"^www\\.bestmastersdegrees\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bestmastersdegrees\\.com/\" to=\"https://www.bestmastersdegrees.com/\"/></ruleset>", "<ruleset name=\"BestChange.org\" f=\"BestChange.org.xml\"><securecookie host=\"^www\\.bestchange\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BestOfferBuy.com\" default_off=\"failed ruleset test\" f=\"BestOfferBuy.com.xml\"><securecookie host=\"^\\.(?:www\\.)?bestofferbuy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bestofferbuy\\.com/\" to=\"https://www.bestofferbuy.com/\"/></ruleset>", "<ruleset name=\"Best Olive Oils (partial)\" f=\"Best_Olive_Oils.xml\"><rule from=\"^http://\\d\\.bestoliveoils\\.com/\" to=\"https://d2j28hyghlzp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Best Practical.com (partial)\" f=\"Best_Practical.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Best VPN.com\" f=\"Best_VPN.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bestvpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bestcovery.com (partial)\" f=\"Bestcovery.com.xml\"><securecookie host=\"^\\.bestcovery\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(www\\.)?bestcovery\\.com/(aspect_js\\.js|blog/wp-content/|ci/|sites/)\" to=\"https://$1bestcovery.com/$2\"/><rule from=\"^http://cdn[1-6]?\\.bestcovery\\.com/\" to=\"https://d20no9q7bar3sq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"bestmx.ru (partial)\" default_off=\"self-signed\" f=\"Bestmx.ru.xml\"><rule from=\"^http://mail\\.bestmx\\.ru/\" to=\"https://mail.bestmx.ru/\"/></ruleset>", "<ruleset name=\"bet365.com (partial)\" f=\"Bet365-Group.xml\"><exclusion pattern=\"^http://members\\.bet365\\.com/$\"/><securecookie host=\"^.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bet555\" f=\"Bet555.xml\"><securecookie host=\"^(?:w*\\.)?bet555\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetCoin.tm\" f=\"BetCoin.tm.xml\"><securecookie host=\"^(?:luck|www)?\\.betcoin\\.tm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beta & Cie (mismatches)\" default_off=\"mismatch\" f=\"Beta-and-Cie-mismatches.xml\"><rule from=\"^http://img\\.tweetimag\\.es/\" to=\"https://img.tweetimag.es/\"/></ruleset>", "<ruleset name=\"Beta & Cie (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Beta-and-Cie.xml\"><rule from=\"^http://cdn\\.betacie\\.(?:com|net)/\" to=\"https://cdn.betacie.net/\"/><rule from=\"^http://cdn\\d\\.viedemerde\\.fr/\" to=\"https://betacie.cachefly.net/\"/><rule from=\"^http://(www\\.)?viedemerde\\.fr/\" to=\"https://$1viedemerde.fr/\"/></ruleset>", "<ruleset name=\"Betabeat.com\" default_off=\"failed ruleset test\" f=\"Betabeat.com.xml\"><securecookie host=\"^\\.betabeat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Betanews (partial)\" default_off=\"self-signed\" f=\"Betanews.xml\"><rule from=\"^http://store\\.fileforum\\.com/\" to=\"https://store.fileforum.com/\"/></ruleset>", "<ruleset name=\"Bethsoft.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Bethsoft.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?bethsoft\\.com/(?:assets/|css/|favicon\\.ico)\"/><exclusion pattern=\"^http://bgs\\.bethsoft\\.com/(?:[\\w-]+\\.css|favicon\\.ico|images/)\"/><exclusion pattern=\"^http://(?:cdn|cdnstatic|content|fallout|geck|store)\\.\"/><exclusion pattern=\"^http://forums\\.bethsoft\\.com/(?:cache/|favicon\\.ico|public/|uploads/)\"/><exclusion pattern=\"^http://support\\.bethsoft\\.com/(?:assets/|favicon\\.ico|themes/)\"/><securecookie host=\"^(?:.*\\.)?bethsoft\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?bethsoft\\.com/\" to=\"https://$1bethsoft.com/\"/></ruleset>", "<ruleset name=\"Bethsoft.com (partial)\" f=\"Bethsoft.com.xml\"><exclusion pattern=\"^http://geck\\.\"/><exclusion pattern=\"^http://(?:www\\.)?bethsoft\\.com/(?!assets/|css/|favicon\\.ico)\"/><exclusion pattern=\"^http://bgs\\.bethsoft\\.com/(?![\\w-]+\\.css|favicon\\.ico|images/)\"/><exclusion pattern=\"^http://forums\\.bethsoft\\.com/(?!cache/|favicon\\.ico|public/|uploads/)\"/><exclusion pattern=\"^http://support\\.bethsoft\\.com/(?!assets/|favicon\\.ico|themes/)\"/><securecookie host=\"^\\.bethsoft\\.com$\" name=\"__u\\w+$\"/><securecookie host=\".+\\.bethsoft\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.bethsoft\\.com/\" to=\"https://d1bjnur3wbumt5.cloudfront.net/\"/><rule from=\"^http://cdnstatic\\.bethsoft\\.com/\" to=\"https://d1ys1uetzexz61.cloudfront.net/\"/><rule from=\"^http://content\\.bethsoft\\.com/\" to=\"https://d3o0v0yx1apq2.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?bethsoft\\.com/\" to=\"https://$1bethsoft.com/\"/></ruleset>", "<ruleset name=\"Betram Trading (partial)\" f=\"Betram-Trading.xml\"><rule from=\"^http://images\\.bertrams\\.com/\" to=\"https://images.bertrams.com/\"/></ruleset>", "<ruleset name=\"Better Business Bureau (mismatches)\" default_off=\"mismatches\" f=\"Better-Business-Bureau-mismatches.xml\"><rule from=\"^http://(?:www\\.)?seflorida\\.bbb\\.org/\" to=\"https://seflorida.bbb.org/\"/></ruleset>", "<ruleset name=\"BBB.org\" f=\"Better-Business-Bureau.xml\"><exclusion pattern=\"^http://www\\.bbb\\.org/\\w+/business-reviews/\\w+/\\w\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.([\\w-]+)\\.bbb\\.org/\" to=\"https://$1.bbb.org/\"/><rule from=\"^http://((?:[\\w-]+|(?:hurdman|sanjose)\\.app)\\.)?bbb\\.org/\" to=\"https://$1bbb.org/\"/></ruleset>", "<ruleset name=\"BetterBills.com.au\" f=\"BetterBills.com.au.xml\"><rule from=\"^http://(?:www\\.)?betterbills\\.com\\.au/\" to=\"https://www.betterbills.com.au/\"/></ruleset>", "<ruleset name=\"BetterBills.com\" f=\"BetterBills.com.xml\"><securecookie host=\"^www\\.betterbills\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetterCGI.com\" f=\"BetterCGI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetterCrypto.org\" f=\"BetterCrypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetterFap.com\" f=\"BetterFap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Place.org\" default_off=\"failed ruleset test\" f=\"Better_Place.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Sales.se\" default_off=\"mismatched\" f=\"Better_Sales.se.xml\"><securecookie host=\"^bettersales\\.se\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bettersales\\.se/\" to=\"https://bettersales.se/\"/></ruleset>", "<ruleset name=\"Bettershopping.eu\" f=\"Bettershopping.eu.xml\"><rule from=\"^http://(?:www\\.)?bettershopping\\.eu/\" to=\"https://www.bettershopping.eu/\"/></ruleset>", "<ruleset name=\"Betts\" f=\"Betts.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beyond Security.com\" f=\"Beyond-Security.xml\"><exclusion pattern=\"^http://www\\.beyondsecurity\\.com/(?:.+\\.html)?(?:$|\\?)\"/><securecookie host=\"^(?:cloud[23]|sp-us)\\.beyondsecurity\\.com$\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?beyondsecurity\\.com/\" to=\"https://$1beyondsecurity.com/\"/></ruleset>", "<ruleset name=\"Bezeq International (partial)\" default_off=\"failed ruleset test\" f=\"Bezeq_International.xml\"><securecookie host=\"^online\\.bezeqint\\.net$\" name=\".+\"/><rule from=\"^http://online\\.bezeqint\\.net/\" to=\"https://online.bezeqint.net/\"/></ruleset>", "<ruleset name=\"Bezos Expeditions\" default_off=\"failed ruleset test\" f=\"Bezos_Expeditions.xml\"><rule from=\"^http://(?:www\\.)?bezosexpeditions\\.com/\" to=\"https://www.bezosexpeditions.com/\"/></ruleset>", "<ruleset name=\"bgentry.io\" f=\"Bgentry.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bhiab.se\" f=\"Bhiab.se.xml\"><rule from=\"^http://www\\.bhiab\\.se/\" to=\"https://www.bhiab.se/\"/><rule from=\"^http://bhiab\\.se/\" to=\"https://bhiab.se/\"/></ruleset>", "<ruleset name=\"BhodiSoft.com\" f=\"BhodiSoft.com.xml\"><securecookie host=\"^\\.bhodisoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bia2.com\" f=\"Bia2.com.xml\"><securecookie host=\"^(?:staging|www)\\.bia2\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biallo.de\" default_off=\"failed ruleset test\" f=\"Biallo.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biapy.fr\" default_off=\"failed ruleset test\" f=\"Biapy.fr.xml\"><rule from=\"^http://((?:piwik|rss|www)\\.)?biapy\\.fr/\" to=\"https://$1biapy.fr/\"/></ruleset>", "<ruleset name=\"bibbitec\" f=\"Bibbitec.xml\"><securecookie host=\"^\\.www\\.bibbitec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bible Gateway.com\" f=\"Bible_Gateway.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biciperros.org\" default_off=\"self-signed\" f=\"Biciperros.org.xml\"><securecookie host=\"^(?:www\\.)?biciperros\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?biciperros\\.org/\" to=\"https://biciperros.org/\"/></ruleset>", "<ruleset name=\"BidBubble.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BidBubble.com.xml\"><securecookie host=\"^\\.bidbubble\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BidItBob.com\" f=\"BidItBob.com.xml\"><securecookie host=\"^(?:w*\\.)?biditbob\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biddeal\" f=\"Biddeal.xml\"><securecookie host=\"^\\.(?:www\\.)?biddeal\\.com$\" name=\".+\"/><rule from=\"^http://www\\.biddeal\\.com/\" to=\"https://www.biddeal.com/\"/></ruleset>", "<ruleset name=\"bidswitch.net\" f=\"Bidswitch.net.xml\"><securecookie host=\"^\\.bidswitch\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bidtellect.com\" f=\"Bidtellect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bidz.com (partial)\" default_off=\"connection refused\" f=\"Bidz.com.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\".*\\.bidz\\.com$\" name=\".*\"/><rule from=\"^http://bidz\\.com/\" to=\"https://www.bidz.com/\"/><rule from=\"^http://(\\w+)\\.bidz\\.com/\" to=\"https://$1.bidz.com/\"/></ruleset>", "<ruleset name=\"Big Cartel (partial)\" f=\"Big-Cartel.xml\"><rule from=\"^http://cache[01]\\.bigcartel\\.com/\" to=\"https://d3m7eij7f8iwln.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Change\" f=\"Big-Change.xml\"><securecookie host=\"^\\.bigchangeuk\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"German BigBrotherAwards\" platform=\"mixedcontent\" f=\"BigBrotherAwards.de.xml\"><securecookie host=\"^www\\.bigbrotherawards\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BigCommerce\" f=\"BigCommerce.xml\"><exclusion pattern=\"^http://www\\.mybigcommerce\\.com/$\"/><securecookie host=\"^(?:account|support|www)\\.bigcommerce\\.com$\" name=\".+\"/><securecookie host=\"^www\\.interspire\\.com$\" name=\".+\"/><securecookie host=\".*\\.mybigcommerce\\.com$\" name=\".+\"/><rule from=\"^http://(?:my)?bigcommerce\\.com/\" to=\"https://www.bigcommerce.com/\"/><rule from=\"^http://(account|apps|cdn\\d*|support|www)\\.bigcommerce\\.com/\" to=\"https://$1.bigcommerce.com/\"/><rule from=\"^http://(?:www\\.)?interspire\\.com/\" to=\"https://www.interspire.com/\"/><rule from=\"^http://([\\w-]+)\\.mybigcommerce\\.com/\" to=\"https://$1.mybigcommerce.com/\"/></ruleset>", "<ruleset name=\"BigHugeLabs\" f=\"BigHugeLabs.xml\"><securecookie host=\"^\\.bighugelabs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bighugelabs\\.com/\" to=\"https://bighugelabs.com/\"/></ruleset>", "<ruleset name=\"BigV.io\" f=\"BigV.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Brother.se (partial)\" f=\"Big_Brother.se.xml\"><securecookie host=\"^\\.bigbrother\\.se$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Brother Watch.org.uk\" f=\"Big_Brother_Watch.xml\"><securecookie host=\"^(?:www)?\\.bigbrotherwatch\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bigbrotherwatch\\.org\\.uk/\" to=\"https://www.bigbrotherwatch.org.uk/\"/></ruleset>", "<ruleset name=\"Big Concerts (partial)\" f=\"Big_Concerts.xml\"><rule from=\"^http://(www\\.)?bigconcerts\\.co\\.za/(account|media/|resource/|themes/|ui/|zpimages/)\" to=\"https://$1bigconcerts.co.za/$2\"/></ruleset>", "<ruleset name=\"Big Nerd Ranch.com\" f=\"Big_Nerd_Ranch.xml\"><securecookie host=\"^www\\.bignerdranch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bigboxsave.com\" default_off=\"failed ruleset test\" f=\"Bigboxsave.xml\"><securecookie host=\"^.*\\.bigboxsave\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bigdinosaur.org\" f=\"Bigdinosaur.org.xml\"><rule from=\"^http://(?:www\\.)?bigdinosaur\\.org/\" to=\"https://www.bigdinosaur.org/\"/><rule from=\"^http://blog\\.bigdinosaur\\.org/\" to=\"https://blog.bigdinoosaur.org/\"/></ruleset>", "<ruleset name=\"Biggest Loser Club.com\" f=\"Biggest_Loser_Club.com.xml\"><securecookie host=\"^[.w]*\\.biggestloserclub\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?biggestloserclub\\.com/\" to=\"https://www.biggestloserclub.com/\"/></ruleset>", "<ruleset name=\"bigjocker.com\" default_off=\"failed ruleset test\" f=\"Bigjocker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biglobe (partial)\" f=\"Biglobe.xml\"><rule from=\"^http://api\\.sso\\.biglobe\\.ne\\.jp/\" to=\"https://api.sso.biglobe.ne.jp/\"/></ruleset>", "<ruleset name=\"bigmir.net (false MCB)\" platform=\"mixedcontent\" f=\"Bigmir.net-falsemixed.xml\"><securecookie host=\"^\\.bigmir\\.net$\" name=\".+\"/><rule from=\"^http://(antivirus|auto|cards|dnevnik|games|goroskop|info|mail|map|perevod|photo|search|sport|top)\\.bigmir\\.net/\" to=\"https://$1.bigmir.net/\"/></ruleset>", "<ruleset name=\"bigmir.net (partial)\" f=\"Bigmirnet.xml\"><exclusion pattern=\"^http://market\\.bigmir\\.net/+(?!css/|i/|/img/)\"/><rule from=\"^http://market\\.bigmir\\.net/\" to=\"https://technoportal.ua/\"/><rule from=\"^http://(id?|m|passport|s)\\.bigmir\\.net/\" to=\"https://$1.bigmir.net/\"/></ruleset>", "<ruleset name=\"Bigstock (partial)\" f=\"Bigstock.xml\"><exclusion pattern=\"^http://(?:www\\.)?bigstockphoto\\.com/(?!(?:cart|login|subscribe)(?:$|\\?|/)|css/|files/|images/|javascript/|js_translation/|serverside/login\\.php|thumbs/)\"/><securecookie host=\"^\\.bigstockimages\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bigstockimages\\.com/\" to=\"https://$1bigstockimages.com/\"/><rule from=\"^http://(?:static\\d*\\.|(www\\.))?bigstockphoto\\.com/\" to=\"https://$1bigstockphoto.com/\"/><rule from=\"^http://help\\.bigstockphoto\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Bihira.com\" f=\"Bihira.com.xml\"><securecookie host=\"^www\\.bihira\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biicode.com\" f=\"Biicode.com.xml\"><rule from=\"^http://(?:www\\.)?biicode\\.com/\" to=\"https://www.biicode.com/\"/></ruleset>", "<ruleset name=\"Bike24.com\" f=\"Bike24.com.xml\"><securecookie host=\"^\\.bike24\\.com$\" name=\".*\"/><rule from=\"^http://www\\.bike24\\.com/\" to=\"https://www.bike24.com/\"/></ruleset>", "<ruleset name=\"Bike24.de\" f=\"Bike24.de.xml\"><rule from=\"^http://(www\\.)?bike24\\.de/\" to=\"https://www.bike24.de/\"/></ruleset>", "<ruleset name=\"bikeji.com\" f=\"Bikeji.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bild.de (valid MCB)\" platform=\"mixedcontent\" f=\"Bild.de-mixed.xml\"><rule from=\"^http://email\\.bild\\.de/\" to=\"https://www.fagms.net/\"/></ruleset>", "<ruleset name=\"Bild.de (partial)\" f=\"Bild.de.xml\"><rule from=\"^http://(don|offer)\\.bild\\.de/\" to=\"https://$1.bild.de/\"/><rule from=\"^http://email\\.bild\\.de/(?!/*host/)\" to=\"https://www.fagms.net/\"/></ruleset>", "<ruleset name=\"Bilio.com (partial)\" f=\"Bilio.com.xml\"><exclusion pattern=\"^http://www\\.bilio\\.com/+(?!Content/|Global/)\"/><rule from=\"^http://bilio\\.com/\" to=\"https://www.bilio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BillDesk.com\" f=\"BillDesk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BillPay.de\" f=\"BillPay.de.xml\"><securecookie host=\"^login\\.billpay\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bill Maher.com\" default_off=\"failed ruleset test\" f=\"Bill_Maher.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billboard.com (partial)\" f=\"Billboard.com.xml\"><exclusion pattern=\"^http://www\\.billboard\\.com/+(?!files/|images/pref_images/|media/)\"/><rule from=\"^http://billboard\\.com/\" to=\"https://www.billboard.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BillettenDK\" f=\"Billetten.dk.xml\"><securecookie host=\"^www\\.billetten\\.dk\" name=\".*\"/><rule from=\"^http://(www\\.)?billetten\\.dk/\" to=\"https://www.billetten.dk/\"/></ruleset>", "<ruleset name=\"billiger.de (partial)\" f=\"Billiger.de.xml\"><securecookie host=\"^\\.billiger\\.de$\" name=\"^_#\\w+$\"/><securecookie host=\"^www\\.billiger\\.de$\" name=\"^(?:billigerderevisit|emos_jc[sv]id|emosTransmit1)$\"/><rule from=\"^http://(www\\.)?billiger\\.de/(combine/|favicon\\.ico|img/|vnt_gc/img/|js/|stats/graphite\\.gif)\" to=\"https://$1billiger.de/$2\"/><rule from=\"^http://api-img\\.billiger\\.de/\" to=\"https://api-img.billiger.de/\"/></ruleset>", "<ruleset name=\"BillionDigital.com (partial)\" f=\"BillionDigital.com.xml\"><securecookie host=\"^(?:account\\.)?billionphotos\\.com$\" name=\".+\"/><rule from=\"^http://www\\.billiondigital\\.com/\" to=\"https://billiondigital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billiongraves.com\" f=\"Billiongraves.com.xml\"><exclusion pattern=\"^http://(blog|store|community)\\.billiongraves\\.com\"/><securecookie host=\"^(www\\.|\\w{2}\\.)?billiongraves\\.com$\" name=\"^(?!bguid|bgue).+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billund.dk\" f=\"Billund.dk.xml\"><securecookie host=\"^\\.?billund\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billy Creative\" default_off=\"mismatch\" f=\"Billy_Creative.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bin-Store.com\" f=\"Bin-Store.com.xml\"><securecookie host=\"^\\.bin-store\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(secure\\.)?bin-store\\.com/\" to=\"https://$1$2bin-store.com/\"/></ruleset>", "<ruleset name=\"BinRev\" default_off=\"Invalid Certificate\" f=\"BinRev.xml\"><rule from=\"^http://(?:www\\.)?binrev\\.com/\" to=\"https://binrev.com/\"/></ruleset>", "<ruleset name=\"BinSearch\" f=\"BinSearch.xml\"><rule from=\"^http://(www\\.)?binsearch\\.(?:info|net)/\" to=\"https://$1binsearch.info/\"/></ruleset>", "<ruleset name=\"Binary Biz\" f=\"Binary-Biz.xml\"><securecookie host=\"^www\\.(?:binarybiz|totalrecall)\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?binarybiz\\.com/\" to=\"https://$1binarybiz.com/\"/><rule from=\"^http://(?:www\\.)?totalrecall\\.com/\" to=\"https://www.totalrecall.com/\"/></ruleset>", "<ruleset name=\"BinaryTurf.com\" f=\"BinaryTurf.xml\"><securecookie host=\"^(?:.+\\.)?binaryturf\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binary Defense.com\" f=\"Binary_Defense.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binbox.io (partial)\" f=\"Binbox.io.xml\"><securecookie host=\"^binbox\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binero.se\" platform=\"mixedcontent\" f=\"Binero.se.xml\"><rule from=\"^http://binero\\.se/\" to=\"https://www.binero.se/\"/><rule from=\"^http://support\\.binero\\.se/\" to=\"https://support.binero.se/\"/><rule from=\"^http://order\\.binero\\.se/\" to=\"https://order.binero.se/\"/><rule from=\"^http://www\\.binero\\.se/\" to=\"https://www.binero.se/\"/></ruleset>", "<ruleset name=\"Bing.net\" default_off=\"Breaks startpage image search\" f=\"Bing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bing.com\" f=\"Bing.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bing Places.com\" f=\"Bing_Places.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bingplaces\\.com/\" to=\"https://www.bingplaces.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bintray.com (partial)\" f=\"Bintray.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.bintray\\.com/\" to=\"https://bintray.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioInfo.pl\" default_off=\"expired, mismatched, self-signed\" f=\"BioInfo.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioInfoBank.com\" default_off=\"mismatched, self-signed\" f=\"BioInfoBank.com.xml\"><rule from=\"^http://(?:www\\.)?bioinfobank\\.com/\" to=\"https://bioinfo.pl/\"/></ruleset>", "<ruleset name=\"BioMed Central (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BioMed-Central.xml\"><securecookie host=\"^(?:.*\\.)?biomedcentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:w\\d\\d\\.|(www\\.))?biomedcentral\\.com/\" to=\"https://$1biomedcentral.com/\"/><rule from=\"^http://oas\\.biomedcentral\\.com/\" to=\"https://oasc-eu1.247realmedia.com/\"/></ruleset>", "<ruleset name=\"BioShock Infinite\" default_off=\"failed ruleset test\" f=\"BioShock_Infinite.xml\"><securecookie host=\"^www\\.bioshockinfinite\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?finkmanufacturing\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bioshockinfinite\\.com/\" to=\"https://$1bioshockinfinite.com/\"/><rule from=\"^http://(?:www\\.)?finkmanufacturing\\.com/+([^?/]*).*\" to=\"https://www.bioshockinfinite.com/faq$1\"/></ruleset>", "<ruleset name=\"BioVendor.cz\" f=\"BioVendor.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioWare (partial)\" default_off=\"failed ruleset test\" f=\"BioWare.xml\"><securecookie host=\"^\\.biowarestore\\.com$\" name=\".+\"/><rule from=\"^http://na\\.llnet\\.bioware\\.cdn\\.ea\\.com/u/f/eagames/bioware/social/\" to=\"https://social.bioware.com/\"/><rule from=\"^http://social\\.bioware\\.com/(images/|packer\\.php|templates/)\" to=\"https://social.bioware.com/$1\"/><rule from=\"^http://(?:www\\.)?biowarestore\\.com/\" to=\"https://biowarestore.com/\"/></ruleset>", "<ruleset name=\"BioXFEL.org\" f=\"BioXFEL.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bioconductor.org\" f=\"Bioconductor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"biofitt.com\" f=\"Biofitt.com.xml\"><securecookie host=\"^(?:www)?\\.biofitt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bios-Mods.com\" f=\"Bios-Mods.com.xml\"><securecookie host=\"^(?:www\\.)?bios-mods\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biostars.org\" f=\"Biostars.org.xml\"><securecookie host=\"^www\\.biostars\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biotrim Labs.com\" default_off=\"failed ruleset test\" f=\"Biotrim_Labs.com.xml\"><securecookie host=\"^(?:w*\\.)?biotrimlabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bip.IO\" f=\"Bip.IO.xml\"><securecookie host=\"^(?:www\\.)?bip\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bircko.com\" f=\"Bircko.com.xml\"><securecookie host=\"^(?:w*\\.)?bircko\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birds-Are-Nice.me\" default_off=\"missing certificate chain\" f=\"Birds-Are-Nice.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birthday in a Box (partial)\" f=\"Birthday_in_a_Box.xml\"><rule from=\"^http://(?:www\\.)?birthdayinabox\\.com/(csc_inc|css|images)\" to=\"https://www.birthdayinabox.com/$1/\"/></ruleset>", "<ruleset name=\"Bisente.com\" f=\"Bisente.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bishop Fox.com\" f=\"Bishop_Fox.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bishopfox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bishop Interactive (problematic)\" default_off=\"mismatches\" f=\"Bishop_Interactive-mismatches.xml\"><securecookie host=\"^riglogix\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?riglogix\\.com/\" to=\"https://riglogix.com/\"/><rule from=\"^http://(comptracker|noblewin)\\.rigzone\\.com/\" to=\"https://$1.rigzone.com/\"/></ruleset>", "<ruleset name=\"Bishop Interactive\" f=\"Bishop_Interactive.xml\"><securecookie host=\"^(?:.+\\.)?bishopi\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?bishopi\\.com/\" to=\"https://$1bishopi.com/\"/><rule from=\"^http://(media\\.|www\\.)?bishopinteractive\\.com/\" to=\"https://$1bishopi.com/\"/><rule from=\"^http://cdn\\.bishopinteractive\\.com/\" to=\"https://cdn.bishopinteractive.com/\"/></ruleset>", "<ruleset name=\"Bisnow.com\" f=\"Bisnow.com.xml\"><securecookie host=\"^www\\.bisnow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit-Sentinel.com\" f=\"Bit-Sentinel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bit.ly vanity domains\" default_off=\"Breaks many redirectors\" f=\"Bit.ly_vanity_domains.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit2c.co.il\" f=\"Bit2c.co.il.xml\"><securecookie host=\"^(?:www\\.)?bit2c\\.co\\.il$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit9.com\" f=\"Bit9.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBalloon.com\" f=\"BitBalloon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBay.net\" f=\"BitBay.net.xml\"><securecookie host=\"^\\.?bitbay\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBucket.org (mismatches)\" default_off=\"mismatched\" f=\"BitBucket-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBucket.org (partial)\" f=\"BitBucket.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.bitbucket\\.org/\" to=\"https://bitbucket.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCalm.com\" f=\"BitCalm.com.xml\"><securecookie host=\"^bitcalm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCard.org\" f=\"BitCard.xml\"><securecookie host=\"^(?:www\\.)?bitcard\\.org$\" name=\"c\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCasino.io\" f=\"BitCasino.io.xml\"><securecookie host=\"^\\.?bitcasino\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.org\" f=\"BitCoin.xml\"><rule from=\"^http://forum\\.bitcoin\\.org/\" to=\"https://bitcointalk.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitFlyer.jp (partial)\" f=\"BitFlyer.jp.xml\"><securecookie host=\"^(?:.*\\.)?bitflyer\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitGravity (partial)\" f=\"BitGravity.xml\"><securecookie host=\"^dashboard\\.bitgravity\\.com$\" name=\".+\"/><rule from=\"^http://dashboard\\.bitgravity\\.com/\" to=\"https://dashboard.bitgravity.com/\"/></ruleset>", "<ruleset name=\"BitInstant (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BitInstant.xml\"><exclusion pattern=\"^http://blog\\.bitinstant\\.com/(?!contributor/|display/|layout/|storage/|universal/)\"/><securecookie host=\"^\\.bitinstant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitLendingClub.com (partial)\" f=\"BitLendingClub.com.xml\"><securecookie host=\"^(?:\\.|blog\\.|www\\.)?bitlendingclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMEX.com\" f=\"BitMEX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMarket.pl\" f=\"BitMarket.pl.xml\"><securecookie host=\"^\\.bitmarket\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMinter.com\" f=\"BitMinter.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMissile (mismatches)\" default_off=\"mismatch\" f=\"BitMissile-mismatches.xml\"><rule from=\"^http://(mirror|www)\\.bitmissile\\.com/\" to=\"https://$1.bitmissile.com/\"/></ruleset>", "<ruleset name=\"BitMissile (partial)\" default_off=\"failed ruleset test\" f=\"BitMissile.xml\"><securecookie host=\"^.*\\.bitmissile\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitNZ.com\" f=\"BitNZ.com.xml\"><securecookie host=\"^(?:www\\.)?bitnz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitPay.com\" f=\"BitPay.xml\"><securecookie host=\"^\\.?bitpay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitQuick.me\" default_off=\"missing certificate chain\" f=\"BitQuick.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitQuick\" f=\"BitQuick.xml\"><securecookie host=\"^(?:www)?\\.bitquick\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitRock (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"BitRock-mismatches.xml\"><rule from=\"^http://(?:www\\.)?bitnami\\.org/(favicon\\.ico|images/|stylesheets/)\" to=\"https://bitnami.org/$1\"/><rule from=\"^http://helpdesk\\.bitnami\\.org/(generated|system)/\" to=\"https://helpdesk.bitnami.org/$1/\"/></ruleset>", "<ruleset name=\"BitRock (partial)\" default_off=\"failed ruleset test\" f=\"BitRock.xml\"><securecookie host=\"^(?:app\\.)?bitnamihosting\\.com$\" name=\".*\"/><rule from=\"^http://www\\.bitnamihosting\\.com/\" to=\"https://app.bitnamihosting.com/\"/><rule from=\"^http://(app\\.)?bitnamihosting\\.com/\" to=\"https://$1bitnamihosting.com/\"/></ruleset>", "<ruleset name=\"BitShares.org (partial)\" f=\"BitShares.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitSight Tech.com\" f=\"BitSight_Tech.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitTorrent (partial)\" f=\"BitTorrent.xml\"><exclusion pattern=\"^http://live\\.bittorrent\\.com/(?!create|css/|img/|js/|login|styles/)\"/><securecookie host=\"^forum\\.bittorrent\\.com$\" name=\".+\"/><rule from=\"^http://(forum|live|remote|torque)\\.bittorrent\\.com/\" to=\"https://$1.bittorrent.com/\"/></ruleset>", "<ruleset name=\"BitVC.com\" f=\"BitVC.com.xml\"><securecookie host=\"^\\.?www\\.bitvc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitVisor.org\" default_off=\"failed ruleset test\" f=\"BitVisor.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitX.co\" f=\"BitX.co.xml\"><securecookie host=\"^\\.?bitx\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitYes.com\" f=\"BitYes.com.xml\"><securecookie host=\"^\\.bityes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit Stampede.com\" default_off=\"failed ruleset test\" f=\"Bit_Stampede.com.xml\"><securecookie host=\"^(?:www\\.)?bitstampede\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitaddress.org\" f=\"Bitaddress.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitch Magazine.org (partial)\" f=\"Bitch_Magazine.org.xml\"><securecookie host=\"^\\.bitchmagazine\\.org$\" name=\".+\"/><rule from=\"^http://www\\.bitchmagazine\\.org/\" to=\"https://bitchmagazine.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Börse\" default_off=\"connection refused\" f=\"Bitcoin-Borse.xml\"><securecookie host=\"^mybitcointrade\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mybitcointrade\\.com/\" to=\"https://mybitcointrade.com/\"/></ruleset>", "<ruleset name=\"Bitcoin-Central.net\" default_off=\"expired\" f=\"Bitcoin-Central.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin-Contact.org\" default_off=\"expired\" platform=\"cacert\" f=\"Bitcoin-Contact.org.xml\"><securecookie host=\"^bitcoin-contact\\.org$\" name=\".+\"/><rule from=\"^http://www\\.bitcoin-contact\\.org/\" to=\"https://bitcoin-contact.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Talk.org\" f=\"Bitcoin-Forum.xml\"><securecookie host=\"^bitcointalk\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitVPS.com\" f=\"Bitcoin-VPS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Wiki\" default_off=\"failed ruleset test\" f=\"Bitcoin-Wiki.xml\"><securecookie host=\".*\\.bitcoin\\.it$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin-otc.com\" f=\"Bitcoin-otc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.Co.th (partial)\" f=\"Bitcoin.Co.th.xml\"><securecookie host=\"^bitcoin\\.co\\.th$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.co.id\" f=\"Bitcoin.co.id.xml\"><securecookie host=\"^(?:newsletter|www)?\\.bitcoin\\.co\\.id$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.com\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Bitcoin.com.xml\"><securecookie host=\"^(?:www)?\\.bitcoin\\.com$\" name=\".+\"/><rule from=\"^http://bitcoin\\.com/\" to=\"https://www.bitcoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.de\" f=\"Bitcoin.de.xml\"><securecookie host=\"^.*\\.bitcoin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.pl (partial)\" f=\"Bitcoin.pl.xml\"><exclusion pattern=\"^http://bitcoin\\.pl/(?!cache/|components/|images/|login(?:$|[?/])|media/|modules/|templates/)\"/><securecookie host=\"^\\.forum\\.bitcoin\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinAverage.com\" f=\"BitcoinAverage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinPool.com\" default_off=\"expired\" f=\"BitcoinPool.xml\"><securecookie host=\"^(?:.*\\.)?bitcoinpool\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bitcoinpool\\.com/\" to=\"https://bitcoinpool.com/\"/></ruleset>", "<ruleset name=\"BitcoinShop.US\" default_off=\"mismatched\" f=\"BitcoinShop.US.xml\"><securecookie host=\"^\\.(?:www\\.)?bitcoinshop\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinStats.com (false MCB)\" platform=\"mixedcontent\" f=\"BitcoinStats.com-falsemixed.xml\"><securecookie host=\"^\\.bitcoinstats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinStats.com (partial)\" f=\"BitcoinStats.com.xml\"><securecookie host=\"^\\.bitcoinstats\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinStore.com\" default_off=\"failed ruleset test\" f=\"BitcoinStore.com.xml\"><securecookie host=\"^\\.www\\.bitcoinstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinWisdom.com\" f=\"BitcoinWisdom.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bitcoinwisdom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinXT.software\" f=\"BitcoinXT.software.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Armory.com\" f=\"Bitcoin_Armory.com.xml\"><securecookie host=\"^\\.bitcoinarmory\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Charts.com (CAcert)\" platform=\"cacert\" f=\"Bitcoin_Charts.com-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Charts.com (partial)\" f=\"Bitcoin_Charts.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Forum.com\" f=\"Bitcoin_Forum.com.xml\"><securecookie host=\"^(?:www\\.)?bitcoinforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Foundation.org\" f=\"Bitcoin_Foundation.org.xml\"><securecookie host=\"^(?:members)?\\.bitcoinfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Magazine.com\" f=\"Bitcoin_Magazine.com.xml\"><securecookie host=\"^\\.?bitcoinmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Plus\" default_off=\"expired\" f=\"Bitcoin_Plus.xml\"><rule from=\"^http://(?:www\\.)?bitcoinplus\\.com/\" to=\"https://bitcoinplus.com/\"/></ruleset>", "<ruleset name=\"bitcoinapi.de\" f=\"Bitcoinapi.de.xml\"><securecookie host=\"^\\.bitcoinapi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoinity.org\" f=\"Bitcoinity.org.xml\"><securecookie host=\"^(?:(?:data|static|www)\\.)?bitcoinity\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoins il.co.il (false MCB)\" platform=\"mixedcontent\" f=\"Bitcoinsil.co.il.xml\"><securecookie host=\"^\\.bitcoinsil\\.co\\.il$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcointoYou.com\" f=\"BitcointoYou.com.xml\"><securecookie host=\"^(?:broker)?\\.bitcointoyou\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcurex.com\" f=\"Bitcurex.com.xml\"><securecookie host=\"^(?:eur|pln)?\\.bitcurex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitdefender.com (partial)\" f=\"Bitdefender.com.xml\"><securecookie host=\"^\\.bitdefender\\.com$\" name=\"^__qca$\"/><rule from=\"^http://my\\.bitdefender\\.com/\" to=\"https://my.bitdefender.com/\"/></ruleset>", "<ruleset name=\"Bitdeli.com\" f=\"Bitdeli.com.xml\"><securecookie host=\"^\\.bitdeli\\.com$\" name=\".+\"/><rule from=\"^http://bitdeli\\.com/\" to=\"https://bitdeli.com/\"/></ruleset>", "<ruleset name=\"bitdrift (partial)\" default_off=\"mismatch\" f=\"Bitdrift.xml\"><rule from=\"^http://(?:www\\.)?bitdrift\\.org/(fonts/|tile\\.jpg)\" to=\"https://www.bitdrift.org/~bitdrift/$1\"/></ruleset>", "<ruleset name=\"Bite.lt\" f=\"Bite.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biteasy.com\" f=\"Biteasy.com.xml\"><securecookie host=\"^\\.biteasy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitex.la\" f=\"Bitex.la.xml\"><securecookie host=\"^\\.?bitex\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitfetch\" default_off=\"mismatch\" f=\"Bitfetch.xml\"><securecookie host=\"^(?:www\\.)?bitfetch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitfinex.com\" f=\"Bitfinex.com.xml\"><securecookie host=\"^\\.bitfinex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitGamer\" default_off=\"failed ruleset test\" f=\"Bitgamer.xml\"><rule from=\"^http://(?:www\\.)?bitgamer\\.su/\" to=\"https://bitgamer.su/\"/><rule from=\"^http://(?:www\\.)?bitgamer\\.com/\" to=\"https://bitgamer.su/\"/></ruleset>", "<ruleset name=\"Bitin.io\" f=\"Bitin.io.xml\"><securecookie host=\"^\\.bitin\\.io$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitinvest.com.br (partial)\" f=\"Bitinvest.com.br.xml\"><securecookie host=\"^www\\.bitinvest\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitkonan.com\" f=\"Bitkonan.com.xml\"><rule from=\"^http://www\\.bitkonan\\.com/\" to=\"https://bitkonan.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitlove\" f=\"Bitlove.xml\"><rule from=\"^http://(?:t\\.|(www\\.))?bitlove\\.org/\" to=\"https://$1bitlove.org/\"/></ruleset>", "<ruleset name=\"Bitly.com (partial)\" f=\"Bitly.com.xml\"><securecookie host=\"^bitly\\.com$\" name=\".+\"/><rule from=\"^http://www\\.bitly\\.com/\" to=\"https://bitly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bit.ly\" f=\"Bitly.xml\"><securecookie host=\"^(?:.*\\.)?bit\\.ly$\" name=\".+\"/><rule from=\"^http://s\\.bit\\.ly/\" to=\"https://s3.amazonaws.com/s.bit.ly/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmain.com (partial)\" f=\"Bitmain.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmain Tech.com\" f=\"Bitmain_Tech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmask.net (partial)\" f=\"Bitmask.net.xml\"><exclusion pattern=\"^http://deb\\.bitmask\\.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmazk.com\" f=\"Bitmazk.com.xml\"><securecookie host=\"^bitmazk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitme.com\" f=\"Bitme.com.xml\"><securecookie host=\"^\\.bitme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmessage.com\" f=\"Bitmessage.xml\"><securecookie host=\"^(?:www\\.)?bitmessage\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmit\" default_off=\"failed ruleset test\" f=\"Bitmit.xml\"><securecookie host=\"\\.bitmit\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmovin.com\" f=\"Bitmovin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitnami.com (partial)\" f=\"Bitnami.com.xml\"><securecookie host=\"^(?:community\\.|google\\.|wiki\\.)?bitnami\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitnik.org\" f=\"Bitnik.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitnodes.io (partial)\" f=\"Bitnodes.io.xml\"><rule from=\"^http://getaddr\\.bitnodes\\.io/\" to=\"https://getaddr.bitnodes.io/\"/></ruleset>", "<ruleset name=\"Bitrig\" f=\"Bitrig.xml\"><securecookie host=\"^(?:www\\.)?bitrig\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bits.media (partial)\" f=\"Bits.media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitsapphire.com\" f=\"Bitsapphire.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitsharestalk.org (partial)\" f=\"Bitsharestalk.org.xml\"><securecookie host=\"^bitsharestalk\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitso.com\" f=\"Bitso.com.xml\"><securecookie host=\"^\\.bitso\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitsontherun.com (partial)\" f=\"Bitsontherun.com.xml\"><rule from=\"^http://(content|dashboard)\\.bitsontherun\\.com/\" to=\"https://$1.bitsontherun.com/\"/></ruleset>", "<ruleset name=\"Bitsquare.io\" f=\"Bitsquare.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitstamp.net\" f=\"Bitstamp.net.xml\"><securecookie host=\"^(?:\\w\\w|www)?\\.bitstamp\\.net$\" name=\".+\"/><rule from=\"^http://(\\w\\w\\.|www\\.)?bitstamp\\.net/\" to=\"https://$1bitstamp.net/\"/></ruleset>", "<ruleset name=\"Bittiraha.fi\" f=\"Bittiraha.fi.xml\"><securecookie host=\"^\\.bittiraha\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bittit.info\" f=\"Bittit.info.xml\"><rule from=\"^http://bittit\\.info/\" to=\"https://bittit.info/\"/></ruleset>", "<ruleset name=\"bittorrentdotorg\" default_off=\"certificate mismatch\" f=\"Bittorrent.org.xml\"><rule from=\"^http://(?:www\\.)?bittorrent\\.org/\" to=\"https://www.bittorrent.org/\"/></ruleset>", "<ruleset name=\"Bittrex.com\" f=\"Bittrex.com.xml\"><securecookie host=\"^\\.bittrex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bittylicious.com\" f=\"Bittylicious.com.xml\"><securecookie host=\"^\\.bittylicious\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitwig.com\" f=\"Bitwig.com.xml\"><securecookie host=\"^(?:www\\.)?bitwig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bivol\" f=\"Bivol.xml\"><securecookie host=\"^(?:www\\.)?bivol\\.bg$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BizLand.com\" f=\"BizLand.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizo.com (mismatches)\" default_off=\"mismatch\" f=\"Bizo-mismatches.xml\"><rule from=\"^http://blog\\.bizo\\.com/\" to=\"https://blog.bizo.com/\"/></ruleset>", "<ruleset name=\"Bizo.com\" f=\"Bizo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizo graphics.com\" f=\"Bizo_graphics.com.xml\"><securecookie host=\"^\\.bizographics\\.com$\" name=\".+\"/><rule from=\"^http://js\\.bizographics\\.com/\" to=\"https://sjs.bizographics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizrate.com (partial)\" f=\"Bizrate.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_data|br|cnx_sessionid|p13n_id|rng|roi_cookie|trafficSourceDebugParam)$\"/><rule from=\"^http://about\\.bizrate\\.com/\" to=\"https://aboutbizrate.blazonco.com/\"/><rule from=\"^http://file\\.bizrate\\.com/\" to=\"https://images.bizrate.com/\"/><rule from=\"^http://\\w+\\.bizrate-images\\.com/\" to=\"https://images.bizrate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizshark\" f=\"Bizshark.xml\"><securecookie host=\"^(?:www)?\\.bizshark\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlaBlaCar.fr\" f=\"BlaBlaCar.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackArch.org\" default_off=\"self-signed\" f=\"BlackArch.org.xml\"><rule from=\"^http://www\\.blackarch\\.org/\" to=\"https://blackarch.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackHat.com (partial)\" f=\"BlackHat.xml\"><securecookie host=\"^\\.blackhat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blackhat\\.com/\" to=\"https://www.blackhat.com/\"/></ruleset>", "<ruleset name=\"BlackMesh.com\" default_off=\"failed ruleset test\" f=\"BlackMesh.com.xml\"><securecookie host=\"^(?:mail|portal|webmail|www)\\.blackmesh\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blackmesh\\.com/\" to=\"https://www.blackmesh.com/\"/><rule from=\"^http://mail\\.blackmesh\\.com/\" to=\"https://mail.blackmesh.com/zimbra/\"/><rule from=\"^http://(autodiscover|portal|webmail)\\.blackmesh\\.com/\" to=\"https://$1.blackmesh.com/\"/></ruleset>", "<ruleset name=\"BlackPearl PDM.com\" f=\"BlackPearl_PDM.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackSuit IT.com\" default_off=\"failed ruleset test\" f=\"BlackSuit_IT.com.xml\"><securecookie host=\"^\\.blacksuitit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackTonic.com (partial)\" f=\"BlackTonic.com.xml\"><rule from=\"^http://(www\\.)?blacktonic\\.com/si(gnup(?:$|\\?|/)|tes/)\" to=\"https://$1blacktonic.com/si$2\"/></ruleset>", "<ruleset name=\"blackVPN\" f=\"BlackVPN.xml\"><securecookie host=\"^\\.blackvpn\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?blackvpn\\.com/\" to=\"https://$1blackvpn.com/\"/><rule from=\"^http://news\\.blackvpn\\.com/(?=favicon\\.ico|stylesheets/)\" to=\"https://www.twylah.com/\"/></ruleset>", "<ruleset name=\"BlackZNC.net (partial)\" f=\"BlackZNC.net.xml\"><securecookie host=\"^\\.blackznc\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Box.co.uk\" f=\"Black_Box.co.uk.xml\"><securecookie host=\"^www\\.blackbox\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blackbox\\.co\\.uk/\" to=\"https://www.blackbox.co.uk/\"/></ruleset>", "<ruleset name=\"Black Duck Software.com (partial)\" f=\"Black_Duck_Software.com.xml\"><exclusion pattern=\"http://osdelivers\\.blackducksoftware\\.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?blackducksoftware\\.com/\" to=\"https://www.blackducksoftware.com/\"/><rule from=\"^http://(dev|osdelivers|stg)\\.blackducksoftware\\.com/\" to=\"https://$1.blackducksoftware.com/\"/></ruleset>", "<ruleset name=\"Black Iron Beast.com\" f=\"Black_Iron_Beast.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Lotus\" f=\"Black_Lotus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Phone.ch\" f=\"Black_Phone.ch.xml\"><securecookie host=\"^(?:store\\.|www\\.)?blackphone\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackbaud.com (partial)\" f=\"Blackbaud.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackberry.com (partial)\" f=\"Blackberry.xml\"><exclusion pattern=\"^http://(?:www\\.)?blackberry\\.com/(?!(?:SRPAddressLookup|beta|businessbeta|training)/?$|jira(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^s_\\w\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://developerforums\\.blackberry\\.com/[^?]*\" to=\"https://supportforums.blackberry.com/t5/Developer-Support-Forums/ct-p/blackberrydev\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackboard.com (partial)\" f=\"Blackboard.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackfire.io\" f=\"Blackfire.io.xml\"><securecookie host=\"^(www\\.)?blackfire\\.io\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackfoot.co.uk\" f=\"Blackfoot.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blacknight Internet Solutions (partial)\" f=\"Blacknight-Internet-Solutions.xml\"><securecookie host=\"^.*\\.blacknight\\.com$\" name=\".*\"/><rule from=\"^http://((?:altmail|cp|wiki|www)\\.)?blacknight\\.com/\" to=\"https://$1blacknight.com/\"/></ruleset>", "<ruleset name=\"Blackout Congress.org\" f=\"Blackout_Congress.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackpool.gov.uk (partial)\" f=\"Blackpool.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blah.im\" f=\"Blah.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlameStella\" default_off=\"failed ruleset test\" f=\"BlameStella.xml\"><securecookie host=\"^(?:www\\.)?blamestella\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?blamestella\\.com/\" to=\"https://www.blamestella.com/\"/></ruleset>", "<ruleset name=\"Blank Slate.io\" default_off=\"missing certificate chain\" f=\"Blank_Slate.io.xml\"><securecookie host=\"^blankslate\\.io$\" name=\".+\"/><rule from=\"^http://www\\.blankslate\\.io/\" to=\"https://blankslate.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blau.de\" f=\"Blau.de.xml\"><securecookie host=\"^(?:.+\\.)?blau\\.de$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?blau\\.de/\" to=\"https://$1blau.de/\"/></ruleset>", "<ruleset name=\"blaze.com (partial)\" f=\"Blaze.com.xml\"><rule from=\"^http://(assets|downloads|platform|secure)\\.blaze\\.com/\" to=\"https://$1.blaze.com/\"/></ruleset>", "<ruleset name=\"Blazeti.me\" f=\"Blazeti.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blazing Thyme\" default_off=\"failed ruleset test\" f=\"Blazing-Thyme.xml\"><securecookie host=\"^(?:www\\.)?blazingthyme\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blazonco.com\" f=\"Blazonco.com.xml\"><securecookie host=\"^(?:.*\\.)?blazonco\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?blazonco\\.com/\" to=\"https://$1blazonco.com/\"/></ruleset>", "<ruleset name=\"Bleep.com\" f=\"Bleep.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blekko\" f=\"Blekko.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blender.org\" f=\"Blender.org.xml\"><rule from=\"^http://blender\\.org/\" to=\"https://www.blender.org/\"/><rule from=\"^http://www\\.developer\\.blender\\.org/\" to=\"https://developer.blender.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blendle\" f=\"Blendle.xml\"><exclusion pattern=\"^http://blog.blendle\\.nl/\"/><securecookie host=\"^\\.?blendle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blesk.sk (partial)\" default_off=\"failed ruleset test\" f=\"Blesk.sk.xml\"><rule from=\"^http://((?:horoskopy|img|isport|pocasi|prozeny|tv|tvprogram|wiki|www)\\.)?blesk\\.sk/\" to=\"https://$1blesk.sk/\"/></ruleset>", "<ruleset name=\"Blesta.com\" f=\"Blesta.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bleutrade.com\" f=\"Bleutrade.com.xml\"><securecookie host=\"^\\.bleutrade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blicko.com (partial)\" default_off=\"expired\" f=\"Blicko.com.xml\"><exclusion pattern=\"^http://(?:cdn|www)\\.blicko\\.com/+(?![Cc]ontent/|favicon\\.ico)\"/><rule from=\"^http://cdn\\.blicko\\.com/\" to=\"https://www.blicko.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlimpMe.com\" default_off=\"mismatched\" f=\"BlimpMe.com.xml\"><securecookie host=\"^blimpme\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blimpme\\.com/\" to=\"https://blimpme.com/\"/></ruleset>", "<ruleset name=\"Blinddesign.nl\" f=\"Blinddesign.nl.xml\"><securecookie host=\"^\\.blinddesign\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blink-182 (partial)\" default_off=\"connection refused\" f=\"Blink-182.xml\"><rule from=\"^http://(?:www\\.)?blink-182\\.com/(_?css/|favicon\\.ico)\" to=\"https://modlife.com/$1\"/></ruleset>", "<ruleset name=\"blinkeye.ch\" default_off=\"self-signed\" f=\"Blinkeye.ch.xml\"><securecookie host=\"^(?:.*\\.)?blinkeye\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?blinkeye\\.ch/\" to=\"https://blinkeye.ch/dokuwiki/doku.php\"/></ruleset>", "<ruleset name=\"Blinksale.com\" f=\"Blinksale.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blinktrade.com (partial)\" f=\"Blinktrade.com.xml\"><securecookie host=\"^\\.blinktrade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blip.tv (mixed content)\" platform=\"mixedcontent\" f=\"Blip.xml\"><securecookie host=\"^(?:.*\\.)?blip\\.tv$\" name=\".*\"/><rule from=\"^http://a\\.blip\\.tv/\" to=\"https://as.blip.tv/\"/><rule from=\"^https?://\\d\\.i\\.blip\\.tv/\" to=\"https://i.blip.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blipp.com\" f=\"Blipp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bloadr.com\" default_off=\"mismatched\" f=\"Bloadr.com.xml\"><securecookie host=\"^(?:www\\.)?bloadr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockBuster UK\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BlockBuster.xml\"><rule from=\"^http://(?:www\\.)?blockbuster\\.co\\.uk/\" to=\"https://www.blockbuster.co.uk/\"/></ruleset>", "<ruleset name=\"BlockExplorer.com\" f=\"BlockExplorer.com.xml\"><securecookie host=\"^\\.blockexplorer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockExplorer.nu\" f=\"BlockExplorer.nu.xml\"><securecookie host=\"^\\.blockexplorer\\.nu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockScript\" f=\"BlockScript.xml\"><securecookie host=\"^www\\.blockscript\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?blockscript\\.com/\" to=\"https://www.blockscript.com/\"/></ruleset>", "<ruleset name=\"BlockTrail.com\" f=\"BlockTrail.com.xml\"><securecookie host=\"^\\.blocktrail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Metrics.com\" default_off=\"shows another domain\" f=\"Block_Metrics.xml\"><securecookie host=\"^(?:www\\.)?blockmetrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.com\" default_off=\"failed ruleset test\" f=\"Block_Together.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.org\" f=\"Block_Together.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockchain.info\" default_off=\"failed ruleset test\" f=\"Blockchain.info.xml\"><securecookie host=\"^(?:markets)?\\.blockchain\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockchainbdgpzk.onion\" platform=\"mixedcontent\" f=\"Blockchainbdgpzk.onion.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blocked.org.uk\" f=\"Blocked.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blocket.com\" f=\"Blocket.com.xml\"><rule from=\"^http://blocket\\.com/\" to=\"https://www.blocket.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blocket.se (partial)\" f=\"Blocket.se.xml\"><exclusion pattern=\"^http://www\\.blocket\\.se/+(?!(?:bostad|konto|support)(?:$|[?/])|css/|img/|static/)\"/><securecookie host=\"^jobb\\.blocket\\.se$\" name=\".+\"/><rule from=\"^http://blocket\\.se/\" to=\"https://www.blocket.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockets Annonswebb.se\" f=\"Blockets_Annonswebb.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockitPocket.com\" f=\"BlockitPocket.com.xml\"><securecookie host=\"^www\\.blockitpocket\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blockitpocket\\.com/\" to=\"https://www.blockitpocket.com/\"/></ruleset>", "<ruleset name=\"Blockr.io\" f=\"Blockr.io.xml\"><securecookie host=\"^\\.blockr\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockspring.com\" f=\"Blockspring.com.xml\"><securecookie host=\"^(?:www)?\\.blockspring\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockstream.com\" f=\"Blockstream.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogCatalog\" default_off=\"failed ruleset test\" f=\"BlogCatalog.xml\"><securecookie host=\"^(?:www\\.)?blogcatalog\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?blogcatalog\\.com/\" to=\"https://$1blogcatalog.com/\"/><rule from=\"^http://stats\\.blogcatalog\\.com/\" to=\"https://win.staticstuff.net/\"/></ruleset>", "<ruleset name=\"BlogGeek.me\" f=\"BlogGeek.me.xml\"><securecookie host=\"^\\.bloggeek\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogHer.com (partial)\" f=\"BlogHer.com.xml\"><exclusion pattern=\"^http://www\\.blogher\\.com/+(?!files/|(?:login|sheknows_connect/init)(?:$|[?/])|sites/)\"/><rule from=\"^http://blogher\\.com/\" to=\"https://www.blogher.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogTalkRadio (partial)\" f=\"BlogTalkRadio.xml\"><exclusion pattern=\"^http://(?:www\\.)?blogtalkradio\\.com/+(?![cC]ontent/|favicon\\.ico|img/|login\\.aspx)\"/><securecookie host=\"^secure\\.blogtalkradio\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?blogtalkradio\\.com/\" to=\"https://secure.blogtalkradio.com/\"/></ruleset>", "<ruleset name=\"Blog Automobile\" f=\"Blog_Automobile.xml\"><securecookie host=\"^(?:www)?\\.blogautomobile\\.fr$\" name=\".+\"/><rule from=\"^http://(cdn2?\\.|www\\.)?blogautomobile\\.fr/\" to=\"https://$1blogautomobile.fr/\"/></ruleset>", "<ruleset name=\"Blog Top Sites.com\" f=\"Blog_Top_Sites.xml\"><securecookie host=\"^\\.blogtopsites\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blogg.se (partial)\" f=\"Blogg.se.xml\"><exclusion pattern=\"^http://(?:annonsera|info)\\.blogg\\.se/+(?!favicon\\.ico|static/)\"/><rule from=\"^http://((?:annonsera|faq|info|support|www)\\.)?blogg\\.se/\" to=\"https://$1blogg.se/\"/></ruleset>", "<ruleset name=\"Blogger (partial)\" f=\"Blogger.xml\"><exclusion pattern=\"^http://(?:www\\.)?blogger\\.co\\.uk/\"/><securecookie host=\"^www2?\\.blogger\\.com$\" name=\".+\"/><rule from=\"^http://(img\\d\\.|www\\.)?blogblog\\.com/\" to=\"https://$1blogblog.com/\"/><rule from=\"^http://((?:buttons|help|photos1|www2?)\\.)?blogger\\.com/\" to=\"https://$1blogger.com/\"/><rule from=\"^http://(\\w+\\.)?blog(?:ger|spot)\\.([\\w.]{2,5})/favicon\\.ico\" to=\"https://$1blogger.$2/favicon.ico\"/><rule from=\"^http://(\\d\\.bp|bp\\d)\\.blogspot\\.com/\" to=\"https://$1.blogspot.com/\"/></ruleset>", "<ruleset name=\"Bloggerei.de (partial)\" f=\"Bloggerei.de.xml\"><exclusion pattern=\"^http://www\\.bloggerei\\.de/+(?!bgpublicon2?\\.jpg)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blogmark.me\" default_off=\"failed ruleset test\" f=\"Blogmark.me.xml\"><securecookie host=\"^(?:www\\.)?blogmark\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?blogmark\\.me/\" to=\"https://$1blogmark.me/\"/><rule from=\"^http://blog\\.blogmark\\.me/\" to=\"https://blogmark.me/blog/\"/></ruleset>", "<ruleset name=\"Blogmint.com\" f=\"Blogmint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blognone.com\" f=\"Blognone.com.xml\"><securecookie host=\"^\\.blognone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blogo (partial)\" f=\"Blogo.xml\"><securecookie host=\"^(?:www)?\\.blogo\\.it$\" name=\"^__utm\\w$\"/><rule from=\"^http://static(?:-a)?\\.blogo\\.it/\" to=\"https://d2vgi5skuln6ia.cloudfront.net/\"/><rule from=\"^http://static-q\\.blogo\\.it/\" to=\"https://d2ofxhm151efeq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Blogspot.com blogs\" f=\"Blogspot.com_blogs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloo.ie\" f=\"Bloo.ie.xml\"><securecookie host=\"^\\.bloo\\.ie$\" name=\".+\"/><rule from=\"^http://(?:(auth\\.|client\\.)|www\\.)?bloo\\.ie/\" to=\"https://$1bloo.ie/\"/></ruleset>", "<ruleset name=\"Blood.co.uk (partial)\" f=\"Blood.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloodhound Gang.com\" f=\"Bloodhound_Gang.com.xml\"><securecookie host=\"^\\.(?:stufftobuy\\.)?bloodhoundgang\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bloodhoundgang\\.com/\" to=\"https://www.bloodhoundgang.com/\"/><rule from=\"^http://(www\\.)?stufftobuy\\.bloodhoundgang\\.com/\" to=\"https://$1stufftobuy.bloodhoundgang.com/\"/></ruleset>", "<ruleset name=\"Bloomberg.com (problematic)\" default_off=\"mismatched\" f=\"Bloomberg.com-problematic.xml\"><rule from=\"^http://cdn\\.videos\\.bloomberg\\.com/\" to=\"https://cdn.videos.bloomberg.com/\"/></ruleset>", "<ruleset name=\"Bloomberg.net (partial)\" f=\"Bloomberg.net.xml\"><securecookie host=\"^bba\\.bloomberg\\.net$\" name=\".+\"/><rule from=\"^http://(bba|n[jy]bba2csg)\\.bloomberg\\.net/\" to=\"https://$1.bloomberg.net/\"/></ruleset>", "<ruleset name=\"Bloomberg.com (partial)\" f=\"Bloomberg.xml\"><exclusion pattern=\"^http://(?:origin-www\\.|www\\.)?bloomberg\\.com/+(?!favicon\\.ico|images?/|styles/)\"/><securecookie host=\"^(?:careers|service)\\.bloomberg\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bloomberg\\.com/\" to=\"https://www.bloomberg.com/\"/><rule from=\"^http://(careers|origin-www|service)\\.bloomberg\\.com/\" to=\"https://$1.bloomberg.com/\"/></ruleset>", "<ruleset name=\"Bloomberg Sports.com\" f=\"Bloomberg_Sports.com.xml\"><securecookie host=\"^\\.bloombergsports\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bloombergsports\\.com/\" to=\"https://www.bloombergsports.com/\"/></ruleset>", "<ruleset name=\"Blossom.IO\" f=\"Blossom.IO.xml\"><securecookie host=\"^www\\.blossom\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blossom\\.io/\" to=\"https://www.blossom.io/\"/></ruleset>", "<ruleset name=\"Blossom.co\" f=\"Blossom.co.xml\"><securecookie host=\"^\\.blossom\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blosxom.com\" default_off=\"Certificate mismatch\" f=\"Blosxom.com.xml\"><rule from=\"^http://(?:www\\.)?blosxom\\.com/\" to=\"https://blosxom.com/\"/></ruleset>", "<ruleset name=\"Blot.im\" f=\"Blot.im.xml\"><securecookie host=\"^(?:www\\.)?blot\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blottr\" default_off=\"self-signed\" f=\"Blottr.xml\"><securecookie host=\"^www\\.blottr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blottr\\.com/\" to=\"https://www.blottr.com/\"/></ruleset>", "<ruleset name=\"Blue Movie (partial)\" f=\"Blue-Movie.xml\"><securecookie host=\"^(?:www\\.)?bluemovie\\.net$\" name=\".*\"/><rule from=\"^http://bluemovie\\.eu/\" to=\"https://www.bluemovie.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueCat Networks.com\" f=\"BlueCat_Networks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueCats.com (partial)\" f=\"BlueCats.com.xml\"><securecookie host=\"^\\.app\\.bluecats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueCava (partial)\" default_off=\"failed ruleset test\" f=\"BlueCava.xml\"><securecookie host=\"^\\.bluecava\\.com$\" name=\"^(?:d|e|g|machine|s)$\"/><securecookie host=\"^(?:vpn\\.corp|transfer)\\.bluecava\\.com$\" name=\".+\"/><rule from=\"^http://((?:clients|vpn\\.corp|ds|insight|lookup|platform|transfer|www)\\.)?bluecava\\.com/\" to=\"https://$1bluecava.com/\"/><rule from=\"^http://(?:preferences\\.bluecava|bcpd\\.x7y24z365)\\.com/\" to=\"https://bcpd.x7y24z365.com/\"/></ruleset>", "<ruleset name=\"BlueCoat.com\" f=\"BlueCoat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueGenio.com\" default_off=\"shows default page\" f=\"BlueGenio.com.xml\"><securecookie host=\"^(?:www)?\\.bluegenio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueHost clients\" f=\"BlueHost-clients.xml\"><exclusion pattern=\"^http://(?:www\\.)courtneyluv\\.com/(?:~courtnk6/)?wp-content/uploads/\"/><rule from=\"^http://(?:www\\.)?316space(?:\\.harralmedia)?\\.com/(?:~harralme/316space/)?\" to=\"https://secure.bluehost.com/~harralme/316space/\"/><rule from=\"^http://(?:www\\.)?courtneyluv\\.com/(?:~courtnk6/)?wp-content/\" to=\"https://secure.bluehost.com/~courtnk6/wp-content/\"/><rule from=\"^http://(?:www\\.)?kyleschaeffer\\.com/wordpress/wp-content/\" to=\"https://secure.bluehost.com/~kylescha/wordpress/wp-content/\"/><rule from=\"^http://blog\\.pressdisplay\\.com/wp-(content|includes)/\" to=\"https://secure.bluehost.com/~pressdis/wp-$1/\"/></ruleset>", "<ruleset name=\"BlueKai (partial)\" f=\"BlueKai.xml\"><rule from=\"^http://tags\\.bluekai\\.com/\" to=\"https://stags.bluekai.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueKrypt.com\" f=\"BlueKrypt.com.xml\"><rule from=\"^http://(?:www\\.)?bluekrypt\\.be/[^?]*\" to=\"https://www.bluekrypt.com/fr/\"/><rule from=\"^http://(www\\.)?bluekrypt\\.com/\" to=\"https://$1bluekrypt.com/\"/></ruleset>", "<ruleset name=\"blueSSL.com\" f=\"BlueSSL.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueSnap.com (partial)\" f=\"BlueSnap.com.xml\"><securecookie host=\"^sandbox\\.bluesnap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueToad.com\" f=\"BlueToad.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueZ (partial)\" default_off=\"expired, self-signed\" f=\"BlueZ.xml\"><exclusion pattern=\"^http://www\\.bluez\\.org/$\"/><rule from=\"^http://(?:www\\.)?bluez\\.org/\" to=\"https://www.bluez.org/\"/></ruleset>", "<ruleset name=\"Blue Jeans.com (partial)\" f=\"Blue_Jeans.com.xml\"><exclusion pattern=\"^http://bluejeans\\.com/+(?!favicon\\.ico|iframe/|sites/|trial(?:$|[?/])|z[12]/)\"/><securecookie host=\"^\\.bluejeans\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue Jeans Cable.com\" f=\"Blue_Jeans_Cable.com.xml\"><securecookie host=\"^www\\.bluejeanscable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue Man Ticketing (partial)\" f=\"Blue_Man_Ticketing.xml\"><rule from=\"^http://(?:www\\.)?bluemanticketing\\.com/(buy/|get-show-dates/|myticketbooth/themes/)\" to=\"https://www.bluemanticketing.com/$1\"/></ruleset>", "<ruleset name=\"Blue Mountain.com\" f=\"Blue_Mountain.xml\"><securecookie host=\"^\\.bluemountain\\.com$\" name=\".+\"/><rule from=\"^http://bluemountain\\.com/\" to=\"https://www.bluemountain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue Origin.com\" f=\"Blue_Origin.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue State Digital.com (partial)\" f=\"Blue_State_Digital.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?bluestatedigital\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluebird.com\" f=\"Bluebird.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluechip (mixedcontent)\" f=\"Bluechip.xml\"><rule from=\"^http://www\\.bluechip\\.hu/\" to=\"https://www.bluechip.hu/\"/></ruleset>", "<ruleset name=\"Bluefly (partial)\" f=\"Bluefly.xml\"><rule from=\"^http://(?:cdn\\.)?media\\.bluefly\\.com/\" to=\"https://media.bluefly.com/\"/></ruleset>", "<ruleset name=\"Bluegiga.com\" f=\"Bluegiga.com.xml\"><rule from=\"^http://(?:www\\.)?bluegiga\\.com/\" to=\"https://www.bluegiga.com/\"/></ruleset>", "<ruleset name=\"Bluehost-CDN.com\" f=\"Bluehost-CDN.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueHost.com\" f=\"Bluehost.xml\"><securecookie host=\"^(?:www)?\\.bluehost\\.com$\" name=\".+\"/><rule from=\"^http://serverstatus\\.bluehost\\.com/$\" to=\"https://www.bluehost.com/cgi/serverstatus/\"/><rule from=\"^http://(www|box\\d+|br|helpdesk|cloud|login|my|secure|tutorials)\\.bluehost\\.com/\" to=\"https://$1.bluehost.com/\"/><rule from=\"^http://bluehost\\.com/\" to=\"https://bluehost.com/\"/></ruleset>", "<ruleset name=\"bluehosting.pl (partial)\" f=\"Bluehosting.pl.xml\"><securecookie host=\"^.+\\.bho\\.pl$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?bho\\.pl/\" to=\"https://$1bho.pl/\"/></ruleset>", "<ruleset name=\"Bluemix.net\" f=\"Bluemix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluenote.io\" f=\"Bluenote.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluepoint.com.ph\" default_off=\"expired\" platform=\"cacert\" f=\"Bluepoint.com.ph.xml\"><securecookie host=\"^(?:mail|www)\\.bluepoint\\.com\\.ph$\" name=\".+\"/><rule from=\"^http://bluepoint\\.com\\.ph/\" to=\"https://www.bluepoint.com.ph/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluetooth.org (partial)\" f=\"Bluetooth.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostCenter.com\" f=\"Bluewin-HostCenter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluewin.ch (partial)\" f=\"Bluewin.ch.xml\"><securecookie host=\"^(?:(?:xtrazone|pres|sam|rich)\\.sso|www)\\.bluewin\\.ch$\" name=\".+\"/><rule from=\"^http://bluewin\\.ch/\" to=\"https://www.bluewin.ch/\"/><rule from=\"^http://bluewin\\.wemfbox\\.ch/\" to=\"https://blue-ssl.wemfbox.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blumenthals\" default_off=\"failed ruleset test\" f=\"Blumenthals.xml\"><securecookie host=\"^blumenthals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blutmagie.de (partial)\" default_off=\"self-signed\" f=\"Blutmagie.de.xml\"><securecookie host=\"^torstatus\\.blutmagie\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blutmagie\\.de/+(?:\\?.*)?$\" to=\"https://torstatus.blutmagie.de/~h3s\"/><rule from=\"^http://torstatus\\.blutmagie\\.de/\" to=\"https://torstatus.blutmagie.de/\"/></ruleset>", "<ruleset name=\"Bmibaby.com\" default_off=\"failed ruleset test\" f=\"Bmibaby.com.xml\"><rule from=\"^http://www\\.bmibaby\\.com/\" to=\"https://www.bmibaby.com/\"/></ruleset>", "<ruleset name=\"Bmmetrix.com (partial)\" f=\"Bmmetrix.com.xml\"><securecookie host=\".+\\.bmmetrix\\.com$\" name=\".+\"/><rule from=\"^http://(ie-stat|t)\\.bmmetrix\\.com/\" to=\"https://$1.bmmetrix.com/\"/><rule from=\"^http://(?:www\\.)?bmmetrix\\.com/\" to=\"https://www.bmmetrix.com/\"/></ruleset>", "<ruleset name=\"bn-MCLP.org (partial)\" f=\"Bn-MCLP.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnc4free.com (false MCB)\" platform=\"mixedcontent\" f=\"Bnc4free.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnc4free.com (partial)\" f=\"Bnc4free.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoCA.gov.tw\" f=\"BoCA.gov.tw.xml\"><securecookie host=\"^www\\.boca\\.gov\\.tw$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boca\\.gov\\.tw/\" to=\"https://www.boca.gov.tw/\"/></ruleset>", "<ruleset name=\"BoardGameGeek.com\" f=\"BoardGameGeek.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?boardgamegeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoardZoo.com\" f=\"BoardZoo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boards.ie (broken)\" default_off=\"reported broken\" f=\"Boards.ie.xml\"><rule from=\"^http://([^/:@\\.]+\\.)?boards\\.ie/\" to=\"https://$1boards.ie/\"/><rule from=\"^http://b-static\\.net/\" to=\"https://c0.b-static.net/\"/><rule from=\"^http://(avatar|c0)\\.b-static\\.net/\" to=\"https://$1.b-static.net/\"/></ruleset>", "<ruleset name=\"Boathouse Crew Shop\" f=\"Boathouse_Crew_Shop.xml\"><securecookie host=\"^\\.www\\.boathousecrewshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bob131.so\" f=\"Bob131.so.xml\"><rule from=\"^http://www\\.bob131\\.so/\" to=\"https://bob131.so/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boba Family\" default_off=\"failed ruleset test\" f=\"Boba_Family.xml\"><securecookie host=\"^(?:.*\\.)?bobafamily\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bobcares.com (partial)\" f=\"Bobcares.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bodum\" f=\"Bodum.xml\"><securecookie host=\"^(?:.+\\.)?bodum\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bodum\\.com/\" to=\"https://www.bodum.com/\"/></ruleset>", "<ruleset name=\"BodyBuilding.com (partial)\" f=\"BodyBuilding.com.xml\"><exclusion pattern=\"^http://my\\.bodybuilding\\.com/\"/><securecookie host=\"^ad\\.bodybuilding\\.com$\" name=\".+\"/><rule from=\"^http://(common|store)\\.bbcomcdn\\.com/\" to=\"https://$1.bbcomcdn.com/\"/><rule from=\"^http://(\\w{2}\\.|www\\.)?bodybuilding\\.com/store/(account/|commerce/cart\\.jsp|orderstatus\\.htm)\" to=\"https://$1bodybuilding.com/store/$2\"/><rule from=\"^http://(ad|assets|s)\\.bodybuilding\\.com/\" to=\"https://$1.bodybuilding.com/\"/><rule from=\"^http://imagecdn\\.bodybuilding\\.com/\" to=\"https://d1qro4ibhgqt8c.cloudfront.net/\"/><rule from=\"^http://n\\.bodybuilding\\.com/\" to=\"https://bodybuilding-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"Boeing Employees Credit Union (partial)\" default_off=\"failed ruleset test\" f=\"Boeing-Employees-Credit-Union.xml\"><securecookie host=\"^\\.becu\\.org$\" name=\"^(?:becuhome|s_\\w+)$\"/><securecookie host=\"^accessassistant\\.becu\\.org$\" name=\".*\"/><securecookie host=\"^.*\\.becuonlinebanking\\.org$\" name=\".*\"/><rule from=\"^http://becu\\.org/\" to=\"https://www.becu.org/\"/><rule from=\"^http://www\\.becu\\.org/($|contact-us\\.aspx|css/|Default\\.aspx|flash/|images/|js/|mobile-online-banking/|pdfsource/|who-is/becu-is-you\\.aspx)\" to=\"https://www.becu.org/$1\"/><rule from=\"^http://accessassistant\\.becu\\.org/\" to=\"https://accessassistant.becu.org/\"/><rule from=\"^http://(?:www\\.)?becuonlinebanking\\.org/\" to=\"https://www.becuonlinebanking.org/\"/></ruleset>", "<ruleset name=\"Boell.de\" default_off=\"failed ruleset test\" f=\"Boell.de.xml\"><rule from=\"^http://groupwise\\.boell\\.de/\" to=\"https://groupwise.boell.de/\"/></ruleset>", "<ruleset name=\"Börse Frankfurt\" default_off=\"failed ruleset test\" f=\"Boerse_Frankfurt.xml\"><rule from=\"^http://boerse-frankfurt\\.de/\" to=\"https://www.boerse-frankfurt.de/\"/><rule from=\"^http://([^/:@]+)?\\.boerse-frankfurt\\.de/\" to=\"https://$1.boerse-frankfurt.de/\"/></ruleset>", "<ruleset name=\"bofh.it (partial)\" f=\"Bofh.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bohemia Interactive (partial)\" f=\"Bohemia_Interactive.xml\"><securecookie host=\"^\\.bistudio\\.com$\" name=\"^bohemiaInteractiveForums_session_id$\"/><securecookie host=\"^(?:account|community|store)\\.bistudio\\.com$\" name=\".+\"/><rule from=\"^http://bistudio\\.com/\" to=\"https://www.bistudio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bohoomil.com (bad cert)\" default_off=\"Expired certificate\" f=\"Bohoomil.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boing Boing.net (partial)\" f=\"Boing-Boing.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^(?:\\.shop\\.)?boingboing\\.net$\" name=\".*\"/><rule from=\"^http://www\\.boingboing\\.net/\" to=\"https://boingboing.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boingo\" default_off=\"failed ruleset test\" f=\"Boingo.xml\"><rule from=\"^http://boingo\\.com/\" to=\"https://www.boingo.com/\"/><rule from=\"^http://([^/:@]+)?\\.boingo\\.com/\" to=\"https://$1.boingo.com/\"/><rule from=\"^http://boingo\\.net/\" to=\"https://www.boingo.net/\"/><rule from=\"^http://([^/:@]+)?\\.boingohotspot\\.net/\" to=\"https://$1.boingohotspot.net/\"/></ruleset>", "<ruleset name=\"Bokborgen.se\" default_off=\"failed ruleset test\" f=\"Bokborgen.se.xml\"><rule from=\"^http://www\\.bokborgen\\.se/\" to=\"https://bokborgen.se/\"/><rule from=\"^http://bokborgen\\.se/\" to=\"https://bokborgen.se/\"/></ruleset>", "<ruleset name=\"Bokelskere\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Bokelskere.xml\"><rule from=\"^http://bokelskere\\.no/\" to=\"https://bokelskere.no/\"/><rule from=\"^http://www\\.bokelskere\\.no/\" to=\"https://www.bokelskere.no/\"/></ruleset>", "<ruleset name=\"Bokon.se\" f=\"Bokon.se.xml\"><securecookie host=\"^(?:www\\.)?bokon\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bolagsverket.se\" platform=\"mixedcontent\" f=\"Bolagsverket.se.xml\"><rule from=\"^http://bolagsverket\\.se/\" to=\"https://www.bolagsverket.se/\"/><rule from=\"^http://www\\.bolagsverket\\.se/\" to=\"https://www.bolagsverket.se/\"/></ruleset>", "<ruleset name=\"BoldChat.com (partial)\" f=\"BoldChat.com.xml\"><securecookie host=\"^(?:.*\\.)?boldchat\\.com$\" name=\".+\"/><rule from=\"^http://autodiscover\\.boldchat\\.com/.*\" to=\"https://autodiscover.mex07a.emailsrvr.com/autodiscover/autodiscover.xml\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BolehVPN.net\" f=\"BolehVPN.net.xml\"><securecookie host=\"^(?:\\.|portal\\.|www\\.)?bolehvpn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boligejer.dk\" f=\"Boligejer.dk.xml\"><securecookie host=\"^\\.boligejer\\.dk$\" name=\".+\"/><rule from=\"^http://(www\\.)?boligejer\\.dk/\" to=\"https://boligejer.dk/\"/></ruleset>", "<ruleset name=\"Boligportal.dk (false MCB)\" platform=\"mixedcontent\" f=\"Boligportal.dk-mixedcontent.xml\"><securecookie host=\"(www)?\\.boligportal\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boligportal.dk (static)\" f=\"Boligportal.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bolo's Computer Museum\" f=\"Bolos_Computer_Museum.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boltbus.com\" platform=\"mixedcontent\" f=\"Boltbus.com.xml\"><rule from=\"^http://(?:www\\.)?boltbus\\.com/\" to=\"https://www.boltbus.com/\"/></ruleset>", "<ruleset name=\"Bonadza.com\" f=\"Bonadza.com.xml\"><securecookie host=\"^(?:www\\.)?bonadza\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bonding.de\" f=\"Bonding.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoneBlast.com (false MCB)\" platform=\"mixedcontent\" f=\"BoneBlast.com-falsemixed.xml\"><securecookie host=\"^\\.boneblast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoneBlast.com (partial)\" f=\"BoneBlast.com.xml\"><rule from=\"^http://(www\\.)?boneblast\\.com/(?=images/|landpage/img/|wp-content/|wp-includes/)\" to=\"https://$1boneblast.com/\"/></ruleset>", "<ruleset name=\"Bonneville Power Administration (partial)\" f=\"Bonneville_Power_Administration.xml\"><securecookie host=\"^.*\\.bpa\\.gov$\" name=\".+\"/><rule from=\"^http://(customerportal\\.|www\\.)?bpa\\.gov/\" to=\"https://$1bpa.gov/\"/><rule from=\"^http://(?:www\\.)?(careers|efw|jobs)\\.bpa\\.gov/\" to=\"https://$1.bpa.gov/\"/></ruleset>", "<ruleset name=\"BookMyName\" f=\"BookMyName.xml\"><rule from=\"^http://(?:www\\.)?bookmyname\\.com/\" to=\"https://www.bookmyname.com/\"/></ruleset>", "<ruleset name=\"Bookacourse (partial)\" default_off=\"failed ruleset test\" f=\"Bookacourse.xml\"><rule from=\"^http://(www\\.)?bookacourse\\.com/(?!content)\" to=\"https://$1bookacourse.com/\"/></ruleset>", "<ruleset name=\"Bookie.io\" f=\"Bookie.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booking.com\" f=\"Booking.com.xml\"><securecookie host=\"^(\\.[\\w\\-]+)?\\.booking\\.com$\" name=\".+\"/><exclusion pattern=\"^http://blog\\.booking\\.com\"/><rule from=\"^http://([\\w\\-]+\\.)?booking\\.com/\" to=\"https://$1booking.com/\"/><rule from=\"^http://([\\w\\-]+)\\.bstatic\\.com/\" to=\"https://$1.bstatic.com/\"/></ruleset>", "<ruleset name=\"Booklog.jp\" default_off=\"failed ruleset test\" f=\"Booklog.jp.xml\"><rule from=\"^http://(?:www\\.)?booklog\\.jp/\" to=\"https://www.booklog.jp/\"/></ruleset>", "<ruleset name=\"booklooker.de\" f=\"Booklooker.de.xml\"><securecookie host=\"^(?:www\\.)?(?:images\\.|secure\\.)?booklooker\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:secure\\.)?booklooker\\.de/\" to=\"https://secure.booklooker.de/\"/><rule from=\"^http://(?:www\\.)?images\\.booklooker\\.de/\" to=\"https://images.booklooker.de/\"/></ruleset>", "<ruleset name=\"Bookshare\" f=\"Bookshare.xml\"><securecookie host=\"^www\\.bookshare\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bookshare\\.org/\" to=\"https://www.bookshare.org/\"/></ruleset>", "<ruleset name=\"Booktype.pro\" f=\"Booktype.pro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookworm\" default_off=\"failed ruleset test\" f=\"Bookworm.xml\"><securecookie host=\"^bookworm\\.oreilly\\.com$\" name=\".*\"/><rule from=\"^http://bookworm\\.oreilly\\.com/\" to=\"https://bookworm.oreilly.com/\"/></ruleset>", "<ruleset name=\"Boomads\" f=\"BoomAds.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boomerang (partial)\" f=\"Boomerang.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoordatWork.com\" default_off=\"self-signed\" f=\"BoordatWork.com.xml\"><securecookie host=\"^\\.?booredatwork\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?booredatwork\\.com/\" to=\"https://booredatwork.com/\"/></ruleset>", "<ruleset name=\"boost.org (partial)\" default_off=\"expired\" f=\"Boost.xml\"><securecookie host=\"^svn\\.boost\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boost by Benz.com\" default_off=\"failed ruleset test\" f=\"Boost_by_Benz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boots.com (partial)\" f=\"Boots.com.xml\"><securecookie host=\"^(?:.*\\.)?boots\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boots\\.com/\" to=\"https://www.boots.com/\"/><rule from=\"^http://www\\.international\\.boots\\.com/\" to=\"https://www.international.boots.com/\"/><rule from=\"^http://(?:www\\.)?th\\.boots\\.com/\" to=\"https://www.bootsthai.com/\"/><rule from=\"^http://(www\\.)?shopbootsusa\\.com/webstore/(?=a4j/|login\\.do)\" to=\"https://$1shopbootsusa.com/webstore/\"/><rule from=\"^http://images\\.shopbootsusa\\.com/\" to=\"https://images.shopbootsusa.com/\"/></ruleset>", "<ruleset name=\"Boots.ie\" f=\"Boots.ie.xml\"><securecookie host=\"^www\\.boots\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boots\\.ie/\" to=\"https://www.boots.ie/\"/></ruleset>", "<ruleset name=\"Boots.no\" f=\"Boots.no.xml\"><securecookie host=\".*\\.boots\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boots\\.no/\" to=\"https://www.boots.no/\"/></ruleset>", "<ruleset name=\"Boots Thai.com\" default_off=\"failed ruleset test\" f=\"Boots_Thai.com.xml\"><rule from=\"^http://www\\.bootsthai\\.com/\" to=\"https://www.bootsthai.com/\"/></ruleset>", "<ruleset name=\"BootstrapCDN.com (partial)\" f=\"BootstrapCDN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bootswatch.com (partial)\" f=\"Bootswatch.com.xml\"><securecookie host=\"^\\.bootswatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boounce\" default_off=\"failed ruleset test\" f=\"Boounce.xml\"><securecookie host=\"^forums\\.boounce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booz Allen.com (partial)\" f=\"Booz_Allen.com.xml\"><securecookie host=\"^cybertab\\.boozallen\\.com$\" name=\".+\"/><rule from=\"^http://((?:cybertab|mena|www)\\.)?boozallen\\.com/\" to=\"https://$1boozallen.com/\"/></ruleset>", "<ruleset name=\"Borderfree.com (partial)\" f=\"Borderfree.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bored to Death\" f=\"Bored_to_Death.xml\"><securecookie host=\"^(?:w*\\.)?boredtodeath\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Born This Way Foundation (partial)\" f=\"Born_This_Way_Foundation.xml\"><securecookie host=\"^\\.?secure\\.bornthiswayfoundation\\.org$\" name=\".+\"/><rule from=\"^http://(?:action\\.|www\\.)?bornthiswayfoundation\\.org/page/-/img/\" to=\"https://dnwssx4l7gl7s.cloudfront.net/bway/default/page/-/img/\"/><rule from=\"^http://secure\\.bornthiswayfoundation\\.org/\" to=\"https://secure.bornthiswayfoundation.org/\"/></ruleset>", "<ruleset name=\"Borsen.dk (partial)\" f=\"Borsen.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bortársaság\" f=\"Bortarsasag.xml\"><securecookie host=\"^www\\.bortarsasag\\.hu$\" name=\".*\"/><rule from=\"^http://(www\\.)?bortarsasag\\.hu/\" to=\"https://www.bortarsasag.hu/\"/></ruleset>", "<ruleset name=\"Bosch-Sensortec.com\" f=\"Bosch-Sensortec.com.xml\"><rule from=\"^http://bosch-sensortec\\.com/[^?]*\" to=\"https://www.bosch-sensortec.com/\"/><rule from=\"^http://www\\.bosch-sensortec\\.com/\" to=\"https://www.bosch-sensortec.com/\"/></ruleset>", "<ruleset name=\"Bosch.com (partial)\" f=\"Bosch.com.xml\"><rule from=\"^http://(appcenter|crisis|ebike|idea|(?:ae-bst|beat-emea|boschshared-bosch-de|c-design-bosch-de|rb-master)\\.resource)\\.bosch\\.com/\" to=\"https://$1.bosch.com/\"/></ruleset>", "<ruleset name=\"Bose\" f=\"Bose.xml\"><securecookie host=\"^(?:.*\\.)?bose\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://bose\\.co\\.uk/\" to=\"https://www.bose.co.uk/\"/><rule from=\"^http://([^/:@]+)\\.bose\\.co\\.uk/\" to=\"https://$1.bose.co.uk/\"/></ruleset>", "<ruleset name=\"bosh.io\" f=\"Bosh.io.xml\"><securecookie host=\"^\\.bosh\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bossland GmbH\" f=\"BosslandGmbH.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Built\" default_off=\"mismatch\" f=\"Boston-Built.xml\"><rule from=\"^http://(?:www\\.)?bostonbuilt(?:\\.org|-org\\.hoaxdevice\\.com)/\" to=\"https://bostonbuilt-org.hoaxdevice.com/~hoaxdevi/bostonbuilt/\"/></ruleset>", "<ruleset name=\"Boston.com (false MCB)\" platform=\"mixedcontent\" f=\"Boston.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston.com (partial)\" f=\"Boston.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://deals\\.boston\\.com/+\" to=\"https://finds.boston.com/\"/><rule from=\"^http://weather\\.boston\\.com/\" to=\"https://www.boston.com/weather/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Globe Media.com (false MCB)\" platform=\"mixedcontent\" f=\"Boston_Globe_Media.com-falsemixed.xml\"><rule from=\"^http://bostonglobemedia\\.com/\" to=\"https://www.bostonglobemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Globe Media.com (partial)\" f=\"Boston_Globe_Media.com.xml\"><exclusion pattern=\"^http://go\\.bostonglobemedia\\.com/+(?!l/)\"/><rule from=\"^http://go\\.bostonglobemedia\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Review.com\" f=\"Boston_Review.net.xml\"><securecookie host=\"^(?:w*\\.)?bostonreview\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston University (partial)\" f=\"Boston_University.xml\"><securecookie host=\"^(?:www)?\\.bu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bu\\.edu/\" to=\"https://www.bu.edu/\"/><rule from=\"^http://tandem\\.bu\\.edu/\" to=\"https://tandem.bu.edu/\"/></ruleset>", "<ruleset name=\"BotBot.me\" f=\"BotBot.me.xml\"><securecookie host=\"^botbot\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BotScanner.com (partial)\" default_off=\"expired\" f=\"BotScanner.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Botconf.eu\" f=\"Botconf.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://botconf\\.eu/\" to=\"https://www.botconf.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Botfrei.de (partial)\" f=\"Botfrei.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"boum.org\" f=\"Boum.org.xml\"><rule from=\"^http://boum\\.org/\" to=\"https://boum.org/\"/><rule from=\"^http://([^/:@\\.]+)\\.boum\\.org/\" to=\"https://$1.boum.org/\"/></ruleset>", "<ruleset name=\"Bounce.io\" f=\"Bounce.io.xml\"><rule from=\"^http://(?:www\\.)?bounce\\.io/\" to=\"https://bounce.io/\"/></ruleset>", "<ruleset name=\"bouncebidder.com\" f=\"Bouncebidder.com.xml\"><rule from=\"^http://bouncebidder\\.com/\" to=\"https://bouncebidder.com/\"/></ruleset>", "<ruleset name=\"Bouncer Station.com\" default_off=\"failed ruleset test\" f=\"Bouncer_Station.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bouncy Balls.org\" f=\"Bouncy_Balls.org.xml\"><securecookie host=\"^\\.bouncyballs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bouncy Castle.org (partial)\" f=\"Bouncy_Castle.org.xml\"><securecookie host=\"^(?:www\\.)?bouncycastle\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bountysource.com (partial)\" f=\"Bountysource.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bourgeois.me\" default_off=\"failed ruleset test\" f=\"Bourgeois.me.xml\"><securecookie host=\"^\\.bourgeois\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bourne To Code.com\" f=\"Bourne_To_Code.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bournemouth.gov.uk (partial)\" f=\"Bournemouth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bournemouth\\.gov\\.uk/\" to=\"https://www.bournemouth.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bovpg.net\" f=\"Bovpg.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Box (partial)\" f=\"Box.xml\"><exclusion pattern=\"^http://opensource\\.box\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://forum\\.developers\\.box\\.com/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoxOffice (partial)\" f=\"BoxOffice.xml\"><exclusion pattern=\"^http://(?:www\\.)?boxoffice\\.com/(?:$|\\?|/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoxUK\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BoxUK.xml\"><securecookie host=\"^(?:www\\.)?boxuk\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?boxuk\\.com/\" to=\"https://www.boxuk.com/\"/></ruleset>", "<ruleset name=\"Box Cloud.com\" f=\"Box_Cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxcar.io (partial)\" f=\"Boxcar.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxee.tv (partial)\" default_off=\"failed ruleset test\" f=\"BoxeeTV.xml\"><securecookie host=\"^(?:\\w+\\.)?boxee\\.tv$\" name=\".+\"/><rule from=\"^http://((?:account|app|assets|www)\\.)?boxee\\.tv/\" to=\"https://$1boxee.tv/\"/></ruleset>", "<ruleset name=\"boxopus.com\" f=\"Boxopus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxpn.com\" f=\"Boxpn.com.xml\"><securecookie host=\"^(?:www)?\\.boxpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxwood Technology\" default_off=\"failed ruleset test\" f=\"Boxwood_Technology.xml\"><securecookie host=\"^(?:.+\\.)?boxwoodtech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bpaste.net\" f=\"Bpaste.net.xml\"><rule from=\"^http://bpaste\\.net/\" to=\"https://bpaste.net/\"/></ruleset>", "<ruleset name=\"Brabysads.com (partial)\" default_off=\"failed ruleset test\" f=\"Brabysads.com.xml\"><securecookie host=\"^(?:www\\.)?brabysads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bradford.gov.uk (partial)\" f=\"Bradford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bradford\\.gov\\.uk/\" to=\"https://www.bradford.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BradleyF.id.au\" f=\"BradleyF.id.au.xml\"><rule from=\"^http://bradleyf\\.id\\.au/\" to=\"https://bradleyf.id.au/\"/></ruleset>", "<ruleset name=\"Brainbench\" platform=\"mixedcontent\" f=\"BrainBench.xml\"><rule from=\"^http://(?:www\\.)?brainbench\\.com/\" to=\"https://www.brainbench.com/\"/></ruleset>", "<ruleset name=\"Brain Decoder.com\" f=\"Brain_Decoder.com.xml\"><rule from=\"^http://braindecoder\\.com/\" to=\"https://www.braindecoder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brain Pickings.org\" f=\"Brain_Pickings.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"braincert.org\" f=\"Braincert.org.xml\"><securecookie host=\"^\\.braincert\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brainshark\" platform=\"mixedcontent\" f=\"Brainshark.xml\"><securecookie host=\"^(?:.*\\.)?brainshark\\.com$\" name=\".*\"/><rule from=\"^http://presentation\\.brainshark\\.com/company/contact_us\\.(?:aspx|php)(?:$|\\?.*)\" to=\"https://www.brainshark.com/contact-us\"/><rule from=\"^http://presentation\\.brainshark\\.com/privacy_policy/privacy_policy\\.(?:aspx|php)(?:$|\\?.*)\" to=\"https://www.brainshark.com/company/privacy-policy.aspx\"/><rule from=\"^http://(?:presentation\\.|www\\.)?brainshark\\.com/\" to=\"https://www.brainshark.com/\"/></ruleset>", "<ruleset name=\"Brainsonic (partial)\" f=\"Brainsonic.xml\"><rule from=\"^http://(?:www\\.)?brainsonic\\.com/wp-content/\" to=\"https://www.brainsonic.com/wp-content/\"/><rule from=\"^http://(live2|live-secure|francetv\\.motscroises\\.pad)\\.brainsonic\\.com/\" to=\"https://$1.brainsonic.com/\"/></ruleset>", "<ruleset name=\"Brainstorage.me (partial)\" f=\"Brainstorage.me.xml\"><rule from=\"^http://(?:www\\.)?brainstorage\\.me/(?=assets/)\" to=\"https://brainstorage.me/\"/></ruleset>", "<ruleset name=\"Braintree.gov.uk (partial)\" f=\"Braintree.gov.uk.xml\"><securecookie host=\"^(?!\\.braintree\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://braintree\\.gov\\.uk/\" to=\"https://www.braintree.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Braintreepayments.com\" f=\"Braintreepayments.com.xml\"><securecookie host=\"^(?:(?:developers|signups|www)\\.)?braintreepayments\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrainyQuote.com\" default_off=\"failed ruleset test\" f=\"BrainyQuote.com.xml\"><securecookie host=\"^(?:www)?\\.brainyquote\\.com$\" name=\".+\"/><rule from=\"^http://((?:i|mobile|www)\\.)?brainyquote\\.com/\" to=\"https://$1brainyquote.com/\"/></ruleset>", "<ruleset name=\"Branch\" f=\"Branch.xml\"><securecookie host=\"^\\.branch\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?branch\\.com/\" to=\"https://secure.branch.com/\"/><rule from=\"^http://static\\.branch\\.com/\" to=\"https://d3sipcemvmkij2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Branchable.com\" f=\"Branchable.com.xml\"><securecookie host=\".+\\.branchable\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?branchable\\.com/\" to=\"https://$1branchable.com/\"/></ruleset>", "<ruleset name=\"brand-server.com\" f=\"Brand-server.com.xml\"><securecookie host=\"^t\\.brand-server\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brand Embassy (partial)\" f=\"Brand_Embassy.xml\"><securecookie host=\"^(?:engager|ui)\\.brandembassy\\.com$\" name=\".+\"/><rule from=\"^http://(engager|ui)\\.brandembassy\\.com/\" to=\"https://$1.brandembassy.com/\"/></ruleset>", "<ruleset name=\"Brand New Booty\" f=\"Brand_New_Booty.xml\"><securecookie host=\"^(?:www)?\\.brandnewbooty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brand Spanking New\" default_off=\"mismatch\" f=\"Brand_Spanking_New.xml\"><rule from=\"^http://(?:www\\.)?brandspankingnew\\.net/\" to=\"https://brandspankingnew.net/\"/></ruleset>", "<ruleset name=\"Brandensittich.de\" f=\"Brandensittich.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brandfolder.com\" f=\"Brandfolder.com.xml\"><securecookie host=\"^brandfolder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brandify (partial)\" default_off=\"failed ruleset test\" f=\"Brandify.xml\"><rule from=\"^http://secure\\.brandify\\.com\\.au/\" to=\"https://secure.brandify.com.au/\"/></ruleset>", "<ruleset name=\"Brandisty.com\" f=\"Brandisty.com.xml\"><securecookie host=\"^(?:www\\.)?brandisty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brands.com.tw\" f=\"Brands.xml\"><securecookie host=\"^mall\\.brands\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://mall\\.brands\\.com\\.tw/\" to=\"https://mall.brands.com.tw/\"/></ruleset>", "<ruleset name=\"BrandweerUitgeest.nl\" f=\"BrandweerUitgeest.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Branson Zipline (partial)\" f=\"Branson_Zipline.xml\"><exclusion pattern=\"^http://(?:www\\.)?bransonzipline\\.com/(?!public/)\"/><securecookie host=\"^secure\\.bransonzipline\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?bransonzipline\\.com/\" to=\"https://$1bransonzipline.com/\"/><rule from=\"^http://(?:css|img)\\.bzimages\\.com/\" to=\"https://www.bransonzipline.com/\"/></ruleset>", "<ruleset name=\"Brashear.me\" f=\"Brashear.me.xml\"><rule from=\"^http://(www\\.)?brashear\\.me/\" to=\"https://brashear.me/\"/></ruleset>", "<ruleset name=\"Brasil 24/7\" f=\"Brasil_24-7.xml\"><securecookie host=\".*\\.brasil247\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Braunschweig\" platform=\"mixedcontent\" f=\"Braunschweig.xml\"><rule from=\"^http://(?:www\\.)?braunschweig\\.de/\" to=\"https://www.braunschweig.de/\"/></ruleset>", "<ruleset name=\"Brave Media\" default_off=\"mismatch\" f=\"Brave-Media.xml\"><securecookie host=\"^(?:.*\\.)?bravemedia\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bravemedia\\.org/(?:~bravemed/)?\" to=\"https://bravemedia.org/~bravemed/\"/><rule from=\"^http://(?:(?:www\\.)?dino\\.sr/|dinosr\\.bravemedia\\.org/(?:~bravemed/dinosr/)?)\" to=\"https://bravemedia.org/~bravemed/dinosr/\"/><rule from=\"^http://(?:(?:www\\.)?kea\\.nu/|keanu\\.bravemedia\\.org/(?:~bravemed/keanu/)?)\" to=\"https://bravemedia.org/~bravemed/keanu/\"/><rule from=\"^http://(?:(?:www\\.)?scordit\\.com/|scordit\\.bravemedia\\.org/(?:~bravemed/scordit/)?)\" to=\"https://bravemedia.org/~bravemed/scordit/\"/></ruleset>", "<ruleset name=\"Bravely Onward.com\" f=\"Bravely_Onward.com.xml\"><securecookie host=\"^\\.bravelyonward\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bravenet Media (partial)\" default_off=\"failed ruleset test\" f=\"Bravenet_Media.xml\"><securecookie host=\"^redvase\\.bravenet\\.com$\" name=\".+\"/><rule from=\"^http://redvase\\.bravenet\\.com/\" to=\"https://redvase.bravenet.com/\"/></ruleset>", "<ruleset name=\"BreNet (mismatches)\" default_off=\"mismatch, self-signed\" f=\"BreNet-mismatches.xml\"><rule from=\"^http://(vz46|webmail)\\.brenet\\.de/\" to=\"https://$1.brenet.de/\"/></ruleset>", "<ruleset name=\"BreNet (partial)\" default_off=\"failed ruleset test\" f=\"BreNet.xml\"><securecookie host=\"^(?:.*\\.)?brenet\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?brenet\\.de(:8443)?/\" to=\"https://$1brenet.de$2/\"/></ruleset>", "<ruleset name=\"break.com\" f=\"Break.com.xml\"><rule from=\"^http://media1\\.break\\.com/\" to=\"https://media1.break.com/\"/></ruleset>", "<ruleset name=\"Breakfast Quay (partial)\" default_off=\"failed ruleset test\" f=\"Breakfast-Quay.xml\"><rule from=\"^http://code\\.breakfastquay\\.com/\" to=\"https://code.breakfastquay.com/\"/><securecookie host=\"^code\\.breakfastquay\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"BreakoutBand.com\" default_off=\"failed ruleset test\" f=\"BreakoutBand.com.xml\"><securecookie host=\"^www\\.breakoutband\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bremer Bank\" f=\"Bremer-Bank.xml\"><securecookie host=\"^(?:careers|rdc|www)\\.bremer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brendan Eich.com\" f=\"Brendan_Eich.xml\"><securecookie host=\"^(?:www\\.)?brendaneich\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brennan Center.org\" f=\"Brennan_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brennan Novak.com\" f=\"Brennan_Novak.com.xml\"><securecookie host=\"^(?:www\\.)?brennannovak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brent.gov.uk (partial)\" f=\"Brent.gov.uk.xml\"><exclusion pattern=\"^http://democracy\\.brent\\.gov\\.uk/+(?!(?:ieLogon|ieRegisterUser|mgRegisterKeywordInterest)\\.aspx|sitespecific/)\"/><securecookie host=\"^\\.\" name=\"^_gat$\"/><securecookie host=\"^(?!democracy\\.)\\w\" name=\".\"/><rule from=\"^http://archive\\.brent\\.gov\\.uk/\" to=\"https://www.brent.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bretagne-web.eu\" default_off=\"mismatched\" f=\"Bretagne-web.eu.xml\"><securecookie host=\"^bretagne-web\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bretagne-web\\.eu/\" to=\"https://bretagne-web.eu/\"/></ruleset>", "<ruleset name=\"Breuninger (partial)\" f=\"Breuninger.xml\"><rule from=\"^http://(?:www\\.)?breuninger\\.com/(_css/|_media/|e/|(?:login|register)Page\\.cmd|medias/)\" to=\"https://www.breuninger.com/$1\"/></ruleset>", "<ruleset name=\"brevado\" default_off=\"failed ruleset test\" f=\"Brevado.xml\"><securecookie host=\"^\\.brevado\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brew Your Own\" platform=\"mixedcontent\" f=\"Brew-Your-Own.xml\"><securecookie host=\"^(?:www\\.)?byo\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brewtourism.com.ua\" default_off=\"failed ruleset test\" f=\"Brewtourism.com.ua.xml\"><securecookie host=\"^(?:www\\.)?brewtourism\\.com\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brian Clifton.com\" f=\"Brian_Clifton.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brian Smith.org\" f=\"Brian_Smith.org.xml\"><securecookie host=\"^\\.briansmith\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?briansmith\\.org/\" to=\"https://briansmith.org/\"/></ruleset>", "<ruleset name=\"briandunning.com\" f=\"Briandunning.xml\"><securecookie host=\"^www\\.briandunning\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrickLink\" f=\"BrickLink.xml\"><securecookie host=\"^www\\.bricklink\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bricklink\\.com/\" to=\"https://www.bricklink.com/\"/></ruleset>", "<ruleset name=\"Bridge Road Marketing.com\" f=\"Bridge_Road_Marketing.com.xml\"><securecookie host=\"^bridgeroadmarketing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bridgeways.com\" default_off=\"failed ruleset test\" f=\"Bridgeways.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bridgeways\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrieHost.com\" f=\"BrieHost.com.xml\"><securecookie host=\"^\\.briehost\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Briggs and Riley\" default_off=\"failed ruleset test\" f=\"Briggs_and_Riley.xml\"><rule from=\"^http://briggs-riley\\.com/\" to=\"https://www.briggs-riley.com/\"/><rule from=\"^http://([^/:@]+)?\\.briggs-riley\\.com/\" to=\"https://$1.briggs-riley.com/\"/></ruleset>", "<ruleset name=\"Bright-Things.com\" f=\"Bright-Things.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightContext.com\" default_off=\"expired\" f=\"BrightContext.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightFort.com (mismatched)\" default_off=\"mismatched\" f=\"BrightFort.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightFort.com (partial)\" f=\"BrightFort.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Btrll.com\" f=\"BrightRoll.xml\"><securecookie host=\"^\\.btrll\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightTALK.com (partial)\" f=\"BrightTALK.com.xml\"><exclusion pattern=\"^http://go\\.brighttalk\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://go\\.brighttalk\\.com/+(?:\\?.*)?$\" to=\"https://app-sji.marketo.com/\"/><rule from=\"^http://go\\.brighttalk\\.com/\" to=\"https://na-sji.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightTag (problematic)\" default_off=\"mismatched\" f=\"BrightTag-problematic.xml\"><rule from=\"^http://(?:www\\.)?(?:the)?brighttag\\.com/\" to=\"https://www.brighttag.com/\"/></ruleset>", "<ruleset name=\"BrightTag (partial)\" f=\"BrightTag.xml\"><securecookie host=\"^(?:\\.?control|\\.s)\\.thebrighttag\\.com$\" name=\".+\"/><rule from=\"^http://[ab]\\.s\\.thebrighttag\\.com/\" to=\"https://s.thebrighttag.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bright Hub.com (partial)\" f=\"Bright_Hub.com.xml\"><rule from=\"^http://s\\.brighthub\\.com/s/css/\" to=\"https://ss.brighthub.com/s/css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bright Kids NYC\" f=\"Bright_Kids_NYC.xml\"><securecookie host=\"^(?:www)?\\.brightkidsnyc.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?brightkidsnyc\\.com/\" to=\"https://www.brightkidsnyc.com/\"/></ruleset>", "<ruleset name=\"Brightcove (partial)\" f=\"Brightcove.xml\"><exclusion pattern=\"^http://admin\\.brightcove\\.com/crossdomain\\.xml\"/><exclusion pattern=\"^https://secure.brightcove.com/services/viewer/\"/><exclusion pattern=\"^http://admin\\.brightcove\\.com/viewer/us20[\\d\\.]+/BrightcoveBootloader\\.swf(?:\\?|$)\"/><exclusion pattern=\"^http://admin\\.brightcove\\.com/viewer/.+\\.swf(?:\\?|$)\"/><securecookie host=\"^\\w.*\\.brightcove\\.com$\" name=\".+\"/><rule from=\"^http://c\\.brightcove\\.com/services/viewer/\" to=\"https://secure.brightcove.com/services/viewer/\"/><rule from=\"^http://((?:api|(?:read\\.|transcode\\.|write\\.)?appcloud|blog|brightcove01-secure|docs|files|images\\.gallery|goku|img|link|metrics|my|register|secure|services|signin|solutions|support|videocloud|www)\\.)?brightcove\\.com/\" to=\"https://$1brightcove.com/\"/><rule from=\"^http://brightcove01\\.brightcove\\.com/\" to=\"https://brightcove01-secure.brightcove.com/\"/><rule from=\"^http://s?admin\\.brightcove\\.com/\" to=\"https://sadmin.brightcove.com/\"/><rule from=\"^http://opensource\\.brightcove\\.com/+[^?]*\" to=\"https://docs.brightcove.com/en/video-cloud/open-source/\"/></ruleset>", "<ruleset name=\"brighteroption.com\" f=\"Brighteroption.com.xml\"><securecookie host=\"^\\.brighteroption\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brightidea.com (partial)\" f=\"Brightidea.xml\"><securecookie host=\"^\\.brightidea\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brighton (partial)\" f=\"Brighton.xml\"><securecookie host=\"\\.brightoncollectibles\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?brighton\\.com/(content/|css/|Public/|Shop/Customer(?:$|\\?|/)|store_image/|Styles/)\" to=\"https://$1brighton.com/$2\"/><rule from=\"^http://(www\\.)?brightoncollectibles\\.com/\" to=\"https://$1brightoncollectibles.com/\"/></ruleset>", "<ruleset name=\"Brilig.com\" default_off=\"connection refused\" f=\"Brilig.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bring the Gig\" f=\"Bring_the_Gig.xml\"><securecookie host=\"^\\.bringthegig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brinkster.com\" f=\"Brinkster.com.xml\"><securecookie host=\"^(?:webmail)?\\.brinkster\\.com$\" name=\".+\"/><rule from=\"^http://((?:help|secure|webmail|www)\\.)?brinkster\\.com/\" to=\"https://$1brinkster.com/\"/></ruleset>", "<ruleset name=\"BritAc.ac.uk (partial)\" f=\"BritAc.ac.uk.xml\"><exclusion pattern=\"^http://www\\.britac\\.ac\\.uk/+(?!cmsfiles/|images/|styles/)\"/><securecookie host=\"^ols\\.britac\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://britac\\.ac\\.uk/\" to=\"https://www.britac.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Britannica.com (partial)\" f=\"Britannica.com.xml\"><securecookie host=\"^(?:safe1|www)?\\.britannica\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?britannica\\.com/\" to=\"https://www.britannica.com/\"/><rule from=\"^http://safe(1)?\\.britannica\\.com/\" to=\"https://safe$1.britannica.com/\"/></ruleset>", "<ruleset name=\"Britcoin.co.uk\" default_off=\"failed ruleset test\" f=\"Britcoin.co.uk.xml\"><rule from=\"^http://(?:www\\.)?britcoin\\.co\\.uk/\" to=\"https://www.britcoin.co.uk/\"/></ruleset>", "<ruleset name=\"BriteObjects\" default_off=\"mismatched\" f=\"BriteObjects.xml\"><rule from=\"^http://(?:www\\.)?briteobjects\\.com/\" to=\"https://www.briteobjects.com/\"/></ruleset>", "<ruleset name=\"British Airline Pilots Association\" f=\"British_Airline_Pilots_Association.xml\"><rule from=\"^http://balpa\\.org/\" to=\"https://www.balpa.org/\"/><rule from=\"^http://([^/:@]+)?\\.balpa\\.org/\" to=\"https://$1.balpa.org/\"/></ruleset>", "<ruleset name=\"British Gas (partial)\" f=\"British_Gas.xml\"><rule from=\"^http://88\\.208\\.232\\.88/wp-content/\" to=\"https://www.britishgas.co.uk/business/blog/wp-content/\"/><rule from=\"^http://(?:www\\.)?britishgas\\.co\\.uk/GetAQuote(\\?.*)?$\" to=\"https://www.britishgas.co.uk/GetAQuote/$1\"/><rule from=\"^http://(?:www\\.)?britishgas\\.co\\.uk/(apps/|content/|etc/|(?:BGBOnline|business/(?:blog/(?:scripts|wp-content)/|ManageAccount||manage-account|QuerryManageMent)|GetAQuote|HelpAndAdvice|HomeMove|Login|Registration|ViewQuoteDetails|Your_Account)(?:$|\\?|/)|images/|libs/|script/|style/)\" to=\"https://www.britishgas.co.uk/$1\"/></ruleset>", "<ruleset name=\"British Library (partial)\" f=\"British_Library.xml\"><securecookie host=\"^pressandpolicy\\.bl\\.uk$\" name=\".+\"/><rule from=\"^http://pressandpolicy\\.bl\\.uk/\" to=\"https://pressandpolicy.bl.uk/\"/></ruleset>", "<ruleset name=\"British National Formulary (partial)\" f=\"British_National_Formulary.xml\"><rule from=\"^http://(?:www\\.)?bnf\\.org/bnf/((?:account|login|password|request_registration)\\.htm|images/|style/|theme/)\" to=\"https://www.bnf.org/bnf/$1\"/></ruleset>", "<ruleset name=\"British Red Cross (partial)\" f=\"British_Red_Cross.xml\"><exclusion pattern=\"^http://(?:m\\.|www\\.)?redcross\\.org\\.uk/(?!(?:[\\w/-]+/)?~/media/|css/|images/)\"/><securecookie host=\"^\\.?giftshop\\.redcross\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redcross\\.org\\.uk/\" to=\"https://www.redcross.org.uk/\"/><rule from=\"^http://(?:www\\.)?giftshop\\.redcross\\.org\\.uk/\" to=\"https://giftshop.redcross.org.uk/\"/><rule from=\"^http://((?:www\\.)?everydayfirstaid|m)\\.redcross\\.org\\.uk/\" to=\"https://$1.redcross.org.uk/\"/></ruleset>", "<ruleset name=\"Brixwork.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Brixwork.com.xml\"><securecookie host=\"^www\\.brixwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"brmlab\" f=\"Brmlab.cz.xml\"><securecookie host=\"^(?:www\\.)?brmlab\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?brmlab\\.cz/\" to=\"https://www.brmlab.cz/\"/></ruleset>", "<ruleset name=\"Bro.org (partial)\" f=\"Bro.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broad Institute\" f=\"Broad-Institute.xml\"><securecookie host=\"(?:www)?\\.broadinstitute\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?broadinstitute\\.org/\" to=\"https://www.broadinstitute.org/\"/></ruleset>", "<ruleset name=\"Broadband-Forum.org\" f=\"Broadband-Forum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadband Convergent\" default_off=\"failed ruleset test\" f=\"Broadband_Convergent.xml\"><securecookie host=\"^www\\.broadbandconvergent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadband Map.gov\" f=\"Broadband_Map.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadbandbuyer.co.uk\" f=\"Broadbandbuyer.co.uk.xml\"><securecookie host=\"^www\\.broadbandbuyer\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://broadbandbuyer\\.co\\.uk/\" to=\"https://www.broadbandbuyer.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"broadbandchoices.co.uk\" default_off=\"mismatched\" f=\"Broadbandchoices.co.uk.xml\"><rule from=\"^http://(?:www\\.)?broadbandchoices\\.co\\.uk/\" to=\"https://www.broadbandchoices.co.uk/\"/></ruleset>", "<ruleset name=\"BroadcastJobs.co.uk (partial)\" f=\"BroadcastJobs.co.uk.xml\"><securecookie host=\"^rs\\.broadcastjobs\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://rs\\.broadcastjobs\\.co\\.uk/\" to=\"https://rs.broadcastjobs.co.uk/\"/></ruleset>", "<ruleset name=\"BroadcasTheNet\" f=\"Broadcasthe.net.xml\"><securecookie host=\"^(?:.*\\.)?broadcastthe\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom.com (partial)\" f=\"Broadcom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom Foundation.org\" f=\"Broadcom_Foundation.org.xml\"><securecookie host=\"^www\\.broadcomfoundation\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?broadcomfoundation\\.org/\" to=\"https://www.broadcomfoundation.org/\"/></ruleset>", "<ruleset name=\"Broadland.gov.uk (partial)\" platform=\"mixedcontent\" f=\"Broadland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?broadland\\.gov\\.uk/\" to=\"https://secure.broadland.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brockman\" f=\"Brockman.xml\"><rule from=\"^http://(?:www\\.)?brockman\\.com/\" to=\"https://www.brockman.com/\"/></ruleset>", "<ruleset name=\"Brokentoaster\" default_off=\"mismatch\" f=\"Brokentoaster.xml\"><rule from=\"^http://(?:www\\.)?brokentoaster\\.com/\" to=\"https://www.brokentoaster.com/\"/></ruleset>", "<ruleset name=\"Bromley.gov.uk\" f=\"Bromley.gov.uk.xml\"><securecookie host=\"^\\.?www\\.bromley\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bromley\\.gov\\.uk/\" to=\"https://www.bromley.gov.uk/\"/><rule from=\"^http://fix\\.bromley\\.gov\\.uk/\" to=\"https://fix.bromley.gov.uk/\"/></ruleset>", "<ruleset name=\"Bronto Software (partial)\" f=\"Bronto_Software.xml\"><securecookie host=\"^\\.(?:bm23|fyleio)\\.com$\" name=\"^CISFOR$\"/><securecookie host=\"^\\.app\\.bronto\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.bm23\\.com/\" to=\"https://$1.bm23.com/\"/><rule from=\"^http://(app|appstatic|content\\d*|hosting|static)\\.bronto\\.com/\" to=\"https://$1.bronto.com/\"/><rule from=\"^http://mkto\\.bronto\\.com/(cs|image|j|r)s/\" to=\"https://na-c.marketo.com/$1s/\"/><rule from=\"^http://(?:www\\.)?fyleio\\.com/(?:\\?.*)?$\" to=\"https://app.bronto.com/login/index/login/\"/><rule from=\"^http://hosting\\.fyleio\\.com/\" to=\"https://hosting.fyleio.com/\"/></ruleset>", "<ruleset name=\"Brookings.edu (partial)\" f=\"Brookings_Institution.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brookline College.edu\" f=\"Brookline_College.edu.xml\"><securecookie host=\"^\\.?brooklinecollege\\.edu$\" name=\".+\"/><rule from=\"^http://((?:apply|fa|fbapp|mysite|www)\\.)?brooklinecollege\\.edu/\" to=\"https://$1brooklinecollege.edu/\"/></ruleset>", "<ruleset name=\"Brookside Capital\" default_off=\"failed ruleset test\" f=\"Brookside_Capital.xml\"><securecookie host=\"^(?:.*\\.)?brooksidefund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suny Broome.edu (partial)\" f=\"BroomeCC.xml\"><exclusion pattern=\"^http://(?:news|www[1-3])\\.sunybroome\\.edu/+(?!\\w+/wp-content/|wp-content/)\"/><securecookie host=\"^banner\\.sunybroome\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brown Paper Tickets (partial)\" default_off=\"failed ruleset test\" f=\"Brown-Paper-Tickets.xml\"><exclusion pattern=\"^http://community\\.\"/><exclusion pattern=\"^http://(?:www\\.)?brownpapertickets\\.com/event/\"/><securecookie host=\"^m\\.bpt\\.me$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?brownpapertickets\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bpt\\.(?:bz|me)/\" to=\"https://www.brownpapertickets.com/\"/><rule from=\"^http://m\\.bpt\\.(?:bz|me)/\" to=\"https://m.bpt.me/\"/><rule from=\"^http://brownpapertickets\\.com/\" to=\"https://www.brownpapertickets.com/\"/><rule from=\"^http://(\\w+)\\.brownpapertickets\\.com/\" to=\"https://$1.brownpapertickets.com/\"/></ruleset>", "<ruleset name=\"Brown.edu (partial)\" f=\"Brown_University.xml\"><securecookie host=\".+\\.brown\\.edu$\" name=\".+\"/><rule from=\"^http://www\\.research\\.brown\\.edu/\" to=\"https://research.brown.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowseAloud.com\" f=\"BrowseAloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Browser-Statistik.de\" f=\"Browser-Statistik.de.xml\"><securecookie host=\"^www\\.browser-statistik\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowserID.org\" f=\"BrowserID.xml\"><securecookie host=\"^(?:www\\.)?browserid\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowserLeaks.com\" f=\"BrowserLeaks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowserShots\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BrowserShots.xml\"><securecookie host=\"^(?:.+\\.)?browsershots\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?browsershots\\.org/\" to=\"https://browsershots.org/\"/></ruleset>", "<ruleset name=\"Browser Addon.com\" default_off=\"self-signed\" f=\"Browser_Addon.com.xml\"><securecookie host=\"^(?:www\\.)?browseraddon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?browseraddon\\.com/\" to=\"https://www.browseraddon.com/\"/></ruleset>", "<ruleset name=\"Browser Hacker.com\" f=\"Browser_Hacker.com.xml\"><rule from=\"^http://www\\.browserhacker\\.com/\" to=\"https://browserhacker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"browsermob.com\" default_off=\"expired\" f=\"Browsermob.com.xml\"><rule from=\"^http://(?:www\\.)?browsermob\\.com/\" to=\"https://browsermob.com/\"/></ruleset>", "<ruleset name=\"BruCON.org (partial)\" default_off=\"self-signed\" f=\"BruCON.org.xml\"><rule from=\"^http://ssl\\.brucon\\.org/\" to=\"https://ssl.brucon.org/\"/></ruleset>", "<ruleset name=\"Bruce Perens\" f=\"Bruce-Perens.xml\"><securecookie host=\"^(?:w*\\.)?perens\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bruno Postle\" default_off=\"expired, self-signed\" f=\"Bruno-Postle.xml\"><rule from=\"^http://www\\.bruno\\.postle\\.net/\" to=\"https://www.bruno.postle.net/\"/></ruleset>", "<ruleset name=\"Bruteforce.gr (Partial)\" f=\"Bruteforce.gr.xml\"><rule from=\"^http://(www\\.)?bruteforce\\.gr/\" to=\"https://bruteforce.gr/\"/></ruleset>", "<ruleset name=\"btc.to\" default_off=\"timeout\" f=\"Btc.to.xml\"><securecookie host=\"^btc\\.to$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?btc\\.to/\" to=\"https://btc.to/\"/></ruleset>", "<ruleset name=\"BtcTrade.com\" f=\"BtcTrade.com.xml\"><securecookie host=\"^www\\.btctrade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bter.com (partial)\" f=\"Bter.com.xml\"><securecookie host=\"^\\.?bter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Btp.police.uk\" f=\"Btp.police.uk.xml\"><rule from=\"^http://(www\\.)?btp\\.police\\.uk/\" to=\"https://www.btp.police.uk/\"/></ruleset>", "<ruleset name=\"Bttrack.com\" f=\"Bttrack.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BucketListly.com (partial)\" default_off=\"failed ruleset test\" f=\"BucketListly.com.xml\"><rule from=\"^http://(?:www\\.)?bucketlistly\\.com/(?=favicon\\.ico|users/new(?:$|[?/]))\" to=\"https://www.bucketlistly.com/\"/></ruleset>", "<ruleset name=\"Bucket Explorer.com (partial)\" f=\"Bucket_Explorer.com.xml\"><rule from=\"^http://(?:www\\.)?bucketexplorer\\.com/favicon\\.ico\" to=\"https://d1davc07w1ubq9.cloudfront.net/favicon.ico\"/><rule from=\"^http://coppermine\\.bucketexplorer\\.com/\" to=\"https://s3.amazonaws.com/coppermine.bucketexplorer.com/\"/><rule from=\"^http://images\\.bucketexplorer\\.com/\" to=\"https://d1davc07w1ubq9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bucknell University (problematic)\" default_off=\"mismatched, self-signed\" f=\"Bucknell_University-problematic.xml\"><rule from=\"^http://(?:www\\.)?b-link\\.bucknell\\.edu/\" to=\"https://www.b-link.bucknell.edu/\"/></ruleset>", "<ruleset name=\"Bucknell University (partial)\" f=\"Bucknell_University.xml\"><securecookie host=\"^(?:www\\.)?bucknell\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bucyrus Telegraph Forum\" default_off=\"failed ruleset test\" f=\"Bucyrus_Telegraph_Forum.xml\"><securecookie host=\"^www\\.bucyrustelegraphforum\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?bucyrustelegraphforum\\.com/\" to=\"https://www.bucyrustelegraphforum.com/\"/></ruleset>", "<ruleset name=\"BuddyCube.com\" f=\"BuddyCube.com.xml\"><securecookie host=\"^(?:www\\.)?buddycube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuddyPress.org\" f=\"BuddyPress.org.xml\"><rule from=\"^http://(\\w+\\.)?buddypress\\.org/\" to=\"https://$1buddypress.org/\"/></ruleset>", "<ruleset name=\"Budget Insurance.com\" f=\"Budget_Insurance.xml\"><securecookie host=\".\\.budgetinsurance\\.com$\" name=\".\"/><rule from=\"^http://budgetinsurance\\.com/\" to=\"https://www.budgetinsurance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Budgetgolf.se\" f=\"Budgetgolf.se.xml\"><rule from=\"^http://www\\.budgetgolf\\.se/\" to=\"https://www.budgetgolf.se/\"/><rule from=\"^http://budgetgolf\\.se/\" to=\"https://www.budgetgolf.se/\"/></ruleset>", "<ruleset name=\"budgetkredit.ch (partial)\" f=\"Budgetkredit.ch.xml\"><rule from=\"^http://(www\\.)?budgetkredit\\.ch/(core/|css/|de/kredit/kreditantrag/antrag\\.php|pix/)\" to=\"https://$1budgetkredit.ch/$2\"/></ruleset>", "<ruleset name=\"Buds Gun Shop\" f=\"Buds_Gun_Shop.xml\"><securecookie host=\"^\\.budsgunshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bürger-CERT\" default_off=\"failed ruleset test\" f=\"Buerger-CERT.xml\"><securecookie host=\"^(?:.*\\.)?buerger-cert\\.de$\" name=\".+\"/><rule from=\"^http://buerger-cert\\.de/\" to=\"https://www.buerger-cert.de/\"/><rule from=\"^http://([^/:@]+)?\\.buerger-cert\\.de/\" to=\"https://$1.buerger-cert.de/\"/></ruleset>", "<ruleset name=\"Buffalo-Global.com\" default_off=\"mismatched\" f=\"Buffalo-Global.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo-Technology.com\" default_off=\"mismatched, self-signed\" f=\"Buffalo-Technology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo.edu (false MCB)\" platform=\"mixedcontent\" f=\"Buffalo.edu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo State College (problematic)\" default_off=\"mismatched, self-signed\" f=\"Buffalo_State_College-problematic.xml\"><rule from=\"^http://alumni\\.buffalostate\\.edu/\" to=\"https://alumni.buffalostate.edu/\"/></ruleset>", "<ruleset name=\"Buffalo State College (partial)\" default_off=\"failed ruleset test\" f=\"Buffalo_State_College.xml\"><securecookie host=\"^.+\\.buffalostate\\.edu$\" name=\".+\"/><rule from=\"^http://((?:bscintra|bsclib01|catalog|chngpwd|giving|newsandevents|owa|president|sharepoint|www|wwwprod)\\.)?buffalostate\\.edu/\" to=\"https://$1buffalostate.edu/\"/><rule from=\"^http://email\\.buffalostate\\.edu/(?:.*)\" to=\"https://owa.buffalostate.edu/owa/\"/></ruleset>", "<ruleset name=\"Buffer app.com (partial)\" f=\"Buffer.xml\"><securecookie host=\"^(?:(?:cibot|happiness|widgets|www)\\.)?bufferapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bufferbloat.net\" default_off=\"expired\" f=\"Bufferbloat.xml\"><securecookie host=\"^www\\.bufferbloat\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BufferedIO\" default_off=\"Cacert signed\" f=\"BufferedIO.xml\"><securecookie host=\"^(?:.+\\.)?buffered\\.io$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?buffered\\.io/\" to=\"https://buffered.io/\"/></ruleset>", "<ruleset name=\"BugMeNot.com\" default_off=\"failed ruleset test\" f=\"BugMeNot.com.xml\"><securecookie host=\"^\\.?bugmenot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugcrowd.com\" f=\"Bugcrowd.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugcrowd user content.com\" f=\"Bugcrowd_user_content.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugsnag.com (partial)\" f=\"Bugsnag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bugzil.la\" f=\"Bugzil.la.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugzilla.org\" f=\"Bugzilla.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Build Better.Software\" f=\"Build_Better.Software.xml\"><securecookie host=\"^\\.buildbetter\\.software$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Build it Break it.org\" f=\"Build_it_Break_it.org.xml\"><securecookie host=\"^www\\.builditbreakit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuiltWith.com\" f=\"BuiltWith.com.xml\"><rule from=\"^http://((?:api|blog|kb|s-orig|trends|trendspro|www)\\.)?builtwith\\.com/\" to=\"https://$1builtwith.com/\"/></ruleset>", "<ruleset name=\"BulbMan\" default_off=\"failed ruleset test\" f=\"Bulbman.xml\"><rule from=\"^http://(?:www\\.)?bulbman\\.com/\" to=\"https://www.bulbman.com/\"/></ruleset>", "<ruleset name=\"BulkSMS\" f=\"BulkSMS.xml\"><securecookie host=\"^(?:.+\\.)?bulksms\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bulksms\\.co\\.uk/\" to=\"https://www.bulksms.co.uk/\"/></ruleset>", "<ruleset name=\"BulletProof Meteor.com\" f=\"BulletProof_Meteor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bulletin.net\" f=\"Bulletin.net.xml\"><securecookie host=\"^(?:www)?\\.bulletin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bulletin Messenger.net\" f=\"Bulletin_Messenger.net.xml\"><securecookie host=\"^m\\.bulletinmessenger\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bulletinmessenger\\.net/\" to=\"https://www.bulletinmessenger.net/\"/><rule from=\"^http://m\\.bulletinmessenger\\.net/\" to=\"https://m.bulletinmessenger.net/\"/></ruleset>", "<ruleset name=\"Bulletproof Exec.com (partial)\" f=\"Bulletproof_Exec.com.xml\"><rule from=\"^http://(www\\.)?bulletproofexec\\.com/(?!/*(?:$|\\?)|(?:category/podcasts|contact|have-dave-asprey-speak-at-your-next-event|upgraded-whey)(?:$|[?/]))\" to=\"https://$1bulletproofexec.com/\"/><rule from=\"^http://support\\.bulletproofexec\\.com/favicon\\.ico\" to=\"https://bulletproofexec.zendesk.com/favicon.ico\"/></ruleset>", "<ruleset name=\"Bullguard\" f=\"Bullguard.com.xml\"><rule from=\"^http://www\\.bullguard\\.com/\" to=\"https://www.bullguard.com/\"/><rule from=\"^http://bullguard\\.com/\" to=\"https://www.bullguard.com/\"/></ruleset>", "<ruleset name=\"BullionStar.com\" f=\"BullionStar.com.xml\"><securecookie host=\"^(?:static|www)\\.bullionstar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bullock Inc.com\" f=\"Bullock_Inc.com.xml\"><securecookie host=\"^(?:www\\.)?bullockinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bunadformenn.info (partial)\" f=\"Bunadformenn.info.xml\"><rule from=\"^http://cdn\\.bunadformenn\\.info/\" to=\"https://dml5atgx9m0j8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bunchball.com (partial)\" f=\"Bunchball.com.xml\"><exclusion pattern=\"^http://go\\.bunchball\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://go\\.bunchball\\.com/+(?:\\?.*)?$\" to=\"https://www.bunchball.com/\"/><rule from=\"^http://go\\.bunchball\\.com/\" to=\"https://na-sjl.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bunchball.net\" f=\"Bunchball.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundanon Trust\" default_off=\"failed ruleset test\" f=\"BundanonTrust.xml\"><rule from=\"^http://(?:www\\.)?bundanon\\.com\\.au/\" to=\"https://www.bundanon.com.au/\"/></ruleset>", "<ruleset name=\"Bundesamt für Verfassungsschutz\" f=\"Bundesamt_fuer_Verfassungsschutz.xml\"><rule from=\"^http://verfassungsschutz\\.de/\" to=\"https://www.verfassungsschutz.de/\"/><rule from=\"^http://([^/:@]+)?\\.verfassungsschutz\\.de/\" to=\"https://$1.verfassungsschutz.de/\"/></ruleset>", "<ruleset name=\"Bundeskanzlerin\" f=\"Bundeskanzlerin.xml\"><rule from=\"^http://bundeskanzlerin\\.de/\" to=\"https://www.bundeskanzlerin.de/\"/><rule from=\"^http://([^/:@]+)?\\.bundeskanzlerin\\.de/\" to=\"https://$1.bundeskanzlerin.de/\"/></ruleset>", "<ruleset name=\"Bundesministerium des Innern\" f=\"Bundesministerium_des_Innern.xml\"><rule from=\"^http://bmi\\.bund\\.de/\" to=\"https://www.bmi.bund.de/\"/><rule from=\"^http://([^/:@]+)?\\.bmi\\.bund\\.de/\" to=\"https://$1.bmi.bund.de/\"/></ruleset>", "<ruleset name=\"Bundesnachrichtendienst\" f=\"Bundesnachrichtendienst.xml\"><rule from=\"^http://bnd\\.bund\\.de/\" to=\"https://www.bnd.bund.de/\"/><rule from=\"^http://([^/:@]+)?\\.bnd\\.bund\\.de/\" to=\"https://$1.bnd.bund.de/\"/></ruleset>", "<ruleset name=\"Bundesnetzagentur\" default_off=\"failed ruleset test\" f=\"Bundesnetzagentur.xml\"><securecookie host=\"^www\\.bundesnetzagentur\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bundesnetzagentur\\.de/\" to=\"https://www.bundesnetzagentur.de/\"/></ruleset>", "<ruleset name=\"Bundespolizei\" f=\"Bundespolizei.xml\"><rule from=\"^http://bundespolizei\\.de/\" to=\"https://www.bundespolizei.de/\"/><rule from=\"^http://([^/:@]+)?\\.bundespolizei\\.de/\" to=\"https://$1.bundespolizei.de/\"/></ruleset>", "<ruleset name=\"Bundesrat.de\" f=\"Bundesrat.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesverband IT-Mittelstand\" default_off=\"expired, mismatched\" f=\"Bundesverband_IT-Mittelstand.xml\"><rule from=\"^http://(?:www\\.)?bitmi\\.de/\" to=\"https://bitmi.de/\"/></ruleset>", "<ruleset name=\"Bundesverfassungsgericht.de\" f=\"Bundesverfassungsgericht.xml\"><securecookie host=\"^(.*\\.)?bundesverfassungsgericht\\.de$\" name=\".+\"/><securecookie host=\"^(.*\\.)?bverfg\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bundle.media (partial)\" f=\"Bundle.media.xml\"><securecookie host=\"^\\.bundle\\.media$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundlestars.com\" f=\"Bundlestars.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bungie\" f=\"Bungie.xml\"><rule from=\"^http://(?:www\\.)?bungie\\.net/\" to=\"https://www.bungie.net/\"/></ruleset>", "<ruleset name=\"Bupa\" f=\"Bupa.xml\"><exclusion pattern=\"^http://(www\\.)?bupa\\.com/$\"/><securecookie host=\"^(www\\.)?bupa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bureau of Infrastructure, Transport and Regional Economics\" f=\"BureauofInfrastructureTransportandRegionalEconomics.xml\"><rule from=\"^http://(?:www\\.)?bitre\\.gov\\.au/\" to=\"https://www.bitre.gov.au/\"/></ruleset>", "<ruleset name=\"Burlington Free Press\" default_off=\"failed ruleset test\" f=\"Burlington_Free_Press.xml\"><securecookie host=\"^www\\.burlingtonfreepress\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?burlingtonfreepress\\.com/\" to=\"https://www.burlingtonfreepress.com/\"/></ruleset>", "<ruleset name=\"Burning Shed\" f=\"Burning-Shed.xml\"><securecookie host=\"^(?:www\\.)?burningshed\\.co(?:m|(?:\\.uk))$\" name=\".+\"/><rule from=\"^http://(www\\.)?burningshed\\.co(m|(\\.uk))/\" to=\"https://$1burningshed.co$2/\"/></ruleset>", "<ruleset name=\"Burnley.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Burnley.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Burnley.gov.uk (partial)\" f=\"Burnley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BurstNET (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BurstNET.xml\"><securecookie host=\"^.+\\.burst(?:\\.net|net\\.eu)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Burst Media\" default_off=\"failed ruleset test\" f=\"Burst_Media.xml\"><securecookie host=\"^(?:www)?\\.burstmedia\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?burstmedia\\.co(\\.uk|m)/\" to=\"https://www.burstmedia.co$1/\"/></ruleset>", "<ruleset name=\"Burstnet\" f=\"Burstnet.com.xml\"><securecookie host=\"^\\.burstnet\\.com$\" name=\"^BI\\d+$\"/><rule from=\"^http://www\\.burstnet\\.com/\" to=\"https://www.burstnet.com/\"/></ruleset>", "<ruleset name=\"Burt (mismatches)\" default_off=\"mismatch\" f=\"Burt-mismatches.xml\"><rule from=\"^http://(?:www\\.)?burtcorp\\.com/\" to=\"https://www.burtcorp.com/\"/></ruleset>", "<ruleset name=\"Burt.io (partial)\" f=\"Burt.io.xml\"><rule from=\"^http://m\\.burt\\.io/\" to=\"https://m.burt.io/\"/></ruleset>", "<ruleset name=\"Burt (partial)\" f=\"Burt.xml\"><rule from=\"^http://measure\\.richmetrics\\.com/\" to=\"https://d3q6px0y2suh5n.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Burt hub.com\" f=\"Burt_hub.com.xml\"><securecookie host=\"^\\.burthub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buscapé (mismatches)\" default_off=\"mismatch\" f=\"Buscape-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BusinessAU\" f=\"BusinessAU.xml\"><rule from=\"^http://(?:www\\.)?abr\\.business\\.gov\\.au/\" to=\"https://abr.business.gov.au/\"/><rule from=\"^http://(?:www\\.)?ablis\\.business\\.gov\\.au/\" to=\"https://ablis.business.gov.au/\"/></ruleset>", "<ruleset name=\"BusinessInsider.com (partial)\" f=\"BusinessInsider.xml\"><exclusion pattern=\"^http://www\\.businessinsider\\.com/(?!account|assets/|favicon\\.ico|login|register)\"/><exclusion pattern=\"^http://jobs\\.businessinsider\\.com/(?!c/)\"/><securecookie host=\"^\\.businessinsider\\.com$\" name=\"^OAX$\"/><securecookie host=\"^(?:intelligence|oascentral)\\.businessinsider\\.com$\" name=\".+\"/><rule from=\"^http://jobs\\.businessinsider\\.com/\" to=\"https://businessinsider.jobamatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BusinessWeek.com (partial)\" default_off=\"failed ruleset test\" f=\"BusinessWeek.com.xml\"><rule from=\"^http://bx\\.businessweek\\.com/\" to=\"https://bx.businessweek.com/\"/></ruleset>", "<ruleset name=\"Business 2 Community (partial)\" f=\"Business_2_Community.xml\"><rule from=\"^http://cdn\\d?\\.business2community\\.com/\" to=\"https://a413375ddb981b128589-d09eee90a0d59eeeae019b649aa3ca91.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Business Catalyst.com (mismatched)\" default_off=\"mismatched\" f=\"Business_Catalyst.com-problematic.xml\"><securecookie host=\"^\\.?businesscatalyst\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?businesscatalyst\\.com/\" to=\"https://businesscatalyst.com/\"/></ruleset>", "<ruleset name=\"Business Catalyst.com (partial)\" f=\"Business_Catalyst.com.xml\"><rule from=\"^http://musecdn2\\.businesscatalyst\\.com/\" to=\"https://d35mridaos0l3l.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Business Companion.info\" f=\"Business_Companion.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Business Link.gov.uk\" f=\"Business_Link.gov.uk.xml\"><rule from=\"^http://businesslink\\.gov\\.uk/\" to=\"https://www.businesslink.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bussgods.se\" f=\"Bussgods.se.xml\"><rule from=\"^http://(www\\.)?bussgods\\.se/\" to=\"https://www.bussgods.se/\"/></ruleset>", "<ruleset name=\"busybox.net (partial)\" default_off=\"self-signed\" f=\"Busybox.net.xml\"><securecookie host=\"^bugs\\.busybox\\.net$\" name=\".+\"/><rule from=\"^http://bugs\\.busybox\\.net/\" to=\"https://bugs.busybox.net/\"/></ruleset>", "<ruleset name=\"Buttercoin.com\" default_off=\"522\" f=\"Buttercoin.com.xml\"><securecookie host=\"^\\.buttercoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Butterfly Network\" f=\"Butterfly-Network.xml\"><securecookie host=\"(www\\.)?butterflynetinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Butterfly Labs.com (partial)\" f=\"Butterfly_Labs.com.xml\"><securecookie host=\"^(?:forum|product)s\\.butterflylabs\\.com$\" name=\".+\"/><rule from=\"^http://(forum|product)s\\.butterflylabs\\.com/\" to=\"https://$1s.butterflylabs.com/\"/></ruleset>", "<ruleset name=\"Buy Premium Tech (partial)\" default_off=\"failed ruleset test\" f=\"Buy-Premium-Tech.xml\"><securecookie host=\"^secure\\.buypremiumtech\\.net$\" name=\".*\"/><rule from=\"^http://secure\\.buypremiumtech\\.net/\" to=\"https://secure.buypremiumtech.net/\"/></ruleset>", "<ruleset name=\"BuyBoard (partial)\" default_off=\"failed ruleset test\" f=\"BuyBoard.xml\"><exclusion pattern=\"^http://vendor\\.\"/><securecookie host=\"^.*\\.buyboard\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?buyboard\\.com/\" to=\"https://$1buyboard.com/\"/></ruleset>", "<ruleset name=\"BuySellAds (partial)\" f=\"BuySellAds.xml\"><rule from=\"^http://(www\\.)?buysellads\\.com/(favicon\\.ico|images/|stuff/|users(?:$|\\?|/))\" to=\"https://$1buysellads.com/$2\"/><rule from=\"^http://s3\\.buysellads\\.com/\" to=\"https://s3.buysellads.com/\"/></ruleset>", "<ruleset name=\"BuyTREZOR.com\" f=\"BuyTREZOR.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buy Veteran (partial)\" f=\"Buy_Veteran.xml\"><rule from=\"^http://(www\\.)?buyveteran\\.com/([aA]bout\\.aspx|[aA]pp_[tT]hemes/|BuyVeteran\\.ico|[gG]ift|[iI]mages/|Join_Step1\\.aspx|[pP]artner|[pP]ress|[sS]tore|[tT]estimonials\\.aspx)\" to=\"https://$1buyveteran.com/$2\"/></ruleset>", "<ruleset name=\"Buycott.com\" f=\"Buycott.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buycraft.net\" f=\"Buycraft.com.xml\"><securecookie host=\"^(?:server\\.|www\\.|\\.)?buycraft\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuzzFeed (broken)\" default_off=\"Redirect loops\" f=\"BuzzFeed.xml\"><securecookie host=\"^www\\.buzzfeed\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?buzzfeed\\.com/\" to=\"https://$1buzzfeed.com/\"/><rule from=\"^http://s(?:3-ak|3-ec)?\\.buzzfee?d\\.com/\" to=\"https://buzzfeed-static.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"BuzzFocus\" default_off=\"expired, mismatched, self-signed\" f=\"BuzzFocus.xml\"><securecookie host=\"^www\\.buzzfocus\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?buzzfocus\\.com/\" to=\"https://www.buzzfocus.com/\"/></ruleset>", "<ruleset name=\"Buzz VPN\" default_off=\"connection refused\" f=\"Buzz_VPN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzbytes.net\" default_off=\"failed ruleset test\" f=\"Buzzbytes.net.xml\"><securecookie host=\"^\\.buzzbytes\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzdock (partial)\" f=\"Buzzdock.xml\"><rule from=\"^http://(?:www\\.)?buzzdock\\.com/\" to=\"https://www.buzzdock.com/\"/><rule from=\"^http://edge\\.buzzdock\\.com/\" to=\"https://edge.buzzdock.com/\"/></ruleset>", "<ruleset name=\"buzzdoes.com\" default_off=\"failed ruleset test\" f=\"Buzzdoes.com.xml\"><securecookie host=\"^(?:www\\.)?buzzdoes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzeff\" default_off=\"mismatch\" f=\"Buzzeff.xml\"><rule from=\"^http://(?:www\\.)?buzzeff\\.com/\" to=\"https://buzzeff.com/\"/></ruleset>", "<ruleset name=\"Buzzhosting.org\" default_off=\"failed ruleset test\" f=\"Buzzhosting.org.xml\"><rule from=\"^http://(?:www\\.)?buzzhosting\\.org/\" to=\"https://www.buzzhosting.org/\"/></ruleset>", "<ruleset name=\"Buzzurl\" default_off=\"failed ruleset test\" f=\"Buzzurl.xml\"><securecookie host=\"^\\.?buzzurl\\.jp$\" name=\".+\"/><rule from=\"^http://(?:api\\.|cdn\\.)?buzzurl\\.jp/\" to=\"https://buzzurl.jp/\"/><rule from=\"^http://buzzurl\\.jp\\.eimg\\.jp/\" to=\"https://buzzurl.jp/\"/></ruleset>", "<ruleset name=\"bwbx.io\" f=\"Bwbx.io.xml\"><rule from=\"^http://images\\.bwbx\\.io/\" to=\"https://d3kfrplp7t05mg.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ByCraft.cz\" f=\"ByCraft.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"by David Wittig.com\" f=\"By_David_Wittig.com.xml\"><securecookie host=\"^\\.?bydavidwittig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bynum Law.net\" f=\"Bynum_Law.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Byte.nl\" f=\"Byte.nl.xml\"><securecookie host=\"^service\\.byte\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Byteark.com (partial)\" f=\"Byteark.com.xml\"><rule from=\"^http://(\\w+\\.(?:cdn|s3)|s3)\\.byteark\\.com/\" to=\"https://$1.byteark.com/\"/></ruleset>", "<ruleset name=\"Bytejail.com\" f=\"Bytejail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bytemark.co.uk (partial)\" f=\"Bytemark.co.uk.xml\"><securecookie host=\".+\\.bytemark\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bytename (buggy)\" default_off=\"breaks bytelove\" f=\"Bytename.xml\"><securecookie host=\"^(?:.*\\.)?bytelove\\.\\w{2,3}$\" name=\".*\"/><rule from=\"^http://(www\\.)?bytelove\\.com/\" to=\"https://$1bytelove.com/\"/><rule from=\"^http://(?:www\\.)?bytelove\\.([ds]e|fr|it|us)/\" to=\"https://bytelove.$1/\"/><rule from=\"^http://(www\\.)?bytename\\.com/\" to=\"https://$1bytename.com/\"/></ruleset>", "<ruleset name=\"Bytenoc.nl\" f=\"Bytenoc.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-Base\" platform=\"cacert\" f=\"C-Base.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-CEX.com\" f=\"C-CEX.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?c-cex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-SPAN Video.org (mismatched)\" default_off=\"mismatched\" f=\"C-SPAN_Video.org-falsemixed.xml\"><securecookie host=\"^www\\.c-spanvideo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-SPAN Video.org (partial)\" f=\"C-SPAN_Video.org.xml\"><rule from=\"^http://images\\.c-spanvideo\\.org/\" to=\"https://d1k1xzqsosjdry.cloudfront.net/\"/><rule from=\"^http://static\\.c-spanvideo\\.org/\" to=\"https://d29dpj283v14nc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"c-and-a.com\" f=\"C-and-a.com.xml\"><securecookie host=\"^(?:www)?\\.c-and-a\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?c-and-a\\.com/\" to=\"https://www.c-and-a.com/\"/><rule from=\"^http://postview\\.c-and-a\\.com/\" to=\"https://postview.c-and-a.com/\"/></ruleset>", "<ruleset name=\"c-ware.de\" f=\"C-ware.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?c-ware\\.de/\" to=\"https://dev.c-ware.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC.dk\" f=\"C.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3PB.net\" default_off=\"failed ruleset test\" f=\"C3PB.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3S.cc\" f=\"C3S.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3VOC.de\" f=\"C3VOC.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"c3noc.net\" f=\"C3noc.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3tag.com\" f=\"C3tag.com.xml\"><securecookie host=\"^(?:www\\.)?c3tag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C4SS.org\" f=\"C4SS.org.xml\"><rule from=\"^http://www\\.c4ss\\.org/\" to=\"https://c4ss.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"c4tw.net (partial)\" f=\"C4tw.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAB Forum.org\" f=\"CA-Browser_Forum.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA-PCR.fr\" f=\"CA-PCA.fr.xml\"><rule from=\"^http://(?:www\\.)?ca-pca\\.fr/\" to=\"https://www.ca-pca.fr/\"/></ruleset>", "<ruleset name=\"California State Board of Equalization\" f=\"CA-State-Board-of-Equalization.xml\"><securecookie host=\"^(?:efile|www)\\.boe\\.ca\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)boe\\.ca\\.gov/\" to=\"https://www.boe.ca.gov/\"/><rule from=\"^http://efile\\.boe\\.ca\\.gov/\" to=\"https://efile.boe.ca.gov/\"/></ruleset>", "<ruleset name=\"CA Technologies\" f=\"CA-Technologies.xml\"><rule from=\"^http://cloudmonitor\\.nimsoft\\.com/\" to=\"https://cloudmonitor.nimsoft.com/\"/></ruleset>", "<ruleset name=\"CA-mpr.jp\" f=\"CA-mpr.jp.xml\"><rule from=\"^http://ot\\.ca-mpr\\.jp/\" to=\"https://ot.ca-mpr.jp/\"/></ruleset>", "<ruleset name=\"CA.com (partial)\" f=\"CA.com.xml\"><exclusion pattern=\"^http://rewrite\\.ca\\.com/+(?!~/media/|[\\w/-]+/~/media/|assets/|favicon\\.ico)\"/><exclusion pattern=\"^http://trials\\.ca\\.com/+(?!favicon\\.ico|us/~/media/)\"/><exclusion pattern=\"^http://www\\.ca\\.com/+(?!assets-digital-commerce/|favicon\\.ico|styles/)\"/><securecookie host=\"^support\\.ca\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CADSI\" default_off=\"failed ruleset test\" f=\"CADSI.xml\"><securecookie host=\"^(?:www\\.)?defenceandsecurity\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAGW.org (partial)\" f=\"CAGW.org.xml\"><securecookie host=\"^\\.?secure\\.cagw\\.org$\" name=\".+\"/><rule from=\"^http://secure\\.cagw\\.org/\" to=\"https://secure.cagw.org/\"/></ruleset>", "<ruleset name=\"CAIR.com (partial)\" f=\"CAIR.com.xml\"><securecookie host=\"^(?:w*\\.)?cair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CANNEX\" f=\"CANNEX.xml\"><rule from=\"^http://(?:www\\.)?cannex\\.com/\" to=\"https://www.cannex.com/\"/></ruleset>", "<ruleset name=\"CAREpackage (partial)\" f=\"CAREpackage.xml\"><rule from=\"^http://stage\\.carepackage\\.org/sites/\" to=\"https://stage.carepackage.org/sites/\"/></ruleset>", "<ruleset name=\"CARI.net (self-signed)\" default_off=\"self-signed\" f=\"CARI.net-self-signed.xml\"><rule from=\"^http://webmail\\.cari\\.net/\" to=\"https://webmail.cari.net/\"/></ruleset>", "<ruleset name=\"CARI.net (partial)\" f=\"CARI.net.xml\"><securecookie host=\"^(?:.*\\.)?cari\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA Security Council\" f=\"CA_Security_Council.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CACert.org (CAcert)\" platform=\"cacert\" f=\"CAcert.xml\"><securecookie host=\"^\\w+\\.cacert\\.org$\" name=\".+\"/><exclusion pattern=\"\\.crt\"/><exclusion pattern=\"\\.crl\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBC Blueprint\" default_off=\"failed ruleset test\" f=\"CBC_Blueprint.xml\"><securecookie host=\"^www\\.cbcblueprint\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cbcblueprint\\.com/\" to=\"https://www.cbcblueprint.com/\"/></ruleset>", "<ruleset name=\"CBCrypt.org\" f=\"CBCrypt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBP.gov\" f=\"CBP.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cbp\\.gov/\" to=\"https://www.cbp.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBP.net.br\" f=\"CBP.net.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBS Sports Network \" default_off=\"mismatched\" f=\"CBS-Sports-Network.xml\"><securecookie host=\"^.*\\.cbssportsnetwork\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cbssportsnetwork\\.com/\" to=\"https://www.cbssportsnetwork.com/\"/></ruleset>", "<ruleset name=\"CBS (partial)\" default_off=\"failed ruleset test\" f=\"CBS.xml\"><exclusion pattern=\"^http://(?:www\\.)?cbs\\.com/(?!assets/|base/files/|Common/|favicon\\.ico|thumbnails/|user(?:$|\\?|/))\"/><rule from=\"^http://(www\\.)?cbs\\.com/user/?(?:\\?.*)?$\" to=\"https://$1cbs.com/user/settings/\"/><rule from=\"^http://(fileupload\\.intl\\.|www\\.)?cbs\\.com/\" to=\"https://$1cbs.com/\"/><rule from=\"^http://wwwimage\\.cbs\\.com/\" to=\"https://www.cbs.com/\"/><rule from=\"^http://markets\\.cbsnews\\.com/$\" to=\"https://markets.financialcontent.com/cbsnews\"/><rule from=\"^http://markets\\.cbsnews\\.com/\" to=\"https://markets.financialcontent.com/\"/><rule from=\"^http://www(?:image)?\\.cbsstatic\\.com/\" to=\"https://www.cbs.com/\"/><rule from=\"^http://om\\.cnet\\.com\\.au/\" to=\"https://zdau-cnet.122.2o7.net/\"/><rule from=\"^http://dw\\.com\\.com/\" to=\"https://dw.com.com/\"/></ruleset>", "<ruleset name=\"CBSI.com (partial)\" f=\"CBSI.com.xml\"><securecookie host=\"^dw\\.cbsi\\.com$\" name=\".+\"/><rule from=\"^http://dw\\.cbsi\\.com/\" to=\"https://dw.cbsi.com/\"/></ruleset>", "<ruleset name=\"CBSIstatic.com (partial)\" f=\"CBSIstatic.net.xml\"><rule from=\"^http://tpr\\d\\.cbsistatic\\.com/\" to=\"https://techproresearch-a.akamaihd.net/\"/><rule from=\"^http://tr\\d\\.cbsistatic\\.com/(?!fly/)\" to=\"https://techrepublic-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"CBS Local (partial)\" default_off=\"akamai cert\" f=\"CBS_Local.xml\"><securecookie host=\"^sacramento\\.cbslocal\\.com$\" name=\".+\"/><rule from=\"^http://sacramento\\.cbslocal\\.com/\" to=\"https://sacramento.cbslocal.com/\"/></ruleset>", "<ruleset name=\"CBS Store\" f=\"CBS_Store.xml\"><securecookie host=\"^\\.cbsstore\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?cbsstore\\.com/\" to=\"https://secure.cbsstore.com/\"/></ruleset>", "<ruleset name=\"CBendt.de (partial)\" f=\"CBendt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CC.com (partial)\" f=\"CC.com.xml\"><securecookie host=\"^\\.cc\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://direct\\.cc\\.com/\" to=\"https://direct.cc.com/\"/></ruleset>", "<ruleset name=\"CCAvenue\" f=\"CCAvenue.xml\"><securecookie host=\"^.+\\.ccavenue\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ccavenue\\.com/\" to=\"https://www.ccavenue.com/\"/><rule from=\"^http://(mars|world)\\.ccavenue\\.com/\" to=\"https://$1.ccavenue.com/\"/></ruleset>", "<ruleset name=\"CCBill.com (partial)\" f=\"CCBill.com.xml\"><securecookie host=\"^(?:support|www)\\.ccbill\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC-Mannheim.de\" f=\"CCC-Mannheim.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC.co.il\" f=\"CCC.co.il.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC.de (CAcert)\" platform=\"cacert\" f=\"CCC.de-cacert.xml\"><exclusion pattern=\"^http://(?:desalte|ds|dsrad|wahlcomputer|wuppa)\\.ccc\\.de/\"/><securecookie host=\"^(?:svn\\.berlin|hannover)\\.ccc\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ccc.de (partial)\" f=\"CCC.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC cloud.com\" f=\"CCC_cloud.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.com\" f=\"CCCure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.org\" f=\"CCCure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.training (false MCB)\" platform=\"mixedcontent\" f=\"CCCure.training-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.training (partial)\" f=\"CCCure.training.xml\"><rule from=\"^http://(www\\.)?cccure\\.training/(?=banners/|gzip_loader\\.php|media/|modules/|templates/)\" to=\"https://$1cccure.training/\"/></ruleset>", "<ruleset name=\"CCCv.de\" f=\"CCCv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCDCoE.org\" f=\"CCDCoE.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCEDK.com (partial)\" f=\"CCEDK.com.xml\"><securecookie host=\"^www\\.ccedk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ccedk\\.com/\" to=\"https://www.ccedk.com/\"/></ruleset>", "<ruleset name=\"CCH\" f=\"CCH.xml\"><securecookie host=\".*\\.cch(?:group)?\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?cch\\.com/\" to=\"https://$1cch.com/\"/><rule from=\"^http://(?:www\\.)?support\\.cch\\.com/\" to=\"https://support.cch.com/\"/><rule from=\"^http://(?:www\\.)?cchgroup\\.com/\" to=\"https://www.cchgroup.com/\"/><rule from=\"^http://(?:www\\.)?tax\\.cchgroup\\.com/\" to=\"https://tax.cchgroup.com/\"/><rule from=\"^http://(stage\\.)?prosystemfxsupport\\.tax\\.cchgroup\\.com/\" to=\"https://$1prosystemfxsupport.tax.cchgroup.com/\"/></ruleset>", "<ruleset name=\"CCH Information Solutions\" default_off=\"failed ruleset test\" f=\"CCH_Information_Solutions.xml\"><securecookie host=\"^(?:w*\\.)?cchcatalog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCIAnet.org\" f=\"CCIA.xml\"><securecookie host=\"^(?:www\\.)?ccianet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCRjustice.org\" f=\"CCRjustice.org.xml\"><securecookie host=\"^(?:w*\\.)?ccrjustice\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCS.com (partial)\" f=\"CCS.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ccs\\.com/\" to=\"https://www.ccs.com/\"/><rule from=\"^http://ebm\\.e\\.ccs\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://f\\.e\\.ccs\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDG Commerce.com\" f=\"CDG_Commerce.com.xml\"><securecookie host=\"^(?:myapp\\.|www\\.)?cdgcommerce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN-Apple.com\" f=\"CDN-Apple.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN-Redfin.com\" f=\"CDN-Redfin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN77.com (problematic)\" default_off=\"mismatched\" f=\"CDN77.com-problematic.xml\"><rule from=\"^http://([\\w\\-])\\.r\\.cdn77\\.net/\" to=\"https://$1.r.cdn77.net/\"/></ruleset>", "<ruleset name=\"CDN77.com (partial)\" f=\"CDN77.com.xml\"><rule from=\"^http://client\\.cdn77\\.com/\" to=\"https://client.cdn77.com/\"/><rule from=\"^http://([\\w-]+)\\.r\\.worldssl\\.net/\" to=\"https://$1.r.worldssl.net/\"/></ruleset>", "<ruleset name=\"CDNST.NET\" default_off=\"mismatch\" f=\"CDNST.NET.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN Instagram.com\" f=\"CDN_Instagram.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN WP.com\" f=\"CDN_WP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDNetworks (partial)\" default_off=\"failed ruleset test\" f=\"CDNetworks.xml\"><securecookie host=\"^pantherportal\\.cdnetworks\\.com$\" name=\".*\"/><rule from=\"^http://ssl(2)?\\.cdngc\\.net/\" to=\"https://ssl$1.cdngc.net/\"/><rule from=\"^http://cdnetworks\\.co\\.jp/$\" to=\"https://www.cdnetworks.co.jp/\"/><rule from=\"^http://pantherportal\\.cdnetworks\\.com/\" to=\"https://pantherportal.cdnetworks.com/\"/><rule from=\"^http://([\\w-]+)\\.sslcs\\.cdngc\\.net/\" to=\"https://$1.sslcs.cdngc.net/\"/><rule from=\"^http://(www\\.)?pantherexpress\\.net/\" to=\"https://$1pantherexpress.net/\"/><rule from=\"^http://([\\w\\-]+)\\.pantherssl\\.com/\" to=\"https://$1.pantherssl.com/\"/></ruleset>", "<ruleset name=\"CDNpark.com\" default_off=\"mismatched\" f=\"CDNpark.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDON.COM\" platform=\"mixedcontent\" f=\"CDON.COM.xml\"><securecookie host=\"^cdon\\.(?:dk|eu|fi|no|se)$\" name=\".+\"/><rule from=\"^http://(?:www)?cdon\\.(dk|eu|fi|no|se)/\" to=\"https://cdon.$1/\"/><rule from=\"^http://s\\.cdon\\.com/\" to=\"https://s.cdon.com/\"/></ruleset>", "<ruleset name=\"CDS Global (mismatches)\" default_off=\"mismatch\" f=\"CDS-Global-mismatches.xml\"><securecookie host=\"^buysub\\.com$\" name=\".*\"/><rule from=\"^http://buysub\\.com/\" to=\"https://buysub.com/\"/></ruleset>", "<ruleset name=\"CDS Global (partial)\" f=\"CDS-Global.xml\"><securecookie host=\"^w1\\.buysub\\.com$\" name=\".*\"/><securecookie host=\"^(?:sso)?\\.mycdsglobal\\.com$\" name=\".*\"/><rule from=\"^http://w1\\.buysub\\.com/\" to=\"https://w1.buysub.com/\"/><rule from=\"^http://mycdsglobal\\.com/\" to=\"https://www.mycdsglobal.com//\"/><rule from=\"^http://(sso|www)\\.mycdsglobal\\.com/\" to=\"https://$1.mycdsglobal.com/\"/></ruleset>", "<ruleset name=\"CDT.org\" f=\"CDT.xml\"><securecookie host=\"^\\.cdt\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDW and CDW-G\" f=\"CDWG.xml\"><rule from=\"^http://(?:www\\.)?cdw(g)?\\.com/\" to=\"https://www.cdw$1.com/\"/></ruleset>", "<ruleset name=\"CD ROM Land.nl\" f=\"CD_ROM_Land.nl.xml\"><securecookie host=\"^(?:www\\.)?cdromland\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CD Universe (partial)\" f=\"CD_Universe.xml\"><exclusion pattern=\"^http://g\\.cduniverse\\.com/Default\\.asp\"/><exclusion pattern=\"^http://www\\.cduniverse\\.com/(?!checkout/(?:account|allorderdisp|changepassword|orderstatus)\\.asp|favicon\\.ico|FooterIFrame\\.asp|footer/footermusic\\.html|help/contact\\.asp|(?:\\w+/)?images/|login\\.asp|partner/(?:menu|partner)form\\.asp|stylesheet\\.css|wishlist\\.asp)\"/><securecookie host=\"^g\\.cduniverse\\.com$\" name=\".+\"/><rule from=\"^http://(g\\.|www\\.)?cduniverse\\.com/\" to=\"https://$1cduniverse.com/\"/><rule from=\"^http://c3\\.cduniverse\\.ws/\" to=\"https://c3.cduniverse.ws/\"/><rule from=\"^http://i\\.cduniverse\\.ws/\" to=\"https://www.cduniverse.com/\"/></ruleset>", "<ruleset name=\"CED Magazine\" default_off=\"expired, mismatch\" f=\"CED-Magazine.xml\"><rule from=\"^http://(?:www\\.)?cedmagazine\\.com/\" to=\"https://www.cedmagazine.com/\"/></ruleset>", "<ruleset name=\"CEDIA.org.ec (partial)\" f=\"CEDIA.org.ec.xml\"><securecookie host=\"^(?:www\\.)?cedia\\.org\\.ec$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERIT-SC.cz\" f=\"CERIT-SC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERIT.cz\" f=\"CERIT.cz.xml\"><securecookie host=\"^www\\.cerit\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERN.ch (false MCB)\" platform=\"mixedcontent\" f=\"CERN.ch-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERN.ch (problematic)\" default_off=\"missing certificate chain, untrusted root\" f=\"CERN.ch-problematic.xml\"><rule from=\"^http://cmsdoc\\.cern\\.ch/\" to=\"https://vocms0153.cern.ch/\"/><rule from=\"^http://root\\.cern\\.ch/(?=/*(?:$|\\?))\" to=\"https://root.cern.ch/drupal/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERN.ch (partial)\" f=\"CERN.xml\"><exclusion pattern=\"http://directory\\.web\\.cern\\.ch/+(?!directory/(?:cern_toolbar/css|css|img|jquery-ui)/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://listboxservices\\.web\\.cern\\.ch/listboxservices/simba2/\" to=\"https://simba3.web.cern.ch/simba3/simba2/\"/><exclusion pattern=\"^http://listboxservices\\.web\\.cern\\.ch/(?!listboxservices/simba2/)\"/><rule from=\"^https://home\\.web\\.cern\\.ch/\" to=\"http://home.web.cern.ch/\" downgrade=\"1\"/><exclusion pattern=\"^http://home\\.web\\.cern\\.ch/\"/><rule from=\"^http://st\\.web\\.cern\\.ch/\" to=\"https://st-div.web.cern.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT-Bund\" f=\"CERT-Bund.xml\"><securecookie host=\"^(?:.*\\.)?cert-bund\\.de$\" name=\".+\"/><rule from=\"^http://cert-bund\\.de/\" to=\"https://www.cert-bund.de/\"/><rule from=\"^http://([^/:@]+)?\\.cert-bund\\.de/\" to=\"https://$1.cert-bund.de/\"/></ruleset>", "<ruleset name=\"CERT Polska\" default_off=\"failed ruleset test\" f=\"CERT-Polska.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT-UK\" default_off=\"failed ruleset test\" f=\"CERT-UK.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://cert\\.gov\\.uk/\" to=\"https://www.cert.gov.uk/\"/><rule from=\"^http://([^/:@]+)?\\.cert\\.gov\\.uk/\" to=\"https://$1.cert.gov.uk/\"/></ruleset>", "<ruleset name=\"CERT-Verbund.de\" f=\"CERT-Verbund.xml\"><securecookie host=\"^(?:.*\\.)?cert-verbund\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT.at\" f=\"CERT.at.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.at$\" name=\".+\"/><rule from=\"^http://cert\\.at/\" to=\"https://www.cert.at/\"/><rule from=\"^http://([^/:@]+)?\\.cert\\.at/\" to=\"https://$1.cert.at/\"/></ruleset>", "<ruleset name=\"CERT.fi\" f=\"CERT.fi.xml\"><securecookie host=\"^www\\.cert\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT.se\" f=\"CERT.se.xml\"><rule from=\"^http://www\\.cert\\.se/\" to=\"https://www.cert.se/\"/><rule from=\"^http://cert\\.se/\" to=\"https://www.cert.se/\"/></ruleset>", "<ruleset name=\"CERT.org\" f=\"CERT.xml\"><securecookie host=\"^(?:.+\\.)?cert\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CESG.gov.uk\" f=\"CESG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CESNET.cz (partial)\" f=\"CESNET.xml\"><securecookie host=\"^whoami\\.cesnet\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CETIC.be (partial)\" f=\"CETIC.be.xml\"><rule from=\"^http://(?:www\\.)?cetic\\.be/\" to=\"https://www.cetic.be/\"/><rule from=\"^http://(cronos|forge|(?:git|svn)\\.forge|smtp|webmail)\\.cetic\\.be/\" to=\"https://$1.cetic.be/\"/></ruleset>", "<ruleset name=\"CEX.IO (partial)\" f=\"CEX.IO.xml\"><securecookie host=\"^\\.cex\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CEntrance (partial)\" f=\"CEntrance.xml\"><exclusion pattern=\"^http://(?:www\\.)?centrance\\.com/store/cart\\.php(?!\\?target=(?:cart&action=(?:add|delete)|profile))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CEtrk.com (partial)\" f=\"CEtrk.com.xml\"><rule from=\"^http://trk\\.cetrk\\.com/\" to=\"https://s3.amazonaws.com/trk.cetrk.com/\"/></ruleset>", "<ruleset name=\"CFEngine\" f=\"CFEngine.xml\"><securecookie host=\"^(?:www\\.)?cfengine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cfengine\\.com/\" to=\"https://cfengine.com/\"/></ruleset>", "<ruleset name=\"CGRAN.org\" default_off=\"connection refused\" f=\"CGRAN.org.xml\"><rule from=\"^http://(?:www\\.)?cgran\\.org/\" to=\"https://www.cgran.org/\"/></ruleset>", "<ruleset name=\"CHDK\" default_off=\"mismatch\" platform=\"cacert\" f=\"CHDK.xml\"><rule from=\"^http://(?:www\\.)?mighty-hoernsche\\.de/\" to=\"https://mighty-hoernsche.de/\"/></ruleset>", "<ruleset name=\"CHES 15 Challenge.com\" f=\"CHES_15_Challenge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHIP-Digital.de\" f=\"CHIP-Digital.de.xml\"><securecookie host=\"^www\\.chip-digital\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chip-digital\\.de/\" to=\"https://www.chip-digital.de/\"/></ruleset>", "<ruleset name=\"CHIP-Kiosk.de\" default_off=\"failed ruleset test\" f=\"CHIP-Kiosk.de.xml\"><securecookie host=\"^\\.www\\.chip-kiosk\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chip-app\\.de/+(?:$|\\?.*)\" to=\"https://www.chip-kiosk.de/chip#chip-tablet-edition\"/><rule from=\"^http://(?:www\\.)?chip-kiosk\\.de/\" to=\"https://www.chip-kiosk.de/\"/></ruleset>", "<ruleset name=\"CHIP Online (mismatches)\" default_off=\"Akamai\" f=\"CHIP-Online-mismatches.xml\"><rule from=\"^http://chip01\\.chipimages\\.de/\" to=\"https://chip01.chipimages.de/\"/></ruleset>", "<ruleset name=\"CHIP Online (partial)\" default_off=\"failed ruleset test\" f=\"CHIP-Online.xml\"><rule from=\"^http://omniture\\.chip\\.eu/\" to=\"https://chipxonioonlinegmbh.d1.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"CHL.it\" platform=\"mixedcontent\" f=\"CHL.it.xml\"><rule from=\"^http://(?:www\\.)?chl\\.it/\" to=\"https://www.chl.it/\"/></ruleset>", "<ruleset name=\"CIA Cybersurf\" default_off=\"failed ruleset test\" f=\"CIA.com.xml\"><rule from=\"^http://([^/:@\\.]+)\\.cia\\.com/\" to=\"https://$1.cia.com/\"/></ruleset>", "<ruleset name=\"Central Intelligence Agency\" f=\"CIA.xml\"><rule from=\"^http://(?:www\\.)?cia\\.gov/\" to=\"https://www.cia.gov/\"/></ruleset>", "<ruleset name=\"CIBC\" f=\"CIBC.xml\"><rule from=\"^http://([^/:@\\.]+)\\.cibc\\.com/\" to=\"https://$1.cibc.com/\"/></ruleset>", "<ruleset name=\"CICLOPS\" default_off=\"expired, self-signed\" f=\"CICLOPS.xml\"><securecookie host=\"^(?:.*\\.)ciclops\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ciclops\\.org/\" to=\"https://www.ciclops.org/\"/></ruleset>", "<ruleset name=\"CIHR.eu\" f=\"CIHR.eu.xml\"><securecookie host=\"^(?:www\\.)?cihr\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Cambodia\" f=\"CIMB-Cambodia.xml\"><securecookie host=\"^www\\.bizchannel\\.cimbbank\\.com\\.kh$\" name=\".+\"/><rule from=\"^http://bizchannel\\.cimbbank\\.com\\.kh/\" to=\"https://www.bizchannel.cimbbank.com.kh/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Indonesia\" f=\"CIMB-Indonesia.xml\"><securecookie host=\"^www\\.cimbclicks\\.co\\.id$\" name=\".+\"/><securecookie host=\"^www\\.itradecimb\\.co\\.id$\" name=\".+\"/><securecookie host=\"^www\\.cimbniaga\\.com$\" name=\".+\"/><rule from=\"^http://cimbniaga\\.com/\" to=\"https://www.cimbniaga.com/\"/><rule from=\"^http://cimbclicks\\.co\\.id/\" to=\"https://www.cimbclicks.co.id/\"/><rule from=\"^http://itradecimb\\.co\\.id/\" to=\"https://www.itradecimb.co.id/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Malaysia\" f=\"CIMB-Malaysia.xml\"><securecookie host=\"^www\\.cimb\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.cimbpreferred\\.com$\" name=\".+\"/><securecookie host=\"^www\\.cimbbank\\.com\\.my$\" name=\".+\"/><securecookie host=\"^www\\.cimbclicks\\.com\\.my$\" name=\".+\"/><securecookie host=\"^.*\\.itradecimb\\.com\\.my$\" name=\".+\"/><securecookie host=\"^www\\.eipocimb\\.com$\" name=\".+\"/><securecookie host=\"^www\\.cimb-principal\\.com\\.my$\" name=\".+\"/><rule from=\"^http://cimb\\.com/\" to=\"https://www.cimb.com/\"/><rule from=\"^http://cimbclicks\\.com\\.my/\" to=\"https://www.cimbclicks.com.my/\"/><rule from=\"^http://cimb-principal\\.com\\.my/\" to=\"https://www.cimb-principal.com.my/\"/><rule from=\"^http://cimbbank\\.com\\.my/\" to=\"https://www.cimbbank.com.my/\"/><rule from=\"^http://eipocimb\\.com/\" to=\"https://www.eipocimb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Singapore\" f=\"CIMB-Singapore.xml\"><securecookie host=\"^www\\.cimbclicks\\.com\\.sg$\" name=\".+\"/><securecookie host=\"^www\\.bizchannel\\.cimb\\.com\\.sg$\" name=\".+\"/><securecookie host=\"^.*\\.itradecimb.com.sg$\" name=\".+\"/><rule from=\"^http://cimbclicks\\.com\\.sg/\" to=\"https://www.cimbclicks.com.sg/\"/><rule from=\"^http://bizchannel\\.cimb\\.com\\.sg/\" to=\"https://www.bizchannel.cimb.com.sg/\"/><rule from=\"^http://itradecimb\\.com\\.sg/\" to=\"https://www.itradecimb.com.sg/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Thailand\" f=\"CIMB-Thailand.xml\"><securecookie host=\"^www\\.cimbclicks\\.in\\.th$\" name=\".+\"/><securecookie host=\"^www\\.(ebanking|ibanking|bizchannel)\\.cimbthai\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.cimbsecurities\\.co\\.th$\" name=\".+\"/><rule from=\"^http://cimbclicks\\.in\\.th/\" to=\"https://www.cimbclicks.in.th/\"/><rule from=\"^http://(ebanking|ibanking|bizchannel)\\.cimbthai\\.com/\" to=\"https://www.$1.cimbthai.com/\"/><rule from=\"^http://cimbsecurities\\.co\\.th/\" to=\"https://www.cimbsecurities.co.th/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CINES.fr (partial)\" f=\"CINES.fr.xml\"><rule from=\"^http://www\\.cines\\.fr/\" to=\"https://www.cines.fr/\"/></ruleset>", "<ruleset name=\"CIO.com.au\" platform=\"mixedcontent\" f=\"CIO.com.au.xml\"><rule from=\"^http://(?:www\\.)?cio\\.com\\.au/\" to=\"https://www.cio.com.au/\"/></ruleset>", "<ruleset name=\"CIO.com (partial)\" f=\"CIO.com.xml\"><rule from=\"^http://council\\.cio\\.com/\" to=\"https://council.cio.com/\"/><rule from=\"^http://itjobs\\.cio\\.com/c/\" to=\"https://computerworld.jobamatic.com/c/\"/></ruleset>", "<ruleset name=\"CIO.gov (partial)\" f=\"CIO.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIRT.net\" f=\"CIRT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIR Online.org (partial)\" f=\"CIR_Online.org.xml\"><exclusion pattern=\"^http://cironline\\.org/+(?!sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIS-India.org (false MCB)\" platform=\"mixedcontent\" f=\"CIS-India.org.xml\"><securecookie host=\"^\\.cis-india\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CISOfy.com\" f=\"CISOfy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http://www\\.cisofy\\.com/.*\" to=\"https://cisofy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CI Security.org\" f=\"CI_Security.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJ2.nl\" f=\"CJ2.nl.xml\"><securecookie host=\"^(?:datacenter|panel|\\.webmail|www)\\.cj2\\.nl$\" name=\".+\"/><rule from=\"^http://cj2\\.nl/\" to=\"https://www.cj2.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJFE.org\" f=\"CJFE.org.xml\"><securecookie host=\"^\\.cjfe\\.org$\" name=\".+\"/><rule from=\"^http://www\\.cjfe\\.org/\" to=\"https://cjfe.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJS-CDKeys.com\" f=\"CJS-CDKeys.com.xml\"><securecookie host=\"^\\.cjs-cdkeys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CKEditor.com (partial)\" f=\"CKEditor.com.xml\"><rule from=\"^http://s1\\.ckeditor\\.com/\" to=\"https://d3j1vh5wu7c1yu.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CKSource.com (partial)\" f=\"CKSource.com.xml\"><rule from=\"^http://c\\.cksource\\.com/\" to=\"https://d2xc7e2akbvihw.cloudfront.net/\"/><rule from=\"^http://www\\.cksource\\.com/\" to=\"https://cksource.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CLIC-study\" default_off=\"mismatched\" f=\"CLIC-study.xml\"><securecookie host=\"^clic-study\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?clic-study\\.org/\" to=\"https://clic-study.org/\"/></ruleset>", "<ruleset name=\"CLTglobal.com\" default_off=\"failed ruleset test\" f=\"CLTglobal.com.xml\"><securecookie host=\"^\\.cltglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMAS Center.org\" f=\"CMAS_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMBChina.com\" f=\"CMBChina.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMPnet.com\" f=\"CMP.xml\"><rule from=\"^http://cookies\\.cmpnet\\.com/\" to=\"https://i.cmpnet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMPXCHG8B.com\" f=\"CMPXCHG8B.xml\"><rule from=\"^http://(?:www\\.)?cmpxchg8b\\.com/\" to=\"https://lock.cmpxchg8b.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMSWire\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CMSWire.xml\"><rule from=\"^http://(?:www\\.)?cmswire\\.com/\" to=\"https://www.cmswire.com/\"/></ruleset>", "<ruleset name=\"CM Dev.com\" f=\"CM_Dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNBC (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CNBC-mixed.xml\"><rule from=\"^http://data\\.cnbc\\.com/\" to=\"https://data.cnbc.com/\"/></ruleset>", "<ruleset name=\"CNBC (partial)\" default_off=\"failed ruleset test\" f=\"CNBC.xml\"><securecookie host=\"^(?:login|pro|register|www)\\.cnbc\\.com$\" name=\".+\"/><rule from=\"^http://((?:fm|login|pro|register|www)\\.)?cnbc\\.com/\" to=\"https://$1cnbc.com/\"/></ruleset>", "<ruleset name=\"CNDP.fr (partial)\" f=\"CNDP.fr.xml\"><rule from=\"^http://cas\\.edutheque\\.cndp\\.fr/\" to=\"https://cas.edutheque.cndp.fr/\"/></ruleset>", "<ruleset name=\"CNES.fr (partial)\" f=\"CNES.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNET content.com\" f=\"CNET_content.com.xml\"><securecookie host=\"^ws\\.cnetcontent\\.com$\" name=\".+\"/><rule from=\"^http://ws\\.cnetcontent\\.com/\" to=\"https://ws.cnetcontent.com/\"/></ruleset>", "<ruleset name=\"CNN.com (partial)\" f=\"CNN.com.xml\"><securecookie host=\"^(?:audience|markets\\.money)\\.cnn\\.com$\" name=\".+\"/><rule from=\"^http://(audience|(?:markets|portfolio)\\.money)\\.cnn\\.com/\" to=\"https://$1.cnn.com/\"/><rule from=\"^http://jobsearch\\.money\\.cnn\\.com/(c/|favicon\\.ico)\" to=\"https://cnnmoney.jobamatic.com/$1\"/></ruleset>", "<ruleset name=\"COLLADA\" f=\"COLLADA.xml\"><securecookie host=\"^collada\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?collada\\.org/\" to=\"https://collada.org/\"/></ruleset>", "<ruleset name=\"COLLEGEclubLIFE.com\" default_off=\"failed ruleset test\" f=\"COLLEGEclubLIFE.com.xml\"><securecookie host=\"^(?:.*\\.)?collegeclublife\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COMNAP.aq\" f=\"COMNAP.aq.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COSMOS magazine (partial)\" f=\"COSMOS_magazine.xml\"><rule from=\"^http://cdn\\d\\.cosmosmagazine\\.com/\" to=\"https://d1dop0qewlixo7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"COSPAR-Assembly.org\" f=\"COSPAR-Assembly.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COTC.edu\" f=\"COTC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COUNTER\" default_off=\"mismatch\" f=\"COUNTER.xml\"><rule from=\"^http://(?:www\\.)?projectcounter\\.org/\" to=\"https://www.projectcounter.org/\"/></ruleset>", "<ruleset name=\"COZmedics.com.au\" default_off=\"failed ruleset test\" f=\"COZmedics.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPIB.ac.uk\" f=\"CPIB.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPJ.org\" f=\"CPJ.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPMStar.com\" f=\"CPMStar.xml\"><securecookie host=\"^\\.server\\.cpmstar\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.cpmstar\\.com/\" to=\"https://server.cpmstar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPM Rocket.com (partial)\" f=\"CPM_Rocket.com.xml\"><rule from=\"^http://adk2cdn\\.cpmrocket\\.com/\" to=\"https://d38cp5x90nxyo0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"CPSC.gov\" platform=\"mixedcontent\" f=\"CPSC.xml\"><securecookie host=\"^\\.cpsc\\.gov$\" name=\"^ZNPCQ003-\\d{8}$\"/><securecookie host=\"^www\\.cpsc\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cpsc\\.gov/\" to=\"https://www.cpsc.gov/\"/></ruleset>", "<ruleset name=\"CPU Benchmark.net\" f=\"CPU_Benchmark.net.xml\"><securecookie host=\"^(?:www\\.)?cpubenchmark\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cPanel.com (partial)\" f=\"CPanel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cPanel.guru\" default_off=\"failed ruleset test\" f=\"CPanel.guru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cPanel.net (partial)\" f=\"CPanel.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://applications\\.cpanel\\.net/\" to=\"https://applications.cpanel.com/\"/><rule from=\"^http://blogs\\.cpanel\\.net/\" to=\"https://blogs.cpanel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CQRCengage.com\" f=\"CQRCengage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CQ Roll Call.com (partial)\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"CQ_Roll_Call.xml\"><rule from=\"^http://www\\.cqrollcall\\.com/\" to=\"https://cqrollcall.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CRC.id.au (partial)\" f=\"CRC.id.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CREW (partial)\" f=\"CREW.xml\"><securecookie host=\"^\\.?secure\\.citizensforethics\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CRM Metrix\" default_off=\"failed ruleset test\" f=\"CRMMetrix.xml\"><rule from=\"^http://(?:www\\.)?crm-metrix\\.com/\" to=\"https://www.crm-metrix.com/\"/></ruleset>", "<ruleset name=\"CRN\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CRN.xml\"><securecookie host=\"^.*\\.crn\\.com$\" name=\".+\"/><rule from=\"^http://(i\\.|signin\\.|www\\.)?crn\\.com/\" to=\"https://$1crn.com/\"/><rule from=\"^http://crn\\.verticalsearchworks\\.com/\" to=\"https://ad-secure.firstlightera.com/\"/></ruleset>", "<ruleset name=\"CRU-Inc.com\" default_off=\"self-signed\" f=\"CRU-Inc.com.xml\"><securecookie host=\"^www\\.cru-inc\\.com$\" name=\".+\"/><rule from=\"^http://cru-inc\\.com/\" to=\"https://www.cru-inc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CS-Cart\" f=\"CS-Cart.xml\"><securecookie host=\"^\\.cs-cart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSA-CEE-Summit.eu\" default_off=\"expired, missing certificate chain\" f=\"CSA-CEE-Summit.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSAF\" default_off=\"self-signed\" f=\"CSAF.cz.xml\"><rule from=\"^http://(?:www\\.)?csaf\\.cz/\" to=\"https://csaf.cz/\"/></ruleset>", "<ruleset name=\"CSBA Academy.com (partial)\" f=\"CSBA_Academy.com.xml\"><rule from=\"^http://(www\\.)?csbaacademy\\.com/(?=login\\.php|_scripts/)\" to=\"https://$1csbaacademy.com/\"/><rule from=\"^http://(www\\.)?csbaacademy\\.com/login/?(?=$|\\?)\" to=\"https://$1csbaacademy.com/login.php\"/><rule from=\"^http://(www\\.)?csbaacademy\\.com/register\\.php(?=$|\\?)\" to=\"https://$1csbaacademy.com/register/\"/></ruleset>", "<ruleset name=\"CSC Visa Information Service\" f=\"CSC-Visa-Information-Service.xml\"><securecookie host=\"^(?:.*\\.)usvisa-info.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSC (partial)\" f=\"CSC.xml\"><exclusion pattern=\"^http://(?:staging\\.|www\\.)?csc\\.com/(?!favicon\\.ico|images/|stylesheets/)\"/><rule from=\"^http://(?:www\\.)?csc\\.com/\" to=\"https://www.csc.com/\"/><rule from=\"^http://(assets[1-4]|qa|staging)\\.csc\\.com/\" to=\"https://$1.csc.com/\"/><rule from=\"^http://assetsdev1\\.csc\\.com/\" to=\"https://s3.amazonaws.com/assetsdev1.csc.com/\"/><rule from=\"^http://assetsdev2\\.csc\\.com/\" to=\"https://d22z1n4koknpni.cloudfront.net/\"/><rule from=\"^http://assetsdev3\\.csc\\.com/\" to=\"https://d2vblp5odpf1nm.cloudfront.net/\"/><rule from=\"^http://assetsdev4\\.csc\\.com/\" to=\"https://dkoz0rlg89gph.cloudfront.net/\"/></ruleset>", "<ruleset name=\"CSCtrustedsecure.com\" f=\"CSCtrustedsecure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSDb.dk\" default_off=\"expired, self-signed\" f=\"CSDb.dk.xml\"><securecookie host=\"^\\.?csdb\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?csdb\\.dk/\" to=\"https://csdb.dk/\"/></ruleset>", "<ruleset name=\"CSEd Week.org\" f=\"CSEd_Week.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIAC.org\" f=\"CSIAC.org.xml\"><securecookie host=\"^\\.csiac\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIE.org\" default_off=\"self-signed\" f=\"CSIE.org.xml\"><rule from=\"^http://(?:www\\.)?csie\\.org/\" to=\"https://csie.org/\"/></ruleset>", "<ruleset name=\"CSIRT.CZ\" f=\"CSIRT.CZ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIS.dk\" f=\"CSIS.dk.xml\"><securecookie host=\"^\\.csis\\.dk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIS.org\" f=\"CSIS.org.xml\"><rule from=\"^http://(?:(my\\.)|www\\.)?csis\\.org/\" to=\"https://$1csis.org/\"/></ruleset>", "<ruleset name=\"CSPInet.org\" f=\"CSPInet.org.xml\"><securecookie host=\"^order\\.cspinet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSP Forum.eu\" f=\"CSP_Forum.eu.xml\"><securecookie host=\"^\\.www\\.cspforum\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cspforum\\.eu/\" to=\"https://www.cspforum.eu/\"/></ruleset>", "<ruleset name=\"CSRSupport.com\" f=\"CSRsupport.com.xml\"><rule from=\"^http://www\\.csrsupport\\.com/\" to=\"https://www.csrsupport.com/\"/><rule from=\"^http://csrsupport\\.com/\" to=\"https://www.csrsupport.com/\"/></ruleset>", "<ruleset name=\"CSS-Tricks.com\" f=\"CSS-Tricks.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSdata1.com\" f=\"CSdata1.com.xml\"><rule from=\"^http://dsa\\.csdata1\\.com/\" to=\"https://dsa.csdata1.com/\"/></ruleset>", "<ruleset name=\"CT.gov (partial)\" f=\"CT.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?ct\\.gov/.*\" to=\"https://www.ct.egov.com/\"/><exclusion pattern=\"^http://(?:www\\.)?ct\\.gov/+(?!$|\\?)\"/><rule from=\"^http://portal\\.ct\\.gov/\" to=\"https://www.ct.egov.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTAN\" f=\"CTAN.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTEP-EBP.com\" f=\"CTEP-EBP.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.ctep-ebp\\.com/\" to=\"https://ctep-ebp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTERA Networks\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CTERA-Networks.xml\"><securecookie host=\"^(?:www\\.)?ctera\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTFtime.org\" f=\"CTFtime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTOvision.com (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"CTOvision.com.xml\"><rule from=\"^http://(?:www\\.)?ctovision\\.com/\" to=\"https://ctovision.com/\"/></ruleset>", "<ruleset name=\"CTS Wholesale Sunglasses\" f=\"CTS_Wholesale_Sunglasses.xml\"><securecookie host=\"^\\.ctswholesalesunglasses.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTunnel\" platform=\"mixedcontent\" f=\"CTunnel.xml\"><securecookie host=\"^(?:.+\\.)?ctunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ctunnel\\.com/\" to=\"https://ctunnel.com/\"/></ruleset>", "<ruleset name=\"CUFP.org\" default_off=\"mismatched\" f=\"CUFP.org.xml\"><securecookie host=\"^\\.cufp\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cufp\\.org/\" to=\"https://cufp.org/\"/></ruleset>", "<ruleset name=\"CUP.org\" f=\"CUP.org.xml\"><rule from=\"^http://jnls\\.cup\\.org/\" to=\"https://jnls.cup.org/\"/></ruleset>", "<ruleset name=\"CUPS.org\" f=\"CUPS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CVI Melles Griot\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CVIMellesGriot.com.xml\"><rule from=\"^http://(?:www\\.)?cvimellesgriot\\.com/\" to=\"https://www.cvimellesgriot.com/\"/></ruleset>", "<ruleset name=\"CWSPOD.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CWSPOD.com.xml\"><securecookie host=\"^\\.cwspod\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CWSPOD Music (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CWSPOD_Music.xml\"><securecookie host=\"^\\.cwspodmusic.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cXense.com (partial)\" f=\"CXense.xml\"><securecookie host=\"^\\.cxense\\.com$\" name=\"^gck\\w$\"/><securecookie host=\"^wiki\\.cxense\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.cxense\\.com/\" to=\"https://scdn.cxense.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CYBERsitter\" default_off=\"failed ruleset test\" f=\"CYBERsitter.xml\"><securecookie host=\"^(?:www\\.)?cybersitter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cYpherpunK.at\" f=\"CYpherpunK.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CZ-Hosting.com\" f=\"CZ-Hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C F Mueller.de\" f=\"C_F_Mueller.de.xml\"><securecookie host=\"^www\\.cfmueller\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cfmueller\\.de/\" to=\"https://www.cfmueller.de/\"/></ruleset>", "<ruleset name=\"Cabal WS (partial)\" f=\"Cabal_WS.xml\"><rule from=\"^http://(www\\.)?cabal\\.ws/(addons|img|slider)/\" to=\"https://$1cabal.ws/$2/\"/></ruleset>", "<ruleset name=\"Cabinet-Office.gov.uk\" f=\"Cabinet-Office.gov.uk.xml\"><rule from=\"^http://www\\.cabinet-office\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/cabinet-office\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cabinet Office.gov.uk (partial)\" f=\"Cabinet_Office.xml\"><exclusion pattern=\"^http://(?:ccs|communitylife|gps|mutuals|www\\.openpublicservices|(?:www\\.)?publications|transactionsexplorer|update|www)\\.cabinetoffice\\.gov\\.uk/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:cc|gp)s\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/crown-commercial-service\"/><rule from=\"^http://communitylife\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/collections/community-life-survey\"/><rule from=\"^http://digital\\.cabinetoffice\\.gov\\.uk/\" to=\"https://gds.blog.gov.uk/\"/><rule from=\"^http://blog\\.digital\\.cabinetoffice\\.gov\\.uk/\" to=\"https://alphagov.wordpress.com/\"/><rule from=\"^http://mutuals\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/groups/mutuals-information-service\"/><rule from=\"^http://www\\.openpublicservices\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/open-public-services\"/><rule from=\"^http://pm\\.cabinetoffice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/history/past-prime-ministers/margaret-thatcher\"/><rule from=\"^http://(?:www\\.)?publications\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/publications?departments%5B%5D=cabinet-office\"/><rule from=\"^http://transactionsexplorer\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/performance/transactions-explorer\"/><rule from=\"^http://(?:update|www)\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/cabinet-office\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cable6.net\" default_off=\"missing certificate chain\" f=\"Cable6.net.xml\"><securecookie host=\"^piwik\\.cable6\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CableTV.com\" default_off=\"expired\" f=\"CableTV.com.xml\"><rule from=\"^http://(?:www\\.)?cabletv\\.com/\" to=\"https://cabletv.com/\"/></ruleset>", "<ruleset name=\"Cables.com\" f=\"Cables.com.xml\"><securecookie host=\"^(?:www)?\\.cables\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cables\\.com/\" to=\"https://www.cables.com/\"/></ruleset>", "<ruleset name=\"Cablesurf.de\" f=\"Cablesurf.de.xml\"><securecookie host=\"^(www\\.|www2\\.|mail\\.)?cablesurf\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CaceTech.com\" f=\"CaceTech.xml\"><securecookie host=\"^\\.cacetech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CacheBrowser.info\" f=\"CacheBrowser.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CacheFly (partial)\" f=\"CacheFly.xml\"><exclusion pattern=\"^http://cachefly\\.cachefly\\.net/(?:speedtest/|.+\\.test)\"/><exclusion pattern=\"^http://topix\\.cachefly\\.net\"/><securecookie host=\"^portal\\.cachefly\\.com$\" name=\".+\"/><rule from=\"^http://portal\\.cachefly\\.com/\" to=\"https://portal.cachefly.com/\"/><rule from=\"^http://(?:\\d\\.)?([^@:/\\.]+)\\.cachefly\\.net/\" to=\"https://$1.cachefly.net/\"/></ruleset>", "<ruleset name=\"Cachet HQ.io\" f=\"Cachet_HQ.io.xml\"><securecookie host=\"^(?:demo|docs)?\\.cachethq\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cactus Complete Commerce (partial)\" f=\"Cactus_Complete_Commerce.xml\"><securecookie host=\"^app\\.cactuscompletecommerce\\.com$\" name=\".+\"/><rule from=\"^http://app\\.cactuscompletecommerce\\.com/\" to=\"https://app.cactuscompletecommerce.com/\"/></ruleset>", "<ruleset name=\"CadSoft\" f=\"CadSoft.xml\"><securecookie host=\"^\\.?www\\.cadsoft\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cadsoft\\.de/\" to=\"https://www.cadsoft.de/\"/></ruleset>", "<ruleset name=\"Caddy server.com\" f=\"Caddy_server.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cadence Design Systems (partial)\" f=\"Cadence-Design-Systems.xml\"><rule from=\"^http://(?:www\\.)?cadence\\.com/(_layouts/|misc_pages/|pages/(?:login|registration)\\.aspx|Pub/|rl/Resources/|usercontrols/)\" to=\"https://www.cadence.com/$1\"/></ruleset>", "<ruleset name=\"Cadetnet\" default_off=\"failed ruleset test\" f=\"Cadetnet.xml\"><rule from=\"^http://(?:www\\.)?cadetnet\\.gov\\.au/\" to=\"https://www.cadetnet.gov.au/\"/></ruleset>", "<ruleset name=\"Cadw (partial)\" f=\"Cadw.xml\"><rule from=\"^http://cadw\\.wales\\.gov\\.uk/cbin/\" to=\"https://cadw.wales.gov.uk/cbin/\"/></ruleset>", "<ruleset name=\"CafePress (partial)\" f=\"CafePress.xml\"><rule from=\"^http://(?:www\\.)?cafepress\\.co(m|\\.uk)/content/\" to=\"https://www.cafepress.co$1/content/\"/><rule from=\"^http://(content|members)\\.cafepress\\.co(m|\\.uk)/\" to=\"https://$1.cafepress.co$2/\"/><rule from=\"^http://shop\\.cafepress\\.com/$\" to=\"https://shop.cafepress.com/\"/><rule from=\"^http://help\\.cafepress\\.com/hc/\" to=\"https://server.iad.liveperson.net/hc/\"/><rule from=\"^http://content\\d?\\.cpcache\\.com/\" to=\"https://content.cafepress.com/\"/><rule from=\"^https://server\\.iad\\.liveperson\\.net/make/\" to=\"https://www.cafepress.com/make/\"/></ruleset>", "<ruleset name=\"cafegate.com\" default_off=\"failed ruleset test\" f=\"Cafegate.com.xml\"><securecookie host=\"^\\.cafegate.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cafemakers\" f=\"Cafemakers.xml\"><securecookie host=\"^\\.cafemakers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"caimao.com\" f=\"Caimao.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CainTV (partial)\" f=\"CainTV.xml\"><rule from=\"^http://static\\d?\\.caintvnetwork\\.com/\" to=\"https://d19kb9pin9tdml.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Caisse d'Epargne\" default_off=\"failed ruleset test\" f=\"Caisse-Epargne.fr.xml\"><rule from=\"^http://(?:www\\.)?caisse-epargne\\.fr/\" to=\"https://www.caisse-epargne.fr/\"/></ruleset>", "<ruleset name=\"Cake Central.com (partial)\" f=\"Cake_Central.com.xml\"><rule from=\"^http://cdn\\.cakecentral\\.com/\" to=\"https://s3.amazonaws.com/cdn.cakecentral.com/\"/></ruleset>", "<ruleset name=\"Caktus Group.com\" f=\"Caktus_Group.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal.net\" f=\"Cal.net.xml\"><rule from=\"^http://(?:www\\.)?cal\\.net/\" to=\"https://cal.net/\"/></ruleset>", "<ruleset name=\"CalChamber.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CalChamber.com-falsemixed.xml\"><rule from=\"^http://store\\.calchamer\\.com/\" to=\"https://store.calchamer.com/\"/></ruleset>", "<ruleset name=\"CalChamber.com (partial)\" default_off=\"failed ruleset test\" f=\"CalChamber.com.xml\"><exclusion pattern=\"^http://store\\.calchamer\\.com/+(?!favicon\\.ico|images/|style/|SupplyImages/|styles/)\"/><rule from=\"^http://(?:www\\.)?calchamer\\.com/\" to=\"https://www.calchamer.com/\"/><rule from=\"^http://(ehc|store)\\.calchamer\\.com/\" to=\"https://$1.calchamer.com/\"/></ruleset>", "<ruleset name=\"CalSky\" default_off=\"mismatch\" f=\"CalSky.xml\"><rule from=\"^http://(?:www\\.)?calsky\\.com/\" to=\"https://www.calsky.com/\"/></ruleset>", "<ruleset name=\"Cal Poly.edu (false MCB)\" platform=\"mixedcontent\" f=\"Cal_Poly.edu-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal Poly Arts.org\" f=\"Cal_Poly_Arts.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal State.edu (partial)\" f=\"Cal_State.edu.xml\"><rule from=\"^http://sdsu-dspace\\.calstate\\.edu/\" to=\"https://sdsu-dspace.calstate.edu/\"/></ruleset>", "<ruleset name=\"Calameo.com (problematic)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Calameo.com-problematic.xml\"><securecookie host=\"^help\\.calameo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calameo.com (partial)\" f=\"Calameo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calazan.com\" f=\"Calazan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calderdale.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Calderdale.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calderdale.gov.uk (partial)\" f=\"Calderdale.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CalendarWiz\" f=\"CalendarWiz.xml\"><securecookie host=\"^www\\.calendarwiz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calendario.cc\" f=\"Calendario.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calendars.com (partial)\" f=\"Calendars.com.xml\"><rule from=\"^http://(www\\.)?calendars\\.com/(css/|img/|user)\" to=\"https://$1calendars.com/$1\"/></ruleset>", "<ruleset name=\"Calguns Foundation.org\" f=\"Calguns_Foundation.org.xml\"><securecookie host=\"^(?:store\\.|www\\.)?calgunsfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"calibre-ebook.com\" default_off=\"untrusted root\" f=\"Calibre.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Department of Motor Vehicles\" f=\"California-Department-of-Motor-Vehicles.xml\"><rule from=\"^http://(?:www\\.)?dmv\\.ca\\.gov/\" to=\"https://www.dmv.ca.gov/\"/></ruleset>", "<ruleset name=\"California Franchise Tax Board\" f=\"California-Franchise-Tax-Board.xml\"><securecookie host=\"^(?:(?:stats|webapp|www)\\.)?ftb\\.ca\\.gov$\" name=\".+\"/><rule from=\"^http://((stats|webapp|www)\\.)?ftb\\.ca\\.gov/\" to=\"https://$1ftb.ca.gov/\"/></ruleset>", "<ruleset name=\"California STD/HIV Prevention Training Center (partial)\" f=\"California-STD-HIV-Training.xml\"><rule from=\"^((http://(?:www\\.)?)|https://)stdhivtraining\\.org/\" to=\"https://www.stdhivtraining.org/\"/></ruleset>", "<ruleset name=\"California State University (partial)\" f=\"California-State-University.xml\"><securecookie host=\"^(?:.*\\.)?csulb\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www2?\\.)?csulb\\.edu/\" to=\"https://www.csulb.edu/\"/></ruleset>", "<ruleset name=\"California Department of Justice\" f=\"California_Department_of_Justice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Legislative Information\" f=\"California_Legislative_Information.xml\"><securecookie host=\"^leginfo\\.legislature\\.ca\\.gov$\" name=\".+\"/><rule from=\"^http://leginfo\\.legislature\\.ca\\.gov/\" to=\"https://leginfo.legislature.ca.gov/\"/></ruleset>", "<ruleset name=\"Cal Poly.edu (partial)\" f=\"California_Polytechnic_State_University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(lib|my|tickets)\\.calpoly\\.edu/\" to=\"https://$1.calpoly.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Polytechnic State University, Ponoma (partial)\" f=\"California_Polytechnic_State_University_Ponoma.xml\"><securecookie host=\"^(?:bbcollab|blackboard|broncodirect\\.cms|dsa|housing|ehelp\\.wiki)\\.csupomona\\.edu$\" name=\".+\"/><rule from=\"^http://(autodiscover|bbcollab|blackboard|broncodirect\\.cms|ehousing|exchange|ehelp\\.wiki|www)\\.csupomona\\.edu/\" to=\"https://$1.csupomona.edu/\"/><rule from=\"^http://(?:www\\.)?dsa\\.csupomona\\.edu/\" to=\"https://dsa.csupomona.edu/\"/></ruleset>", "<ruleset name=\"California Sunday.com\" f=\"California_Sunday.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California United Bank\" default_off=\"failed ruleset test\" f=\"California_United_Bank.xml\"><securecookie host=\"^(?:w*\\.)?(?:californiaunitedbank|cunb|pcboc)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?c(aliforniaunitedbank|unb)\\.com/\" to=\"https://$1c$2.com/\"/><rule from=\"^http://(?:www\\.)?pcboc\\.com/\" to=\"https://pcboc.com/\"/></ruleset>", "<ruleset name=\"California Walk In Tub Company.com\" f=\"California_Walk_In_Tub_Company.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?californiawalkintubcompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calispora\" default_off=\"failed ruleset test\" f=\"Calispora.xml\"><rule from=\"^http://(www\\.)?calispora\\.org/\" to=\"https://calispora.org/\"/></ruleset>", "<ruleset name=\"Caller.com (partial)\" default_off=\"failed ruleset test\" f=\"Caller.com.xml\"><securecookie host=\"^(?:login)?\\.caller\\.com$\" name=\".+\"/><rule from=\"^http://caller\\.com/\" to=\"https://www.caller.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calligra.org\" f=\"Calligra.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calomel.org\" f=\"Calomel.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caltech (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Caltech-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?imss\\.caltech\\.edu$\" name=\".+\"/><rule from=\"^http://(?:(cliara|courses\\.hss|dabney)|(?:www\\.)?(imss))\\.caltech\\.edu/\" to=\"https://$1$2.caltech.edu/\"/></ruleset>", "<ruleset name=\"Caltech.edu\" f=\"Caltech.xml\"><exclusion pattern=\"^http://(?:www\\.)?gps\\.caltech\\.edu/(?!pics/|stylesheets/|uploads/)\"/><securecookie host=\"^.+\\.caltech\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?caltech\\.edu/\" to=\"https://www.caltech.edu/\"/><rule from=\"^https?://imss-test-storage\\.ads\\.caltech\\.edu\\.s3\\.amazonaws.com/\" to=\"https://s3-us-west-1.amazonaws.com/imss-test-storage.ads.caltech.edu/\"/><rule from=\"^https?://www-prod-storage\\.cloud\\.caltech\\.edu\\.s3\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/www-prod-storage.cloud.caltech.edu/\"/><rule from=\"^http://(?:www\\.)?access\\.caltech\\.edu/\" to=\"https://access.caltech.edu/\"/><rule from=\"^http://business-query\\.caltech\\.edu:8181/\" to=\"https://business-query.caltech.edu:8181/\"/><rule from=\"^http://imss-website-storage\\.cloud\\.caltech\\.edu/\" to=\"https://s3-us-west-1.amazonaws.com/imss-website-storage.cloud.caltech.edu/\"/><rule from=\"^http://(?:courses|moodle)\\.caltech\\.edu/\" to=\"https://courses.caltech.edu/\"/><rule from=\"^http://(?:www\\.)?gps\\.caltech\\.edu/\" to=\"https://www.gps.caltech.edu/\"/><rule from=\"^http://nassau\\.caltech\\.edu:4444/\" to=\"https://nassau.caltech.edu:4444/\"/><rule from=\"^http://(odb\\.acs|mail\\.alumni|www\\.cco|(?:www\\.)?imss|insecure|(?:irsa|koa|ned)\\.ipac|(?:utils\\.|www\\.)?its|pcard|scriptor|techne1|x-tmt-web1\\.tmt|tqfr|web|webmail|webvpn)\\.caltech\\.edu/\" to=\"https://$1.caltech.edu/\"/></ruleset>", "<ruleset name=\"Calum.org\" f=\"Calum.xml\"><securecookie host=\"^calum\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calvin College (partial)\" f=\"Calvin_College.xml\"><securecookie host=\"^ulysses\\.calvin\\.edu$\" name=\".+\"/><rule from=\"^http://ulysses\\.calvin\\.edu/\" to=\"https://ulysses.calvin.edu/\"/></ruleset>", "<ruleset name=\"Calyx Institute.org\" f=\"Calyx-Institute.xml\"><securecookie host=\"^(?:.*\\.)?calyxinstitute\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"calyx.net\" f=\"Calyx.net.xml\"><rule from=\"^http://www\\.calyx\\.net/\" to=\"https://calyx.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cam.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Cam.ac.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cam.ac.uk (mismatched)\" default_off=\"mismatched, missing certificate chain\" f=\"Cam.ac.uk-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"camaya.net\" f=\"Camaya.net.xml\"><securecookie host=\"^camaya\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambey West.com (partial)\" f=\"Cambey-and-West.xml\"><exclusion pattern=\"^http://ful\\.cambeywest\\.com/+(?!$|cwwweb/$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://ful\\.cambeywest\\.com/(?:cwweb)?$\" to=\"https://www.cambeywest.com/cwweb/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambodia Daily.com\" f=\"Cambodia_Daily.com.xml\"><securecookie host=\"^(?:www\\.)?cambodiadaily\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridge Journals\" platform=\"mixedcontent\" f=\"Cambridge-Journals.xml\"><securecookie host=\"^journals\\.cambridge\\.org$\" name=\".*\"/><rule from=\"^http://journals\\.cambridge\\.org/\" to=\"https://journals.cambridge.org/\"/></ruleset>", "<ruleset name=\"Cambridge.org (partial)\" f=\"Cambridge-University-Press.xml\"><exclusion pattern=\"^http://ebooks\\.cambridge\\.org/(?!.+\\.(?:css|ico|jpg|png)(?:$|\\?))\"/><exclusion pattern=\"^http://journals\\.cambridge\\.org/+(?!css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?:assets|dictionary)\\.cambridge\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cambridge\\.org/(?=files/|(?:generated|other)_files/|login(?:$|[?/])|packages/)\" to=\"https://www.cambridge.org/\"/><rule from=\"^http://mobile\\.journals\\.cambridge\\.org/+\" to=\"https://jnls.cup.org/\"/><rule from=\"^http://(assets|dictionary|ebooks|journals|shibboleth)\\.cambridge\\.org/\" to=\"https://$1.cambridge.org/\"/></ruleset>", "<ruleset name=\"CambridgeSoft.com (partial)\" f=\"CambridgeSoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridgeshire Constabulary\" f=\"CambridgeshireConstabulary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Camden.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Camden.gov.uk-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Camden.gov.uk (partial)\" f=\"Camden.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CamelHost.net (partial)\" f=\"CamelHost.net.xml\"><rule from=\"^http://billing\\.camelhost\\.net/\" to=\"https://billing.camelhost.net/\"/></ruleset>", "<ruleset name=\"camelcamelcamel (partial)\" default_off=\"failed ruleset test\" f=\"Camelcamelcamel.xml\"><rule from=\"^http://s3\\.(antimac\\.org|camelcamelcamel\\.com)/\" to=\"https://s3.amazonaws.com/s3.$1/\"/></ruleset>", "<ruleset name=\"CampBX.com\" f=\"CampBX.com.xml\"><securecookie host=\"^\\.campbx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Camp Staff USA\" f=\"Camp_Staff_USA.xml\"><securecookie host=\"^\\.campstaffusa\\.com$\" name=\".+\"/><securecookie host=\"^\\.?jorsika\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?campstaffusa\\.com/\" to=\"https://campstaffusa.com/\"/><rule from=\"^http://(www\\.)?jorsika\\.com/\" to=\"https://$1jorsika.com/\"/></ruleset>", "<ruleset name=\"Campact.de (partial)\" f=\"Campact.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CampaignEQ.com (partial)\" f=\"CampaignEQ.com.xml\"><securecookie host=\"^\\.campaigneq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campaigner (partial)\" f=\"Campaigner.xml\"><securecookie host=\".*\\.campaigner\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?campaigner\\.com/\" to=\"https://www.campaigner.com/\"/><rule from=\"^http://(media|secure)\\.campaigner\\.com/\" to=\"https://$1.campaigner.com/\"/></ruleset>", "<ruleset name=\"CampaignerCRM.com\" default_off=\"failed ruleset test\" f=\"CampaignerCRM.com.xml\"><securecookie host=\"^\\.campaignercrm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?campaignercrm\\.com/\" to=\"https://www.campaignercrm.com/\"/><rule from=\"^http://(go|home)\\.campaignercrm\\.com/\" to=\"https://$1.campaignercrm.com/\"/></ruleset>", "<ruleset name=\"CampfireUnion.com\" f=\"CampfireUnion.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campina (mismatches)\" default_off=\"Certificate mismatch\" f=\"Campina-mismatches.xml\"><rule from=\"^http://campina\\.(be|de|es|ru)/(error(%20pages/|page\\.htm$)|images/errorpage/)\" to=\"https://campina.$1/$2\"/><rule from=\"^http://(?:www\\.)?campina\\.(be|de|es|ru)/\" to=\"https://www.campina.$1/\"/><rule from=\"^http://(www\\.)?compina(\\.com|boerderijdag\\.nl)/(error(%20pages/|page\\.htm$)|images/errorpage/)\" to=\"https://campina$1/$2\"/><rule from=\"^http://(www\\.)?campina\\.de/\" to=\"https://www.campina.de/\"/><rule from=\"^http://(www\\.(nl\\.)?)?frieslandcampina\\.(com|nl)/\" to=\"https://www.frieslandcampina.com/english/\"/><rule from=\"^http://(www\\.)?mycampina\\.com/\" to=\"https://www.mycampina.com/\"/><securecookie host=\"^(?:www\\.)campina\\.be$\" name=\".*\"/><securecookie host=\"^www\\.campina\\.(?:de|es|ru)$\" name=\".*\"/><securecookie host=\"^www\\.(?:nl\\.)?frieslandcampina\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Campina (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Campina.xml\"><rule from=\"^http://campinaopschool\\.nl/(error(%20pages/|page\\.htm$)|images/errorpage/)\" to=\"https://campinaopschool.nl/$1\"/><rule from=\"^http://www\\.campinaopschool\\.nl/\" to=\"https://www.campinaopschool.nl/\"/><rule from=\"^http://(www\\.)?connecthr\\.nl/\" to=\"https://www.connecthr.nl/\"/><rule from=\"^http://intern\\.connecthr\\.nl/\" to=\"https://intern.connecthr.nl/\"/><rule from=\"^http://(academy|m(elk|ilch)web)\\.frieslandcampina\\.com/\" to=\"https://$1.frieslandcampina.com/\"/><rule from=\"^http://(www\\.)landliebe\\.de/\" to=\"https://landliebe.de/\"/><rule from=\"^http://(www\\.)?melkweb\\.com/\" to=\"https://melkweb.frieslandcampina.com/\"/><rule from=\"^http://edixml\\.m(elkweb|ycampina)\\.com/\" to=\"https://edixml.m$1.com/\"/><rule from=\"^http://(www\\.)?mycampina\\.com/\" to=\"https://www.mycampina.com/\"/><securecookie host=\"^(?:www\\.)campinaopschool\\.nl$\" name=\".*\"/><securecookie host=\"^www\\.connecthr\\.nl$\" name=\".*\"/><securecookie host=\"^me(?:elk|ilch)web\\.frieslandcampina\\.com$\" name=\".*\"/><securecookie host=\"^www\\.landliebe\\.de$\" name=\".*\"/><securecookie host=\"^edixml\\.melkweb\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Campus Job.com\" f=\"Campus_Job.com.xml\"><securecookie host=\"^\\.campusjob\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campus Pack (partial)\" default_off=\"failed ruleset test\" f=\"Campus_Pack.xml\"><exclusion pattern=\"^http://www\\.campuspack\\.net/\"/><securecookie host=\"^(?:.+\\.)?campuspack\\.eu$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?campuspack\\.eu/\" to=\"https://$1campuspack.eu/\"/><rule from=\"^http://([\\w\\-]+)\\.campuspack\\.net/(Domain/|static)/\" to=\"https://$1.campuspack.net/$2/\"/></ruleset>", "<ruleset name=\"Campus Labs.com (partial)\" f=\"Campuslabs.com.xml\"><securecookie host=\"^\\.campuslabs\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cams.com (partial)\" f=\"Cams.com.xml\"><securecookie host=\"^\\.cams\\.com$\" name=\"^(?:AB_TRACKING|cams_tr|click_id_time|HISTORY|IP_COUNTRY|LOCATION_FROM_IP|REFERRAL_URL)$\"/><rule from=\"^http://(?:graphic|photo)s\\.cams\\.com/\" to=\"https://secureimage.securedataimages.com/\"/></ruleset>", "<ruleset name=\"CanLII\" f=\"CanLII.xml\"><securecookie host=\"^(?:www\\.)?canlii\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CanSecWest\" f=\"CanSecWest.xml\"><securecookie host=\"^\\.cansecwest\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cansecwest\\.com/\" to=\"https://cansecwest.com/\"/></ruleset>", "<ruleset name=\"Can I Use Python 3.com\" f=\"Can_I_Use_Python_3.com.xml\"><rule from=\"^http://www\\.caniusepython3\\.com/\" to=\"https://caniusepython3.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Can They See My Dick.com\" f=\"Can_They_See_My_Dick.com.xml\"><securecookie host=\"^\\.cantheyseemydick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CanadaHelps (partial)\" default_off=\"failed ruleset test\" f=\"CanadaHelps.xml\"><exclusion pattern=\"^http://(?:www\\.)?canadahelps\\.org/(?:GivingPages/GivingPages|Home|InfoPages/AboutUsOverview|.+/Default)\\.aspx\"/><exclusion pattern=\"^http://(?:www\\.)?canadahelps\\.org/database/files/\"/><rule from=\"^http://(?:www\\.)?canadahelps\\.org/\" to=\"https://www.canadahelps.org/\"/></ruleset>", "<ruleset name=\"Canada Post\" f=\"CanadaPost.xml\"><rule from=\"^http://([^/:@\\.]+)\\.canadapost\\.ca/\" to=\"https://$1.canadapost.ca/\"/></ruleset>", "<ruleset name=\"Canadian Lung Association\" default_off=\"failed ruleset test\" f=\"Canadian-Lung-Assoc.xml\"><rule from=\"^http://(?:www\\.)?lung\\.ca/\" to=\"https://www.lung.ca/\"/></ruleset>", "<ruleset name=\"Canadian Web Hosting (partial)\" f=\"Canadian-Web-Hosting.xml\"><securecookie host=\"^(?:.*\\.)?canadianwebhosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canadian Broadcasting Corporation (mixed content)\" platform=\"mixedcontent\" f=\"Canadian_Broadcasting_Corporation-mixedcontent.xml\"><exclusion pattern=\"^http://music\\.cbc\\.ca/(?:config/|images/|(?:.+/)?(?:j|service)s/|lib/|modules/|(?:Web|Script)Resource\\.axd/|stats/)\"/><rule from=\"^http://music\\.cbc\\.ca/\" to=\"https://music.cbc.ca/\"/></ruleset>", "<ruleset name=\"Canadian Broadcasting Corporation (partial)\" f=\"Canadian_Broadcasting_Corporation.xml\"><exclusion pattern=\"^http://music\\.cbc\\.ca/(?!config/|images/|(?:.+/)?(?:j|service)s/|lib/|modules/|(?:Web|Script)Resource\\.axd/|stats/)\"/><rule from=\"^http://(music|sso)\\.cbc\\.ca/\" to=\"https://$1.cbc.ca/\"/></ruleset>", "<ruleset name=\"Canadian Dimension.com\" f=\"Canadian_Dimension.com.xml\"><securecookie host=\"^canadiandimension\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canadian Institute of Chartered Accountants (partial)\" default_off=\"failed ruleset test\" f=\"Canadian_Institute_of_Chartered_Accountants.xml\"><securecookie host=\"^secure\\.cica\\.ca$\" name=\".+\"/><rule from=\"^http://secure\\.cica\\.ca/\" to=\"https://secure.cica.ca/\"/></ruleset>", "<ruleset name=\"Canadian Light Source (partial)\" f=\"Canadian_Light_Source.xml\"><securecookie host=\"^user\\.lightsource\\.ca$\" name=\".+\"/><rule from=\"^http://user\\.lightsource\\.ca/\" to=\"https://user.lightsource.ca/\"/></ruleset>", "<ruleset name=\"The Canadian Press\" default_off=\"failed ruleset test\" f=\"Canadian_Press.xml\"><securecookie host=\"^www\\.thecanadianpress\\.com$\" name=\".+\"/><rule from=\"^http://www\\.cp\\.org/([^\\?]*)(?:\\?.*)?\" to=\"https://www.thecanadianpress.com/$1\"/><rule from=\"^http://(?:www\\.)?thecanadianpress\\.com/\" to=\"https://www.thecanadianpress.com/\"/></ruleset>", "<ruleset name=\"Canadian Security Intelligence Service\" f=\"Canadian_Security_Intelligence_Service.xml\"><rule from=\"^http://csis\\.gc\\.ca/\" to=\"https://www.csis.gc.ca/\"/><rule from=\"^http://([^/:@]+)?\\.csis\\.gc\\.ca/\" to=\"https://$1.csis.gc.ca/\"/><rule from=\"^http://scrs\\.gc\\.ca/\" to=\"https://www.csis.gc.ca/\"/><rule from=\"^http://([^/:@]+)?\\.scrs\\.gc\\.ca/\" to=\"https://$1.csis.gc.ca/\"/><rule from=\"^http://csis-scrs\\.gc\\.ca/\" to=\"https://www.csis.gc.ca/\"/><rule from=\"^http://([^/:@]+)?\\.csis-scrs\\.gc\\.ca/\" to=\"https://$1.csis.gc.ca/\"/></ruleset>", "<ruleset name=\"CanalDigital\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CanalDigital.xml\"><rule from=\"^http://((?:www|erhverv|foreninger|iptv|kabel|parabol|selger)\\.)?canaldigital\\.(dk|no|se)/\" to=\"https://$1canaldigital.$2/\"/></ruleset>", "<ruleset name=\"Canary Watch.org\" f=\"Canary_Watch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cancer.gov (partial)\" f=\"Cancer.gov.xml\"><exclusion pattern=\"^http://seer\\.cancer\\.gov/+(?!favicon\\.ico|[is]/|toolbox/.+\\.css)\"/><securecookie host=\"^(?!seer\\.)\\w\" name=\".\"/><rule from=\"^http://itcr\\.cancer\\.gov/\" to=\"https://cbiit.nci.nih.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CandH Lures.com (partial)\" f=\"CandH_Lures.com.xml\"><rule from=\"^http://(?:www\\.)?candhlures\\.com/(?=cdn-cgi/|css/|javascript/)\" to=\"https://www.candhlures.com/\"/></ruleset>", "<ruleset name=\"Canlı Alem\" f=\"Canli_Alem.xml\"><securecookie host=\"^\\.?canlialem\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intl Cannagraphic Magazine\" f=\"Cannagraphic.xml\"><rule from=\"^http://(?:www\\.)?icmag\\.com/\" to=\"https://www.icmag.com/\"/><rule from=\"^http://(?:www\\.)?icmag\\.com/ic/\" to=\"https://www.icmag.com/ic/\"/></ruleset>", "<ruleset name=\"Canon (partial)\" f=\"Canon.xml\"><exclusion pattern=\"^http://shop\\.usa\\.canon\\.com/+(?!estore/(?:images|marketing)/|favicon\\.ico|shop/(?:CheckoutLogonDisplayView|OrderShippingBillingView|ResetPasswordGuestErrorView|UserRegistrationForm|catalog)(?:$|[?/])|sys/|wcsstore/.+/(?:css|images)/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!shop\\.usa\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canonical.com (partial)\" f=\"Canonical.xml\"><securecookie host=\"^(?:certification|irclogs|shop)\\.canonical\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canterbury.gov.uk (partial)\" f=\"Canterbury.gov.uk.xml\"><exclusion pattern=\"http://democracy\\.canterbury\\.gov\\.uk/+(?![Ss]iteSpecific/|(?:ieLogon|mgRegisterKeywordInterest)\\.aspx|jquery-ui/)\"/><securecookie host=\"^(?!democracy\\.)\\w\" name=\".\"/><securecookie host=\"^\\.forms\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canvas.Net\" f=\"Canvas.net.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://canvas\\.net/\" to=\"https://www.canvas.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canvas\" default_off=\"failed ruleset test\" f=\"Canvas.xml\"><securecookie host=\"^(?:.*\\.)?canv\\.as\" name=\".+\"/><rule from=\"^http://(www\\.)?canv\\.as/\" to=\"https://$1canv.as/\"/><rule from=\"^http://i\\.canvasugc\\.com/\" to=\"https://i.canvasugc.com/\"/><rule from=\"^http://rt_(\\d)\\.canv\\.as/\" to=\"https://rt_$1.canv.as/\"/></ruleset>", "<ruleset name=\"Canvas LMS.com\" f=\"Canvas_LMS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canvas n decor.com\" default_off=\"failed ruleset test\" f=\"Canvas_n_decor.com.xml\"><securecookie host=\"^\\.canvasndecor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cape-it.de (partial)\" f=\"Cape-it.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capistrano\" f=\"Capistrano.xml\"><rule from=\"^http://(?:www\\.)?capify\\.org/\" to=\"https://github.com/capistrano/capistrano/wiki/Documentation-v2.x\"/></ruleset>", "<ruleset name=\"Capital One Connect\" f=\"Capital-One-Connect.xml\"><securecookie host=\"^www\\.capitaloneconnect\\.\\w{3,4}$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?capitaloneconnect\\.(biz|com|info|net|org)/\" to=\"https://www.capitaloneconnect.$1/\"/></ruleset>", "<ruleset name=\"Capitalone360.com\" f=\"CapitalOne360.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capitaller.ru\" f=\"Capitaller.ru.xml\"><securecookie host=\"^(?:www\\.)?capitaller\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capitol Machine.com\" default_off=\"failed ruleset test\" f=\"Capitol_Machine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capn Proto.org\" f=\"Capn_Proto.org.xml\"><securecookie host=\"^\\.capnproto\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"captchas.net\" f=\"Captchas.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Captura Group (partial)\" platform=\"mixedcontent\" f=\"Captura-Group.xml\"><securecookie host=\"^(?:www\\.)?measuredvoice\\.com$\" name=\".*\"/><rule from=\"^http://cdn\\.measuredvoice\\.com/\" to=\"https://s3.amazonaws.com/cdn.measuredvoice.com/\"/><rule from=\"^http://(www\\.)?measuredvoice\\.com/(favicon\\.ico|img/|wp-content/)\" to=\"https://$1measuredvoice.com/$2\"/></ruleset>", "<ruleset name=\"capwiz.com (partail)\" f=\"Capwiz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Car.com (partial)\" f=\"Car.com.xml\"><exclusion pattern=\"^http://dealers\\.car\\.com/+(?![Cc]ontent/|favicon.ico)\"/><securecookie host=\"^(?:finance|loans)\\.car\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarAdvice\" default_off=\"failed ruleset test\" f=\"CarAdvice.xml\"><rule from=\"^http://(?:cdn\\.|(www\\.))?caradvice\\.com\\.au/\" to=\"https://$1caradvice.com.au/\"/></ruleset>", "<ruleset name=\"CarProMods.com\" f=\"CarProMods.com.xml\"><securecookie host=\"^(?:www)?\\.carpromods\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?carpromods\\.com/\" to=\"https://www.carpromods.com/\"/></ruleset>", "<ruleset name=\"Cara Sutra.co.uk\" default_off=\"failed ruleset test\" f=\"Carasutra.co.uk.xml\"><securecookie host=\"^\\.carasutra\\.co\\.uk$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carbonfund.org\" f=\"Carbonfund.org.xml\"><securecookie host=\"^(?:www\\.)?carbonfund\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carbonmade.com\" f=\"Carbonmade.xml\"><securecookie host=\"^(?:descience0\\d\\.)?carbonmade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carbonwind.net\" platform=\"mixedcontent\" f=\"Carbonwind.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CardCash.com\" f=\"CardCash.com.xml\"><securecookie host=\"^\\.(?:www\\.)?cardcash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff University (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Cardiff-University-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff University (partial)\" f=\"Cardiff-University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.astro|learningcentral)\\.cardiff\\.ac\\.uk/\" to=\"https://$1.cf.ac.uk/\"/><rule from=\"^http://surveys\\.cardiff\\.ac\\.uk/\" to=\"https://www.surveys.cardiff.ac.uk/\"/><rule from=\"^http://(cardiffnetwork|cs|engin)\\.cf\\.ac\\.uk/\" to=\"https://www.$1.cf.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cards Against Humanity.com\" f=\"Cards_Against_Humanity.com.xml\"><securecookie host=\"^store\\.cardsagainsthumanity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care Net\" default_off=\"failed ruleset test\" f=\"Care-Net.xml\"><securecookie host=\"^www\\.care-net\\.org$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)care-net\\.org/\" to=\"https://www.care-net.org/\"/></ruleset>", "<ruleset name=\"Care2.com\" f=\"Care2.com.xml\"><securecookie host=\"^(?:www)?\\.care2\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?care2\\.com/\" to=\"https://www.care2.com/\"/><rule from=\"^http://dingo\\.care2\\.com/\" to=\"https://dingo.care2.com/\"/><rule from=\"^http://jobs\\.care2\\.com/\" to=\"https://care2.jobamatic.com/\"/><rule from=\"^http://passport\\.care2\\.com/login\\.html\" to=\"https://www.care2.com/login.html\"/><rule from=\"^http://passport\\.care2\\.com/\" to=\"https://www.care2.com/accounts/\"/><rule from=\"^http://volunteer\\.care2\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.care2.com/volunteer$1\"/></ruleset>", "<ruleset name=\"Carecareers.com.au (partial)\" f=\"Carecareers.com.au.xml\"><securecookie host=\"^jobs\\.carecareers\\.com\\.au$\" name=\".+\"/><rule from=\"^http://jobs\\.carecareers\\.com\\.au/\" to=\"https://jobs.carecareers.com.au/\"/></ruleset>", "<ruleset name=\"Career.ru\" f=\"Career.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerBuilder (partial)\" platform=\"mixedcontent\" f=\"CareerBuilder.xml\"><securecookie host=\"^\\.careerbuilder\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?careerbuilder\\.com/\" to=\"https://$1careerbuilder.com/\"/><rule from=\"^http://(\\w+)\\.careerbuilder\\.co\\.uk/\" to=\"https://$1.careerbuilder.co.uk/\"/><rule from=\"^http://(?:img|secure)\\.icbdr\\.com/\" to=\"https://secure.icbdr.com/\"/></ruleset>", "<ruleset name=\"CareerDean.com\" f=\"CareerDean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerPerfect\" f=\"CareerPerfect.xml\"><securecookie host=\"^\\.careerperfect\\.com$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?careerperfect\\.com/\" to=\"https://secure.careerperfect.com/\"/><rule from=\"^http://monsterres\\.careerperfect\\.com/(brands|content/(\\d{4}\\w?|images|trk-v1))/\" to=\"https://secure.careerperfect.com/$1/\"/></ruleset>", "<ruleset name=\"Careerfoundry.com\" f=\"Careerfoundry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Careers.fi\" f=\"Careers.fi.xml\"><rule from=\"^http://(www\\.)?careers\\.fi/\" to=\"https://careers.fi/\"/></ruleset>", "<ruleset name=\"Carekris.com\" f=\"Carekris.com.xml\"><securecookie host=\"^\\.carekris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"caremad.io\" f=\"Caremad.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carestream.com\" f=\"Carestream.com.xml\"><securecookie host=\"^(?:www)?\\.carestream\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?carestream\\.com/\" to=\"https://www.carestream.com/\"/></ruleset>", "<ruleset name=\"Carezone.cz\" f=\"Carezone.cz.xml\"><securecookie host=\"^\\.carezone\\.cz$\" name=\"^__utma$\"/><securecookie host=\"^\\.carezone\\.cz$\" name=\"^__utmz$\"/><securecookie host=\"^admin\\.carezone\\.cz$\" name=\"^session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cargo (partial)\" f=\"Cargo.xml\"><rule from=\"^http://(www\\.)?cargocollective\\.com/(?=_css/|favicon\\.ico|_gfx/|stylesheet/)\" to=\"https://$1cargocollective.com/\"/><rule from=\"^http://media\\.cargocollective\\.com/\" to=\"https://c3434167.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload\\.cargocollective\\.com/\" to=\"https://c573862.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload50\\.cargocollective\\.com/\" to=\"https://c3426892.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload54\\.cargocollective\\.com/\" to=\"https://c3426897.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload56\\.cargocollective\\.com/\" to=\"https://c3426899.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload57\\.cargocollective\\.com/\" to=\"https://c3426900.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload93\\.cargocollective\\.com/\" to=\"https://c3452614.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload100\\.cargocollective\\.com/\" to=\"https://c3452621.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload120\\.cargocollective\\.com/\" to=\"https://a506586f092ca126898c-4779b67baf4ae2f3b1add8bb236f618f.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload141\\.cargocollective\\.com/\" to=\"https://7886f778086c061c4ea7-c166c3974f4551941b1742539f87878f.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload162\\.cargocollective\\.com/\" to=\"https://5365791d8e35e1727236-7f9dfcc055df093645758908fe06f705.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload169\\.cargocollective\\.com/\" to=\"https://612d1a71230523df4fe9-4ee8e300510bcfe4f6b35103392d0b2b.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload174\\.cargocollective\\.com/\" to=\"https://d12d30d30b94662cf1bf-d730a381cec30b09b6ffdde13fb218a6.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload180\\.cargocollective\\.com/\" to=\"https://a4ce430392986aec9cfc-443e219c85814104c662bd85fe98ae82.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload203\\.cargocollective\\.com/\" to=\"https://4716a3e1207fa032eadf-9086378b72655457e586fa5056c9274c.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload200\\.cargocollective\\.com/\" to=\"https://7e88561f37b025b9959e-f9c813036f1357060526fbfc879ecc04.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload215\\.cargocollective\\.com/\" to=\"https://e2f0d7e1fc4fd5d3636b-5c5fc32a9669fba64977478aa8802799.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload216\\.cargocollective\\.com/\" to=\"https://c961e2a037a0257122b6-069ed874dcd6a73d3851c1620da864a4.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload246\\.cargocollective\\.com/\" to=\"https://3ee99a4d99cc6612cec3-afe7421badd138b05a2309c5cb228ad8.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload250\\.cargocollective\\.com/\" to=\"https://79374de44d5e7ecaf88a-2ad9d41db9c7ba36604c9612b6f92488.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload258\\.cargocollective\\.com/\" to=\"https://4cb35411cb45cfd77b32-f5d733f446c8fd08907dcac084aa95a3.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload263\\.cargocollective\\.com/\" to=\"https://9f20954c27db5d99940c-223557c9acb55198baff86c90a7b5e16.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload271\\.cargocollective\\.com/\" to=\"https://7f110843eca5c0d3e385-4e08e849f3eae91ecc5304ca7a022f60.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload277\\.cargocollective\\.com/\" to=\"https://17c03ece40efdab208da-3a9b57b1b9597fd75dd50c1708c7fa0c.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload280\\.cargocollective\\.com/\" to=\"https://5e5d49cfdb379ce0c937-5f37aeb368ece0460243e4e3c4a03111.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload282\\.cargocollective\\.com/\" to=\"https://7c6429bafe722da2753b-014553dd10402f2cae583d2fc431df61.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload287\\.cargocollective\\.com/\" to=\"https://dcac8aac4b6120e78f70-4816ed90d4cd9717520c758b10641d4f.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload288\\.cargocollective\\.com/\" to=\"https://d7b28b377c20485bcd1e-17badbe9072beed4090a37cfee2aeb9d.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload291\\.cargocollective\\.com/\" to=\"https://9817d040c26c7fc91c86-7067033f01f8681d3d26db1b869e7c13.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload294\\.cargocollective\\.com/\" to=\"https://aa0c5e4ad94186b7d1ff-c47c05f42ae1f5ff6f44beac40165734.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload295\\.cargocollective\\.com/\" to=\"https://d3f85a14b915f530cfd8-341bc7b6089f1bf517cb1eb7488d0cf3.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload296\\.cargocollective\\.com/\" to=\"https://14dc5f4076479b5cedab-94c4d07712ffb0415e1a5357e32aaf70.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Zeiss.com (partial)\" f=\"Carl_Zeiss.xml\"><securecookie host=\".+\\.zeiss\\.com$\" name=\".+\"/><rule from=\"^http://applications\\.zeiss\\.com/\\??$\" to=\"https://corporate.zeiss.com/gateway/en_de/home.html\"/><rule from=\"^http://applications\\.zeiss\\.com/(?=\\w{16}/Index\\?ReadForm)\" to=\"https://www.zeiss.com/\"/><rule from=\"^http://(corporate|meditec|microscopy|www)\\.zeiss\\.com/\" to=\"https://$1.zeiss.com/\"/></ruleset>", "<ruleset name=\"Carleton.ca (partial)\" f=\"Carleton.ca.xml\"><exclusion pattern=\"^http://(?:alumni|graduate|newsroom|sprott)\\.carleton\\.ca/(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://events\\.carleton\\.ca/(?!cu_global/|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://researchworks\\.carleton\\.ca/(?!cu/wp-content/|cu/wp-includes/)\"/><securecookie host=\"^(?:events|gsapplications)\\.carleton\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(ccsl|library)\\.carleton\\.ca/\" to=\"https://$1.carleton.ca/\"/><rule from=\"^http://((?:admissions|alumni|apply|events|forms|giving|goravens|graduate|gsapplications|newsroom|researchworks|science|(?:www\\.)?scs|sprott|students|www[12]?)\\.)?carleton\\.ca/\" to=\"https://$1carleton.ca/\"/></ruleset>", "<ruleset name=\"Carleton College\" f=\"Carleton_College.xml\"><securecookie host=\"^apps\\.carleton\\.edu$\" name=\".+\"/><rule from=\"^http://carleton\\.edu/\" to=\"https://www.carleton.edu/\"/><rule from=\"^http://(webapps\\.acs|apps|www)\\.carleton\\.edu/\" to=\"https://$1.carleton.edu/\"/></ruleset>", "<ruleset name=\"carlosprioglio.com\" default_off=\"mismatch\" f=\"Carlosprioglio.com.xml\"><rule from=\"^http://(?:www\\.)?carlosprioglio\\.com/\" to=\"https://carlosprioglio.com/\"/></ruleset>", "<ruleset name=\"Carlsbad.org\" f=\"Carlsbad.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarltonBale.com (partial)\" f=\"CarltonBale.com.xml\"><rule from=\"^http://s3\\.carltonbale\\.com/\" to=\"https://d18oqavmcmo3u.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Carnegie Institution for Science (partial)\" f=\"Carnegie-Institution-for-Science.xml\"><securecookie host=\".*\\.carnegiescience\\.edu$\" name=\".+\"/><securecookie host=\"^(?:\\.gl|\\.hazen\\.gl|mail)\\.ciw\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ciw\\.edu/\" to=\"https://carnegiescience.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carnegie Mellon University (problematic)\" default_off=\"mismatched\" f=\"Carnegie-Mellon-University-mismatches.xml\"><securecookie host=\"^portal\\.etc\\.cmu.edu$\" name=\".+\"/><rule from=\"^http://(athletics|portal\\.etc|repository)\\.cmu\\.edu/\" to=\"https://$1.cmu.edu/\"/></ruleset>", "<ruleset name=\"Carnegie Mellon University (partial)\" f=\"Carnegie-Mellon-University.xml\"><exclusion pattern=\"^http://(?:www\\.)?heinz\\.cmu\\.edu/(?!image).+\\.aspx(?:$|\\?)\"/><securecookie host=\"^.*\\.cmu\\.edu$\" name=\".*\"/><rule from=\"^http://(www\\.)?cmu\\.edu/\" to=\"https://$1cmu.edu/\"/><rule from=\"^http://(www\\.)?((?:directory\\.|webiso\\.)?andrew|cylab|ece|(?:sparrow|users)\\.ece|(?:(?:calendar|ccc12|csadmins|cleese|www-dev\\.csd|cups|fac|heinz|link|lti|ath-live\\.mts|news|(?:dev\\.|wonderwoman\\.)?olympus|origami\\.qolt|sites|(?:antman|gambit|innovation|mailman|webbuild-web1)\\.srv|trust|(?:ptest[1-4]-userpool|webbuild)\\.web|webapps|wiki|women|www-2|www-dev|xia)\\.)?cs|lunchdelivery\\.hcii|libwebspace\\.library|my|ri|(?:resources\\.|www\\.)?sei|studentaffairs)\\.cmu\\.edu/\" to=\"https://$1$2.cmu.edu/\"/><rule from=\"^http://webuild-web2\\.srv\\.cs\\.cmu\\.edu/\" to=\"https://webuild-web1.srv.cs.cmu.edu/\"/><rule from=\"^http://(?:www\\.)?etc\\.cmu\\.edu/\" to=\"https://www.etc.cmu.edu/\"/></ruleset>", "<ruleset name=\"Carousell.com (partial)\" f=\"Carousell.com.xml\"><securecookie host=\"^(?:id\\.|my\\.|sg\\.|tw\\.|us\\.)?carousell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carphone Warehouse.com (partial)\" f=\"Carphone_Warehouse.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?carphonewarehouse\\.com/(?!cpwtrade\\.css|favicon\\.ico)\"/><exclusion pattern=\"^http://m\\.carphonewarehouse\\.com/+(?!img/|mt/a/)\"/><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^(?!m\\.|www\\.)\\w\" name=\".\"/><securecookie host=\"^\\.business\\.\" name=\".\"/><rule from=\"^http://metrics\\.carphonewarehouse\\.com/\" to=\"https://carphonewarehouse.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarrefourSA.com\" f=\"CarrefourSA.com.xml\"><securecookie host=\"^www\\.carrefoursa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"carrier-lost.org\" default_off=\"failed ruleset test\" f=\"Carrier-lost.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cars.com (partial)\" f=\"Cars.com.xml\"><exclusion pattern=\"http://www\\.cars\\.com/+(?!$|\\?|[\\w-]+/(?:image|cs)s/|css/|favicon\\.ico|images/|static/)\"/><securecookie host=\"^\\.www\\.cars\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carsabi.com\" default_off=\"mismatch\" f=\"Carsabi.com.xml\"><securecookie host=\"^carsabi\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?carsabi\\.com/\" to=\"https://carsabi.com/\"/></ruleset>", "<ruleset name=\"CarterCenter.org (mismatches)\" default_off=\"Certificate mismatch\" f=\"CarterCenter.org-mismatches.xml\"><rule from=\"^http://blog\\.cartercenter\\.org/\" to=\"https://blog.cartercenter.org/\"/></ruleset>", "<ruleset name=\"CarterCenter.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CarterCenter.org.xml\"><securecookie host=\"^(?:www\\.)?cartercenter\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?cartercenter\\.org/\" to=\"https://$1cartercenter.org/\"/><rule from=\"^http://donate\\.cartercenter\\.org/(?:site/PageServer)?(?:\\?.*)?$\" to=\"https://cartercenter.org/\"/></ruleset>", "<ruleset name=\"Carters.com (partial)\" f=\"Carters.com.xml\"><securecookie host=\"^(?:supplier|www)\\.carters\\.com$\" name=\".+\"/><rule from=\"^http://carters\\.com/\" to=\"https://www.carters.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carters OshLosh.Ca\" f=\"Carters_OshLosh.Ca.xml\"><securecookie host=\"^www\\.cartersoshkosh\\.ca$\" name=\".+\"/><rule from=\"^http://cartersoshkosh\\.ca/\" to=\"https://www.cartersoshkosh.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casale Media.com (partial)\" f=\"Casale-Media.xml\"><securecookie host=\".*\\.casalemedia\\.com$\" name=\".+\"/><rule from=\"^http://ip\\.casalemedia\\.com/\" to=\"https://as-sec.casalemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCE.com\" f=\"Casas_Communications_Engineering.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casascius\" f=\"Casascius.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cascading Media.com\" f=\"Cascading_Media.com.xml\"><securecookie host=\"^\\.cascadingmedia\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Case Western Reserve University (partial)\" f=\"Case_Western_Reserve_University.xml\"><rule from=\"^http://tiswww\\.c(ase|wru)\\.edu/\" to=\"https://tiswww.c$1.edu/\"/><rule from=\"^http://cnswww\\.cns\\.cwru\\.edu/\" to=\"https://cnswww.cns.cwru.edu/\"/></ruleset>", "<ruleset name=\"Caseking.biz\" f=\"Caseking.biz.xml\"><rule from=\"^http://(?:www\\.)?caseking\\.biz/\" to=\"https://www.caseking.biz/\"/></ruleset>", "<ruleset name=\"Caseking.de\" f=\"Caseking.de.xml\"><securecookie host=\"^(?:www)?\\.caseking\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?caseking\\.de/\" to=\"https://www.caseking.de/\"/></ruleset>", "<ruleset name=\"Case's Ladder\" f=\"Cases_Ladder.xml\"><rule from=\"^http://((?:cdn-img|cgi\\d?|img|plus\\d|users|www)\\.)?igl\\.net/\" to=\"https://$1igl.net/\"/></ruleset>", "<ruleset name=\"casetext.com\" f=\"Casetext.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CashPlatoon.com\" default_off=\"expired, missing certificate chain\" f=\"CashPlatoon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cash for Contracts\" default_off=\"expired\" f=\"Cash_for_Contracts.xml\"><securecookie host=\"^secure\\.cashforcontracts\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?cashforcontracts\\.com/\" to=\"https://secure.cashforcontracts.com/\"/></ruleset>", "<ruleset name=\"Cashback.co.uk (partial)\" f=\"Cashback.co.uk.xml\"><exclusion pattern=\"http://www\\.cashback\\.co\\.uk/$\"/><rule from=\"^http://(secure\\.|www\\.)?cashback\\.co\\.uk/\" to=\"https://$1cashback.co.uk/\"/><rule from=\"^https://secure\\.cashback\\.co\\.uk/$\" to=\"https://www.cashback.co.uk/\"/></ruleset>", "<ruleset name=\"CasinoAffiliatePrograms.com\" default_off=\"failed ruleset test\" f=\"CasinoAffiliatePrograms.xml\"><securecookie host=\"^www\\.casinoaffiliateprograms\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?casinoaffiliateprograms\\.com/\" to=\"https://casinoaffiliateprograms.com/\"/></ruleset>", "<ruleset name=\"CasinoEstrella.com\" f=\"CasinoEstrella.com.xml\"><securecookie host=\"^(?:www)?\\.casinoestrella\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caskstore.com\" f=\"Caskstore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casper.com\" f=\"Casper.com.xml\"><securecookie host=\"^\\.casper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casper og Frank.de (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Casper_og_Frank.dk.xml\"><securecookie host=\"^\\.casperogfrank\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casro (partial)\" f=\"Casro.xml\"><exclusion pattern=\"^http://(?:www\\.)?casro\\.org/(?:index\\.cfm)?(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?casro\\.org/\" to=\"https://www.casro.org/\"/></ruleset>", "<ruleset name=\"CassinoEstrela\" default_off=\"failed ruleset test\" f=\"CassinoEstrela.xml\"><securecookie host=\"^(?:www)?\\.cassinoestrela\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CastRoller (partial)\" default_off=\"failed ruleset test\" f=\"CastRoller.xml\"><rule from=\"^http://s\\.cstrlr\\.com/\" to=\"https://d231qji2e2hste.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Castel-Bayart\" f=\"Castel-Bayart.xml\"><securecookie host=\"^w*\\.castel-bayart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?castel-bayart\\.com/\" to=\"https://www.castel-bayart.com/\"/></ruleset>", "<ruleset name=\"Castle-Technology.co.uk\" f=\"Castle-Technology.co.uk.xml\"><securecookie host=\"^\\.www\\.castle-technology\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Castlebridge.ie\" f=\"Castlebridge.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CatN.com\" f=\"CatN.com.xml\"><securecookie host=\"^cp\\.c4\\.catn\\.com$\" name=\".+\"/><rule from=\"^http://(cp\\.c4\\.|www\\.)?catn\\.com/\" to=\"https://$1catn.com/\"/></ruleset>", "<ruleset name=\"Catalog of Domestic Federal Assistance\" f=\"Catalog-of-Domestic-Federal-Assistance.xml\"><securecookie host=\"^.*\\.cfda\\.gov$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cfda\\.gov/\" to=\"https://www.cfda.gov/\"/></ruleset>", "<ruleset name=\"Catalysis.com (partial)\" f=\"Catalysis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catalyst IT (partial)\" f=\"Catalyst-IT.xml\"><rule from=\"^http://wrms\\.catalyst\\.net\\.nz/\" to=\"https://wrms.catalyst.net.nz/\"/><securecookie host=\"^wrms\\.catalyst\\.net\\.nz$\" name=\".*\"/></ruleset>", "<ruleset name=\"Catalyst Host.com\" f=\"Catalyst_Host.com.xml\"><securecookie host=\"^(?:cp|portal)?\\.catalysthost\\.com$\" name=\".+\"/><rule from=\"^http://(?:(cp\\.|portal\\.)|www\\.)?catalysthost\\.com/\" to=\"https://$1catalysthost.com/\"/></ruleset>", "<ruleset name=\"Catalyst Technology Group\" default_off=\"failed ruleset test\" f=\"Catalyst_Technology_Group.xml\"><securecookie host=\"^(?:.+\\.)?catalysttg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catarse.me (partial)\" f=\"Catarse.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catchy.com\" f=\"Catchy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cateee.net\" f=\"Cateee.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caters News Agency (partial)\" f=\"Caters_News_Agency.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catgirlsare.sexy\" f=\"Catgirlsare.sexy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cathay Pacific\" f=\"Cathay_Pacific.xml\"><rule from=\"^http://cathaypacific\\.com/\" to=\"https://www.cathaypacific.com/\"/><rule from=\"^http://cathaypacificcargo\\.com/\" to=\"https://www.cathaypacficcargo.com/\"/><rule from=\"^http://cathaypacifichost\\.com/\" to=\"https://www.cathaypacifichost.com/\"/><rule from=\"^http://cxholidays\\.com/\" to=\"https://www.cxholidays.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catlin Sea Survey.com (partial)\" f=\"Catlin_Sea_Survey.xml\"><securecookie host=\"^(?:www)?\\.catlinseaviewsurvey\\.com$\" name=\".+\"/><rule from=\"^http://catlinseaviewsurvey\\.com/\" to=\"https://www.catlinseaviewsurvey.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cato Institute (partial)\" f=\"Cato-Institute.xml\"><rule from=\"^http://secure\\.cato\\.org/\" to=\"https://secure.cato.org/\"/></ruleset>", "<ruleset name=\"Catooh.com (partial)\" f=\"Catooh.com.xml\"><exclusion pattern=\"^http://www\\.catooh\\.com/+(?!catoohthumb\\d\\d/|html/|magix/|registrierung\\.\\d+\\.html|themes/)\"/><rule from=\"^http://catooh\\.com/\" to=\"https://www.catooh.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catraca Livre.com.br\" f=\"Catraca_Livre.com.br.xml\"><securecookie host=\"^\\.catracalivre\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Causes (partial)\" default_off=\"failed ruleset test\" f=\"Causes.xml\"><securecookie host=\"^(?:(?:[^s]\\w*)?\\.)?causes\\.com$\" name=\".*\"/><rule from=\"^http://s2\\.causes\\.com/\" to=\"https://www.causes.com/\"/><rule from=\"^http://([^s][\\w\\-]*\\.)?causes\\.com/\" to=\"https://$1causes.com/\"/><rule from=\"^http://support\\.causes\\.com/(assets|generated|images|system)/\" to=\"https://causes.zendesk.com/$1/\"/><rule from=\"^http://causes\\.presscdn\\.com/\" to=\"https://exchange.causes.com/\"/></ruleset>", "<ruleset name=\"Cavirtex.com (partial)\" f=\"Cavirtex.com.xml\"><securecookie host=\"^\\.cavirtex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cavium.com\" f=\"Cavium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cax.com\" f=\"Cax.com.xml\"><securecookie host=\"^www\\.cax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cbb.dk\" f=\"Cbb.dk.xml\"><rule from=\"^http://(?:www\\.)?cbb\\.dk/\" to=\"https://www.cbb.dk/\"/></ruleset>", "<ruleset name=\"cchtml.com\" default_off=\"self-signed\" f=\"Cchtml.com.xml\"><securecookie host=\"^mail\\.cchtml\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cchtml\\.com/\" to=\"https://cchtml.com/\"/><rule from=\"^http://mail\\.cchtml\\.com/\" to=\"https://mail.cchtml.com/\"/></ruleset>", "<ruleset name=\"cdig.me\" f=\"Cdig.me.xml\"><securecookie host=\"^(?:w*\\.)?cdig\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cdkeys.com\" f=\"Cdkeys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdn-net.com\" default_off=\"failed ruleset test\" f=\"Cdn-net.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdnads.com\" f=\"Cdnads.com.xml\"><rule from=\"^http://padsdel\\.cdnads\\.com/\" to=\"https://padsdel2.cdnads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdncomputer.com\" f=\"Cdncomputer.com.xml\"><rule from=\"^http://cdn\\.cdncomputer\\.com/\" to=\"https://d1eiwcwqdd4h4w.cloudfront.net/\"/></ruleset>", "<ruleset name=\"cdngeek.net\" default_off=\"mismatched\" f=\"Cdngeek.net.xml\"><rule from=\"^http://awscf\\.cdngeek\\.net/\" to=\"https://awscf.cdngeek.net/\"/></ruleset>", "<ruleset name=\"cdnjs.com\" f=\"Cdnjs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdnme.se\" f=\"Cdnme.se.xml\"><rule from=\"^http://cdn(\\d)\\.cdnme\\.se/\" to=\"https://cdn$1.cdnme.se/\"/></ruleset>", "<ruleset name=\"cdnpi.pe\" f=\"Cdnpi.pe.xml\"><rule from=\"^http://cdnpi\\.pe/\" to=\"https://cdnpi.pe/\"/></ruleset>", "<ruleset name=\"CeBIT.de (partial)\" f=\"CeBIT.de.xml\"><rule from=\"^http://(?:www\\.)?cebit\\.de/(?=(?:de|en)/applikation/secure/|meinemesse/login(?:$|\\?))\" to=\"https://www.cebit.de/\"/></ruleset>", "<ruleset name=\"Ceasefire Magazine.co.uk\" f=\"Ceasefire_Magazine.co.uk.xml\"><securecookie host=\"^www\\.ceasefiremagazine\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cedexis (partial)\" f=\"Cedexis.xml\"><rule from=\"^http://portal\\.cedexis\\.com/\" to=\"https://portal.cedexis.com/\"/></ruleset>", "<ruleset name=\"CeeJay.net (partial)\" f=\"CeeJay.net.xml\"><securecookie host=\"^(?:crashplan|support)\\.ceejay\\.net$\" name=\".+\"/><rule from=\"^http://(crashplan|support)\\.ceejay\\.net(:4285)?/\" to=\"https://$1.ceejay.net$2/\"/></ruleset>", "<ruleset name=\"Cefas.co.uk\" f=\"Cefas.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cefas\\.co\\.uk/\" to=\"https://www.cefas.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Celartem (mismatches)\" default_off=\"expired, self-signed\" f=\"Celartem-mismatches.xml\"><rule from=\"^http://celartem\\.com/\" to=\"https://www.celartem.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Celartem (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Celartem.xml\"><rule from=\"^http://(?:www\\.)?lizardtech\\.com/\" to=\"https://lizardtech.com/\"/></ruleset>", "<ruleset name=\"Celiac Disease Foundation\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Celiac-Foundation.xml\"><rule from=\"^http://(?:www\\.)?celiac\\.org/\" to=\"https://www.celiac.org/\"/></ruleset>", "<ruleset name=\"Cell (partial)\" default_off=\"all infinite loops\" f=\"Cell.xml\"><securecookie host=\"^www\\.cell\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cell\\.com/\" to=\"https://www.cell.com/\"/></ruleset>", "<ruleset name=\"Cemetech.net\" f=\"Cemetech.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cendio.com\" f=\"Cendio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceneo.pl (false MCB)\" platform=\"mixedcontent\" f=\"Ceneo.pl-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceneo.pl (partial)\" f=\"Ceneo.pl.xml\"><exclusion pattern=\"^http://www\\.ceneo\\.pl/+(?!Content/)\"/><securecookie host=\"^partnerzy\\.ceneo\\.pl$\" name=\".+\"/><rule from=\"^http://ceneo\\.pl/\" to=\"https://www.ceneo.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cengage (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Cengage.xml\"><securecookie host=\"^(?:.*\\.)?(?:ed2go|ordercourses).com$\" name=\".*\"/><securecookie host=\"^serviceplus\\.cengage\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?cengagebrain\\.co(?:m|\\.uk)$\" name=\".*\"/><rule from=\"^http://serviceplus\\.cengage\\.com/\" to=\"https://serviceplus.cengage.com/\"/><rule from=\"^http://assets\\.cengagebrain\\.com/\" to=\"https://assets.cengagebrain.com/\"/><rule from=\"^http://(www\\.)?cengagebrain\\.co(m|\\.uk)/\" to=\"https://$1cengagebrain.co$2/\"/><rule from=\"^http://(www\\.)?ed2go\\.com/\" to=\"https://$1ed2go.com/\"/><rule from=\"^http://hbb\\.hbrstatic\\.com/\" to=\"https://business.highbeam.com/\"/><rule from=\"^http://hbr\\.hbrstatic\\.com/\" to=\"https://highbeam.com/\"/><rule from=\"^http://(www\\.)?highbeam\\.com/(Account/|combres\\.axd/|[cC]ontent/|favicon\\.ico|Img/|Login|Registration/)\" to=\"https://$1highbeam.com/$2\"/><rule from=\"^http://business\\.highbeam\\.com/(Content/|favicon2\\.ico|iframead/)\" to=\"https://business.highbeam.com/$1\"/><rule from=\"^http://(?:www\\.)?multivu\\.com/\" to=\"https://www.multivu.com/\"/><rule from=\"^http://(www\\.)?ordercourses\\.com/\" to=\"https://$1ordercourses.com/\"/></ruleset>", "<ruleset name=\"Cenowarka.pl\" f=\"Cenowarka.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Censorship.govt.nz\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Censorship.govt.nz.xml\"><rule from=\"^http://www\\.censorship\\.govt\\.nz/\" to=\"https://www.censorship.govt.nz/\"/><rule from=\"^http://censorship\\.govt\\.nz/\" to=\"https://www.censorship.govt.nz/\"/></ruleset>", "<ruleset name=\"census\" default_off=\"mismatched\" f=\"Census.xml\"><securecookie host=\"^census-labs.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?census-labs\\.com/\" to=\"https://census-labs.com/\"/></ruleset>", "<ruleset name=\"Censys.io\" f=\"Censys.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CentOS.org (partial)\" f=\"CentOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CentOS Blog.com\" f=\"CentOS_Blog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Center for American Progress (partial)\" default_off=\"breaks site\" f=\"Center-for-American-Progress.xml\"><exclusion pattern=\"^http://thinkprogress\\.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Center for Documentation of Violations in Syria\" default_off=\"self-signed\" f=\"Center-for-Documentation-of-Violations-in-Syria.xml\"><rule from=\"^http://(?:www\\.)?vdc-sy\\.org/\" to=\"https://www.vdc-sy.org/\"/></ruleset>", "<ruleset name=\"Center for Responsive Politics (partial)\" f=\"Center-for-Responsive-Politics.xml\"><securecookie host=\"^(?:.*\\.)?opensecrets\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?opensecrets\\.org/\" to=\"https://www.opensecrets.org/\"/><rule from=\"^http://(asset|image)s\\.opensecrets\\.org/\" to=\"https://s3.amazonaws.com/$1s.opensecrets.org/\"/></ruleset>", "<ruleset name=\"Center for Rights\" f=\"Center-for-Rights.xml\"><rule from=\"^http://(?:www\\.)?thecenterforrights\\.org/\" to=\"https://centerforrights.heroku.com/\"/><rule from=\"^http://(?:www\\.)?internetvotes\\.org/\" to=\"https://internetvotes.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Center for Early Childhood Professional Development\" f=\"Center_for_Early_Childhood_Professional_Development.xml\"><securecookie host=\"^(?:w*\\.)?cecpdonline\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Center for Individual Freedom (partial)\" f=\"Center_for_Individual_Freedom.xml\"><securecookie host=\"^(?:www\\.)?cfif\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Center for Land Use Interpretation\" default_off=\"mismatched\" f=\"Center_for_Land_Use_Interpretation.xml\"><securecookie host=\"^\\.clui\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?culi\\.org/\" to=\"https://culi.org/\"/></ruleset>", "<ruleset name=\"Centerline Digital (partial)\" default_off=\"failed ruleset test\" f=\"Centerline_Digital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centili\" f=\"Centili.xml\"><securecookie host=\"^(api|www)\\.centili\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centmin Mod.com (partial)\" f=\"Centmin_Mod.com.xml\"><rule from=\"^http://community\\.centminmod\\.com/\" to=\"https://community.centminmod.com/\"/></ruleset>", "<ruleset name=\"Central Computers.com\" f=\"Central_Computers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centre for Effective Altruism.org\" f=\"Centre_for_Effective_Altruism.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centre for the Protection of National Infrastructure (CPNI)\" default_off=\"failed ruleset test\" f=\"Centre_for_the_Protection_of_National_Infrastructure.xml\"><securecookie host=\"^(?:.*\\.)?cpni\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://cpni\\.gov\\.uk/\" to=\"https://www.cpni.gov.uk/\"/><rule from=\"^http://([^/:@]+)?\\.cpni\\.gov\\.uk/\" to=\"https://$1.cpni.gov.uk/\"/></ruleset>", "<ruleset name=\"Centreon.com (partial)\" f=\"Centreon.com.xml\"><securecookie host=\"^(?:.+\\.)?centreon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CWI.nl\" f=\"Centrum-Wiskunde-and-Informatica.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centrum Holdings (partial)\" f=\"Centrum_Holdings.xml\"><rule from=\"^http://(mail|reg|user|heslo)\\.atlas\\.sk/\" to=\"https://$1.atlas.sk/\"/><rule from=\"^http://(reg|user|heslo)\\.centrum\\.(cz|sk)/\" to=\"https://$1.centrum.$2/\"/><rule from=\"^http://(areg|auser|mail)\\.centrum\\.cz/\" to=\"https://$1.centrum.cz/\"/></ruleset>", "<ruleset name=\"Centzy\" default_off=\"failed ruleset test\" f=\"Centzy.xml\"><securecookie host=\"^(?:m\\.)?centzy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceonex\" default_off=\"expired, self-signed\" f=\"Ceonex.xml\"><rule from=\"^http://(?:www\\.)?ceonex\\.com/\" to=\"https://ceonex.com/\"/><rule from=\"^http://info\\.ceonex\\.com/$\" to=\"https://ceonex.com/conversion/\"/></ruleset>", "<ruleset name=\"CerberusApp.com\" f=\"CerberusApp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CereProc.com\" f=\"CereProc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceredigion.gov.uk (partial)\" f=\"Ceredigion.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CertSimple.com\" f=\"CertSimple.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CertiVox.com (partial)\" default_off=\"failed ruleset test\" f=\"CertiVox.com.xml\"><securecookie host=\"^m-pindemo\\.certivox\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certible\" f=\"Certible.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certificate-Transparency.org\" f=\"Certificate-transparency.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certificate Monitor.org\" f=\"Certificate_Monitor.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.certificatemonitor\\.org/\" to=\"https://certicatemonitor.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certified Secure.com\" f=\"Certified_Secure.com.xml\"><securecookie host=\"^\\.www\\.certifiedsecure\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?certifiedsecure\\.com/\" to=\"https://www.certifiedsecure.com/\"/></ruleset>", "<ruleset name=\"Certigna.fr (partial)\" default_off=\"failed ruleset test\" f=\"Certigna.fr.xml\"><securecookie host=\"^www\\.certigna\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?certigna\\.fr/\" to=\"https://www.certigna.fr/\"/><rule from=\"^http://v1\\.certigna\\.fr/\" to=\"https://v1.certigna.fr/\"/></ruleset>", "<ruleset name=\"Certona (partial)\" f=\"Certona.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cesium JS.org\" f=\"Cesium_JS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.cesiumjs\\.org/\" to=\"https://cesiumjs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Česká pošta, s.p.\" f=\"CeskaPosta.cz.xml\"><rule from=\"^http://postaonline\\.cz/\" to=\"https://www.postaonline.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cf-example.com\" default_off=\"failed ruleset test\" f=\"Cf-example.com.xml\"><securecookie host=\"^\\.cf-example\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cf-example\\.com/\" to=\"https://www.cf-example.com/\"/></ruleset>", "<ruleset name=\"cfapps.io\" f=\"Cfapps.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cg Marketing Systems.com\" f=\"Cg_Marketing_Systems.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cgd.pt\" f=\"Cgd.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ch9.ms (partial)\" f=\"Ch9.ms.xml\"><exclusion pattern=\"^http://(?:www\\.)?ch9\\.ms/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?ch9\\.ms/+(?:\\?.*)?$\" to=\"https://channel9.msdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chain.com (partial)\" f=\"Chain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chainlove.com\" f=\"Chainlove.com.xml\"><rule from=\"^http://(?:images\\.)?chainlove\\.com/\" to=\"https://www.chainlove.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chais doeuvre.fr\" default_off=\"failed ruleset test\" f=\"Chais_dOeuvre.fr.xml\"><rule from=\"^http://invitation\\.chaisdoeuvre\\.fr/\" to=\"https://invitation.chaisdoeuvre.fr/\"/></ruleset>", "<ruleset name=\"Chakas Mmm.com (partial)\" f=\"Chakas_Mmm.com.xml\"><rule from=\"^http://(www\\.)?chakasmmm\\.com/(?=favicon\\.ico|shop/(?:checkout|login|register|your-account)(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1chakasmmm.com/\"/></ruleset>", "<ruleset name=\"ChakraOS.org\" f=\"ChakraOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Challenge.gov\" f=\"Challenge.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChallengePost (partial)\" default_off=\"failed ruleset test\" f=\"ChallengePost.xml\"><securecookie host=\"^(?:.+\\.)?challengepost\\.com$\" name=\".+\"/><rule from=\"^http://((?:forexfreestyle|nycschools|secure|www)\\.)?challengepost\\.com/\" to=\"https://$1challengepost.com/\"/><rule from=\"^http://(?:www\\.)?assetspost\\.com/assets/\" to=\"https://www.assetspost.com/assets/\"/><rule from=\"^http://challengepost\\d?\\.assetspost\\.com/\" to=\"https://challengepost-challengepost.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Chalmers\" f=\"Chalmers.se.xml\"><securecookie host=\"^(?:www\\.)?chalmers\\.se$\" name=\".+\"/><rule from=\"^http://(www\\.)?(admin\\.)?chalmers\\.se/\" to=\"https://$1$2chalmers.se/\"/></ruleset>", "<ruleset name=\"Chambal (partial)\" f=\"Chambal.xml\"><securecookie host=\"^accounts\\.chambal\\.com$\" name=\".+\"/><rule from=\"^http://accounts\\.chambal\\.com/\" to=\"https://accounts.chambal.com/\"/><rule from=\"^http://images\\.chambal\\.com/\" to=\"https://d1tk5j9aunjut2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ChampionCasino.net (partial)\" f=\"ChampionCasino.net.xml\"><securecookie host=\"^.+\\.championcasino\\.net$\" name=\".+\"/><rule from=\"^http://(cdn1|pay|sec)\\.championcasino\\.net/\" to=\"https://$1.championcasino.net/\"/></ruleset>", "<ruleset name=\"Champions of Regnum.com\" f=\"Champions_of_Regnum.com.xml\"><securecookie host=\"^www\\.championsofregnum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?championsofregnum\\.com/\" to=\"https://www.championsofregnum.com/\"/></ruleset>", "<ruleset name=\"Champs Sports (partial)\" f=\"Champs_Sports.xml\"><securecookie host=\"^.*\\.champssports\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?champssports\\.com/\" to=\"https://www.champssports.com/\"/><rule from=\"^http://ebm\\.e\\.champssports\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://f\\.e\\.champssports\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http://(images|m)\\.champssports\\.com/\" to=\"https://$1.champssports.com/\"/></ruleset>", "<ruleset name=\"Change.org (partial)\" f=\"Change.org.xml\"><securecookie host=\".*\\.change\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?change\\.org/\" to=\"https://$1change.org/\"/><rule from=\"^http://helpdesk\\.change\\.org/(?=generated/|images/|system/)\" to=\"https://change.zendesk.com/\"/></ruleset>", "<ruleset name=\"ChangeDetection.com\" f=\"ChangeDetection.com.xml\"><securecookie host=\"^www\\.changedetection\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChangeIP.com\" f=\"ChangeIP.com.xml\"><rule from=\"^http://(www\\.)?changeip\\.com/\" to=\"https://www.changeip.com/\"/></ruleset>", "<ruleset name=\"ChangeTip.com\" f=\"ChangeTip.com.xml\"><securecookie host=\"^\\.changetip\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?changetip\\.com/\" to=\"https://www.changetip.com/\"/></ruleset>", "<ruleset name=\"Changemakers\" f=\"Changemakers.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?changemakers\\.com/\" to=\"https://www.changemakers.com/\"/></ruleset>", "<ruleset name=\"Chango\" f=\"Chango.xml\"><securecookie host=\"^\\.chango\\.com$\" name=\"^(?:_i_cw|_i_lj|_t|_v?t)$\"/><securecookie host=\"^dashboard\\.chango\\.com$\" name=\".*\"/><rule from=\"^http://ads\\.chango\\.ca/\" to=\"https://as.chango.com/\"/><rule from=\"^http://(?:www\\.)?chango\\.com/\" to=\"https://www.chango.com/\"/><rule from=\"^http://(as|cc|dashboard|z)\\.chango\\.com/\" to=\"https://$1.chango.com/\"/></ruleset>", "<ruleset name=\"Channel 5.com (partial)\" f=\"Channel-5.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChannelAdvisor.com (self-signed)\" default_off=\"self-signed\" f=\"ChannelAdvisor.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?channeladvisor\\.com/\" to=\"https://www.channeladvisor.com/\"/></ruleset>", "<ruleset name=\"ChannelAdvisor.com (partial)\" f=\"ChannelAdvisor.com.xml\"><rule from=\"^http://t\\.channeladvisor\\.com/\" to=\"https://t.channeladvisor.com/\"/></ruleset>", "<ruleset name=\"ChannelIntelligence.com (partial)\" f=\"ChannelIntelligence.com.xml\"><rule from=\"^http://cts(?:-secure)?\\.channelintelligence\\.com/\" to=\"https://cts-secure.channelintelligence.com/\"/></ruleset>", "<ruleset name=\"Channel 4.com (false MCB)\" platform=\"mixedcontent\" f=\"Channel_4-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Channel 4.com (partial)\" default_off=\"Breaks video\" f=\"Channel_4.xml\"><exclusion pattern=\"^http://(?:www\\.)?channel4\\.com/(?!4me(?:$|[?/])|static/)\"/><exclusion pattern=\"^http://mailing\\.channel4\\.com/public/snowmail/remotebox\\.jsp\"/><rule from=\"^http://realmedia\\.channel4\\.com/\" to=\"https://2a7e9.v.fwmrm.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"channelme.tv\" f=\"Channelme.tv.xml\"><rule from=\"^http://(?:cdn-)?media\\.channelme\\.tv/\" to=\"https://media.channelme.tv/\"/></ruleset>", "<ruleset name=\"channelx.biz\" default_off=\"self-signed\" f=\"Channelx.biz.xml\"><rule from=\"^http://(?:www\\.)?channelx\\.biz/\" to=\"https://www.channelx.biz/\"/><rule from=\"^http://gentoo\\.channelx\\.biz/\" to=\"https://gentoo.channelx.biz/\"/></ruleset>", "<ruleset name=\"Chaos Reigns\" default_off=\"expired, self-signed\" f=\"Chaos-Reigns.xml\"><securecookie host=\"^(?:.*\\.)?chaosreigns\\.com$\" name=\".+\"/><rule from=\"^http://(?:panic\\.|www\\.)?chaosreigns\\.com/\" to=\"https://www.chaosreigns.com/\"/></ruleset>", "<ruleset name=\"chaox.net\" platform=\"cacert\" f=\"Chaox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chapman.edu\" f=\"Chapman.edu.xml\"><rule from=\"^http://((?:blogs|inside|social|www)\\.)?chapman\\.edu/\" to=\"https://$1chapman.edu/\"/></ruleset>", "<ruleset name=\"Charity Navigator (false MCB)\" platform=\"mixedcontent\" f=\"Charity-Navigator.xml\"><securecookie host=\"^(?:w*\\.)?charitynavigator\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charity Wings\" default_off=\"connection refused\" platform=\"mixedcontent\" f=\"Charity-Wings.xml\"><securecookie host=\"^(?:(?:www)?\\.)?scrapbookroyalty\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scrapbookroyalty\\.org/\" to=\"https://www.scrapbookroyalty.org/\"/></ruleset>", "<ruleset name=\"CharityWeb (partial)\" f=\"CharityWeb.xml\"><securecookie host=\"^\\.charityweb\\.net$\" name=\"^/globalcompactfoundation/.*$\"/><rule from=\"^http://ssl\\.charityweb\\.net/\" to=\"https://ssl.charityweb.net/\"/></ruleset>", "<ruleset name=\"charity water.org\" f=\"Charity_Water.org.xml\"><securecookie host=\"^(?:www\\.)?charitywater\\.org$\" name=\".+\"/><rule from=\"^http://((?:d2p|f01|my|www)\\.)?charitywater\\.org/\" to=\"https://$1charitywater.org/\"/><rule from=\"^http://store\\.charitywater\\.com/\" to=\"https://charitywater.myshopify.com/\"/></ruleset>", "<ruleset name=\"charlie.bz\" f=\"Charlie.bz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charlotte Nature Museum\" default_off=\"failed ruleset test\" f=\"CharlotteNatureMuseum.xml\"><rule from=\"^http://(?:www\\.)?charlottenaturemuseum\\.org/\" to=\"https://www.charlottenaturemuseum.org/\"/></ruleset>", "<ruleset name=\"Charnwood.gov.uk (partial)\" f=\"Charnwood.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChartMogul.com\" f=\"ChartMogul.com.xml\"><securecookie host=\"^(?:app)?\\.chartmogul\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chartbeat.net\" f=\"Chartbeat.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chartbeat.com (partial)\" f=\"Chartbeat.xml\"><exclusion pattern=\"^http://lp\\.chartbeat\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^chartbeat\\.com$\" name=\".+\"/><rule from=\"^http://lp\\.chartbeat\\.com/+(?:\\?.*)?$\" to=\"https://chartbeat.com/404\"/><rule from=\"^http://lp\\.chartbeat\\.com/\" to=\"https://na-p.marketo.com/\"/><rule from=\"^http://status\\.chartbeat\\.com/\" to=\"https://chartbeat.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter-Business.com (false MCB)\" platform=\"mixedcontent\" f=\"Charter-Business.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter.com\" f=\"Charter.com.xml\"><securecookie host=\"^(?:(?:media|www\\.myaccount|www)\\.)?charter\\.com$\" name=\".+\"/><securecookie host=\"^\\.charter\\.com$\" name=\"^(?:CSList|PrefID|TE_Opt)$\"/><rule from=\"^http://myaccount\\.charter\\.com/\" to=\"https://www.myaccount.charter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter.net (partial)\" f=\"Charter.net.xml\"><exclusion pattern=\"^http://www\\.charter\\.net/(?!login/)\"/><rule from=\"^http://charter\\.net/\" to=\"https://www.charter.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CharterBusiness.com\" f=\"CharterBusiness.com.xml\"><securecookie host=\"^(?:\\.|www2?\\.)?charterbusiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter our Community.com\" f=\"Charter_our_Community.com.xml\"><securecookie host=\"^(?:www\\.)?charterourcommunity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chartio.com\" f=\"Chartio.com.xml\"><securecookie host=\"^(?:www\\.)?chartio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charts in France.net\" default_off=\"expired, self-signed\" f=\"Charts_in_France.xml\"><securecookie host=\"^(?:www\\.)?chartsinfrance\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chase\" f=\"Chase.xml\"><securecookie host=\"^(?:\\.mfasa|privateclient)?\\.chase\\.com$\" name=\".+\"/><rule from=\"^http://((?:apply|banking|cards|chaseonline|creditcards|deposits|investments|jpmorgan|locator|mfasa|mobilebanking|payments|privateclient|resources|servicing|stmts|ultimaterewards|www)\\.)?chase\\.com/\" to=\"https://$1chase.com/\"/></ruleset>", "<ruleset name=\"Chase Paymentech.com\" f=\"Chase_Paymentech.com.xml\"><rule from=\"^http://(?:www\\.)?chasepaymentech\\.com/\" to=\"https://www.chasepaymentech.com/\"/></ruleset>", "<ruleset name=\"Chat Place\" default_off=\"mismatch\" f=\"Chat-Place.xml\"><securecookie host=\"^(?:.*\\.)?chat-place\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?chat-place\\.org/\" to=\"https://chat-place.org/\"/></ruleset>", "<ruleset name=\"ChatMe.im (partial)\" default_off=\"failed ruleset test\" f=\"ChatMe.im.xml\"><securecookie host=\"^\\.?chatme\\.im$\" name=\".+\"/><rule from=\"^http://((?:cdn|webchat|www)\\.)?chatme\\.im/\" to=\"https://$1chatme.im/\"/><rule from=\"^http://support\\.chatme\\.im/.*\" to=\"https://chatme.im/wp-signup.php?new=support\"/></ruleset>", "<ruleset name=\"ChatON\" default_off=\"failed ruleset test\" f=\"ChatON.xml\"><securecookie host=\"^web\\.samsungchaton\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chaton\\.com/\" to=\"https://web.samsungchaton.com/\"/><rule from=\"^http://(?:adminfront|mobileweb)\\.chaton\\.com/\" to=\"https://smm.samsung.com/\"/><rule from=\"^http://(i|s)0\\.chatoncdn\\.com/\" to=\"https://$10.chatoncdn.com/\"/><rule from=\"^http://(livemw|web)\\.samsungchaton\\.com/\" to=\"https://$1.samsungchaton.com/\"/></ruleset>", "<ruleset name=\"ChatSecure.org\" f=\"ChatSecure.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chatango.com\" f=\"Chatango.com.xml\"><securecookie host=\"^\\.chatango\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.|(?:www\\.)?secure\\.)?chatango\\.com/\" to=\"https://$1chatango.com/\"/></ruleset>", "<ruleset name=\"Chatham House.org\" f=\"Chatham_House.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chatter\" f=\"Chatter.xml\"><securecookie host=\"^.+\\.chatter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chatter\\.com/\" to=\"https://www.chatter.com/\"/><rule from=\"^http://community\\.chatter\\.com/\" to=\"https://community.chatter.com/\"/></ruleset>", "<ruleset name=\"Chaturbate.com (partial)\" f=\"Chaturbate.com.xml\"><securecookie host=\"^(?:\\w\\w\\.)?chaturbate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chbtc.com\" f=\"Chbtc.com.xml\"><securecookie host=\".*\\.chbtc\\.com$\" name=\".+\"/><rule from=\"^http://chbtc\\.com/\" to=\"https://www.chbtc.com/\"/><rule from=\"^http://(?:s|trans)\\.chbtc\\.com/+(?=$|\\?)\" to=\"https://www.chbtc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chcemvediet.sk\" f=\"Chcemvediet.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chdir.org (partial)\" f=\"Chdir.org.xml\"><rule from=\"^http://(?:(nico\\.)|www\\.)?chdir\\.org/\" to=\"https://$1chdir.org/\"/></ruleset>", "<ruleset name=\"Cheap Ass Gamer\" f=\"Cheap-Ass-Gamer.xml\"><securecookie host=\"(\\.|^)cheapassgamer\\.com$\" name=\".+\"/><rule from=\"^http://((cache|www)\\.)?cheapassgamer\\.com/\" to=\"https://$1cheapassgamer.com/\"/></ruleset>", "<ruleset name=\"CheapOz\" f=\"CheapOz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CheapSSL.com\" f=\"CheapSSL.com.xml\"><securecookie host=\"^support\\.cheapssl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cheapssl\\.com/[^?]*\\??$\" to=\"https://www.cheapssls.com/?from=www.cheapssl\"/><rule from=\"^http://(?:www\\.)?cheapssl\\.com/[^?]*\\?=\" to=\"https://www.cheapssls.com/?from=www.cheapssl&\"/><rule from=\"^http://support\\.cheapssl\\.com/\" to=\"https://support.cheapssl.com/\"/></ruleset>", "<ruleset name=\"CheapSSLs\" f=\"CheapSSLs.xml\"><rule from=\"^http://(?:www\\.)?cheapssls\\.com/\" to=\"https://www.cheapssls.com/\"/></ruleset>", "<ruleset name=\"Cheap Airport Parking\" default_off=\"failed ruleset test\" f=\"Cheap_Airport_Parking.xml\"><securecookie host=\"^\\.cheapairportparkingbirmingham.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheapass Fiction.com\" f=\"Cheapass_Fiction.com.xml\"><rule from=\"^http://(?:www\\.)?cheapassfiction\\.com/\" to=\"https://cheapassfiction.com/\"/></ruleset>", "<ruleset name=\"Check24.de\" f=\"Check24.de.xml\"><rule from=\"^http://check24\\.de/\" to=\"https://check24.de/\"/><rule from=\"^http://([^/:@]*)\\.check24\\.de/\" to=\"https://$1.check24.de/\"/></ruleset>", "<ruleset name=\"CheckM8 (partial)\" f=\"CheckM8.xml\"><exclusion pattern=\"^http://(?:support|www)\\.\"/><rule from=\"^http://(\\w+)\\.checkm8\\.com/\" to=\"https://$1.checkm8.com/\"/></ruleset>", "<ruleset name=\"Check Point.com (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Check_Point-problematic.xml\"><securecookie host=\"^(?:forums|search\\.us)\\.checkpoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Check Point.com (partial)\" f=\"Check_Point.xml\"><exclusion pattern=\"^http://blog\\.checkpoint\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\".+\\.checkpoint\\.com$\" name=\".\"/><rule from=\"^http://checkpoint\\.com/\" to=\"https://www.checkpoint.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkdomain.de\" f=\"Checkdomain.xml\"><securecookie host=\"^\\.www\\.checkdomain\\.de$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkmarx.com (problematic)\" default_off=\"mismatched\" f=\"Checkmarx.com-problematic.xml\"><securecookie host=\"^\\.checkmarx\\.com$\" name=\"^ubvt$\"/><rule from=\"^http://lp\\.checkmarx\\.com/\" to=\"https://lp.checkmarx.com/\"/></ruleset>", "<ruleset name=\"Checkmarx.com (partial)\" f=\"Checkmarx.com.xml\"><rule from=\"^http://(www\\.)?checkmarx\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1checkmarx.com/\"/></ruleset>", "<ruleset name=\"checkmyping.com\" f=\"Checkmyping.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checktls.com\" f=\"Checktls.com.xml\"><rule from=\"^http://(?:www\\.)?checktls\\.com/\" to=\"https://www.checktls.com/\"/></ruleset>", "<ruleset name=\"cheema.com\" default_off=\"expired, self-signed\" f=\"Cheema.com.xml\"><securecookie host=\"^cheema\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cheema\\.com/\" to=\"https://cheema.com/\"/></ruleset>", "<ruleset name=\"CheetahMail\" f=\"CheetahMail.xml\"><rule from=\"^http://(?:www\\.)?cheetahmail\\.com/\" to=\"https://www.experian.com/cheetahmail/\"/><rule from=\"^http://ebm\\.cheetahmail\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://(f\\.)?chtah\\.com/\" to=\"https://$1chtah.com/\"/></ruleset>", "<ruleset name=\"Cheezburger\" platform=\"mixedcontent\" f=\"Cheezburger.xml\"><exclusion pattern=\"^http://(?:advertising|blog|corp|feedback|jobs|sites)\\.cheezburger\\.com/\"/><exclusion pattern=\"^https://corp\\.cheezburger\\.com/(?!(?:copyright-infringement-notification|privacy-policy|terms-of-service)/$)\"/><securecookie host=\"^www\\.cheezburger\\.com$\" name=\".+\"/><rule from=\"^http://images\\.cheezburger\\.com/\" to=\"https://i.chzbgr.com/\"/><rule from=\"^http://support\\.cheezburger\\.com/\" to=\"https://cheezburger.support.com/\"/><rule from=\"^http://([\\w-]+\\.)?cheezburger\\.com/\" to=\"https://$1cheezburger.com/\"/><rule from=\"^http://chzb\\.gr/\" to=\"https://bit.ly/\"/><rule from=\"^http://(i|s|t)\\.chzbgr\\.com/\" to=\"https://$1.chzbgr.com/\"/><rule from=\"^https://(advertising|blog|corp|feedback|jobs|sites)\\.cheezburger\\.com/?$\" to=\"http://$1.cheezburger.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Chef.io (partial)\" f=\"Chef.io.xml\"><exclusion pattern=\"^http://pages\\.chef\\.io/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pages\\.chef\\.io/\" to=\"https://na-sj05.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chefkoch (partial)\" f=\"Chefkoch.de.xml\"><rule from=\"^http://cdn\\.chefkoch\\.de/\" to=\"https://static.chefkoch-cdn.de/\"/><exclusion pattern=\"^http://js\\.chefkoch\\-cdn.de/js/vendor/jwplayer6\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chemical Abstracts Service (partial)\" platform=\"mixedcontent\" f=\"Chemical_Abstracts_Service.xml\"><securecookie host=\"^www\\.cas\\.org$\" name=\".+\"/><rule from=\"^http://cas\\.org/\" to=\"https://www.cas.org/\"/><rule from=\"^http://(my|scifinder|stneasy(?:-japan)?|www)\\.cas\\.org/\" to=\"https://$1.cas.org/\"/></ruleset>", "<ruleset name=\"Chemist Warehouse\" f=\"ChemistWarehouse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherenkov Telescope Array\" f=\"Cherenkov_Telescope_Array.xml\"><securecookie host=\"^\\.www\\.cta-observatory\\.org$\" name=\".+\"/><rule from=\"^http://www\\.cta-observatory\\.org/\" to=\"https://www.cta-observatory.org/\"/></ruleset>", "<ruleset name=\"Cherry.de\" default_off=\"failed ruleset test\" f=\"Cherry.de.xml\"><securecookie host=\"^(?:www\\.)?cherry\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherwell.gov.uk (partial)\" f=\"Cherwell.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Cheshire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire.gov.uk (partial)\" f=\"Cheshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire East.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Cheshire_East.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire East.gov.uk (partial)\" f=\"Cheshire_East.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChessBase-shop.com (partial)\" f=\"ChessBase-shop.com.xml\"><rule from=\"^http://(www\\.)?chessbase-shop\\.com/(?=cbshop\\.css|pics/|res/|xamlrender)\" to=\"https://$1chessbase-shop.com/\"/></ruleset>", "<ruleset name=\"ChessBase.com (partial)\" default_off=\"self-signed\" f=\"ChessBase.com.xml\"><rule from=\"^http://(?:\\w\\w\\.|www\\.)?chessbase\\.com/(?=adv/|bundle/|content/|favicon\\.ico|thumb/)\" to=\"https://chessbase.com/\"/></ruleset>", "<ruleset name=\"Chevereto.com (partial)\" f=\"Chevereto.com.xml\"><securecookie host=\"^chevereto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chicago Fed.org\" f=\"Chicago_Fed.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chicago Tribune (problematic)\" default_off=\"akamai certificate\" platform=\"mixedcontent\" f=\"Chicago_Tribune-problematic.xml\"><rule from=\"^http://(?:www\\.)?chicagotribune\\.com/\" to=\"https://www.chicagotribune.com/\"/></ruleset>", "<ruleset name=\"Chicago Tribune (partial)\" f=\"Chicago_Tribune.xml\"><securecookie host=\"^myaccount2\\.chicagotribune\\.com$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?advertise|members|myaccount2)\\.chicagotribune\\.com/\" to=\"https://$1.chicagotribune.com/\"/></ruleset>", "<ruleset name=\"Chicken Soup for the Soul\" default_off=\"failed ruleset test\" f=\"Chicken_Soup_for_the_Soul.xml\"><securecookie host=\"^(?:www)?\\.chickensoup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Children's Mutual (partial)\" f=\"Childrens_Mutual.xml\"><securecookie host=\"^ctf\\.thechildrensmutual\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://ctf\\.thechildrensmutual\\.co\\.uk/\" to=\"https://ctf.thechildrensmutual.co.uk/\"/></ruleset>", "<ruleset name=\"ChileBit.NET\" f=\"ChileBit.NET.xml\"><securecookie host=\"^\\.chilebit\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChiliProject.org (partial)\" f=\"ChiliProject.org.xml\"><securecookie host=\"^www\\.chiliproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chillicothe Gazette\" default_off=\"failed ruleset test\" f=\"Chillicothe_Gazette.xml\"><securecookie host=\"^www\\.chillicothegazette\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?chillicothegazette\\.com/\" to=\"https://www.chillicothegazette.com/\"/></ruleset>", "<ruleset name=\"ChillingEffects\" f=\"ChillingEffects.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chime.in\" default_off=\"failed ruleset test\" f=\"Chime.in.xml\"><securecookie host=\"^(?:www\\.)?chime\\.in$\" name=\".*\"/><rule from=\"^http://(www\\.)?chime\\.in/\" to=\"https://$1chime.in/\"/><rule from=\"^http://support\\.chime\\.in/(assets|external|generated|images|registration|system)/\" to=\"https://chime.zendesk.com/$2/\"/></ruleset>", "<ruleset name=\"ChimeriC.de\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"ChimeriC.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"China Payment Services\" f=\"China-Payment-Services.xml\"><securecookie host=\"^(?:.*\\.)?chinapaymentservices\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?chinapaymentservices\\.com/\" to=\"https://chinapaymentservices.com/\"/><rule from=\"^http://sales\\.chinapaymentservices\\.com/\" to=\"https://sales.chinapaymentservices.com/\"/></ruleset>", "<ruleset name=\"China Labor Watch\" default_off=\"failed ruleset test\" f=\"China_Labor_Watch.xml\"><rule from=\"^http://(?:www\\.)?chinalaborwatch\\.org/\" to=\"https://www.chinalaborwatch.org/\"/></ruleset>", "<ruleset name=\"Chinabank.com.cn (partial)\" f=\"Chinabank.com.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chinadialogue.net\" f=\"Chinadialogue.net.xml\"><securecookie host=\"^\\.chinadialogue\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chinadialogue\\.net/\" to=\"https://www.chinadialogue.net/\"/></ruleset>", "<ruleset name=\"ChipIn (partial)\" f=\"ChipIn.xml\"><rule from=\"^http://(www\\.)?chipin\\.com/(cs|image)s/\" to=\"https://$1chipin.com/$2s/\"/></ruleset>", "<ruleset name=\"ChipLand.hu\" default_off=\"failed ruleset test\" f=\"ChipLand.hu.xml\"><securecookie host=\"^www\\.chipland\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.chipland\\.hu/\" to=\"https://www.chipland.hu/\"/></ruleset>", "<ruleset name=\"Chiphell\" f=\"Chiphell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chipworks\" default_off=\"failed ruleset test\" f=\"Chipworks.xml\"><securecookie host=\"^www\\.chipworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chistes Cortos Buenos.com (partial)\" f=\"Chistes_Cortos_Buenos.com.xml\"><rule from=\"^http://css\\.chistescortosbuenos\\.com/\" to=\"https://d3ju1pxrijkg8e.cloudfront.net/\"/><rule from=\"^http://images\\.chistescortosbuenos\\.com/\" to=\"https://dvlos4rx2v54l.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Chitika.net (partial)\" default_off=\"failed ruleset test\" f=\"Chitika.net.xml\"><rule from=\"^http://(www\\.)?chitika\\.net/\" to=\"https://$1chitika.com/\"/><rule from=\"^http://(images|scripts)\\.chitika\\.net/\" to=\"https://$1.chitika.net/\"/></ruleset>", "<ruleset name=\"Chitika (partial)\" f=\"Chitika.xml\"><securecookie host=\"^(?:.*\\.)?chitika\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?chitika\\.com/\" to=\"https://$1chitika.com/\"/><rule from=\"^http://(affiliate|blog|publishers)\\.chitika\\.com/\" to=\"https://$1.chitika.com/\"/></ruleset>", "<ruleset name=\"Chloe.re\" f=\"Chloe.re.xml\"><securecookie host=\"^\\.chloe\\.re$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chlomo.org (partial)\" f=\"Chlomo.org.xml\"><rule from=\"^http://(www\\.)?chlomo\\.org/(?=chan/(?:\\w+/thumb/|favicon-v2\\.png|img/|static/|stylesheets/)|favicon\\.ico)\" to=\"https://$1chlomo.org/\"/></ruleset>", "<ruleset name=\"Chocolatey.org\" f=\"Chocolatey.org.xml\"><securecookie host=\"^chocolatey\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChoiceStream.com (partial)\" f=\"ChoiceStream.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choice of Games.com\" f=\"Choice_of_Games.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choon.net (partial)\" f=\"Choon.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choopa.com\" f=\"Choopa.com.xml\"><securecookie host=\"^(?:my|www)?\\.choopa\\.com$\" name=\".+\"/><rule from=\"^http://choopa\\.com/\" to=\"https://www.choopa.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chooseblocks.com\" f=\"Chooseblocks.com.xml\"><securecookie host=\"^(www\\.)?chooseblocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris-Lamb.co.uk\" f=\"Chris-Lamb.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris.lu\" f=\"Chris.lu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Cowley.me.uk\" f=\"Chris_Cowley.me.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Coyne.com\" f=\"Chris_Coyne.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Jean.com\" f=\"Chris_Jean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Newland.com\" f=\"Chris_Newland.com.xml\"><securecookie host=\"^(?:www\\.)?chrisnewland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrisanthemums\" f=\"Chrisanthemums.xml\"><securecookie host=\"^(?:www)?\\.chrisanthemums\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chrisanthemums\\.com/\" to=\"https://www.chrisanthemums.com/\"/></ruleset>", "<ruleset name=\"chrismatic.io\" f=\"Chrismatic.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christelijke Mutualiteit\" f=\"Christelijke_Mutualiteit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christian Prayer Center\" platform=\"mixedcontent\" f=\"Christian-Prayer-Center.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christian Heilmann\" default_off=\"mismatched\" f=\"Christian_Heilmann.xml\"><rule from=\"^http://(?:www\\.)?christianheilmann\\.com/\" to=\"https://christianheilmann.com/\"/></ruleset>", "<ruleset name=\"Christianbook.com (partial)\" f=\"Christianbook.com.xml\"><securecookie host=\".*\\.christianbook\\.com$\" name=\"\"/><rule from=\"^http://christianbook\\.com/\" to=\"https://www.christianbook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fjellner.eu\" default_off=\"redirects to http\" f=\"Christofer-Fjellner.xml\"><securecookie host=\"^www\\.fjellner\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christopher Truncer.com\" f=\"Christopher_Truncer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome.com (partial)\" f=\"Chrome.com.xml\"><rule from=\"^http://developer\\.chrome\\.com/\" to=\"https://developer.chrome.com/\"/></ruleset>", "<ruleset name=\"Chrome Data\" f=\"Chrome_Data.xml\"><securecookie host=\"^login\\.carbook\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.chromedata\\.com$\" name=\".+\"/><rule from=\"^http://login\\.carbook\\.com/\" to=\"https://login.carbook.com/\"/><rule from=\"^http://((?:autodiscover|mail|mopar|webmail|www)\\.)?chromedata\\.com/\" to=\"https://$1chromedata.com/\"/></ruleset>", "<ruleset name=\"Chrome Experiments.com\" f=\"Chrome_Experiments.com.xml\"><rule from=\"^http://chromeexperiments\\.com/\" to=\"https://www.chromeexperiments.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome Status.com\" f=\"Chrome_Status.com.xml\"><rule from=\"^http://(?:www\\.)?chromestatus\\.com/\" to=\"https://www.chromestatus.com/\"/></ruleset>", "<ruleset name=\"Chromium.org\" f=\"Chromium.org.xml\"><securecookie host=\"^codereview\\.chromium\\.org$\" name=\".+\"/><rule from=\"^http://chromium\\.org/\" to=\"https://www.chromium.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChroniX Radio.com\" default_off=\"failed ruleset test\" f=\"ChroniX_Radio.com.xml\"><securecookie host=\"^\\.chronixradio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chronicle-Store.com\" f=\"Chronicle-Store.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chronicle.com (partial)\" f=\"Chronicle.xml\"><exclusion pattern=\"^http://(?:www\\.)?chronicle\\.com/blognetwork/\"/><securecookie host=\"^(?:www\\.)?chronicle\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chronicle\\.com/\" to=\"https://chronicle.com/\"/></ruleset>", "<ruleset name=\"Chronicle Vitae.com\" f=\"Chronicle_Vitae.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chroot-me.in\" f=\"Chroot-me.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrysalis-Ventures (partial)\" default_off=\"mismatch\" f=\"Chrysalis-Ventures.xml\"><rule from=\"^http://(?:www\\.)chrysalisventures\\.com/(images|wp-content)/\" to=\"https://chrysalisventures.com/\"/></ruleset>", "<ruleset name=\"chs.us\" f=\"Chs.us.xml\"><securecookie host=\"^(?:www\\.)?chs\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chtah.net\" f=\"Chtah.net.xml\"><rule from=\"^http://f\\.money\\.chtah\\.net/\" to=\"https://f.chtah.com/\"/></ruleset>", "<ruleset name=\"Church of the SubGenius\" default_off=\"expired\" f=\"Church-of-the-SubGenius.xml\"><rule from=\"^http://(?:www\\.)?subgenius\\.com/\" to=\"https://subgenius.com/\"/></ruleset>", "<ruleset name=\"Church Hill Classics (partial)\" f=\"Church_Hill_Classics.xml\"><rule from=\"^http://(www\\.)?diplomaframe\\.com/(DesktopModules/|home/login|images/|js/|Portals/|Resources/|(?:Script|Web)Resource\\.axd)\" to=\"https://$1diplomaframe.com/$1\"/></ruleset>", "<ruleset name=\"chuug.com (partial)\" f=\"Chuug.com.xml\"><rule from=\"^http://s3\\.chuug\\.com/\" to=\"https://d322xzyiofrruv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Cia.vc\" default_off=\"Cert expired in 2009\" f=\"Cia.vc.xml\"><rule from=\"^http://(?:www\\.)?cia\\.vc/\" to=\"https://cia.vc/\"/></ruleset>", "<ruleset name=\"Ciao (partial)\" f=\"Ciao.xml\"><rule from=\"^http://(de|uk)-img([12])\\.ciao\\.com/\" to=\"https://$1-img$2.ciao.com/\"/><rule from=\"^http://(www\\.)?ciao\\.co\\.uk/(captcha/|efb_[\\d_]+/|login\\.php|reg\\.php)\" to=\"https://$1ciao.co.uk/$2\"/><rule from=\"^http://(www\\.)?ciao\\.de/([\\w/]+/css/|favicon\\.ico)\" to=\"https://$1ciao.de/$1\"/></ruleset>", "<ruleset name=\"Ciety.com\" f=\"Ciety.com.xml\"><rule from=\"^http://ciety\\.com/\" to=\"https://ciety.com/\"/></ruleset>", "<ruleset name=\"Cihar.com (partial)\" f=\"Cihar.com.xml\"><rule from=\"^http://(blog|stats)\\.cihar\\.com/\" to=\"https://$1.cihar.com/\"/></ruleset>", "<ruleset name=\"Cilk Plus.org\" f=\"Cilk_Plus.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CinCHouse.com\" default_off=\"expired\" f=\"CinCHouse.com.xml\"><securecookie host=\"^cinchouse\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cinchouse\\.com/\" to=\"https://cinchouse.com/\"/></ruleset>", "<ruleset name=\"cinapalace.com\" f=\"Cinapalace.com.xml\"><securecookie host=\"^(?:www\\.)?cinapalace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cincinnati.com (partial)\" default_off=\"failed ruleset test\" f=\"Cincinnati.com.xml\"><securecookie host=\"^(?:classifiedads|local)\\.cincinnati\\.com$\" name=\".+\"/><rule from=\"^http://((?:classifiedads|local|nky|secure|www)\\.)?cincinnati\\.com/\" to=\"https://$1cincinnati.com/\"/><rule from=\"^http://(?:cinweekly|rodeo)\\.cincinnati\\.com/+(?:\\?.*)?$\" to=\"https://cincinnati.com/thingstodo/\"/><rule from=\"^http://(?:cmsimg|news)\\.cincinnati\\.com/\" to=\"https://news.cincinnati.com/\"/><rule from=\"^http://deals\\.cincinnati\\.com/+(?:\\?.*)?$\" to=\"https://cin.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://deals\\.cincinnati\\.com/\" to=\"https://cin.planetdiscover.com/\"/><rule from=\"^http://finance\\.cincinnati\\.com/+(?:\\?.*)?$\" to=\"https://studio-5.financialcontent.com/gannett.theenquirer\"/><rule from=\"^http://finance\\.cincinnati\\.com/\" to=\"https://studio-5.financialcontent.com/\"/><rule from=\"^http://rodeo\\.cincinnati\\.com/getlocal/all\\.aspx\" to=\"https://local.cincinnati.com/community/\"/><rule from=\"^http://rodeo\\.cincinnati\\.com/re/+(?:\\?.*)?$\" to=\"https://local.cincinnati.com/realestatenews/\"/></ruleset>", "<ruleset name=\"Cinder (partial)\" f=\"Cinder.xml\"><securecookie host=\"^forum\\.libcinder\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.libcinder\\.org/\" to=\"https://forum.libcinder.org/\"/></ruleset>", "<ruleset name=\"Cinder Cooks.com\" f=\"Cinder_Cooks.com.xml\"><rule from=\"^http://www\\.cindercooks\\.com/\" to=\"https://cindercooks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineMovies.fr (partial)\" default_off=\"missing certificate chain\" f=\"CineMovies.xml\"><securecookie host=\"^(?:www)?\\.cinemovies\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineSport.com (partial)\" default_off=\"mismatched\" f=\"CineSport.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineStar.de (partial)\" f=\"CineStar.xml\"><exclusion pattern=\"^http://www\\.cinestar\\.de/(?!.+\\.(?:ico|jpg|png)(?:$|\\?))\"/><securecookie host=\"^\\.(?:b2b)?shop\\.cinestar\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cineble.com\" default_off=\"failed ruleset test\" f=\"Cineble.com.xml\"><securecookie host=\"^(?:w*\\.)?cineble\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cineclick.com.br (partial)\" f=\"Cineclick.com.br.xml\"><rule from=\"^http://static\\.cineclick\\.com\\.br/\" to=\"https://static.cineclick.com.br/\"/></ruleset>", "<ruleset name=\"CinemaCon.com\" default_off=\"self-signed\" f=\"CinemaCon.com.xml\"><securecookie host=\"^cinemacon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cinemacon\\.com/\" to=\"https://cinemacon.com/\"/></ruleset>", "<ruleset name=\"CinemaNow (partial)\" f=\"CinemaNow.xml\"><securecookie host=\"^www\\.cinemanow\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cinemanow\\.com/\" to=\"https://www.cinemanow.com/\"/><rule from=\"^http://cache\\.cinemanow\\.com/\" to=\"https://cache.cinemanow.com/\"/></ruleset>", "<ruleset name=\"Cinfu.com (partial)\" default_off=\"failed ruleset test\" f=\"Cinfu.com.xml\"><securecookie host=\"^\\.?panel\\.cinfu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cint.com\" f=\"Cint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CipherLaw\" f=\"CipherLaw.xml\"><securecookie host=\"^(?:www\\.)?cipherlawgroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CipherShed.org\" f=\"CipherShed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cipherli.st\" f=\"Cipherli.st.xml\"><rule from=\"^http://cipherli\\.st/\" to=\"https://cipherli.st/\"/></ruleset>", "<ruleset name=\"Cir.ca\" f=\"Cir.ca.xml\"><securecookie host=\"^\\.cir\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cir\\.ca/+\" to=\"https://circanews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Circa News.com\" f=\"Circa_News.com.xml\"><securecookie host=\"^(?:www\\.)?circanews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CircleCI.com (partial)\" f=\"CircleCI.com.xml\"><securecookie host=\"^\\.circleci\\.com$\" name=\"^(?:__ar\\w+|__utm\\w+|_mkto_trk|_te_|mp_\\w+_mixpanel)$\"/><rule from=\"^http://status\\.circleci\\.com/\" to=\"https://circleci.statuspage.io/\"/><rule from=\"^http://(www\\.)?circleci\\.com/\" to=\"https://$1circleci.com/\"/></ruleset>", "<ruleset name=\"Circle of Moms\" default_off=\"failed ruleset test\" f=\"Circle_of_Moms.xml\"><securecookie host=\"^www\\.circleofmoms\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?circleofmoms\\.com/\" to=\"https://www.circleofmoms.com/\"/><rule from=\"^http://imagelib4\\.circleofmoms\\.com/\" to=\"https://dx7naiqi3v8zr.cloudfront.net/\"/><rule from=\"^http://images3\\.circleofmoms\\.com/\" to=\"https://d2sshc984jwlg9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Circular Hub\" default_off=\"failed ruleset test\" f=\"Circular_Hub.xml\"><securecookie host=\"^www\\.circularhub\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?circularhub\\.com/\" to=\"https://www.circularhub.com/\"/><rule from=\"^http://(?:api|editorials)\\.circularhub\\.com/\" to=\"https://editorials.merchants.wishabi.ca/\"/></ruleset>", "<ruleset name=\"Cirrus Media.com.au (partial)\" f=\"Cirrus_Media.com.au.xml\"><rule from=\"^http://(ccbnstatic|media)\\.cirrusmedia\\.com\\.au/\" to=\"https://$1.cirrusmedia.com.au/\"/></ruleset>", "<ruleset name=\"Cirtex Hosting.com\" default_off=\"expired\" f=\"Cirtex_Hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cirw.in\" f=\"Cirw.in.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco.mobi (partial)\" f=\"Cisco.mobi.xml\"><securecookie host=\"^(?:cln)?\\.cisco\\.mobi$\" name=\".+\"/><rule from=\"^http://cln\\.cisco\\.mobi/\" to=\"https://cln.cisco.mobi/\"/></ruleset>", "<ruleset name=\"Cisco.com (partial)\" f=\"Cisco.xml\"><exclusion pattern=\"^http://csr\\.cisco\\.com/+(?!$|\\?|cdnorigin/|content/|favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.cisco\\.com/cgi-bin/login\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^[bhjlst]\" name=\".\"/><rule from=\"^http://home(?:support)?\\.cisco\\.com/+\" to=\"https://support.linksys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco Connect Cloud.com\" f=\"Cisco_Connect_Cloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco Learning System.com\" f=\"Cisco_Learning_System.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco Live.com\" platform=\"mixedcontent\" f=\"Cisco_Live.com.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ciscolive\\.com/\" to=\"https://www.ciscolive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citadium.com (partial)\" f=\"Citadium.com.xml\"><securecookie host=\"^\\.citadium\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://citadium\\.com/.*\" to=\"https://www.citadium.com/\"/><rule from=\"^http://www\\.citadium\\.com/(?=elmt/|favicon\\.ico|js/|login(?:$|[?/])|medias/|spinner\\.gif|_ui/)\" to=\"https://www.citadium.com/\"/></ruleset>", "<ruleset name=\"CiteULike.org\" default_off=\"expired\" f=\"CiteULike.xml\"><rule from=\"^http://citeulike\\.org/\" to=\"https://www.citeulike.org/\"/><rule from=\"^http://www\\.citeulike\\.org/(login|register|static/)\" to=\"https://www.citeulike.org/$1\"/></ruleset>", "<ruleset name=\"Citi.com\" f=\"Citi.com.xml\"><exclusion pattern=\"^http://thankyoucard\\.citi\\.com/(?!$|\\?)\"/><securecookie host=\"^\\.citi\\.com$\" name=\"^(?:mbox|ss_pers|ss_sess)$\"/><securecookie host=\"^(?:(?:chat\\.online|creditcards|www)\\.)?citi\\.com$\" name=\".+\"/><rule from=\"^http://thankyoucard\\.citi\\.com/\" to=\"https://online.citibank.com/US/JRS/portal/template.do?ID=ThankYouCards\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citi Alumni Network\" f=\"Citi_Alumni_Network.xml\"><securecookie host=\"^www\\.citialumninetwork\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?citialumninetwork\\.com/\" to=\"https://www.citialumninetwork.com/\"/></ruleset>", "<ruleset name=\"Citibank.com.au (insecure)\" default_off=\"JS redirect loop\" f=\"Citibank-Australia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citibank.com\" f=\"Citibank.xml\"><securecookie host=\"^\\.citibank\\.com$\" name=\"^(?:CTBN|s_vi)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citigroup.com (partial)\" default_off=\"handshake fails\" f=\"Citigroup.com.xml\"><securecookie host=\"^jobs\\.citigroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CitizenWeb.io\" f=\"CitizenWeb.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizenfour Film.com\" default_off=\"failed ruleset test\" f=\"Citizenfour_Film.com.xml\"><securecookie host=\"^citizenfourfilm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens for Science\" default_off=\"mismatch, self-signed\" f=\"Citizens-for-Science.xml\"><rule from=\"^http://(?:www\\.)?citizensforscience\\.org/\" to=\"https://citizensforscience.org/\"/></ruleset>", "<ruleset name=\"CitizensInformation\" default_off=\"plaintext reply\" f=\"Citizensinformation.ie.xml\"><rule from=\"^http://(?:www\\.)?citizensinformation\\.ie/\" to=\"https://www.citizensinformation.ie/\"/></ruleset>", "<ruleset name=\"Citrix.com (false MCB)\" platform=\"mixedcontent\" f=\"Citrix.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrix.com (partial)\" f=\"Citrix.xml\"><exclusion pattern=\"^http://training\\.citrix\\.com/+(?!favicon\\.ico|theme/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blogs\\.citrix\\.com/+\" to=\"https://www.citrix.com/blogs/\"/><rule from=\"^http://cdn\\.ws\\.citrix\\.com/\" to=\"https://c558080.ssl.cf2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrix Online.com\" f=\"Citrix_Online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://citrixonline\\.com/\" to=\"https://www.citrixonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrix Online CDN.com\" f=\"Citrix_Online_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrusbyte.com\" f=\"Citrusbyte.com.xml\"><securecookie host=\"^(?:www\\.)?citrusbyte\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?citrusbyte\\.com/\" to=\"https://citrusbyte.com/\"/></ruleset>", "<ruleset name=\"City Link\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"City-Link.xml\"><rule from=\"^http://(?:www\\.)?city-link\\.co\\.uk/\" to=\"https://www.city-link.co.uk/\"/></ruleset>", "<ruleset name=\"City Mail\" f=\"City-Mail.xml\"><securecookie host=\"^(?:www\\.)?cityemail\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?citymail\\.com/\" to=\"https://$1citymail.com/\"/></ruleset>", "<ruleset name=\"City of Chicago\" platform=\"mixedcontent\" f=\"City-of-Chicago.xml\"><securecookie host=\"^.*\\.cityofchicago\\.org$\" name=\".*\"/><rule from=\"^http://cityofchicago\\.org/\" to=\"https://www.cityofchicago.org/\"/><rule from=\"^http://mayor\\.cityofchicago\\.org/\" to=\"https://www.cityofchicago.org/content/city/en/depts/mayor.html\"/><rule from=\"^http://(data|www)\\.cityofchicago\\.org/\" to=\"https://$1.cityofchicago.org/\"/></ruleset>", "<ruleset name=\"City of Sedona (partial)\" f=\"City-of-Sedona.xml\"><rule from=\"^http://(?:www\\.)?sedonaaz\\.gov/([sS]edonacms/(?:\\w+\\.css$|_gfx/|Modules/))\" to=\"https://www.sedonaaz.gov/$1\"/></ruleset>", "<ruleset name=\"City.com.ua\" default_off=\"failed ruleset test\" f=\"City.com.ua.xml\"><securecookie host=\"^\\.?city\\.com\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City University London\" default_off=\"failed ruleset test\" f=\"City_University_London.xml\"><securecookie host=\"^\\.www\\.city\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(soi\\.)?city\\.ac\\.uk/\" to=\"https://www.$1city.ac.uk/\"/><rule from=\"^http://s1\\.city\\.ac\\.uk/\" to=\"https://s1.city.ac.uk/\"/></ruleset>", "<ruleset name=\"City University of New York (problematic)\" default_off=\"mismatched\" f=\"City_University_of_New_York-problematic.xml\"><rule from=\"^http://(?:www\\.)?law\\.cuny\\.edu/\" to=\"https://www.law.cuny.edu/\"/></ruleset>", "<ruleset name=\"City University of New York (partial)\" f=\"City_University_of_New_York.xml\"><securecookie host=\"^\\.cuny\\.edu$\" name=\"^__utm\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of London.gov.uk (partial)\" f=\"City_of_London.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of Mountain View (partial)\" default_off=\"failed ruleset test\" f=\"City_of_Mountain_View.xml\"><securecookie host=\"^www\\.mountainview\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mountainview\\.gov/\" to=\"https://www.mountainview.gov/\"/></ruleset>", "<ruleset name=\"City of Seattle (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"City_of_Seattle.xml\"><securecookie host=\"^.+\\.seattle\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?seattle\\.gov/\" to=\"https://www.seattle.gov/\"/><rule from=\"^http://citylink\\.seattle\\.gov/\" to=\"https://www.seattle.gov/citylink/\"/><rule from=\"^http://(data|my|wald1|web1)\\.seattle\\.gov/\" to=\"https://$1.seattle.gov/\"/><rule from=\"^http://web[56]\\.seattle\\.gov/\" to=\"https://web6.seattle.gov/\"/></ruleset>", "<ruleset name=\"Citymapper\" f=\"Citymapper.xml\"><securecookie host=\"^.*\\.citymapper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of London Police\" f=\"CityofLondonPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of Portland, OR\" f=\"CityofPortland.xml\"><securecookie host=\"^www\\.portlandonline\\.com$\" name=\".+\"/><securecookie host=\"^www\\.portlandoregon\\.gov$\" name=\".+\"/><rule from=\"^http://portlandonline\\.com/\" to=\"https://www.portlandonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citypaketet (partial)\" f=\"Citypaketet.xml\"><securecookie host=\"^ssl\\.sifomedia\\.se$\" name=\".*\"/><rule from=\"^http://sifomedia\\.citypaketet\\.se/\" to=\"https://ssl.sifomedia.se/\"/></ruleset>", "<ruleset name=\"Citysearch.com\" f=\"Citysearch.com.xml\"><securecookie host=\"^\\w\" name=\"^_gat?$\"/><rule from=\"^http://citysearch\\.com/\" to=\"https://www.citysearch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citywerkz.com\" default_off=\"failed ruleset test\" f=\"Citywerkz.com.xml\"><securecookie host=\"^(?:www)?\\.citywerkz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ciuvo.com\" f=\"Ciuvo.com.xml\"><rule from=\"^http://((?:api|secure|www)\\.)?ciuvo\\.com/\" to=\"https://$1ciuvo.com/\"/></ruleset>", "<ruleset name=\"CiviCRM\" f=\"CiviCRM.xml\"><securecookie host=\"^\\.civicrm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CivicScience (partial)\" f=\"CivicScience.xml\"><rule from=\"^http://(beta\\.|www\\.)?civicscience\\.com/\" to=\"https://$1civicscience.com/\"/><rule from=\"^http://blog\\.civicscience\\.com/(display/|favicon\\.ico|layout/|storage/|universal/)\" to=\"https://civicscience.squarespace.com/$1\"/></ruleset>", "<ruleset name=\"Civica ePay.co.uk\" f=\"Civica_ePay.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAA.co.uk\" f=\"Civil_Aviation_Authority.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cjdns.info\" f=\"Cjdns.info.xml\"><securecookie host=\"^\\.cjdns\\.info$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ckom\" default_off=\"expired, self-signed\" f=\"Ckom.xml\"><rule from=\"^http://(?:www\\.)?ckom\\.de/\" to=\"https://ckom.de/\"/><rule from=\"^http://(\\w+)\\.ckom\\.de/\" to=\"https://$1.ckom.de/\"/></ruleset>", "<ruleset name=\"Cl.ly (partial)\" f=\"Cl.ly.xml\"><securecookie host=\"^my\\.cl(?:\\.ly|d\\.me)$\" name=\".+\"/><rule from=\"^http://((?:api|my|www)\\.)?cl\\.ly/\" to=\"https://$1cl.ly/\"/><rule from=\"^http://f\\.cl\\.ly/\" to=\"https://s3.amazonaws.com/f.cl.ly/\"/><rule from=\"^http://(api|my)\\.cld\\.me/\" to=\"https://$1.cld.me/\"/><rule from=\"^http://assets\\.my\\.cld\\.me/\" to=\"https://d9yac136u048z.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ClaimYourName.io\" f=\"ClaimYourName.io.xml\"><securecookie host=\"^(?:www\\.)?claimyourname\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Claim Forms Plus\" f=\"Claim_Forms_Plus.xml\"><securecookie host=\"^\\.claimformsplus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClamAV.net (partial)\" f=\"ClamAV.net.xml\"><rule from=\"^http://bugzilla\\.clamav\\.net/\" to=\"https://bugzilla.clamav.net/\"/></ruleset>", "<ruleset name=\"Clara.io\" f=\"Clara.io.xml\"><securecookie host=\"^(?:forum\\.)?clara\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Claranet (mismatches)\" default_off=\"expired, mismatch\" f=\"Claranet-mismatches.xml\"><securecookie host=\"^admin-vh\\.es\\.clara\\.net$\" name=\".*\"/><rule from=\"^http://admin-vh\\.es\\.clara\\.net/\" to=\"https://admin-vh.es.clara.net/\"/><rule from=\"^http://signup\\.claranet\\.de/\" to=\"https://signup.claranet.de/\"/></ruleset>", "<ruleset name=\"Claranet (partial)\" default_off=\"failed ruleset test\" f=\"Claranet.xml\"><securecookie host=\"^(?:.*\\.)?clara\\.net$\" name=\".*\"/><securecookie host=\"^admin\\.clarahost\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^pop\\.claranet\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?claranet\\.nl$\" name=\".*\"/><securecookie host=\"^webmail\\.claranet\\.pt$\" name=\".*\"/><securecookie host=\"^secure\\.claranetsoho\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(corporate|customer|webmail(\\.bln\\.de)?|(nswebmail|portal)\\.uk)\\.clara\\.net/\" to=\"https://$1.clara.net/\"/><rule from=\"^http://admin\\.clarahost\\.co\\.uk/\" to=\"https://admin.clarahost.co.uk/\"/><rule from=\"^http://pop\\.claranet\\.de/\" to=\"https://pop.claranet.de/\"/><rule from=\"^http://webmail\\.claranet\\.(nl|pt)/\" to=\"https://webmail.claranet.$1/\"/><rule from=\"^http://servicecenter\\.claranet\\.nl/\" to=\"https://servicecenter.claranet.nl/\"/><rule from=\"^http://secure\\.claranetsoho\\.co\\.uk/\" to=\"https://secure.claranetsoho.co.uk/\"/></ruleset>", "<ruleset name=\"Clarion-Ledger\" default_off=\"failed ruleset test\" f=\"Clarion-Ledger.xml\"><securecookie host=\"^www\\.clarionledger\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?clarionledger\\.com/\" to=\"https://www.clarionledger.com/\"/></ruleset>", "<ruleset name=\"ClarityRay (partial)\" default_off=\"connection refused\" f=\"ClarityRay.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clasohlson.se (broken)\" default_off=\"redirects to HTTP\" f=\"Clasohlson.se.xml\"><rule from=\"^http://www\\.clasohlson\\.se/\" to=\"https://www.clasohlson.se/\"/><rule from=\"^http://clasohlson\\.se/\" to=\"https://www.clasohlson.se/\"/></ruleset>", "<ruleset name=\"Class-Central.com\" f=\"Class-Central.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://class-central\\.com/\" to=\"https://www.class-central.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClassZone.com\" f=\"ClassZone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Classmates.com (partial)\" f=\"Classmates.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClassyMotherfucker.com\" default_off=\"self-signed\" f=\"ClassyMotherfucker.xml\"><rule from=\"^http://(?:www\\.)?classymotherfucker\\.com/\" to=\"https://classymotherfucker.com/\"/></ruleset>", "<ruleset name=\"Claudio dAngelis.com\" f=\"Claudio_dAngelis.com.xml\"><securecookie host=\"^\\.claudiodangelis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Claws-Mail.org\" default_off=\"mismatched\" f=\"Claws-Mail.org.xml\"><rule from=\"^http://(git\\.|www\\.)?claws-mail\\.org/\" to=\"https://$1claws-mail.org/\"/></ruleset>", "<ruleset name=\"cldlr.com\" f=\"Cldlr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cldup.com\" f=\"Cldup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clean Energy Experts\" f=\"Clean-Energy-Experts.xml\"><securecookie host=\"^(?:.*\\.)?cleanenergyexperts\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clean Energy Finance Corporation\" f=\"CleanEnergyFinanceCorporation.xml\"><rule from=\"^http://(?:www\\.)?cleanenergyfinancecorp\\.com\\.au/\" to=\"https://www.cleanenergyfinancecorp.com.au/\"/></ruleset>", "<ruleset name=\"CleanPrint.net\" default_off=\"failed ruleset test\" f=\"CleanPrint.net.xml\"><rule from=\"^http://(www\\.)?cleanprint\\.net/\" to=\"https://$1cleanprint.net/\"/><rule from=\"^http://cache-02\\.cleanprint\\.net/\" to=\"https://cache-02.cleanprint.net/\"/></ruleset>", "<ruleset name=\"Clear-Code.org\" platform=\"cacert\" f=\"Clear-Code.org.xml\"><rule from=\"^http://clear-code\\.com/\" to=\"https://www.clear-code.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clear-link.com\" f=\"Clear-link.com.xml\"><rule from=\"^http://(?:www\\.)?clear-link\\.com/+\" to=\"https://www.clearlink.com/\"/><rule from=\"^http://cms\\.clear-link\\.com/\" to=\"https://cms.clear-link.com/\"/></ruleset>", "<ruleset name=\"Clear.com\" f=\"Clear.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClearCenter.com (partial)\" default_off=\"failed ruleset test\" f=\"ClearCenter.com.xml\"><securecookie host=\"^secure\\.clearcenter\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.clearcenter\\.com/\" to=\"https://secure.clearcenter.com/\"/></ruleset>", "<ruleset name=\"ClearChain\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"ClearChain.xml\"><securecookie host=\"^www\\.clearchain\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?clearchain\\.com/\" to=\"https://www.clearchain.com/\"/></ruleset>", "<ruleset name=\"ClearXchange.com\" f=\"ClearXchange.com.xml\"><securecookie host=\"^\\.clearxchange\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clear Linux.org\" f=\"Clear_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clearlink.com\" f=\"Clearlink.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clergy Project\" default_off=\"mismatch\" f=\"Clergy-Project.xml\"><rule from=\"^http://(?:www\\.)?clergyproject\\.org/\" to=\"https://clergyproject.org/\"/></ruleset>", "<ruleset name=\"ClevelandClinic (partial)\" default_off=\"failed ruleset test\" f=\"ClevelandClinic.org.xml\"><securecookie host=\"^.*\\.clevelandclinic\\.org$\" name=\".+\"/><rule from=\"^http://www\\.clevelandclinic\\.org/\" to=\"https://my.clevelandclinic.org/\"/><rule from=\"^http://lerner\\.ccf\\.org/\" to=\"https://www.lerner.ccf.org/\"/><rule from=\"^http://clevelandclinicmeded\\.com/\" to=\"https://www.clevelandclinicmeded.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cleveland Police\" f=\"ClevelandPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clever.com\" f=\"Clever.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CleverCoin.com\" f=\"CleverCoin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?clevercoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cleverbridge (partial)\" f=\"Cleverbridge.xml\"><exclusion pattern=\"^http://(?:go|lp-content)\\.cleverbridge\\.com/\"/><exclusion pattern=\"^http://message\\.cleverbridge\\.com/bin/icon_generator\\?key=captcha-key$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?cleverbridge\\.org/\" to=\"https://www.cleverbridge.com/\"/><rule from=\"^http://(\\w+\\.)?cleverbridge\\.com/\" to=\"https://$1cleverbridge.com/\"/></ruleset>", "<ruleset name=\"Click-Sec.com\" f=\"Click-Sec.com.xml\"><securecookie host=\"^(?:support|www)?\\.click-sec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Click4Assistance.co.uk\" f=\"Click4Assistance.co.uk.xml\"><securecookie host=\"^(?:www\\.)?click4assistance\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickBank\" f=\"ClickBank.xml\"><securecookie host=\"^(?:\\.accounts|www)?\\.clickbank\\.com$\" name=\".+\"/><securecookie host=\"^(?:ssl)?\\.clickbank\\.net$\" name=\".+\"/><rule from=\"^http://((?:accounts|support|www)\\.)?clickbank\\.com/\" to=\"https://$1clickbank.com/\"/><rule from=\"^http://www\\.clickbank\\.net/+\\??$\" to=\"https://www.clickbank.com/\"/><rule from=\"^http://(?:www\\.)?clickbank\\.net/.*\" to=\"https://www.clickbank.com/network_abuse.html\"/><rule from=\"^http://ssl\\.clickbank\\.net/\" to=\"https://ssl.clickbank.net/\"/></ruleset>", "<ruleset name=\"ClickDimensions\" f=\"ClickDimensions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickEquations.net\" default_off=\"failed ruleset test\" f=\"ClickEquations.net.xml\"><securecookie host=\"^(?:w*\\.)?clickequations\\.net$\" name=\".+\"/><rule from=\"^http://((?:beacon|js|www)\\.)?clickequations\\.net/\" to=\"https://$1clickequations.net/\"/></ruleset>", "<ruleset name=\"ClickFunnels.com\" f=\"ClickFunnels.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickFuse.com\" f=\"ClickFuse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickMotive.com (partial)\" f=\"ClickMotive.xml\"><rule from=\"^http://assets\\.clickmotive\\.com/\" to=\"https://secureassets.clickmotive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickOn.com.ar\" f=\"ClickOn.xml\"><securecookie host=\"^(?:www\\.)?clickon\\.com\\.ar$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickPath (partial)\" f=\"ClickPath.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickSSL.com\" f=\"ClickSSL.com.xml\"><securecookie host=\"^www\\.clickssl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickTale\" f=\"ClickTale.xml\"><securecookie host=\".*\\.clicktale\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?clicktale\\.com/\" to=\"https://www.clicktale.com/\"/><rule from=\"^http://((?:login|subs)\\.app|blog)\\.clicktale\\.com/\" to=\"https://$1.clicktale.com/\"/><rule from=\"^http://s\\.clicktale\\.net/\" to=\"https://clicktale.pantherssl.com/\"/><rule from=\"^http://cdn\\.clicktale\\.net/\" to=\"https://clicktalecdn.sslcs.cdngc.net/\"/><rule from=\"^http://www(07)?\\.clicktale\\.net/\" to=\"https://www$1.clicktale.net/\"/></ruleset>", "<ruleset name=\"ClickVoyage.ru (MCB)\" platform=\"mixedcontent\" f=\"ClickVoyage.ru-mixedcontent.xml\"><securecookie host=\"^booking\\.clickvoyage\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickVoyage.ru (partial)\" f=\"ClickVoyage.ru.xml\"><securecookie host=\"^b2b\\.clickvoyage\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Click and Pledge.com (partial)\" f=\"Click_and_Pledge.com.xml\"><securecookie host=\"^(?:.+\\.)?clickandpledge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Click to Tweet.com\" f=\"Click_to_Tweet.com.xml\"><securecookie host=\"^clicktotweet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clickberry\" default_off=\"failed ruleset test\" f=\"Clickberry.xml\"><securecookie host=\"^clickberry\\.tv$\" name=\".+\"/><rule from=\"^http://(www\\.)?(\\w+\\.)?clickberry\\.tv/\" to=\"https://$2clickberry.tv/\"/><rule from=\"^http://(www\\.)?(\\w+\\.)?clbr\\.tv/\" to=\"https://$2clbr.tv/\"/></ruleset>", "<ruleset name=\"Clickdelivery.gr\" f=\"Clickdelivery.gr.xml\"><securecookie host=\"^(?:www\\.)?clickdelivery\\.gr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clickerheroes.com\" f=\"Clickerheroes.com.xml\"><rule from=\"^http://(?:www\\.)?clickerheroes\\.com/\" to=\"https://www.clickerheroes.com/\"/></ruleset>", "<ruleset name=\"Clickfun Casino\" f=\"Clickfun_Casino.xml\"><securecookie host=\"^(?:.*\\.)?clickfun(?:casino)?\\.com$\" name=\".+\"/><rule from=\"^http://(cdn77\\.|www\\.)?clickfun(casino)?\\.com/\" to=\"https://$1clickfun$2.com/\"/></ruleset>", "<ruleset name=\"Clicklivechat.com\" f=\"Clicklivechat.com.xml\"><securecookie host=\"^\\.clicklivechat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clicks.lv (partial)\" default_off=\"expired\" f=\"Clicks.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clicksor.com (partial)\" f=\"Clicksor.com.xml\"><securecookie host=\"^\\.clicksor\\.com$\" name=\".+\"/><rule from=\"^http://(admin|ads|serw|signup)\\.clicksor\\.com/\" to=\"https://$1.clicksor.com/\"/><rule from=\"^http://pub\\.clicksor\\.net/\" to=\"https://ads.clicksor.com/\"/></ruleset>", "<ruleset name=\"Clicktools.com\" f=\"Clicktools.xml\"><securecookie host=\"^(?:.+\\.)?clicktools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Climate Central\" default_off=\"http redirect\" f=\"Climate-Central.xml\"><securecookie host=\"^www\\.climatecentral\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Climate-Diplomacy.org\" f=\"Climate-Diplomacy.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClinicalKey.com\" f=\"ClinicalKey.com.xml\"><securecookie host=\"^\\.\" name=\"^dtCookie$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClinicalTrials.gov\" f=\"ClinicalTrials.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clinkle.com\" f=\"Clinkle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClipPod.com\" f=\"ClipPod.com.xml\"><securecookie host=\"^clippod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clipperz.is\" f=\"Clipperz.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clkads.com\" default_off=\"missing certificate chain\" f=\"Clkads.com.xml\"><rule from=\"^http://(?:www\\.)?clk(?:ads|mon|rev)\\.com/\" to=\"https://clkads.com/\"/></ruleset>", "<ruleset name=\"ClockworkMod.com (partial)\" f=\"Clockworkmod.com.xml\"><securecookie host=\"^developer\\.clockworkmod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Closerware.net (partial)\" f=\"Closerware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clothing at Tesco.com\" f=\"Clothing_at_Tesco.com.xml\"><securecookie host=\"^[w.]*\\.clothingattesco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClouDNS.net\" f=\"ClouDNS.net.xml\"><securecookie host=\"^www\\.cloudns\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cloudns\\.net/\" to=\"https://www.cloudns.net/\"/></ruleset>", "<ruleset name=\"ClouToday.nl\" f=\"ClouToday.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cloutoday\\.nl/\" to=\"https://www.cloutoday.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudAccess.net (partial)\" f=\"Cloud-Access.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Privacy (partial)\" f=\"Cloud-Privacy.xml\"><rule from=\"^http://files\\.cloudprivacy\\.net/\" to=\"https://s3.amazonaws.com/files.cloudprivacy.net/\"/></ruleset>", "<ruleset name=\"C9.io\" f=\"Cloud9.xml\"><securecookie host=\"^(?:\\.|docs\\.)?c9\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudAfrica.net\" f=\"CloudAfrica.net.xml\"><securecookie host=\"^(?:www\\.)?cloudafrica\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudatcost.com\" f=\"CloudAtCost.com.xml\"><exclusion pattern=\"^http://panel\\.cloudatcost\\.com:[0-9]+/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudControl.com (partial)\" f=\"CloudControl.com.xml\"><rule from=\"^http://cloudcontrol\\.com/\" to=\"https://www.cloudcontrol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudCracker\" f=\"CloudCracker.xml\"><rule from=\"^http://(?:www\\.)?wpacracker\\.com/\" to=\"https://cloudcracker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudFlare.com\" f=\"CloudFlare.xml\"><securecookie host=\"^(?:.*\\.)?cloudflare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudFlare Challenge.com\" default_off=\"expired\" f=\"CloudFlare_Challenge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudForge (problematic)\" default_off=\"mismatch\" f=\"CloudForge-problematic.xml\"><rule from=\"^http://(?:www\\.)?codesion\\.com/\" to=\"https://www.cloudforge.com/codesion/\"/><rule from=\"^http://info\\.codesion\\.com/\" to=\"https://www.cloudforge.com/\"/></ruleset>", "<ruleset name=\"CloudForge.com (partial)\" f=\"CloudForge.xml\"><securecookie host=\"^(?:ap|hel)p\\.cloudforge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudLinux.com (false MCB)\" platform=\"mixedcontent\" f=\"CloudLinux.com-falsemixed.xml\"><securecookie host=\"^\\.cloudlinux\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudLinux.com (partial)\" f=\"CloudLinux.com.xml\"><securecookie host=\"^\\.cloudlinux\\.com$\" name=\"^(?:__cfduid|BITRIX_SM_LAST_VISIT|cf_clearance)$\"/><securecookie host=\"^cln\\.cloudlinux\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudMagic\" f=\"CloudMagic.xml\"><securecookie host=\"^cloudmagic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudPiercer.org\" f=\"CloudPiercer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudSigma\" f=\"CloudSigma.xml\"><securecookie host=\"^(?:.*\\.)?cloudsigma\\.com$\" name=\".+\"/><rule from=\"^http://((?:autodetect|www|zrh|gui\\.zrh)\\.)?cloudsigma\\.com/\" to=\"https://$1cloudsigma.com/\"/><rule from=\"^http://status\\.cloudsigma\\.com/\" to=\"https://cloudsigma.statuspage.io/\"/></ruleset>", "<ruleset name=\"CloudSleuth.net\" f=\"CloudSleuth.xml\"><rule from=\"^http://(?:www\\.)?cloudsleuth\\.net/.*\" to=\"https://www.dynatrace.com/en/index.html\"/></ruleset>", "<ruleset name=\"CloudSponge (partial)\" f=\"CloudSponge.xml\"><securecookie host=\"^api\\.cloudsponge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cloudsponge\\.com/(image|javascript|stylesheet)s/\" to=\"https://www.cloudsponge.com/$1s/\"/><rule from=\"^http://api\\.cloudsponge\\.com/\" to=\"https://api.cloudponge.com/\"/></ruleset>", "<ruleset name=\"CloudSwitch\" default_off=\"failed ruleset test\" f=\"CloudSwitch.xml\"><securecookie host=\".*cloudswitch\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?cloudswitch\\.com/\" to=\"https://$1cloudswitch.com/\"/></ruleset>", "<ruleset name=\"CloudTrax.com\" f=\"CloudTrax.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudWorks.nu\" default_off=\"mismatched\" f=\"CloudWorks.nu.xml\"><rule from=\"^http://(?:www\\.)?cloudworks\\.nu/\" to=\"https://cloudworks.nu/\"/></ruleset>", "<ruleset name=\"Cloud Foundry.org (partial)\" f=\"Cloud_Foundry.org.xml\"><exclusion pattern=\"^http://blog\\.cloudfoundry\\.org/+(?!wp-content/.+\\.(?:jp|pn)g)\"/><rule from=\"^http://blog\\.cloudfoundry\\.org/\" to=\"https://i0.wp.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Foundry.com (partial)\" f=\"Cloud_Foundry.xml\"><exclusion pattern=\"^http://blog\\.cloudfoundry\\.com/(?!$)\"/><securecookie host=\"^core\\.cloudfoundry\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.cloudfoundry\\.com/\" to=\"https://blog.pivotal.io/cloud-foundry-pivotal\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Proven.net\" default_off=\"failed ruleset test\" f=\"Cloud_Proven.net.xml\"><securecookie host=\"^(?:www)?\\.cloudproven\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudera.com\" f=\"Cloudera.com.xml\"><securecookie host=\"^(?:\\.|ccp\\.|university\\.|www\\.)?cloudera\\.com$\" name=\".+\"/><rule from=\"^http://((?:ccp|community|university|www)\\.)?cloudera\\.com/\" to=\"https://$1cloudera.com/\"/><rule from=\"^http://files\\.cloudera\\.com/\" to=\"https://s3.amazonaws.com/files.cloudera.com/\"/><rule from=\"^http://images\\.go\\.cloudera\\.com/\" to=\"https://secure.eloqua.com/\"/></ruleset>", "<ruleset name=\"Cloudforce.com\" f=\"Cloudforce.com.xml\"><exclusion pattern=\"^http://cloudforce\\.com/.+\"/><securecookie host=\"^$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cloudforce\\.com/.*\" to=\"https://www.salesforce.com/events/\"/><rule from=\"^http://([\\w-]+)\\.cloudforce\\.com/\" to=\"https://$1.cloudforce.com/\"/></ruleset>", "<ruleset name=\"Cloudfront.net\" f=\"Cloudfront.xml\"><exclusion pattern=\"^http://d2i3r43q6ffvz8\\.cloudfront\\.net/.+\\.js\"/><rule from=\"^http://([^/:@\\.]+)\\.cloudfront\\.net/\" to=\"https://$1.cloudfront.net/\"/><exclusion pattern=\"^http://(\\w+)\\.cloudfront\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http:\\/\\/d3aef1qbbv7i5v\\.cloudfront\\.net\\/\"/><exclusion pattern=\"^http:\\/\\/(?:d3bn78kc7qbjb6|d1nawi9f7y8zrl)\\.cloudfront\\.net\\/\"/><exclusion pattern=\"&Signature=\"/></ruleset>", "<ruleset name=\"Cloudhexa Network\" f=\"Cloudhexa_Network.xml\"><securecookie host=\"^\\.(?:www\\.)?cloudhexa\\.com$\" name=\".+\"/><rule from=\"^http://www\\.cloudhexa\\.com/\" to=\"https://www.cloudhexa.com/\"/><rule from=\"^http://support\\.cloudhexa\\.com/\" to=\"https://cloudhexa.zendesk.com/\"/></ruleset>", "<ruleset name=\"Cloudimage.io\" f=\"Cloudimage.io.xml\"><securecookie host=\"^(?:[\\w-]+\\.)?cloudimage\\.io$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?cloudimage\\.io/\" to=\"https://$1cloudimage.io/\"/></ruleset>", "<ruleset name=\"Cloudinary.com (partial)\" f=\"Cloudinary.xml\"><exclusion pattern=\"^http://cloudinary\\.com/+(?!(?:console|users/login|users/recover_password|users/register)(?:$|[?/])|fonts/|stylesheets/)\"/><rule from=\"^http://demo-res\\.cloudinary\\.com/\" to=\"https://d1c4ogak0lt2ja.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudmailin.com (partial)\" f=\"Cloudmailin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudmark\" f=\"Cloudmark.xml\"><rule from=\"^http://(?:www\\.)?cloudmark\\.com/\" to=\"https://cloudmark.com/\"/><securecookie host=\"^(?:www\\.)?cloudmark\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"cloudmining.guru\" default_off=\"expired\" f=\"Cloudmining.guru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudorado.com (partial)\" f=\"Cloudorado.com.xml\"><securecookie host=\"^\\.cloudorado\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudpath.net (partial)\" f=\"Cloudpath.net.xml\"><securecookie host=\"^xpc\\.cloudpath\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudron.io\" f=\"Cloudron.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudscaling.com\" default_off=\"failed ruleset test\" f=\"Cloudscaling.com.xml\"><securecookie host=\"^(?:w*\\.)?cloudscaling\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudset.net\" f=\"Cloudset.net.xml\"><rule from=\"^http://(app|index\\.app|integrator|qa)\\.cloudset\\.net/\" to=\"https://$1.cloudset.net/\"/></ruleset>", "<ruleset name=\"Cloudup.com\" f=\"Cloudup.com.xml\"><securecookie host=\"^\\.cloudup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudwear.com\" f=\"Cloudwear.com.xml\"><securecookie host=\"^(?:w*\\.)?cloudwear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clover.com\" f=\"Clover.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clssl.org\" default_off=\"failed ruleset test\" f=\"Clssl.org.xml\"><securecookie host=\"^\\.clssl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClubCompy\" default_off=\"failed ruleset test\" f=\"ClubCompy.xml\"><securecookie host=\"^clubcompy\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClubNix.fr\" f=\"ClubNix.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Club Red Gaming.com (partial)\" default_off=\"connection dropped\" f=\"Club_Red_Gaming.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClusterHQ.com\" f=\"ClusterHQ.com.xml\"><securecookie host=\"^\\.clusterhq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cluster Connection.com (partial)\" f=\"Cluster_Connection.com.xml\"><rule from=\"^http://(www\\.)?clusterconnection\\.com/(?=favicon\\.ico|(?:members|register)(?:$|[?/])|wordpress/)\" to=\"https://$1clusterconnection.com/\"/></ruleset>", "<ruleset name=\"Clusters.de\" f=\"Clusters.de.xml\"><securecookie host=\"^(?:customer|domain)\\.clusters\\.de$\" name=\".+\"/><rule from=\"^http://((?:customer|domain|www)\\.)?clusters\\.de/\" to=\"https://$1clusters.de/\"/></ruleset>", "<ruleset name=\"Clyp.it\" f=\"Clyp.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CaCDN.net\" f=\"CmCDN.net.xml\"><rule from=\"^http://media\\.cmcdn\\.net/\" to=\"https://d2tbi97h020xxe.cloudfront.net/\"/><rule from=\"^http://s\\.cmcdn\\.net/\" to=\"https://d1gyuuidj3lauh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"cmcenroe.me (partial)\" f=\"Cmcenroe.me.xml\"><securecookie host=\"^\\.cmcenroe\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cmtt.ru\" f=\"Cmtt.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cnchost.com (partial)\" default_off=\"failed ruleset test\" f=\"Cnchost.com.xml\"><securecookie host=\"^secure\\.chchost\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cnzz.com\" f=\"Cnzz.com.xml\"><rule from=\"^http://s25\\.cnzz\\.com/\" to=\"https://s25.cnzz.com/\"/></ruleset>", "<ruleset name=\"co-operative bank\" f=\"Co-operative-bank.xml\"><securecookie host=\"^.*\\.co-operativebank\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?co-operativebank\\.co\\.uk/\" to=\"https://www.co-operativebank.co.uk/\"/><rule from=\"^http://personal\\.co-operativebank\\.co\\.uk/\" to=\"https://personal.co-operativebank.co.uk/\"/></ruleset>", "<ruleset name=\"Co3 Sys.com\" f=\"Co3_Sys.com.xml\"><securecookie host=\"^app\\.co3sys\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?co3sys\\.com/\" to=\"https://www.co3sys.com/\"/><rule from=\"^http://app\\.co3sys\\.com/\" to=\"https://app.co3sys.com/\"/></ruleset>", "<ruleset name=\"CoCubes.com (false MCB)\" platform=\"mixedcontent\" f=\"CoCubes.com-falsemixed.xml\"><securecookie host=\"^assess\\.cocubes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoCubes.com (partial)\" f=\"CoCubes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cogen Media (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CoGen-Media.xml\"><securecookie host=\"^\\.?[\\w-]+-cart\\.degica\\.com$\" name=\".+\"/><rule from=\"^http://degica\\.com/\" to=\"https://degica.com/\"/><rule from=\"^http://([\\w-]+-cart|dl)\\.degica\\.com/\" to=\"https://$1.degica.com/\"/></ruleset>", "<ruleset name=\"CoNetrix\" f=\"CoNetrix.xml\"><securecookie host=\"^(?:www)?\\.conetrix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coast Digital\" default_off=\"failed ruleset test\" f=\"Coast-Digital.xml\"><rule from=\"^http://(?:www\\.)?coastdigital\\.co\\.uk/\" to=\"https://coastdigital.co.uk/\"/><securecookie host=\"^(?:www\\.)?coastdigital\\.co\\.uk$\" name=\".*\"/></ruleset>", "<ruleset name=\"Coastal Micro Supply (partial)\" default_off=\"failed ruleset test\" f=\"Coastal_Micro_Supply.xml\"><rule from=\"^http://(www\\.)?coastalmicrosupply\\.com/($|catalog\\.html|images/|index\\.php\\?target=auth|skins/)\" to=\"https://$1coastalmicrosupply.com/$2\"/></ruleset>", "<ruleset name=\"Cobalt.io\" f=\"Cobalt.io.xml\"><securecookie host=\"^\\.cobalt\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cobalt Mania.com\" f=\"Cobalt_Mania.com.xml\"><securecookie host=\"^(?:www)?\\.cobaltmania.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cobaltmania\\.com/\" to=\"https://www.cobaltmania.com/\"/></ruleset>", "<ruleset name=\"Coccoc.com\" f=\"Coccoc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coclico Project (partial)\" default_off=\"shows default page\" f=\"Coclico-Project.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code of Honor\" f=\"Code-of-Honor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code.org\" f=\"Code.org.xml\"><securecookie host=\"^\\.code\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code42.com\" f=\"Code42.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeAurora.org\" f=\"CodeAurora.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeBeamer.com\" f=\"CodeBeamer.com.xml\"><securecookie host=\"^codebeamer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeHS.com\" default_off=\"failed ruleset test\" f=\"CodeHS.com.xml\"><rule from=\"^http://(www\\.)?codehs\\.com/\" to=\"https://$1codehs/\"/></ruleset>", "<ruleset name=\"CodePen.io (partial)\" f=\"CodePen.io.xml\"><exclusion pattern=\"^http://(?:assets|s)\\.codepen\\.io/+(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?codepen\\.io/+(?!favicon\\.ico|(?:login|signup)(?:$|[?/]))\"/><rule from=\"^http://((?:assets|s|www)\\.)?codepen\\.io/\" to=\"https://$1codepen.io/\"/></ruleset>", "<ruleset name=\"CodePicnic.com\" f=\"CodePicnic.com.xml\"><securecookie host=\"^(?:www\\.)?codepicnic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodePunker.com\" f=\"CodePunker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeWeavers\" f=\"CodeWeavers.xml\"><securecookie host=\"^www\\.codeweavers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Club.org.uk (partial)\" f=\"Code_Club.org.uk.xml\"><securecookie host=\"^(?:www\\.)?codeclub\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Club Pro.org\" f=\"Code_Club_Pro.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Mill Tech.com\" f=\"Code_Mill_Tech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|ARRAffinity)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code School.com (partial)\" f=\"Code_School.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code as Craft.com\" f=\"Code_as_Craft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code for America.org (partial)\" f=\"Code_for_America.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codebase HQ.com\" f=\"Codebase_HQ.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecademy.com\" f=\"Codecademy.com.xml\"><securecookie host=\"^(www\\.|discuss\\.)?codecademy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecentric.de\" f=\"Codecentric.de.xml\"><securecookie host=\"^\\.blog\\.codecentric\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codeclimate.com\" f=\"Codeclimate.com.xml\"><securecookie host=\"^(www\\.)?codeclimate\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecoon.com\" f=\"Codecoon.com.xml\"><securecookie host=\"^my\\.codecoon.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecoop.org\" f=\"Codecoop.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecov\" f=\"Codecov.xml\"><rule from=\"^http://(?:www\\.)?codecov\\.io/\" to=\"https://codecov.io/\"/></ruleset>", "<ruleset name=\"Codefisher.org\" f=\"Codefisher.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codefuel.com (partial)\" f=\"Codefuel.xml\"><securecookie host=\"^\\.codefuel.com$\" name=\"^(?:PERSISTENT_REFERRER_URL|REFERRER_URL|REFID)$\"/><securecookie host=\"^(?:accounts|sso)\\.codefuel.com$\" name=\".+\"/><rule from=\"^http://(accounts|sso)\\.codefuel\\.com/\" to=\"https://$1.codefuel.com/\"/></ruleset>", "<ruleset name=\"codefund.io (partial)\" default_off=\"failed ruleset test\" f=\"Codefund.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codehaus.org (partial)\" f=\"Codehaus.org.xml\"><securecookie host=\"^docs\\.codehaus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codementor.io\" f=\"Codementor.io.xml\"><securecookie host=\"^(?:www)?\\.codementor\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codemirror.net\" f=\"Codemirror.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codeplex.com (partial)\" f=\"Codeplex.xml\"><exclusion pattern=\"^http://(?:download|i[123])\\.codeplex\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coderbits.com (partial)\" f=\"Coderbits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coderouge.co\" f=\"Coderouge.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodersClan.net\" f=\"CodersClan.net.xml\"><securecookie host=\"^(?:www\\.)?codersclan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coderwall.com\" f=\"Coderwall.xml\"><securecookie host=\"^(?:www\\.)?coderwall\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.coderwall\\.com/\" to=\"https://d2h0j0bhq7ad3b.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codeship.com\" f=\"Codeship.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codesion (partial)\" default_off=\"failed ruleset test\" f=\"Codesion.xml\"><securecookie host=\"^(?:ap|hel)p\\.codesion\\.com$\" name=\".+\"/><rule from=\"^http://(ap|hel)p\\.codesion\\.com/\" to=\"https://$1p.codesion.com/\"/><rule from=\"^http://blog\\.codesion\\.com/\" to=\"https://blog.collab.net/\"/></ruleset>", "<ruleset name=\"codespeak\" default_off=\"failed ruleset test\" f=\"Codespeak.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codethink\" default_off=\"mismatch\" f=\"Codethink.xml\"><rule from=\"^http://(?:www\\.)?codethink\\.co\\.uk/\" to=\"https://www.codethink.co.uk/\"/></ruleset>", "<ruleset name=\"Codeux.com\" f=\"Codeux.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codex NS.io (partial)\" f=\"Codex_NS.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodingTeam.net\" f=\"CodingTeam.net.xml\"><rule from=\"^http://(?:www\\.)?codingteam\\.net/\" to=\"https://codingteam.net/\"/></ruleset>", "<ruleset name=\"Coding Horror\" f=\"Codinghorror.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cognesia.net\" f=\"Cognesia.net.xml\"><securecookie host=\"^(?:resources|www)\\.cognesia\\.net$\" name=\".+\"/><rule from=\"^http://www\\.cognesia\\.net/\" to=\"https://www.cognesia.net/\"/></ruleset>", "<ruleset name=\"Cognition Secure.com\" f=\"Cognition_Secure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cognitive Dissidents (partial)\" default_off=\"Akamai\" f=\"Cognitive-Dissidents.xml\"><rule from=\"^http://(blog|www)\\.cognitivedissidents\\.com/\" to=\"https://$1.cognitivedissidents.com/\"/></ruleset>", "<ruleset name=\"CohnReznick.com\" f=\"CohnReznick.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coin-Swap.net\" f=\"Coin-Swap.net.xml\"><securecookie host=\"^coin-swap\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinAxis.com\" f=\"CoinAxis.com.xml\"><securecookie host=\"^\\.?coinaxis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinDL.com\" default_off=\"500\" f=\"CoinDL.xml\"><securecookie host=\"^\\.?www\\.coindl\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinDaddy.io\" f=\"CoinDaddy.io.xml\"><securecookie host=\"^\\.coindaddy\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinDesk.com (false MCB)\" platform=\"mixedcontent\" f=\"CoinDesk.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinForum.de\" f=\"CoinForum.de.xml\"><securecookie host=\"^\\.coinforum\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinJabber.com\" default_off=\"self-signed\" f=\"CoinJabber.com.xml\"><securecookie host=\"^(?:www\\.)?coinjabber\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinJar.com\" f=\"CoinJar.com.xml\"><securecookie host=\"^\\.coinjar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinMate.io\" f=\"CoinMate.io.xml\"><securecookie host=\"^\\.?coinmate\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinURL.com\" f=\"CoinURL.com.xml\"><securecookie host=\"^coinurl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coinurl\\.com/\" to=\"https://coinurl.com/\"/></ruleset>", "<ruleset name=\"CoinWallet.eu\" f=\"CoinWallet.eu.xml\"><securecookie host=\"^(?:www)?\\.coinwallet\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinWorker.com\" f=\"CoinWorker.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinbase.com\" f=\"Coinbase.xml\"><securecookie host=\"^(?:\\.|(?:docs\\.)?exchange\\.)?coinbase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coincheck.jp\" f=\"Coincheck.jp.xml\"><securecookie host=\"^coincheck\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinfloor.co.uk (partial)\" f=\"Coinfloor.co.uk.xml\"><securecookie host=\"^(?:\\.|www\\.)?coinfloor\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://status\\.coinfloor\\.co\\.uk/\" to=\"https://coinfloor.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinimal.com\" f=\"Coinimal.com.xml\"><securecookie host=\"^\\.coinimal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinkite.com\" f=\"Coinkite.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinomat.com (partial)\" f=\"Coinomat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinpay.in.th\" f=\"Coinpay.in.th.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinsecure.in\" f=\"Coinsecure.in.xml\"><securecookie host=\"^coinsecure\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinsquare.io\" f=\"Coinsquare.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cointrader.net\" f=\"Cointrader.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coicoisas.com\" f=\"Coisas.com.xml\"><securecookie host=\"^\\.coisas.com$\" name=\".+\"/><rule from=\"^http://coisas\\.com/\" to=\"https://www.coisas.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coke CCE.com\" f=\"Coke_CCE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colchester.gov.uk (partial)\" f=\"Colchester.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coldhak.ca\" f=\"Coldhak.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colin Leroy\" f=\"Colin-Leroy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollabNet\" f=\"CollabNet.xml\"><securecookie host=\"^\\.collab\\.net$\" name=\".+\"/><rule from=\"^http://((?:blog|git\\.help|forums\\.open|www)\\.)?collab\\.net/\" to=\"https://$1collab.net/\"/><rule from=\"^http://(?:www\\.)?open\\.collab\\.net/\" to=\"https://www.open.collab.net/\"/><rule from=\"^http://visit\\.collab\\.net/(?=css/|images/|js/|rs/)\" to=\"https://na-aba.collab.net/\"/></ruleset>", "<ruleset name=\"Collabora (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Collabora-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collabora (partial)\" f=\"Collabora.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collateral Murder\" default_off=\"failed ruleset test\" f=\"Collateral_Murder.xml\"><securecookie host=\"^\\.collateralmurder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"collectd.org\" f=\"Collectd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collectif Stop TAFTA.org\" f=\"Collectif_Stop_TAFTA.org.xml\"><rule from=\"^http://collectifstoptafta\\.org/\" to=\"https://www.collectifstoptafta.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collective Media (partial)\" f=\"Collective-Media.xml\"><securecookie host=\"^\\.collective-media\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collective IP.com\" f=\"Collective_IP.com.xml\"><securecookie host=\"^\\.collectiveip\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"College of Nurses of Ontario (partial)\" default_off=\"failed ruleset test\" f=\"College-of-Nurses-of-Ontario.xml\"><rule from=\"^http://(www\\.)?cno\\.org/(CNO|Global|login)/\" to=\"https://www.cno.org/$2/\"/><rule from=\"^http://flo\\.cno\\.org/\" to=\"https://flo.cno.org/\"/></ruleset>", "<ruleset name=\"CollegeBoundfund (partial)\" f=\"CollegeBoundfund.xml\"><securecookie host=\"^(?:.+\\.)?collegeboundfund\\.com$\" name=\".+\"/><rule from=\"^http://(corporate\\.|www\\.)?collegeboundfund\\.com/\" to=\"https://$1collegeboundfund.com/\"/><rule from=\"^http://ri\\.collegeboundfund\\.com/(\\?.*)?$\" to=\"https://www.collegeboundfund.com/ri/home.aspx$1\"/><rule from=\"^http://ri\\.collegeboundfund\\.com/CmsObjectRICBF/\" to=\"https://corporate.collegeboundfund.com/CmsObjectRICBF/\"/></ruleset>", "<ruleset name=\"CollegeHumor (mismatches)\" default_off=\"Akamai\" f=\"CollegeHumor-mismatches.xml\"><rule from=\"^http://\\d\\.media\\.collegehumor\\.cvcdn\\.com/\" to=\"https://1.media.collegehumor.cvcdn.com/\"/></ruleset>", "<ruleset name=\"CollegeHumor (buggy)\" default_off=\"JS redirection loops\" f=\"CollegeHumor.xml\"><securecookie host=\"^\\.collegehumor\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?collegehumor\\.com/\" to=\"https://www.collegehumor.com/\"/><rule from=\"^http://\\d\\.static\\.collegehumor\\.cvcdn\\.com/\" to=\"https://www.collegehumor.com/\"/></ruleset>", "<ruleset name=\"CollegeNET.com\" f=\"CollegeNET.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collegiate Peaks Bank\" f=\"Collegiate-Peaks-Bank.xml\"><securecookie host=\"(?:^|\\.)collegiatepeaksbank\\.com$\" name=\".+\"/><securecookie host=\"(?:^|\\.)cpbonlinebanking\\.com$\" name=\".+\"/><rule from=\"^http://12\\.191\\.21\\.228/\" to=\"https://www.collegiatepeaksbank.com/\"/><rule from=\"^http://cpbonlinebanking\\.com/\" to=\"https://www.cpbonlinebanking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollegiateLink (partial)\" f=\"CollegiateLink.xml\"><exclusion pattern=\"^http://(?:(?:www[0-9]?)\\.)?collegiatelink\\.net/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.collegiatelink\\.net/\" to=\"https://$1.collegiatelink.net/\"/></ruleset>", "<ruleset name=\"CollierTech.org (partial)\" f=\"CollierTech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collings Foundation.org\" f=\"Collings_Foundation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colm Networks\" f=\"Colm_Networks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colocation America.com (partial)\" f=\"Colocation_America.com.xml\"><exclusion pattern=\"^http://www\\.colocationamerica\\.com/+(?!images/|wp-content/)\"/><securecookie host=\"^colocationamerica\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\d?\\.colocationamerica\\.com/\" to=\"https://www.colocationamerica.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colocore.ch\" f=\"Colocore.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CologneFurdance\" default_off=\"failed ruleset test\" f=\"CologneFurdance.xml\"><securecookie host=\"^reg\\.cologne-cfd\\.de$\" name=\".+\"/><rule from=\"^http://reg\\.cologne-cfd\\.de/\" to=\"https://reg.cologne-cfd.de/\"/></ruleset>", "<ruleset name=\"Coloman.nl\" default_off=\"failed ruleset test\" f=\"Coloman.nl.xml\"><securecookie host=\"^www\\.coloman\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado State Attorney General\" f=\"Colorado-Attorney-General.xml\"><rule from=\"^http://(?:www\\.)?coloradoattorneygeneral\\.gov/\" to=\"https://www.coloradoattorneygeneral.gov/\"/></ruleset>", "<ruleset name=\"Official Colorado No-Call List\" f=\"Colorado-No-Call-List.xml\"><rule from=\"^http://(?:www\\.)?coloradonocall\\.com/\" to=\"https://www.coloradonocall.com/\"/></ruleset>", "<ruleset name=\"Colorado Captures\" f=\"Colorado_Captures.xml\"><securecookie host=\"^\\.(?:www\\.)?coloradocaptures\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado College.edu (partial)\" f=\"Colorado_College.edu.xml\"><exclusion pattern=\"^http://sites\\.coloradocollege\\.edu/+(?:$|\\?)\"/><securecookie host=\"^(?:www\\.)?coloradocollege\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado Secretary of State (partial)\" f=\"Colorado_Secretary_of_State.xml\"><rule from=\"^http://(?:www\\.)sos\\.state\\.co\\.us/pubs/\" to=\"https://$1sos.state.co.us/pubs/\"/></ruleset>", "<ruleset name=\"The Coloradoan\" default_off=\"failed ruleset test\" f=\"Coloradoan.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?coloradoan\\.com/\" to=\"https://www.coloradoan.com/\"/></ruleset>", "<ruleset name=\"Colorlines.com\" f=\"Colorlines.com.xml\"><rule from=\"^http://colorlines\\.com/\" to=\"https://www.colorlines.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"colors-il.com\" default_off=\"failed ruleset test\" f=\"Colors-il.com.xml\"><securecookie host=\"^(?:w*\\.)?colors-il.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colossal.jp (partial)\" f=\"Colosall.jp.xml\"><securecookie host=\"^(?:www\\.)?colossal\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Columbia University (problematic)\" default_off=\"mismatched\" f=\"Columbia_University-problematic.xml\"><securecookie host=\"^.+\\.columbia\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(cdrs|stv)\\.columbia\\.edu/\" to=\"https://www.$1.columbia.edu/\"/><rule from=\"^http://(support\\.academiccommons|bulletin\\.engineering|managers\\.hr|(?:twiki|www)\\.nevis|scholcomm)\\.columbia\\.edu/\" to=\"https://$1.columbia.edu/\"/></ruleset>", "<ruleset name=\"Columbia University (partial)\" f=\"Columbia_University.xml\"><exclusion pattern=\"^http://www\\.cs\\.columbia\\.edu/(?!icons/)\"/><exclusion pattern=\"^http://www\\.giving\\.columbia\\.edu/(?!$|ccvolunteers/(?:App_Themes/|Telerik\\.Web\\.UI\\.WebResource\\.axd)|volunteer/)\"/><exclusion pattern=\"^http://gs\\.columbia\\.edu/(?!files/|misc/|sites/)\"/><exclusion pattern=\"^http://library\\.columbia\\.edu/(?!apps/|content/|etc/)\"/><exclusion pattern=\"^http://procurement\\.columbia\\.edu/(?!modules/|sites/)\"/><securecookie host=\"^\\w.*\\.columbia\\.edu$\" name=\".+\"/><securecookie host=\"^\\.(?:alumni|cubemail\\.cc|ingo\\.cc|cuitalerts|facets|facilities|forms\\.finance|www7\\.gsb|isso|lexington|mailservices|my|news|policylibrary|researchinitiatives|spa|universityprograms|worklife|worldleaders)\\.columbia\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?columbia\\.edu/cuit/index\\.html($|\\?.*)\" to=\"https://cuit.columbia.edu/$1\"/><rule from=\"^http://(www\\.ais|cas|(?:cubemail|ingo|rascalprod|uniapp)\\.cc|www\\.college|(?:mice|www)\\.cs|wikis\\.cuit|(?:haydn|roomreservations|scholcomm-dev)\\.cul|www\\.facil|forms\\.finance|admissions\\.gs|(?:apply|gsas-2l12p-01)\\.gsas|(?:apply|gear|www[024678]|www-1)\\.gsb|housingportal|isso|www\\.law|lexington|alumni-friends\\.library|newcourseworks|portal\\.seas|(?:www\\.)?procurement|ssol|(?:undergraduate-admissions\\.|www\\.)?studentaffairs|(?:auth|careers|my)\\.tc|wind|www1)\\.columbia\\.edu/\" to=\"https://$1.columbia.edu/\"/><rule from=\"^http://(?:www\\.)?alice\\.columbia\\.edu/(?:.*)\" to=\"https://health.columbia.edu/services/alice\"/><rule from=\"^http://(?:www\\.)?(alumni(?:clubs)?|arch|arts|bme|communityservice|courseworks|cuit|cuitalerts|cup|directory|engineering|eoaa|evpr|facets|facilities|facultyhouse|finance|giving|goaskalice|gs|health|housingservices|hr|library|mail|my|news|policylibrary|printservices|registar|researchinitiatives|spa|universityprograms|worklife|worldleaders)\\.columbia\\.edu/\" to=\"https://$1.columbia.edu/\"/><rule from=\"^http://(?:www\\.)?(giving|gsas|gsb|infoed|math|rascal|tc)\\.columbia\\.edu/\" to=\"https://www.$1.columbia.edu/\"/><rule from=\"^http://(?:www\\.)?ogp\\.columbia\\.edu/\" to=\"https://columbia.studioabroad.com/\"/><rule from=\"^http://outlook1?\\.cuit\\.columbia\\.edu/\" to=\"https://outlook1.cuit.columbia.edu/\"/><rule from=\"^http://lionmail\\.columbia\\.edu/(?:.*)\" to=\"https://mail.google.com/a/columbia.edu\"/><rule from=\"^http://uni\\.columbia\\.edu/(?:$|\\?.*)\" to=\"https://cuit.columbia.edu/cuit/manage-my-uni\"/><rule from=\"^http://www\\.w2aee\\.columbia\\.edu/($|\\?.*)\" to=\"https://wikis.cuit.columbia.edu/confluence/display/cuarc/Home$1\"/></ruleset>", "<ruleset name=\"Com-Sys\" default_off=\"expired\" f=\"Com-Sys.xml\"><securecookie host=\"^com-sys\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?com-sys\\.de/\" to=\"https://com-sys.de/\"/></ruleset>", "<ruleset name=\"ComCav.com\" default_off=\"failed ruleset test\" f=\"ComCav.com.xml\"><securecookie host=\"^\\.www\\.comcav\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComNews Conferences\" default_off=\"mismatch\" f=\"ComNews-Conferences.xml\"><securecookie host=\"^comnews-conferences\\.ru$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?comnews-conferences\\.ru/\" to=\"https://comnews-conferences.ru/\"/></ruleset>", "<ruleset name=\"comScore.com (partial)\" f=\"ComScore.com.xml\"><securecookie host=\"^(?:mail|my)\\.comscore\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.comscore\\.com/\" to=\"https://mail.comscore.com/\"/><rule from=\"^http://(?:www\\.)?nedstat\\.com/\" to=\"https://dax-files.comscore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comScore Data Mine.com\" default_off=\"mismatched\" f=\"ComScore_Data_Mine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComSignTrust.com\" f=\"ComSignTrust.com.xml\"><securecookie host=\"^(?:blog|www)?\\.comsigntrust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComStern.at\" f=\"ComStern.at.xml\"><securecookie host=\"^www\\.comstern\\.at$\" name=\".+\"/><rule from=\"^http://comstern\\.at/\" to=\"https://www.comstern.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComStern.de\" f=\"ComStern.de.xml\"><securecookie host=\"^www\\.comstern\\.de$\" name=\".+\"/><rule from=\"^http://comstern\\.de/\" to=\"https://www.comstern.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComSuper\" f=\"ComSuper.xml\"><rule from=\"^http://(?:www\\.)?comsuper\\.gov\\.au/\" to=\"https://www.comsuper.gov.au/\"/></ruleset>", "<ruleset name=\"Com Laude.com\" f=\"Com_Laude.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcast.net (partial)\" f=\"Comcast.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:NXCLICK2|OAX)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcast.com (partial)\" f=\"Comcast.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://comcast\\.com/\" to=\"https://www.comcast.com/\"/><rule from=\"^http://forums\\.comcast\\.com/+\" to=\"https://forums.xfinity.com/\"/><rule from=\"^http://store\\.comcast\\.com/\" to=\"https://securestore.xfinity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcate (partial)\" f=\"Comcate.xml\"><securecookie host=\"^clients\\.comcate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comenity.net (partial)\" f=\"Comenity.net.xml\"><rule from=\"^http://(c|d)\\.comenity\\.net/\" to=\"https://$1.comenity.net/\"/></ruleset>", "<ruleset name=\"Cometdocs.com (partial)\" f=\"Cometdocs.com.xml\"><securecookie host=\"^www\\.cometdocs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comiXology.com (partial)\" f=\"ComiXology.com.xml\"><exclusion pattern=\"^http://support\\.comixology\\.com/(?!favicon\\.ico)\"/><securecookie host=\"^(?:pulllist|retailers|store-images|submit|www)\\.comixology\\.com$\" name=\".+\"/><rule from=\"^http://comixology\\.com/\" to=\"https://www.comixology.com/\"/><rule from=\"^http://support\\.comixology\\.com/\" to=\"https://d3jyn100am7dxp.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comic-Con International\" default_off=\"failed ruleset test\" f=\"Comic-Con-Intl.xml\"><securecookie host=\"^secure2?.comic-con.org$\" name=\".+\"/><rule from=\"^https?://comic-con\\.org/\" to=\"https://secure.comic-con.org/\"/><rule from=\"^http://(?:www\\.)?comic-con\\.(?:net|org)/\" to=\"https://secure.comic-con.org/\"/><rule from=\"^http://(secure2?)\\.comic-con\\.(net|org)/\" to=\"https://$1.comic-con.org/\"/></ruleset>", "<ruleset name=\"Comic-Rocket.com\" f=\"Comic-Rocket.com.xml\"><securecookie host=\"^www\\.comic-rocket\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comingolstadt\" f=\"Comingolstadt.xml\"><rule from=\"^http://(www\\.)?comingolstadt\\.de/\" to=\"https://comingolstadt.de/\"/></ruleset>", "<ruleset name=\"Comkort.com\" f=\"Comkort.com.xml\"><securecookie host=\"^\\.comkort\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"com100.cn\" f=\"Comm100.cn.xml\"><securecookie host=\"^chatserver\\.comm100\\.cn$\" name=\".+\"/><rule from=\"^http://(chatserver|hosted)\\.comm100\\.cn/\" to=\"https://$1.comm100.cn/\"/></ruleset>", "<ruleset name=\"comm100.com\" f=\"Comm100.com.xml\"><rule from=\"^http://chatserver\\.comm100\\.com/\" to=\"https://chatserver.comm100.com/\"/></ruleset>", "<ruleset name=\"CommLink.org (partial)\" f=\"CommLink.org.xml\"><rule from=\"^http://(?:www\\.)?commlink\\.org/(?=concrete/|favicon\\.ico|files/|packages/|themes/)\" to=\"https://www.commlink.org/\"/></ruleset>", "<ruleset name=\"CommScope.com (partial)\" f=\"CommScope.com.xml\"><rule from=\"^http://(www\\.)?commscope\\.com/(?=favicon\\.ico|theme/|uploadedImages/|WorkArea/(?:images|FrameworkUI)/)\" to=\"https://$1commscope.com/\"/><rule from=\"^http://info\\.commscope\\.com/+(?:\\?.*)?$\" to=\"https://www.commscope.com/\"/><rule from=\"^http://info\\.commscope\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjp.marketo.com/\"/></ruleset>", "<ruleset name=\"Command Five\" f=\"Command_Five.xml\"><securecookie host=\"^(?:www\\.)?commandfive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commando.io (partial)\" f=\"Commando.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commando Boxing.com\" f=\"Commando_Boxing.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commonwealth Bank of Australia\" f=\"Commbank.xml\"><rule from=\"^http://my\\.commbank\\.com\\.au/\" to=\"https://www.my.commbank.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commentary Magazine.com\" f=\"Commentary_Magazine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commerce5.com (partial)\" default_off=\"mismatched\" f=\"Commerce5.com.xml\"><securecookie host=\"^cm\\.commerce5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"commindo media (partial)\" default_off=\"failed ruleset test\" f=\"Commindo-media.xml\"><rule from=\"^http://auslieferung\\.commindo-media-ressourcen\\.de/\" to=\"https://auslieferung.commindo-media-ressourcen.de/\"/></ruleset>", "<ruleset name=\"Commission Junction\" platform=\"mixedcontent\" f=\"Commission_Junction.xml\"><securecookie host=\"^(?:.*\\.)?(?:apmebf|cj)\\.com$\" name=\".+\"/><rule from=\"^http://www\\.(afcyhf|anrdoezrs|apmebf|awltovhc|commission-junction|dpbolvw|emjcd|ftjcfx|jdoqocy|kdukvh|kqzyfj|lduhtrp|pkracv|tkqlhce|tqlkg)\\.(com|net)/\" to=\"https://www.$1.$2/\"/><rule from=\"^http://www\\.(?:awxibrm|cualbr|rnsfpw|vofzpwh|yceml)\\.(?:com|net)/\" to=\"https://www.apmebf.com/\"/><rule from=\"^http://(?:www\\.)?cj\\.com/\" to=\"https://www.cj.com/\"/><rule from=\"^http://(members|signup)\\.cj\\.com/\" to=\"https://$1.cj.com/\"/><rule from=\"^http://www\\.qks(?:rv|z)\\.net/\" to=\"https://www.qksrv.net/\"/></ruleset>", "<ruleset name=\"Commodity Futures Trading Commission (partial)\" f=\"Commodity_Futures_Trading_Commission.xml\"><securecookie host=\"^services\\.cftc\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cftc\\.gov/ucm/\" to=\"https://www.cftc.gov/ucm/\"/><rule from=\"^http://services\\.cftc\\.gov/\" to=\"https://services.cftc.gov/\"/></ruleset>", "<ruleset name=\"Common Application\" f=\"Common-App.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common-Lisp.net\" f=\"Common-Lisp.net.xml\"><securecookie host=\"^gitlab\\.common-lisp\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common Short Code Administration (partial)\" f=\"Common-Short-Code-Administration.xml\"><rule from=\"^http://(www\\.)?usshortcodes\\.com/(content|csc|csclogin|images|Includes)/\" to=\"https://$1usshortcodes.com/$2/\"/></ruleset>", "<ruleset name=\"CommonCrawl\" f=\"CommonCrawl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CommonDreams.org (partial)\" f=\"CommonDreams.xml\"><securecookie host=\"^commondreams\\.org$\" name=\".*\"/><rule from=\"^http://commondreams\\.org/\" to=\"https://commondreams.org/\"/></ruleset>", "<ruleset name=\"Common Place Books\" f=\"CommonPlaceBooks.xml\"><rule from=\"^http://(www\\.)?commonplacebooks\\.com/\" to=\"https://commonplacebooks.squarespace.com/\"/></ruleset>", "<ruleset name=\"Common Craft.com\" f=\"Common_Craft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common Criteria Portal.org\" f=\"Common_Criteria_Portal.xml\"><securecookie host=\".*\\.commoncriteriaportal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commonwealth Courts Portal\" f=\"CommonwealthCourtsPortal.xml\"><rule from=\"^http://(?:www\\.)?comcourts\\.gov\\.au/\" to=\"https://www.comcourts.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth GITC\" default_off=\"failed ruleset test\" f=\"CommonwealthGITC.xml\"><rule from=\"^http://(?:www\\.)?gitc\\.finance\\.gov\\.au/\" to=\"https://www.gitc.finance.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth Grants Commission\" f=\"CommonwealthGrantsCommission.xml\"><rule from=\"^http://(?:www\\.)?cgc\\.gov\\.au/\" to=\"https://www.cgc.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth Superannuation Corporation\" f=\"CommonwealthSuperannuationCorporation.xml\"><rule from=\"^http://(?:www\\.)?csc\\.gov\\.au/\" to=\"https://www.csc.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth Superannuation Scheme\" f=\"CommonwealthSuperannuationScheme.xml\"><rule from=\"^http://(?:www\\.)?css\\.gov\\.au/\" to=\"https://www.css.gov.au/\"/></ruleset>", "<ruleset name=\"Commotionwireless.net\" f=\"Commotionwireless.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CommuniGate\" f=\"CommuniGate.xml\"><rule from=\"^http://(?:www\\.)?communigate\\.com/\" to=\"https://www.communigate.com/\"/></ruleset>", "<ruleset name=\"CommuniGator.co.uk\" f=\"CommuniGator.co.uk.xml\"><rule from=\"^http://(?:www\\.)?communigator\\.co\\.uk/\" to=\"https://www.communigator.co.uk/\"/><rule from=\"^http://guru\\.communigator\\.co\\.uk/\" to=\"https://guru.communigator.co.uk/\"/></ruleset>", "<ruleset name=\"Communicate Live\" f=\"Communicate_Live.xml\"><securecookie host=\"^(?:www\\.)?communicatelive\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Communicator Corporation (partial)\" f=\"Communicator_Corporation.xml\"><securecookie host=\"^platform\\.communicatorcorp\\.com$\" name=\".+\"/><rule from=\"^http://platform\\.communicatorcorp\\.com/\" to=\"https://platform.communicatorcorp.com/\"/><rule from=\"^http://(?:www\\.)?communicatoremail\\.com/\" to=\"https://www.communicatoremail.com/\"/></ruleset>", "<ruleset name=\"Community.elgg.org\" f=\"Community.elgg.org.xml\"><rule from=\"^http://community\\.elgg\\.org/\" to=\"https://community.elgg.org/\"/></ruleset>", "<ruleset name=\"WB Games.com (partial)\" f=\"Community.wbgames.com.xml\"><securecookie host=\"community\\.wbgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Community Matters (partial)\" f=\"Community_Matters.xml\"><securecookie host=\"^.+\\.hohndel\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comodo\" f=\"Comodo.xml\"><securecookie host=\"^[\\w-]+\\.comodo\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|antivirus|directory|downloads?|enterprise|forums|friends|help|icedragon|m|marketingdb|pctuneup|penetration-testing|personalfirewall|secure|ssl|www\\.ssl|support|trustlogo|trustlogostats|www)\\.)?comodo\\.com/\" to=\"https://$1comodo.com/\"/><rule from=\"^http://www\\.download\\.comodo\\.com/\" to=\"https://download.comodo.com/\"/><rule from=\"^http://secure\\.comodo\\.net/\" to=\"https://secure.comodo.net/\"/><rule from=\"^http://siteinspector\\.comodo\\.com/\" to=\"https://app.webinspector.com/\"/><rule from=\"^http://(?:www\\.)trustlogo\\.com/(trustlogo/|images/cornertrust\\.gif$)\" to=\"https://secure.comodo.com/$1\"/><rule from=\"^http://(?:www\\.)?comodo(?:group\\.com|\\.net)/\" to=\"https://www.comodo.com/\"/></ruleset>", "<ruleset name=\"CompEx (partial)\" default_off=\"expired\" f=\"CompEx.xml\"><securecookie host=\"^(?:.*\\.)themoneyreferral\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)videogateway\\.tv$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?themoneyreferral\\.com/\" to=\"https://www.themoneyreferral.com/\"/><rule from=\"^http://(?:www\\.)?videogateway\\.tv/\" to=\"https://www.videogateway.tv/\"/></ruleset>", "<ruleset name=\"CompaniesHouse\" f=\"CompaniesHouse.xml\"><securecookie host=\"^(?:direct|ebilling|ewf)\\.companieshouse\\.gov\\.uk$\" name=\".*\"/><rule from=\"^http://(direct|ebilling|ewf)\\.companieshouse\\.gov\\.uk/\" to=\"https://$1.companieshouse.gov.uk/\"/></ruleset>", "<ruleset name=\"CompaniesInTheUK\" f=\"CompaniesInTheUK.xml\"><securecookie host=\"^(?:.+\\.)?companiesintheuk\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://companiesintheuk\\.co\\.uk/\" to=\"https://companiesintheuk.co.uk/\"/><rule from=\"^http://(www)\\.companiesintheuk\\.co\\.uk/\" to=\"https://$1.companiesintheuk.co.uk/\"/></ruleset>", "<ruleset name=\"Companies House (partial)\" f=\"Companies_House.xml\"><rule from=\"^http://wck2\\.companieshouse\\.gov\\.uk/(?!/?wcframe)\" to=\"https://wck2.companieshouse.gov.uk/\"/></ruleset>", "<ruleset name=\"company-target.com\" f=\"Company-target.com.xml\"><securecookie host=\"^\\.company-target\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compaq.com\" f=\"Compaq.com.xml\"><rule from=\"^http://(?:www\\.)?compaq\\.com/\" to=\"https://www.compaq.com/\"/></ruleset>", "<ruleset name=\"Compare The Market.com (partial)\" f=\"CompareTheMarket.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://comparethemarket\\.com/\" to=\"https://www.comparethemarket.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compari.ro\" f=\"Compari.ro.xml\"><securecookie host=\".*\\.compari\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comparis.ch\" f=\"Comparis.xml\"><securecookie host=\"^(?:.*\\.)?comparis\\.ch$\" name=\".*\"/><rule from=\"^http://comparis\\.ch/\" to=\"https://www.comparis.ch/\"/><rule from=\"^http://([^/:@]+)?\\.comparis\\.ch/\" to=\"https://$1.comparis.ch/\"/></ruleset>", "<ruleset name=\"Comparitech.com\" f=\"Comparitech.com.xml\"><securecookie host=\"^www\\.comparitech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransLink Compass Card\" f=\"Compasscard.ca.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compendium.com (partial)\" f=\"Compendium.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?compendium\\.com/(?!$)\"/><securecookie host=\"^imagefilter\\.app\\.compendium\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?compendium\\.com/\" to=\"https://www.oracle.com/us/corporate/acquisitions/compendium/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compendium Blog.com\" f=\"Compendium.xml\"><rule from=\"^http://(?:cdn|global)\\.content\\.compendiumblog\\.com/\" to=\"https://s3.amazonaws.com/global.content.compendiumblog.com/\"/><rule from=\"^http://(\\w+)\\.compendiumblog\\.com/\" to=\"https://$1.compendiumblog.com/\"/><rule from=\"^http://cdn2\\.content\\.compendiumblog\\.com/\" to=\"https://cdn2.content.compendiumblog.com/\"/></ruleset>", "<ruleset name=\"Compete.org\" default_off=\"connection dropped\" f=\"Compete.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compete (partial)\" f=\"Compete.xml\"><securecookie host=\".*\\.c-col\\.com$\" name=\".*\"/><rule from=\"^http://media\\.compete\\.com/\" to=\"https://securemedia.compete.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Competitive Enterprise Institute (problematic)\" default_off=\"expired, mismatched\" f=\"Competitive_Enterprise_Institute-problematic.xml\"><rule from=\"^http://(?:www\\.)?cei\\.org/\" to=\"https://cei.org/\"/></ruleset>", "<ruleset name=\"Competitive Enterprise Institute (partial)\" default_off=\"failed ruleset test\" f=\"Competitive_Enterprise_Institute.xml\"><securecookie host=\"^shop\\.cei\\.org$\" name=\".+\"/><rule from=\"^http://shop\\.cei\\.org/\" to=\"https://shop.cei.org/\"/></ruleset>", "<ruleset name=\"Compiz\" default_off=\"Certificate mismatch\" f=\"Compiz.xml\"><rule from=\"^http://(?:www\\.)?compiz(?:-fusion)?\\.org/\" to=\"https://www.compiz.org/\"/><rule from=\"^http://(cgit|forum|gitweb|lists|planet|releases|wiki)\\.compiz(-fusion)?\\.org/\" to=\"https://$1.compiz.org/\"/><securecookie host=\"^\\.forum\\.compiz\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"CompletelyPrivateFiles.com\" default_off=\"failed ruleset test\" f=\"CompletelyPrivateFiles.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Complex-systems.com\" default_off=\"connection refused\" f=\"Complex-systems.com.xml\"><rule from=\"^http://(?:www\\.)?complex-systems\\.com/\" to=\"https://www.complex-systems.com/\"/></ruleset>", "<ruleset name=\"ComplianceSigns.com\" f=\"ComplianceSigns.com.xml\"><securecookie host=\"^\\.compliancesigns\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?compliancesigns\\.com/\" to=\"https://www.compliancesigns.com/\"/></ruleset>", "<ruleset name=\"Compose.IO\" f=\"Compose.IO.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CompraNoExterior.com.br (partial)\" f=\"CompraNoExterior.com.br.xml\"><rule from=\"^http://cdn1?\\.compranoexterior\\.com\\.br/\" to=\"https://d1h9c8t56th1se.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Comprehensive C Archive Network\" platform=\"cacert\" f=\"Comprehensive-C-Archive-Network.xml\"><rule from=\"^http://www\\.ccodearchive\\.net/\" to=\"https://ccodearchive.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compteur.fr\" default_off=\"failed ruleset test\" f=\"Compteur.fr.xml\"><securecookie host=\"^\\.(?:www\\.)?compteur\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?compteur\\.fr/\" to=\"https://www.compteur.fr/\"/></ruleset>", "<ruleset name=\"CompuLab.co.il\" platform=\"mixedcontent\" f=\"CompuLab.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computational Infrastructure for Operations Research (partial)\" default_off=\"failed ruleset test\" f=\"Computational-Infrastructure-for-Operations-Research.xml\"><securecookie host=\"^projects\\.coin-or\\.org$\" name=\".*\"/><rule from=\"^http://projects\\.coin-or\\.org/\" to=\"https://projects.coin-or.org/\"/></ruleset>", "<ruleset name=\"Computec-Academy.de (partial)\" default_off=\"missing certificate chain\" f=\"Computec-Academy.de.xml\"><exclusion pattern=\"^http://www\\.computec-academy\\.de/+(?!sites/)\"/><rule from=\"^http://computec-academy\\.de/\" to=\"https://www.computec-academy.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computer Steroids\" default_off=\"self-signed\" f=\"Computer-Steroids.xml\"><securecookie host=\"^(?:(?:acdd|aolo|bedd|eaak|geak|goob|iglo|jeth|luez|mett|pooi|rade|siit)\\.tk|(?:surfingip|switchip|whyblockme)\\.info)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(acdd|aolo|bedd|eaak|geak|goob|iglo|jeth|luez|mett|pooi|rade|siit)\\.tk/\" to=\"https://$1.tk/\"/><rule from=\"^http://(?:www\\.)?(surfingip|switchip|whyblockme)\\.info/\" to=\"https://$1.info/\"/></ruleset>", "<ruleset name=\"ComputerWorld (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ComputerWorld.xml\"><securecookie host=\"^\\.computerworld\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?computerworld\\.com/\" to=\"https://www.computerworld.com/\"/><rule from=\"^http://events\\.computerworld\\.com/\" to=\"https://eiseverywhere.com/ehome/Computerworld/\"/><rule from=\"^http://itjobs\\.computerworld\\.com/\" to=\"https://computerworld.jobamatic.com/\"/><rule from=\"^http://m\\.computerworld\\.com/mobify/\" to=\"https://computerworld.mobify.com/mobify/\"/></ruleset>", "<ruleset name=\"Computer Fulfillment\" default_off=\"failed ruleset test\" f=\"Computer_Fulfillment.xml\"><rule from=\"^http://(?:www\\.)?computerfulfillment\\.com/\" to=\"https://www.computerfulfillment.com/\"/></ruleset>", "<ruleset name=\"Computer Lab Solutions\" default_off=\"expired\" f=\"Computer_Lab_Solutions.xml\"><securecookie host=\"^computerlabsolutions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?computerlabsolutions\\.com/\" to=\"https://computerlabsolutions.com/\"/></ruleset>", "<ruleset name=\"Computer Libya\" default_off=\"mismatch\" f=\"Computer_Libya.xml\"><securecookie host=\".*\\.computer\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computerbase.de (partial)\" f=\"Computerbase.de.xml\"><rule from=\"^http://www\\.computerbase\\.de/(abo|api/stats|clientscripts|css|design|img|login|push)/\" to=\"https://www.computerbase.de/$1/\"/><exclusion pattern=\"^http://www\\.computerbase\\.de/$\"/><rule from=\"^http://pics\\.computerbase\\.de/\" to=\"https://pics.computerbase.de/\"/></ruleset>", "<ruleset name=\"Computerbasedmath.org\" f=\"Computerbasedmath.org.xml\"><rule from=\"^http://(?:www\\.)?computerbasedmath\\.org/\" to=\"https://computerbasedmath.org/\"/></ruleset>", "<ruleset name=\"ComputersnYou.com (partial)\" f=\"ComputersnYou.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"computeruniverse\" default_off=\"failed ruleset test\" f=\"Computeruniverse.xml\"><securecookie host=\"^www\\.computeruniverse\\.net$\" name=\".+\"/><rule from=\"^http://computeruniverse\\.net/\" to=\"https://www.computeruniverse.net/\"/><rule from=\"^http://(\\w+)\\.computeruniverse\\.net/\" to=\"https://$1.computeruniverse.net/\"/></ruleset>", "<ruleset name=\"Compuware.com (partial)\" default_off=\"expired, mismatched\" f=\"Compuware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compuware APM.com\" f=\"Compuware_APM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compuware Gomez\" default_off=\"failed ruleset test\" f=\"Compuware_Gomez.xml\"><securecookie host=\"^www\\.gomez\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.r\\.axf8\\.net/\" to=\"https://$1.r.axf8.net/\"/><rule from=\"^http://(?:www\\.)?gomez\\.com/\" to=\"https://www.gomez.com/\"/></ruleset>", "<ruleset name=\"Comsecuris.com\" f=\"Comsecuris.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comviq.se\" f=\"Comviq.se.xml\"><rule from=\"^http://comviq\\.se/\" to=\"https://comviq.se/\"/><rule from=\"^http://www\\.comviq\\.se/\" to=\"https://www.comviq.se/\"/></ruleset>", "<ruleset name=\"con-tech.de (partial)\" default_off=\"failed ruleset test\" f=\"Con-tech.de.xml\"><securecookie host=\"^ct-cds\\.con-tech\\.de$\" name=\".+\"/><rule from=\"^http://ct-cds\\.con-tech\\.de/\" to=\"https://ct-cds.con-tech.de/\"/></ruleset>", "<ruleset name=\"ConSecur\" default_off=\"failed ruleset test\" f=\"ConSecur.xml\"><securecookie host=\"^www\\.consecur\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consecur\\.de/\" to=\"https://www.consecur.de/\"/></ruleset>", "<ruleset name=\"concrete5 (partial)\" f=\"Concrete5.xml\"><securecookie host=\"^(?:www\\.)?concrete5\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Concur.com\" f=\"Concur.com.xml\"><securecookie host=\"^(?:\\.?developer\\.)?concur\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets|developer|fusion|www)\\.)?concur\\.com/\" to=\"https://$1concur.com/\"/></ruleset>", "<ruleset name=\"Condé Nast (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Conde-Nast-mismatches.xml\"><securecookie host=\"^designcentersearch\\.com$\" name=\".*\"/><rule from=\"^http://allure\\.com/\" to=\"https://www.allure.com/\"/><rule from=\"^http://www\\.allure\\.com/(cs|image)s/\" to=\"https://www.allure.com/$1s/\"/><rule from=\"^http://blog\\.allure\\.com/\" to=\"https://blog.allure.com/\"/><rule from=\"^http://jobs\\.arstechnica\\.com/\" to=\"https://jobs.arstechnica.com/\"/><rule from=\"^http://thumbnailer\\.thestudio\\.condenast\\.com/\" to=\"https://thumbnailer.thestudio.condenast.com/\"/><rule from=\"^http://(?:www\\.)?designcentersearch\\.com/\" to=\"https://designcentersearch.com/\"/><rule from=\"^http://blog\\.details\\.com/\" to=\"https://blog.details.com/\"/><rule from=\"^http://(?:www\\.)?golfdigestschool\\.com/\" to=\"https://www.golfdigestschool.com/\"/><rule from=\"^http://(?:www\\.)?v(?:anityfair|f)\\.com/\" to=\"https://www.vanityfair.com/\"/><rule from=\"^http://stag\\.vanityfair\\.com/\" to=\"https://stag.vanityfair.com/\"/></ruleset>", "<ruleset name=\"Conde Nast.com (partial)\" f=\"Conde-Nast.xml\"><rule from=\"^http://condenast\\.com/\" to=\"https://www.condenast.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conde Nast.co.uk (partial)\" f=\"Conde_Nast.co.uk.xml\"><rule from=\"^http://cdni\\.condenast\\.co\\.uk/\" to=\"https://s3-eu-west-1.amazonaws.com/img.condenast.co.uk/\"/><rule from=\"^http://cnda\\.condenast\\.co\\.uk/\" to=\"https://dg9g3lm9lsog5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Conde Nast Digital.com (partial)\" f=\"Conde_Nast_Digital.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condé Nast Traveler (problematic)\" default_off=\"mismatched\" f=\"Conde_Nast_Traveler-problematic.xml\"><securecookie host=\"^(?:stag|www)\\.cntraveler\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cntraveler\\.com/\" to=\"https://www.cntraveler.com/\"/><rule from=\"^http://(?:stag-)?result\\.cntraveler\\.com/\" to=\"https://result.cntraveler.com/\"/><rule from=\"^http://stag\\.cntraveler\\.com/\" to=\"https://stag.cntraveler.com/\"/></ruleset>", "<ruleset name=\"Condé Nast Traveler (partial)\" f=\"Conde_Nast_Traveler.xml\"><securecookie host=\"^\\.cntraveler\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://secure\\.cntraveler\\.com/\" to=\"https://secure.cntraveler.com/\"/><rule from=\"^http://stats2\\.cntraveler\\.com/\" to=\"https://condenast.112.2o7.net/\"/></ruleset>", "<ruleset name=\"Conde Nast store.com\" f=\"Conde_Nast_store.com.xml\"><rule from=\"^http://condenaststore\\.com/\" to=\"https://www.condenaststore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condenet.com (partial)\" f=\"Condenet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condesa (partial)\" default_off=\"failed ruleset test\" f=\"Condesa.xml\"><rule from=\"^http://secure\\.prleap\\.com/\" to=\"https://secure.prleap.com/\"/></ruleset>", "<ruleset name=\"Condominiums for Everyone\" default_off=\"failed ruleset test\" f=\"Condominiums_for_Everyone.xml\"><securecookie host=\"^\\.condosforeveryone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?condosforeveryone\\.com/\" to=\"https://www.condosforeveryone.com/\"/></ruleset>", "<ruleset name=\"Condor.com\" f=\"Condor.com.xml\"><securecookie host=\"^(www\\.)?condor\\.com$\" name=\".+\"/><rule from=\"^http://condor\\.com/\" to=\"https://www.condor.com/\"/><rule from=\"^http://condor\\.de/\" to=\"https://www.condor.com/\"/><rule from=\"^http://www\\.condor\\.de/\" to=\"https://www.condor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"conduit-data.com\" f=\"Conduit-data.com.xml\"><securecookie host=\"^\\.conduit-data\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.conduit-data\\.com/\" to=\"https://$1.conduit-data.com/\"/></ruleset>", "<ruleset name=\"Conduit (problematic)\" default_off=\"mismatch\" f=\"Conduit-problematic.xml\"><rule from=\"^http://developers\\.mobile\\.conduit\\.com/\" to=\"https://developers.mobile.conduit.com/\"/></ruleset>", "<ruleset name=\"Conduit (partial)\" default_off=\"failed ruleset test\" f=\"Conduit.xml\"><securecookie host=\"^.*\\.conduit\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|accounts|my|sso|storage|toolbar|www)\\.)?conduit\\.com/\" to=\"https://$1conduit.com/\"/><rule from=\"^http://mobilecp\\.conduit\\.com/(external|[iI]mages)/\" to=\"https://mobilecp.conduit.com/$1/\"/><rule from=\"^http://mobilesupport\\.conduit\\.com/generated/\" to=\"https://supportconduit.zendesk.com/generated/\"/></ruleset>", "<ruleset name=\"Conetix.com.au\" f=\"Conetix.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confederation of Danish Industry (partial)\" f=\"Confederation_of_Danish_Industry.xml\"><exclusion pattern=\"^http://(?:www\\.)?di\\.dk/(?!_layouts/)\"/><securecookie host=\"^itek\\.di\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confex.com\" f=\"Confex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confianza Online.es\" f=\"Confianza_Online.xml\"><securecookie host=\"^\\.?www\\.confianzaonline\\.es$\" name=\".+\"/><rule from=\"^http://confianzaonline\\.es/\" to=\"https://www.confianzaonline.es/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confidence.org.pl (partial)\" default_off=\"mismatched, self-signed\" f=\"Confidence.org.pl.xml\"><securecookie host=\"^2014\\.confidence\\.org\\.pl$\" name=\"^qtrans_cookie_test$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confirmit\" f=\"Confirmit.xml\"><securecookie host=\"^(?:.*\\.)?confirmit\\.com$\" name=\".+\"/><rule from=\"^http://((?:author|(?:cdn\\.)?(?:euro|us)|(?:author|reportal)\\.euro|extranet|reportal\\.us|www|www10)\\.)?confirmit\\.com/\" to=\"https://$1confirmit.com/\"/></ruleset>", "<ruleset name=\"confirmsubscription.com\" f=\"Confirmsubscription.com.xml\"><rule from=\"^http://www\\.confirmsubscription\\.com/\" to=\"https://confirmsubscription.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conformal.com\" f=\"Conformal-Systems.xml\"><securecookie host=\"^(?:.*\\.)?conformal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confused.com (partial)\" f=\"Confused.com.xml\"><securecookie host=\"^secure\\.confused\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?confused\\.com/([\\w-]+/~/|\\w+/contact-us|~/)\" to=\"https://www.confused.com/$1\"/><rule from=\"^http://(content|my|secure)\\.confused\\.com/\" to=\"https://$1.confused.com/\"/></ruleset>", "<ruleset name=\"Confuzzled\" f=\"Confuzzled.xml\"><securecookie host=\"^(?:www|reg|)\\.confuzzled\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?confuzzled\\.org\\.uk/\" to=\"https://www.confuzzled.org.uk/\"/><rule from=\"^http://reg\\.confuzzled\\.org\\.uk/\" to=\"https://reg.confuzzled.org.uk/\"/></ruleset>", "<ruleset name=\"Congress.gov\" f=\"Congress.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"congstar-media.de\" f=\"Congstar-media.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"congstar\" f=\"Congstar.xml\"><securecookie host=\"(?:www\\.)?congstar\\.de$\" name=\"BIGipServer\\w+$\"/><securecookie host=\"^freundewerben\\.congstar\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConnMan\" default_off=\"failed ruleset test\" f=\"ConnMan.xml\"><securecookie host=\"^\\.?connman\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect.gov (false MCB)\" platform=\"mixedcontent\" f=\"Connect.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect.me\" f=\"Connect.me.xml\"><rule from=\"^http://(?:www\\.)?connect\\.me/+\" to=\"https://www.respectnetwork.com/connect-me-2/\"/></ruleset>", "<ruleset name=\"ConnectMyPhone.com\" default_off=\"expired\" f=\"ConnectMyPhone.com.xml\"><rule from=\"^http://(?:www\\.)?connectmyphone\\.com/\" to=\"https://connectmyphone.com/\"/></ruleset>", "<ruleset name=\"ConnectiCon.org\" default_off=\"expired\" f=\"ConnectiCon.org.xml\"><securecookie host=\"^connecticon\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?connecticon\\.org/\" to=\"https://connecticon.org/\"/></ruleset>", "<ruleset name=\"Connexity.com (partial)\" f=\"Connexity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connexity.net\" f=\"Connexity.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:COu|br|refresh|rf|sync)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"connextra.com (partial)\" f=\"Connextra.com.xml\"><securecookie host=\"^workbench\\.connextra\\.com$\" name=\".+\"/><rule from=\"^http://ff\\.connextra\\.com/\" to=\"https://ssl.connextra.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConnochaetOS.org\" f=\"ConnochaetOS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConoHa.jp\" f=\"ConoHa.jp.xml\"><securecookie host=\"^(?:cp|help)\\.conoha\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConsCallHome.com\" f=\"ConsCallHome.com.xml\"><securecookie host=\"^(?:www)?\\.conscallhome\\.com$\" name=\".+\"/><rule from=\"^http://conscallhome\\.com/.*\" to=\"https://www.conscallhome.com/\"/><rule from=\"^http://(secure|www)\\.conscallhome\\.com/\" to=\"https://$1.conscallhome.com/\"/></ruleset>", "<ruleset name=\"Conseil National du Numérique\" default_off=\"failed ruleset test\" f=\"Conseil_National_du_Numerique.xml\"><rule from=\"^http://contribuez\\.cnnumerique\\.fr/\" to=\"https://contribuez.cnnumerique.fr/\"/></ruleset>", "<ruleset name=\"Conservatives.com\" f=\"Conservatives.com.xml\"><securecookie host=\"^(?:www\\.)?conservatives\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consortium Library\" f=\"Consortium_Library.xml\"><securecookie host=\"^(?:www\\.)?consortiumlibrary\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?consortiumlibrary\\.com/\" to=\"https://$1consortiumlibrary.com/\"/></ruleset>", "<ruleset name=\"Constant Contact.com (partial)\" f=\"Constant-Contact.xml\"><exclusion pattern=\"^http://blogs\\.constantcontact\\.com/(?!wp-admin(?:$|[?/])|wp-content/|wp-includes/|wp-login\\.php)\"/><exclusion pattern=\"^http://www\\.constantcontact\\.com/(?!favicon\\.ico|features/signup\\.jsp|login(?:$|\\?)|(?:global-(?:login|nav)|login|signup|styles)\\.jsp|_styles/)\"/><exclusion pattern=\"^http://news\\.constantcontact\\.com/+(?!sites/)\"/><exclusion pattern=\"^http://techblog\\.constantcontact\\.com/+(?!wp-content/|wp-login\\.php)\"/><securecookie host=\"^\\.constantcontact\\.com$\" name=\"^cclp_(?:content|partner|referral)$\"/><securecookie host=\"^(?:about|community|developer|origin\\.ih|login|login-p2|visitor\\.r20|survey|visitor)\\.constantcontact\\.com$\" name=\".+\"/><rule from=\"^http://img\\.f2\\.constantcontact\\.com/\" to=\"https://imgssl.constantcontact.com/\"/><rule from=\"^http://ih\\.constantcontact\\.com/\" to=\"https://origin.ih.constantcontact.com/\"/><rule from=\"^http://news\\.constantcontact\\.com/\" to=\"https://constantcontact.newshq.businesswire.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Construx (partial)\" default_off=\"mismatched\" f=\"Construx.xml\"><rule from=\"^http://(?:www\\.)?construx\\.com/\" to=\"https://construx.com/\"/></ruleset>", "<ruleset name=\"ConsuWijzer.nl\" f=\"ConsuWijzer.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consul.io (partial)\" f=\"Consul.io.xml\"><securecookie host=\"^\\.consul\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consultwebs.com\" f=\"Consultwebs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumentenbond.nl\" f=\"Consumentenbond.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer.gov\" f=\"Consumer.gov.xml\"><rule from=\"^http://(?:www\\.)?consum(e|ido)r\\.gov/\" to=\"https://www.consum$1r.gov/\"/></ruleset>", "<ruleset name=\"ConsumerAffairs.com (partial)\" f=\"ConsumerAffairs.com.xml\"><securecookie host=\"^(?:.*\\.)?consumeraffairs\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Reports (partial)\" f=\"ConsumerReports.xml\"><exclusion pattern=\"^http://(?:web\\.|www\\.)?consumerreports\\.org/+(?!etc/|favicon\\.ico)\"/><securecookie host=\"^ec\\.consumerreports\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consumerreports\\.org/\" to=\"https://www.consumerreports.org/\"/><rule from=\"^http://(ec|web)\\.consumerreports\\.org/\" to=\"https://$1.consumerreports.org/\"/><rule from=\"^http://static[1-4]\\.consumerreportscdn\\.org/\" to=\"https://dffe75s34hxl9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ConsumerSniper.com\" default_off=\"connection refused\" f=\"ConsumerSniper.com.xml\"><securecookie host=\"^www\\.consumersniper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Finance.gov (partial)\" f=\"Consumer_Finance.gov.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Reports.com (false MCB)\" platform=\"mixedcontent\" f=\"Consumer_Reports.com-falsemixed.xml\"><securecookie host=\".*\\.consumerreports\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consumerreports\\.org/\" to=\"https://www.consumerreports.org/\"/><rule from=\"^http://web\\.consumerreports\\.org/\" to=\"https://web.consumerreports.org/\"/></ruleset>", "<ruleset name=\"Consumers Union.org\" f=\"Consumers_Union.org.xml\"><rule from=\"^http://(?:(secure\\.)|www\\.)?consumersunion\\.org/\" to=\"https://$1consumersunion.org/\"/></ruleset>", "<ruleset name=\"Cosumers Win.com\" default_off=\"failed ruleset test\" f=\"Consumers_Win.com.xml\"><securecookie host=\"^(?:www\\.)?consumerswin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ContactUs.com (partial)\" f=\"ContactUs.com.xml\"><rule from=\"^http://(www\\.)?contactus\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1contactus.com/\"/></ruleset>", "<ruleset name=\"Contact At Once.com (partial)\" f=\"Contact_At_Once.com.xml\"><rule from=\"^http://applications\\.contactatonce\\.com/\" to=\"https://applications.contactatonce.com/\"/></ruleset>", "<ruleset name=\"Contact Privacy\" f=\"Contact_Privacy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contactual (partial)\" f=\"Contactual.xml\"><securecookie host=\"^na\\d\\.mycontactual\\.com$\" name=\".+\"/><securecookie host=\"^\\.?mycontactual\\.com$\" name=\"^WPJ_CM$\"/><rule from=\"^http://(na\\d\\.|www\\.)?mycontactual\\.com/\" to=\"https://$1mycontactual.com/\"/></ruleset>", "<ruleset name=\"Content.ad (partial)\" f=\"Content.ad.xml\"><securecookie host=\"^(?:api|www)\\.content\\.ad$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?content\\.ad/\" to=\"https://www.content.ad/\"/><rule from=\"^http://api\\.content\\.ad/\" to=\"https://api.content.ad/\"/></ruleset>", "<ruleset name=\"Content Watch\" f=\"Content_Watch.xml\"><securecookie host=\"^(?:www\\.)?contentwatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contentabc.com\" f=\"Contentabc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contentdn.net\" f=\"Contentdn.net.xml\"><rule from=\"^http://contentdn\\.net/\" to=\"https://contentdn.net/\"/></ruleset>", "<ruleset name=\"Contentful.com (partial)\" f=\"Contentful.com.xml\"><rule from=\"^http://status\\.contentful\\.com/\" to=\"https://contentful.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contextly.com (partial)\" f=\"Contextly.xml\"><exclusion pattern=\"^http://(?:www\\.)?contextly\\.com/+blog\"/><securecookie host=\"^dev\\.contextly\\.com$\" name=\".+\"/><rule from=\"^http://(?:((?:app|dev|rest)\\.)|www\\.)?contextly\\.com/\" to=\"https://$1contextly.com/\"/><rule from=\"^http://contextlysitescripts\\.contextly\\.com/\" to=\"https://c714015.ssl.cf2.rackcdn.com/\"/><rule from=\"^https://contextly\\.com/blog\" to=\"http://contextly.com/blog\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"contextweb.com (partial)\" f=\"Contextweb.com.xml\"><exclusion pattern=\"http://blog\\.contextweb\\.com/(?!sellingdesk$)\"/><securecookie host=\"^\\.contextweb\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.contextweb\\.com/sellingdesk$\" to=\"https://getsatisfaction.com/contextweb\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contiki\" default_off=\"mismatched\" f=\"Contiki.xml\"><rule from=\"^http://(?:www\\.)?contiki-os\\.org/\" to=\"https://contiki-os.org/\"/></ruleset>", "<ruleset name=\"Continent 8 Technologies (partial)\" f=\"Continent-8-Technologies.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Continental\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Continental.xml\"><rule from=\"^http://(?:www\\.)?continental\\.com/\" to=\"https://www.continental.com/\"/><rule from=\"^http://www\\.covacations\\.com/\" to=\"https://www.covacations.com/\"/><rule from=\"^http://covacations\\.com/\" to=\"https://www.covacations.com/\"/><rule from=\"^http://checkin\\.continental\\.com/\" to=\"https://checkin.continental.com/\"/></ruleset>", "<ruleset name=\"Contributoria.com\" f=\"Contributoria.com.xml\"><securecookie host=\"^\\.contributoria\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControlScan.com\" default_off=\"failed ruleset test\" f=\"ControlScan.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?controlscan\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?controlscan\\.com/\" to=\"https://controlscan.com/\"/><rule from=\"^http://(payments|portal|smartscan)\\.controlscan\\.com/\" to=\"https://$1.controlscan.com/\"/></ruleset>", "<ruleset name=\"ControllerMAX.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ControllerMAX.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?controllermax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControllerMAX.com (partial)\" default_off=\"failed ruleset test\" f=\"ControllerMAX.com.xml\"><securecookie host=\"^(?:www\\.)?controllermax\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http://(www\\.)?controllermax\\.com/(?!forums(?!/clientscript/|/css\\.php|/customavatars/|/favicon\\.ico|/images/))\" to=\"https://$1controllermax.com/\"/></ruleset>", "<ruleset name=\"Controller Plus\" f=\"Controller_Plus.xml\"><securecookie host=\"^\\.(?:www\\.)?pluscontrollers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CONVAR (partial)\" platform=\"mixedcontent\" f=\"Convar.xml\"><exclusion pattern=\"^http://(?:jas|repairservice|sam)\\.convar\\.com/\"/><securecookie host=\"^(?:.*\\.)?(?:convar|tuvdotcom)\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?datenretter\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?convar\\.de/([\\w\\W]+)\" to=\"https://$1convar.com/$2?language=2\"/><rule from=\"^http://(shop\\.|www\\.)?convar\\.com/\" to=\"https://$1convar.com/\"/><rule from=\"^http://(www\\.)?datenretter\\.de/\" to=\"https://$1datenretter.de/\"/><rule from=\"^http://(?:www\\.)?tuv\\.com/media/\" to=\"https://www.tuv.com/media/\"/><rule from=\"^http://(?:www\\.)?tuvdotcom\\.com/\" to=\"https://www.tuvdotcom.com/\"/></ruleset>", "<ruleset name=\"Conversejs.org\" f=\"Conversejs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conversions Box.com\" default_off=\"expired, self-signed\" f=\"Conversions_Box.com.xml\"><rule from=\"^http://(?:www\\.)?conversionsbox\\.com/\" to=\"https://www.conversionsbox.com/\"/></ruleset>", "<ruleset name=\"ConverKit.com (partial)\" f=\"Convertkit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Convio (mismatches)\" default_off=\"mismatched\" f=\"Convio-mismatches.xml\"><exclusion pattern=\"^http://ir\\.convio\\.com/(?!common/)\"/><exclusion pattern=\"^http://resources\\.convio\\.com/(?!css/|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Convio\" f=\"Convio.xml\"><exclusion pattern=\"^http://customer\\.convio\\.net/(?!$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://customer\\.convio\\.net/\" to=\"https://secure2.convio.net/customer/site/SPageServer\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conviva (partial)\" f=\"Conviva.xml\"><rule from=\"^http://livepass(?:dl)?\\.conviva\\.com/\" to=\"https://livepass.conviva.com/\"/><rule from=\"^http://pulse\\.conviva\\.com/\" to=\"https://pulse.conviva.com/\"/></ruleset>", "<ruleset name=\"Convox.com\" f=\"Convox.com.xml\"><securecookie host=\"^docs\\.convox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coochey.net (false MCB)\" platform=\"mixedcontent\" f=\"Coochey.net-falsemixed.xml\"><rule from=\"^http://www\\.coochey\\.net/\" to=\"https://www.coochey.net/\"/></ruleset>", "<ruleset name=\"Coochey.net (partial)\" f=\"Coochey.net.xml\"><rule from=\"^http://www\\.coochey\\.net/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.coochey.net/\"/></ruleset>", "<ruleset name=\"Cookie Reports.com (partial)\" f=\"Cookie_Reports.com.xml\"><rule from=\"^http://policy\\.cookiereports\\.com/\" to=\"https://policy.cookiereports.com/\"/></ruleset>", "<ruleset name=\"Cooking Schools.com (partial)\" f=\"Cooking_Schools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolCart.Net\" f=\"CoolCart.Net.xml\"><securecookie host=\"^www\\.coolcart\\.net$\" name=\"^ASP\\.NET_SessionId$\"/><rule from=\"^(?:http://(?:www\\.)?|https://)coolcart\\.net/\" to=\"https://www.coolcart.net/\"/></ruleset>", "<ruleset name=\"CoolMiniOrNot.com\" f=\"CoolMiniOrNot.com.xml\"><securecookie host=\"^(?:www)?\\.coolminiornot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolUtils.com (false MCB)\" platform=\"mixedcontent\" f=\"CoolUtils.com.xml\"><securecookie host=\"^\\.coolutils\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolWebScripts.com\" f=\"CoolWebScripts.com.xml\"><securecookie host=\"^(?:www\\.)?coolwebscripts\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cool Destinations.net\" f=\"Cool_Destinations.net.xml\"><securecookie host=\"^(?:analytics|www)\\.cooldestinations\\.net$\" name=\".+\"/><rule from=\"^http://cooldestinations\\.net/\" to=\"https://www.cooldestinations.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cool Key West\" default_off=\"failed ruleset test\" f=\"Cool_Key_West.xml\"><securecookie host=\"^coolkeywest\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coolkeywest\\.com/\" to=\"https://coolkeywest.com/\"/></ruleset>", "<ruleset name=\"Cooliris\" f=\"Cooliris.xml\"><rule from=\"^http://(?:www\\.)?cooliris\\.com/\" to=\"https://www.cooliris.com/\"/><rule from=\"^http://apps\\.cooliris\\.com/\" to=\"https://apps.cooliris.com/\"/></ruleset>", "<ruleset name=\"Coop\" platform=\"mixedcontent\" f=\"Coop.ch-falsemixed.xml\"><rule from=\"^http://jamadu\\.ch/\" to=\"https://www.jamadu.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop\" f=\"Coop.ch.xml\"><rule from=\"^http://onlinebanking\\.bankcoop\\.ch/\" to=\"https://onlinebanking.bankcoop.ch/\"/><rule from=\"^http://(?:www\\.)?supercard\\.ch/\" to=\"https://www.supercard.ch/\"/><rule from=\"^http://(?:www\\.)?coopzeitung\\.ch/\" to=\"https://www.coopzeitung.ch/\"/><rule from=\"^http://(?:www\\.)?cooperazione\\.ch/\" to=\"https://www.cooperazione.ch/\"/><rule from=\"^http://(?:www\\.)?coopathome\\.ch/\" to=\"https://www.coopathome.ch/\"/><rule from=\"^http://(?:www\\.)?interdiscount\\.ch/\" to=\"https://www.interdiscount.ch/\"/><rule from=\"^http://(?:www\\.)?microspot\\.ch/\" to=\"https://www.microspot.ch/\"/><rule from=\"^http://(?:www\\.)?toptip\\.ch/\" to=\"https://www.toptip.ch/\"/><rule from=\"^http://(?:www\\.)?lumimart\\.ch/\" to=\"https://www.lumimart.ch/\"/><rule from=\"^http://(?:www\\.)?impo\\.ch/\" to=\"https://www.impo.ch/\"/><rule from=\"^http://(?:www\\.)?christ-swiss\\.ch/\" to=\"https://www.christ-swiss.ch/\"/><rule from=\"^http://(?:www\\.)?fust\\.ch/\" to=\"https://www.fust.ch/\"/><rule from=\"^http://([\\w-]+)\\.fust\\.ch/\" to=\"https://$1.fust.ch/\"/><rule from=\"^http://(?:www\\.)?thebodyshop\\.ch/\" to=\"https://www.thebodyshop.ch/\"/><rule from=\"^http://(?:www\\.)?the-body-shop\\.ch/\" to=\"https://www.thebodyshop.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop.no\" f=\"Coop.no.xml\"><rule from=\"^http://(?:www\\.)?coop\\.no/\" to=\"https://coop.no/\"/><rule from=\"^http://(?:www\\.)?coophotellkupp\\.com/\" to=\"https://www.coophotellkupp.com/\"/></ruleset>", "<ruleset name=\"Cooperating-Objects.eu\" f=\"Cooperating-Objects.eu.xml\"><securecookie host=\"^www\\.cooperating-objects\\.eu$\" name=\".+\"/><rule from=\"^http://www\\.cooperating-objects\\.eu/\" to=\"https://www.cooperating-objects.eu/\"/></ruleset>", "<ruleset name=\"Cope-IT\" f=\"Cope-IT.xml\"><securecookie host=\"^www\\.cope-it\\.at$\" name=\".+\"/><rule from=\"^http://www\\.cope-it\\.at/\" to=\"https://www.cope-it.at/\"/></ruleset>", "<ruleset name=\"Copernic.com (partial)\" f=\"Copernic.com.xml\"><securecookie host=\"^(?:go|www)\\.copernic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?copernic\\.com/\" to=\"https://www.copernic.com/\"/><rule from=\"^http://go\\.copernic\\.com/\" to=\"https://go.copernic.com/\"/><rule from=\"^http://images\\.copernic\\.com/\" to=\"https://www.copernic.com/images/\"/><rule from=\"^http://mail\\.copernic\\.com/\" to=\"https://webmail.harriscomputer.com/\"/></ruleset>", "<ruleset name=\"Copernico.net\" f=\"Copernico.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copia.Is\" f=\"Copia.Is.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.copia\\.is/\" to=\"https://copia.is/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copiny (partial)\" f=\"Copiny.xml\"><securecookie host=\"^\\.copiny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copperhead.co\" f=\"Copperhead.co.xml\"><securecookie host=\"^\\.copperhead\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copy.com (partial)\" f=\"Copy.com.xml\"><securecookie host=\"^(?:next|www)?\\.copy\\.com$\" name=\".+\"/><rule from=\"^http://((?:apiweb|next|www)\\.)?copy\\.com/\" to=\"https://$1copy.com/\"/><rule from=\"^http://support\\.copy\\.com/\" to=\"https://copy.zendesk.com/\"/></ruleset>", "<ruleset name=\"copyleft.org\" f=\"Copyleft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copyright-Watch.org\" f=\"Copyright-Watch.org.xml\"><securecookie host=\"^\\.copyright-watch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copyright Clearance Center\" f=\"Copyright_Clearance_Center.xml\"><securecookie host=\"^.+\\.copyright\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corban Works.com\" f=\"Corban_Works.com.xml\"><securecookie host=\"^\\.corbanworks\\.com$\" name=\".+\"/><rule from=\"^http://corbanworks\\.com/\" to=\"https://www.corbanworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corbett Report.com\" f=\"Corbett_Report.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corbin Fisher\" f=\"Corbin_Fisher.xml\"><securecookie host=\"^www\\.corbinfisher\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?corbinfisher\\.com/\" to=\"https://www.corbinfisher.com/\"/></ruleset>", "<ruleset name=\"CoreCode\" default_off=\"mismatch\" f=\"CoreCode.xml\"><rule from=\"^http://(?:www\\.)?corecode\\.at/\" to=\"https://corecode.at/\"/><rule from=\"^http://corebreach\\.corecode\\.at/\" to=\"https://corebreach.corecode.at/\"/></ruleset>", "<ruleset name=\"CoreCommerce\" f=\"CoreCommerce.xml\"><securecookie host=\"^(?:www\\.)?corecommerce\\.com$\" name=\".+\"/><rule from=\"^http://(www(?:1[56])?\\.)?corecommerce\\.com/\" to=\"https://$1corecommerce.com/\"/></ruleset>", "<ruleset name=\"CoreMetrics (partial)\" f=\"CoreMetrics.xml\"><securecookie host=\"^testdata\\.coremetrics\\.com$\" name=\".+\"/><securecookie host=\"^\\.surfaid\\.ihost\\.com$\" name=\".+\"/><rule from=\"^http://data\\.cmcore\\.com/\" to=\"https://data.cmcore.com/\"/><rule from=\"^http://www\\.coremetrics\\.com/\" to=\"https://www.ibm.com/software/marketing-solutions/coremetrics/www.redirects/\"/><rule from=\"^http://(data|libs|testdata)\\.coremetrics\\.com/\" to=\"https://$1.coremetrics.com/\"/><rule from=\"^http://stats\\.surfaid\\.ihost\\.com/\" to=\"https://stats.surfaid.ihost.com/\"/></ruleset>", "<ruleset name=\"CoreMotives.com\" f=\"CoreMotives.com.xml\"><rule from=\"^http://(?:www\\.)?coremotives\\.com/$\" to=\"https://www.silverpop.com/marketing-products/coremotives/\"/><rule from=\"^http://databroker\\.coremotives\\.com/\" to=\"https://databroker.coremotives.com/\"/></ruleset>", "<ruleset name=\"CoreOS.com\" f=\"CoreOS.com.xml\"><securecookie host=\"^\\.coreos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoreSite.com (partial)\" f=\"CoreSite.com.xml\"><securecookie host=\"^mycoresite\\.coresite\\.com$\" name=\".+\"/><rule from=\"^http://mycoresite\\.coresite\\.com/\" to=\"https://mycoresite.coresite.com/\"/></ruleset>", "<ruleset name=\"Core Infrastructure.org\" f=\"Core_Infrastructure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Core Security.com (partial)\" f=\"Core_Security.com.xml\"><exclusion pattern=\"^http://ws\\.coresecurity\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^cs\\.coresecurity\\.com$\" name=\".+\"/><rule from=\"^http://ws\\.coresecurity\\.com/\" to=\"https://na-d.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coreboot.org (partial)\" f=\"Coreboot.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://coreboot\\.org/\" to=\"https://www.coreboot.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coredump.gr\" f=\"Coredump.gr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coreix (partial)\" f=\"Coreix.xml\"><securecookie host=\"^(?:manage\\.|www\\.)?coreix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corelio.be\" default_off=\"expired, mismatched, self-signed\" f=\"Corelio.be.xml\"><securecookie host=\"^(?:www\\.)?corelio\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corey Abramson.com\" f=\"Corey_Abramson.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cork University Press.com\" f=\"Cork_University_Press.com.xml\"><securecookie host=\"^(?:www\\.)?corkuniversitypress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corlan Team\" f=\"Corlan-Team.xml\"><securecookie host=\"^(?:w*\\.)?corelan\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornell.edu (partial)\" f=\"Cornell.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://css\\.cals\\.cornell\\.edu/\" to=\"https://scs.cals.cornell.edu/\"/><rule from=\"^http://(ciifad|cuaes)\\.cornell\\.edu/\" to=\"https://$1.cals.cornell.edu/\"/><rule from=\"^http://(dfa|news)\\.cornell\\.edu/\" to=\"https://www.$1.cornell.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornify\" default_off=\"mismatch\" f=\"Cornify.xml\"><rule from=\"^http://(?:www\\.)?cornify\\.com/\" to=\"https://www.cornify.com/\"/></ruleset>", "<ruleset name=\"Corning Credit Union\" platform=\"mixedcontent\" f=\"CorningCreditUnion.xml\"><rule from=\"^http://(?:www\\.)?corningcu\\.org/\" to=\"https://corningcu.org/\"/></ruleset>", "<ruleset name=\"corpimages.de\" f=\"Corpimages.de.xml\"><rule from=\"^http://(?:www\\.)?corpimages\\.de/\" to=\"https://corpimages.de/\"/></ruleset>", "<ruleset name=\"corporate-ir.net (partial)\" f=\"Corporate-ir.net.xml\"><exclusion pattern=\"^http://(?:(?:phoenix|phx|www)\\.)?corporate-ir\\.net/(?!External\\.File\\?|HttpCombiner\\.ashx|media_files/|WebSideStory/|client/\\d+/\\d+/css/)\"/><securecookie host=\"^origin-phoenix\\.corporate-ir\\.net$\" name=\".+\"/><rule from=\"^http://phx\\.corporate-ir\\.net/HttpCombiner\\.ashx\" to=\"https://origin-phoenix.corporate-ir.net/HttpCombiner.ashx\"/><rule from=\"^http://origin-(phoenix|www)\\.corporate-ir\\.net/\" to=\"https://origin-$1.corporate-ir.net/\"/></ruleset>", "<ruleset name=\"Corporate Card Application.com\" default_off=\"failed ruleset test\" f=\"Corporate_Card_Application.com.xml\"><rule from=\"^http://(?:www\\.)?corporatecardapplication\\.com/\" to=\"https://www.corporatecardapplication.com/\"/></ruleset>", "<ruleset name=\"Corporate Color\" f=\"Corporate_Color.xml\"><rule from=\"^http://saimd\\.com/\" to=\"https://www.saimd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corporation Service Company\" f=\"Corporation_Service_Company.xml\"><securecookie host=\"^(?:.*\\.)?cscglobal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?corporatedomains\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.cscglobal.com/global/web/csc/corporate-identity-protection.html$1\"/><rule from=\"^http://(my\\.|www\\.)?cscglobal\\.com/\" to=\"https://$1cscglobal.com/\"/><rule from=\"^http://(?:www\\.)?cscprotectsbrands\\.com/.*\" to=\"https://www.cscglobal.com/global/web/csc/domains-and-trademarks.html\"/></ruleset>", "<ruleset name=\"Correctiv-Upload.org\" f=\"Correctiv-Upload.org.xml\"><securecookie host=\"^correctiv-upload\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Correctiv.org\" f=\"Correctiv.org.xml\"><securecookie host=\"^\\.?correctiv\\.org$\" name=\".+\"/><rule from=\"^http://www\\.crowdfunding\\.correctiv\\.org/+\" to=\"https://correctiv.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corrent.org\" f=\"Corrent.org.xml\"><securecookie host=\"^\\.corrent\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corsair.com (partial)\" f=\"Corsair.com.xml\"><securecookie host=\"^shop\\.corsair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corvisa.com\" f=\"Corvisa.com.xml\"><securecookie host=\"^(?:(?:auth|developers|developers|www)\\.)?corvisa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cosmo.org\" f=\"Cosmo.org.xml\"><securecookie host=\"^www\\.cosmo\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cosmo\\.org/\" to=\"https://www.cosmo.org/\"/></ruleset>", "<ruleset name=\"Cosmopolitan.com (partial)\" default_off=\"mismatch\" f=\"Cosmopolitan.xml\"><securecookie host=\"^www\\.cosmopolitan\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cosmote\" f=\"Cosmote.xml\"><securecookie host=\"^www\\.cosmote\\.gr$\" name=\".*\"/><rule from=\"^http://www\\.cosmote\\.gr/\" to=\"https://www.cosmote.gr/\"/></ruleset>", "<ruleset name=\"Cossack Labs.com\" f=\"Cossack_Labs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Costco-static.com\" f=\"Costco-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Costco.com (partial)\" f=\"Costco.xml\"><securecookie host=\"^(?:.*\\.)?costco\\.com$\" name=\".*\"/><rule from=\"^http://costco\\.com/\" to=\"https://www.costco.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cotera (partial)\" f=\"Cotera.xml\"><rule from=\"^http://(www\\.)?cortera\\.com/(css|img|video|wordpress)/\" to=\"https://$1cortera.com/$2/\"/><rule from=\"^http://blog\\.cortera\\.com/\" to=\"https://blog.cortera.com/\"/><rule from=\"^http://dev-blog\\.cortera\\.com/wordpress/\" to=\"https://blog.cortera.com/wordpress/\"/><rule from=\"^http://start\\.cortera\\.com/(go(?:$|/)|images/)\" to=\"https://start.cortera.com/$1\"/></ruleset>", "<ruleset name=\"Cotse.net\" f=\"Cotse.xml\"><rule from=\"^http://(?:www\\.)?cotse\\.net/\" to=\"https://www.cotse.net/\"/></ruleset>", "<ruleset name=\"Coub.com (partial)\" f=\"Coub.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://assets1-new\\.akamai\\.coub\\.com/\" to=\"https://coubsecureassets-a.akamaihd.net/\"/><rule from=\"^http://www\\.coub\\.com/\" to=\"https://coub.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CouchPota.to\" f=\"CouchPota.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Couchbase (partial)\" default_off=\"failed ruleset test\" f=\"Couchbase.xml\"><rule from=\"^http://(www\\.)?couchbase\\.com/couchbase-server(?:/?(?:\\?.*)?$|/overview)\" to=\"https://$1couchbase.com/couchbase-server/overview\"/><rule from=\"^http://(?:www\\.)?couchbase\\.com/develop/?(?:\\?.*)?$\" to=\"https://www.couchbase.com/communities/all-client-libraries\"/><rule from=\"^http://(www\\.)?couchbase\\.com/(?=$|\\?|(?:buzz|case-studies/\\w+|communities|company|contact|couchbase-(?:open-source-project|server-java-training|server/use-cases|support)|customers|docs|forums/user|learn|presentations|why-nosql/nosql-database)(?:$|\\?|/)|(?:forums/)?(?:misc|sites)/)\" to=\"https://$1couchbase.com/\"/><rule from=\"^http://info\\.couchbase\\.com/(?=(?:cs|image|j|r)s/)\" to=\"https://na-a.marketo.com/\"/><rule from=\"^http://packages\\.couchbase\\.com/\" to=\"https://s3.amazonaws.com/packages.couchbase.com/\"/></ruleset>", "<ruleset name=\"Couchsurfing\" f=\"Couchsurfing.xml\"><rule from=\"^http://www\\.couchsurfing\\.org/login\\.html$\" to=\"https://www.couchsurfing.org/login.html\"/></ruleset>", "<ruleset name=\"Council of Europe (partial)\" f=\"Council_of_Europe.xml\"><securecookie host=\"^(?:hub|piwik|www)\\.coe\\.int$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coe\\.int/\" to=\"https://www.coe.int/\"/><rule from=\"^http://(hub|piwik)\\.coe\\.int/\" to=\"https://$1.coe.int/\"/></ruleset>", "<ruleset name=\"Council on Foreign Relations (partial)\" f=\"Council_on_Foreign_Relations.xml\"><exclusion pattern=\"^http://(?:www\\.)?cfr\\.org/(?!content/.+\\.(?:gif|jpg|png)$|css/|i/|login\\.html)\"/><rule from=\"^http://(?:www\\.)?cfr\\.org/login\\.html\" to=\"https://secure.cfr.org/login.html\"/><rule from=\"^http://(?:i\\.|www\\.)?cfr\\.org/\" to=\"https://d1lidwm7vls1dg.cloudfront.net/\"/><rule from=\"^http://(blogs|secure\\.www)\\.cfr\\.org/\" to=\"https://$1.cfr.org/\"/></ruleset>", "<ruleset name=\"Council of Australian Governments\" f=\"CouncilofAustralianGovernments.xml\"><rule from=\"^http://(?:www\\.)?coag\\.gov\\.au/\" to=\"https://www.coag.gov.au/\"/></ruleset>", "<ruleset name=\"Count Bayesie.com\" f=\"Count_Bayesie.com.xml\"><securecookie host=\"^(?:www)?\\.countbayesie\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CounterMail.com\" f=\"CounterMail.com.xml\"><securecookie host=\"^support\\.countermail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CounterPunch.org (partial)\" f=\"CounterPunch.org.xml\"><exclusion pattern=\"^http://store\\.counterpunch\\.org/(?!(?:cart|my-account)(?:$|[?/])|favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http://store\\.counterpunch\\.org/\" to=\"https://store.counterpunch.org/\"/></ruleset>", "<ruleset name=\"CounterpartyChain.io\" f=\"CounterpartyChain.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Counterwallet.io\" f=\"Counterwallet.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Countquest.se\" f=\"Countquest.se.xml\"><rule from=\"^http://sdc\\.countquest\\.se/\" to=\"https://sdc.countquest.se/\"/></ruleset>", "<ruleset name=\"The County Star (partial)\" f=\"County_Star.xml\"><rule from=\"^http://(?:www\\.)?county-star\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.county-star.com/$1\"/></ruleset>", "<ruleset name=\"CouponCabin.com\" default_off=\"needs clearnet testing\" f=\"CouponCabin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coupons, Inc (partial)\" f=\"Coupons-Inc.xml\"><rule from=\"^http://coupouns\\.com/\" to=\"https://www.coupouns.com/\"/><rule from=\"^http://www\\.coupons\\.com/couponweb/\" to=\"https://www.coupons.com/couponweb/\"/><rule from=\"^http://(access|brandcaster|downloads1|insight)\\.coupons\\.com/\" to=\"https://$1.coupons.com/\"/><rule from=\"^http://cdn\\.cpnscdn\\.com/\" to=\"https://cdn.cpnscdn.com/\"/></ruleset>", "<ruleset name=\"Courage Campaign\" default_off=\"self-signed\" f=\"CourageCampaign.xml\"><securecookie host=\"^(?:main|www)\\.couragecampaign\\.org\" name=\".+\"/><rule from=\"^http://(?:main\\.|www\\.)?couragecampaign\\.org/\" to=\"https://www.couragecampaign.org/\"/><rule from=\"^http://act\\.couragecampaign\\.org/\" to=\"https://couragecampaign.actionkit.com/\"/></ruleset>", "<ruleset name=\"Courage Found.org\" f=\"Courage_Found.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courier Post Online.com (partial)\" f=\"Courier-Post.xml\"><exclusion pattern=\"http://localsearch\\.courierpostonline\\.com/+(?!images/|sf_frameworks/)\"/><rule from=\"^http://localsearch\\.courierpostonline\\.com/\" to=\"https://chill.planetdiscover.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cours Crypto.org\" f=\"Cours_Crypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseFinder.io\" f=\"CourseFinder.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseTalk.com (partial)\" f=\"CourseTalk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coursera.org\" f=\"Coursera.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourtListener.com\" default_off=\"failed ruleset test\" f=\"CourtListener.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courthouse News Service\" platform=\"mixedcontent\" f=\"Courthouse-News-Service.xml\"><securecookie host=\"^(?:www\\.)?courthousenews\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courts of NZ.govt.nz\" f=\"Courts_of_New_Zealand.xml\"><rule from=\"^http://courtsofnz\\.govt\\.nz/\" to=\"https://www.courtsofnz.govt.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cov.com\" f=\"Cov.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cov\\.com/\" to=\"https://www.cov.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covad.com (problematic)\" default_off=\"expired, self-signed\" f=\"Covad.com-problematic.xml\"><rule from=\"^http://covad\\.com/\" to=\"https://www.covad.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covad.com (partial)\" f=\"Covad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covad.net\" f=\"Covad.net.xml\"><rule from=\"^http://(?:www\\.)?covad\\.net/[^?]*\" to=\"https://my.megapath.com/\"/></ruleset>", "<ruleset name=\"CoverStand.com\" f=\"CoverStand.com.xml\"><securecookie host=\"^(?:www\\.)?coverstand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cover Art Archive.org\" f=\"Cover_Art_Archive.org.xml\"><rule from=\"^http://www\\.coverartarchive\\.org/\" to=\"https://coverartarchive.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foundation for Health Coverage Education\" f=\"Coverage-for-All.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coveralls.io (partial)\" f=\"Coveralls.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?coveralls\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covered California (partial)\" default_off=\"failed ruleset test\" f=\"Covered-California.xml\"><securecookie host=\"^www\\.coveredca\\.com$\" name=\".+\"/><securecookie host=\"^www\\.coveredcacertifiedpartners\\.com$\" name=\".+\"/><securecookie host=\"^v\\.calheers\\.ca\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coveredca\\.com/\" to=\"https://www.coveredca.com/\"/><rule from=\"^http://(?:www\\.)?coveredcacertifiedpartners\\.com/\" to=\"https://www.coveredcacertifiedpartners.com/\"/><rule from=\"^http://v\\.calheers\\.ca\\.gov/\" to=\"https://v.calheers.ca.gov/\"/><rule from=\"^http://(?:www\\.)?coveredca\\.org/\" to=\"https://www.coveredca.com/\"/></ruleset>", "<ruleset name=\"Coverfire.com\" f=\"Coverfire.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coverforyou.com\" f=\"Coverforyou.com.xml\"><rule from=\"^http://coverforyou\\.com/\" to=\"https://www.coverforyou.com/\"/><rule from=\"^http://([^/:@]+)?\\.coverforyou\\.com/\" to=\"https://$1.coverforyou.com/\"/></ruleset>", "<ruleset name=\"Coverity.com (partial)\" f=\"Coverity.com.xml\"><exclusion pattern=\"^http://(?:go|softwareintegrity)\\.coverity\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://coverity\\.com/\" to=\"https://www.coverity.com/\"/><rule from=\"^http://autodiscover\\.coverity\\.com/+([^?]+).*\" to=\"https://outlook.office365.com/$1\"/><rule from=\"^http://autodiscover\\.coverity\\.com/.*\" to=\"https://outlook.office365.com/owa/\"/><rule from=\"^http://(?:go|softwareintegrity)\\.coverity\\.com/\" to=\"https://na-sjf.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoveritLive.com (partial)\" f=\"CovertiLive.com.xml\"><exclusion pattern=\"^http://www\\.coveritlive\\.com/+(?!favicon\\.ico|images/|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covisint\" default_off=\"failed ruleset test\" f=\"Covisint.xml\"><securecookie host=\"^(?:.*\\.)?covisint\\.com$\" name=\".*\"/><rule from=\"^http://(portal\\.|www\\.)?covisint\\.com/\" to=\"https://$1covisint.com/\"/><rule from=\"^http://support\\.covisint\\.com/\" to=\"https://portal.covisint.com/web/support/\"/></ruleset>", "<ruleset name=\"Cox Digital Solutions (problematic)\" default_off=\"self-signed\" f=\"Cox-Digital-Solutions-problematic.xml\"><rule from=\"^http://stat\\.coxds\\.com/\" to=\"https://stat.coxds.com/\"/></ruleset>", "<ruleset name=\"Cox Digital Solutions (partial)\" default_off=\"failed ruleset test\" f=\"Cox-Digital-Solutions.xml\"><securecookie host=\"^.+\\.coxds\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?coxdigitalsolutions\\.com/wp-content/\" to=\"https://$1coxdigitalsolutions.com/wp-content/\"/><rule from=\"^http://(?:www\\.)?coxds\\.com/\" to=\"https://www.coxdigitalsolutions.com/\"/><rule from=\"^http://(go|images)\\.coxds\\.com/\" to=\"https://$1.coxds.com/\"/></ruleset>", "<ruleset name=\"Cox Communications (partial)\" default_off=\"failed ruleset test\" f=\"Cox_Communications.xml\"><exclusion pattern=\"^http://(?:intercept|ww2)\\.cox\\.com/.+\\.cox(?:$|\\?)\"/><securecookie host=\"^\\.?store\\.cox\\.com$\" name=\".+\"/><securecookie host=\"^\\.cox\\.net$\" name=\".+\"/><securecookie host=\"^.*\\.coxbusiness\\.com$\" name=\".+\"/><rule from=\"^http://(?:ww[2w]\\.)?cox\\.com/\" to=\"https://ww2.cox.com/\"/><rule from=\"^http://(framework|images|intercept|store)\\.cox\\.com/\" to=\"https://$1.cox.com/\"/><rule from=\"^http://(idm\\.east|framework)\\.cox\\.net/\" to=\"https://$1.cox.net/\"/><rule from=\"^http://(?:www\\.)?coxbusiness\\.com/\" to=\"https://ww2.cox.com/business\"/><rule from=\"^http://(framework|myaccount)\\.coxbusiness\\.com/\" to=\"https://$1.coxbusiness.com/\"/></ruleset>", "<ruleset name=\"coxnewsweb.net\" default_off=\"failed ruleset test\" f=\"Coxnewsweb.com.xml\"><rule from=\"^http://img\\.coxnewsweb\\.com/\" to=\"https://img.coxnewsweb.com/\"/><rule from=\"^http://alt\\.coxnewsweb\\.com/\" to=\"https://alt.coxnewsweb.com/\"/></ruleset>", "<ruleset name=\"Coy.IM\" f=\"Coy.IM.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CozumPark.com (partial)\" f=\"CozumPark.com.xml\"><securecookie host=\"^www\\.cozumpark\\.com$\" name=\".+\"/><rule from=\"^http://cozumpark\\.com/\" to=\"https://www.cozumpark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cp.fonality.com\" f=\"Cp.fonality.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cp.pt\" f=\"Cp.pt.xml\"><rule from=\"^http://cp\\.pt/\" to=\"https://www.cp.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpaptalk.com (partial)\" f=\"Cpaptalk.com.xml\"><rule from=\"^http://(www\\.)?cpaptalk\\.com/(?=cdn-cgi/|images/|mobiquo/|styles/)\" to=\"https://$1cpaptalk.com/\"/></ruleset>", "<ruleset name=\"cpunk.de (partial)\" platform=\"cacert\" f=\"Cpunk.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cpunks.org\" f=\"Cpunks.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cr.yp.to (partial)\" f=\"Cr.yp.to.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cr0.org (partial)\" f=\"Cr0.org.xml\"><rule from=\"^http://www-pw\\.cr0\\.org/\" to=\"https://www.cr0.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrackStation.net\" f=\"CrackStation.net.xml\"><rule from=\"^http://(?:www\\.)?crackstation\\.net/\" to=\"https://crackstation.net/\"/></ruleset>", "<ruleset name=\"crackedconsole.com\" f=\"Crackedconsole.com.xml\"><securecookie host=\"^\\.crackedconsole\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CraftBanter\" f=\"CraftBanter.xml\"><securecookie host=\"^\\.?craftbanter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?craftbanter\\.com/\" to=\"https://craftbanter.com/\"/></ruleset>", "<ruleset name=\"CraftStats.com\" default_off=\"failed ruleset test\" f=\"CraftStats.com.xml\"><securecookie host=\"^(?:www)?\\.craftstats\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?craftstats\\.com/\" to=\"https://www.craftstats.com/\"/></ruleset>", "<ruleset name=\"Craft Coffee.com (partial)\" f=\"Craft_Coffee.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crafty Syntax.com\" default_off=\"expired\" f=\"Crafty_Syntax.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craigslist.org (partial)\" f=\"Craigslist.org.xml\"><exclusion pattern=\"^http://blog\\.craigslist\\.org/\"/><exclusion pattern=\"^http://www\\.craigslist\\.org/$\"/><rule from=\"^http://craigslist\\.org/\" to=\"https://www.craigslist.org/\"/><rule from=\"^http://([^/:@.]+)\\.craigslist\\.org/\" to=\"https://$1.craigslist.org/\"/></ruleset>", "<ruleset name=\"Crain Communications (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Crain-Communications-mismatches.xml\"><rule from=\"^http://(?:www\\.)?btobonline\\.com/\" to=\"https://www.btobonline.com/\"/><rule from=\"^http://mycrains\\.crainsnewyork\\.com/\" to=\"https://mycrains.crainsnewyork.com/\"/></ruleset>", "<ruleset name=\"Crain Communications (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Crain-Communications.xml\"><securecookie host=\"^sec\\.crain\\.com$\" name=\".*\"/><securecookie host=\"^\\.crainsnewyork\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?adage\\.com/(help/|(?:login|register)\\.php)\" to=\"https://adage.com/$1\"/><rule from=\"^http://(?:www\\.)?adage\\.com/(image|script)s/\" to=\"https://gaia.adage.com/$1s/\"/><rule from=\"^http://((?:www\\.)?amig|gai)a\\.adage\\.com/\" to=\"https://$1a.adage.com/\"/><rule from=\"^http://sec\\.crain\\.com/\" to=\"https://sec.crain.com/\"/><rule from=\"^http://(www\\.)?crainsnewyork\\.com/\" to=\"https://$1crainsnewyork.com/\"/><rule from=\"^http://(?:www\\.)?creativity-online\\.com/\" to=\"https://creativity-online.com/\"/></ruleset>", "<ruleset name=\"Crakpass (partial)\" default_off=\"mismatched\" f=\"Crakpass.xml\"><rule from=\"^http://thumbs\\.(crakpass|dachix|deviantclip)\\.com/\" to=\"https://thumbs.$1.com/\"/></ruleset>", "<ruleset name=\"Craphound\" default_off=\"expired\" f=\"Craphound.xml\"><securecookie host=\"^(?:www\\.)?craphound\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crash Space\" f=\"Crash-Space.xml\"><rule from=\"^http://(?:blog\\.|www\\.)?crashspace\\.org/\" to=\"https://blog.crashspace.org/\"/></ruleset>", "<ruleset name=\"CrashPlan (partial)\" f=\"CrashPlan.xml\"><securecookie host=\"^(?:.+\\.)?crashplan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crate.io\" f=\"Crate.io.xml\"><securecookie host=\"^\\.?crate\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crazy Egg (partial)\" default_off=\"failed ruleset test\" f=\"Crazy-Egg.xml\"><exclusion pattern=\"^http://www\\.crazyegg\\.com/(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrazyBump\" default_off=\"expired\" f=\"CrazyBump.xml\"><rule from=\"^http://(?:www\\.)?crazybump\\.com/\" to=\"https://crazybump.com/\"/></ruleset>", "<ruleset name=\"Crazybates.com\" default_off=\"expired, self-signed\" f=\"Crazybates.com.xml\"><securecookie host=\"^crazybates\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crazybates\\.com/\" to=\"https://crazybates.com/\"/></ruleset>", "<ruleset name=\"Crazzed.com\" default_off=\"failed ruleset test\" f=\"Crazzed.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?crazzed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crbug.com\" f=\"Crbug.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creare.co.uk\" f=\"Creare.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creatavist.com (partial)\" f=\"Creatavist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Create-DMGmedia.co.uk\" default_off=\"connection refused\" f=\"Create.xml\"><securecookie host=\"^create-dmgmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CreateSpace.com\" f=\"CreateSpace.xml\"><securecookie host=\"^(?:(?:tsw|www)?\\.)?createspace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Createsend.com (partial)\" f=\"Createsend.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"createsend1.com\" f=\"Createsend1.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creation\" default_off=\"failed ruleset test\" f=\"Creation.xml\"><securecookie host=\"^.+\\.creation\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?creation\\.co\\.uk/\" to=\"https://www.creation.co.uk/\"/><rule from=\"^http://(apply|credit-card-asda-payments|(?:manage)?myaccount)\\.creation\\.co\\.uk/\" to=\"https://$1.creation.co.uk/\"/></ruleset>", "<ruleset name=\"Creative Endeavors\" f=\"Creative-Endeavors.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"creative-serving.com (partial)\" f=\"Creative-serving.com.xml\"><securecookie host=\"^ads\\.creative-serving\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.creative-serving\\.com/\" to=\"https://ads.creative-serving.com/\"/></ruleset>", "<ruleset name=\"Creative Commons (partial)\" f=\"CreativeCommons.xml\"><securecookie host=\"(\\.|^)(api|blog|donate|i|login|search|stateof|stats|wiki)\\.creativecommons\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative COW\" f=\"CreativeCow.net.xml\"><securecookie host=\"^(?:www)?(?:\\.)?creativecow\\.(?:net|com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Partnerships Australia\" f=\"CreativePartnershipsAustralia.xml\"><rule from=\"^http://(?:www\\.)?creativepartnershipsaustralia\\.org\\.au/\" to=\"https://www.creativepartnershipsaustralia.org.au/\"/></ruleset>", "<ruleset name=\"CreativeSyndicator\" default_off=\"failed ruleset test\" f=\"CreativeSyndicator.xml\"><securecookie host=\"^(?:delivery|www)\\.ads-creativesyndicator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative CDN.com\" f=\"Creative_CDN.com.xml\"><securecookie host=\"\\.creativecdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Little Readers.com (false MCB)\" platform=\"mixedcontent\" f=\"Creative_Little_Readers.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.creativelittlereaders\\.com$\" name=\".+\"/><rule from=\"^http://www\\.creativelittlereaders\\.com/\" to=\"https://www.creativelittlereaders.com/\"/></ruleset>", "<ruleset name=\"Creative Little Readers.com (partial)\" default_off=\"failed ruleset test\" f=\"Creative_Little_Readers.com.xml\"><exclusion pattern=\"^http://www\\.creativelittlereaders\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Virtual.com\" default_off=\"self-signed\" f=\"Creative_Virtual.com.xml\"><securecookie host=\"^www\\.creativevirtual\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?creativevirtual\\.com/\" to=\"https://www.creativevirtual.com/\"/><rule from=\"^http://info\\.creativevirtual\\.com/l/\" to=\"https://pi.pardot.com/l/\"/><rule from=\"^http://info\\.creativevirtual\\.com/.*\" to=\"https://www.creativevirtual.com/\"/></ruleset>", "<ruleset name=\"Creativeskills.be (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Creativeskills.be-falsemixed.xml\"><securecookie host=\"^\\.creativeskills\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creativeskills.be (partial)\" default_off=\"failed ruleset test\" f=\"Creativeskills.be.xml\"><rule from=\"^http://(www\\.)?creativeskills\\.be/(?!articles/wp-content/|css/|favicon\\.ico|images/)\" to=\"https://$1creativeskills.be/\"/></ruleset>", "<ruleset name=\"CredAbility.com\" f=\"CredAbility.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CreditDisputeProgram.com\" default_off=\"failed ruleset test\" f=\"CreditDisputeProgram.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?creditdisputeprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Repair Trust.com\" f=\"Credit_Repair_Trust.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?creditrepairtrust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Report Nation\" f=\"Credit_Report_Nation.xml\"><securecookie host=\"^(?:.*\\.)?creditreportnation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Suisse\" f=\"Credit_Suisse.xml\"><securecookie host=\"^(?:w*\\.)?credit-suisse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credo Action.com\" f=\"Credo_Action.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crew.co (partial)\" f=\"Crew.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cricket Wireless.com\" f=\"Cricket_Wireless.com.xml\"><rule from=\"^http://(?:www\\.)?cricketwireless\\.com/\" to=\"https://www.cricketwireless.com/\"/></ruleset>", "<ruleset name=\"Crikey (partial)\" default_off=\"failed ruleset test\" f=\"Crikey.xml\"><securecookie host=\"^www\\.crikey\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrimethInk.com (partial)\" f=\"CrimethInc.com.xml\"><rule from=\"^http://cloudfront\\.crimethinc\\.com/\" to=\"https://d33bhpqk8nwto8.cloudfront.net/\"/><rule from=\"^http://thecloud\\.crimethinc\\.com/\" to=\"https://s3.amazonaws.com/thecloud.crimethinc.com/\"/></ruleset>", "<ruleset name=\"Criminal Justice Inspectorates\" default_off=\"failed ruleset test\" f=\"Criminal_Justice_Inspectorates.xml\"><rule from=\"^http://justiceinspectorates\\.gov\\.uk/\" to=\"https://www.justiceinspectorates.gov.uk/\"/><rule from=\"^http://([^/:@]+)\\.justiceinspectorates\\.gov\\.uk/\" to=\"https://$1.justiceinspectorates.gov.uk/\"/></ruleset>", "<ruleset name=\"Crimtan (partial)\" f=\"Crimtan.xml\"><securecookie host=\"^\\.ctnsnet\\.com$\" name=\".+\"/><rule from=\"^http://(cdn|i)\\.ctpsnet\\.com/\" to=\"https://$1.ctpsnet.com/\"/></ruleset>", "<ruleset name=\"Crisis.org.uk (partial)\" f=\"Crisis.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Criteo.com (partial)\" f=\"Criteo.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Critical Mass (partial)\" f=\"Critical-Mass.xml\"><securecookie host=\"^cm1\\.criticalmass\\.com$\" name=\".*\"/><rule from=\"^http://cm1\\.criticalmass\\.com/\" to=\"https://cm1.criticalmass.com/\"/></ruleset>", "<ruleset name=\"Critical Path Internet Services\" f=\"Critical-Path-Internet-Services.xml\"><rule from=\"^http://secure\\.critpath\\.org/\" to=\"https://secure.critpath.org/\"/></ruleset>", "<ruleset name=\"Critical Thinking.org\" f=\"Critical_Thinking.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crittercism.com (partial)\" f=\"Crittercism.com.xml\"><securecookie host=\"^ap[ip]\\.crittercism\\.com\" name=\".+\"/><rule from=\"^http://ap(i|p)\\.crittercism\\.com/\" to=\"https://ap$1.crittercism.com/\"/></ruleset>", "<ruleset name=\"Crockotec (partial)\" default_off=\"expired\" f=\"Crockotec.xml\"><securecookie host=\"^\\.crocko\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crocs\" f=\"Crocs.xml\"><exclusion pattern=\"^http://investors\\.crocs\\.com/(?!client/|WebSideStory/)\"/><securecookie host=\".*\\.crocs\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><securecookie host=\"^(?:espanol|www)\\.crocs\\.com$\" name=\".+\"/><rule from=\"^http://crocs\\.com/\" to=\"https://www.crocs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cronius.net\" default_off=\"expired, mismatched\" f=\"Cronius.net.xml\"><securecookie host=\"^webmanager\\.cronius\\.net$\" name=\".+\"/><rule from=\"^http://webmanager\\.cronius\\.net/\" to=\"https://webmanager.cronius.net/\"/></ruleset>", "<ruleset name=\"Cronius.nl\" f=\"Cronius.nl.xml\"><securecookie host=\"^\\.cronius\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cronkite News\" default_off=\"mismatch\" f=\"Cronkite-News.xml\"><rule from=\"^http://(?:www\\.)?cronkitenewsonline\\.com/\" to=\"https://cronkitenewsonline.com/\"/></ruleset>", "<ruleset name=\"Croscill.com (partial)\" f=\"Croscill.com.xml\"><rule from=\"^http://(www\\.)?croscill\\.com/(?=(?:contact|order-status|returns|Shop/Customer)(?:$|[?/])|content/.+\\.(?:htm|png)$|css/|favicon\\.ico|Public/|Styles/|store_image/)\" to=\"https://$1croscill.com/\"/><rule from=\"^http://(?:www\\.)?croscill\\.com/content/8/contact-us\\.html.*\" to=\"https://www.croscill.com/contact\"/></ruleset>", "<ruleset name=\"Cross Pixel Media (problematic)\" default_off=\"expired, mismatch, self-signed\" f=\"Cross-Pixel-Media-problematic.xml\"><rule from=\"^http://pixel\\.crosspixel\\.net/\" to=\"https://pixel.crosspixel.net/\"/></ruleset>", "<ruleset name=\"Cross Pixel Media (partial)\" f=\"Cross-Pixel-Media.xml\"><securecookie host=\"^(?:tag)?\\.crsspxl\\.com$\" name=\".+\"/><rule from=\"^http://elmo\\.crsspxl\\.com/\" to=\"https://d2kdqv2bboglbi.cloudfront.net/\"/><rule from=\"^http://tag\\.crsspxl\\.com/\" to=\"https://tag.crsspxl.com/\"/></ruleset>", "<ruleset name=\"CrossRef.org (partial)\" f=\"CrossRef.org.xml\"><rule from=\"^http://(api|crossmark)\\.crossref\\.org/\" to=\"https://$1.crossref.org/\"/><rule from=\"^http://help\\.crossref\\.com/(?=docs-view-\\d+\\.css|favicon\\.ico|favicon-\\d+-\\d+\\.gif|resources/|userfiles/)\" to=\"https://crossref.helpdocsonline.com/\"/></ruleset>", "<ruleset name=\"CrossWire.org\" default_off=\"self-signed\" f=\"CrossWire.org.xml\"><securecookie host=\"^www\\.crosswire\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crosswire\\.org/\" to=\"https://www.crosswire.org/\"/></ruleset>", "<ruleset name=\"Crossdresser-Forum.de\" f=\"Crossdresser-Forum.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crossrider (partial)\" f=\"Crossrider.xml\"><securecookie host=\"^\\.?crossrider\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crossrider\\.com/\" to=\"https://crossrider.com/\"/></ruleset>", "<ruleset name=\"Crowd Factory\" default_off=\"failed ruleset test\" f=\"Crowd-Factory.xml\"><securecookie host=\"^.*\\.crowdfactory\\.com$\" name=\".*\"/><securecookie host=\"^socialcampaign\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?crowdfactory\\.com/\" to=\"https://www.crowdfactory.com/\"/><rule from=\"^http://b(2c-wsinsight|log)\\.crowdfactory\\.com/\" to=\"https://b$1.crowdfactory.com/\"/><rule from=\"^http://(www\\.)?socialcampaign\\.com/\" to=\"https://$1socialcampaign.com/\"/></ruleset>", "<ruleset name=\"Crowd Science (partial)\" f=\"Crowd-Science.xml\"><exclusion pattern=\"http://static\\.crowndscience\\.com/blog/\"/><rule from=\"^http://(aws-)?app\\.crowdscience\\.com/\" to=\"https://$1app.crowdscience.com/\"/><rule from=\"^http://(?:secure-)?static\\.crowdscience\\.com/\" to=\"https://secure-static.crowdscience.com/\"/><rule from=\"^http://support\\.crowdscience\\.com/(favicon\\.ico|generated/|system/|widgets/)\" to=\"https://crowdscience.zendesk.com/$1\"/></ruleset>", "<ruleset name=\"CrowdCulture.se\" f=\"CrowdCulture.se.xml\"><securecookie host=\"^\\.?crowdculture\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrowdJustice.co.uk\" f=\"CrowdJustice.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrowdTangle (partial)\" f=\"CrowdTangle.xml\"><rule from=\"^http://(?:www\\.)?crowdtangle\\.com/(asset|upload)s/\" to=\"https://onepagerapp.com/$1s/\"/><rule from=\"^http://prod\\.crowdtangle\\.com/\" to=\"https://prod.crowdtangle.com/\"/></ruleset>", "<ruleset name=\"Crowd Supply.com (partial)\" f=\"Crowd_Supply.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdcurity.com\" f=\"Crowdcurity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdin.com (partial)\" f=\"Crowdin.com.xml\"><securecookie host=\"^crowdin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdin.net\" f=\"Crowdin.net.xml\"><securecookie host=\"^crowdin\\.net$\" name=\".+\"/><rule from=\"^http://www\\.crowdin\\.net/\" to=\"https://crowdin.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdrise.com (partial)\" f=\"Crowdrise.com.xml\"><securecookie host=\"^\\.crowdrise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crrev.com\" f=\"Crrev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cru.fr (partial)\" f=\"Cru.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(git|sourcesup)\\.cru\\.fr/\" to=\"https://$1.renater.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cru.org\" default_off=\"failed ruleset test\" f=\"Cru.org.xml\"><securecookie host=\"^(?:www\\.)?cru\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?cru\\.org/\" to=\"https://$1cru.org/\"/><rule from=\"^https?://static\\.cru\\.org/\" to=\"https://d2kuvqjqp132ic.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Crucial.com (partial)\" f=\"Crucial.xml\"><exclusion pattern=\"^http://(?:www\\.)?crucial\\.com/(?!favicon\\.png|images\\d{0,2}/|js/|css/|reviews/)\"/><rule from=\"^http://crucial\\.com/\" to=\"https://crucial.com/\"/><rule from=\"^http://(?:images|scripts|www)\\.crucial\\.com/\" to=\"https://www.crucial.com/\"/><rule from=\"^http://forum\\.crucial\\.com/\" to=\"https://crucial.i.lithium.com/\"/></ruleset>", "<ruleset name=\"CruisersForum.com\" default_off=\"failed ruleset test\" f=\"CruisersForum.com.xml\"><securecookie host=\"^(?:www)?\\.cruisersforum\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?cruisersforum\\.com/\" to=\"https://www.cruisersforum.com/\"/></ruleset>", "<ruleset name=\"CrunchBase.com\" default_off=\"needs clearnet testing\" f=\"CrunchBase.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrunchBoard.com (partial)\" f=\"CrunchBoard.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?crunchboard\\.com/(?!build/|images3?/|include/)\"/><rule from=\"^http://(?:www\\.)?crunchboard\\.com/\" to=\"https://secure.personforce.com/\"/></ruleset>", "<ruleset name=\"Crunchbangplusplus.org\" f=\"Crunchbangplusplus.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crux.nu\" f=\"Crux.nu.xml\"><rule from=\"^http://www\\.crux\\.nu/\" to=\"https://crux.nu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrySyS Lab\" default_off=\"self-signed\" f=\"CrySyS-Lab.xml\"><securecookie host=\"^www\\.crysys\\.hu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?crysys\\.hu/\" to=\"https://www.crysys.hu/\"/></ruleset>", "<ruleset name=\"Cryengine.com\" f=\"Cryengine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryout Creations.eu (partial)\" f=\"Cryout_Creations.eu.xml\"><exclusion pattern=\"^http://(?:www\\.)?cryoutcreations\\.eu/+(?!(?:contact|custom-work|premium-support)(?:$|\\?)|favicon\\.ico|sprites/|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrypTrader.com\" f=\"CrypTrader.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?cryptrader\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptAByte.com\" f=\"CryptAByte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptAd.com\" f=\"CryptAd.com.xml\"><securecookie host=\"^\\.cryptad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptDown.eu\" f=\"CryptDown.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptalloy.de (problematic)\" default_off=\"self-signed\" f=\"Cryptalloy.de-problematic.xml\"><securecookie host=\"^\\.www\\.cryptalloy\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cryptalloy\\.de/\" to=\"https://www.cryptalloy.de/\"/></ruleset>", "<ruleset name=\"Cryptalloy.de (partial)\" default_off=\"failed ruleset test\" f=\"Cryptalloy.de.xml\"><securecookie host=\"^www\\.shop\\.cryptalloy\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shop\\.cryptalloy\\.de/\" to=\"https://www.shop.cryptalloy.de/\"/></ruleset>", "<ruleset name=\"Cryptanalysis.eu\" f=\"Cryptanalysis.xml\"><securecookie host=\"^cryptanalysis\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptbin.com\" f=\"Cryptbin.com.xml\"><securecookie host=\"^cryptbin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptedMemo.com\" f=\"CryptedMemo.com.xml\"><rule from=\"^http://cryptedmemo\\.com/\" to=\"https://cryptedmemo.com/\"/></ruleset>", "<ruleset name=\"Crypteia Networks.com (partial)\" f=\"Crypteia_Networks.com.xml\"><securecookie host=\"^(?:w*\\.)?crypteianetworks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crypteianetworks\\.com/\" to=\"https://www.crypteianetworks.com/\"/><rule from=\"^http://support\\.crypteianetworks\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://crypteianetworks.zendesk.com/\"/></ruleset>", "<ruleset name=\"Crypteron.com\" f=\"Crypteron.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto.cat\" f=\"Crypto.cat.xml\"><securecookie host=\"^crypto\\.cat$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crypto.graphics\" f=\"Crypto.graphics.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto.is (partial)\" f=\"Crypto.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoBin.org\" f=\"CryptoBin.org.xml\"><securecookie host=\"^cryptobin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCoinTalk.com\" f=\"CryptoCoinTalk.com.xml\"><securecookie host=\"^\\.cryptocointalk\\.com$\" name=\".+\"/><rule from=\"^http://www\\.cryptocointalk\\.com/\" to=\"https://cryptocointalk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCoinsNews.com\" f=\"CryptoCoinsNews.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCon.org\" f=\"CryptoCon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoExperts.com\" f=\"CryptoExperts.com.xml\"><securecookie host=\"^(?:www\\.)?cryptoexperts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoLUX.org\" f=\"CryptoLUX.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoNetwork.com\" default_off=\"missing certificate chain\" f=\"CryptoNetwork.com.xml\"><rule from=\"^http://www\\.cryptonetwork\\.com/\" to=\"https://cryptonetwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoPro.ru\" f=\"CryptoPro.ru.xml\"><rule from=\"^http://cryptopro\\.ru/\" to=\"https://www.cryptopro.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoRave.org\" f=\"CryptoRave.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoSMS.org (CAcert)\" platform=\"cacert\" default_off=\"expired\" f=\"CryptoSMS.org.xml\"><rule from=\"^http://www\\.cryptosms\\.org/\" to=\"https://cryptosms.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoSeal.com\" f=\"CryptoSeal.com.xml\"><securecookie host=\"^\\.cryptoseal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoThrift.com\" f=\"CryptoThrift.com.xml\"><securecookie host=\"^\\.cryptothrift\\.com$\" name=\".+\"/><rule from=\"^http://support\\.cryptothrift\\.com/\" to=\"https://cryptothrift.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoVPN.com\" f=\"CryptoVPN.com.xml\"><securecookie host=\"^(?:my)?\\.cryptovpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto Capital.co\" f=\"Crypto_Capital.co.xml\"><securecookie host=\"^(?:secure)?\\.cryptocapital\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto Design.org\" f=\"Crypto_Design.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto Santa.xyz\" f=\"Crypto_Santa.xyz.xml\"><securecookie host=\"^\\.cryptosanta\\.xyz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptocloud.ca\" default_off=\"mismatched\" f=\"Cryptocloud.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptocloud (partial)\" default_off=\"failed ruleset test\" f=\"Cryptocloud.xml\"><securecookie host=\"^(?:billing)?\\.cryptocloud\\.com$\" name=\".+\"/><securecookie host=\"^\\.cryptocloud\\.org$\" name=\".+\"/><rule from=\"^http://(billing\\.|www\\.)?cryptocloud\\.com/\" to=\"https://$1cryptocloud.com/\"/><rule from=\"^http://forum\\.cryptocloud\\.com/\" to=\"https://cryptocloud.org/\"/><rule from=\"^http://support\\.cryptocloud\\.com/\" to=\"https://cryptocloud.kayako.com/\"/><rule from=\"^http://(www\\.)?cryptocloud\\.org/\" to=\"https://$1cryptocloud.org/\"/></ruleset>", "<ruleset name=\"Cryptocoin Charts.info\" f=\"Cryptocoin_Charts.info.xml\"><securecookie host=\"^www\\.cryptocoincharts\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptohaze\" default_off=\"connection refused\" f=\"Cryptohaze.xml\"><securecookie host=\"^(?:.+\\.)?cryptohaze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptoins.com\" f=\"Cryptoins.com.xml\"><securecookie host=\"^\\.?cryptoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptojedi.org\" f=\"Cryptojedi.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptologie.net\" f=\"Cryptologie.net.xml\"><securecookie host=\"^\\.cryptologie\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptomaths.com\" default_off=\"mismatched\" f=\"Cryptomaths.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptomator.org\" f=\"Cryptomator.org.xml\"><securecookie host=\"^\\.cryptomator\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptome.org\" f=\"Cryptome.xml\"><rule from=\"^http://(www\\.)?cryptome\\.info/\" to=\"https://cryptome.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptomilk.org (partial)\" f=\"Cryptomilk.org.xml\"><securecookie host=\"^blog\\.cryptomilk\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptomonkeys.com\" f=\"Cryptomonkeys.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypton.io\" f=\"Crypton.io.xml\"><securecookie host=\"^crypton\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptonator.com\" f=\"Cryptonator.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptonit.net\" f=\"Cryptonit.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?cryptonit\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptonomicon\" default_off=\"mismatch\" f=\"Cryptonomicon.xml\"><rule from=\"^http://(?:www\\.)?cryptonomicon\\.com/\" to=\"https://cryptonomicon.com/\"/></ruleset>", "<ruleset name=\"Cryptoparty\" f=\"Cryptoparty.xml\"><securecookie host=\"^www\\.cryptoparty\\.in$\" name=\".+\"/><securecookie host=\"^cryptoparty\\.org$\" name=\".+\"/><rule from=\"^http://www\\.cryptoparty\\.org/\" to=\"https://cryptoparty.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptopia.co.nz\" f=\"Cryptopia.co.nz.xml\"><securecookie host=\"^cryptopia\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptopp.com\" f=\"Cryptopp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptostocks.com\" f=\"Cryptostocks.com.xml\"><securecookie host=\"^\\.cryptostocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptostorm.is\" f=\"Cryptostorm.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptostorm.org (partial)\" f=\"Cryptostorm.org.xml\"><securecookie host=\"^\\.cryptostorm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptsy.com (partial)\" f=\"Cryptsy.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?cryptsy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crystal Delights.com\" f=\"Crystal_Delights.com.xml\"><securecookie host=\"^(?:www\\.)?crystaldelights\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crystal Singing Bowls\" f=\"Crystal_Singing_Bowls.xml\"><securecookie host=\"^(?:www)?\\.sacredcrystalsingingbowls\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crytography.com (false MCB)\" platform=\"mixedcontent\" f=\"Crytography.com.xml\"><securecookie host=\"^(?:www\\.)?cryptography\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Csob.sk\" default_off=\"failed ruleset test\" f=\"Csob.sk.xml\"><rule from=\"^http://(?:www\\.)?csob\\.sk/\" to=\"https://www.csob.sk/\"/><rule from=\"^http://ib24\\.csob\\.sk/\" to=\"https://ib24.csob.sk/\"/><rule from=\"^http://bb24\\.csob\\.sk/\" to=\"https://bb24.csob.sk/\"/><rule from=\"^http://secure\\.csob\\.sk/\" to=\"https://secure.csob.sk/\"/></ruleset>", "<ruleset name=\"CspBuilder.info\" f=\"CspBuilder.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"css Zen Garden\" default_off=\"mismatch\" f=\"Css-Zen-Garden.xml\"><rule from=\"^http://(?:www\\.)?csszengarden\\.com/\" to=\"https://csszengarden.com/\"/></ruleset>", "<ruleset name=\"Cstatic-graphics.com\" f=\"Cstatic-graphics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cstatic-images.com\" f=\"Cstatic-images.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cstatic.net\" f=\"Cstatic.net.xml\"><rule from=\"^http://cdn\\.cstatic\\.net/\" to=\"https://dzbb4sjawljdv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"csync.org\" f=\"Csync.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CtCtCDN.com\" f=\"CtCtCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ctrl+Alt+Del\" f=\"Ctrl_Alt_Del.xml\"><exclusion pattern=\"^http://v\\.cdn\\.cad-comic\\.com/css-\\d+\\.css\"/><rule from=\"^http://(?:v\\.)?cdn\\.cad-comic\\.com/\" to=\"https://s3.amazonaws.com/cdn.cad-comic.com/\"/></ruleset>", "<ruleset name=\"Cts-strasbourg.eu\" default_off=\"failed ruleset test\" f=\"Cts-strasbourg.eu.xml\"><rule from=\"^http://(?:www\\.)?cts-strasbourg\\.eu/\" to=\"https://www.cts-strasbourg.eu/\"/></ruleset>", "<ruleset name=\"CtsCDN.com (partial)\" f=\"CtsCDN.com.xml\"><rule from=\"^http://jscsecmat\\.ctscdn\\.com/\" to=\"https://jscsecmat.ctscdn.com/\"/></ruleset>", "<ruleset name=\"ctt.org\" f=\"Ctt.org.xml\"><rule from=\"^http://(?:www\\.)?ctt\\.org/\" to=\"https://www.ctt.org/\"/></ruleset>", "<ruleset name=\"Ctt\" f=\"Ctt.xml\"><rule from=\"^http://(?:www\\.)?ctt\\.pt/\" to=\"https://www.ctt.pt/\"/></ruleset>", "<ruleset name=\"Cubby.com (partial)\" f=\"Cubby.com.xml\"><securecookie host=\"^www\\.cubby\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cubics\" default_off=\"failed ruleset test\" f=\"Cubics.xml\"><securecookie host=\"^cubplat\\.bidsystem\\.com$\" name=\".+\"/><rule from=\"^http://cubplat\\.bidsystem\\.com/\" to=\"https://cubplat.bidsystem.com/\"/><rule from=\"^http://(?:www\\.)?cubics\\.com/\" to=\"https://cubplat.bidsystem.com/signup/\"/><rule from=\"^http://icons\\.cubics\\.com/\" to=\"https://icons.cubics.com/\"/></ruleset>", "<ruleset name=\"Cubify\" default_off=\"JS redirect to http\" f=\"Cubify.xml\"><securecookie host=\"^cubify\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cue.me\" f=\"Cue.me.xml\"><securecookie host=\"^cue\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CuidadoDeSalud.gov\" f=\"CuidadoDeSalud.gov.xml\"><securecookie host=\"www\\.cuidadodesalud\\.gov\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)cuidadodesalud\\.gov/\" to=\"https://www.cuidadodesalud.gov/\"/></ruleset>", "<ruleset name=\"Cult-Labs.com\" f=\"Cult-Labs.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?cult-labs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cultura Sparebank\" f=\"Cultura.no.xml\"><rule from=\"^http://cultura\\.no/\" to=\"https://cultura.no/\"/><rule from=\"^http://www\\.cultura\\.no/\" to=\"https://www.cultura.no/\"/></ruleset>", "<ruleset name=\"Cultural Survival.org (partial)\" f=\"Cultural_Survival.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cultures for Health.com\" f=\"Cultures_for_Health.com.xml\"><securecookie host=\"^(?:www)?\\.culturesforhealth.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cumbria Constabulary\" f=\"CumbriaConstabulary.xml\"><rule from=\"^http://(?:www\\.)?cumbria\\.police\\.uk/\" to=\"https://www.cumbria.police.uk/\"/></ruleset>", "<ruleset name=\"Cumulus Networks (partial)\" f=\"Cumulus_Networks.xml\"><exclusion pattern=\"^http://(?:www\\.)?cumulusnetworks\\.com/+(?!secure/|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cupid (partial)\" f=\"Cupid.xml\"><exclusion pattern=\"^http://ed\\.cupid\\.com/(?!ext\\.php)\"/><securecookie host=\"^\\.(?:www\\.)?cupid\\.com$\" name=\"^TRACK_\\w+$\"/><rule from=\"^http://(cdn|ed)\\.cupid\\.com/\" to=\"https://$1.cupid.com/\"/><rule from=\"^http://(?:www\\.)?cupid\\.com/((?:aff|oth)\\.php|api/|favicon\\.ico|static/)\" to=\"https://www.cupid.com/$1\"/></ruleset>", "<ruleset name=\"Cupid plc.com (partial)\" f=\"Cupid_plc.com.xml\"><securecookie host=\"^(?:aff|stat\\.to|whitelabeldating)\\.cupidplc\\.com$\" name=\".+\"/><rule from=\"^http://(aff|affiliates|stat\\.ed|stat|(?:cdn\\.)?stat\\.to|whitelabeldating)\\.cupidplc\\.com/\" to=\"https://$1.cupidplc.com/\"/></ruleset>", "<ruleset name=\"Cupid plc CDN\" default_off=\"failed ruleset test\" f=\"Cupid_plc_CDN.xml\"><rule from=\"^http://cdn\\.cdtoimge\\.com/\" to=\"https://cdn.cdtoimge.com/\"/><rule from=\"^http://cdn\\.(?:imgstat|pictimgs)\\.com/\" to=\"https://cdn.pictimgs.com/\"/><rule from=\"^http://cdn\\.stati(?:c2img|mgs2)\\.com/\" to=\"https://cdn.static2img.com/\"/></ruleset>", "<ruleset name=\"Curate.Us (partial)\" default_off=\"failed ruleset test\" f=\"Curate.Us.xml\"><securecookie host=\"^\\.(?:secure\\.)?curate\\.us$\" name=\".+\"/><rule from=\"^http://(?:clp\\.ly|curate\\.us)/\" to=\"https://secure.curate.us/\"/><rule from=\"^http://(secure|www)\\.curate\\.us/\" to=\"https://$1.curate.us/\"/></ruleset>", "<ruleset name=\"Curated.co\" f=\"Curated.co.xml\"><securecookie host=\"^(?:my\\.|www\\.)?curated\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curbed.cc\" f=\"Curbed.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curbed.com (partial)\" f=\"Curbed.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:hamptons|ny)\\.curbed\\.com/+(?!favicon\\.ico|marketplace/(?:image|stylesheet)s/|uploads/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http://www\\.hamptons\\.curbed\\.com/\" to=\"https://hamptons.curbed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cure53.de\" f=\"Cure53.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CureSec.com (partial)\" f=\"CureSec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curetheitch.com\" default_off=\"expired, missing certificate chain\" f=\"Curetheitch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"curiosity-driven.org\" f=\"Curiosity-driven.org.xml\"><rule from=\"^http://(?:www\\.)?curiosity-driven\\.org/\" to=\"https://curiosity-driven.org/\"/></ruleset>", "<ruleset name=\"Curling World.com\" default_off=\"failed ruleset test\" f=\"Curling_World.com.xml\"><securecookie host=\"^\\.curlingworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curo.co.za\" default_off=\"expired\" f=\"Curo.co.za.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.curo\\.co\\.za/\" to=\"https://curo.co.za/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Currys.co.uk (partial)\" f=\"Currys.co.uk.xml\"><rule from=\"^http://secure\\.currys\\.co\\.uk/\" to=\"https://secure.currys.co.uk/\"/></ruleset>", "<ruleset name=\"Curse\" f=\"Curse.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curso de Italiano\" f=\"Curso_de_Italiano.xml\"><securecookie host=\"^\\.marconisida\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marconisida\\.com/\" to=\"https://marconisida.com/\"/></ruleset>", "<ruleset name=\"Custhelp.com\" f=\"Custhelp.com.xml\"><securecookie host=\"^.*\\.custhelp\\.com$\" name=\"^(?!ps_cookie$).*\"/><exclusion pattern=\"^http://canoncanada\\.custhelp\\.com/\"/><rule from=\"^http://(?:www\\.)?custhelp\\.com/[^?]*\" to=\"https://www.rightnow.com/\"/><rule from=\"^http://motorola-global-community\\.custhelp\\.com/\" to=\"https://forums.motorola.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Custodian Vaults.com.au\" f=\"Custodian_Vaults.com.au.xml\"><securecookie host=\"^(?:w*\\.)?custodianvaults\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CustomWheelConnection.com (partial)\" f=\"CustomWheelConnection.com.xml\"><rule from=\"^http://(www\\.)?customwheelconnection\\.com/(favicon\\.ico|Portals/|scripts/|[sS]how(?:Category|Product)Image\\.aspx)\" to=\"https://$1customwheelconnection.com/$2\"/></ruleset>", "<ruleset name=\"Custom Tiburon\" default_off=\"failed ruleset test\" f=\"Custom_Tiburon.xml\"><securecookie host=\"^(?:.*\\.)?customtiburon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Customer Lobby (partial)\" f=\"Customer-Lobby.xml\"><securecookie host=\"^(?:.*\\.)?customerlobby\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Customer.io (partial)\" f=\"Customer.io.xml\"><rule from=\"^http://(assets|manage|track)\\.customer\\.io/\" to=\"https://$1.customer.io/\"/></ruleset>", "<ruleset name=\"customersaas.com\" f=\"Customersaas.com.xml\"><rule from=\"^http://imageservice\\.customersaas\\.com/\" to=\"https://d35v9wsdymy32b.cloudfront.net/\"/><rule from=\"^http://static1\\.customersaas\\.com/\" to=\"https://d1wawgqwk8hdm1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"customersvc.com\" f=\"Customersvc.com.xml\"><securecookie host=\"^secure\\.customersvc\\.com$\" name=\".+\"/><rule from=\"^http://(chat1|secure)\\.customersvc\\.com/\" to=\"https://$1.customersvc.com/\"/></ruleset>", "<ruleset name=\"CuteDigi\" f=\"CuteDigi.xml\"><securecookie host=\"^\\.www\\.cutedigi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuttlefish.com\" default_off=\"connection refused\" f=\"Cuttlefish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuusoo.com (partial)\" f=\"Cuusoo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cvedetails.com\" f=\"Cvedetails.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cvent.com (partial)\" f=\"Cvent.com.xml\"><securecookie host=\"^(?:shworldwide)?\\.cvent\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|custom|shworldwide|www)\\.)?cvent\\.com/\" to=\"https://$1cvent.com/\"/></ruleset>", "<ruleset name=\"Cxcloud.com\" default_off=\"failed ruleset test\" f=\"Cxcloud.com.xml\"><securecookie host=\"^(?:www\\.)?cxcloud\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?cxcloud\\.com/.*\" to=\"https://$1cxcloud.com/\"/></ruleset>", "<ruleset name=\"cxsecurity.com\" f=\"Cxsecurity.com.xml\"><securecookie host=\"^cxsecurity\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cxsecurity\\.com/\" to=\"https://cxsecurity.com/\"/></ruleset>", "<ruleset name=\"Cxt.ms\" f=\"Cxt.ms.xml\"><rule from=\"^http://s\\.cxt\\.ms/\" to=\"https://d3j09g9h9lgmkt.cloudfront.net/\"/><rule from=\"^http://t\\.cxt\\.ms/\" to=\"https://t.cxt.ms/\"/></ruleset>", "<ruleset name=\"Cyando (partial)\" f=\"Cyando.xml\"><rule from=\"^http://(?:www\\.)?u(?:l|ploaded)\\.to/(favicon\\.ico$|img/|js2?/|misc/)\" to=\"https://uploaded.to/$1\"/></ruleset>", "<ruleset name=\"CyanogenMod.org (false MCB)\" platform=\"mixedcontent\" f=\"CyanogenMod.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyanogenMod.org (partial)\" f=\"CyanogenMod.org.xml\"><securecookie host=\"^\\.cyanogenmod\\.org$\" name=\"^__cfduid$\"/><securecookie host=\"^jira\\.cyanogenmod\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyber Security Challenge\" default_off=\"failed ruleset test\" f=\"Cyber-Security-Challenge.xml\"><securecookie host=\"^(?:www\\.)?cybersecuritychallenge\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://cybersecuritychallenge\\.org\\.uk/\" to=\"https://www.cybersecuritychallenge.org.uk/\"/><rule from=\"^http://([^/:@]+)?\\.cybersecuritychallenge\\.org\\.uk/\" to=\"https://$1.cybersecuritychallenge.org.uk/\"/></ruleset>", "<ruleset name=\"CyberAces (partial)\" default_off=\"failed ruleset test\" f=\"CyberAces.xml\"><rule from=\"^http://(?:www\\.)?online\\.cyberaces\\.org/\" to=\"https://www.online.cyberaces.org/\"/></ruleset>", "<ruleset name=\"CyberAgent\" platform=\"mixedcontent\" f=\"CyberAgent.xml\"><rule from=\"^http://(?:www\\.)?cyberagent\\.co\\.jp/\" to=\"https://www.cyberagent.co.jp/\"/></ruleset>", "<ruleset name=\"CyberCamp.es\" f=\"CyberCamp.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberGhost\" f=\"CyberGhost.xml\"><securecookie host=\"^(?:.*\\.)?cyberghostvpn\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?cyberghostvpn\\.com/\" to=\"https://$1cyberghostvpn.com/\"/></ruleset>", "<ruleset name=\"CyberGuerrilla.info\" f=\"CyberGuerilla.info.xml\"><securecookie host=\"^\\.cyberguerrilla\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberGuerrilla.org\" f=\"CyberGuerrilla.org.xml\"><securecookie host=\"^(?:\\w+\\.)?cyberguerrilla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPatrol (partial)\" default_off=\"failed ruleset test\" f=\"CyberPatrol.xml\"><securecookie host=\"^(?:www\\.)?cyberpatrol\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPhoto AB\" f=\"CyberPhoto-AB.xml\"><securecookie host=\"^(?:www)?\\.cyberphoto\\.(?:fi|se)$\" name=\"^(?:PHPSESSID|kundvagn)$\"/><rule from=\"^http://(?:www\\.)?cyberphoto\\.(fi|se)/\" to=\"https://www.cyberphoto.$1/\"/></ruleset>", "<ruleset name=\"CyberShambles.com\" default_off=\"failed ruleset test\" f=\"CyberShambles.com.xml\"><securecookie host=\"^(?:www\\.)?cybershambles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyber Stewards.org\" f=\"Cyber_Stewards.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyberciti.org\" f=\"Cyberciti.org.xml\"><rule from=\"^http://s0\\.cyberciti\\.org/\" to=\"https://d2m4hyssawyie7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Cybercompex.org\" default_off=\"Bad Cert\" f=\"Cybercompex.org.xml\"><rule from=\"^http://(?:www\\.)?cybercompex\\.org/\" to=\"https://www.cybercompex.org/\"/></ruleset>", "<ruleset name=\"Cybercon (partial)\" f=\"Cybercon.xml\"><securecookie host=\"^\\.www\\.cybercon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberduck.io\" f=\"Cyberduck.io.xml\"><rule from=\"^http://(?:(media\\.)|www\\.)?cyberduck\\.io/\" to=\"https://$1cyberduck.io/\"/></ruleset>", "<ruleset name=\"Cyberfret.com\" f=\"Cyberfret.com.xml\"><securecookie host=\"^(?:www\\.)?cyberfret\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybergolf.com (MCB)\" platform=\"mixedcontent\" f=\"Cybergolf.com-mixedcontent.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybergolf.com (partial)\" f=\"Cybergolf.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybermill\" default_off=\"expired\" f=\"Cybermill.xml\"><rule from=\"^http://(?:www\\.)?cybermill\\.com/\" to=\"https://cybermill.com/\"/></ruleset>", "<ruleset name=\"Cyberquests (Partial)\" f=\"Cyberquests.org.xml\"><rule from=\"^http://quiz-uscc\\.cyberquests\\.org/\" to=\"https://quiz-uscc.cyberquests.org/\"/></ruleset>", "<ruleset name=\"Cyberstreetwise\" f=\"Cyberstreetwise.xml\"><securecookie host=\"^(?:.*\\.)?cyberstreetwise\\.com$\" name=\".*\"/><rule from=\"^http://cyberstreetwise\\.com/\" to=\"https://www.cyberstreetwise.com/\"/><rule from=\"^http://([^/:@]+)\\.cyberstreetwise\\.com/\" to=\"https://$1.cyberstreetwise.com/\"/></ruleset>", "<ruleset name=\"Cybertip.ca\" f=\"Cybertip.ca.xml\"><rule from=\"^http://(www\\.)?cyberaide\\.ca/\" to=\"https://$1cyberaide.ca/\"/><rule from=\"^http://((?:cwa|lea|www)\\.)?cybertip\\.ca/\" to=\"https://$1cybertip.ca/\"/></ruleset>", "<ruleset name=\"Cyberwar.nl\" f=\"Cyberwar.nl.xml\"><rule from=\"^http://((?:blog|news|www)\\.)?cyberwar\\.nl/\" to=\"https://$1cyberwar.nl/\"/></ruleset>", "<ruleset name=\"Cygwin.com (partial)\" f=\"Cygwin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cykloteket.se\" f=\"Cykloteket.se.xml\"><rule from=\"^http://www\\.cykloteket\\.se/\" to=\"https://cykloteket.se/\"/><rule from=\"^http://cykloteket\\.se/\" to=\"https://cykloteket.se/\"/></ruleset>", "<ruleset name=\"Cyngn.com\" f=\"Cyngn.com.xml\"><rule from=\"^http://builds\\.cyngn\\.com/\" to=\"https://d199yez36w5w8l.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyon.ch\" f=\"Cyon.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyph.com\" f=\"Cyph.com.xml\"><securecookie host=\"^\\.cyph\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyphar.com\" f=\"Cyphar.com.xml\"><securecookie host=\"^\\.cyphar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyphdbyhiddenbhs.onion\" platform=\"mixedcontent\" f=\"Cyphdbyhiddenbhs.onion.xml\"><rule from=\"^http://www\\.cyphdbyhiddenbhs\\.onion/\" to=\"https://cyphdbyhiddenbhs.onion/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cypherpunks.ca\" f=\"Cypherpunks.ca.xml\"><rule from=\"^http://(?:(lists\\.|otr\\.)|www\\.)?cypherpunks\\.ca/\" to=\"https://$1cypherpunks.ca/\"/></ruleset>", "<ruleset name=\"Cyphertite.com\" f=\"Cyphertite.com.xml\"><securecookie host=\"^(?:.*\\.)?cyphertite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cypouz.com\" platform=\"cacert\" f=\"Cypouz.com.xml\"><securecookie host=\"^photo\\.cypouz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyprus Satellite (partial)\" default_off=\"failed ruleset test\" f=\"Cyprus_Satellite.xml\"><securecookie host=\"^forums\\.satellitecyprus\\.com$\" name=\".+\"/><rule from=\"^http://forums\\.satellitecyprus\\.com/\" to=\"https://forums.satellitecyprus.com/\"/></ruleset>", "<ruleset name=\"Cyrus.Foundation\" f=\"Cyrus.Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyscon.net (partial)\" f=\"Cyscon.net.xml\"><rule from=\"^http://stats\\.cyscon\\.net/\" to=\"https://stats.cyscon.net/\"/></ruleset>", "<ruleset name=\"Cysec Labs.com\" f=\"Cysec_Labs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Czech Technical University in Prague\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Czech-Technical-University-in-Prague.xml\"><securecookie host=\"^.*\\.cvut\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cvut\\.cz/\" to=\"https://www.cvut.cz/\"/><rule from=\"^http://(akce|helpdesk|jira|usermap)\\.cvut\\.cz/\" to=\"https://$1.cvut.cz/\"/></ruleset>", "<ruleset name=\"D' Technology Weblog\" default_off=\"mismatch\" f=\"D-Technology-Weblog.xml\"><rule from=\"^http://(?:www\\.)?ditii\\.com/\" to=\"https://www.ditii.com/\"/></ruleset>", "<ruleset name=\"D.me\" f=\"D.me.xml\"><rule from=\"^http://d\\.me/\" to=\"https://delicious.com/\"/></ruleset>", "<ruleset name=\"D.pr\" f=\"D.pr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"d0wn.biz\" f=\"D0wn.biz.xml\"><securecookie host=\"^d0wn\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D2jsp.org\" f=\"D2jsp.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"d3.ru\" f=\"D3.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D4design Studios.com (false MCB)\" platform=\"mixedcontent\" f=\"D4design_Studios.com.xml\"><securecookie host=\"^(?:www)?\\.d4designstudios\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?d4designstudios\\.com/\" to=\"https://www.d4designstudios.com/\"/></ruleset>", "<ruleset name=\"D66.nl\" f=\"D66.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DAB Bank\" f=\"DABBank.xml\"><rule from=\"^http://([^/:@\\.]+)\\.dab-bank\\.de/\" to=\"https://$1.dab-bank.de/\"/></ruleset>", "<ruleset name=\"D.A.Consortium\" f=\"DAConsortium.xml\"><rule from=\"^http://www\\.dac\\.co\\.jp/\" to=\"https://www.dac.co.jp/\"/></ruleset>", "<ruleset name=\"DALnet\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DALnet.xml\"><securecookie host=\"^(?:.+\\.)?dal\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dal\\.net/\" to=\"https://www.dal.net/\"/><rule from=\"^http://(inspiration|users)\\.dal\\.net/\" to=\"https://$1.dal.net/\"/></ruleset>", "<ruleset name=\"DANTE-analytics.net\" default_off=\"failed ruleset test\" f=\"DANTE-analytics.net.xml\"><securecookie host=\"^(?:www\\.)?dante-analytics\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DANTE.net (partial)\" f=\"DANTE.net.xml\"><exclusion pattern=\"^http://news\\.dante\\.net/+(?!_layouts/|SiteCollectionImages/)\"/><exclusion pattern=\"^http://www\\.dante\\.net/+(?!_catalogs/|_layouts/|_login/|_trust/)\"/><rule from=\"^http://(news|weblogin|www)\\.dante\\.net/\" to=\"https://$1.dante.net/\"/></ruleset>", "<ruleset name=\"DAR.fm (partial)\" f=\"DAR.fm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DARCH.ch\" default_off=\"broken\" f=\"DARCH.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DATART INTERNATIONAL a.s.\" f=\"DATART.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DB-IP.com\" f=\"DB-IP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DBS\" f=\"DBS.xml\"><rule from=\"^http://(?:www\\.)?dbs\\.([^/:@]+)/\" to=\"https://www.dbs.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dBforums.com\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"DBforums.xml\"><securecookie host=\"^(?:www)?\\.dbforums\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC801.org\" f=\"DC801.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DCBoEE.org\" f=\"DCBoEE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DCCC.org\" f=\"DCCC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC Comics.com\" default_off=\"expired, mismatched, self-signed\" f=\"DC_Comics.com.xml\"><rule from=\"^http://(?:www\\.)?dccomics\\.com/\" to=\"https://www.dccomics.com/\"/></ruleset>", "<ruleset name=\"DC Power.eu (false MCB)\" platform=\"mixedcontent\" f=\"DC_Power.eu.xml\"><securecookie host=\"^(?:w*\\.)?dcpower\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC Vote.org\" f=\"DC_Vote.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DD-WRT.com (partial)\" f=\"DD-WRT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDM CDN.com\" f=\"DDM_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDS2DDS.com\" default_off=\"failed ruleset test\" f=\"DDS2DDS.com.xml\"><securecookie host=\"^(?:w*\\.)?(?:dds2dds|kaizencrossfit)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(dds2dds|kaizencrossfit)\\.com/\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"DDoSBreak.com\" f=\"DDoSBreak.com.xml\"><securecookie host=\"^(?:www\\.)?ddosbreak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DE-CIX\" f=\"DE-CIX.xml\"><exclusion pattern=\"^http://lg\\.de-cix\\.net\"/><rule from=\"^http://de-cix\\.net/\" to=\"https://www.de-cix.net/\"/><rule from=\"^http://([^/:@]+)?\\.de-cix\\.net/\" to=\"https://$1.de-cix.net/\"/></ruleset>", "<ruleset name=\"DEALZON\" default_off=\"self-signed\" f=\"DEALZON.xml\"><securecookie host=\"^dealzon\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dealzon\\.com/\" to=\"https://dealzon.com/\"/></ruleset>", "<ruleset name=\"Vase DEDRA s.r.o.\" f=\"DEDRA.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DEEWR\" f=\"DEEWR.xml\"><rule from=\"^http://(?:www\\.)?prisms\\.deewr\\.gov\\.au/\" to=\"https://prisms.deewr.gov.au/\"/></ruleset>", "<ruleset name=\"DEF CON Groups.org\" f=\"DEF_CON_Groups.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DEMO\" default_off=\"mismatch\" f=\"DEMO.xml\"><securecookie host=\"^demo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?demo\\.com/\" to=\"https://demo.com/$1/\"/></ruleset>", "<ruleset name=\"DENX.de\" default_off=\"self-signed\" f=\"DENX.de.xml\"><securecookie host=\"^www\\.denx\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?denx\\.de/\" to=\"https://www.denx.de/\"/></ruleset>", "<ruleset name=\"DF.eu\" f=\"DF.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFN-CERT.de\" f=\"DFN-CERT.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFTBA Records\" default_off=\"failed ruleset test\" f=\"DFTBA_Records.xml\"><securecookie host=\"^\\.dftba\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFiles.eu\" f=\"DFiles.eu.xml\"><securecookie host=\"^\\.dfiles\\.eu$\" name=\".+\"/><rule from=\"^http://(static\\d+\\.|www\\.)?dfiles\\.eu/\" to=\"https://$1dfiles.eu/\"/></ruleset>", "<ruleset name=\"DGEX.com\" f=\"DGEX.com.xml\"><securecookie host=\"^\\.dgex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHL.de\" platform=\"mixedcontent\" f=\"DHL.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mobile\\.dhl\\.de/\" to=\"https://mobil.dhl.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHS.gov (partial)\" f=\"DHS.gov.xml\"><exclusion pattern=\"^http://www\\.dhs\\.gov/+(?!misc/|profiles/dhs_gov/(?:modul|them)es/|sites/|xlibrary/videos/\\w+_thumb\\.jpg)\"/><securecookie host=\"^(?:esta\\.cbp|goes-app\\.cbp|www\\.llis|universalenroll)\\.dhs\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHgate.com (partial)\" f=\"DHgate.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dhgate\\.com/(?:\\?.*)?$\"/><rule from=\"^http://(?:secure\\.|www\\.)?dhgate\\.com/\" to=\"https://secure.dhgate.com/\"/></ruleset>", "<ruleset name=\"DIYbanter\" f=\"DIYbanter.xml\"><securecookie host=\"^(?:w*\\.)?diybanter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DJKit\" f=\"DJKit.xml\"><securecookie host=\"^\\.djkit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutsche Kreditbank\" f=\"DKB.de.xml\"><securecookie host=\"^(?:banking|m|www)\\.dkb\\.de$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?dkb\\.de/\" to=\"https://$1dkb.de/\"/></ruleset>", "<ruleset name=\"DKiT.ie (partial)\" f=\"DKiT.ie.xml\"><securecookie host=\"^\\.dkit\\.io$\" name=\"^SESS[\\da-f]{32}$\"/><securecookie host=\"^(?:help|owncloud|passwordreset)\\.dkit\\.io$\" name=\".+\"/><rule from=\"^http://dkit\\.ie/\" to=\"https://www.dkit.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DL-rms.com\" f=\"DL-rms.com.xml\"><rule from=\"^http://content\\.dl-rms\\.com/\" to=\"https://content.dl-rms.com/\"/></ruleset>", "<ruleset name=\"DLitz.net\" f=\"DLitz.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DM.id.lv (partial)\" f=\"DM.id.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DMAchoice.org\" f=\"DMAchoice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DMCA.com\" f=\"DMCA_Services.xml\"><securecookie host=\"^www\\.dmca\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dmca\\.com/\" to=\"https://www.dmca.com/\"/><rule from=\"^http://images\\.dmca\\.com/\" to=\"https://images.dmca.com/\"/></ruleset>", "<ruleset name=\"DMLP.org (partial)\" default_off=\"failed ruleset test\" f=\"DMLP.org.xml\"><rule from=\"^http://(?:www\\.)?citmedialaw\\.org/\" to=\"https://www.citmedialaw.org/\"/><rule from=\"^http://(?:www\\.)?dmlp\\.org/(?!favicon\\.ico|files/|misc/|modules/|sites/)\" to=\"https://www.dmlp.org/\"/></ruleset>", "<ruleset name=\"DMS-Sweden.com\" f=\"DMS-Sweden.com.xml\"><rule from=\"^http://(?:www\\.)?dms-sweden\\.com/\" to=\"https://www.dms-sweden.com/\"/></ruleset>", "<ruleset name=\"DMU.ac.uk (partial)\" f=\"DMU.xml\"><securecookie host=\"^(?:(?:chooseyourhallroom|idpedir|www\\.library|password|vle|webmail|www)\\.)?dmu\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://((?:chooseyourhallroom|idpedir|www\\.library|password|vle|webmail|www)\\.)?dmu\\.ac\\.uk/\" to=\"https://$1dmu.ac.uk/\"/></ruleset>", "<ruleset name=\"DMX Austria\" default_off=\"self-signed\" f=\"DMX-Austria.xml\"><securecookie host=\"^www\\.dmx-austria\\.at$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dmx-austria\\.at/\" to=\"https://www.dmx-austria.at/\"/></ruleset>", "<ruleset name=\"DM mailing list.com\" f=\"DM_mailing_list.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DM tracker.com\" f=\"DM_tracker.com.xml\"><securecookie host=\"^.*\\.dmtracker\\.com$\" name=\".+\"/><rule from=\"^http://(extended|vs)\\.dmtracker\\.com/\" to=\"https://$1.dmtracker.com/\"/></ruleset>", "<ruleset name=\"DMflex.com (partial)\" default_off=\"expired\" f=\"DMflex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.com\" f=\"DN.com.xml\"><securecookie host=\"^www\\.dn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.dk (partial)\" f=\"DN.dk.xml\"><exclusion pattern=\"^http://www\\.dn\\.dk/([dD]efault\\.aspx|\\?).*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.no\" f=\"DN.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNA.Land\" f=\"DNA.Land.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNA Serum\" default_off=\"failed ruleset test\" f=\"DNA_Serum.xml\"><securecookie host=\"^(?:.*\\.)?dnaserum\\.com$\" name=\".+\"/><securecookie host=\"^\\.tepamine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNB.no (partial)\" f=\"DNB.no.xml\"><exclusion pattern=\"^http://(?:husrom|www3)\\.dnb\\.no/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://dnb\\.no/\" to=\"https://www.dnb.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNS-OARC.net\" f=\"DNS-OARC.net.xml\"><rule from=\"^http://dns-oarc\\.net/\" to=\"https://www.dns-oarc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSChain.net\" f=\"DNSChain.net.xml\"><rule from=\"^http://(?:www\\.)?dnschain\\.net/\" to=\"https://forums.okturtles.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSCrypt.eu\" f=\"DNSCrypt.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSCurve\" f=\"DNSCurve.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSQuery.org\" f=\"DNSQuery.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.dnsquery\\.org/\" to=\"https://dnsquery.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSSEC-Tools\" f=\"DNSSEC-Tools.xml\"><securecookie host=\"^(?:www\\.)?dnssec-tools\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSSEC-Validator.cz\" f=\"DNSSEC-Validator.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSWatch.info\" f=\"DNSWatch.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNS History.org\" f=\"DNS_History.org.xml\"><securecookie host=\"^dnshistory\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dnshistory\\.org/\" to=\"https://dnshistory.org/\"/></ruleset>", "<ruleset name=\"DNS leak test.com\" f=\"DNS_leak_test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSdynamic\" f=\"DNSdynamic.xml\"><securecookie host=\"^(?:www\\.)?dnsdynamic\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSstuff.com (partial)\" f=\"DNSstuff.com.xml\"><exclusion pattern=\"^http://www\\.dnsstuff\\.com/+(?!dnsmedia/|images/|member(?:$|[?/])|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNTX.com\" f=\"DNTX.com.xml\"><securecookie host=\"^www\\.dntx\\.com$\" name=\".+\"/><rule from=\"^http://dntx\\.com/([^?]*).*\" to=\"https://www.dntx.com/$1\"/><rule from=\"^http://www\\.dntx\\.com/\" to=\"https://www.dntx.com/\"/></ruleset>", "<ruleset name=\"DNTrck.com\" f=\"DNTrck.com.xml\"><rule from=\"^http://(p1|www)\\.dntrck\\.com/\" to=\"https://$1.dntrck.com/\"/></ruleset>", "<ruleset name=\"DNV.com (partial)\" f=\"DNV.com.xml\"><securecookie host=\"^exchange\\.dnv\\.com$\" name=\".+\"/><rule from=\"^http://exchange\\.dnv\\.com/\" to=\"https://exchange.dnv.com/\"/></ruleset>", "<ruleset name=\"DOCLIX (partial)\" f=\"DOCLIX.xml\"><rule from=\"^http://(?:ads|track)\\.doclix\\.com/\" to=\"https://track.doclix.com/\"/><rule from=\"^http://(advertis|publish)er\\.doclix\\.com/\" to=\"https://$1er.doclix.com/\"/></ruleset>", "<ruleset name=\"DOI.org\" f=\"DOI.org.xml\"><securecookie host=\"(.+\\.)?doi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DPMC.gov.au\" f=\"DPMC.xml\"><securecookie host=\"^\\.dpmc\\.gov\\.au$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DR.com.tr\" default_off=\"failed ruleset test\" f=\"DR.com.tr.xml\"><securecookie host=\"^(?:.*\\.)?dr\\.com\\.tr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dr\\.com\\.tr/\" to=\"https://www.dr.com.tr/\"/></ruleset>", "<ruleset name=\"DR.dk\" f=\"DR.dk.xml\"><exclusion pattern=\"^http://www\\.dr\\.dk/(?:radio/.|mu/|assets/js/004/dr/elements/dist/swf/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DRG Network.com (partial)\" f=\"DRG_Network.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DRM.info\" default_off=\"mismatched\" f=\"DRM.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DSLReports\" f=\"DSLReports.xml\"><securecookie host=\"^.*\\.dslreports\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?broadbandreports\\.com/\" to=\"https://www.dslreports.com/\"/><rule from=\"^http://(www\\.)?dslreports\\.ca/\" to=\"https://www.dslreports.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DSNR Media Group (partial)\" default_off=\"failed ruleset test\" f=\"DSNR-Media-Group.xml\"><rule from=\"^http://ad\\.z5x\\.net/\" to=\"https://ad.rmxads.net/\"/></ruleset>", "<ruleset name=\"DS Internals.com\" f=\"DS_Internals.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DShield.org\" f=\"DShield.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTInt.com (partial)\" f=\"DTInt.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTunnel\" platform=\"mixedcontent\" f=\"DTunnel.xml\"><securecookie host=\"^(?:.+\\.)?dtunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dtunnel\\.com/\" to=\"https://dtunnel.com/\"/></ruleset>", "<ruleset name=\"DUG.net.pl\" f=\"DUG.net.pl.xml\"><rule from=\"^http://www\\.dug\\.net\\.pl/\" to=\"https://dug.net.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DVDFab\" default_off=\"TLS error\" f=\"DVDFab.xml\"><rule from=\"^http://(?:www\\.)?dvdfab\\.(com|net)/\" to=\"https://www.dvdfab.$1/\"/></ruleset>", "<ruleset name=\"DVIDS Hub.net\" f=\"DVIDS_Hub.net.xml\"><securecookie host=\"^\\.dvidshub\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?dvidshub\\.net/\" to=\"https://$1dvidshub.net/\"/><rule from=\"^http://(?:d\\d\\.)?static\\.dvidshub\\.net/\" to=\"https://static.dvidshub.net/\"/><rule from=\"^http://(?:www\\.)?nasaimages\\.org/+\" to=\"https://www.dvidshub.net/unit/NASA\"/></ruleset>", "<ruleset name=\"DW.de (partial)\" f=\"DW.de.xml\"><rule from=\"^http://social\\.dw\\.de/\" to=\"https://social.dw.de/\"/></ruleset>", "<ruleset name=\"DWCDN.net\" f=\"DWCDN.net.xml\"><securecookie host=\"^\\.dwcdn\\.net$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dwheeler.com\" default_off=\"expired, mismatch\" f=\"DWheeler.xml\"><rule from=\"^http://(?:www\\.)?dwheeler\\.com/\" to=\"https://www.dwheeler.com/\"/></ruleset>", "<ruleset name=\"DWin1.com\" f=\"DWin1.com.xml\"><rule from=\"^http://(?:www\\.)?dwin1\\.com/\" to=\"https://www.dwin1.com/\"/></ruleset>", "<ruleset name=\"DYC.edu (partial)\" default_off=\"expired, self-signed\" f=\"DYC.edu.xml\"><securecookie host=\"^\\.opensource\\.dyc\\.edu$\" name=\".+\"/><rule from=\"^http://(opensource|virtual)\\.dyc\\.edu/\" to=\"https://$1.dyc.edu/\"/></ruleset>", "<ruleset name=\"DZone.com (partial)\" f=\"DZone.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D Franke.us\" f=\"D_Franke.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D Vatril.cz\" platform=\"cacert\" f=\"D_Vatril.cz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaWanda (partial)\" f=\"DaWanda.xml\"><exclusion pattern=\"^http://(?:de|en|es|fr|it|nl|pl)\\.dawanda.com/(?!(?:account/login|cms/c/\\w\\w/seller-portal)(?:$|\\?|/)|cms/(?:image|javascript|stylesheet)s/|_pi_/|uo/|trck/|widget/)\"/><rule from=\"^http://(assets|de|en|es|fr|it|nl|pl)\\.dawanda\\.com/\" to=\"https://$1.dawanda.com/\"/><rule from=\"^http://(?:img\\.dawanda|s3[12]\\.dawandastatic)\\.com/\" to=\"https://dawandaimages.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"Da Capo Alfine-dd.de\" f=\"Da_Capo_Alfine-dd.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dabs (partial)\" f=\"Dabs.xml\"><rule from=\"^http://(?:www\\.)?dabs\\.com/(?=account|Article\\.aspx|articles/|asp-images/|blank\\.html|(?:blog|products/recently-viewed|wishlist)(?:$|[?/])|brands/(?!$)|[cC]ss/|checkout|clearance-corner|cms/|contact/|forms/|forum/|go/|[iI]mages/|learn-more|my-dabs|register|[sS]cripts/|SimpleContent/)\" to=\"https://www.dabs.com/\"/><rule from=\"^http://reporting\\.dabs\\.com/\" to=\"https://reporting.dabs.com/\"/></ruleset>", "<ruleset name=\"daemon-systems.org\" f=\"Daemon-systems.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dafdirect.org\" default_off=\"failed ruleset test\" f=\"Dafdirect.org.xml\"><rule from=\"^http://(?:www\\.)?dafdirect\\.org/\" to=\"https://www.dafdirect.org/\"/></ruleset>", "<ruleset name=\"dafont.com (partial)\" default_off=\"expired\" f=\"Dafont.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dafont\\.com/(?:[\\w\\-]+\\.font$|css/|favicon\\.ico|forum/(?:$|read/)|img/|theme\\.php)\"/><rule from=\"^http://(?:img\\.|(www\\.))?dafont\\.com/\" to=\"https://$1dafont.com/\"/><rule from=\"^https://(www\\.)?dafont\\.com/([\\w\\-]+\\.font$|forum/(?:$|read/))\" to=\"http://$1dafont.com/$2\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Daft.ie\" default_off=\"causes image problems\" f=\"Daft.ie.xml\"><securecookie host=\"^www\\.daft\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daft Media (partial)\" f=\"Daft_Media.xml\"><rule from=\"^http://m(0|1)\\.dmlimg\\.com/\" to=\"https://m$1.dmlimg.com/\"/><rule from=\"^http://c(0|1)\\.dmstatic\\.com/\" to=\"https://c$1.dmstatic.com/\"/></ruleset>", "<ruleset name=\"Dagbladet.no (false MCB)\" platform=\"mixedcontent\" f=\"Dagbladet.no-falsemixed.xml\"><securecookie host=\"^livebeta\\.dagbladet\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dagbladet.no (partial)\" f=\"Dagbladet.no.xml\"><exclusion pattern=\"^http://www\\.dagbladet\\.no/+(?!favicon\\.ico|.+(?:css|jpg|png)(?:$|\\?))\"/><rule from=\"^http://(gfx|www)\\.dagbladet\\.no/\" to=\"https://$1.dagbladet.no/\"/></ruleset>", "<ruleset name=\"Dagens Bedste.de (partial)\" f=\"Dagens_Bedste.dk.xml\"><securecookie host=\"^(?:dagensbedste|dagensgetaway|lokaldealen)-dbapp\\.netdna-ssl\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.dbapp\\.netdna-cdn\\.com/\" to=\"https://$1-dbapp.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dagensgetaway.dk\" default_off=\"handshake fails\" f=\"Dagensgetaway.dk.xml\"><securecookie host=\"^(?:www)?\\.dagensgetaway\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Express (partial)\" default_off=\"Breaks site\" f=\"Daily-Express.xml\"><securecookie host=\"^www\\.express\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://images\\.dailyexpress\\.co\\.uk/\" to=\"https://s3.amazonaws.com/images.dailyexpress.co.uk/\"/><rule from=\"^http://(?:www\\.)?express\\.co\\.uk/\" to=\"https://www.express.co.uk/\"/><rule from=\"^http://cdn\\.images\\.express\\.co\\.uk/\" to=\"https://d2gsbqw9zf5tyw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Daily Herald\" f=\"Daily-Herald.xml\"><securecookie host=\"^.*\\.dailyherald\\.com$\" name=\".*\"/><rule from=\"^http://(classifieds\\.|prev\\.|www\\.)?dailyherald\\.com/\" to=\"https://$1dailyherald.com/\"/><rule from=\"^http://homes\\.dailyherald\\.com/$\" to=\"https://www.dailyherald.com/realestate/\"/></ruleset>", "<ruleset name=\"Daily Star (partial)\" f=\"Daily-Star.xml\"><rule from=\"^http://(?:cdn\\.)?images\\.dailystar\\.co\\.uk/\" to=\"https://d1mlsq9roc275d.cloudfront.net/\"/><rule from=\"^http://(?:cdn\\.)?images\\.dailystar-uk\\.co\\.uk/\" to=\"https://d1gdw8d643djmp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Daily\" f=\"Daily.xml\"><rule from=\"^http://(?:www\\.)?daily\\.co\\.uk/\" to=\"https://www.daily.co.uk/\"/><rule from=\"^http://(webmail)\\.daily\\.co\\.uk/\" to=\"https://$1.daily.co.uk/\"/></ruleset>", "<ruleset name=\"DailyDot.com (partial)\" platform=\"mixedcontent\" f=\"DailyDot.xml\"><securecookie host=\"^\\.dailydot\\.com$\" name=\"^__qca$\"/><rule from=\"^http://dailydot\\.com/\" to=\"https://www.dailydot.com/\"/><rule from=\"^https?://cdn0\\.dailydot\\.com/\" to=\"https://dailydot.s3.amazonaws.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DailyHiit.com\" f=\"DailyHiit.com.xml\"><securecookie host=\"^\\.dailyhiit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DailyKos.com (problematic)\" default_off=\"mismatched\" f=\"DailyKos.com-problematic.xml\"><rule from=\"^http://images(1|2)?\\.dailykos\\.com/\" to=\"https://images$1.dailykos.com/\"/><rule from=\"^http://(?:comics|elections|labor)\\.dailykos\\.com/([cij])/\" to=\"https://www.dailykos.com/$1/\"/></ruleset>", "<ruleset name=\"DailyKos.com\" f=\"DailyKos.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DailyPix\" f=\"DailyPix.xml\"><securecookie host=\"^(?:w*\\.)?(?:dailypix\\.me|lolzparade\\.com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Fantasy Radio\" default_off=\"failed ruleset test\" f=\"Daily_Fantasy_Radio.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Mail (problematic)\" default_off=\"mismatched\" f=\"Daily_Mail-problematic.xml\"><rule from=\"^http://jobs\\.dailymail\\.co\\.uk/(cs|image)s/\" to=\"https://jobs.dailymail.co.uk/$1s/\"/></ruleset>", "<ruleset name=\"Daily Mail and General Trust\" default_off=\"mismatched\" f=\"Daily_Mail_and_General_Trust.xml\"><securecookie host=\"^dmgt\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dmgt\\.co\\.uk/\" to=\"https://dmgt.co.uk/\"/></ruleset>", "<ruleset name=\"Daily NK.com (partial)\" f=\"Daily_NK.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Star (mismatched)\" default_off=\"mismatched\" f=\"Daily_Star-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://dailystar\\.co\\.uk/\" to=\"https://www.dailystar.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dailyinfo.co.uk\" f=\"Dailyinfo.co.uk.xml\"><rule from=\"^http://(www\\.)?dailyinfo\\.co\\.uk/\" to=\"https://www.dailyinfo.co.uk/\"/></ruleset>", "<ruleset name=\"Dailymotion (default off)\" default_off=\"breaks some embedded videos\" f=\"Dailymotion.xml\"><exclusion pattern=\"^http://(?:www\\.)?dailymotion\\.com/(?:cdn/[\\w-]+/video/|crossdomain\\.xml$)\"/><securecookie host=\"^\\.dailymotion\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.dailymotion\\.com$\" name=\".+\"/><rule from=\"^http://(erroracct\\.|www\\.)?dailymotion\\.com/\" to=\"https://$1dailymotion.com/\"/><rule from=\"^http://(s\\d|static(?:\\d|s\\d-ssl))\\.dmcdn\\.net/\" to=\"https://$1.dmcdn.net/\"/><rule from=\"^http://ak2\\.static\\.dailymotion\\.com/\" to=\"https://static1-ssl.dmcdn.net/\"/><rule from=\"^http://(s\\.|www\\.)?dmcloud\\.net/\" to=\"https://$1dmcloud.net/\"/><rule from=\"^http://support\\.dmcloud\\.net/\" to=\"https://dmcloud.zendesk.com/\"/></ruleset>", "<ruleset name=\"dakko.us (partial)\" f=\"Dakko.us.xml\"><rule from=\"^http://(www-s\\.)?dakko\\.us/\" to=\"https://$1dakko.us/\"/><rule from=\"^http://www\\.dakko\\.us/\" to=\"https://www-s.dakko.us/\"/></ruleset>", "<ruleset name=\"Dale Macartney.com\" default_off=\"expired\" f=\"Dale_Macartney.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Damballa.com (partial)\" f=\"Damballa.com.xml\"><securecookie host=\"^\\.damballa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Damn Small Linux.org\" default_off=\"expired, self-signed\" f=\"Damn_Small_Linux.org.xml\"><rule from=\"^http://(?:www\\.)?damnsmalllinux\\.org/\" to=\"https://damnsmalllinux.org/\"/></ruleset>", "<ruleset name=\"Dan Bull\" default_off=\"mismatch\" f=\"Dan-Bull.xml\"><securecookie host=\"^itsdanbull\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?itsdanbull\\.com/\" to=\"https://itsdanbull.com/\"/></ruleset>", "<ruleset name=\"Dan.me.uk\" f=\"Dan.me.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DanID.dk\" f=\"DanID.dk.xml\"><securecookie host=\"^applet\\.danid\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dan blah.com (false MCB)\" platform=\"mixedcontent\" f=\"Dan_blah.com-falsemixed.xml\"><securecookie host=\"^\\.danblah\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dan blah.com (partial)\" f=\"Dan_blah.com.xml\"><rule from=\"^http://(www\\.)?danblah\\.com/(?=modules/|sites/)\" to=\"https://$1danblah.com/\"/></ruleset>", "<ruleset name=\"DanceSafe.org\" f=\"DanceSafe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dancing Astronaut (partial)\" f=\"Dancing_Astronaut.xml\"><rule from=\"^http://(static|uploads)\\.dancingastronaut\\.com/\" to=\"https://$1.dancingastronaut.com/\"/></ruleset>", "<ruleset name=\"DandB.com\" f=\"DandB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D&B (partial)\" f=\"DandB.xml\"><rule from=\"^http://(www\\.)?dnb\\.com/(auth/|product/(?:contract\\.htm|support-files/))\" to=\"https://$1dnb.com/$2\"/></ruleset>", "<ruleset name=\"dangpu.com\" f=\"Dangpu.com.xml\"><securecookie host=\"^\\.?dangpu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"danhlode.com\" f=\"Danhlode.com.xml\"><securecookie host=\"^\\.danhlode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaniWeb.com\" f=\"DaniWeb.com.xml\"><securecookie host=\"^\\.www\\.daniweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Berrange.com\" f=\"Daniel-P-Berrange.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daniel Miessler.com\" f=\"Daniel_Miessler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Danny Mekic.com\" f=\"Danny_Mekic.com.xml\"><securecookie host=\"^(?:www)?\\.dannymekic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Danske Bank\" f=\"DanskeBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DareBoost.com (partial)\" f=\"DareBoost.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daring Fireball.net\" f=\"Daring_Fireball.xml\"><rule from=\"^http://www\\.daringfireball\\.net/\" to=\"https://daringfireball.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darjeelin.fr\" f=\"Darjeelin.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DarkMoney.cc\" default_off=\"failed ruleset test\" f=\"DarkMoney.cc.xml\"><securecookie host=\"^(?:w*\\.)?darkmoney\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dark Reading.com\" default_off=\"mismatched, self-signed\" f=\"Dark_Reading.com.xml\"><securecookie host=\"^\\.darkreading\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darkcoin Foundation.org\" f=\"Darkcoin_Foundation.org.xml\"><securecookie host=\"^www\\.darkcoinfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"darkfasel.net\" platform=\"cacert\" f=\"Darkfasel.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darkmail.info\" f=\"Darkmail.info.xml\"><rule from=\"^http://(?:www\\.)?darkmail\\.info/\" to=\"https://www.darkmail.info/\"/></ruleset>", "<ruleset name=\"darktable.org\" f=\"Darktable.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darling HQ.com\" f=\"Darling_HQ.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darmstadt University of Applied Sciences (partial)\" f=\"Darmstadt_University_of_Applied_Sciences.xml\"><securecookie host=\"^(?:(?:\\.?www\\.)?fbi|email|www)\\.h-da\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?h-da\\.de/\" to=\"https://www.h-da.de/\"/><rule from=\"^http://(autodiscover|(?:www\\.|webmail\\.)?fbi|email|webmail)\\.h-da\\.de/\" to=\"https://$1.h-da.de/\"/><rule from=\"^http://mail\\.h-da\\.de/(?:\\?.*)?$\" to=\"https://webmail.h-da.de/owa\"/></ruleset>", "<ruleset name=\"Dart Lang.org (partial)\" f=\"Dart_Lang.org.xml\"><securecookie host=\"^pub\\.dartlang\\.org$\" name=\".+\"/><rule from=\"^http://dartlang\\.org/\" to=\"https://www.dartlang.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dartmouth College (partial)\" f=\"Dartmouth_College.xml\"><securecookie host=\"^(?:.+\\.)?dartmouth\\.edu$\" name=\".+\"/><rule from=\"^http://((?:briefings|dimensions|library|login|tower|websso|www)\\.)?dartmouth\\.edu/\" to=\"https://$1dartmouth.edu/\"/><rule from=\"^http://arts\\.dartmouth\\.edu/\" to=\"https://dartmouth-arts.herokuapp.com/\"/><rule from=\"^http://search\\.dartmouth\\.edu/(?:.*)\" to=\"https://www.dartmouth.edu/~search/\"/></ruleset>", "<ruleset name=\"Das-labor.org\" f=\"Das-labor.org.xml\"><securecookie host=\"^(?:www\\.)?das-labor\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Das Parlament (partial)\" f=\"Das_Parlament.xml\"><rule from=\"^http://www\\.das-parlament\\.de/\" to=\"https://www.das-parlament.de/\"/></ruleset>", "<ruleset name=\"bitmovin GmbH\" f=\"Dash-Player.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dash.org\" f=\"Dash.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dashlane.com (partial)\" f=\"Dashlane.com.xml\"><securecookie host=\"^www\\.dashlane\\.com$\" name=\".+\"/><rule from=\"^http://dashlane\\.com/\" to=\"https://www.dashlane.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dashpay.io (partial)\" f=\"Dashpay.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dasource.ch\" default_off=\"self-signed\" f=\"Dasource.xml\"><rule from=\"^http://(?:www\\.)?dasource\\.ch/\" to=\"https://www.dasource.ch/\"/></ruleset>", "<ruleset name=\"Dassault Falcon\" f=\"Dassault_Falcon.xml\"><securecookie host=\"^.+\\.(?:dassaultfalcon|falconjet)\\.com$\" name=\".+\"/><rule from=\"^http://(?:dassaultfalcon|(?:www\\.)?falconjet)\\.com/\" to=\"https://www.dassaultfalcon.com/\"/><rule from=\"^http://(customer|insight|sqr|wtsdc|www)\\.dassaultfalcon\\.com/\" to=\"https://$1.dassaultfalcon.com/\"/><rule from=\"^http://(aht|cats|devworks|qlik|spares|thebridge|thin)\\.falconjet\\.com/\" to=\"https://$1.falconjet.com/\"/></ruleset>", "<ruleset name=\"Dassault Systèmes (partial)\" f=\"Dassault_Systemes.xml\"><exclusion pattern=\"^http://(?:www\\.)?3ds\\.com/(?!ajax/|favicon\\.ico|fileadmin/|index\\.php\\?eID=dasty_dsstore_ajax|my-account/|typo3temp/|uploads/)\"/><securecookie host=\"^iam\\.3ds\\.com$\" name=\".+\"/><rule from=\"^http://(iam\\.|www\\.)?3ds\\.com/\" to=\"https://$13ds.com/\"/><rule from=\"^http://a\\d\\.media\\.3ds\\.com/\" to=\"https://www.3ds.com/\"/></ruleset>", "<ruleset name=\"Dastelefonbuch.de\" f=\"Dastelefonbuch.de.xml\"><rule from=\"^http://www2\\.dastelefonbuch\\.de/\" to=\"https://www2.dastelefonbuch.de/\"/><rule from=\"^http://mein2\\.dastelefonbuch\\.de/\" to=\"https://mein2.dastelefonbuch.de/\"/></ruleset>", "<ruleset name=\"DatStat\" f=\"DatStat.xml\"><securecookie host=\"^www\\.datstat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datstat\\.com/\" to=\"https://www.datstat.com/\"/><rule from=\"^http://([\\w-]+)\\.datstathost\\.com/\" to=\"https://$1.datstathost.com/\"/></ruleset>", "<ruleset name=\"Data Design (mismatches)\" default_off=\"mismatch\" f=\"Data-Design-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?webmercs\\.no$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webmercs\\.(?:com|no)/\" to=\"https://www.webmercs.no/\"/><rule from=\"^http://img2\\.wmxstatic\\.com/\" to=\"https://img2.wmxstatic.com/\"/></ruleset>", "<ruleset name=\"Data Design (partial)\" f=\"Data-Design.xml\"><securecookie host=\"^secure\\.webmercs\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.webmercs\\.com/\" to=\"https://secure.webmercs.com/\"/></ruleset>", "<ruleset name=\"Data Protection Commissioner\" f=\"Data-Protection-Commissioner.xml\"><securecookie host=\"^(?:www\\.)?dataprotection\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data.com\" f=\"Data.com.xml\"><securecookie host=\"^.+\\.data\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?data\\.com/\" to=\"https://www.data.com/\"/><rule from=\"^http://(connect|(?:www\\.)?jigsaw|static)\\.data\\.com/\" to=\"https://$1.data.com/\"/></ruleset>", "<ruleset name=\"data.fm\" f=\"Data.fm.xml\"><securecookie host=\".*\\.data\\.fm$\" name=\".*\"/><rule from=\"^http://data\\.fm/\" to=\"https://data.fm/\"/><rule from=\"^http://([\\w\\-_]+)\\.data\\.fm/\" to=\"https://$1.data.fm/\"/></ruleset>", "<ruleset name=\"Data.gov (partial)\" f=\"Data.gov.xml\"><exclusion pattern=\"^http://labs\\.data\\.gov/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://labs\\.data\\.gov/.*\" to=\"https://www.data.gov/labs\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataCamp.com\" f=\"DataCamp.com.xml\"><securecookie host=\"^api\\.datacamp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datacamp\\.com/\" to=\"https://www.datacamp.com/\"/><rule from=\"^http://api\\.datacamp\\.com/\" to=\"https://api.datacamp.com/\"/></ruleset>", "<ruleset name=\"DataCell\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DataCell.xml\"><securecookie host=\"^(?:paygate|www)\\.datacell\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datacell\\.(?:com|is)/\" to=\"https://www.datacell.com/\"/><rule from=\"^http://paygate\\.datacell\\.com/\" to=\"https://paygate.datacell.com/\"/></ruleset>", "<ruleset name=\"DataCenterKnowledge.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DataCenterKnowledge.com.xml\"><exclusion pattern=\"^http://jobs\\.datacenterknowledge\\.com/(?:$|a/)\"/><rule from=\"^http://(www\\.)?datacenterknowledge\\.com/\" to=\"https://$1datacenterknowledge.com/\"/><rule from=\"^http://jobs\\.datacenterknowledge\\.com/c/\" to=\"https://datacenterknowledge.jobamatic.com/c/\"/></ruleset>", "<ruleset name=\"Datacoup.com (partial)\" f=\"DataCoup.com.xml\"><securecookie host=\"^(?:www\\.)?datacoup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataDirect.com\" default_off=\"failed ruleset test\" f=\"DataDirect.com.xml\"><securecookie host=\"^blogs\\.datadirect\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datadirect\\.com/[^?]*\" to=\"https://www.progress.com/products/datadirect\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"data.gov.au\" f=\"DataGovAU.xml\"><rule from=\"^http://(?:www\\.)?data\\.gov\\.au/\" to=\"https://data.gov.au/\"/></ruleset>", "<ruleset name=\"dataHC.com\" f=\"DataHC.com.xml\"><rule from=\"^http://(cdn|media)\\.datahc\\.com/\" to=\"https://$1.datahc.com/\"/></ruleset>", "<ruleset name=\"DataMineLab.com (partial)\" f=\"DataMineLab.com.xml\"><securecookie host=\"^\\.dataminelab\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?dataminelab\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~datamine/\"/></ruleset>", "<ruleset name=\"DataQuest.io\" f=\"DataQuest.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataSavesLives.eu\" f=\"DataSavesLives.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataSpace.pl\" f=\"DataSpace.pl.xml\"><securecookie host=\"^(?:panel\\.|www\\.)?dataspace\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataSphere.com (partial)\" f=\"DataSphere.com.xml\"><rule from=\"^http://oascentral\\.datasphere\\.com/\" to=\"https://oasc18.247realmedia.com/\"/></ruleset>", "<ruleset name=\"DataTables.net\" f=\"DataTables.net.xml\"><securecookie host=\"^(?:w*\\.)?datatables\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataVantage\" default_off=\"failed ruleset test\" f=\"DataVantage.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataXu.com\" f=\"DataXu.xml\"><securecookie host=\"^(?:advertisers\\.|www\\.)?dataxu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Center World.com (partial)\" f=\"Data_Center_World.com.xml\"><rule from=\"^http://(www\\.)?datacenterworld\\.com/(?=(?:[\\w-]+/)?wp-(?:content|includes)/)\" to=\"https://$1datacenterworld.com/\"/></ruleset>", "<ruleset name=\"Data Conservancy.org\" f=\"Data_Conservancy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Informed\" default_off=\"mismatched\" f=\"Data_Informed.xml\"><securecookie host=\"^data-informed\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?data-informed\\.com/\" to=\"https://data-informed.com/\"/></ruleset>", "<ruleset name=\"Database.com (problematic)\" default_off=\"mismatched\" f=\"Database.com-problematic.xml\"><rule from=\"^http://(?:(docs\\.)|www\\.)?database\\.com/\" to=\"https://$1database.com/\"/></ruleset>", "<ruleset name=\"Database.com (partial)\" f=\"Database.com.xml\"><rule from=\"^http://(autodiscover|blog|login|webmail)\\.database\\.com/\" to=\"https://$1.database.com/\"/></ruleset>", "<ruleset name=\"databits.net\" default_off=\"failed ruleset test\" f=\"Databits.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Databricks.com (partial)\" f=\"Databricks.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datacard.com\" f=\"Datacard.com.xml\"><securecookie host=\"^www\\.datacard\\.com$\" name=\"\"/><rule from=\"^http://(?:www\\.)?datacard\\.com/\" to=\"https://www.datacard.com/\"/><rule from=\"^http://careers\\.datacard\\.com/\" to=\"https://careers.datacard.com/\"/></ruleset>", "<ruleset name=\"DatacentrumGids.nl\" default_off=\"failed ruleset test\" f=\"DatacentrumGids.nl.xml\"><securecookie host=\"^(?:www)?\\.datacentrumgids\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"datacloudMail.ru\" f=\"DatacloudMail.ru.xml\"><rule from=\"^http://(cloclo\\d+|games)\\.datacloudmail\\.ru/\" to=\"https://$1.datacloudmail.ru/\"/></ruleset>", "<ruleset name=\"DatadogHQ.com (partial)\" f=\"DatadogHQ.com.xml\"><rule from=\"^http://datadoghq\\.com/\" to=\"https://www.datadoghq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datalogix.com (partial)\" f=\"Datalogix.com.xml\"><rule from=\"^http://(?:www\\.)?datalogix\\.com/(favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.datalogix.com/$1\"/></ruleset>", "<ruleset name=\"Datamappi.fi\" f=\"Datamappi.fi.xml\"><securecookie host=\"^(?:oma|www)\\.datamappi\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datamappi\\.fi/\" to=\"https://www.datamappi.fi/\"/><rule from=\"^http://oma\\.datamappi\\.fi/\" to=\"https://oma.datamappi.fi/\"/></ruleset>", "<ruleset name=\"datamind.ru\" f=\"Datamind.ru.xml\"><securecookie host=\"^\\.pool\\.datamind\\.ru$\" name=\".+\"/><rule from=\"^http://sync\\.pool\\.datamind\\.ru/\" to=\"https://sync.pool.datamind.ru/\"/></ruleset>", "<ruleset name=\"Datamonitor.com (partial)\" default_off=\"failed ruleset test\" f=\"Datamonitor.com.xml\"><securecookie host=\"^\\.datamonitor\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://datamonitor\\.com/.*\" to=\"https://www.datamonitor.com/\"/><rule from=\"^http://www\\.datamonitor\\.com/(?!store/(?!css/|images/|skins/))\" to=\"https://www.datamonitor.com/\"/></ruleset>", "<ruleset name=\"Datamonitor (partial)\" f=\"Datamonitor.xml\"><rule from=\"^http://(?:www\\.)?research-store\\.com/((?:[\\w\\-]+/)?(?:css/|images/|Library/|Purchase/Basket\\.aspx|Registration\\.aspx|skins/))\" to=\"https://www.research-store.com/$1\"/></ruleset>", "<ruleset name=\"Datamonitor Healthcare\" default_off=\"expired, mismatched\" f=\"Datamonitor_Healthcare.xml\"><rule from=\"^http://(?:www\\.)?datamonitorhealthcare\\.com/\" to=\"https://www.datamonitorhealthcare.com/\"/></ruleset>", "<ruleset name=\"Dataopedia.com (partial)\" default_off=\"failed ruleset test\" f=\"Dataopedia.com.xml\"><rule from=\"^http://cdn\\.dataopedia\\.com/\" to=\"https://d2hb7m70lgc5kn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Datapath.io\" f=\"Datapath.io.xml\"><securecookie host=\"^\\.datapath\\.io$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datapipe.co.uk\" f=\"Datapipe.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datapipe.com (mismatches)\" default_off=\"Certificate mismatch, self-signed\" f=\"Datapipe.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?datapipe\\.cn/\" to=\"https://www.datapipe.cn/\"/><rule from=\"^http://mirror\\.datapipe\\.(?:com|net)/\" to=\"https://mirror.datapipe.com/\"/></ruleset>", "<ruleset name=\"Datapipe.com (partial)\" f=\"Datapipe.com.xml\"><exclusion pattern=\"^http://go\\.datapipe\\.com/(?!l/)\"/><securecookie host=\"^(?:.+\\.)?datapipe\\.com$\" name=\".+\"/><rule from=\"^http://go\\.datapipe\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datared.dk\" f=\"Datared.dk.xml\"><rule from=\"^http://(?:www\\.)?datared\\.dk/\" to=\"https://datared.dk/\"/></ruleset>", "<ruleset name=\"Datasheet Catalog.com\" default_off=\"expired, self-signed\" f=\"Datasheet_Catalog.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dataskydd.net\" f=\"Dataskydd.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datatilsynet\" default_off=\"failed ruleset test\" f=\"Datatilsynet.xml\"><rule from=\"^http://(?:www\\.)?datatilsynet\\.no/\" to=\"https://www.datatilsynet.no/\"/><rule from=\"^http://(?:www\\.)?slettmeg\\.no/\" to=\"https://slettmeg.no/\"/></ruleset>", "<ruleset name=\"Datemas.de (partial)\" default_off=\"failed ruleset test\" f=\"Datemas.de.xml\"><securecookie host=\"^web\\.datemas\\.de$\" name=\".+\"/><rule from=\"^http://web\\.datemas\\.de/\" to=\"https://web.datemas.de/\"/></ruleset>", "<ruleset name=\"Datenschutz-ist-Buergerrecht.de\" default_off=\"connection dropped\" f=\"Datenschutz-ist-Burgerrecht.xml\"><securecookie host=\"^(?:www)?\\.datenschutz-ist-buergerrecht\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datenspuren.de\" f=\"Datenspuren.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaumCDN.net (partial)\" f=\"DaumCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Duam.net (partial)\" f=\"Daum_Communications.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dave Cross\" default_off=\"self-siged\" f=\"Dave_Cross.xml\"><rule from=\"^http://(?:www\\.)?dave\\.org\\.uk/\" to=\"https://dave.org.uk/\"/></ruleset>", "<ruleset name=\"David-Campbell.org\" f=\"David-Campbell.org.xml\"><securecookie host=\"^(?:www\\.)?david-campbell\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David Tisch\" default_off=\"mismatch\" f=\"David-Tisch.xml\"><rule from=\"^http://(?:www\\.)?davidtisch\\.com/\" to=\"https://www.davidtisch.com/\"/></ruleset>", "<ruleset name=\"David Adrian.org\" f=\"David_Adrian.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David Gold\" default_off=\"mismatched\" f=\"David_Gold.xml\"><rule from=\"^http://(?:www\\.)?davidgold\\.co\\.uk/\" to=\"https://www.davidgold.co.uk/\"/></ruleset>", "<ruleset name=\"David Lazar.org\" f=\"David_Lazar.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David Sopas.com\" f=\"David_Sopas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Davidson Tutoring (false MCB)\" platform=\"mixedcontent\" f=\"Davidson_Tutoring.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.davidsontutoring\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?davidsontutoring\\.com/(?!assets/|favicon\\.ico)\" to=\"https://www.davidsontutoring.com/\"/></ruleset>", "<ruleset name=\"Davidson Tutoring (partial)\" f=\"Davidson_Tutoring.com.xml\"><rule from=\"^http://(?:www\\.)?davidsontutoring\\.com/(?=assets/|favicon\\.ico)\" to=\"https://www.davidsontutoring.com/\"/></ruleset>", "<ruleset name=\"Davinci Vaporizor\" f=\"Davinci_Vaporizor.xml\"><securecookie host=\"^\\.davincivaporizer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DavisSystem\" default_off=\"failed ruleset test\" f=\"DavisSystem.xml\"><securecookie host=\"^\\.davissystem\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Davis Instruments (partial)\" f=\"Davis_Instruments.xml\"><rule from=\"^http://(?:www\\.)?davis\\.com/((?:combres\\.axd|icons|images|includes|SiteAssets|Account-Profile|Forgot-Password|login|Register)(?:$|\\?|/))\" to=\"https://www.davis.com/$1/\"/><rule from=\"^http://static\\.davis\\.com/\" to=\"https://duaawgxv85i1i.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Davpack.co.uk\" f=\"Davpack.co.uk.xml\"><rule from=\"^http://(?:www\\.)?davpack\\.co\\.uk/(?=(?:checkout|Signin)\\.aspx|favicon\\.ico|(?:Script|Web)Resource\\.axd)\" to=\"https://www.davpack.co.uk/\"/></ruleset>", "<ruleset name=\"Dawsonera (partial)\" f=\"Dawsonera.xml\"><rule from=\"^http://(?:www\\.)?dawsonera\\.com/(guard/protected/|Shibboleth\\.sso)\" to=\"https://wwwdawsonera.com/$1\"/></ruleset>", "<ruleset name=\"DayZ (Partial)\" default_off=\"Bad Cert\" f=\"DayZ.com.xml\"><rule from=\"^http://(?:www\\.)?dayz\\.com/\" to=\"https://www.dayz.com/\"/></ruleset>", "<ruleset name=\"DbackPolice.com\" default_off=\"connection refused\" f=\"DbackPolice.com.xml\"><securecookie host=\"^\\.(?:www\\.)?dbackpolice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dbrgn.ch\" f=\"Dbrgn.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dditscdn.com\" f=\"Dditscdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"De-Captcher.com\" f=\"De-Captcher.com.xml\"><securecookie host=\"^de-captcher\\.com$\" name=\".+\"/><rule from=\"^http://www\\.de-captcher\\.com/\" to=\"https://de-captcher.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"De-Centralize.com\" default_off=\"expired, mismatched\" platform=\"mixedcontent\" f=\"De-Centralize.com.xml\"><rule from=\"^http://(?:www\\.)?de-centralize\\.com/\" to=\"https://www.de-centralize.com/\"/></ruleset>", "<ruleset name=\"De17a.com\" default_off=\"failed ruleset test\" f=\"De17a.com.xml\"><securecookie host=\"^\\.de17a\\.com$\" name=\".+\"/><rule from=\"^http://de17a\\.com/\" to=\"https://de17a.com/\"/></ruleset>", "<ruleset name=\"DeSmuME.org\" f=\"DeSmuME.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"De Bekijkerie.nl\" f=\"De_Bekijkerie.nl.xml\"><rule from=\"^http://(?:www\\.)?debekijkerie\\.nl/\" to=\"https://www.debekijkerie.nl/\"/></ruleset>", "<ruleset name=\"De Correspondent.nl\" f=\"De_Correspondent.nl.xml\"><securecookie host=\"^decorrespondent\\.nl$\" name=\".+\"/><rule from=\"^http://((?:dynamic|static|www)\\.)?decorrespondent\\.nl/\" to=\"https://$1decorrespondent.nl/\"/></ruleset>", "<ruleset name=\"De Digitale Topschool.nl\" f=\"De_Digitale_Topschool.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"de Silva.biz\" default_off=\"missing certificate chain\" f=\"De_Silva.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deaconess Health System\" default_off=\"failed ruleset test\" f=\"Deaconess-Health-System.xml\"><exclusion pattern=\"^http://(?:www\\.)?deaconess\\.com/mobile(?:/|$)\"/><securecookie host=\"^(?:(?:www)?\\.)?deaconess\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)deaconess\\.com/\" to=\"https://www.deaconess.com/\"/></ruleset>", "<ruleset name=\"Dead Drops.com\" f=\"Dead_Drops.com.xml\"><securecookie host=\"^(?:www\\.)?deaddrops\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deadline.com (partial)\" f=\"Deadline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deadspin.com\" default_off=\"mismatched\" f=\"Deadspin.com.xml\"><securecookie host=\"^\\.?deadspin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?deadspin\\.com/\" to=\"https://deadspin.com/\"/></ruleset>", "<ruleset name=\"Deakin University (partial)\" platform=\"mixedcontent\" f=\"Deakin-University.xml\"><rule from=\"^http://deakin\\.edu\\.au/\" to=\"https://deakin.edu.au/\"/></ruleset>", "<ruleset name=\"Deal Extreme\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DealExtreme.xml\"><securecookie host=\"^.*\\.d(?:ealextreme|x)\\.com$\" name=\".+\"/><rule from=\"^http://((?:club|e|m|www)\\.)?dealextreme\\.com/\" to=\"https://$1dealextreme.com/\"/><rule from=\"^http://((?:cart|club|cs|deals|e|passport|s|www)\\.)?dx\\.com/\" to=\"https://$1dx.com/\"/><rule from=\"^http://img\\.dxcdn\\.com/\" to=\"https://img.dxcdn.com/\"/></ruleset>", "<ruleset name=\"DealTime (partial)\" f=\"DealTime.xml\"><rule from=\"^http://sc\\.dealtime\\.com/\" to=\"https://sc.dealtime.com/\"/></ruleset>", "<ruleset name=\"Gator Chrysler.net\" default_off=\"mismatched, self-signed\" f=\"Dealer.com-mismatches.xml\"><securecookie host=\"^www\\.gatorchrysler\\.net$\" name=\".*\"/><rule from=\"^http://gatorchrysler\\.net/\" to=\"https://www.gatorchrysler.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dealer.com (partial)\" f=\"Dealer.com.xml\"><securecookie host=\"^(?:apps|cdn)\\.dealer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DealerFire (partial)\" f=\"DealerFire.xml\"><rule from=\"^http://cdn\\.dealerfire\\.com/\" to=\"https://cdn.dealerfire.com/\"/></ruleset>", "<ruleset name=\"DealerRater.com (partial)\" f=\"DealerRater.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dealerrater\\.com/+(?:$|\\?)\"/><rule from=\"^http://(www\\.)?dealerrater\\.com/\" to=\"https://$1dealerrater.com/\"/><rule from=\"^http://cdn-static\\.dealerrater\\.com/\" to=\"https://d3go5n7g2hd1g0.cloudfront.net/\"/><rule from=\"^http://cdn-user\\.dealerrater\\.com/\" to=\"https://d17jk93jbxi6p4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DealerTrend.com (partial)\" f=\"DealerTrend.com.xml\"><rule from=\"^http://images\\.dealertrend\\.com/\" to=\"https://s3.amazonaws.com/images.dealertrend.com/\"/></ruleset>", "<ruleset name=\"Dealfish.co.th\" default_off=\"failed ruleset test\" f=\"Dealfish.co.th.xml\"><rule from=\"^http://(?:www\\.)?dealfish\\.co\\.th/\" to=\"https://www.dealfish.co.th/\"/></ruleset>", "<ruleset name=\"dealnews.com (partial)\" f=\"Dealnews.com.xml\"><exclusion pattern=\"^http://dealnews\\.com/+(?!mydealnews(?:$|[?/]))\"/><rule from=\"^http://content\\.dealnews\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/\"/><rule from=\"^http://images\\.dealnews\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/images/\"/><rule from=\"^http://static\\.dealnews\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/static/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DEA.com\" f=\"Dean-Evans-and-Associates.xml\"><securecookie host=\"^www\\.dea\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dea\\.com/\" to=\"https://www.dea.com/\"/></ruleset>", "<ruleset name=\"DearBytes.com\" f=\"DearBytes.com.xml\"><securecookie host=\"^\\.(?:www\\.)?dearbytes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dear FCC.org\" f=\"Dear_FCC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deater.Net\" default_off=\"mismatched\" f=\"Deater.Net.xml\"><rule from=\"^http://(?:www\\.)?deater\\.net/\" to=\"https://deater.net/\"/></ruleset>", "<ruleset name=\"DeathMask.net\" default_off=\"expired, mismatch, self-signed\" f=\"DeathMask.net.xml\"><rule from=\"^http://(?:www\\.)?deathmask\\.net/\" to=\"https://www.deathmask.net/\"/><rule from=\"^http://([^w]\\w+)\\.deathmask\\.net/\" to=\"https://$1.deathmask.net/\"/></ruleset>", "<ruleset name=\"Deb.li\" f=\"Deb.li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DebConf.org (partial)\" default_off=\"self-signed\" f=\"DebConf.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Administration.org (partial)\" f=\"Debian-Administration.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Facile.org\" f=\"Debian-Facile.org.xml\"><rule from=\"^http://www\\.debian-facile\\.org/\" to=\"https://debian-facile.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-fr.org\" f=\"Debian-fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://wiki\\.debian-fr\\.org/+\" to=\"https://www.isalo.org/wiki.debian-fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.net (self-signed)\" default_off=\"self-signed\" f=\"Debian-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.net (partial)\" f=\"Debian.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.org (problematic)\" default_off=\"mismatched, self-signed\" f=\"Debian.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.org (partial)\" f=\"Debian.xml\"><exclusion pattern=\"^http://security\\.debian\\.org/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://security\\.debian\\.org/+\" to=\"https://www.debian.org/security/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"debianforum.de\" f=\"Debianforum.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debuggable (partial)\" f=\"Debuggable.xml\"><rule from=\"^http://www(-eleni|-eric)?\\.transloadit\\.com/\" to=\"https://www$1.transloadit.com/\"/><rule from=\"^http://transloadit\\.com/(accounts/forgot_pw|img/|login|mediaelement/|signup)\" to=\"https://transloadit.com/$1\"/></ruleset>", "<ruleset name=\"Debuggex.com\" f=\"Debuggex.com.xml\"><securecookie host=\"^(?:www\\.)?debuggex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debuggify.net\" default_off=\"521\" f=\"Debuggify.net.xml\"><securecookie host=\"^\\.debuggify\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decadent.org.uk\" f=\"Decadent.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decdna.net\" f=\"Decdna.net.xml\"><rule from=\"^http://(na|(eu\\.link))\\.decdna\\.net/\" to=\"https://$1.decdna.net/\"/></ruleset>", "<ruleset name=\"Deciduous Press.com.au\" f=\"Deciduous_Press.com.au.xml\"><securecookie host=\"^\\.deciduouspress\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decipher Inc.com\" f=\"Decipher_Inc.com.xml\"><securecookie host=\"^v2\\.decipherinc\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?decipherinc\\.com/\" to=\"https://$1decipherinc.com/\"/><rule from=\"^http://(?:static|v2)\\.decipherinc\\.com/\" to=\"https://v2.decipherinc.com/\"/></ruleset>", "<ruleset name=\"Decision Neuroscience Laboratory\" default_off=\"mismatch\" f=\"Decision-Neuroscience-Laboratory.xml\"><rule from=\"^http://(?:www\\.)?decisionneurosciencelab\\.org/\" to=\"https://decisionneurosciencelab.org/\"/></ruleset>", "<ruleset name=\"DecisionBriefs\" f=\"DecisionBriefs.xml\"><securecookie host=\"^(?:.+\\.)?decisionbriefs\\.com$\" name=\".+\"/><rule from=\"^http://((?:core|partners|www)\\.)?decisionbriefs\\.com/\" to=\"https://$1decisionbriefs.com/\"/></ruleset>", "<ruleset name=\"DecisionKey\" f=\"DecisionKey.xml\"><securecookie host=\"^www\\.npddecisionkey\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?npddecisionkey\\.com/\" to=\"https://www.npddecisionkey.com/\"/></ruleset>", "<ruleset name=\"Declaration of Russian Hosting Providers\" default_off=\"failed ruleset test\" f=\"Declaration-of-Russian-Hosting-Providers.xml\"><rule from=\"^http://(?:www\\.)?hostdeclaration\\.ru/\" to=\"https://hostdeclaration.ru/\"/></ruleset>", "<ruleset name=\"Deco.proteste.pt\" default_off=\"failed ruleset test\" f=\"Deco.proteste.pt.xml\"><rule from=\"^http://(?:www\\.)?deco\\.proteste\\.pt/\" to=\"https://www.deco.proteste.pt/\"/></ruleset>", "<ruleset name=\"Decrypt CryptoLocker.com\" f=\"Decrypt_CryptoLocker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decrypted Matrix.com\" f=\"Decrypted_Matrix.com.xml\"><securecookie host=\"^\\.decryptedmatrix\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dedicated Gaming\" f=\"Dedicated_Gaming.xml\"><securecookie host=\"^(?:myaccount)?\\.dedicatedgaming.com.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dedikuoti.lt\" f=\"Dedikuoti.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dediserve.com (partial)\" f=\"Dediserve.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dee.su (partial)\" default_off=\"mismatched\" f=\"Dee.su.xml\"><securecookie host=\"^forum\\.dee\\.su$\" name=\".+\"/><rule from=\"^http://forum\\.dee\\.su/\" to=\"https://forum.dee.su/\"/></ruleset>", "<ruleset name=\"deekayen.net\" f=\"Deekayen.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeepDyve\" f=\"DeepDyve.xml\"><securecookie host=\"^www\\.deepdyve\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeepField Networks\" default_off=\"mismatch\" f=\"DeepField-Networks.xml\"><rule from=\"^http://(?:www\\.)?deepfield\\.net/\" to=\"https://www.deepfield.net/\"/><rule from=\"^http://blog\\.deepfield\\.net/\" to=\"https://www.deepfield.net/\"/></ruleset>", "<ruleset name=\"DeepSec.net (partial)\" f=\"DeepSec.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deep Dot Web.com\" f=\"Deep_Dot_Web.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deep Politics Forum.com\" f=\"Deep_Politics_Forum.com.xml\"><securecookie host=\"^(?:www\\.)?deeppoliticsforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deepbit.net\" default_off=\"missing certificate chain\" f=\"Deepbit.net.xml\"><rule from=\"^http://www\\.deepbit\\.net/\" to=\"https://deepbit.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deepin (partial)\" f=\"Deepin.xml\"><rule from=\"^http://(packages|cdimage)\\.deepin\\.com/\" to=\"https://$1.linuxdeepin.com/\"/><rule from=\"^http://(packages)\\.deepin\\.org/\" to=\"https://$1.linuxdeepin.com/\"/><rule from=\"^http://deepin\\.(org|com)/\" to=\"https://www.deepin.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deezer.com\" f=\"Deezer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defcon.RU\" f=\"Defcon.RU.xml\"><securecookie host=\"^defcon\\.ru$\" name=\".+\"/><rule from=\"^http://www\\.defcon\\.ru/\" to=\"https://defcon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defcon.org\" f=\"Defcon.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defective By Design.org\" f=\"Defectivebydesign.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFRDB.gov.au\" f=\"DefenceForceRetirementandDeathBenefitsScheme.xml\"><securecookie host=\"^(?:\\.|www\\.)?dfrdb\\.gov\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHA.gov.au\" f=\"DefenceHousingAustralia.xml\"><securecookie host=\"^invest\\.dha\\.gov\\.au$\" name=\".+\"/><rule from=\"^http://www\\.invest\\.dha\\.gov\\.au/\" to=\"https://invest.dha.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defense Industry Daily.com (partial)\" f=\"Defense_Industry_Daily.xml\"><securecookie host=\"^(?:\\.|www\\.)?defenseindustrydaily\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defense Nuclear Facilities Safety Board\" default_off=\"mismatched\" f=\"Defense_Nuclear_Facilities_Safety_Board.xml\"><securecookie host=\"^\\.dnfsb\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defense One.com (partial)\" f=\"Defense_One.com.xml\"><securecookie host=\"^\\.defenseone\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://metrics\\.defenseone\\.com/\" to=\"https://atlanticmedia.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defer Panic.com\" f=\"Defer_Panic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defora.org\" default_off=\"untrusted root\" f=\"Defora.org.xml\"><rule from=\"^http://defora\\.org/\" to=\"https://www.defora.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defra.gov.uk (partial)\" f=\"Defra.gov.uk.xml\"><exclusion pattern=\"^http://secure\\.fera\\.defra\\.gov\\.uk/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defsounds.com\" default_off=\"connection refused\" f=\"Defsounds.xml\"><securecookie host=\"^\\.defsounds\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defuse.ca\" f=\"Defuse.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deichmann.com\" f=\"Deichmann.com.xml\"><rule from=\"^http://(www\\.)?deichmann\\.com/\" to=\"https://www.deichmann.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deimos.fr\" f=\"Deimos.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dein.dk\" f=\"Dein.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deis.com\" f=\"Deis.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dejure.org\" f=\"Dejure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delaware Online (partial)\" default_off=\"failed ruleset test\" f=\"Delaware_Online.xml\"><securecookie host=\"^www\\.delawareonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?delawareonline\\.com/\" to=\"https://www.delawareonline.com/\"/></ruleset>", "<ruleset name=\"Delaware Technical Community College (partial)\" f=\"Delaware_Technical_Community_College.xml\"><rule from=\"^http://(?:www\\.)?dtcc\\.edu/\" to=\"https://www.dtcc.edu/\"/><rule from=\"^http://(?:www\\.)?login\\.dtcc\\.edu/\" to=\"https://login.dtcc.edu/\"/></ruleset>", "<ruleset name=\"Delaware Today.com (partial)\" default_off=\"failed ruleset test\" f=\"Delaware_Today.com.xml\"><rule from=\"^http://(www\\.)?delawaretoday\\.com/(?=[\\w-]+\\.png|core/|_delaware_rad/|favicon\\.ico|images/)\" to=\"https://$1delawaretoday.com/\"/></ruleset>", "<ruleset name=\"Delfogo Rx\" f=\"Delfogo_Rx.xml\"><securecookie host=\"^delfogo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?delfogo\\.com/\" to=\"https://delfogo.com/\"/></ruleset>", "<ruleset name=\"Delft University of Technology (mismatches)\" default_off=\"mismatch\" f=\"Delft-University-of-Technology-mismatches.xml\"><rule from=\"^http://faq\\.weblog\\.tudelft\\.nl/\" to=\"https://faq.weblog.tudelft.nl/\"/></ruleset>", "<ruleset name=\"Delft University of Technology (partial)\" f=\"Delft-University-of-Technology.xml\"><securecookie host=\"^\\w+\\.tudelft\\.nl$\" name=\".*\"/><rule from=\"^http://(intranet|netid|weblog)\\.tudelft\\.nl/\" to=\"https://$1.tudelft.nl/\"/></ruleset>", "<ruleset name=\"Delicious.com\" f=\"Delicious.xml\"><securecookie host=\"^(?:.+\\.)?delicious\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delicious Green Coffee.com\" f=\"Delicious_Green_Coffee.com.xml\"><securecookie host=\"^(?:w*\\.)?deliciousgreencoffee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delico.se\" f=\"Delico.se.xml\"><rule from=\"^http://www\\.delico\\.se/\" to=\"https://www.delico.se/\"/><rule from=\"^http://delico\\.se/\" to=\"https://delico.se/\"/></ruleset>", "<ruleset name=\"Delish (partial)\" default_off=\"mismatch\" f=\"Delish.xml\"><rule from=\"^http://(?:www\\.)?delish\\.com/\" to=\"https://delish.com/\"/><rule from=\"^http://answerology\\.delish\\.com/\" to=\"https://answerology.delish.com/\"/></ruleset>", "<ruleset name=\"Deliveras.gr\" default_off=\"missing certificate chain\" f=\"Deliveras.gr.xml\"><securecookie host=\"^(?:www\\.)?deliveras\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"delivery.com\" f=\"Delivery.com.xml\"><securecookie host=\"^www\\.delivery\\.com$\" name=\"\"/><rule from=\"^http://(?:www\\.)?delivery\\.com/\" to=\"https://www.delivery.com/\"/></ruleset>", "<ruleset name=\"Dell.com (false MCB)\" platform=\"mixedcontent\" f=\"Dell.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?dell\\.com/(?!content/|favicon\\.ico)\" to=\"https://www.dell.com/\"/></ruleset>", "<ruleset name=\"Dell.com (partial)\" f=\"Dell.xml\"><exclusion pattern=\"^http://(?:www\\.)?dell\\.com/+(?!content/|favicon\\.ico)\"/><exclusion pattern=\"^http://(?:\\w\\w|media)\\.community\\.dell\\.com/(?!cfs-file\\.ashx/|cfs-file/|cfs-filesystemfile/|resized-image/|[Tt]hemes/)\"/><exclusion pattern=\"^http://partnerdirect\\.dell\\.com/(?!sites/channel/(?:Documents/|Style\\ Library/|\\w\\w_\\w\\w/pages/loginpage\\.aspx))\"/><securecookie host=\"^\\.dell\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:accessories|deals|ecomm|support\\.euro|m|marketing|premier|signin|support(?:apj|\\.software)?|channels\\.us)\\.dell\\.com$\" name=\".\"/><rule from=\"^http://(?:www-cdn\\.)?dell\\.com/\" to=\"https://www.dell.com/\"/><rule from=\"^https?://accessories-cdn\\.dell\\.com/\" to=\"https://accessories.dell.com/\"/><rule from=\"^http://media\\.community\\.dell\\.com/\" to=\"https://en.community.dell.com/\"/><rule from=\"^http://i\\.dell\\.com/\" to=\"https://si.cdn.dell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delta.com\" f=\"Delta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delta.no\" f=\"Delta.no.xml\"><securecookie host=\"^(?:www\\.)?delta\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deltager.no\" f=\"Deltager.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deluge\" default_off=\"expired, mismatch\" f=\"Deluge.xml\"><securecookie host=\"^(?:.*\\.)?deluge-torrent\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?deluge-torrent\\.org/\" to=\"https://deluge-torrent.org/\"/><rule from=\"^http://(dev|forum)\\.deluge-torrent\\.org/\" to=\"https://$1.deluge-torrent.org/\"/></ruleset>", "<ruleset name=\"Delvenetworks.com\" f=\"Delvenetworks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DemWorks.org\" f=\"DemWorks.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demandbase.com (partial)\" f=\"Demand-Base.xml\"><securecookie host=\"^(?:.*\\.)?demandbase\\.com$\" name=\".*\"/><rule from=\"^http://demandbase\\.com/\" to=\"https://www.demandbase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demand Media (mismatches)\" default_off=\"mismatch\" f=\"Demand-Media-mismatches.xml\"><securecookie host=\"^blog\\.golflink\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?(?:trails|typef)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blogburst\\.com/\" to=\"https://blogburst.com/\"/><rule from=\"^http://i\\.crackedcdn\\.com/\" to=\"https://i.crackedcdn.com/\"/><rule from=\"^http://ir\\.demandmedia\\.com/\" to=\"https://ir.demandmedia.com/\"/><rule from=\"^http://create\\.demandstudios\\.com/\" to=\"https://create.demandstudios.com/\"/><rule from=\"^http://blog\\.golflink\\.com/\" to=\"https://blog.golflink.com/\"/><rule from=\"^http://(?:(?:cdn-)?www\\.)?t(rails|ypef)\\.com/\" to=\"https://www.t$1.com/\"/></ruleset>", "<ruleset name=\"Demand Media (partial)\" f=\"Demand-Media.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demand Progress\" f=\"Demand-Progress.xml\"><securecookie host=\"^(?:act)?\\.demandprogress\\.org$\" name=\".*\"/><rule from=\"^http://(act\\.|www\\.)?demandprogress\\.org/\" to=\"https://$1demandprogress.org/\"/><rule from=\"^http://s3\\.demandprogress\\.org/\" to=\"https://s3.amazonaws.com/s3.demandprogress.org/\"/></ruleset>", "<ruleset name=\"demand-driver.com\" f=\"Demand-driver.com.xml\"><securecookie host=\"^(?:www\\.)?demand-driver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demandware.com (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"Demandware-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demandware.net (partial)\" f=\"Demandware.net.xml\"><rule from=\"^http://sits-pod(\\d+)\\.demandware\\.net/\" to=\"https://sits-pod$1.demandware.net/\"/></ruleset>", "<ruleset name=\"Demandware.com (partial)\" f=\"Demandware.xml\"><exclusion pattern=\"^http://investors\\.demandware\\.com/+(?!client/|media_files/)\"/><securecookie host=\"^(?:.*\\.)?demandware\\.com$\" name=\".*\"/><rule from=\"^http://investors\\.demandware\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demdex.com (partial)\" f=\"Demdex.com.xml\"><securecookie host=\".*\\.demdex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demdex.net\" f=\"Demdex.net.xml\"><securecookie host=\".*\\.demdex\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demisto.com\" f=\"Demisto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Democracy.io\" f=\"Democracy.io.xml\"><securecookie host=\"^democracy\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DemocracyInAction\" default_off=\"failed ruleset test\" f=\"DemocracyInAction.xml\"><securecookie host=\"^(?:.*\\.)?democracyinaction\\.org$\" name=\".+\"/><rule from=\"^http://((?:caf|hq-org2|hq-salsa|org2|salsa|secure|www2?)\\.)?democracyinaction\\.org/\" to=\"https://$1democracyinaction.org/\"/></ruleset>", "<ruleset name=\"DemocracyNow (partial)\" f=\"DemocracyNow.xml\"><rule from=\"^http://(www\\.)?democracynow\\.org/(?=(?:donate|images|resources|stylesheets)(?:$|[?/]))\" to=\"https://$1democracynow.org/\"/></ruleset>", "<ruleset name=\"Democrat and Chronicle (partial)\" default_off=\"failed ruleset test\" f=\"Democrat_and_Chronicle.xml\"><securecookie host=\".*\\.democratandchronicle\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?democratandchronicle\\.com/\" to=\"https://www.democratandchronicle.com/\"/><rule from=\"^http://(classifieds|closings|meetthebabies|offers|roctoday)\\.democratandchronicle\\.com/\" to=\"https://$1.democratandchronicle.com/\"/><rule from=\"^http://findnsave\\.democratandchronicle\\.com/static/\" to=\"https://democratchronicle.findnsave.com/static/\"/><rule from=\"^http://localshopping\\.democratandchronicle\\.com/Content/\" to=\"https://localshopping.shoplocal.com/Content/\"/></ruleset>", "<ruleset name=\"Demonii.com\" f=\"Demonii.com.xml\"><securecookie host=\"^\\.demonii\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demonoid\" f=\"Demonoid.xml\"><rule from=\"^https?://(www\\.)?demonoid\\.ph/\" to=\"https://$1demonoid.pw/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"demonsaw.com (partial)\" f=\"Demonsaw.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denfri.dk\" f=\"Denfri.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denh.am\" f=\"Denh.am.xml\"><rule from=\"^http://([^/:@\\.]+\\.)?denh\\.am/\" to=\"https://$1denh.am/\"/></ruleset>", "<ruleset name=\"Denic.de\" f=\"Denic.de.xml\"><securecookie host=\"^(www\\.)?(secure\\.)?denic\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denik.cz (partial)\" f=\"Denik.cz.xml\"><rule from=\"^http://g\\.denik\\.cz/\" to=\"https://g.denik.cz/\"/></ruleset>", "<ruleset name=\"Denis Matsuev\" f=\"Denis_Matsuev.xml\"><securecookie host=\"^\\.matsuev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dennikn.sk\" f=\"Dennikn.sk.xml\"><rule from=\"^http://(www\\.)?dennikn\\.sk/\" to=\"https://dennikn.sk/\"/></ruleset>", "<ruleset name=\"denpa.moe\" f=\"Denpa.moe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DENSO WAVE\" default_off=\"failed ruleset test\" f=\"Denso_Wave.xml\"><securecookie host=\"^www\\.denso-wave\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?denso-wave\\.com/\" to=\"https://www.denso-wave.com/\"/></ruleset>", "<ruleset name=\"Department of Education\" f=\"DepartmentofEducation.xml\"><rule from=\"^http://(?:www\\.)?education\\.gov\\.au/\" to=\"https://www.education.gov.au/\"/></ruleset>", "<ruleset name=\"Department of Employment\" f=\"DepartmentofEmployment.xml\"><rule from=\"^http://((?:www|ministers)\\.)?employment\\.gov\\.au/\" to=\"https://$1employment.gov.au/\"/></ruleset>", "<ruleset name=\"Department of Foreign Affairs and Trade\" f=\"DepartmentofForeignAffairsandTrade.xml\"><rule from=\"^http://(?:www\\.)?dfat\\.gov\\.au/\" to=\"https://www.dfat.gov.au/\"/><rule from=\"^http://(?:www\\.)?orao\\.dfat\\.gov\\.au/\" to=\"https://www.orao.dfat.gov.au/\"/></ruleset>", "<ruleset name=\"Department of Infrastructure and Regional Development\" f=\"DepartmentofInfrastructureandRegionalDevelopment.xml\"><rule from=\"^http://(?:www\\.)?infrastructure\\.gov\\.au/\" to=\"https://www.infrastructure.gov.au/\"/></ruleset>", "<ruleset name=\"Dephormation.org.uk\" f=\"Dephormation.org.uk.xml\"><rule from=\"^http://(?:www\\.)?dephormation\\.org\\.uk/\" to=\"https://www.dephormation.org.uk/\"/></ruleset>", "<ruleset name=\"Depkatalog.no\" f=\"Depkatalog.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deposit Files (partial)\" f=\"Deposit-Files.xml\"><securecookie host=\"^(?:.*\\.)?depositfiles\\.com$\" name=\".*\"/><rule from=\"^http://(static\\d+\\.|www\\.)?depositfiles\\.com/\" to=\"https://$1depositfiles.com/\"/><rule from=\"^http://(?:ads|img3|ssl3)\\.depositfiles\\.com/\" to=\"https://ssl3.depositfiles.com/\"/></ruleset>", "<ruleset name=\"DepositProtection\" default_off=\"failed ruleset test\" f=\"DepositProtection.xml\"><securecookie host=\"^(?:.+\\.)?depositprotection\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?depositprotection\\.com/\" to=\"https://www.depositprotection.com/\"/></ruleset>", "<ruleset name=\"deprexis (partial)\" default_off=\"failed ruleset test\" f=\"Deprexis.xml\"><securecookie host=\"^.*\\.deprexis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Der Sächsische Datenschutzbeauftragte\" f=\"Der-Saechsische-Datenschutzbeauftragte.xml\"><securecookie host=\"^(?:www\\.)?saechsdsb\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"der-preis-jaeger.de\" default_off=\"failed ruleset test\" f=\"Der-preis-jaeger.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Der Keiler.com (partial)\" f=\"Der_Keiler.com.xml\"><rule from=\"^http://cdn\\.derkeiler\\.com/\" to=\"https://d30uw9rfekksi5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Derby.gov.uk (partial)\" f=\"Derby.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derpibooru\" f=\"Derpibooru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"derpy.me\" default_off=\"failed ruleset test\" f=\"Derpy.me.xml\"><securecookie host=\"^derpy\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DersVerilir.net\" f=\"DersVerilir.net.xml\"><securecookie host=\"^\\.dersverilir\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derwesten.de\" f=\"Derwesten.de.xml\"><rule from=\"^http://(?:www\\.)?derwesten\\.de/\" to=\"https://www.derwesten.de/\"/><rule from=\"^http://(files1|shop)\\.derwesten\\.de/\" to=\"https://$1.derwesten.de/\"/></ruleset>", "<ruleset name=\"Desert News (partial)\" f=\"Desert_News.xml\"><exclusion pattern=\"^http://(?:www\\.)?desertnews\\.com/(?!css/|favicon\\.ico|images/|img/|js/|logo\\.gif|media/|misc/)\"/><exclusion pattern=\"^http://subscribe\\.desertnews\\.com/(?!css/|favicon\\.ico|images/|script/)\"/><rule from=\"^http://((?:static|subscribe|www)\\.)?desertnews\\.com/\" to=\"https://$1desertnews.com/\"/></ruleset>", "<ruleset name=\"Desertory Media\" default_off=\"self-signed\" f=\"Desertory_Media.xml\"><rule from=\"^http://(?:www\\.)?desertory\\.de/\" to=\"https://desertory.de/\"/></ruleset>", "<ruleset name=\"DesignAddict\" default_off=\"failed ruleset test\" f=\"DesignAddict.xml\"><securecookie host=\"^(?:.*\\.)?(?:designaddict\\.com|generationawake\\.eu)$\" name=\".+\"/><rule from=\"^http://(www\\.)?(designaddict\\.com|generationawake\\.eu)/\" to=\"https://$1$2/\"/></ruleset>", "<ruleset name=\"Designer News.co\" f=\"Designer_News.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://designernews\\.co/\" to=\"https://www.designernews.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Designova.net\" f=\"Designova.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desire2learn.com\" default_off=\"failed ruleset test\" f=\"Desire2learn.com.xml\"><securecookie host=\"^(?:.*\\.)?desire2learn\\.com$\" name=\".+\"/><rule from=\"^http://((?:community|lmscloud\\.edev|pt\\.valence|www)\\.)?desire2learn\\.com/\" to=\"https://$1desire2learn.com/\"/></ruleset>", "<ruleset name=\"Desjardins (partial)\" default_off=\"failed ruleset test\" f=\"Desjardins.xml\"><securecookie host=\"desjardins\\.com$\" name=\".+\"/><securecookie host=\"accesd\\.desjardins\\.com$\" name=\".+\"/><securecookie host=\"accesd\\.affaires\\.desjardins\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?desjardins\\.com/\" to=\"https://www.desjardins.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desk.com\" default_off=\"failed ruleset test\" f=\"Desk.com.xml\"><rule from=\"^http://(www\\.)?assistly\\.com/\" to=\"https://$1assistly.com/\"/><rule from=\"^http://assets\\d\\.assistly\\.com/\" to=\"https://d1epb5gzmg3005.cloudfront.net/\"/><rule from=\"^http://webassets\\.assistly\\.com/\" to=\"https://dwan8j4vneaa7.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?desk\\.com/\" to=\"https://www.desk.com/\"/><rule from=\"^http://assets(?:[0-3]|0[1-4])?\\.desk\\.com/\" to=\"https://d218iqt4mo6adh.cloudfront.net/\"/><rule from=\"^http://webassets\\.desk\\.com/\" to=\"https://d3e6ejlgd1t9v1.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.desk\\.com/\" to=\"https://$1.desk.com/\"/></ruleset>", "<ruleset name=\"Desktop Summit.org\" f=\"Desktop_Summit.org.xml\"><securecookie host=\"^\\.desktopsummit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Despora.de\" f=\"Despora.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dessaly.com\" f=\"Dessaly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Destroy All Software.com\" f=\"Destroy_All_Software.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Destructoid (partial)\" default_off=\"expired\" f=\"Destructoid.xml\"><rule from=\"^http://bulk\\d\\.destructoid\\.com/\" to=\"https://bulk2.destructoid.com/\"/><rule from=\"^http://(?:www\\.)?destructoid\\.com/elephant/ul/\" to=\"https://bulk2.destructoid.com/ul/\"/></ruleset>", "<ruleset name=\"Desura (partial)\" f=\"Desura.xml\"><rule from=\"^http://s(?:ecure|tatic)\\.desura\\.com/\" to=\"https://secure.desura.com/\"/></ruleset>", "<ruleset name=\"Desy.de (partial)\" f=\"Desy.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://desy\\.de/\" to=\"https://www.desy.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Details.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Details.com-falsemixed.xml\"><rule from=\"^http://wp-poc\\.details\\.com/\" to=\"https://wp-poc.details.com/\"/></ruleset>", "<ruleset name=\"Details (partial)\" f=\"Details.xml\"><exclusion pattern=\"^http://(?:www\\.)?details\\.com/(?!css/|images/|favicon\\.ico$|sandbox/)\"/><rule from=\"^http://(?:secure\\.|www\\.)?details\\.com/\" to=\"https://secure.details.com/\"/><rule from=\"^http://wp-poc\\.details\\.com/(?=(?:daily-details/)?(?:files/|wp-content/)|favicon\\.ico)\" to=\"https://wp-poc.details.com/\"/></ruleset>", "<ruleset name=\"Detectify.com (partial)\" f=\"Detectify.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Detektor.fm\" f=\"Detektor.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeusM clients\" default_off=\"mismatch\" f=\"DeusM-clients.xml\"><securecookie host=\"^www\\.internetevolution\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?internetevolution\\.com/\" to=\"https://www.internetevolution.com/\"/></ruleset>", "<ruleset name=\"DeusM (partial)\" default_off=\"failed ruleset test\" f=\"DeusM.xml\"><securecookie host=\"^.*\\.deusm\\.com$\" name=\".*\"/><rule from=\"^http://(payment\\.)?deusm\\.com/\" to=\"https://$1deusm.com/\"/><rule from=\"^http://img\\.deusm\\.com/\" to=\"https://deusm.cachefly.net/\"/></ruleset>", "<ruleset name=\"Deutsche BKK\" f=\"Deutsche-BKK.xml\"><rule from=\"^http://(?:www\\.)?deutschebkk\\.de/\" to=\"https://www.deutschebkk.de/\"/></ruleset>", "<ruleset name=\"Deutsche-Rentenversicherung.de\" f=\"Deutsche-Rentenversicherung.de.xml\"><rule from=\"^https?://(www\\.)?deutsche-rentenversicherung-bund\\.de/\" to=\"https://www.deutsche-rentenversicherung.de/\"/><rule from=\"^https?://(www\\.)?drv-bund\\.de/\" to=\"https://www.deutsche-rentenversicherung.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutsche Börse Group\" f=\"Deutsche_Boerse.xml\"><rule from=\"^http://deutsche-boerse\\.com/\" to=\"https://www.deutsche-boerse.com/\"/><rule from=\"^http://([^/:@]+)?\\.deutsche-boerse\\.com/\" to=\"https://$1.deutsche-boerse.com/\"/></ruleset>", "<ruleset name=\"Messe.de (partial)\" f=\"Deutsche_Messe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom.de\" f=\"Deutsche_Telekom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://telekom\\.de/\" to=\"https://www.telekom.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutschebahn.com\" f=\"Deutschebahn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutschen Forschungsgemeinschaft (partial)\" default_off=\"mismatch\" f=\"Deutschen-Forschungsgemeinschaft.xml\"><securecookie host=\"^research-explorer\\.dfg\\.de$\" name=\".*\"/><rule from=\"^http://research-explorer\\.dfg\\.de/\" to=\"https://research-explorer.dfg.de/\"/></ruleset>", "<ruleset name=\"deutscher-radiopreis.de\" f=\"Deutscher-radiopreis.de.xml\"><securecookie host=\"^(www\\.)?deutscher-radiopreis\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutscher Bundestag (partial)\" f=\"Deutscher_Bundestag.xml\"><securecookie host=\"^.+\\.bundestag\\.de$\" name=\".+\"/><rule from=\"^http://((?:datenaustausch|forum|suche|www)\\.)?bundestag\\.de/\" to=\"https://$1bundestag.de/\"/></ruleset>", "<ruleset name=\"DFN.de\" f=\"Deutsches_Forschungsnetz.xml\"><exclusion pattern=\"http://(?:airoserv4|www\\.listserv|cdp\\d*\\.pca)\\.dfn\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://dfn\\.de/\" to=\"https://www.dfn.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DevConf.cz\" default_off=\"mismatched, self-signed\" f=\"DevConf.cz.xml\"><securecookie host=\"^openshift\\.devconf\\.cz$\" name=\".+\"/><rule from=\"^http://(?:(openshift\\.)|www\\.)?devconf\\.cz/\" to=\"https://$1devconf.cz/\"/></ruleset>", "<ruleset name=\"DevDocs\" f=\"DevDocs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devstructure\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DevStructure.xml\"><rule from=\"^http://(?:www\\.)?devstructure\\.com/\" to=\"https://devstructure.com/\"/></ruleset>", "<ruleset name=\"devZing.com\" f=\"DevZing.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?devzing\\.com/blog/index\\.php\"/><securecookie host=\"^devzing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeveloperMail.io\" f=\"DeveloperMail.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"devever.net\" f=\"Devever.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeviantArt (mismatches)\" default_off=\"Certificate mismatch\" f=\"Deviantart-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fav\\.me/\" to=\"https://fav.me/\"/></ruleset>", "<ruleset name=\"DeviantArt (pending)\" default_off=\"waiting for webmasters to indicate site is ready\" f=\"Deviantart.xml\"><exclusion pattern=\"^http://chat\\.deviantart\\.(?:com|net)/\"/><exclusion pattern=\"^http://l\\.deviantart\\.net/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([aei]|fc\\d\\d|img\\d\\d|orig\\d\\d|pre\\d\\d|s[ht]|th?\\d\\d)\\.deviantart\\.(com|net)/\" to=\"https://$1.deviantart.$2/\"/><rule from=\"^http://([^/:@.]+\\.)?deviantart\\.(?:com|net)/\" to=\"https://$1deviantart.com/\"/></ruleset>", "<ruleset name=\"Devil Team.pl\" f=\"Devil_Team.pl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.devilteam\\.pl/\" to=\"https://devilteam.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devimperium.com\" default_off=\"needs clearnet testing\" f=\"Devimperium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"devmonk.com\" f=\"Devmonk.com.xml\"><rule from=\"^http://www\\.devmonk\\.com/\" to=\"https://devmonk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devolo.com\" f=\"Devolo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devon.gov.uk (partial)\" f=\"Devon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://devon\\.gov\\.uk/\" to=\"https://www.devon.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devon and Cornwall Police\" f=\"DevonandCornwallPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devpress.com\" f=\"Devpress.com.xml\"><rule from=\"^http://(?:www\\.)?devpress\\.com/\" to=\"https://devpress.com/\"/></ruleset>", "<ruleset name=\"Devprom.ru (partial)\" default_off=\"missing certificate chain\" f=\"Devprom.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DevsBuild.It (partial)\" f=\"DevsBuild.It.xml\"><rule from=\"^http://assets\\.devsbuild\\.it/\" to=\"https://dwr712tf70ilz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Devuan.org (partial)\" f=\"Devuan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dex Media.com (partial)\" f=\"Dex_Media.com.xml\"><securecookie host=\"^(?:account|my)\\.dexmedia\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.dexmedia\\.com/\" to=\"https://dexmedia-wpengine.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dezeen.com (partial)\" default_off=\"cert warning\" f=\"Dezeen.com.xml\"><rule from=\"^http://static\\.dezeen\\.com/\" to=\"https://static.dezeen.com/\"/></ruleset>", "<ruleset name=\"Dezert Depot\" f=\"Dezert_Depot.xml\"><securecookie host=\"^(?:.*\\.)?dezertdepot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dfri.se\" f=\"Dfri.se.xml\"><rule from=\"^http://(?:www\\.)?dfri\\.se/\" to=\"https://www.dfri.se/\"/></ruleset>", "<ruleset name=\"dgl.cx\" f=\"Dgl.cx.xml\"><rule from=\"^http://(?:www\\.)?dgl\\.cx/\" to=\"https://dgl.cx/\"/></ruleset>", "<ruleset name=\"Dhaval Kapil.com\" f=\"Dhaval_Kapil.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiaGrid\" f=\"DiaGrid.xml\"><securecookie host=\"^diagrid\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dia-?grid\\.org/\" to=\"https://diagrid.org/\"/></ruleset>", "<ruleset name=\"Diagonalperiodico.net\" platform=\"mixedcontent\" f=\"Diagonalperiodico.net.xml\"><rule from=\"^http://(?:www\\.)?diagonalperiodico\\.net/\" to=\"https://www.diagonalperiodico.net/\"/></ruleset>", "<ruleset name=\"Dial Direct\" default_off=\"failed ruleset test\" f=\"Dial_Direct.xml\"><securecookie host=\"^\\.?www\\.dialdirect\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dialdirect\\.co\\.uk/\" to=\"https://www.dialdirect.co.uk/\"/><rule from=\"^http://(?:www\\.)?insure-systems\\.co\\.uk/\" to=\"https://www.insure-systems.co.uk/\"/></ruleset>", "<ruleset name=\"Dialogs.com\" f=\"Dialogs.com.xml\"><securecookie host=\"^www\\.dialogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dianomi.com (partial)\" f=\"Dianomi.xml\"><securecookie host=\"^(?:.*\\.)?dianomi\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.dianomi\\.com/\" to=\"https://d3von6il1wr7wo.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.de\" f=\"Diasp.de.xml\"><rule from=\"^http://www\\.diasp\\.de/\" to=\"https://diasp.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.eu\" f=\"Diasp.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.org (partial)\" f=\"Diasp.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoinDiaspora.com\" f=\"Diaspora.xml\"><securecookie host=\"^(?:www\\.)?joindiaspora\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiasporaBR.com.br\" f=\"DiasporaBR.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diaspora Brazil.org\" f=\"Diaspora_Brazil.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diaspora Foundation.org\" f=\"Diaspora_Foundation.org.xml\"><securecookie host=\"^(?:\\.|blog\\.)?diasporafoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dice.com (false MCB)\" platform=\"mixedcontent\" f=\"Dice-problematic.xml\"><exclusion pattern=\"http://www\\.dice\\.com/+(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?dice\\.com/\" to=\"https://www.dice.com/\"/></ruleset>", "<ruleset name=\"Dice.com (partial)\" f=\"Dice.xml\"><exclusion pattern=\"^http://www\\.dice\\.com/(?!assets/|company/\\w|content/|(?:dashboard|jobs)(?:$|[?/])|favicon\\.ico)\"/><securecookie host=\"^\\.\" name=\"^(?:__qca$|s_v)\"/><rule from=\"^http://dice\\.com/\" to=\"https://www.dice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dicesoft.net\" f=\"Dicesoft.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dict.cc\" f=\"Dict.cc.xml\"><exclusion pattern=\"^http://[\\w-]+\\.dict\\.cc/dict/options\\.php\"/><rule from=\"^https://([\\w-]+)\\.dict\\.cc/dict/options\\.php\" to=\"http://$1.dict.cc/dict/options.php\" downgrade=\"1\"/><rule from=\"^http://dict\\.cc/\" to=\"https://www.dict.cc/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die-Linke.de (false MCB)\" platform=\"mixedcontent\" f=\"Die-Linke.de-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die-Linke.de (partial)\" f=\"Die-Linke.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die.net\" f=\"Die.net.xml\"><rule from=\"^http://(?:www\\.)?die\\.net/\" to=\"https://www.die.net/\"/></ruleset>", "<ruleset name=\"Die Linke-sachsen.de\" f=\"Die_Linke-sachsen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DieselNet.com\" f=\"DieselNet.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diff Checker.com\" f=\"Diff_Checker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Difference Between\" default_off=\"self-signed\" f=\"Difference_Between.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?differencebetween\\.net/\" to=\"https://www.differencebetween.net/\"/></ruleset>", "<ruleset name=\"Diffoscope\" f=\"Diffoscope.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diffuse.ca\" default_off=\"failed ruleset test\" f=\"Diffuse.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dig.Domains\" f=\"Dig.Domains.xml\"><securecookie host=\"^\\.dig\\.domains$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigBoston.com\" f=\"DigBoston.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.digboston\\.com/\" to=\"https://digboston.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigCoin.com\" f=\"DigCoin.com.xml\"><securecookie host=\"^digcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digg (partial)\" f=\"Digg.xml\"><securecookie host=\"^\\.?digg\\.com$\" name=\".+\"/><rule from=\"^http://((?:static|widgets|www)\\.)?digg\\.com/\" to=\"https://$1digg.com/\"/></ruleset>", "<ruleset name=\"Digi-Key (partial)\" f=\"Digi-Key.xml\"><securecookie host=\"^.*\\.digikey\\.(com|de)$\" name=\".+\"/><rule from=\"^http://digikey\\.(com|de)/\" to=\"https://www.digikey.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digi.hu\" f=\"Digi.hu.xml\"><securecookie host=\"^\\.?digi\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digi77.com\" f=\"Digi77.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigiBib.net\" f=\"DigiBib.net.xml\"><rule from=\"^http://(m|www)\\.digibib\\.net/\" to=\"https://$1.digibib.net/\"/></ruleset>", "<ruleset name=\"DigiCert.com\" f=\"DigiCert.xml\"><securecookie host=\"^.*\\.digicert\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digiKam.org\" f=\"DigiKam.org.xml\"><securecookie host=\"^\\.digikam\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digia (partial)\" default_off=\"failed ruleset test\" f=\"Digia.xml\"><securecookie host=\"^(?:.+\\.)?digia\\.com$\" name=\".+\"/><rule from=\"^http://(blog\\.qt\\.|qt\\.|www\\.)?digia\\.com/\" to=\"https://$1digia.com/\"/></ruleset>", "<ruleset name=\"Digiday.com (false MCB)\" platform=\"mixedcontent\" f=\"Digiday.com.xml\"><securecookie host=\"^(?:www\\.)?digiday\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digifense.com\" f=\"Digifense.com.xml\"><securecookie host=\"^(?:www\\.)?digifense\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digilinux.ru (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Digilinux.ru.xml\"><rule from=\"^http://(?:www\\.)?digilinux\\.ru/\" to=\"https://digilinux.ru/\"/></ruleset>", "<ruleset name=\"Digitab Portals\" default_off=\"failed ruleset test\" f=\"Digitab-Portals.xml\"><securecookie host=\"^www\\.digitabportals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitabportals\\.com/\" to=\"https://www.digitabportals.com/\"/></ruleset>", "<ruleset name=\"Digital Bond.com\" f=\"Digital-Bond.xml\"><rule from=\"^http://digibond\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://www.digitalbond.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital-Future.it\" default_off=\"521\" f=\"Digital-Future.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNUK.com (partial)\" default_off=\"mismatched\" f=\"Digital-Networks-UK.xml\"><exclusion pattern=\"^http://(?:www\\.)?dnuk\\.com/(?!_elements/|images/)\"/><securecookie host=\"^secure\\.dnuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dnuk\\.com/\" to=\"https://secure.dnuk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital River.com (partial)\" f=\"Digital-River.xml\"><exclusion pattern=\"^http://corporate\\.digitalriver\\.com/(?!DRHM/)\"/><exclusion pattern=\"^http://info\\.digitalriver\\.com/(?!css/|images/|js/|rs/)\"/><securecookie host=\"^\\.digitalriver\\.com$\" name=\"^utag_\\w+$\"/><securecookie host=\"^(?:\\.?developers|gc|store)\\.digitalriver\\.com$\" name=\".+\"/><rule from=\"^http://info\\.digitalriver\\.com/\" to=\"https://na-sj03.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Transactions\" default_off=\"self-signed\" f=\"Digital-Transactions.xml\"><securecookie host=\"^digitaltransactions\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitaltransactions\\.net/\" to=\"https://digitaltransactions.net/\"/></ruleset>", "<ruleset name=\"Digital Window (mismatches)\" default_off=\"mismatch\" f=\"Digital-Window-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Window (partial)\" f=\"Digital-Window.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://awin1\\.com/\" to=\"https://www.awin1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalForensicsMagazine.com\" f=\"DigitalForensicsMagazine.xml\"><securecookie host=\"^(?:.+\\.)?digitalforensicsmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalGov.gov (false MCB)\" platform=\"mixedcontent\" f=\"DigitalGov.gov-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalGov.gov (partial)\" f=\"DigitalGov.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.summit\\.digitalgov\\.gov$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Creations.no\" default_off=\"mismatched\" f=\"Digital_Creations.no.xml\"><securecookie host=\"^(?:[.\\w]*\\.)?digitalcreations\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?digitalcreations\\.no/\" to=\"https://digitalcreations.no/\"/></ruleset>", "<ruleset name=\"Digital Defenders.org\" f=\"Digital_Defenders.org.xml\"><securecookie host=\"^digitaldefenders\\.org$\" name=\".+\"/><rule from=\"^http://www\\.digitaldefenders\\.org/\" to=\"https://digitaldefenders.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Dollhouse.com\" f=\"Digital_Dollhouse.com.xml\"><securecookie host=\"^\\.digitaldollhouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Mars.com\" default_off=\"expired, self-signed\" f=\"Digital_Mars.com.xml\"><rule from=\"^http://www\\.digitalmars\\.com/\" to=\"https://digitalmars.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital News Agency.com\" default_off=\"expired\" f=\"Digital_News_Agency.com.xml\"><securecookie host=\"^\\.digitalnewsagency\\.com$\" name=\".+\"/><rule from=\"^http://digitalnewsagency\\.com/\" to=\"https://www.digitalnewsagency.com/\"/><rule from=\"^http://dna-bucket-dna\\.cf\\.rawcdn\\.com/\" to=\"https://df7r7v78mcbtc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Ocean.com\" f=\"Digital_Ocean.com.xml\"><securecookie host=\"^(?!\\.cloud\\.).\" name=\".\"/><securecookie host=\"^\\.cloud\\.\" name=\"^(?!(?:[A-Z][a-z]{2}\\ ){2}\\d\\d\\ \\d{4}\\ \\d\\d:\\d\\d:\\d\\d\\ [A-Z]{3}[+-]\\d{4}\\ \\([\\w\\ ]+\\)$).\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Pacific.com.au\" f=\"Digital_Pacific.com.au.xml\"><securecookie host=\"^onepanel\\.digitalpacific\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Photography Review (partial)\" f=\"Digital_Photography_Review.xml\"><rule from=\"^http://(?:www\\.)?dpreview\\.com/(challenges/[iI]mages/|members/register|products_data/|resources/)\" to=\"https://www.dpreview.com/$1\"/><rule from=\"^http://connect\\.dpreview\\.com/products_data/\" to=\"https://connect.dpreview.com/products_data/\"/><rule from=\"^http://(?:a|\\d+\\.static)\\.(?:img-)?dpreview\\.com/\" to=\"https://d199bk7kirt65b.cloudfront.net/\"/><rule from=\"^http://g[1-4]\\.img-dpreview\\.com/\" to=\"https://d3ojfab0q2dwum.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Digital Point.com (partial)\" f=\"Digital_Point_Solutions.xml\"><securecookie host=\"^\\.digitalpoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital River content.net\" f=\"Digital_River_content.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Shelf Space (partial)\" f=\"Digital_Shelf_Space.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Trends.com (partial)\" platform=\"mixedcontent\" default_off=\"expired, missing certificate chain\" f=\"Digital_Trends.com.xml\"><rule from=\"^http://(?:www\\.)?digitaltrends\\.com/\" to=\"https://digitaltrends.com/\"/></ruleset>", "<ruleset name=\"digital WPC.com (partial)\" f=\"Digital_WPC.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?digitalwpc\\.com/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?digitalwpc\\.com/+\" to=\"https://mspartner.microsoft.com/en/us/Pages/WPC/overview.aspx\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitalcourage.de\" f=\"Digitalcourage.de.xml\"><securecookie host=\"^\\.shop\\.digitalcourage\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitale-Diathek.net (partial)\" f=\"Digitale_Diathek.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitalegesellschaft.de\" f=\"Digitalegesellschaft.de.xml\"><securecookie host=\"^digitalegesellschaft\\.de$\" name=\".+\"/><rule from=\"^http://www\\.digitalegesellschaft\\.de/\" to=\"https://digitalegesellschaft.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitalfreedom.io\" f=\"Digitalfreedom.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitaria (partial)\" default_off=\"failed ruleset test\" f=\"Digitaria.xml\"><securecookie host=\"^redmine\\.digitaria\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.insightmgr\\.com$\" name=\".+\"/><rule from=\"^http://redmine\\.digitaria\\.com/\" to=\"https://redmine.digitaria.com/\"/><rule from=\"^http://(digi|www)\\.insightmgr\\.com/\" to=\"https://$1.insightmgr.com/\"/></ruleset>", "<ruleset name=\"Digitec.ch\" f=\"Digitec.xml\"><securecookie host=\"^(?:.*\\.)?digitec\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitec\\.ch/\" to=\"https://www.digitec.ch/\"/></ruleset>", "<ruleset name=\"Digits.com (partial)\" f=\"Digits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digium.com (partial)\" f=\"Digium.xml\"><exclusion pattern=\"^http://www\\.digium\\.com/(?:en/(?:$|\\?|partner-portal|products$)|favicon\\.ico|sites/)\"/><securecookie host=\"^\\.digium\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^login\\.digium\\.com$\" name=\".+\"/><rule from=\"^http://digium\\.com/\" to=\"https://www.digium.com/\"/><rule from=\"^http://(login|store|www)\\.digium\\.com/\" to=\"https://$1.digium.com/\"/></ruleset>", "<ruleset name=\"DigiumEnterprise.com\" f=\"DigiumEnterprise.com.xml\"><rule from=\"^http://digiumenterprise\\.com/answer/\" to=\"https://digiumenterprise.com/answer/\"/></ruleset>", "<ruleset name=\"Digiweb (self-signed)\" default_off=\"expired, self-signed\" f=\"Digiweb-self-signed.xml\"><securecookie host=\"^uweb[23]\\.host\\.ie$\" name=\".*\"/><securecookie host=\"^novweb\\.novara\\.ie$\" name=\".*\"/><rule from=\"^http://80\\.93\\.17\\.6/webshell4($|/)\" to=\"https://uweb2.host.ie/webshell4$1\"/><rule from=\"^http://80\\.93\\.17\\.242/webshell4($|/)\" to=\"https://uweb3.host.ie/webshell4$1\"/><rule from=\"^http://80\\.93\\.18\\.36/webshell4($|/)\" to=\"https://novweb.novara.ie/webshell4$1\"/><rule from=\"^http://uweb([23])\\.host\\.ie/\" to=\"https://uweb$1.host.ie/\"/><rule from=\"^http://novweb\\.novara\\.ie/\" to=\"https://novweb.novara.ie/\"/><rule from=\"^http://(?:www\\.)?securecerts\\.ie/\" to=\"https://www.securecerts.ie/\"/></ruleset>", "<ruleset name=\"Digiweb (partial)\" default_off=\"failed ruleset test\" f=\"Digiweb.xml\"><securecookie host=\"^(?:manage\\.hosting|secureorders)\\.digiweb\\.ie$\" name=\".*\"/><securecookie host=\"^(?:host|register)\\.ie$\" name=\".*\"/><securecookie host=\"^ncm\\.novarait\\.com$\" name=\".*\"/><rule from=\"^http://(manage\\.hosting|secureorders)\\.digiweb\\.ie/\" to=\"https://$1.digiweb.ie/\"/><rule from=\"^http://(?:www\\.)?host\\.ie/\" to=\"https://host.ie/\"/><rule from=\"^http://cp\\.host\\.ie/\" to=\"https://cp.host.ie/\"/><rule from=\"^http://(?:www\\.)?(?:novera|promote|register)\\.ie/\" to=\"https://register.ie/\"/><rule from=\"^http://ncm\\.novarait\\.com/\" to=\"https://ncm.novarait.com/\"/></ruleset>", "<ruleset name=\"Dignity in Dying.org.uk (partial)\" f=\"Dignity_in_Dying.org.uk.xml\"><rule from=\"^http://(www\\.)?dignityindying\\.org\\.uk/(?=favicon\\.ico|support-us(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1dignityindying.org.uk/\"/></ruleset>", "<ruleset name=\"Diigo\" f=\"Diigo.xml\"><securecookie host=\"^\\.diigo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dikkenberg.net\" f=\"Dikkenberg.net.xml\"><securecookie host=\"^www\\.dikkenberg\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DilbertFiles.org (partial)\" platform=\"mixedcontent\" f=\"DilbertFiles.org.xml\"><securecookie host=\"^secure\\.dilbertfiles\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.dilbertfiles\\.com/\" to=\"https://secure.dilbertfiles.com/\"/></ruleset>", "<ruleset name=\"Dilcdn.com\" f=\"Dilcdn.com.xml\"><rule from=\"^http://a\\.dilcdn\\.com/\" to=\"https://a.dilcdn.com/\"/></ruleset>", "<ruleset name=\"dinahosting.com\" f=\"Dinahosting.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dinahosting.pt\" f=\"Dinahosting.pt.xml\"><securecookie host=\"^\\.dinahosting\\.pt$\" name=\".\"/><rule from=\"^http://www\\.dinahosting\\.pt/\" to=\"https://dinahosting.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diogo Monica.com\" f=\"Diogo_Monica.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Direct Marketing Association\" default_off=\"failed ruleset test\" f=\"Direct-Marketing-Association.xml\"><securecookie host=\"^(?:.*\\.)?dma\\.org\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Direct123.fi\" f=\"Direct123.fi.xml\"><securecookie host=\"^www\\.direct123\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?direct123\\.fi/\" to=\"https://www.direct123.fi/\"/></ruleset>", "<ruleset name=\"DirectAdvert.ru (partial)\" f=\"DirectAdvert.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DirectSpace\" platform=\"mixedcontent\" f=\"DirectSpace.xml\"><rule from=\"^http://(?:www\\.)?directspace\\.net/\" to=\"https://directspace.net/\"/></ruleset>", "<ruleset name=\"Direct Line.com\" default_off=\"failed ruleset test\" f=\"Direct_Line.com.xml\"><rule from=\"^http://(?:uk3\\.|www\\.)?directline\\.com/\" to=\"https://uk3.directline.com/\"/><rule from=\"^http://amendsonline\\.directline\\.com/\" to=\"https://amendsonline.directline.com/\"/><rule from=\"^http://(?:faq\\.directline|directline\\.metafaq)\\.com/\" to=\"https://directline.metafaq.com/\"/></ruleset>", "<ruleset name=\"Direct Mail Mac.com (partial)\" f=\"Direct_Mail_Mac.com.xml\"><rule from=\"^http://four\\.cdn\\.directmailmac\\.com/\" to=\"https://d39okwd0art5yj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Directa.cat\" f=\"Directa.cat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Directbox\" default_off=\"failed ruleset test\" f=\"Directbox.xml\"><rule from=\"^http://(?:www\\.)?directbox\\.(?:at|biz|ch|com|de|eu|info|net|tv)/\" to=\"https://www.directbox.com/\"/><rule from=\"^http://neu\\.directbox\\.com/\" to=\"https://neu.directbox.com/\"/></ruleset>", "<ruleset name=\"Directgov (mismatches)\" default_off=\"mismatch, self-signed\" platform=\"mixedcontent\" f=\"Directgov-mismatches.xml\"><rule from=\"^http://epetitions\\.direct\\.gov\\.uk/(images/|javascripts/|stylesheets/)\" to=\"https://epetitions.direct.gov.uk/$1\"/><rule from=\"^http://www\\.northdown\\.gov\\.uk/\" to=\"https://www.northdown.gov.uk/\"/><rule from=\"^http://(?:www\\.)?ico\\.jobs/\" to=\"https://www.ico.jobs/\"/></ruleset>", "<ruleset name=\"Direct.gov.uk (partial)\" f=\"Directgov.xml\"><securecookie host=\"^\\.epetitions\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://direct\\.gov\\.uk/\" to=\"https://www.direct.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Directory Opus\" f=\"DirectoryOpus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Directorystore.com (partial)\" f=\"Directorystore.com.xml\"><exclusion pattern=\"^http://www\\.directorystore\\.com/index\\.jsp\"/><rule from=\"^http://directorystore\\.com/\" to=\"https://www.directorystore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"directrev.com\" f=\"Directrev.com.xml\"><securecookie host=\"^ad\\.directrev\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.directrev\\.com/\" to=\"https://ad.directrev.com/\"/><rule from=\"^http://cdn\\.directrev\\.com/\" to=\"https://d2wxwu28a4m0zf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Dirk.to\" f=\"Dirk.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dirty.ru\" default_off=\"missing certificate chain\" f=\"Dirty.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dirxion\" f=\"Dirxion.xml\"><securecookie host=\"^.*\\.dirxion\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dirxion\\.com/\" to=\"https://www.dirxion.com/\"/><rule from=\"^http://blogs\\.dirxion\\.com/\" to=\"https://blogs.dirxion.com/\"/></ruleset>", "<ruleset name=\"Disability.gov\" f=\"Disability.gov.xml\"><securecookie host=\"^(?:(?:www)?\\.)?disability\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?disability\\.gov/\" to=\"https://www.disability.gov/\"/></ruleset>", "<ruleset name=\"DisabledGo.com (partial)\" default_off=\"failed ruleset test\" f=\"DisabledGo.com.xml\"><exclusion pattern=\"^http://www\\.disabledgo\\.com/+(?![Ff]ile[Dd]epository/|(?:forgotten-password|login-register)(?:$|[?/])|[Ss]ite/|styleresource\\.webpos)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"disc-soft.com (partial)\" default_off=\"failed ruleset test\" f=\"Disc-soft.com.xml\"><rule from=\"^http://(secure|img)\\.disc-soft\\.com/\" to=\"https://$1.disc-soft.com/\"/><rule from=\"^http://(?:www\\.)?disc-soft\\.com/\" to=\"https://www.disc-soft.com/\"/></ruleset>", "<ruleset name=\"Discogs (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Discogs.xml\"><rule from=\"^http://(?:www\\.)?discogs\\.com/((?:css|developers|users|images?)/|help$)\" to=\"https://www.discogs.com/$1\"/><rule from=\"^http://images\\.discogsmp3\\.com/\" to=\"https://images.juno.co.uk/\"/><rule from=\"^http://s\\.dsimg\\.com/\" to=\"https://www.discogs.com/\"/><rule from=\"^http://s\\.pixogs\\.com/\" to=\"https://s.pixogs.com/\"/></ruleset>", "<ruleset name=\"discojuice.org (partial)\" f=\"Discojuice.org.xml\"><rule from=\"^http://(engine|static|store)\\.discojuice\\.org/\" to=\"https://$1.discojuice.org/\"/></ruleset>", "<ruleset name=\"Disconnect.me\" f=\"Disconnect.me.xml\"><securecookie host=\"^blog\\.disconnect\\.me$\" name=\".+\"/><rule from=\"^http://forum\\.disconnect\\.me/\" to=\"https://disconnect.me/forum/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiscountTheatre.com\" f=\"DiscountTheatre.xml\"><rule from=\"^http://(?:www\\.)?discounttheatre\\.com/\" to=\"https://www.discounttheatre.com/\"/></ruleset>", "<ruleset name=\"Discourse.org (partial)\" f=\"Discourse.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Magazine.com (partial)\" f=\"Discover-Magazine.xml\"><securecookie host=\"^(?:blogs|secure)\\.discovermagazine\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.media\\.discovermagazine\\.com/\" to=\"https://d2lcm6dnbncm78.cloudfront.net/\"/><rule from=\"^http://subscribe\\.discovermagazine\\.com/(?:digital/|\\?.*)?\" to=\"https://secure.discovermagazine.com/pubs/AG/DSD/DSDDCR_Zinio_Subscription-FreeGift-update2.jsp?cds_page_id=122337&cds_mag_code=DSD&cds_response_key=IF28R1\"/><rule from=\"^http://(blogs|secure)\\.discovermagazine\\.com/\" to=\"https://$1.discovermagazine.com/\"/></ruleset>", "<ruleset name=\"Discover.com\" f=\"Discover.com.xml\"><rule from=\"^http://((?:m|search|www)\\.)?discover\\.com/\" to=\"https://$1discover.com/\"/></ruleset>", "<ruleset name=\"DiscoverBSD.com\" f=\"DiscoverBSD.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Card.com\" f=\"Discover_Card.com.xml\"><rule from=\"^http://((?:m|mst0\\.m|qsys\\.m|mapi|search|www)\\.)?discovercard\\.com/\" to=\"https://$1discovercard.com/\"/></ruleset>", "<ruleset name=\"Discover Merchants.com\" f=\"Discover_Merchants.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Meteor.com (partial)\" f=\"Discover_Meteor.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://discovermeteor\\.com/\" to=\"https://www.discovermeteor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Network.com (partial)\" f=\"Discover_Network.com.xml\"><rule from=\"^http://((?:cashlocator|servicecenter|www)\\.)?discovernetwork\\.com/\" to=\"https://$1discovernetwork.com/\"/></ruleset>", "<ruleset name=\"Discover Signage.com\" f=\"Discover_Signage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery.com (partial)\" f=\"Discovery-Communications.xml\"><rule from=\"^http://store\\.discovery\\.com/\" to=\"https://securestore.discovery.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery.org\" f=\"Discovery.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery Place\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DiscoveryPlace.xml\"><rule from=\"^http://(?:www\\.)?discoveryplace\\.org/\" to=\"https://www.discoveryplace.org/\"/><rule from=\"^http://(?:www\\.)?discoveryplacekids\\.org/\" to=\"https://www.discoveryplacekids.org/\"/></ruleset>", "<ruleset name=\"discshop.se\" f=\"Discshop.se.xml\"><securecookie host=\"^\\.?www\\.discshop\\.se$\" name=\".+\"/><rule from=\"^http://(?:s\\d\\.|www\\.)?discshop\\.se/\" to=\"https://www.discshop.se/\"/></ruleset>", "<ruleset name=\"Discuss.io (partial)\" f=\"Discuss.io.xml\"><securecookie host=\"^(?:www\\.)?discuss\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discusslr.com\" f=\"Discusslr.com.xml\"><rule from=\"^http://www\\.discusslr\\.com/\" to=\"https://discusslr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discuto.io\" f=\"Discuto.io.xml\"><rule from=\"^http://(?:www\\.)?discuto\\.io/\" to=\"https://www.discuto.io/\"/></ruleset>", "<ruleset name=\"disk42.com (partial)\" f=\"Disk42.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiskCryptor.net\" f=\"DiskCryptor.net.xml\"><securecookie host=\"^(?:www\\.)?diskcryptor\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diskusjon\" platform=\"mixedcontent\" f=\"Diskusjon.xml\"><rule from=\"^http://diskusjon\\.no/\" to=\"https://diskusjon.no/\"/><rule from=\"^http://www\\.diskusjon\\.no/\" to=\"https://www.diskusjon.no/\"/></ruleset>", "<ruleset name=\"disman.tl\" f=\"Disman.tl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disney.co.jp (partial)\" f=\"Disney.co.jp.xml\"><rule from=\"^http://secure\\.disney\\.co\\.jp/\" to=\"https://secure.disney.co.jp/\"/></ruleset>", "<ruleset name=\"Disney International.com (partial)\" f=\"Disney_International.com.xml\"><rule from=\"^http://analytics\\.disneyinternational\\.com/\" to=\"https://analytics.disneyinternational.com/\"/></ruleset>", "<ruleset name=\"Disney Privacy Center.com\" f=\"Disney_Privacy_Center.com.xml\"><rule from=\"^http://www\\.disneyprivacycenter\\.com/\" to=\"https://disneyprivacycenter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dispenser.tf\" f=\"Dispenser.tf.xml\"><rule from=\"^http://(www\\.)?dispenser\\.tf/\" to=\"https://dispenser.tf/\"/></ruleset>", "<ruleset name=\"displaymarketplace.com (partial)\" f=\"Displaymarketplace.com.xml\"><rule from=\"^http://(?:edge\\.|secure\\.)?aperture\\.displaymarketplace\\.com/\" to=\"https://secure.aperture.displaymarketplace.com/\"/></ruleset>", "<ruleset name=\"Disqus (partial)\" f=\"Disqus.com.xml\"><securecookie host=\"^(\\.)?disqus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disruption Lab.org\" default_off=\"mismatched\" f=\"Disruption_Lab.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Distil.it\" f=\"Distil.xml\"><securecookie host=\"^portal\\.distil\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Distil Networks.com (partial)\" f=\"Distil_Networks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Distraction.gov\" default_off=\"mismatched\" f=\"Distraction.xml\"><rule from=\"^http://distraction\\.gov/\" to=\"https://www.distraction.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"distributed.net (partial)\" default_off=\"self-signed\" f=\"Distributed.net.xml\"><rule from=\"^http://(?:www\\.)?distributed\\.net/\" to=\"https://www.distributed.net/\"/><rule from=\"^http://blogs\\.distributed\\.net/\" to=\"https://blogs.distributed.net/\"/></ruleset>", "<ruleset name=\"District Sentinel.com\" f=\"District_Sentinel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DistroWatch\" f=\"Distrowatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ditt Distrikt\" default_off=\"failed ruleset test\" f=\"Dittdistrikt.xml\"><rule from=\"^http://(?:www\\.)?dittdistrikt\\.no/\" to=\"https://www.dittdistrikt.no/\"/></ruleset>", "<ruleset name=\"DivItUp.com\" f=\"DivItUp.com.xml\"><securecookie host=\"^www\\.divitup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DivXpress.com\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"DivXpress.com.xml\"><securecookie host=\"^\\.divxpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diverse Direct\" f=\"Diverse.direct.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Divessi.com\" f=\"Divessi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Divide (partial)\" f=\"Divide.xml\"><rule from=\"^http://(api|get|my)\\.divide\\.com/\" to=\"https://$1.divide.com/\"/><rule from=\"^http://blog\\.divide\\.com/wp-(content|includes)/\" to=\"https://s164796.gridserver.com/wp-$1/\"/><rule from=\"^http://support\\.divide\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Divshot\" f=\"Divshot.xml\"><securecookie host=\"^\\.divshot\\.com$\" name=\".+\"/><rule from=\"^http://(app\\.|www\\.)?divshot\\.com/\" to=\"https://$1divshot.com/\"/><rule from=\"^http://a1\\.divshot\\.com/\" to=\"https://djyhxgczejc94.cloudfront.net/\"/></ruleset>", "<ruleset name=\"diwi.org (partial)\" default_off=\"self-signed\" f=\"Diwi.org.xml\"><securecookie host=\"^titus\\.diwi\\.org$\" name=\".+\"/><rule from=\"^http://(adn|fox|schmeuf|titus|zorglub)\\.diwi\\.org/\" to=\"https://$1.diwi.org/\"/></ruleset>", "<ruleset name=\"Dixcart.com (partial)\" default_off=\"missing certificate chain\" f=\"Dixcart.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"diygadget.com (partial)\" default_off=\"self-signed\" f=\"Diygadget.com.xml\"><rule from=\"^http://(?:www\\.)?diygadget\\.com/(?=media/|skin/)\" to=\"https://www.diygadget.com/\"/></ruleset>", "<ruleset name=\"Dizaineriai.lt\" f=\"Dizaineriai.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dizzcloud.com\" default_off=\"522\" f=\"Dizzcloud.com.xml\"><securecookie host=\"^\\.?dizzcloud\\.com$\" name=\".+\"/><rule from=\"^http://st\\.dizzcloud\\.com/\" to=\"https://dizzcloud.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Django Project.com\" f=\"Django.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DjangoEurope.com (mismatched)\" default_off=\"mismatched\" f=\"DjangoEurope.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?djangoeurope\\.com/\" to=\"https://djangoeurope.com/\"/></ruleset>", "<ruleset name=\"DjangoEurope.com (partial)\" f=\"DjangoEurope.com.xml\"><rule from=\"^http://panel\\.djangoeurope\\.com/\" to=\"https://panel.djangoeurope.com/\"/></ruleset>", "<ruleset name=\"Django Girls.org (partial)\" f=\"Django_Girls.org.xml\"><securecookie host=\"^\\.djangogirls\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DjurRattsAlliansen.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DjurRattsAlliansen.se.xml\"><rule from=\"^http://www\\.djurrattsalliansen\\.se/\" to=\"https://djurrattsalliansen.se/\"/><rule from=\"^http://djurrattsalliansen\\.se/\" to=\"https://djurrattsalliansen.se/\"/></ruleset>", "<ruleset name=\"Dlisted.com\" default_off=\"mismatched, self-signed\" f=\"Dlisted.com.xml\"><rule from=\"^http://(?:i\\.|www\\.)?dlisted\\.com/\" to=\"https://dlisted.com/\"/></ruleset>", "<ruleset name=\"dlnws.com\" f=\"Dlnws.com.xml\"><rule from=\"^http://s(\\d+)\\.dlnws\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/\"/></ruleset>", "<ruleset name=\"dlvr.it\" f=\"Dlvr.it.xml\"><rule from=\"^http://(?:(static\\.)|www\\.)?dlvr\\.it/\" to=\"https://$1dlvr.it/\"/></ruleset>", "<ruleset name=\"dmesg.gr\" f=\"Dmesg.gr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dmg media (partial)\" f=\"Dmg_media.xml\"><securecookie host=\"^\\.and\\.co\\.uk$\" name=\"^s_vi$\"/><rule from=\"^http://wa\\.and\\.co\\.uk/\" to=\"https://and-co-uk.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Dmjx.dk\" f=\"Dmjx.dk.xml\"><securecookie host=\"\\.?(www\\.)?dmjx\\.dk\" name=\".+\"/><rule from=\"^http://(www\\.)?dmjx\\.dk/\" to=\"https://www.dmjx.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dmoz.org\" f=\"Dmoz.org.xml\"><rule from=\"^http://(?:www\\.)?dmoz\\.org/\" to=\"https://www.dmoz.org/\"/></ruleset>", "<ruleset name=\"dmri-library.com\" f=\"Dmri-library.com.xml\"><rule from=\"^http://c\\d\\.dmri-library\\.com/\" to=\"https://dmri.cachefly.net/\"/></ruleset>", "<ruleset name=\"dmtmag.com\" default_off=\"mismatched\" f=\"Dmtmag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dmtry.com\" f=\"Dmtry.com.xml\"><securecookie host=\"^\\.dmtry\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DnB Nor.no\" f=\"DnBNor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dns-ip.net\" f=\"Dns-ip.net.xml\"><securecookie host=\"^www\\.dns-ip\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dnsexit\" f=\"Dnsexit.xml\"><securecookie host=\"^(?:.*\\.)?dnsexit\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dnsexit\\.com/\" to=\"https://www.dnsexit.com/\"/></ruleset>", "<ruleset name=\"Dntly.com\" f=\"Dntly.com.xml\"><securecookie host=\"^\\.dntly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Do-it.org\" f=\"Do-it.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http://www\\.do-it\\.org/\" to=\"https://do-it.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Do Not Call Register\" f=\"DoNotCallRegister.xml\"><rule from=\"^http://(?:www\\.)?donotcall\\.gov\\.au/\" to=\"https://www.donotcall.gov.au/\"/></ruleset>", "<ruleset name=\"Do Not Track-doc.com\" f=\"Do_Not_Track-doc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dobrochan\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Dobrochan.xml\"><securecookie host=\"^dobrochan\\.ru$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dobrochan\\.(?:com|org|ru)/\" to=\"https://dobrochan.ru/\"/></ruleset>", "<ruleset name=\"DocSend.com\" f=\"DocSend.com.xml\"><securecookie host=\"^blog\\.docsend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"docelu.pl (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Docelu.pl-problematic.xml\"><securecookie host=\"^(?:imprezy|rozklady|zdjecia)?\\.docelu\\.pl$\" name=\".+\"/><rule from=\"^http://(imprezy|rozklady|zdjecia)\\.docelu\\.pl/\" to=\"https://$1.docelu.pl/\"/></ruleset>", "<ruleset name=\"docelu.pl (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Docelu.pl.xml\"><securecookie host=\"^(?:.+\\.)?docelu\\.pl$\" name=\".+\"/><rule from=\"^http://(?:(trasy\\.)|www\\.)?docelu\\.pl/\" to=\"https://$1docelu.pl/\"/></ruleset>", "<ruleset name=\"Docker.com (partial)\" f=\"Docker.com.xml\"><securecookie host=\"^(?:www)?\\.docker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docker.io\" f=\"Docker.io.xml\"><rule from=\"^http://(blog|docs)\\.docker\\.io/\" to=\"https://$1.docker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docket Alarm.com\" f=\"Docket_Alarm.com.xml\"><rule from=\"^http://docketalarm\\.com/\" to=\"https://www.docketalarm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docler Holding\" f=\"Docler.xml\"><rule from=\"^http://www\\.doclerholding\\.com/\" to=\"https://www.doclerholding.com/\"/></ruleset>", "<ruleset name=\"Docracy.com\" f=\"Docracy.com.xml\"><securecookie host=\"^www\\.docracy\\.com$\" name=\".+\"/><rule from=\"^http://docracy\\.com/\" to=\"https://www.docracy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docs.Zone\" f=\"Docs.Zone.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docstoc (partial)\" f=\"Docstoc.xml\"><rule from=\"^http://(css|i|swf)\\.docstoc(?:cdn)?\\.com/\" to=\"https://$1.docstoccdn.com/\"/><rule from=\"^http://img\\.docstoc(?:cdn)?\\.com/\" to=\"https://s3.amazonaws.com/img.docstoc.com/\"/><rule from=\"^http://(?:www\\.)?docstoc\\.com/(account/|Captcha\\.ashx|cart/|favicon\\.ico|i/|pass(?:$|\\?))\" to=\"https://www.docstoc.com/$1\"/><rule from=\"^http://static2\\.docstoccdn\\.com/\" to=\"https://static2.docstoccdn.com/\"/></ruleset>", "<ruleset name=\"docstorepro.com\" f=\"Docstorepro.com.xml\"><securecookie host=\"^\\.docstorepro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doctor Trusted.org\" f=\"Doctor_Trusted.org.xml\"><securecookie host=\"^doctortrusted\\.org$\" name=\".+\"/><rule from=\"^http://www\\.doctortrusted\\.org/\" to=\"https://doctortrusted.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoctorsWithoutBorders.org (partial)\" f=\"DoctorsWithoutBorders.org.xml\"><securecookie host=\"^donate\\.doctorswithoutborders\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Document.no\" f=\"Document.no.xml\"><rule from=\"^http://www\\.document\\.no/\" to=\"https://www.document.no/\"/><rule from=\"^http://document\\.no/\" to=\"https://www.document.no/\"/></ruleset>", "<ruleset name=\"DocumentCloud (partial)\" f=\"DocumentCloud.xml\"><securecookie host=\"^www\\.documentcloud\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?documentcloud\\.org/\" to=\"https://$1documentcloud.org/\"/><rule from=\"^http://s3\\.documentcloud\\.org/\" to=\"https://s3.amazonaws.com/s3.documentcloud.org/\"/></ruleset>", "<ruleset name=\"Document Freedom Day\" default_off=\"failed ruleset test\" f=\"Document_Freedom_Day.xml\"><rule from=\"^http://(www\\.)?documentfreedom\\.(net|org)/\" to=\"https://$1documentfreedom.$2/\"/></ruleset>", "<ruleset name=\"Docusign.com\" f=\"Docusign.com.xml\"><rule from=\"^http://(?:www\\.)?docusign\\.com/\" to=\"https://www.docusign.com/\"/></ruleset>", "<ruleset name=\"Docusign.net\" f=\"Docusign.net.xml\"><rule from=\"^http://(?:www\\.)?docusign\\.net/\" to=\"https://www.docusign.net/\"/></ruleset>", "<ruleset name=\"Dods People.com (partial)\" default_off=\"failed ruleset test\" f=\"Dods_People.com.xml\"><rule from=\"^http://(?:photos\\.|www\\.)?dodspeople\\.com/\" to=\"https://photos.dodspeople.com/\"/></ruleset>", "<ruleset name=\"DoesNotWork.eu\" f=\"DoesNotWork.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dof.dk\" f=\"Dof.dk.xml\"><securecookie host=\"(?:www)?\\.dof\\.dk\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dof\\.dk/\" to=\"https://www.dof.dk/\"/></ruleset>", "<ruleset name=\"Dog Wheelchairs Center.com\" f=\"Dog_Wheelchairs_Center.com.xml\"><securecookie host=\"^(?:www)?\\.dogwheelchairscenter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dogsbodytechnology.com\" f=\"Dogsbodytechnology.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dogz Online\" f=\"Dogz_Online.xml\"><securecookie host=\"^(?:www)?\\.dogzonline\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dojo Toolkit.org (partial)\" f=\"Dojo_Toolkit.org.xml\"><securecookie host=\"^bugs\\.dojotoolkit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DokuWiki (partial)\" f=\"DokuWiki.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://search\\.dokuwiki\\.org/+$\" to=\"https://www.google.com/coop/cse?cx=009387785156597221763:mxrsu3_lmbs\"/><rule from=\"^http://search\\.dokuwiki\\.org/[^?]*\\?\" to=\"https://www.google.com/cse?cx=009387785156597221763:mxrsu3_lmbs&cof=FORID:1&\"/><rule from=\"^http://search\\.dokuwiki\\.org/+\" to=\"https://www.google.com/cse?cx=009387785156597221763:mxrsu3_lmbs&cof=FORID:1&q=\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DolarToday.com\" f=\"DolarToday.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dolezel.info (partial)\" default_off=\"mismatched\" f=\"Dolezel.info.xml\"><securecookie host=\"^fatrat\\.dolezel\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dolimg.com\" f=\"Dolimg.com.xml\"><rule from=\"^http://(?:(?:a|cdn\\d?|www)\\.)?dolimg\\.com/\" to=\"https://dolimg.com/\"/><rule from=\"^http://s\\.dolimg\\.com/\" to=\"https://s.dolimg.com/\"/></ruleset>", "<ruleset name=\"Dollar Shave Club.com (partial)\" f=\"Dollar_Shave_Club.com.xml\"><securecookie host=\"^\\.dollarshaveclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dollar a Day.co\" f=\"Dollar_a_Day.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dolphin-emu.org\" f=\"Dolphin-emu.org.xml\"><securecookie host=\".+\\.dolphin-emu\\.org$\" name=\".+\"/><rule from=\"^http://((?:dl|forums|wiki|www)\\.)?dolphin-emu\\.org/\" to=\"https://$1dolphin-emu.org/\"/></ruleset>", "<ruleset name=\"Dom.bg\" f=\"Dom.bg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain-DNS.com\" f=\"Domain-DNS.com.xml\"><rule from=\"^http://(?:www\\.)?domain-dns\\.com/\" to=\"https://domain-dns.com/\"/></ruleset>", "<ruleset name=\"Domain-Offensive\" f=\"Domain-Offensive.xml\"><securecookie host=\"^www\\.do\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain.com\" f=\"Domain.com.xml\"><securecookie host=\"^\\.domain\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?domain\\.com/\" to=\"https://www.domain.com/\"/><rule from=\"^http://images\\.domain\\.com/\" to=\"https://secure.domain.com/images/\"/><rule from=\"^http://secure\\.domain\\.com/\" to=\"https://secure.domain.com/\"/></ruleset>", "<ruleset name=\"Domain.de\" f=\"Domain.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain.fi\" f=\"Domain.fi.xml\"><securecookie host=\"^domain\\.fi$\" name=\".+\"/><rule from=\"^http://www\\.domain\\.fi/\" to=\"https://domain.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domainCAMP\" default_off=\"failed ruleset test\" f=\"DomainCAMP.xml\"><securecookie host=\"^www\\.domaincamp\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?domaincamp\\.de/\" to=\"https://www.domaincamp.de/\"/></ruleset>", "<ruleset name=\"DomainCoin.net\" f=\"DomainCoin.net.xml\"><securecookie host=\"^(?:www\\.)?domaincoin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainContext.com\" f=\"DomainContext.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainMarket.com (partial)\" f=\"DomainMarket.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainNameSales.com (partial)\" f=\"DomainNameSales.com.xml\"><securecookie host=\"^\\.domainnamesales\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSigma.com (partial)\" f=\"DomainSigma.com.xml\"><rule from=\"^http://static\\.domainsigma\\.com/\" to=\"https://djtg44apx8dzy.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DomainSkate.com\" f=\"DomainSkate.com.xml\"><securecookie host=\"^(?:app\\.|www\\.)?domainskate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSponsor (partial)\" f=\"DomainSponsor.xml\"><securecookie host=\"^\\.domainsponsor\\.com$\" name=\".*\"/><rule from=\"^http://(pubman|spi)\\.domainsponsor\\.com/\" to=\"https://$1.domainsponsor.com/\"/></ruleset>", "<ruleset name=\"DomainTools.com (false MCB)\" platform=\"mixedcontent\" f=\"DomainTools.com-falsemixed.xml\"><rule from=\"^http://support\\.domaintools\\.com/\" to=\"https://domaintools.kayako.com/\"/></ruleset>", "<ruleset name=\"DomainTools\" f=\"DomainTools.xml\"><securecookie host=\"^(account\\.|api\\.|brandmonitor\\.|directory\\.|domainreport\\.|freeapi\\.|img\\.|marketplace\\.|research\\.|reverseip\\.|reversens\\.|reversewhois\\.|secure\\.|source\\.|whitelabel\\.|whois\\.|www\\.|yahoo\\.)domaintools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainWho.is\" f=\"DomainWho.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domainbox.com (partial)\" f=\"Domainbox.com.xml\"><rule from=\"^http://(?:www\\.)?domainbox\\.com/(?=favicon\\.ico|func/|images/|inc/|sign-up(?:$|[?/]))\" to=\"https://www.domainbox.com/\"/></ruleset>", "<ruleset name=\"Domaining.com\" f=\"Domaining.com.xml\"><securecookie host=\"^(?:partner\\.|www\\.)?domaining\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domains By Proxy\" f=\"Domains_By_Proxy.xml\"><securecookie host=\"^(?:www\\.)?domainsbyproxy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domaintank\" default_off=\"failed ruleset test\" f=\"Domaintank.xml\"><rule from=\"^http://([^@:/]+)?(domaintank|domainrendelo|processnet|malina)\\.hu/\" to=\"https://$1$2.hu/\"/></ruleset>", "<ruleset name=\"domcomp.com\" f=\"Domcomp.com.xml\"><securecookie host=\"^www\\.domcomp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?domcomp\\.com/\" to=\"https://www.domcomp.com/\"/></ruleset>", "<ruleset name=\"domdex.com\" f=\"Domdex.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domen Kozar.com\" f=\"Domen_Kozar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domena.cz\" f=\"Domena.cz.xml\"><securecookie host=\"^(?:www\\.)?domena\\.cz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domena.pl (partial)\" f=\"Domena.pl.xml\"><securecookie host=\"^(?:domeny|hosting|poczta)\\.domena\\.pl$\" name=\".+\"/><rule from=\"^http://(domeny|hosting|poczta)\\.domena\\.pl/\" to=\"https://$1.domena.pl/\"/></ruleset>", "<ruleset name=\"Domenovy prohlizec.cz\" f=\"Domenovy_prohlizec.cz.xml\"><securecookie host=\"^www\\.domenovyprohlizec\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domestic Abuse Helpline for Men and Women\" default_off=\"mismatch\" f=\"Domestic-Abuse-Hotline-for-Men-and-Women.xml\"><rule from=\"^http://(?:www\\.)?dahmw\\.org/\" to=\"https://dahmw.org/\"/></ruleset>", "<ruleset name=\"Dominios\" default_off=\"self-signed\" f=\"Dominios.xml\"><securecookie host=\"^www\\.nic\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nic\\.es/\" to=\"https://www.nic.es/\"/></ruleset>", "<ruleset name=\"Dominus Temporis.com\" f=\"Dominus_Temporis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domoticz.com\" default_off=\"missing certificate chain\" f=\"Domoticz.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domreg.lt\" f=\"Domreg.lt.xml\"><securecookie host=\"^www\\.domreg\\.lt$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?domreg\\.lt/\" to=\"https://www.domreg.lt/\"/></ruleset>", "<ruleset name=\"DonationCoder.com\" f=\"DonationCoder.com.xml\"><securecookie host=\"^www\\.donationcoder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doncaster.gov.uk (partial)\" f=\"Doncaster.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?doncaster\\.gov\\.uk/+(?!Eforms/|(?:Profile|Users)(?:$|[?/])|Themes/)\"/><securecookie host=\"^\\.\" name=\"_gat?$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://eportal\\.schools\\.doncaster\\.gov\\.uk/.*\" to=\"https://www.engagedoncaster.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doncaster College (partial)\" f=\"Doncaster_College.xml\"><rule from=\"^http://(staffintranet|webmail|www)\\.don\\.ac\\.uk/\" to=\"https://$1.don.ac.uk/\"/><rule from=\"^http://blackboard\\.don\\.ac\\.uk/(?:\\?.*)?$\" to=\"https://don.blackboard.com/\"/></ruleset>", "<ruleset name=\"Don't Spy On Us.org.uk\" f=\"Dont_Spy_On_Us.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doodle (partial)\" f=\"Doodle.xml\"><rule from=\"^http://(www\\.)?doodle\\.com/(builtstatic/|favicon\\.ico|premium(?:$|\\?|/))\" to=\"https://$1doodle.com/$2\"/></ruleset>", "<ruleset name=\"Doom9 (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Doom9.xml\"><securecookie host=\"^forum\\.doom9\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.doom9\\.org/\" to=\"https://forum.doom9.org/\"/></ruleset>", "<ruleset name=\"Doomworld.com\" f=\"Doomworld.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dopplr.com\" default_off=\"200 error page\" f=\"Dopplr.xml\"><rule from=\"^http://(?:www\\.)?dopplr\\.com/\" to=\"https://www.dopplr.com/\"/></ruleset>", "<ruleset name=\"Dorian Color\" default_off=\"failed ruleset test\" f=\"Dorian-Color.xml\"><securecookie host=\"^(?:.*\\.)?doriancolor\\.com$\" name=\".*\"/><rule from=\"^http://65\\.181\\.183\\.157/\" to=\"https://doriancolor.com/\"/><rule from=\"^http://(www\\.)?doriancolor\\.com/\" to=\"https://$1doriancolor.com/\"/></ruleset>", "<ruleset name=\"dormproject.ch\" f=\"Dormproject.ch.xml\"><rule from=\"^http://secure\\.dormproject\\.ch/\" to=\"https://secure.dormproject.ch/\"/></ruleset>", "<ruleset name=\"Dosomething.org\" f=\"Dosomething.org.xml\"><rule from=\"^http://(?:www\\.)?dosomething\\.org/\" to=\"https://www.dosomething.org/\"/></ruleset>", "<ruleset name=\"dosowisko.net\" f=\"Dosowisko.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dot429 (partial)\" f=\"Dot429.xml\"><rule from=\"^http://(www\\.)?dot429\\.com/(blueprint|fonts|images|packages|stylesheets)/\" to=\"https://$1dot429.com/$2/\"/><rule from=\"^http://cdn[1-5]\\.dot429\\.com/\" to=\"https://d2qmyvn67i80mw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Dot5Hosting\" f=\"Dot5Hosting.xml\"><securecookie host=\"^\\.dot5hosting\\.com$\" name=\".+\"/><rule from=\"^http://((?:images|secure|www)\\.)?dot5hosting\\.com/\" to=\"https://$1dot5hosting.com/\"/></ruleset>", "<ruleset name=\"Dot-BIT.org (partial)\" default_off=\"expired\" f=\"DotBit.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://explorer\\.dot-bit\\.org/+\" to=\"https://explorer.namecoin.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotCOM host\" f=\"DotCOM-host.xml\"><securecookie host=\"^(?:.*\\.)?dotcomhost\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?dotcomhost\\.com/\" to=\"https://$1dotcomhost.com/\"/></ruleset>", "<ruleset name=\"dotCloud.com (partial)\" f=\"DotCloud.com.xml\"><exclusion pattern=\"^http://zerorpc\\.dotcloud\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.dotcloud\\.com/\" to=\"https://dotcloud.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DotCologne.de\" f=\"DotCologne.de.xml\"><securecookie host=\"^domainstore\\.dotcologne\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dotcologne\\.de/[^?]*\" to=\"https://domainstore.dotcologne.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotMailer (partial)\" f=\"DotMailer.xml\"><exclusion pattern=\"^http://(?:www\\.)?dotmailer\\.co(?:m|\\.uk)/(?!favicon\\.ico|images/|m/css|login\\.aspx|professional_email_marketing_solutions/professional_trial_signup)\"/><securecookie host=\"^.+\\.dotmailer\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dotmailer\\.com/\" to=\"https://www.dotmailer.com/\"/><rule from=\"^http://(my|support)\\.dotmailer\\.com/\" to=\"https://$1.dotmailer.com/\"/><rule from=\"^http://(www\\.)?dotmailer\\.co\\.uk/\" to=\"https://$1dotmailer.co.uk/\"/><rule from=\"^http://t\\.trackedlink\\.net/\" to=\"https://t.trackedlink.net/\"/></ruleset>", "<ruleset name=\"DotSec.com\" f=\"DotSec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dota 2.com (partial)\" default_off=\"Breaks steam games\" f=\"Dota_2.com.xml\"><exclusion pattern=\"^http://(www\\.)?dota2\\.com/heroes\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/jsfeed/(\\w+)?\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/leaderboard\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/public/(\\w+)?\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/quiz\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/store\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/workshop\"/><rule from=\"^http://dota2\\.com/\" to=\"https://www.dota2.com/\"/><rule from=\"^http://cdn\\.dota2\\.com/\" to=\"https://steamcdn-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotcomsecurity.de\" f=\"Dotcomsecurity.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotdeb.org\" f=\"Dotdeb.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doteasy-nocookie.com\" f=\"Doteasy-nocookie.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doteasy.com (partial)\" f=\"Doteasy.com.xml\"><securecookie host=\"^(?:kb|member)\\.doteasy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotomi.com (partial)\" f=\"Dotomi.xml\"><rule from=\"^http://(?:www\\.)?dotomi\\.com/(display|storage|universal)/\" to=\"https://dotomi.squarespace.com/$1/\"/><rule from=\"^http://(ams-login|login)\\.dotomi\\.com/\" to=\"https://$1.dotomi.com/\"/></ruleset>", "<ruleset name=\"dotplex.de\" f=\"Dotplex.de.xml\"><securecookie host=\"^(www\\.|secure\\.)?dotplex\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotprojects.be (partial)\" default_off=\"expired\" f=\"Dotprojects.be.xml\"><securecookie host=\"^\\.extranet\\.dotprojects\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotster\" f=\"Dotster.xml\"><securecookie host=\"^\\.dotster\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?dotster\\.com/\" to=\"https://$1dotster.com/\"/></ruleset>", "<ruleset name=\"dotultima.com\" default_off=\"failed ruleset test\" f=\"Dotultima.com.xml\"><securecookie host=\"^\\.dotultima\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Douban (partial)\" f=\"Douban.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoubleClick by Google.com\" f=\"DoubleClick_by_Google.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://doubleclickbygoogle\\.com/\" to=\"https://www.doubleclickbygoogle.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoubleVerify.com (partial)\" f=\"DoubleVerify.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Fine.com (false MCB)\" platform=\"mixedcontent\" f=\"Double_Fine.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Robotics.com (MCB)\" platform=\"mixedcontent\" f=\"Double_Robotics.com-mixedcontent.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Robotics.com (mismatched)\" default_off=\"mismatched\" f=\"Double_Robotics.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Robotics.com (partial)\" f=\"Double_Robotics.com.xml\"><exclusion pattern=\"^http://support\\.doublerobotics\\.com/+(?!favicon\\.ico|images/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.doublerobotics\\.com/\" to=\"https://doublerobotics.desk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double the Donation.com\" f=\"Double_the_Donation.com.xml\"><rule from=\"^http://www\\.doublethedonation\\.com/\" to=\"https://doublethedonation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doubleclick.com\" f=\"Doubleclick.com.xml\"><rule from=\"^http://doubleclick\\.com/\" to=\"https://www.doubleclick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doubleclick.net (needs exclusions)\" default_off=\"Breaks video content, probably best to block doubleclick instead\" f=\"Doubleclick.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([^/:@.]+)\\.(?:es|nl|no)\\.doubleclick\\.net/\" to=\"https://$1.doubleclick.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doublepimp.com (partial)\" f=\"Doublepimp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.engine\\.phn\\.doublepimp\\.com/\" to=\"https://engine.phn.doublepimp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dover.gov.uk (partial)\" f=\"Dover.gov.uk.xml\"><securecookie host=\"^\\.forms\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dovetail Services (problematic)\" default_off=\"mismatch\" f=\"Dovetail_Services-problematic.xml\"><rule from=\"^http://(?:www\\.)?dovetailservices\\.com/\" to=\"https://www.dovetailservices.com/\"/></ruleset>", "<ruleset name=\"Dovetail Services (partial)\" f=\"Dovetail_Services.xml\"><securecookie host=\"^(?:.*\\.)?subscribeonline\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?subscribeonline\\.co\\.uk/\" to=\"https://$1subscribeonline.co.uk/\"/></ruleset>", "<ruleset name=\"DownThemAll.net (false MCB)\" platform=\"mixedcontent\" f=\"DownThemAll.net-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DownThemAll.net (partial)\" f=\"DownThemAll.xml\"><exclusion pattern=\"^http://www\\.downthemall\\.net/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Down for Everyone.com (false MCB)\" platform=\"mixedcontent\" f=\"Down_for_Everyone.com-falsemixed.xml\"><securecookie host=\"^\\.downforeveryone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Down for Everyone.com (partial)\" f=\"Down_for_Everyone.com.xml\"><securecookie host=\"^\\.downforeveryone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DownloadHelper.net\" f=\"DownloadHelper.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DownloadVerse.com\" f=\"DownloadVerse.com.xml\"><securecookie host=\"^(?:w*\\.)?downloadverse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Downloadbox\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Downloadbox.xml\"><securecookie host=\"^\\.downloadbox\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?downloadbox\\.me/\" to=\"https://downloadbox.me/\"/></ruleset>", "<ruleset name=\"Downloadster\" default_off=\"failed ruleset test\" f=\"Downloadster.xml\"><securecookie host=\"^(?:w*\\.)?downloadster\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?downloadster\\.net/\" to=\"https://$1downloadster.net/\"/><rule from=\"^http://media\\.downloadster\\.net/\" to=\"https://d227ccvjlkns26.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DownstreamToday.com\" f=\"DownstreamToday.com.xml\"><securecookie host=\"^(?:www\\.)?downstreamtoday\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Downtown Host (partial)\" f=\"Downtown_Host.xml\"><securecookie host=\"^(?:.+\\.)?downtownhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dozuki.net\" f=\"Dozuki.net.xml\"><rule from=\"^http://cacher\\.dozuki\\.net/\" to=\"https://d1luk0418egahw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Dozuki.com (partial)\" f=\"Dozuki.xml\"><exclusion pattern=\"^http://www\\.dozuki\\.com/(?!Guide/login(?:/register)?(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dpfoc.com\" f=\"Dpfoc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dr-qubit.org\" default_off=\"mismatched\" f=\"Dr-qubit.org.xml\"><rule from=\"^http://(?:www\\.)?dr-qubit\\.org/\" to=\"https://dr-qubit.org/\"/></ruleset>", "<ruleset name=\"DrAgnDroPbuilder.com\" f=\"DrAgnDroPbuilder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drServer.net\" f=\"DrServer.net.xml\"><securecookie host=\"^(?:www\\.)?drserver\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DragonByte-Tech.com\" default_off=\"expired\" f=\"DragonByte-Tech.xml\"><securecookie host=\"^www\\.dragonbyte-tech\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DragonFly BSD.org (partial)\" f=\"DragonFly_BSD.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dragonflybsd\\.org/\" to=\"https://www.dragonflybsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DragonFly BSD Digest.com\" f=\"DragonFly_BSD_Digest.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dragonair\" f=\"Dragonair.xml\"><rule from=\"^http://(?:www\\.)?dragonair\\.com/\" to=\"https://www.dragonair.com/\"/></ruleset>", "<ruleset name=\"dragonsreach.it\" f=\"Dragonsreach.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Draugiem.lv (partial)\" f=\"Draugiem.lv.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:baratikor.com|draugiem\\.lv)/+(?!$|\\?|favicon\\.ico|(?:forgot|help)(?:$|[?/])|upl/captcha\\.php)\"/><exclusion pattern=\"^http://m\\.draugiem\\.lv/+(?!$|\\?|favicon\\.ico|v\\d+/(?:cs|j)s/)\"/><exclusion pattern=\"^http://(?:www\\.)?frype\\.com/+(?!$|\\?|favicon\\.ico|(?:forgot|help)(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?baratikor\\.com/\" to=\"https://www.baratikor.com/\"/><rule from=\"^http://(?:www\\.)?draugiem\\.lv/\" to=\"https://www.draugiem.lv/\"/><rule from=\"^http://m\\.draugiem\\.lv/\" to=\"https://m.draugiem.lv/\"/><rule from=\"^http://(?:www\\.)?frype\\.com/\" to=\"https://www.frype.com/\"/><rule from=\"^http://i([0379])\\.frype\\.com/\" to=\"https://i$1.frype.com/\"/><rule from=\"^http://ifrype\\.com/\" to=\"https://ifrype.com/\"/></ruleset>", "<ruleset name=\"Draugr.de\" f=\"Draugr.de.xml\"><securecookie host=\"^\\.draugr\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drawception\" f=\"Drawception.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\.?drawception\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"Drawing by Numbers.org\" f=\"Drawing_by_Numbers.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DrayTek.com\" f=\"DrayTek.com.xml\"><securecookie host=\".*\\.draytek\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drchrono.com\" f=\"Drchrono.com.xml\"><securecookie host=\"^(?:www\\.)?drchrono\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DreamHost.com (partial)\" f=\"DreamHost.xml\"><exclusion pattern=\"^http://(?:blog|wiki|transferapproval)\\.dreamhost\\.com/\"/><exclusion pattern=\"\\.crl$\"/><exclusion pattern=\"ocsp\\.dreamhost\"/><securecookie host=\"^(?:.*\\.)?dreamhost\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.(?:objects\\.)?)?dreamhost\\.com/\" to=\"https://$1dreamhost.com/\"/></ruleset>", "<ruleset name=\"DreamSpark.com\" f=\"DreamSpark.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dreamspark\\.com/\" to=\"https://www.dreamspark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dream News.jp\" f=\"Dream_News.jp.xml\"><rule from=\"^http://(?:www\\.)?dreamnews\\.jp/\" to=\"https://www.dreamnews.jp/\"/></ruleset>", "<ruleset name=\"dreamboxcart.com\" f=\"Dreamboxcart.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dreampass.jp\" f=\"Dreampass.jp.xml\"><securecookie host=\"^\\.dreampass\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dreamsolution.nl\" f=\"Dreamsolution.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dreamstime (problematic)\" default_off=\"mismatched\" f=\"Dreamstime-problematic.xml\"><exclusion pattern=\"^http://thumbs\\.dreamstime\\.com/site-img/\"/><rule from=\"^http://thumbs\\.dreamstime\\.com/\" to=\"https://thumbs.dreamstime.com/\"/></ruleset>", "<ruleset name=\"Dreamstime (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Dreamstime.xml\"><exclusion pattern=\"^http://thumbs\\.dreamstime\\.com/(?!site-img/)\"/><securecookie host=\"^.*\\.dreamstime\\.com$\" name=\".+\"/><rule from=\"^http://(?:thumbs\\.|(www\\.))?dreamstime\\.com/\" to=\"https://$1dreamstime.com/\"/></ruleset>", "<ruleset name=\"Dreamwidth.org\" f=\"Dreamwidth.xml\"><securecookie host=\"^\\.dreamwidth\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drew's Script-o-Rama\" default_off=\"mismatch\" f=\"Drews-Script-o-Rama.xml\"><rule from=\"^http://(?:www\\.)?script-o-rama\\.com/\" to=\"https://script-o-rama.com/\"/></ruleset>", "<ruleset name=\"Drexel University (partial)\" f=\"Drexel_University.xml\"><securecookie host=\"^psal\\.cs\\.drexel\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dribbble.com (partial)\" f=\"Dribbble.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drillisch.de\" f=\"Drillisch.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drinkaware\" default_off=\"failed ruleset test\" f=\"Drinkaware.xml\"><securecookie host=\"^(?:.*\\.)?drinkaware\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://drinkaware\\.co\\.uk/\" to=\"https://www.drinkaware.co.uk/\"/><rule from=\"^http://([^/:@]+)?\\.drinkaware\\.co\\.uk/\" to=\"https://$1.drinkaware.co.uk/\"/></ruleset>", "<ruleset name=\"Drive2.ru\" f=\"Drive2.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DriveStyle Insure\" f=\"DriveStyle_Insure.xml\"><securecookie host=\"^(?:www\\.)?drivestyle.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drivee (partial)\" f=\"Drivee.xml\"><exclusion pattern=\"^http://www\\.drive\\.jp/(?:$|\\?)\"/><rule from=\"^http://drivee\\.jp/\" to=\"https://www.drivee.jp/\"/><rule from=\"^http://(?:www\\.)?drivee\\.ne\\.jp/\" to=\"https://www.drivee.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DriversEdDirect.com\" f=\"DriversEdDirect.com.xml\"><rule from=\"^http://(?:www\\.)?driverseddirect\\.com/\" to=\"https://www.driverseddirect.com/\"/></ruleset>", "<ruleset name=\"drone.io (partial)\" f=\"Drone.io.xml\"><rule from=\"^http://www\\.drone\\.io/\" to=\"https://drone.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DropDav.com\" f=\"DropDav.xml\"><securecookie host=\"^(?:.*\\.)?dropdav\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dropbox\" f=\"Dropbox.xml\"><securecookie host=\"^(?:.*\\.)?dropbox\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?db\\.tt/\" to=\"https://db.tt/\"/><rule from=\"^http://([\\w-]+\\.)?dropbox\\.com/\" to=\"https://$1dropbox.com/\"/><rule from=\"^http://(www\\.)?dropbox(atwork|team)\\.com/\" to=\"https://$1dropbox$2.com/\"/><rule from=\"^http://(www\\.)?getdropbox\\.com/\" to=\"https://$1getdropbox.com/\"/></ruleset>", "<ruleset name=\"Dropbox Forum.com\" f=\"Dropbox_Forum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dropdeadpaper.com\" f=\"Dropdeadpaper.com.xml\"><securecookie host=\"^(www\\.)?dropdeadpaper\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Droplr.com\" f=\"Droplr.xml\"><securecookie host=\"^droplr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drought.gov\" f=\"Drought.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drowned In Sound.com (problematic)\" default_off=\"mismatched\" f=\"Drowned_In_Sound.com-problematic.xml\"><securecookie host=\"^\\.drownedinsound\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?drownedinsound\\.com/(?!assets/|favicon\\.ico|(?:static_)?images/|javascripts/)\" to=\"https://www.drownedinsound.com/\"/></ruleset>", "<ruleset name=\"Drowned In Sound.com (partial)\" f=\"Drowned_In_Sound.com.xml\"><rule from=\"^http://(?:www\\.)?drownedinsound\\.com/(?=assets/|favicon\\.ico|(?:static_)?images/|javascripts/)\" to=\"https://dis11.herokuapp.com/\"/></ruleset>", "<ruleset name=\"drugpolicy.org\" f=\"DrugPolicy.org.xml\"><rule from=\"^http://(?:www\\.)?drugpolicy\\.org/\" to=\"https://www.drugpolicy.org/\"/><securecookie host=\"^(?:www)?\\.drugpolicy\\.org\" name=\".*\"/></ruleset>", "<ruleset name=\"Drug Forum (problematic)\" default_off=\"self-signed\" f=\"Drug_Forum-problematic.xml\"><rule from=\"^http://img(\\d)\\.drugsforum\\.eu/\" to=\"https://img$1.drugsforum.eu/\"/></ruleset>", "<ruleset name=\"Drug Forum\" platform=\"mixedcontent\" f=\"Drug_Forum.xml\"><securecookie host=\"^(?:www\\.)?drugs-forum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drug Science.org.uk\" default_off=\"mismatched\" f=\"Drug_Science.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drugstore.com (partial)\" f=\"Drugstore.com.xml\"><rule from=\"^http://(cfs\\.|dscmp1\\.|www\\.)?drugstore\\.com/(css/|img/|user(?:$|[\\?/]))\" to=\"https://$1drugstore.com/$2\"/><rule from=\"^http://pics([123])?\\.drugstore\\.com/\" to=\"https://pics$1.drugstore.com/\"/><rule from=\"^http://pics([123])?\\.ds-static\\.com/\" to=\"https://pics$1.ds-static.com/\"/></ruleset>", "<ruleset name=\"Drupal.org (partial)\" f=\"Drupal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drupal Gardens.com\" f=\"Drupal_Gardens.com.xml\"><securecookie host=\"^\\.?www\\.drupalgardens\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drupal Watchdog.com\" f=\"Drupal_Watchdog.com.xml\"><rule from=\"^http://www\\.drupalwatchdog\\.com/\" to=\"https://drupalwatchdog.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dr Web.com\" f=\"Drweb.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drwho.virtadpt.net (self-signed)\" default_off=\"self-signed\" f=\"Drwho.virtadpt.net.xml\"><rule from=\"^http://(?:www\\.)?drwho\\.virtadpt\\.net/\" to=\"https://drwho.virtadpt.net/\"/></ruleset>", "<ruleset name=\"DryIcons.com\" f=\"DryIcons.com.xml\"><securecookie host=\"^\\.?dryicons\\.com$\" name=\".+\"/><rule from=\"^http://(?:(\\w\\.)|www\\.)?dryicons\\.com/\" to=\"https://$1dryicons.com/\"/></ruleset>", "<ruleset name=\"dshop.se\" f=\"Dshop.se.xml\"><securecookie host=\"^\\.dshop\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dsp.io\" f=\"Dsp.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DualShockers.com (partial)\" default_off=\"mismatched\" f=\"DualShockers.com.xml\"><rule from=\"^http://cdn2?\\.dualshockers\\.com/\" to=\"https://935956332.r.cdn77.net/\"/></ruleset>", "<ruleset name=\"duba.com (partial)\" f=\"Duba.com.xml\"><securecookie host=\"^www\\.duba\\.com$\" name=\".+\"/><rule from=\"^http://duba\\.com/\" to=\"https://www.duba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dubfire.net (partial)\" f=\"Dubfire.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DuckCorp\" default_off=\"self-signed\" f=\"DuckCorp.xml\"><securecookie host=\".*\\.mini-dweeb\\.org$\" name=\".*\"/><rule from=\"^http://(debian|lists|projects|rcs|rcs-git|users|webdesk|webmail(?:-rc|-sm)?|wiki)\\.mini-dweeb\\.org/\" to=\"https://$1.mini-dweeb.org/\"/></ruleset>", "<ruleset name=\"DuckDuckGo\" f=\"DuckDuckGo.xml\"><exclusion pattern=\"^http://(?:help|meme)\\.duckduckgo\\.com/\"/><securecookie host=\"^duck\\.co$\" name=\".*\"/><rule from=\"^http://duckduckgo\\.com/\" to=\"https://duckduckgo.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.duckduckgo\\.com/\" to=\"https://$1.duckduckgo.com/\"/><rule from=\"^http://ddg\\.gg/$\" to=\"https://duckduckgo.com/\"/><rule from=\"^http://duck\\.co/\" to=\"https://duck.co/\"/><rule from=\"^http://i\\.duck\\.co/\" to=\"https://duckduckgo.com/\"/><rule from=\"^http://(?:www\\.)?dukgo\\.com/\" to=\"https://dukgo.com/\"/></ruleset>", "<ruleset name=\"Duck DNS.org\" f=\"Duck_DNS.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dudley.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Dudley.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dudley.gov.uk (partial)\" f=\"Dudley.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?dudley\\.gov\\.uk/+(?![Ee]asy[Ss]ite(?:[Ww]eb)?/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://dudley\\.gov\\.uk/\" to=\"https://www.dudley.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dueling Analogs.com (partial)\" f=\"Dueling_Aanalogs.com.xml\"><rule from=\"^http://cdn\\.duelinganalogs\\.com/\" to=\"https://d2fnxgc3lifa5q.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Duke Energy Convention Center (partial)\" default_off=\"failed ruleset test\" f=\"Duke-Energy-Convention-Center.xml\"><securecookie host=\"^www\\.duke-energycenter\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?duke-energycenter\\.com/\" to=\"https://www.duke-energycenter.com/\"/><rule from=\"^http://orders\\.duke-energycenter\\.com/\" to=\"https://orders.duke-energycenter.com/\"/></ruleset>", "<ruleset name=\"Duke University (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Duke-University-mismatches.xml\"><rule from=\"^http://(global|ondemand)\\.duke\\.edu/\" to=\"https://$1.duke.edu/\"/></ruleset>", "<ruleset name=\"Duke.edu (partial)\" platform=\"mixedcontent\" f=\"Duke-University.xml\"><securecookie host=\"^.*\\.duke\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?library\\.duke\\.edu/(css/|favicon\\.ico|imgs?/|sites/)\" to=\"https://library.duke.edu/$1\"/><rule from=\"^http://(voting\\.academiccouncil|login\\.dhts|fds|(?:www\\.)?(?:finance|hr|security|today)|www\\.finsvc|giving|(?:blogs|catalog)\\.library|www\\.math|(?:(?:dusonnet|match|www)\\.)?nursing|(?:(?:alertbar|bb-idp|brandbar|pwreset|shib|www)\\.)?oit|inside\\.pratt|(?:goldenorb\\.)?trinity|wiki)\\.duke\\.edu/\" to=\"https://$1.duke.edu/\"/><rule from=\"^http://(?:www\\.)?giving\\.duke\\.edu/\" to=\"https://giving.duke.edu/\"/><rule from=\"^http://www\\.mclibrary\\.duke\\.edu/(images/|style_\\w+\\.css$)\" to=\"https://www.mclibrary.duke.edu/$1\"/><rule from=\"^http://(?:www\\.)?pratt\\.duke\\.edu/(modul|sit)es/\" to=\"https://www.pratt.duke.edu/$1es/\"/><rule from=\"^http://it\\.pratt\\.duke\\.edu/(modul|sit)es/\" to=\"https://it.pratt.duke.edu/$1es/\"/><rule from=\"^http://members\\.dukeexechealth\\.org/\" to=\"https://members.dukeexechealth.org/\"/><rule from=\"^http://(?:www\\.)?goduke\\.com/(ads2|css|fls|images|siteMediaPlayer|pics32)/\" to=\"https://smnathletics.com/$1/\"/></ruleset>", "<ruleset name=\"Dulwich.io\" f=\"Dulwich.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dundee City.gov.uk (partial)\" f=\"Dundee_City.gov.uk.xml\"><exclusion pattern=\"^http://secure\\.dundeecity\\.gov\\.uk/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dundeecity\\.gov\\.uk/\" to=\"https://www.dundeecity.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dunkelangst.org\" f=\"Dunkelangst.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Duo Security.com (partial)\" f=\"Duo-Security.xml\"><securecookie host=\"^(?:admin|go|signup)\\.duosecurity\\.com$\" name=\".*\"/><rule from=\"^http://((?:admin|blog|dl|go|jobs|signup|www)\\.)?duosecurity\\.com/\" to=\"https://$1duosecurity.com/\"/></ruleset>", "<ruleset name=\"Duodecim.fi\" f=\"Duodecim.fi.xml\"><rule from=\"^http://(?:www\\.)?duodecim\\.fi/\" to=\"https://www.duodecim.fi/\"/><rule from=\"^http://(star|verkkokauppa)\\.duodecim\\.fi/\" to=\"https://$1.duodecim.fi/\"/></ruleset>", "<ruleset name=\"Duolingo.com\" f=\"Duolingo.com.xml\"><securecookie host=\"^\\.duolingo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DuraSpace.org (partial)\" f=\"DuraSpace.org.xml\"><securecookie host=\"^bamboo\\.duraspace\\.org$\" name=\".+\"/><rule from=\"^http://(atlas|bamboo|crowd|jira|m2|svn|wiki)\\.duraspace\\.org/\" to=\"https://$1.duraspace.org/\"/><rule from=\"^http://scm\\.duraspace\\.org/+(?=$|\\?)\" to=\"https://svn.duraspace.org/dspace/\"/></ruleset>", "<ruleset name=\"Duracell Cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"Duracell_Cloud.com.xml\"><securecookie host=\"^(?:customer\\.|www\\.)?duracellcloud\\.com$\" name=\".+\"/><rule from=\"^http://((?:backup|customer|www)\\.)?duracellcloud\\.com/\" to=\"https://$1duracellcloud.com/\"/></ruleset>", "<ruleset name=\"Durham Constabulary\" f=\"DurhamConstabulary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dustin.eu\" f=\"Dustin.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dustin.se\" f=\"Dustin.se.xml\"><securecookie host=\"^www\\.dustin\\.se$\" name=\".+\"/><rule from=\"^http://dustin\\.se/\" to=\"https://www.dustin.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dustri.org\" f=\"Dustri.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dutch Bulbs.co.uk\" f=\"Dutch_Bulbs.co.uk.xml\"><securecookie host=\"^(?:www\\.)?dutchbulbs\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dutch Data Protection Authority\" default_off=\"failed ruleset test\" f=\"Dutch_Data_Protection_Authority.xml\"><rule from=\"^http://dutchdpa\\.nl/\" to=\"https://www.dutchdpa.nl/\"/><rule from=\"^http://([^/:@]+)?\\.dutchdpa\\.nl/\" to=\"https://$1.dutchdpa.nl/\"/><rule from=\"^http://cbpweb\\.nl/\" to=\"https://www.cbpweb.nl/\"/><rule from=\"^http://([^/:@]+)?\\.cbpweb\\.nl/\" to=\"https://$1.cbpweb.nl/\"/><rule from=\"^http://([^/:@]+)?\\.collegebeschermingpersoonsgegevens\\.nl/\" to=\"https://$1.collegebeschermingpersoonsgegevens.nl/\"/></ruleset>", "<ruleset name=\"Dwarf Fortress Wiki.org (partial)\" f=\"Dwarf_Fortress_Wiki.org.xml\"><rule from=\"^http://(www\\.)?dwarffortresswiki\\.org/(?=w/skins/common/)\" to=\"https://$1dwarffortresswiki.org/\"/></ruleset>", "<ruleset name=\"Dwolla.com (false MCB)\" platform=\"mixedcontent\" f=\"Dwolla.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dwolla (partial)\" f=\"Dwolla.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.dwolla\\.com/\" to=\"https://dwolla.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dxw.com\" f=\"Dxw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyankov.eu\" default_off=\"failed ruleset test\" f=\"Dyankov.eu.xml\"><securecookie host=\"^dyankov\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dyankov\\.eu/\" to=\"https://dyankov.eu/\"/></ruleset>", "<ruleset name=\"dydx.io\" default_off=\"failed ruleset test\" f=\"Dydx.io.xml\"><securecookie host=\"^\\.?dydx\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dydx\\.io/\" to=\"https://dydx.io/\"/></ruleset>", "<ruleset name=\"Dyn.com (partial)\" f=\"Dyn.xml\"><rule from=\"^http://status\\.dyn\\.com/\" to=\"https://www.dynstatus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dynCDN.cc\" f=\"DynCDN.cc.xml\"><securecookie host=\"^\\.dyncdn\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DynDNS.berlin\" f=\"DynDNS.berlin.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyn Status.com\" f=\"Dyn_Status.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DynaDot\" platform=\"mixedcontent\" f=\"DynaDot.xml\"><securecookie host=\"^(?:.+\\.)?dynadot\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dynadot\\.com/\" to=\"https://www.dynadot.com/\"/></ruleset>", "<ruleset name=\"dynaTrace.com (partial)\" f=\"DynaTrace.xml\"><securecookie host=\".+\\.dynatrace\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.dynatrace\\.com/\" to=\"https://www.dynatrace.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DynamicWeb\" default_off=\"connection refused\" f=\"DynamicWeb.xml\"><securecookie host=\"^www\\.dynamicweb\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dynamicweb\\.it/\" to=\"https://www.dynamicweb.it/\"/></ruleset>", "<ruleset name=\"Dynamic Site Platform\" f=\"Dynamic_Site_Platform.xml\"><securecookie host=\"^(?:\\.?s|secure)\\.clickability\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynamic Yield.com (partial)\" f=\"Dynamic_Yield.com.xml\"><rule from=\"^http://(adm|s1a|st)\\.dynamicyield\\.com/\" to=\"https://$1.dynamicyield.com/\"/></ruleset>", "<ruleset name=\"Dynamics.com\" f=\"Dynamics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dynamics\\.com/\" to=\"https://www.dynamics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynamite Data (mismatches)\" default_off=\"mismatched\" f=\"Dynamite-Data-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?dynamitedeals\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dynamitedeals\\.com/\" to=\"https://dynamitedeals.com/\"/></ruleset>", "<ruleset name=\"Dynamite Data (partial)\" f=\"Dynamite-Data.xml\"><securecookie host=\"^(?:.*\\.)?dynamitedata.com$\" name=\".+\"/><rule from=\"^http://((?:detonator|mkt|www)\\.)?dynamitedata\\.com/\" to=\"https://$1dynamitedata.com/\"/></ruleset>", "<ruleset name=\"Dynatech.de\" f=\"Dynatech.de.xml\"><securecookie host=\"^www\\.dynatech\\.de\" name=\".+\"/><rule from=\"^http://dynatech\\.de/\" to=\"https://www.dynatech.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynavision.de\" f=\"Dynavision.de.xml\"><securecookie host=\"^www\\.dynavision\\.de\" name=\".+\"/><rule from=\"^http://dynavision\\.de/\" to=\"https://www.dynavision.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyne.org (partial)\" f=\"Dyne.org.xml\"><rule from=\"^http://((?:irc|lab|lists|mailinglists|www)\\.)?dyne\\.org/\" to=\"https://$1dyne.org/\"/><rule from=\"^http://new\\.dyne\\.org/\" to=\"https://www.dyne.org/\"/></ruleset>", "<ruleset name=\"Dynect.net (partial)\" f=\"Dynect.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynu.com\" f=\"Dynu.com.xml\"><rule from=\"^http://(www\\.)?dynu\\.com/\" to=\"https://www.dynu.com/\"/></ruleset>", "<ruleset name=\"Dyson (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Dyson.xml\"><rule from=\"^http://(?:www\\.)?careers\\.dyson\\.com/\" to=\"https://www.careers.dyson.com/\"/><rule from=\"^http://media\\.dyson\\.com/\" to=\"https://media.dyson.com/\"/><rule from=\"^http://(?:www\\.)?dyson\\.co\\.uk/\" to=\"https://www.dyson.co.uk/\"/><rule from=\"^http://content\\.dyson\\.co\\.uk/(common|images)/\" to=\"https://www.careers.dyson.com/$1/\"/><rule from=\"^http://content\\.dyson\\.co\\.uk/Images/\" to=\"https://www.dyson.co.uk/medialibrary/Images/Dyson/Site/\"/><rule from=\"^http://(?:www\\.)?dyson\\.ie/\" to=\"https://www.dyson.ie/\"/><securecookie host=\"^www\\.careers\\.dyson\\.com$\" name=\".*\"/><securecookie host=\"^www\\.dyson\\.ie$\" name=\".*\"/></ruleset>", "<ruleset name=\"E-Estonia.com\" default_off=\"failed ruleset test\" f=\"E-Estonia.com.xml\"><rule from=\"^http://(?:www\\.)?e-estonia\\.com/\" to=\"https://e-estonia.com/\"/></ruleset>", "<ruleset name=\"E-Generator.com (partial)\" f=\"E-Generator.com.xml\"><securecookie host=\"^id\\.e-generator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-Hentai Forums\" f=\"E-Hentai-Forums.xml\"><rule from=\"^http://forums?\\.e-hentai\\.org/\" to=\"https://forums.e-hentai.org/\"/></ruleset>", "<ruleset name=\"e-KSF.org\" f=\"E-KSF.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-Mail-made-in-Germany.de\" f=\"E-Mail_made_in_Germany.xml\"><rule from=\"^http://e-mail-made-in-germany\\.de/\" to=\"https://www.e-mail-made-in-germany.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-Plus (problematic)\" default_off=\"mismatched\" f=\"E-Plus-problematic.xml\"><rule from=\"^http://einstellungen\\.e-plus\\.com/\" to=\"https://einstellungen.e-plus.com/\"/></ruleset>", "<ruleset name=\"E-Plus (partial)\" default_off=\"failed ruleset test\" f=\"E-Plus.xml\"><securecookie host=\"^.*\\.e-plus\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e-plus\\.de/\" to=\"https://www.e-plus.de/\"/><rule from=\"^http://(ecc|dialog|metromobil|mymtv|norman|prepaidkundenbetreuung|vertragsverlaengerung)\\.e-plus\\.de/\" to=\"https://$1.e-plus.de/\"/></ruleset>", "<ruleset name=\"E-Plus Gruppe\" default_off=\"failed ruleset test\" f=\"E-Plus_Gruppe.xml\"><rule from=\"^http://(?:www\\.)?eplus-gruppe\\.de/\" to=\"https://www.eplus-gruppe.de/\"/></ruleset>", "<ruleset name=\"E-Sports Entertainment\" default_off=\"self-signed\" f=\"E-Sports_Entertainment.xml\"><securecookie host=\"^\\.esea\\.net$\" name=\".+\"/><rule from=\"^http://(?:play\\.e-sea\\.net|(?:www\\.)?esportsea\\.com)/\" to=\"https://play.e-sea.net/\"/></ruleset>", "<ruleset name=\"e-activist.com\" f=\"E-activist.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-boks.dk (partial)\" f=\"E-boks.dk.xml\"><exclusion pattern=\"http://www\\.e-boks\\.dk/+(?!favicon\\.ico)\"/><securecookie host=\"^(?:logon|minerhverv)\\.e-boks\\.dk$\" name=\".+\"/><rule from=\"^http://((?:logon|minerhverv|www)\\.)?e-boks\\.dk/\" to=\"https://$1e-boks.dk/\"/></ruleset>", "<ruleset name=\"E-cegjegyzek.hu\" default_off=\"failed ruleset test\" f=\"E-cegjegyzek.hu.xml\"><rule from=\"^http://(?:www\\.)?e-cegjegyzek\\.hu/\" to=\"https://www.e-cegjegyzek.hu/\"/></ruleset>", "<ruleset name=\"e-food.gr\" f=\"E-food.gr.xml\"><securecookie host=\"^(?:www\\.)?e-food\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-gold (partial)\" default_off=\"failed ruleset test\" f=\"E-gold.xml\"><securecookie host=\"\\.e-gold.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?e-gold\\.com/\" to=\"https://www.e-gold.com/\"/></ruleset>", "<ruleset name=\"E-junkie (partial)\" f=\"E-junkie.xml\"><rule from=\"^http://(www\\.)?ejunkie\\.com/(bb/images/|ecom/|ej//?(?:(?:(?:admin|contact|register)\\.php|shop)(?:$|\\?|/)|css/|images/|media/)|gc/)\" to=\"https://$1ejunkie.com/$2\"/><rule from=\"^http://static\\.e-junkie\\.com/\" to=\"https://static.e-junkie.com/\"/></ruleset>", "<ruleset name=\"E-klase.lv\" f=\"E-klase.lv.xml\"><rule from=\"^http://(?:www\\.)?e-klase\\.lv/\" to=\"https://www.e-klase.lv/\"/></ruleset>", "<ruleset name=\"E-magin.se\" f=\"E-magazin.se.xml\"><rule from=\"^http://www\\.e-magin\\.se/\" to=\"https://www.e-magin.se/\"/></ruleset>", "<ruleset name=\"E-mielenterveys\" f=\"E-mielenterveys.xml\"><securecookie host=\"^www\\.e-mielenterveys\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e-mielenterveys\\.fi/\" to=\"https://www.e-mielenterveys.fi/\"/></ruleset>", "<ruleset name=\"e-onlinedata.com\" f=\"E-onlinedata.com.xml\"><securecookie host=\"^www\\.e-onlinedata\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e-onlinedata\\.com/\" to=\"https://www.e-onlinedata.com/\"/></ruleset>", "<ruleset name=\"E-pages.dk\" f=\"E-pages.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-prawnik.pl (partial)\" f=\"E-prawnik.pl.xml\"><exclusion pattern=\"^http://(?:www\\.)?e-prawnik\\.pl/(?!favicon\\.ico|i/|zamow-opinie(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?e-prawnik\\.pl/\" to=\"https://e-prawnik.pl/\"/><rule from=\"^http://static\\.e-prawnik\\.pl/\" to=\"https://e-prawnik.pl/i/\"/><rule from=\"^http://static1\\.e-prawnik\\.pl/\" to=\"https://static1.money.pl/\"/></ruleset>", "<ruleset name=\"E-rewards.com\" default_off=\"failed ruleset test\" f=\"E-rewards.com.xml\"><rule from=\"^http://(?:www\\.)?e-rewards\\.com/\" to=\"https://www.e-rewards.com/\"/></ruleset>", "<ruleset name=\"E.ON UK (partial)\" f=\"E.ON_UK.xml\"><exclusion pattern=\"^http://(?:www\\.)?eon-uk\\.com/(?!careers/(?:Basic\\.css|images/|reset\\.css)|favicon\\.ico|images/|eOnAssets/|mediaFiles/)\"/><securecookie host=\"^stats\\.eon-uk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E14N\" default_off=\"failed ruleset test\" f=\"E14N.xml\"><securecookie host=\"^e14n\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E2E Networks (partial)\" f=\"E2E-Networks.xml\"><securecookie host=\"^shopping\\.e2enetworks\\.com$\" name=\".*\"/><rule from=\"^http://shopping\\.e2enetworks\\.com/\" to=\"https://shopping.e2enetworks.com/\"/></ruleset>", "<ruleset name=\"E2ma.net (partial)\" f=\"E2ma.net.xml\"><securecookie host=\"^app\\.e2ma\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e2ma\\.net/+(?=$|\\?)\" to=\"https://app.e2ma.net/app\"/><rule from=\"^http://app\\.e2ma\\.net/\" to=\"https://app.e2ma.net/\"/></ruleset>", "<ruleset name=\"E4ward.com\" f=\"E4ward.com.xml\"><rule from=\"^http://(?:www\\.)?e4ward\\.com/\" to=\"https://e4ward.com/\"/></ruleset>", "<ruleset name=\"e621.net\" platform=\"mixedcontent\" f=\"E621.net.xml\"><securecookie host=\"^(?:www\\.)?e621\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EAM-GmbH.com\" f=\"EAM-GmbH.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EAT.ch\" f=\"EAT.ch.xml\"><rule from=\"^http://www\\.eat\\.ch/\" to=\"https://eat.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EA Sports.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"EA_Sports.com.xml\"><securecookie host=\"\\.www\\.easports\\.com$\" name=\".+\"/><rule from=\"^http://easports\\.com/\" to=\"https://www.easports.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eArcu\" default_off=\"failed ruleset test\" f=\"EArcu.xml\"><securecookie host=\"^(?:.*\\.)?earcu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eBanking - aber sicher!\" f=\"EBAS.ch.xml\"><securecookie host=\"^(?:.*\\.)?ebas\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingabersicher\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingmasicuro\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingentoutesecurite\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?ebankingbutsecure\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EBSCO-content.com\" default_off=\"failed ruleset test\" f=\"EBSCO-content.com.xml\"><rule from=\"^http://global\\.ebsco-content\\.com/\" to=\"https://global.ebsco-content.com/\"/></ruleset>", "<ruleset name=\"EBSCOhost (partial)\" platform=\"mixedcontent\" f=\"EBSCOhost.xml\"><exclusion pattern=\"^http://www2\\.\"/><securecookie host=\"^(?:.*\\.)?ebscohost\\.com$\" name=\".*\"/><rule from=\"^http://training\\.ebsco\\.com/\" to=\"https://ebscotraining.webex.com/\"/><rule from=\"^http://(\\w+\\.)?ebscohost\\.com/\" to=\"https://$1ebscohost.com/\"/></ruleset>", "<ruleset name=\"eBay (mismatches)\" default_off=\"mismatch\" f=\"EBay-mismatches.xml\"><exclusion pattern=\"^http://merchantsupport\\.shopping\\.com/(?!files/|public/(?!Mashery/styles/clients/))\"/><rule from=\"^http://di\\d+\\.shopping\\.com/\" to=\"https://img.shopping.com/\"/><rule from=\"^http://pages\\.ebay\\.com/\" to=\"https://pages.ebay.com/\"/><rule from=\"^http://merchantsupport\\.shopping\\.com/\" to=\"https://merchantsupport.shopping.com/\"/></ruleset>", "<ruleset name=\"eBay (buggy)\" default_off=\"https://www.eff.org/r.b6G9\" f=\"EBay.xml\"><securecookie host=\"^\\.?gatekeeper\\.psnt\\.ebay\\.eu$\" name=\".+\"/><securecookie host=\"^\\.ebayrtm\\.com$\" name=\"^CT$\"/><rule from=\"^http://((?:gift)?certificates|donationsstatic|merch|reco|rover|scgi|securethumbs|signin|spages\\.half|ocs|svcs)\\.ebay\\.com/\" to=\"https://$1.ebay.com/\"/><rule from=\"^http://cgi[15]\\.ebay\\.com/\" to=\"https://scgi.ebay.com/\"/><rule from=\"^http://payments\\.ebay\\.([\\w.]{2,6})/\" to=\"https://payments.ebay.$1/\"/><rule from=\"^http://s?rtm\\.ebay\\.com/\" to=\"https://srtm.ebay.com/\"/><rule from=\"^http://thumbs\\d?\\.ebay\\.com/\" to=\"https://securethumbs.ebay.com/\"/><rule from=\"^http://(?:cgi5|scgi)\\.ebay\\.com\\.sg/\" to=\"https://scgi.ebay.com.sg/\"/><rule from=\"^http://gatekeeper\\.psnt\\.ebay\\.eu/\" to=\"https://gatekeeper.psnt.ebay.eu/\"/><rule from=\"^http://(?:www\\.)?ebayclassifieds\\.com/\" to=\"https://www.ebayclassifieds.com/\"/><rule from=\"^http://static(\\d)?\\.ebayclassifieds\\.com/\" to=\"https://static$1.ebayclassifieds.com/\"/><rule from=\"^http://sr[vx](\\.\\w+)?\\.ebayrtm\\.com/\" to=\"https://srv$1.ebayrtm.com/\"/></ruleset>", "<ruleset name=\"eBay static.com (testing)\" default_off=\"testing\" f=\"EBay_static.com-problematic.xml\"><exclusion pattern=\"^http://\\w+\\.ebaystatic\\.com/.+\\.(?:gif|ico|jpg|png)(?:$|\\?)\"/><rule from=\"^http://thumbs\\d?\\.ebaystatic\\.com/\" to=\"https://securethumbs.ebay.com/\"/><rule from=\"^http://(?:secure)?(include|ir|pics|rtm)\\.ebaystatic\\.com/\" to=\"https://secure$1.ebaystatic.com/\"/><rule from=\"^http://[pq]\\.ebaystatic\\.com/\" to=\"https://securepics.ebaystatic.com/\"/><rule from=\"^http://gh\\.ebaystatic\\.com/\" to=\"https://gh.ebaystatic.com/\"/></ruleset>", "<ruleset name=\"eBay static.com (partial)\" f=\"EBay_static.com.xml\"><exclusion pattern=\"^http://\\w+\\.ebaystatic\\.com/(?!.+\\.(?:gif|ico|jpg|png)(?:$|\\?))\"/><rule from=\"^http://thumbs\\d?\\.ebaystatic\\.com/\" to=\"https://securethumbs.ebay.com/\"/><rule from=\"^http://(?:secure)?(include|ir|pics|rtm)\\.ebaystatic\\.com/\" to=\"https://secure$1.ebaystatic.com/\"/><rule from=\"^http://[pq]\\.ebaystatic\\.com/\" to=\"https://securepics.ebaystatic.com/\"/><rule from=\"^http://gh\\.ebaystatic\\.com/\" to=\"https://gh.ebaystatic.com/\"/></ruleset>", "<ruleset name=\"eBlastEngine.com (partial)\" f=\"EBlastEngine.com.xml\"><securecookie host=\"^.*\\.eblastengine\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EC21 (partial)\" f=\"EC21.xml\"><rule from=\"^http://login\\.ec21\\.com/\" to=\"https://login.ec21.com/\"/></ruleset>", "<ruleset name=\"ECC-Platform.org\" f=\"ECC-Platform.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCPIC.gov\" f=\"ECPIC.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECSI\" default_off=\"failed ruleset test\" f=\"ECSI.xml\"><rule from=\"^http://(?:www\\.)?ecsi\\.com/\" to=\"https://www.ecsi.com/\"/></ruleset>", "<ruleset name=\"eCampus.no (partial)\" default_off=\"failed ruleset test\" f=\"ECampus.no.xml\"><rule from=\"^http://tjenester\\.ecampus\\.no/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http://((?:blog|support|www)\\.)?ecampus\\.no/\" to=\"https://$1ecampus.no/\"/></ruleset>", "<ruleset name=\"eCash.io\" default_off=\"failed ruleset test\" f=\"ECash.io.xml\"><securecookie host=\"^(?:w*\\.)?ecash\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bitservicex\\.com/\" to=\"https://ecash.io/\"/><rule from=\"^http://(www\\.)?ecash\\.io/\" to=\"https://$1ecash.io/\"/></ruleset>", "<ruleset name=\"eCigPros\" f=\"ECigPros.xml\"><securecookie host=\"^(?:.*\\.)?ecigpros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECommerce Brasil.com.br\" f=\"ECommerce_Brasil.com.br.xml\"><securecookie host=\"^\\.?cursos\\.ecommercebrasil\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCosCentric.com\" default_off=\"failed ruleset test\" f=\"ECosCentric.com.xml\"><securecookie host=\"^\\.bugzilla\\.ecoscentric\\.com$\" name=\".+\"/><rule from=\"^http://(?:www(2)?\\.)?ecoscentric\\.com/\" to=\"https://www$1.ecoscentric.com/\"/><rule from=\"^http://(bugzilla|lists)\\.ecoscentric\\.com/\" to=\"https://$1.ecoscentric.com/\"/></ruleset>", "<ruleset name=\"eCrime Research.org\" f=\"ECrime_Research.org.xml\"><rule from=\"^http://(?:www\\.)?ecrimeresearch\\.org/\" to=\"https://ecrimeresearch.org/\"/></ruleset>", "<ruleset name=\"eCustomerOpinions.com\" f=\"ECustomerOpinions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ED.gov (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ED.gov.xml\"><securecookie host=\"(?:^|\\.)(?:cbfisap|cod|dl|ecdrappeals|e-grants|faaaccess|fafsa|fsadownload|fsaregistration|fsawebenroll|ifap|nces|nslds|pin|sa|studentaid2?|tcli|teach-ats|(?:fafsademo\\.test)|usdoedregistration)\\.ed\\.gov$\" name=\".+\"/><rule from=\"^http://(dl\\.)?ed\\.gov/\" to=\"https://www.$1ed.gov/\"/><rule from=\"^http://((schools\\.dl)|ecdrappeals|e-grants|sa|(fafsademo\\.test)|www)\\.ed\\.gov/\" to=\"https://$1.ed.gov/\"/><rule from=\"^((http://(www\\.)?)|(https://www\\.))(cbfisap|cod|faaaccess|fafsa||fafsalivehelp01||fsawebenroll|nces|pin|studentaid2?|teach-ats|usdoedregistration)\\.ed\\.gov/\" to=\"https://$5.ed.gov/\"/><rule from=\"^(http://(www\\.)?|https://)(dl|fsadownload|fsaregistration|ifap|nslds|tcli)\\.ed\\.gov/\" to=\"https://www.$3.ed.gov/\"/></ruleset>", "<ruleset name=\"EDF Energy\" f=\"EDF_Energy.xml\"><securecookie host=\"^my-account\\.edfenergy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?edfenergy\\.com/\" to=\"https://www.edfenergy.com/\"/><rule from=\"^http://my-account\\.edfenergy\\.com/\" to=\"https://my-account.edfenergy.com/\"/></ruleset>", "<ruleset name=\"EDG.com\" f=\"EDG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDGAR Online\" default_off=\"failed ruleset test\" f=\"EDGAR-Online.xml\"><securecookie host=\"^(?:.*\\.)edgar-online\\.com$\" name=\".*\"/><rule from=\"^http://edgar-online\\.com/\" to=\"https://www.edgar-online.com/\"/><rule from=\"^http://(\\w+)\\.edgar-online\\.com/\" to=\"https://$1.edgar-online.com/\"/></ruleset>", "<ruleset name=\"EDI Health Group (mismatches)\" default_off=\"mismatches\" f=\"EDI-Health-Group-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?payconnect\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?payconnect\\.net/\" to=\"https://payconnect.net/\"/></ruleset>", "<ruleset name=\"EDI Health Group\" platform=\"mixedcontent\" f=\"EDI-Health-Group.xml\"><securecookie host=\"^(?:.*\\.)?dentalexchange\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.payconnect\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?claimconnect\\.net/\" to=\"https://www.dentalxchange.com/x/claimconnect.jsp\"/><rule from=\"^http://(?:www\\.)?(?:dentalxchange\\.com|(?:edihealth|webclaim)\\.net)/\" to=\"https://www.dentalxchange.com/\"/><rule from=\"^http://claimconnect\\.dentalxchange\\.com/\" to=\"https://claimconnect.dentalxchange.com/\"/><rule from=\"^http://(?:www\\.)?edihealth\\.com/\" to=\"https://www.dentalxchange.com/x/partners/webclaim.jsp\"/><rule from=\"^http://secure\\.payconnect\\.net/\" to=\"https://secure.payconnect.net/\"/></ruleset>", "<ruleset name=\"EDI7.lu (partial)\" f=\"EDI7.lu.xml\"><securecookie host=\"^www2\\.edi7\\.lu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edp.pt\" f=\"EDP.pt.xml\"><rule from=\"^http://edp\\.pt/\" to=\"https://www.edp.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDR CDN.com\" f=\"EDR_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.edrcdn\\.com/\" to=\"https://edrcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDRi.org\" f=\"EDRi.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDeveloperz.com\" f=\"EDeveloperz.xml\"><rule from=\"^http://(?:version5\\.|www\\.)?edeveloperz\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://version6.edeveloperz.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDigitalResearch.com (partial)\" f=\"EDigitalResearch.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDigitalSurvey.com\" f=\"EDigitalSurvey.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDirectDebit (partial)\" f=\"EDirectDebit.xml\"><securecookie host=\"^www\\.edirectdebit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?edirectdebit\\.com/\" to=\"https://www.edirectdebit.com/\"/></ruleset>", "<ruleset name=\"eDonorCentral.com\" f=\"EDonorCentral.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EEQJ.com\" f=\"EEQJ.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EET Group\" default_off=\"failed ruleset test\" f=\"EET_Group.xml\"><securecookie host=\"^.*\\.eet(?:group|nordic)\\.com$\" name=\".+\"/><rule from=\"^http://(s\\.|www\\.)?eet\\.eu/\" to=\"https://$1eet.eu/\"/><rule from=\"^http://(at|be|ch|cz|de|dk|es|fi|fr|it|nl|no|pl|pt|se|uk)\\.eet(group|nordic)\\.com/\" to=\"https://$1.eet$2.com/\"/></ruleset>", "<ruleset name=\"EE Times (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"EE_Times-mixed.xml\"><securecookie host=\"^video\\.eetimes\\.com$\" name=\".+\"/><rule from=\"^http://video\\.eetimes\\.com/\" to=\"https://video.eetimes.com/\"/></ruleset>", "<ruleset name=\"EE Times (partial)\" default_off=\"failed ruleset test\" f=\"EE_Times.xml\"><securecookie host=\"^\\.eetimes\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.eetimes\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn|confidential|new|www)\\.)?eetimes\\.com/\" to=\"https://$1eetimes.com/\"/><rule from=\"^http://om\\.eetimes\\.com/\" to=\"https://eetimes-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"EFF\" f=\"EFF.xml\"><securecookie host=\"^.*\\.eff\\.org$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+\\.)?eff\\.org/\" to=\"https://$1eff.org/\"/><rule from=\"^https://www\\.eff\\.org/sites/all/themes/frontier/images/get-https-e(-chrome)?.png\" to=\"https://www.eff.org/sites/all/themes/frontier/images/got-https-e$1.png\"/><rule from=\"^http://(www\\.)?(defendinnovation|globalchokepoints|httpsnow|ripmixmake)\\.org/\" to=\"https://$1$2.org/\"/></ruleset>", "<ruleset name=\"EFTPlus.asia\" default_off=\"failed ruleset test\" f=\"EFTPlus.asia.xml\"><securecookie host=\"^(?:w*\\.)?eftplus\\.asia$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFinancialCareers.cn (partial)\" f=\"EFinancialCareers.cn.xml\"><exclusion pattern=\"^http://(?:www\\.)?efinancialcareers\\.cn/+(?!login|myefc/profile|resources/)\"/><rule from=\"^http://efinancialcareers\\.cn/+\" to=\"https://www.efinancialcareers.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFinancialCareers.com (partial)\" f=\"EFinancialCareers.xml\"><exclusion pattern=\"^http://(?:www\\.)?efinancialcareers\\.com/(?!login|myefc/profile|resources/)\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http://news-cdn\\.efinancialcareers\\.com/\" to=\"https://d2p98mys7gexzy.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eForensics Mag.com\" f=\"EForensics_Mag.com.xml\"><securecookie host=\"^\\.eforensicsmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eForsa.pl\" f=\"EForsa.pl.xml\"><securecookie host=\"^\\.?eforsa\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFukt.com\" default_off=\"handshake failure\" f=\"EFukt.com.xml\"><securecookie host=\"^(?:www\\.)?efukt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFurnitureNY\" f=\"EFurnitureNY.xml\"><securecookie host=\"^(?:.*\\.)?efurnitureny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EHIC.org.uk\" f=\"EHIC.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EIA.gov (partial)\" f=\"EIA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eia\\.gov/\" to=\"https://www.eia.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EIDQ\" default_off=\"failed ruleset test\" f=\"EIDQ.xml\"><securecookie host=\"^(?:www\\.)?eidq\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EIS Kent.co.uk\" f=\"EIS_Kent.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eiskent\\.co\\.uk/\" to=\"https://www.eiskent.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EKWB Cooling Solutions\" f=\"EKWB.com.xml\"><securecookie host=\"^(?:www\\.)?ekwb\\.com\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ekwb\\.com/\" to=\"https://www.ekwb.com/\"/></ruleset>", "<ruleset name=\"eKomi\" default_off=\"failed ruleset test\" f=\"EKomi.xml\"><securecookie host=\"^(?:www)?\\.ekomi(?:\\.\\w\\w|\\.co\\.\\w\\w|-us\\.com)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ekomi\\.(?:at|ch)/\" to=\"https://www.ekomi.de/\"/><rule from=\"^http://ssl\\.ekomi\\.de/\" to=\"https://www.ekomi.de/\"/><rule from=\"^http://ekomi\\.(co\\.za|it|se|sk)/\" to=\"https://www.ekomi.$1/\"/><rule from=\"^http://(vf-js\\.|www\\.)?ekomi(\\.\\w\\w|\\.co\\.\\w\\w|-us\\.com)/\" to=\"https://$1ekomi$2/\"/></ruleset>", "<ruleset name=\"ELENA\" default_off=\"failed ruleset test\" f=\"ELENA-Verfahren.de.xml\"><rule from=\"^http://(?:www\\.)?das-elena-verfahren\\.de/\" to=\"https://www.das-elena-verfahren.de/\"/></ruleset>", "<ruleset name=\"ELO edge.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ELO_edge.com.xml\"><securecookie host=\"^\\.eloedge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELRepo.org\" f=\"ELRepo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELTE.hu (partial)\" f=\"ELTE.hu.xml\"><securecookie host=\"^(?:hallgato\\.neptun|telefon|telefonkonyv|\\.webmail)\\.elte\\.hu$\" name=\".+\"/><rule from=\"^http://(alumni|web\\.caesar|felveteli|iig|mars|minoseg|hallgato\\.neptun|pik|telefon|telefonkonyv|ugykezelo|webmail|www)\\.elte\\.hu/\" to=\"https://$1.elte.hu/\"/><rule from=\"^http://(?:www\\.)?caesar\\.elte\\.hu/\" to=\"https://www.caesar.elte.hu/\"/><rule from=\"^http://webmail\\.caesar\\.elte\\.hu/\" to=\"https://webmail.elte.hu/\"/></ruleset>", "<ruleset name=\"eLabor (partial)\" default_off=\"failed ruleset test\" f=\"ELabor.xml\"><securecookie host=\"^workforceportal\\.elabor\\.com$\" name=\".+\"/><rule from=\"^http://workforceportal\\.elabor\\.com/\" to=\"https://workforceportal.elabor.com/\"/></ruleset>", "<ruleset name=\"eLatinos.com\" f=\"ELatinos.com.xml\"><securecookie host=\"^(?:www)?\\.elatinos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eLearnSecurity.com\" f=\"ELearnSecurity.com.xml\"><securecookie host=\"^members\\.elearnsecurity\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|members|www)\\.)?elearnsecurity\\.com/\" to=\"https://$1elearnsecurity.com/\"/></ruleset>", "<ruleset name=\"EMC (partial)\" f=\"EMC.xml\"><securecookie host=\"^\\.emc\\.com$\" name=\"^(?:CampaignHeader|s_\\w+|__utm\\w)$\"/><securecookie host=\"^www\\.emc\\.com$\" name=\"^(?:HumanClickSiteContainerID_\\w+|lpFPCtest)$\"/><securecookie host=\"^(?:community|education|\\.?gallery|powerlink|sso)\\.emc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?emc\\.com/(_admin/|emc-plus/support/[\\w-]+\\.(?:cs|j)s|favicon\\.ico|homepage/css/|images/|jcaptcha\\.htm|login\\.htm|profile/account_information\\.htm|R1/|register\\.htm|reset_password/email\\.htm|rss/[\\w-]+\\.(?:json|rss)|utilities/(?:css/|globalsiteselect\\.jhtml))\" to=\"https://www.emc.com/$1\"/><rule from=\"^http://(community|ecn-analytics|education|gallery|powerlink|sso)\\.emc\\.com/\" to=\"https://$1.emc.com/\"/><rule from=\"^http://ecn-analytics-nssl\\.emc\\.com/\" to=\"https://emc-com.122.2o7.net/\"/><rule from=\"^http://emc\\.force\\.com/\" to=\"https://emc.secure.force.com/\"/></ruleset>", "<ruleset name=\"ENS.fr (partial)\" f=\"ENS.fr.xml\"><securecookie host=\"^(?:www-mail\\.(?:biologie|magbio)|www\\.cof|crypto(?:bib)?|\\.?halley|\\.mail\\.(?:jourdan|lumiere)|www\\.gdr-meso\\.phys)\\.ens\\.fr$\" name=\".+\"/><rule from=\"^http://(dg|ecocampus)\\.ens\\.fr/\" to=\"https://www.$1.ens.fr/\"/><rule from=\"^http://www\\.dma\\.ens\\.fr/\" to=\"https://www.math.ens.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ENTP clients\" default_off=\"mismatch\" f=\"ENTP-clients.xml\"><exclusion pattern=\"^http://support\\.arpnetworks\\.com/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://help\\.flavors\\.me/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://help\\.goodsie\\.com/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://support\\.optimizely\\.com/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://support\\.preyproject\\.com/(?:help|pkg|stylesheets)/\"/><securecookie host=\"^help\\.flavors\\.me$\" name=\".*\"/><securecookie host=\"^help\\.goodsie\\.com$\" name=\".*\"/><rule from=\"^http://support\\.arpnetworks\\.com/\" to=\"https://support.arpnetworks.com/\"/><rule from=\"^http://help\\.flavors\\.me/\" to=\"https://help.flavors.me/\"/><rule from=\"^http://help\\.goodsie\\.com/\" to=\"https://help.goodsie.com/\"/><rule from=\"^http://support\\.optimizely\\.com/\" to=\"https://support.optimizely.com/\"/><rule from=\"^http://support\\.preyproject\\.com/\" to=\"https://support.preyproject.com/\"/></ruleset>", "<ruleset name=\"Lighthouse app.com (mismatches)\" default_off=\"Certificate mismatch\" f=\"ENTP-mismatches.xml\"><securecookie host=\"^help\\.lighthouseapp\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tender Support\" f=\"ENTP.xml\"><securecookie host=\".*\\.tenderapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eNomCentral (partial)\" f=\"ENomCentral.xml\"><rule from=\"^http://(?:www\\.)?enomcentral\\.com/(captchautil/|css/|_?images/|js/|login\\.aspx|myaccount(?:$|\\?|/)|(?:Script|Web)Resource\\.axd|verisign-seal\\.htm)\" to=\"https://www.enomcentral.com/$1\"/></ruleset>", "<ruleset name=\"EOFT\" f=\"EOFT.xml\"><rule from=\"^http://(?:www\\.)?eoft\\.eu/\" to=\"https://www.eoft.eu/\"/></ruleset>", "<ruleset name=\"EOReality.net (partial)\" f=\"EOReality.net.xml\"><securecookie host=\"^billing\\.eoreality\\.net$\" name=\".+\"/><rule from=\"^http://billing\\.eoreality\\.net/\" to=\"https://billing.eoreality.net/\"/></ruleset>", "<ruleset name=\"EPA.gov (MCB)\" platform=\"mixedcontent\" f=\"EPA.gov-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EPA.gov (partial)\" f=\"EPA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EPA (.ie)\" platform=\"mixedcontent\" f=\"EPA.ie.xml\"><exclusion pattern=\"^http://gis\\.epa\\.ie/\"/><rule from=\"^http://(?:www\\.)?epa\\.ie/\" to=\"https://www.epa.ie/\"/></ruleset>", "<ruleset name=\"EPB\" f=\"EPB.xml\"><securecookie host=\"^(?:.*\\.)?epb(?:\\.net|fi\\.com)$\" name=\".*\"/><rule from=\"^http://(livehelp\\.|www\\.)?epb\\.net/\" to=\"https://$1epb.net/\"/><rule from=\"^http://((?:mail|livehelp|phone|www)\\.)?epbfi\\.com/\" to=\"https://$1epbfi.com/\"/></ruleset>", "<ruleset name=\"EPEAT (partial)\" f=\"EPEAT.xml\"><rule from=\"^http://ww2\\.epeat\\.com/\" to=\"https://ww2.epeat.com/\"/></ruleset>", "<ruleset name=\"EPFL (partial)\" f=\"EPFL.xml\"><securecookie host=\"^(?:inform|jahia-prod)\\.epfl\\.ch$\" name=\".+\"/><rule from=\"^http://((?:inform|jahia-prod|winauth|www)\\.)?epfl\\.ch/\" to=\"https://$1epfl.ch/\"/></ruleset>", "<ruleset name=\"EPIC\" f=\"EPIC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePay.bg\" f=\"EPay.bg.xml\"><rule from=\"^http://(?:www\\.)?epay\\.bg/\" to=\"https://www.epay.bg/\"/></ruleset>", "<ruleset name=\"ePly.com\" f=\"EPly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePrize\" default_off=\"failed ruleset test\" f=\"EPrize.xml\"><securecookie host=\"^(?:rps01|socialize)\\.eprize\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eprize\\.(?:com|net)/\" to=\"https://www.eprize.com/\"/><rule from=\"^http://(results|rps01|socialize|winlists?)\\.eprize\\.com/\" to=\"https://$1.eprize.com/\"/></ruleset>", "<ruleset name=\"eQualit.ie\" f=\"EQualit.ie.xml\"><securecookie host=\"^(?:www\\.)?equalit\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ERA.int\" f=\"ERA.int.xml\"><rule from=\"^http://(?:www\\.)?era\\.int/\" to=\"https://www.era.int/\"/></ruleset>", "<ruleset name=\"ERC.edu\" f=\"ERC.edu.xml\"><securecookie host=\"^courses\\.erc\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ERNW.de\" f=\"ERNW.de.xml\"><rule from=\"^http://(?:www\\.)?ernw\\.de/\" to=\"https://www.ernw.de/\"/></ruleset>", "<ruleset name=\"eReceptionist.co.uk (partial)\" f=\"EReceptionist.co.uk.xml\"><rule from=\"^http://(?:www\\.)?ereceptionist\\.co\\.uk/(?=App_Themes/|bundles/|Content/|e[vV]oice[iI]mages/|favicon\\.ico|(?:forgot-password|phone-system-choose)(?:$|[?/])|images/|[jJ]s/|(?:Telerik\\.Web\\.UI\\.)?WebResource\\.axd)\" to=\"https://www.ereceptionist.co.uk/\"/></ruleset>", "<ruleset name=\"ESB.ie\" f=\"ESB.ie.xml\"><rule from=\"^http://(?:www\\.)?esb\\.ie/\" to=\"https://www.esb.ie/\"/><rule from=\"^http://(www\\.)?esbie\\.ie/\" to=\"https://$1esbie.ie/\"/></ruleset>", "<ruleset name=\"ESET.at\" f=\"ESET.at.xml\"><rule from=\"^http://(?:www\\.)?eset\\.at/\" to=\"https://www.sicontact.at/\"/></ruleset>", "<ruleset name=\"ESET.co.uk (partial)\" f=\"ESET.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESET.de (partial)\" f=\"ESET.de.xml\"><rule from=\"^http://(?:www\\.)?eset\\.de/(?=$|\\?)\" to=\"https://www.eset.com/de\"/></ruleset>", "<ruleset name=\"ESET NOD32.ru (partial)\" f=\"ESET_NOD32.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.shop\\.esetnod32\\.ru$\" name=\".\"/><rule from=\"^http://esetnod32\\.ru/\" to=\"https://www.esetnod32.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESET static.com\" f=\"ESET_static.com.xml\"><rule from=\"^http://(static\\d|www)\\.esetstatic\\.com/\" to=\"https://$1.esetstatic.com/\"/></ruleset>", "<ruleset name=\"ESF-Works.com\" default_off=\"self-signed\" f=\"ESF-Works.com.xml\"><securecookie host=\"^esf-works\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?esf-works\\.com/\" to=\"https://esf-works.com/\"/></ruleset>", "<ruleset name=\"ESI-Group.com\" f=\"ESI-Group.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESI\" f=\"ESI.xml\"><securecookie host=\"^(?:www)?\\.esi\\.dz$\" name=\".+\"/><rule from=\"^http://www\\.esi\\.dz/\" to=\"https://www.esi.dz/\"/></ruleset>", "<ruleset name=\"ESISS\" f=\"ESISS.xml\"><securecookie host=\"^(?:.+\\.)?esiss\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?esiss\\.ac\\.uk/\" to=\"https://www.esiss.ac.uk/\"/></ruleset>", "<ruleset name=\"ESJ.com\" f=\"ESJ.com.xml\"><securecookie host=\"^esj\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESOMAR.org\" default_off=\"failed ruleset test\" f=\"ESOMAR.org.xml\"><securecookie host=\".*\\.esomar\\.org$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:directory|www)\\.esomar\\.org$\" name=\".+\"/><rule from=\"^http://((?:directory|payment|rwconnect|www)\\.)?esomar\\.org/\" to=\"https://$1esomar.org/\"/></ruleset>", "<ruleset name=\"ESRB\" f=\"ESRB.xml\"><rule from=\"^http://(?:www\\.)?esrb\\.org/\" to=\"https://www.esrb.org/\"/></ruleset>", "<ruleset name=\"ESRI.ie\" f=\"ESRI.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESTA Visas.org.uk\" f=\"ESTA_Visas.org.uk.xml\"><securecookie host=\"^(?:www\\.|\\.)?estavisas\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESTA Visas.org\" f=\"ESTA_Visas.org.xml\"><securecookie host=\"^(?:www\\.|\\.)?estavisas\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESV.de\" f=\"ESV.de.xml\"><securecookie host=\"^www\\.esv\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?esv\\.de/\" to=\"https://www.esv.de/\"/></ruleset>", "<ruleset name=\"ES Discuss.com\" f=\"ES_Discuss.com.xml\"><securecookie host=\"^\\.?esdiscuss\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eScholarship.org (mismatched)\" default_off=\"mismatched\" f=\"EScholarship.org-problematic.xml\"><securecookie host=\"^publish\\.escholarship\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eScholarship.org (partial)\" f=\"EScholarship.org.xml\"><securecookie host=\"^submit\\.escholarship\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eSupport.com (partial)\" f=\"ESupport.com.xml\"><rule from=\"^http://secure\\.esupport\\.com/\" to=\"https://secure.esupport.com/\"/></ruleset>", "<ruleset name=\"ETAO.com (partial)\" f=\"ETAO.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETHZ.ch (problematic)\" default_off=\"expired, missing certificate chain\" f=\"ETHZ.ch-problematic.xml\"><rule from=\"^http://ethlife\\.ethz\\.ch/\" to=\"https://www.ethlife.ethz.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETHZ.ch (partial)\" f=\"ETH_Zurich.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ethz\\.ch/\" to=\"https://www.ethz.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETS\" f=\"ETS.xml\"><rule from=\"^http://(?:www\\.)?ets\\.org/\" to=\"https://www.ets.org/\"/><rule from=\"^http://(apstudio|ept-elm|gedcalifornia|gresearch|ibtsd3|mygre|onyx|ppi|srp|title2|toefl-registration|toeflrts)\\.ets\\.org/\" to=\"https://$1.ets.org/\"/></ruleset>", "<ruleset name=\"ETegro Technologies (default off)\" default_off=\"invalid cert\" f=\"ETegro.xml\"><rule from=\"^http://(?:www\\.)?etegro\\.com/\" to=\"https://www.etegro.com/\"/></ruleset>", "<ruleset name=\"eToro (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"EToro.xml\"><securecookie host=\"^\\.copy\\.me$\" name=\".+\"/><securecookie host=\"^.*\\.etoro\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?copy\\.me/\" to=\"https://$1copy.me/\"/><rule from=\"^http://(?:www\\.)?etoro\\.com/\" to=\"https://www.etoro.com/\"/><rule from=\"^http://(openbook|s3)\\.etoro\\.com/\" to=\"https://$1.etoro.com/\"/></ruleset>", "<ruleset name=\"eUKhost (partial)\" f=\"EUKhost.xml\"><securecookie host=\"^billing\\.eukhost\\.com$\" name=\".+\"/><rule from=\"^http://(affiliates|billing)\\.eukhost\\.com/\" to=\"https://$1.eukhost.com/\"/></ruleset>", "<ruleset name=\"eUKhosting\" f=\"EUKhosting.xml\"><securecookie host=\".+\\.eukhosting.net$\" name=\".+\"/><rule from=\"^http://(?!www\\.)([\\w-]+)\\.eukhosting\\.net/\" to=\"https://$1.eukhosting.net/\"/></ruleset>", "<ruleset name=\"EUSecWest\" f=\"EUSecWest.xml\"><securecookie host=\"^\\.eusecwest\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eusecwest\\.com/\" to=\"https://eusecwest.com/\"/></ruleset>", "<ruleset name=\"EUobserver.com\" f=\"EUobserver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EUserv.de (partial)\" f=\"EUserv.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?euserv\\.de/+(?!favicon\\.ico|pic/)\"/><rule from=\"^http://(?:(www\\.)?ssl\\.|www\\.)?euserv\\.de/\" to=\"https://$1ssl.euserv.de/\"/><rule from=\"^http://support\\.euserv\\.de/\" to=\"https://support.euserv.de/\"/></ruleset>", "<ruleset name=\"EVDrive (partial)\" default_off=\"mismatch\" f=\"EVDrive.xml\"><rule from=\"^http://(?:www\\.)?evdrive\\.com/wp-content/\" to=\"https://evdrive.evdriveinfo.com/~evdrivei/current/wp-current/\"/></ruleset>", "<ruleset name=\"EVE Online.com (partial)\" f=\"EVE_Online.com.xml\"><securecookie host=\"^(?:forums|secure|wiki)\\.eveonline\\.com$\" name=\".+\"/><rule from=\"^http://((?:community|forums|gate|image|login|secure|wiki|www)\\.)?eveonline\\.com/\" to=\"https://$1eveonline.com/\"/></ruleset>", "<ruleset name=\"EVGA (partial)\" default_off=\"failed ruleset test\" f=\"EVGA.xml\"><exclusion pattern=\"^http://www\\.evga\\.com/(?:forums|Products)/\\w+\\.aspx\"/><securecookie host=\"^www\\.evga\\.com$\" name=\"^dbforums.*$\"/><rule from=\"^http://(?:www\\.)?evga\\.com/((?:.+/)?(?:$|\\w+\\.(?:aspx|css|gif|jpg|js|png|swf|xml)($|\\?)|attachments/|files/|forumsarchive/|images/|includes/|JS/)|banners/|favicon\\.ico|gaming/wp-content/|(?:[sS]upport/)?login\\.asp$|support/d(?:ownload|rivers)/|Support/download/)\" to=\"https://www.evga.com/$1\"/><rule from=\"^http://(?:(?:asia|[bfk]r|eu|jp|latam)\\.evga\\.com|(?:www\\.)?evga\\.com\\.(?:au|tw))/((?:.+/)?images/common/|favicon\\.ico$)\" to=\"https://www.evga.com/$1\"/></ruleset>", "<ruleset name=\"eVoice.co.uk (partial)\" f=\"EVoice.co.uk.xml\"><securecookie host=\"^www\\.evoice\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?evoice\\.co\\.uk/\" to=\"https://www.evoice.co.uk/\"/><rule from=\"^http://go\\.evoice\\.co\\.uk/\" to=\"https://go.evoice.co.uk/\"/><rule from=\"^http://home\\.evoice\\.co\\.uk/+(?=$|\\?)\" to=\"https://go.evoice.co.uk/eV_UK_NS_MyWebHelp/eV_UKHelp_Left.htm\"/></ruleset>", "<ruleset name=\"E. W. Scripps Company (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"EW-Scripps-Company-mismatches.xml\"><rule from=\"^http://m(edia)?\\.andersonvalleypost\\.com/\" to=\"https://m$1.andersonvalleypost.com/\"/><rule from=\"^http://(blogs|media|web)\\.commercialappeal\\.com/\" to=\"https://$1.commercialappeal.com/\"/><rule from=\"^http://(homes|web)\\.redding\\.com/\" to=\"https://$1web.redding.com/\"/></ruleset>", "<ruleset name=\"E. W. Scripps Company (partial)\" default_off=\"failed ruleset test\" f=\"EW-Scripps-Company.xml\"><rule from=\"^http://(?:www\\.)?andersonvalleypost\\.com/(accounts/(?:login|password_reset|register)|staff|subscribe)/\" to=\"https://www.andersonvalleypost.com/$1/\"/><rule from=\"^http://login\\.andersonvalleypost\\.com/\" to=\"https://login.andersonvalleypost.com/\"/><rule from=\"^http://(?:www\\.)?commercialappeal\\.com/\" to=\"https://www.commercialappeal.com/\"/><rule from=\"^http://(?:www\\.)?redding\\.com/\" to=\"https://www.redding.com/\"/></ruleset>", "<ruleset name=\"EW-online.de\" platform=\"mixedcontent\" default_off=\"self-signed\" f=\"EW-online.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EWebScapes.com (partial)\" f=\"EWebScapes.com.xml\"><rule from=\"^http://(?:www\\.)?ewebscapes\\.com/+\" to=\"https://webdevstudios.com/\"/><rule from=\"^http://clientarea\\.ewebscapes\\.com/+(?=$|\\?)\" to=\"https://webdevstudios.com/contact\"/></ruleset>", "<ruleset name=\"eWellness magazine (partial)\" default_off=\"failed ruleset test\" f=\"EWellness_magazine.xml\"><exclusion pattern=\"^http://www\\.ewellnessmag\\.com/(?:app/shop(?:$|\\?|/login_or_register)|cart(?:$|\\?))\"/><rule from=\"^http://(?:www\\.)?ewellnessmag\\.com/\" to=\"https://www.ewellnessmag.com/\"/></ruleset>", "<ruleset name=\"EXANTE\" f=\"EXANTE.xml\"><securecookie host=\"^exante\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EXIST.de\" f=\"EXIST.de.xml\"><securecookie host=\"^www\\.exist\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eXXile.net\" default_off=\"mismatched, self-signed\" f=\"EXXile.net.xml\"><securecookie host=\"^firefox\\.exxile\\.net$\" name=\".+\"/><rule from=\"^http://(?:(firefox\\.)|www\\.)?exxile\\.net/\" to=\"https://$1exxile.net/\"/></ruleset>", "<ruleset name=\"eXelate\" f=\"EXelate.xml\"><securecookie host=\"^texi\\.exelate\\.com$\" name=\".+\"/><securecookie host=\"^\\.exelator\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.exelate\\.com/\" to=\"https://ad.yieldmanager.com/\"/><rule from=\"^http://texi\\.exelate\\.com/\" to=\"https://texi.exelate.com/\"/><rule from=\"^http://(load(?:eu|m|r|us|xl)?|sandbox)\\.exelator\\.com/\" to=\"https://$1.exelator.com/\"/><rule from=\"^http://loadan\\.exelator\\.com/\" to=\"https://load.exelator.com/\"/></ruleset>", "<ruleset name=\"The eXiled (partial)\" default_off=\"expired, self-signed\" f=\"EXiled.xml\"><rule from=\"^http://(?:www\\.)?exiledonline\\.com/(favicon\\.ico|slider/|wp-content/)\" to=\"https://exiledonline.com/$1\"/></ruleset>", "<ruleset name=\"EYE film.nl (partial)\" f=\"EYE_film.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZ-Download\" default_off=\"failed ruleset test\" f=\"EZ-Download.xml\"><securecookie host=\"^(?:www)?\\.ez-download\\.com$\" name=\".+\"/><rule from=\"^http://(downloader\\.|www\\.)?ez-download\\.com/\" to=\"https://$1ez-download.com/\"/><rule from=\"^http://media\\.ez-download\\.com/\" to=\"https://d227ccvjlkns26.cloudfront.net/\"/></ruleset>", "<ruleset name=\"EZ Web Hosting\" f=\"EZ-Web-Hosting.xml\"><securecookie host=\"^.*\\.ez-web-hosting\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZCrypt\" f=\"EZCrypt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZGram\" f=\"EZGram.xml\"><securecookie host=\"^(www)?\\.ezgram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZOSHosting (false MCB)\" platform=\"mixedcontent\" f=\"EZOSHosting.xml\"><securecookie host=\"^.*\\.ezoshosting\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|(support\\.|www\\.))?ezoshosting\\.com/\" to=\"https://$1ezoshosting.com/\"/></ruleset>", "<ruleset name=\"EZTV\" default_off=\"failed ruleset test\" f=\"EZTV.xml\"><securecookie host=\"^\\.ezimg\\.it$\" name=\".+\"/><securecookie host=\"^\\.?eztv\\.it$\" name=\".+\"/><rule from=\"^http://(www\\.)?ez(img|tv)\\.it/\" to=\"https://$1ez$2.it/\"/><rule from=\"^http://(?:www\\.)?(ezrss\\.it|zoink\\.it|ezimages\\.eu)/\" to=\"https://$1/\"/><rule from=\"^http://torrent\\.zoink\\.it/\" to=\"https://torrent.zoink.it/\"/></ruleset>", "<ruleset name=\"eager.io\" f=\"Eager.io.xml\"><rule from=\"^http://((?:bus|embedded|dev|www)\\.)?eager\\.io/\" to=\"https://$1eager.io/\"/><rule from=\"^http://status\\.eager\\.io/\" to=\"https://eager.statuspage.io/\"/></ruleset>", "<ruleset name=\"Eagle Rock Reservation\" default_off=\"mismatched\" f=\"Eagle_Rock_Reservation.xml\"><rule from=\"^http://(?:www\\.)?eaglerockreservation\\.org/\" to=\"https://eaglerockreservation.org/\"/></ruleset>", "<ruleset name=\"EarthLink (partial)\" default_off=\"Breaks certain pop-up content (such as the "Find Internet access numbers" option at [http://www.earthlink.net/membercenter/gethelp.faces])\" f=\"EarthLink.xml\"><exclusion pattern=\"^http://(?:www\\.)?earthlink\\.net/software/.+\"/><exclusion pattern=\"^http://(?:www\\.)?earthlink\\.net/membercenter/.+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)earthlink\\.biz/\" to=\"https://www.earthlink.biz/\"/><rule from=\"^http://earthlink\\.net/\" to=\"https://www.earthlink.net/\"/><rule from=\"^http://((webmail\\.atl)|cc|control|(webmail\\.)?hosting|netstatus|store|(m\\.webmail)|www)\\.earthlink\\.net/\" to=\"https://$1.earthlink.net/\"/><rule from=\"^((http://(www\\.)?)|(https://www\\.))(myaccount|myvoice|orderstatus|support|webmail)\\.earthlink\\.net/\" to=\"https://$5.earthlink.net/\"/></ruleset>", "<ruleset name=\"Earth First.org.uk\" f=\"Earth_First.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Earth & Space Research\" f=\"Earth_and_Space_Research.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Earwolf Podcast Network\" default_off=\"expired cert\" f=\"Earwolf_Podcast_Network.xml\"><securecookie host=\"^(?:www\\.)?earwolf\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\d?\\.|(www\\.))?earwolf\\.com/\" to=\"https://$1earwolf.com/\"/></ruleset>", "<ruleset name=\"Easily.co.uk (partial)\" f=\"Easily.co.uk.xml\"><securecookie host=\"^easily\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:(webmail\\.)|www\\.)?easily\\.co\\.uk/\" to=\"https://$1easily.co.uk/\"/></ruleset>", "<ruleset name=\"East-Northamptonshire.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"East-Northamptonshire.gov.uk.xml\"><securecookie host=\"^(?!\\.east-northamptonshire\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Hants.gov.uk (partial)\" f=\"East_Hants.gov.uk.xml\"><exclusion pattern=\"^http://www\\.easthants\\.gov\\.uk/+(?!misc/|modules/|sites/)\"/><securecookie host=\"^\\.\" name=\"^citrix_ns_id$\"/><securecookie host=\"^(?!www\\.)?\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Lothian.gov.uk (partial)\" f=\"East_Lothian.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Riding.gov.uk (partial)\" f=\"East_Riding.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eastriding\\.gov\\.uk/\" to=\"https://www.eastriding.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eastbay (mismatches)\" default_off=\"mismatched\" f=\"Eastbay-problematic.xml\"><rule from=\"^http://reviews\\.eastbay\\.com/\" to=\"https://reviews.eastbay.com/\"/></ruleset>", "<ruleset name=\"Eastbay (partial)\" default_off=\"failed ruleset test\" f=\"Eastbay.xml\"><securecookie host=\"^.*\\.eastbay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eastbay\\.com/\" to=\"https://www.eastbay.com/\"/><rule from=\"^http://(images|m|teamsales)\\.eastbay\\.com/\" to=\"https://$1.eastbay.com/\"/></ruleset>", "<ruleset name=\"Eastbay Team Services\" f=\"Eastbay_Team_Services.xml\"><securecookie host=\"^www\\.eastbayteamservices\\.com$\" name=\".+\"/><rule from=\"^http://www\\.eastbayteamservices\\.com/\" to=\"https://www.eastbayteamservices.com/\"/></ruleset>", "<ruleset name=\"Eastern Collegiate Taekwondo Conference\" default_off=\"mismatch\" f=\"Eastern-Collegiate-Taekwondo-Conference.xml\"><rule from=\"^http://(?:www\\.)?ectc-online\\.org/\" to=\"https://ectc-online.org/~ectconli/\"/></ruleset>", "<ruleset name=\"Eastmon.com.au (partial)\" f=\"Eastmon.com.au.xml\"><rule from=\"^http://staging\\.eastmon\\.com\\.au/(?=css/|favicon\\.ico|images/)\" to=\"https://staging.eastmon.com.au/\"/></ruleset>", "<ruleset name=\"easy2coach.net (partial)\" f=\"Easy2coach.net.xml\"><rule from=\"^http://(www\\.)?easy2coach\\.net/(?=\\w\\w/(?:banquedexercicesdefoot|base-de-datos-ejercicios-futbol|calcio-bancadati-esercizi|ejercicios-de-futbol/entrenamiento-11-11|esercizio-del-mese/ci-segnali|football-exercises(?:-database|/football-training-11-11|/recommend-us)|fussballuebungen/empfehlen-sie-uns|fussball-uebungsdatenbank)\\.html|/?facebook/|favicon\\.ico|/?templates/)\" to=\"https://$1easy2coach.net/\"/></ruleset>", "<ruleset name=\"EasyChair.org (partial)\" f=\"EasyChair.org.xml\"><exclusion pattern=\"^http://www\\.easychair\\.org/+(?!account/|conferences/|css/|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyCruit.com\" f=\"EasyCruit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"easyDNS (partial)\" f=\"EasyDNS.xml\"><exclusion pattern=\"^http://(?:blog2?|helpwiki|mediawiki|parked)\\.easydns\\.com/\"/><securecookie host=\".*\\.easydns\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?easydns\\.net/\" to=\"https://www.easydns.com/\"/><rule from=\"^http://([\\w-]+\\.)?easydns\\.(com|net)/\" to=\"https://$1easydns.$2/\"/></ruleset>", "<ruleset name=\"easyJet.com (partial)\" f=\"EasyJet.com.xml\"><exclusion pattern=\"^http://stafftravel\\.easyjet\\.com/+(?!asp/en/stafftravel\\.asp|common/|favicon\\.ico)\"/><rule from=\"^http://(?:www\\.)?easyjet\\.com/(?=Content/|ejcms/|favicon\\.ico|fonts/)\" to=\"https://www.easyjet.com/\"/><rule from=\"^http://(onboarding|(?:js|media)\\.sc|stafftravel)\\.easyjet\\.com/\" to=\"https://$1.easyjet.com/\"/></ruleset>", "<ruleset name=\"easyMail.ca\" f=\"EasyMail.ca.xml\"><rule from=\"^http://(?:www\\.)?easymail\\.ca/$\" to=\"https://www.easydns.com/easymail-2/\"/><rule from=\"^http://(?:www\\.)?easymail\\.ca/\" to=\"https://www.easydns.com/easymail-2//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyNews\" f=\"EasyNews.xml\"><rule from=\"^http://(?:www\\.)?easynews\\.com/\" to=\"https://easynews.com/\"/><rule from=\"^http://members\\.easynews\\.com/\" to=\"https://secure.members.easynews.com/\"/></ruleset>", "<ruleset name=\"easyPDF Cloud\" default_off=\"failed ruleset test\" f=\"EasyPDF_Cloud.xml\"><securecookie host=\"^(?:www)?\\.easypdfonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyPost.com\" f=\"EasyPost.com.xml\"><rule from=\"^http://status\\.easypost\\.com/\" to=\"https://easypost.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"easyPress.ca\" f=\"EasyPress.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyVoiceBiometrics\" default_off=\"mismatched\" f=\"EasyVoiceBiometrics.xml\"><securecookie host=\"^(?:.*\\.)?easyvoicebiometrics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?easyvoicebiometrics\\.com/\" to=\"https://www.easyvoicebiometrics.com/\"/></ruleset>", "<ruleset name=\"easyWhois.com\" f=\"EasyWhois.com.xml\"><securecookie host=\"^(?:www\\.)?easywhois\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easy Hébergement\" f=\"Easy_Hebergement.xml\"><securecookie host=\"^\\.easy-hebergement\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easyodds.com\" f=\"Easyodds.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easyspace (expired)\" default_off=\"expired\" f=\"Easyspace-expired.xml\"><rule from=\"^http://helpdesk\\.easyspace\\.com/\" to=\"https://helpdesk.easyspace.com/\"/></ruleset>", "<ruleset name=\"Easyspace (partial)\" f=\"Easyspace.xml\"><securecookie host=\"^.*\\.easyspace\\.com$\" name=\".*\"/><rule from=\"^http://controlpanel\\.easyspace\\.com/\" to=\"https://controlpanel.easyspace.com/\"/></ruleset>", "<ruleset name=\"easywallet.org\" f=\"Easywallet.org.xml\"><securecookie host=\"^(?:www\\.)?easywallet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eater.com (partial)\" f=\"Eater.xml\"><rule from=\"^http://eater\\.com/\" to=\"https://www.eater.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ebi.ac.uk\" f=\"Ebi.ac.uk.xml\"><exclusion pattern=\"^http://www\\.ebi\\.ac\\.uk/systems-srv/\"/><rule from=\"^http://www\\.ebi\\.ac\\.uk/\" to=\"https://www.ebi.ac.uk/\"/></ruleset>", "<ruleset name=\"EBiS.ne.jp\" f=\"Ebis.ne.jp.xml\"><securecookie host=\"^secure\\.ebis\\.ne\\.jp$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ebis\\.ne\\.jp/\" to=\"https://secure.ebis.ne.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ebroder.net\" f=\"Ebroder.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ebuyer.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ebuyer.com-falsemixed.xml\"><rule from=\"^http://blog\\.ebuyer\\.com/\" to=\"https://www.ebuyer.com/blog/\"/><rule from=\"^http://www\\.ebuyer\\.com/blog(?=$|[?/])\" to=\"https://www.ebuyer.com/blog\"/></ruleset>", "<ruleset name=\"Ebuyer.com (partial)\" default_off=\"Breaks blog\" f=\"Ebuyer.com.xml\"><exclusion pattern=\"^http://www\\.ebuyer\\.com/+(?!blog/(?:favicon\\.ico|index\\.php\\?ak_action=aktt_css|wp-content/|wp-includes/)|favicon\\.ico)\"/><exclusion pattern=\"^http://accounts\\.ebuyer\\.com/+(?!css/|favicon\\.ico|images/|js/)\"/><securecookie host=\"^forums\\.ebuyer\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|image|orders|static|www)\\.)?ebuyer\\.com/\" to=\"https://$1ebuyer.com/\"/><rule from=\"^http://blog\\.ebuyer\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.ebuyer.com/blog/\"/></ruleset>", "<ruleset name=\"ebuzzing (partial)\" default_off=\"failed ruleset test\" f=\"Ebuzzing.xml\"><securecookie host=\"^social\\.ebuzzing\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ebuzzing\\.com/\" to=\"https://ebuzzing.com/\"/><rule from=\"^http://(?:www\\.)?ebuzzing\\.de/(\\?.*)?$\" to=\"https://social.ebuzzing.de/$1\"/><rule from=\"^http://social\\.ebuzzing\\.de/\" to=\"https://social.ebuzzing.de/\"/></ruleset>", "<ruleset name=\"Ebyr CDN.net\" f=\"Ebyr_CDN.net.xml\"><rule from=\"^http://img\\.ebyrcdn\\.net/\" to=\"https://img.ebyrcdn.net/\"/></ruleset>", "<ruleset name=\"EchoDitto.com\" default_off=\"failed ruleset test\" f=\"EchoDitto.com.xml\"><securecookie host=\"^(?:www\\.)?echoditto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"echoplex.us (partial)\" default_off=\"failed ruleset test\" f=\"Echoplex.us.xml\"><rule from=\"^http://www\\.echoplex\\.us/\" to=\"https://echoplex.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Echothrust.com\" default_off=\"self-signed\" f=\"Echothrust.com.xml\"><securecookie host=\"^\\.echothrust\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?echothrust\\.com/\" to=\"https://www.echothrust.com/\"/></ruleset>", "<ruleset name=\"Eclipse (partial)\" f=\"Eclipse.xml\"><securecookie host=\"^bugs\\.eclipse\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eclipso.ch\" f=\"Eclipso.ch.xml\"><rule from=\"^http://(?:www\\.)?eclipso\\.ch/\" to=\"https://www.eclipso.ch/\"/></ruleset>", "<ruleset name=\"eclipso\" default_off=\"failed ruleset test\" f=\"Eclipso.xml\"><securecookie host=\"^(?:www\\.|mail\\.|m\\.)?eclipso\\.de$\" name=\".+\"/><rule from=\"^http://(?:mail\\.|www\\.)?eclipso\\.de/\" to=\"https://www.eclipso.de/\"/><rule from=\"^http://m\\.eclipso\\.de/\" to=\"https://www.eclipso.de/m/\"/></ruleset>", "<ruleset name=\"ecm74.com (partial)\" f=\"Ecm74.com.xml\"><rule from=\"^http://(?:www\\.)?ecm74\\.com/(?!rp/\\d+/ContestForm\\.clsp)\" to=\"https://ecm74.com/\"/></ruleset>", "<ruleset name=\"EcoDissident.net\" f=\"EcoDissident.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecode360.com\" f=\"Ecode360.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecoff.org\" f=\"Ecoff.org.xml\"><securecookie host=\"^(?:w*\\.)?ecoff\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecommerce.com (partial)\" f=\"Ecommerce.xml\"><securecookie host=\"^www\\.ecommerce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"econda-monitor.de\" default_off=\"failed ruleset test\" f=\"Econda-monitor.de.xml\"><rule from=\"^http://www\\.econda-monitor\\.de/\" to=\"https://www.econda-monitor.de/\"/></ruleset>", "<ruleset name=\"Econda\" f=\"Econda.de.xml\"><rule from=\"^http://www\\.econda\\.de/\" to=\"https://www.econda.de/\"/><rule from=\"^http://ww1\\.econda-monitor\\.de/\" to=\"https://ww1.econda-monitor.de/\"/></ruleset>", "<ruleset name=\"Economic Policy Institute (partial)\" f=\"Economic-Policy-Institute.xml\"><securecookie host=\"^(?:my|\\.?secure)\\.epi\\.org$\" name=\".*\"/><rule from=\"^http://www\\.epi\\.org/page/-/\" to=\"https://secure.epi.org/page/-/\"/><rule from=\"^http://(my|secure)\\.epi\\.org/\" to=\"https://$1.epi.org/\"/></ruleset>", "<ruleset name=\"Economist.com (partial)\" f=\"Economist.xml\"><exclusion pattern=\"^http://www\\.economist\\.com/+(?!(?:debate|user)(?:$|[?/])|favicon\\.ico|sites/)\"/><securecookie host=\"^\\.economist\\.com$\" name=\"^__(?:qca|_utm\\w+)$\"/><securecookie host=\"^(?:(?:app)?\\.gmat|jobs|\\.?subscriptions)\\.economist\\.com$\" name=\".+\"/><securecookie host=\"^www\\.economist\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http://economist\\.com/\" to=\"https://www.economist.com/\"/><rule from=\"^http://stats\\.economist\\.com/\" to=\"https://economist.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Economist Intelligence Unit (partial)\" f=\"Economist_Intelligence_Unit.xml\"><securecookie host=\"^\\.eiu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Economy.com\" f=\"Economy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecosia\" f=\"Ecosia.org.xml\"><securecookie host=\"^(www\\.|info.)?ecosia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecowatch.com\" f=\"Ecowatch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ecustomer support.com\" f=\"Ecustomer_support.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecwid (partial)\" f=\"Ecwid.xml\"><securecookie host=\"^my\\.ecwid\\.com$\" name=\".+\"/><rule from=\"^http://images-cdn\\.ecwid\\.com/\" to=\"https://dpbfm6h358sh7.cloudfront.net/\"/><rule from=\"^http://kb\\.ecwid\\.com/(f/|theme_image\\.php)\" to=\"https://ecwid.pbworks.com/$1\"/><rule from=\"^http://my\\.ecwid\\.com/\" to=\"https://my.ecwid.com/\"/><rule from=\"^http://static\\.ecwid\\.com/\" to=\"https://dj925myfyz5v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ed.ac.uk (partial)\" f=\"Ed.ac.uk.xml\"><securecookie host=\"^info\\.maths\\.ed\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edubuntu\" default_off=\"failed ruleset test\" f=\"EdUbuntu.xml\"><securecookie host=\"^wiki\\.edubuntu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EdWeek.org (partial)\" f=\"EdWeek.org.xml\"><exclusion pattern=\"^http://pddirectory\\.edweek\\.org/+(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?edweek\\.org/(?=css/|favicon\\.ico|images/|js/|media/)\" to=\"https://secure.edweek.org/\"/><rule from=\"^http://(myaccount|pddirectory|secure|sm)\\.edweek\\.org/\" to=\"https://$1.edweek.org/\"/><rule from=\"^http://m\\.edweek\\.org/\" to=\"https://edweek-org.122.2o7.net/\"/></ruleset>", "<ruleset name=\"edX.org\" f=\"EdX.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ed Uncovered.com\" f=\"Ed_Uncovered.com.xml\"><securecookie host=\"^\\.eduncovered\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edarabia.com\" f=\"Edarabia.com.xml\"><securecookie host=\"^\\.edarabia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edas.info\" f=\"Edas.xml\"><rule from=\"^http://(?:www\\.)?edas\\.info/\" to=\"https://www.edas.info/\"/></ruleset>", "<ruleset name=\"Eddie Izzard (partial)\" f=\"Eddie_Izzard.xml\"><rule from=\"^http://(?:www\\.)?eddieizzard\\.com/([^/]+/assets/|favicon\\.ico|resource/)\" to=\"https://www.eddieizzard.com/$1\"/></ruleset>", "<ruleset name=\"EdenHost.com\" f=\"EdenHost.com.xml\"><securecookie host=\"^\\.edenhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ederdrom.de\" f=\"Ederdrom.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edfil.es\" default_off=\"failed ruleset test\" f=\"Edfil.es.xml\"><rule from=\"^http://(?:www\\.)?edfil\\.es/\" to=\"https://www.edfil.es/\"/></ruleset>", "<ruleset name=\"Edge.org\" f=\"Edge.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EdgeCast Networks (partial)\" default_off=\"It remains to be determined which URLs indicate SSL support\" f=\"EdgeCast-networks.xml\"><rule from=\"^http://wac\\.edgecastcdn\\.net/\" to=\"https://wac.edgecastcdn.net/\"/><rule from=\"^http://ne\\.edgecastcdn\\.net/\" to=\"https://ne.edgecastcdn.net/\"/><rule from=\"^http://g(p|s)1\\.wac\\.edgecastcdn\\.net/\" to=\"https://g$11.wac.edgecastcdn.net/\"/><rule from=\"^http://ne1\\.wpc\\.edgecastcdn\\.net/\" to=\"https://ne1.wpc.edgecastcdn.net/\"/><rule from=\"^http://(?:ne\\.wa|gs1\\.wp)c\\.edgecastcdn\\.net/\" to=\"https://ne.wac.edgecastcdn.net/\"/></ruleset>", "<ruleset name=\"Edge Snapbacks.com\" default_off=\"failed ruleset test\" f=\"Edge_Snapbacks.com.xml\"><securecookie host=\"^(?:w*\\.)?edgesnapbacks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edgekey.net (partial)\" f=\"Edgekey.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edgerunner.com (partial)\" f=\"Edgerunner.com.xml\"><securecookie host=\"^store\\.edgerunner\\.com$\" name=\".+\"/><rule from=\"^http://store\\.edgerunner\\.com/\" to=\"https://store.edgerunner.com/\"/></ruleset>", "<ruleset name=\"Edgewall.org (partial)\" f=\"Edgewall-Software.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edinburgh.gov.uk (partial)\" f=\"Edinburgh.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!\\.edinburgh\\.gov\\.uk).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"editmysite.com (partial)\" f=\"Editmysite.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?editmysite\\.com/+(?!(?:developer/none|favicon)\\.ico)\"/><rule from=\"^http://(?:www\\.)?editmysite\\.com/\" to=\"https://www.editmysite.com/\"/><rule from=\"^http://cdn(1|2)\\.editmysite\\.com/\" to=\"https://cdn$1.editmysite.com/\"/></ruleset>", "<ruleset name=\"Editola\" default_off=\"failed ruleset test\" f=\"Editola.xml\"><securecookie host=\"^\\.editola\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Editorialmanager.com\" f=\"Editorialmanager.com.xml\"><securecookie host=\"\\.editorialmanager\\.com\" name=\".*\"/><rule from=\"^http://(?:www\\.)?editorialmanager\\.com/\" to=\"https://www.editorialmanager.com/\"/></ruleset>", "<ruleset name=\"Edlund.dk\" f=\"Edlund.dk.xml\"><securecookie host=\"(www)?\\.?edlund\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edoceo.com (partial)\" f=\"Edoceo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"edrive hosting (partial)\" default_off=\"failed ruleset test\" f=\"Edrive-hosting.xml\"><securecookie host=\"^www\\.edrive-hosting\\.cz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EduPage\" f=\"EduPage.xml\"><exclusion pattern=\"^http://mobile\\.edupage\\.org/\"/><exclusion pattern=\"^http://help\\.edupage\\.org/\"/><securecookie host=\"^.+\\.edupage\\.org$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edublogs\" f=\"Edublogs.xml\"><securecookie host=\"^(?:.+\\.)?edublogs\\.org$\" name=\".+\"/><rule from=\"^http://files\\.campus\\.edublogs\\.org/\" to=\"https://s3.amazonaws.com/files.campus.edublogs.org/\"/><rule from=\"^http://([\\w-]+\\.)?edublogs\\.org/\" to=\"https://$1edublogs.org/\"/></ruleset>", "<ruleset name=\"EducaCursos\" f=\"EducaCursos.xml\"><securecookie host=\"^(?:w*\\.)?educacursos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"educate the world.com.au\" f=\"Educate_the_world.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Education Next\" default_off=\"mismatch, self-signed\" f=\"Education-Next.xml\"><securecookie host=\"^educationnext\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?educationnext\\.org/wp-content/\" to=\"https://educationnext.hks.harvard.edu/wp-content/\"/><rule from=\"^http://(?:www\\.)?educationnext\\.org/\" to=\"https://educationnext.org/\"/><rule from=\"^http://educationnext\\.hks\\.harvard\\.edu/\" to=\"https://educationnext.hks.harvard.edu/\"/></ruleset>", "<ruleset name=\"Educause.edu\" f=\"Educause.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduid.cz\" f=\"Eduid.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.cz\" f=\"Eduroam.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.no\" f=\"Eduroam.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.org\" f=\"Eduroam.org.xml\"><rule from=\"^http://(?:www\\.)?eduroam\\.org/\" to=\"https://www.eduroam.org/\"/></ruleset>", "<ruleset name=\"eduroam ES\" f=\"Eduroam_ES.xml\"><rule from=\"^http://www\\.eduroam\\.es/\" to=\"https://www.eduroam.es/\"/></ruleset>", "<ruleset name=\"Edvina.net\" f=\"Edvina.net.xml\"><rule from=\"^http://www\\.edvina\\.net/\" to=\"https://edvina.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edward Snowden.com\" f=\"Edward_Snowden.com.xml\"><rule from=\"^http://edwardsnowden\\.com/\" to=\"https://www.edwardsnowden.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edward Tufte\" f=\"Edward_Tufte.xml\"><securecookie host=\"^www\\.edwardtufte\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?edwardtufte\\.com/\" to=\"https://www.edwardtufte.com/\"/></ruleset>", "<ruleset name=\"Eerdmans.com\" f=\"Eerdmans.com.xml\"><securecookie host=\"^\\.eerdmans\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eerdmans\\.com/\" to=\"https://www.eerdmans.com/\"/></ruleset>", "<ruleset name=\"ef.gy\" default_off=\"failed ruleset test\" f=\"Ef.gy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"efax.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Efax.co.uk.xml\"><rule from=\"^http://(?:www\\.)?efax\\.co\\.uk/(?=(?:affiliate|fax-machine-vs-efax|internet_fax_number)(?:$|[?/])|efaxieu-cms-public/)\" to=\"https://www.efax.co.uk/\"/></ruleset>", "<ruleset name=\"Effective Measure.com\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"Effective-Measure-mismatches.xml\"><securecookie host=\"^www\\.effectivemeasure\\.com$\" name=\".+\"/><rule from=\"^http://effectivemeasure\\.com/\" to=\"https://www.effectivemeasure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effective Measure.net\" f=\"Effective-Measure.xml\"><securecookie host=\"^\\.effectivemeasure\\.net$\" name=\".*\"/><rule from=\"^http://us\\.effectivemeasure\\.net/\" to=\"https://us3.effectivemeasure.net/\"/><rule from=\"^http://za\\.effectivemeasure\\.net/\" to=\"https://za1.effectivemeasure.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effi.org\" f=\"Effi.org.xml\"><rule from=\"^http://(?:www\\.)?effi\\.org/\" to=\"https://effi.org/\"/></ruleset>", "<ruleset name=\"EfficiOS\" f=\"EfficiOS.xml\"><securecookie host=\"^\\.efficios\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effiliation (partial)\" f=\"Effiliation.xml\"><securecookie host=\"^track\\.effiliation\\.com$\" name=\".+\"/><rule from=\"^http://track\\.effiliation\\.com/\" to=\"https://track.effiliation.com/\"/></ruleset>", "<ruleset name=\"Egedalkommune.dk\" f=\"Egedalkommune.dk.xml\"><securecookie host=\"^\\.?www\\.egedalkommune\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egg\" f=\"Egg.xml\"><rule from=\"^http://(?:new\\.|www\\.)?egg\\.com/\" to=\"https://new.egg.com/\"/><rule from=\"^http://(your|phonehome)\\.egg\\.com/\" to=\"https://$1.egg.com/\"/></ruleset>", "<ruleset name=\"Egnyte\" f=\"Egnyte.xml\"><securecookie host=\"^(?:.*\\.)?egnyte\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?egnyte\\.com/\" to=\"https://$1egnyte.com/\"/></ruleset>", "<ruleset name=\"EgoPay.com\" default_off=\"connection dropped\" f=\"EgoPay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egypt Independent\" default_off=\"expired, mismatch, self-signed\" f=\"Egypt-Independent.xml\"><rule from=\"^http://(?:www\\.)?egyptindependent\\.com/\" to=\"https://www.egyptindependent.com/\"/></ruleset>", "<ruleset name=\"ehospice\" f=\"Ehospice.xml\"><securecookie host=\"^www\\.ehospice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ehosting.ca (partial)\" f=\"Ehosting.ca.xml\"><securecookie host=\"^\\.?ssl\\.mecca\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:ehosting|mecca)\\.ca/\" to=\"https://ssl.mecca.ca/\"/><rule from=\"^http://cpanel\\.ehosting\\.ca/+(?:$|\\?.*)\" to=\"https://ssl.mecca.ca/service/\"/><rule from=\"^http://renewals\\.ehosting\\.ca/+(?:$|\\?.*)\" to=\"https://ssl.mecca.ca/apps/payment.php\"/><rule from=\"^http://webmail\\.ehosting\\.ca/+(?:$|\\?.*)\" to=\"https://ssl.mecca.ca/horde/imp/\"/></ruleset>", "<ruleset name=\"ehosts.net\" f=\"Ehosts.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ehrensenf\" default_off=\"Cert warning\" f=\"Ehrensenf.xml\"><securecookie host=\"^(?:.*\\.)?ehrensenf\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ehrensenf\\.de/\" to=\"https://www.ehrensenf.de/\"/></ruleset>", "<ruleset name=\"eid.lt (partial)\" default_off=\"failed ruleset test\" f=\"Eid.lt.xml\"><rule from=\"^http://stork\\.eid\\.lt/\" to=\"https://stork.eid.lt/\"/></ruleset>", "<ruleset name=\"Eide-ITC.no\" f=\"Eide-ITC.no.xml\"><rule from=\"^http://(?:www\\.)?eide-itc\\.no/\" to=\"https://eide-itc.no/\"/></ruleset>", "<ruleset name=\"Eiffel.com\" f=\"Eiffel.com.xml\"><securecookie host=\"^\\.(?:docs|room)\\.eiffel\\.com$\" name=\".+\"/><rule from=\"^http://activate\\.eiffel\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://www2.eiffel.com/activate/$1\"/><rule from=\"^http://groups\\.eiffel\\.com/+\" to=\"https://groups.yahoo.com/group/eiffel_software/\"/><rule from=\"^http://support\\.eiffel\\.com/.*\" to=\"https://www2.eiffel.com/support\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eimg.com.tw\" f=\"Eimg.com.tw.xml\"><rule from=\"^http://i\\.eimg\\.com\\.tw/\" to=\"https://i.eimg.com.tw/\"/><rule from=\"^http://s\\.eimg\\.com\\.tw/\" to=\"https://i.kfs.io/\"/><rule from=\"^http://www\\.eimg\\.com\\.tw/+\" to=\"https://www.kkbox.com/about/\"/></ruleset>", "<ruleset name=\"Eindbazen.net\" f=\"Eindbazen.net.xml\"><rule from=\"^http://www\\.eindbazen\\.net/\" to=\"https://eindbazen.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eindhoven.nl\" f=\"Eindhoven.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eindhoven\\.nl/\" to=\"https://www.eindhoven.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Einstein@Home\" f=\"EinsteinAtHome.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eis.de\" f=\"Eis.de.xml\"><rule from=\"^http://(images|www)\\.eis\\.de/\" to=\"https://$1.eis.de/\"/></ruleset>", "<ruleset name=\"ejabberd.im\" f=\"Ejabberd.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekiga (partial)\" f=\"Ekiga.xml\"><rule from=\"^http://(?:www\\.)?ekiga\\.net/\" to=\"https://ekiga.net/\"/><rule from=\"^http://(?:www\\.)?ekiga\\.org/sites/all/themes/ekiga_net/\" to=\"https://ekiga.net/\"/><securecookie host=\"^(?:www\\.)?ekiga\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"EkmPowershop.com\" f=\"EkmPowershop.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure.co.uk\" f=\"Ekm_secure.co.uk.xml\"><securecookie host=\"^(?:www\\.)?ekmsecure\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure.com\" f=\"Ekm_secure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure6.co.uk\" f=\"Ekm_secure6.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure 22.co.uk\" f=\"Ekm_secure_22.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"El-Tramo.be\" f=\"El-Tramo.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"El pueblo\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"El_pueblo.xml\"><securecookie host=\"^(?:w*\\.)?elpueblo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elaf Net TV\" f=\"Elaf_Net_TV.xml\"><securecookie host=\"^\\.(?:www\\.)?elafnettv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elance.com\" f=\"Elance.com.xml\"><securecookie host=\"^\\.elance\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elanex.biz\" f=\"Elanex.biz.xml\"><securecookie host=\"^www\\.elanex\\.biz$\" name=\".+\"/><securecookie host=\"^elanex\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elastic.co\" f=\"Elastic.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elasticTrace.com\" f=\"ElasticTrace.com.xml\"><securecookie host=\"^\\.elastictrace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elbadil.com\" f=\"Elbadil.com.xml\"><securecookie host=\"^\\.elbadil\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elcomsoft (partial)\" f=\"Elcomsoft.xml\"><rule from=\"^http://secure\\.elcomsoft\\.com/\" to=\"https://secure.elcomsoft.com/\"/></ruleset>", "<ruleset name=\"Elder Scrolls Online.com\" default_off=\"failed ruleset test\" f=\"Elder_Scrolls_Online.com.xml\"><securecookie host=\"^www\\.elderscrollsonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electoral Commission.org.uk (partial)\" f=\"Electoral_Commission.org.uk.xml\"><securecookie host=\"^wtsdc\\.electoralcommission\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(pefonline|wtsdc)\\.electoralcommission\\.org\\.uk/\" to=\"https://$1.electoralcommission.org.uk/\"/></ruleset>", "<ruleset name=\"Electric Embers (partial)\" f=\"Electric_Embers.xml\"><securecookie host=\"^mail\\.electricembers\\.net$\" name=\".+\"/><rule from=\"^http://(internal|mail)\\.electricembers\\.net/\" to=\"https://$1.electricembers.net/\"/></ruleset>", "<ruleset name=\"Electric Studio (partial)\" default_off=\"failed ruleset test\" f=\"Electric_Studio.xml\"><rule from=\"^http://clients\\.electricstudio\\.co\\.uk/\" to=\"https://clients.electricstudio.co.uk/\"/></ruleset>", "<ruleset name=\"Electronic Arts Intermix (partial)\" f=\"Electronic-Arts-Intermix.xml\"><rule from=\"^http://(www\\.)?eai\\.org/(cartAdd\\.htm|css/|images/|user_files/)\" to=\"https://$1eai.org/$2\"/></ruleset>", "<ruleset name=\"Electronic Arts (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Electronic-Arts.xml\"><securecookie host=\"^\\.ea\\.com$\" name=\"^(?:CEM-session|s_.*)$\"/><securecookie host=\"^(?:help|jobs|profile|ssl\\.resources)\\.ea\\.com$\" name=\".*\"/><securecookie host=\"^(?:forum|\\w\\w|www)?\\.thesims\\.com$\" name=\".*\"/><rule from=\"^http://ea\\.com/\" to=\"https://www.ea.com/\"/><rule from=\"^http://(?:(activate|ll\\.assets|fonts|help|images|socialsignup|tos|www)|(?:www\\.)?(jobs))\\.ea\\.com/\" to=\"https://$1$2.ea.com/\"/><rule from=\"^http://(?:ssl\\.)?resources\\.ea\\.com/\" to=\"https://ssl.resources.ea.com/\"/><rule from=\"^http://support\\.ea\\.com/\" to=\"https://help.ea.com/\"/><rule from=\"^http://om\\.eamobile\\.com/\" to=\"https://eamwebproduction.122.2o7.net/\"/><rule from=\"^http://synergy-stage\\.eamobile\\.com/\" to=\"https://synergy-stage.eamobile.com/\"/><rule from=\"^http://(?:llnw\\.|www\\.)?thesims3\\.com/\" to=\"https://www.thesims3.com/\"/><rule from=\"^http://(forum|\\w\\w)\\.thesims3\\.com/\" to=\"https://$1.thesims3.com/\"/><rule from=\"^http://(\\w\\w\\.)?store\\.thesims3\\.com/(community|content/|css/|images/)\" to=\"https://$1store.thesims3.com/$2\"/><rule from=\"^http://llnw\\.store\\.thesims3\\.com/\" to=\"https://llnw.store.thesims3.com/\"/></ruleset>", "<ruleset name=\"Electronic Frontiers Australia\" f=\"Electronic-Frontiers-Australia.xml\"><securecookie host=\"^(?:members|\\.?www)?\\.efa\\.org\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ElectronicInsanity.com (partial)\" f=\"ElectronicInsanity.com.xml\"><rule from=\"^http://electronicinsanity\\.com/\" to=\"https://www.electronicinsanity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electronic Intifada.net\" f=\"Electronic_Intifada.net.xml\"><securecookie host=\"^\\.electronicintifada\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electrum.org\" f=\"Electrum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elegant Themes.com\" f=\"Elegant_Themes.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"element 5.com (partial)\" f=\"Element_5.xml\"><exclusion pattern=\"^http://www\\.element5\\.com/+(?!$|\\?)\"/><rule from=\"^http://www\\.element5\\.com/+\" to=\"https://www.mycommerce.com/share-it\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elementary.io\" f=\"Elementary.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ElementaryOS.org\" f=\"Elementary_OS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ElevenPaths\" f=\"ElevenPaths.xml\"><rule from=\"^http://(?:www\\.)?elevenpaths\\.com/\" to=\"https://www.elevenpaths.com/\"/></ruleset>", "<ruleset name=\"Elfa.se\" f=\"Elfa.se.xml\"><securecookie host=\"^(?:\\.|www1?\\.)?elfa\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elgiganten (partial)\" f=\"Elgiganten.xml\"><exclusion pattern=\"http://www.elgiganten.(dk|se)/(product|INTERSHOP)/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eli Lilly (partial)\" f=\"Eli-Lilly.xml\"><securecookie host=\"^lillypad\\.lilly\\.c(?:a|om)$\" name=\".*\"/><rule from=\"^http://lillypad\\.lilly\\.c(a|om)/\" to=\"https://lillypad.lilly.c$1/\"/></ruleset>", "<ruleset name=\"Elie Bursztein\" default_off=\"failed ruleset test\" f=\"Elie_Bursztein.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elijah Laboratories\" default_off=\"expired, self-signed\" f=\"Elijah-Laboratories.xml\"><rule from=\"^http://(?:www\\.)?elilabs\\.com/\" to=\"https://elilabs.com/\"/></ruleset>", "<ruleset name=\"EliteKeyboards.com\" f=\"EliteKeyboards.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elite Casting Network.com (partial)\" f=\"Elite_Casting_Network.com.xml\"><rule from=\"^http://(www\\.)?elitecastingnetwork\\.com/(?=favicon\\.ico|img/|min/)\" to=\"https://$1elitecastingnetwork.com/\"/><rule from=\"^http://cdn\\.elitecastingnetwork\\.com/\" to=\"https://ecn-cdncloud.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Elitepartner.de\" f=\"Elitepartner.de.xml\"><rule from=\"^http://((?:www\\.)?partnervermittlung|www)\\.elitepartner\\.de/\" to=\"https://$1.elitepartner.de/\"/><rule from=\"^http://static\\.ep\\.elitem\\.net/\" to=\"https://static.ep.elitem.net/\"/></ruleset>", "<ruleset name=\"Elizabeth Smart Foundation (partial)\" f=\"Elizabeth_Smart_Foundation.xml\"><rule from=\"^http://(?:www\\.)?elizabethsmartfoundation\\.org/wp-content/\" to=\"https://esf.websocially.com/wp-content/\"/></ruleset>", "<ruleset name=\"Elle.com (partial)\" f=\"Elle.com.xml\"><rule from=\"^http://dating\\.elle\\.com/(?=assets/|bridge\\.js|favicon\\.ico|login/*(?:$|\\?)|whitelabel/elle/header\\.html)\" to=\"https://dating.elle.com/\"/><rule from=\"^http://service\\.elle\\.com/.*\" to=\"https://w1.buysub.com/servlet/CSGateway?cds_mag_code=ELM\"/></ruleset>", "<ruleset name=\"Elliptic Technologies\" f=\"Elliptic-Technologies.xml\"><securecookie host=\"^(?:www\\.)?elliptictech\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ello.co\" f=\"Ello.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elmbridge.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Elmbridge.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elmbridge.gov.uk (partial)\" f=\"Elmbridge.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://elmbridge\\.gov\\.uk/\" to=\"https://www.elmbridge.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elo Concursos.com.br\" f=\"Elo_Concursos.com.br.xml\"><securecookie host=\"^eloconcursos\\.com\\.br$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eloconcursos\\.com\\.br/\" to=\"https://eloconcursos.com.br/\"/></ruleset>", "<ruleset name=\"Elo Global e-services\" default_off=\"failed ruleset test\" f=\"Elo_Global_e-services.xml\"><securecookie host=\"^(?:www\\.)?elotouchexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eloqua clients\" default_off=\"mismatch\" f=\"Eloqua-clients.xml\"><rule from=\"^http://connect\\.astaro\\.com/\" to=\"https://connect.astaro.com/\"/><rule from=\"^http://go\\.brightcove\\.com/\" to=\"https://go.brightcove.com/\"/><rule from=\"^http://info\\.vmware\\.com/\" to=\"https://info.vmware.com/\"/><rule from=\"^http://understanding\\.webtrends\\.com/\" to=\"https://understanding.webtrends.com/\"/></ruleset>", "<ruleset name=\"Eloqua (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"Eloqua-mismatches.xml\"><securecookie host=\".*\\.eloqua\\.com$\" name=\".+\"/><securecookie host=\"(?:.*\\.)?useitandsee\\.com$\" name=\".+\"/><rule from=\"^http://www\\.useitandsee\\.com/\" to=\"https://useitandsee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eloqua.com (partial)\" f=\"Eloqua.xml\"><exclusion pattern=\"^http://now\\.eloqua\\.com/(?!EloquaImages/)\"/><securecookie host=\"^\\.eloqua\\.com$\" name=\"^EL(?:OQUA|QSTATUS)$\"/><securecookie host=\"^(?:cloudconnectors|\\.login|\\.secure)\\.eloqua\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.eloqua\\.com/\" to=\"https://blogs.oracle.com/marketingcloud//\"/><rule from=\"^http://images\\.marketing\\.eloqua\\.com/$\" to=\"https://login.eloqua.com/\"/><rule from=\"^http://images\\.marketing\\.eloqua\\.com/\" to=\"https://s33.t.eloqua.com/\"/><rule from=\"^http://now\\.eloqua\\.com/\" to=\"https://secure.eloqua.com/\"/><rule from=\"^http://topliners\\.eloqua\\.com/.*\" to=\"https://community.oracle.com/community/topliners/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eloquent JavaScript.net\" default_off=\"failed ruleset test\" f=\"Eloquent_JavaScript.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elq.to\" f=\"Elq.to.xml\"><rule from=\"^http://elq\\.to/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"Els-CDN.com (partial)\" f=\"Els-CDN.com.xml\"><securecookie host=\"^origin-ars\\.els-cdn\\.com$\" name=\".*\"/><rule from=\"^http://(ars|cdn)\\.els-cdn\\.com/\" to=\"https://origin-$1.els-cdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier (problematic)\" default_off=\"expired, mismatched\" f=\"Elsevier-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier.ca\" f=\"Elsevier.ca.xml\"><securecookie host=\"^(?:www\\.)?elsevier\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier.com (partial)\" f=\"Elsevier.xml\"><exclusion pattern=\"^http://dev\\.elsevier\\.com/+(?!css/|img/)\"/><exclusion pattern=\"^http://www\\.developers\\.elsevier\\.com/action/\"/><securecookie host=\".*\\.elsevier\\.com$\" name=\".+\"/><rule from=\"^http://developers\\.elsevier\\.com/\" to=\"https://www.developers.elsevier.com/\"/><rule from=\"^http://support\\.elsevier\\.com/\" to=\"https://help.elsevier.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier Health.com.au\" f=\"Elsevier_Health.com.au.xml\"><securecookie host=\"(?:.*\\.)?elsevierhealth\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?elsevierhealth\\.com\\.au/\" to=\"https://www.elsevierhealth.com.au/\"/></ruleset>", "<ruleset name=\"Elsevier Health.com (partial)\" f=\"Elsevier_Health.com.xml\"><securecookie host=\"(?:.*\\.)?elsevierhealth\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elster.de\" f=\"Elster.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eltartar War\" f=\"Eltartar_War.xml\"><securecookie host=\"^(?:.*\\.)?eltartar\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?eltartar\\.com/\" to=\"https://$1eltartar.com/\"/></ruleset>", "<ruleset name=\"EmacsWiki.org\" f=\"EmacsWiki.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://emacswiki\\.org/\" to=\"https://www.emacswiki.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"email-lists.org\" f=\"Email-lists.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emaileri.fi\" default_off=\"failed ruleset test\" f=\"Emaileri.fi.xml\"><rule from=\"^http://(?:www\\.)?emaileri\\.fi/\" to=\"https://www.emaileri.fi/\"/><rule from=\"^http://(?:www\\.)?emaileri\\.net/\" to=\"https://www.emaileri.fi/\"/><rule from=\"^http://(?:www\\.)?emaileri\\.com/\" to=\"https://www.emaileri.fi/\"/></ruleset>", "<ruleset name=\"emailsrvr.com\" f=\"Emailsrvr.com.xml\"><rule from=\"^http://(autodiscover\\.\\w+\\.)?emailsrvr\\.com/\" to=\"https://$1emailsrvr.com/\"/></ruleset>", "<ruleset name=\"Emailvision (partial)\" default_off=\"failed ruleset test\" f=\"Emailvision.xml\"><securecookie host=\"^\\.www\\.emailvision\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?emailvision\\.com/\" to=\"https://$1emailvision.com/\"/><rule from=\"^http://(?:www\\.)?emv3\\.com/\" to=\"https://emv3.emv3.com/\"/><rule from=\"^http://(ase|emv\\d|p\\dtre|tre)\\.emv3\\.com/\" to=\"https://$1.emv3.com/\"/></ruleset>", "<ruleset name=\"Emanuel Duss.ch\" f=\"Emanuel_Duss.ch.xml\"><rule from=\"^http://(?:www\\.)?emanuelduss\\.ch/\" to=\"https://emanuelduss.ch/\"/></ruleset>", "<ruleset name=\"Emap Awards\" f=\"Emap_Awards.xml\"><securecookie host=\"^(?:www\\.)?emapawards\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embed.ly (partial)\" f=\"Embed.ly.xml\"><exclusion pattern=\"^http://support\\.embed\\.ly/(?!favicon\\.ico|images/|support/)\"/><securecookie host=\"^ap[ip]\\.embed\\.ly$\" name=\".+\"/><rule from=\"^http://support\\.embed\\.ly/\" to=\"https://embedly.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embedded ARM.com (partial)\" f=\"Embedded_ARM.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embedded Analytics.com\" f=\"Embedded_Analytics.com.xml\"><securecookie host=\"^\\.embeddedanalytics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embedly.com\" default_off=\"breaks site\" f=\"Embedly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emcraft.com\" f=\"Emcraft.com.xml\"><securecookie host=\"^(?:order\\.|www\\.)?emcraft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"emediate.dk\" f=\"Emediate.dk.xml\"><securecookie host=\"^ad1\\.emediate\\.dk$\" name=\".+\"/><rule from=\"^http://(?:ad|cdn)1\\.emediate\\.dk/\" to=\"https://ad1.emediate.dk/\"/></ruleset>", "<ruleset name=\"Emediate.eu\" f=\"Emediate.eu.xml\"><securecookie host=\"^eas4\\.emediate\\.eu$\" name=\".+\"/><securecookie host=\"^eas8\\.emediate\\.eu$\" name=\".+\"/><rule from=\"^http://eas4\\.emediate\\.eu/\" to=\"https://eas4.emediate.eu/\"/><rule from=\"^http://eas8\\.emediate\\.eu/\" to=\"https://eas8.emediate.eu/\"/></ruleset>", "<ruleset name=\"emediate.se\" f=\"Emediate.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emerald\" default_off=\"failed ruleset test\" f=\"Emerald.xml\"><securecookie host=\"^(?:www\\.)?emeraldinsight\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emerging Threats.net (mismatched)\" default_off=\"mismatched\" f=\"Emerging_Threats.net-falsemixed.xml\"><rule from=\"^http://emergingthreats\\.net/\" to=\"https://www.emergingthreats.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emerging Threats.net (partial)\" f=\"Emerging_Threats.net.xml\"><securecookie host=\"^portal\\.emergingthreats\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emilstahl.dk\" f=\"Emilstahl.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emily.St (partial)\" f=\"Emily.St.xml\"><rule from=\"^http://(?:www\\.)?emily\\.st/\" to=\"https://emily.st/\"/></ruleset>", "<ruleset name=\"Emin Huseynov.com\" f=\"Emin_Huseynov.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EmoryHealthcare\" platform=\"mixedcontent\" f=\"EmoryHealthcare.xml\"><securecookie host=\"^www\\.emoryhealthcare\\.org$\" name=\".+\"/><rule from=\"^http://emoryhealthcare\\.org/\" to=\"https://www.emoryhealthcare.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emory University (partial)\" f=\"Emory_University.xml\"><rule from=\"^http://(?:www\\.)?emory\\.edu/\" to=\"https://www.emory.edu/\"/></ruleset>", "<ruleset name=\"EmpFlix.com (partial)\" f=\"EmpFlix.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empeopled.com\" f=\"Empeopled.com.xml\"><securecookie host=\"^\\.?empeopled\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empire State College\" f=\"EmpireStateCollege.xml\"><rule from=\"^http://(?:www\\.)?esc\\.edu/\" to=\"https://www.esc.edu/\"/></ruleset>", "<ruleset name=\"Employease (partial)\" f=\"Employease.xml\"><securecookie host=\"^(?:adp|home)\\.eease\\.com$\" name=\".+\"/><rule from=\"^http://(adp|home)\\.eease\\.com/\" to=\"https://$1.eease.com/\"/></ruleset>", "<ruleset name=\"Employeeexpress.gov\" f=\"Employeeexpress.gov.xml\"><securecookie host=\"^(?:www\\.)?employeeexpress\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?employeeexpress\\.gov/\" to=\"https://www.employeeexpress.gov/\"/></ruleset>", "<ruleset name=\"Emply.net\" f=\"Emply.net.xml\"><securecookie host=\"herlev\\.emply\\.net\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emporio Alberghiero.com\" f=\"Emporio_Alberghiero.com.xml\"><securecookie host=\"^\\.(?:www\\.)?emporioalberghiero\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empstatic.com\" f=\"Empstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"emptywheel.net\" f=\"Emptywheel.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ems-ph.org (partial)\" f=\"Ems-ph.org.xml\"><rule from=\"^http://(www\\.)?ems-ph\\.org/\" to=\"https://www.ems-ph.org/\"/></ruleset>", "<ruleset name=\"Emsisoft (partial)\" f=\"Emsisoft.com.xml\"><exclusion pattern=\"^http://(?:blog|changeblog)\\.emsisoft\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^(?:support|www)\\.emsisoft\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|cc|changeblog|support|www)\\.)?emsisoft\\.com/\" to=\"https://$1emsisoft.com/\"/></ruleset>", "<ruleset name=\"EnmuNewz Network\" default_off=\"mismatch\" f=\"EmuNewz-Network.xml\"><securecookie host=\"^.*\\.emunews\\.net$\" name=\".*\"/><securecookie host=\"^.*\\.p(?:csp-emu|spudb)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(arcadeflex|pcsp-emu|pspudb|yaupspe)\\.com/\" to=\"https://$1.com/\"/><rule from=\"^http://(?:www\\.)?emunewz\\.net/\" to=\"https://emunewz.net/\"/><rule from=\"^http://(?:www\\.)?jpcsp\\.org/\" to=\"https://jpcsp.org/\"/></ruleset>", "<ruleset name=\"Emulate.su (partial)\" default_off=\"self-signed\" f=\"Emulate.su.xml\"><rule from=\"^http://a320\\.emulate\\.su/\" to=\"https://a320.emulate.su/\"/></ruleset>", "<ruleset name=\"Emulex\" default_off=\"failed ruleset test\" f=\"Emulex.xml\"><securecookie host=\"^(?:.*\\.)?emulex\\.com$\" name=\".*\"/><rule from=\"^http://(www(?:qa)?\\.)?emulex\\.com/\" to=\"https://$1emulex.com/\"/></ruleset>", "<ruleset name=\"en25.com (partial)\" f=\"En25.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enahost.com (partial)\" f=\"Enahost.com.xml\"><exclusion pattern=\"^http://my\\.enahost\\.com/+(?!favicon\\.ico|(?:clientarea|pwreset|register)\\.php|templates/)\"/><securecookie host=\"^www\\.enahost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enalean.com\" f=\"Enalean.com.xml\"><securecookie host=\"^my\\.enalean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enaza.ru\" f=\"Enaza.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encipher.It\" f=\"Encipher.It.xml\"><securecookie host=\"^(?:www\\.)?encipher\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encoding.com\" f=\"Encoding.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encosia\" f=\"Encosia.xml\"><securecookie host=\"^(?:.+\\.)?encosia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt.Today\" default_off=\"shows another domain\" f=\"Encrypt.Today.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt.to\" f=\"Encrypt.to.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.encrypt\\.to/\" to=\"https://encrypt.to/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt All the Things.net\" f=\"Encrypt_All_the_Things.net.xml\"><securecookie host=\"^(?:www\\.)?encryptallthethings\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt Everything.ca\" default_off=\"failed ruleset test\" f=\"Encrypt_Everything.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encryptmas.org\" f=\"Encryptmas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encryptr.org\" f=\"Encryptr.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encyclopedia Astronautica\" default_off=\"expired, self-signed\" f=\"Encyclopedia-Astronautica.xml\"><rule from=\"^http://(?:www\\.)?astronautix\\.com/\" to=\"https://astronautix.com/\"/></ruleset>", "<ruleset name=\"Encyclopedia Dramatica.se\" f=\"Encyclopedia_Dramatica.xml\"><securecookie host=\"^\\.?encyclopediadramatica\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EndNote Web\" default_off=\"failed ruleset test\" f=\"EndNote_Web.xml\"><securecookie host=\"^www\\.myendnoteweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"End Point.com (partial)\" f=\"End_Point.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endace\" default_off=\"failed ruleset test\" f=\"Endace.xml\"><securecookie host=\"^.*\\.endace\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?endace\\.com/\" to=\"https://www.endace.com/\"/><rule from=\"^http://support\\.endace\\.com/\" to=\"https://support.endace.com/\"/></ruleset>", "<ruleset name=\"Endchan.xyz\" f=\"Endchan.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EnderUNIX (partial)\" default_off=\"expired, mismatch, self-signed\" f=\"EnderUNIX.xml\"><rule from=\"^http://(?:www\\.)?enderunix\\.org/\" to=\"https://enderunix.org/\"/></ruleset>", "<ruleset name=\"Endesa.pt\" f=\"Endesa.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endora.cz (partial)\" default_off=\"failed ruleset test\" f=\"Endora.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endrift.com\" f=\"Endrift.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enecto.com (partial)\" f=\"Enecto.com.xml\"><rule from=\"^http://(ac|partner|pf3|trk)\\.enecto\\.com/\" to=\"https://$1.enecto.com/\"/></ruleset>", "<ruleset name=\"Energetix (partial)\" f=\"Energetix.xml\"><securecookie host=\"^\\.goenergetix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EnergiWatch.dk\" f=\"EnergiWatch.xml\"><rule from=\"^http://www\\.energiwatch\\.dk/\" to=\"https://energiwatch.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energinet.net\" f=\"Energinet.dk.xml\"><securecookie host=\"^www\\.energinet\\.dk\" name=\".*\"/><rule from=\"^http://(?:www\\.)?energinet\\.dk/\" to=\"https://www.energinet.dk/\"/></ruleset>", "<ruleset name=\"Energy.gov (partial)\" f=\"Energy.gov.xml\"><securecookie host=\"^$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?afdc\\.energy\\.gov/(?=(?:\\w+/)?(?:asset|image)s/)\" to=\"https://www.afdc.energy.gov/\"/><rule from=\"^http://www(1|3)\\.eere\\.energy\\.gov/\" to=\"https://www$1.eere.energy.gov/\"/></ruleset>", "<ruleset name=\"Energy Made Easy\" f=\"EnergyMadeEasy.xml\"><rule from=\"^http://(?:www\\.)?energymadeeasy\\.gov\\.au/\" to=\"https://www.energymadeeasy.gov.au/\"/></ruleset>", "<ruleset name=\"EnergyStar\" f=\"EnergyStar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energy Live News.com\" default_off=\"expired, self-signed\" f=\"Energy_Live_News.com.xml\"><securecookie host=\"^\\.energylivenews\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?energylivenews\\.com/\" to=\"https://www.energylivenews.com/\"/></ruleset>", "<ruleset name=\"Enfield.gov.uk (partial)\" f=\"Enfield.gov.uk.xml\"><securecookie host=\"^(?!\\.enfield\\.gov\\.uk$).\" name=\".\"/><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EngageSciences (partial)\" default_off=\"failed ruleset test\" f=\"EngageSciences.xml\"><securecookie host=\"^(?:app\\.|www\\.)?engagesciences\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engage Media.org (partial)\" f=\"Engage_Media.org.xml\"><securecookie host=\"^www\\.engagemedia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?engagemedia\\.org/\" to=\"https://www.engagemedia.org/\"/></ruleset>", "<ruleset name=\"Engaged Doncaster.co.uk\" f=\"Engaged_Doncaster.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engaging Networks.net\" default_off=\"missing certificate chain\" f=\"Engaging_Networks.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engelschall.com\" default_off=\"self-signed\" f=\"Engelschall.com.xml\"><rule from=\"^http://(?:www\\.)?engelschall\\.com/\" to=\"https://engelschall.com/\"/></ruleset>", "<ruleset name=\"Engelsystem.de\" f=\"Engelsystem.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engine Yard.com\" f=\"Engine_Yard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engineering.com (partial)\" f=\"Engineering.com.xml\"><rule from=\"^http://(www\\.)?engineering\\.com/(?=[dD]esktop[mM]odules/|favicon\\.ico|js/|Login\\.aspx|Portals/|[rR]esources/|(?:Telerik\\.Web\\.UI\\.)?WebResource\\.axd)\" to=\"https://$1engineering.com/\"/><rule from=\"^http://file2\\.engineering\\.com/\" to=\"https://d2gm6q2bvqrwiz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Engineering for Change.org\" f=\"Engineering_for_Change.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English-Heritage.org.uk (partial)\" default_off=\"http redirect\" f=\"English-Heritage.org.uk.xml\"><securecookie host=\"^www\\.english-heritage\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English-Heritage shop.org.uk\" f=\"English-Heritage_shop.org.uk.xml\"><securecookie host=\"^\\.english-heritageshop\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English Defence League.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"English_Defence_League.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?englishdefenceleague\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?englishdefenceleague\\.net/(?!ezportal/icons/|favicon\\.ico|gallery/thumb_|Themes/)\" to=\"https://$1englishdefenceleague.net/\"/></ruleset>", "<ruleset name=\"English Defence League.net (partial)\" f=\"English_Defence_League.net.xml\"><rule from=\"^http://(www\\.)?englishdefenceleague\\.net/(?=ezportal/icons/|favicon\\.ico|gallery/thumb_|Themes/)\" to=\"https://$1englishdefenceleague.net/\"/></ruleset>", "<ruleset name=\"EnhanceIE.com\" default_off=\"mismatch\" f=\"EnhanceIE.xml\"><securecookie host=\"^enhanceie\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enhancedsteam.com\" f=\"Enhancedsteam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enigmabox.net\" f=\"Enigmabox.net.xml\"><securecookie host=\"^wiki\\.enigmabox\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enigmail.net\" f=\"Enigmail.net.xml\"><rule from=\"^http://(?:www\\.)?enigmail\\.net/\" to=\"https://www.enigmail.net/\"/></ruleset>", "<ruleset name=\"Eniro (partial)\" default_off=\"failed ruleset test\" f=\"Eniro.xml\"><securecookie host=\"^\\.adsrv\\.ads\\.eniro\\.com$\" name=\".+\"/><rule from=\"^http://adsrv\\.ads\\.eniro\\.com/\" to=\"https://adsrv.ads.eniro.com/\"/><rule from=\"^http://(www\\.)?eniro\\.se/(webb/)?$\" to=\"https://$1eniro.se/$2\"/><rule from=\"^http://(www\\.)?eniro\\.se/webmaster-content/partners/\" to=\"https://$1eniro.se/webmaster-content/partners/\"/><rule from=\"^http://static1\\.eniro\\.com/[\\d\\.]+/components/frontpage/\" to=\"https://www.eniro.se/components/frontpage/\"/><rule from=\"^http://static1\\.eniro\\.com/img/enirose/favicon\\.ico$\" to=\"https://www.eniro.com/favicon.ico\"/><rule from=\"^http://static2\\.eniro\\.com/\\d{4}\\.\\d\\d\\.\\d\\d/components/frontpage/css/components/frontpage/img/\" to=\"https://www.eniro.se/components/frontpage/img/\"/><rule from=\"^http://static2\\.eniro\\.com/\\d{4}\\.\\d\\d\\.\\d\\d/components/frontpage/css/\" to=\"https://www.eniro.se/components/frontpage/css/\"/></ruleset>", "<ruleset name=\"Enjin\" platform=\"mixedcontent\" f=\"Enjin.xml\"><securecookie host=\"^(?:.*\\.)?enjin\\.com$\" name=\".+\"/><rule from=\"^http://assets-cloud\\.enjin\\.com/\" to=\"https://d2umfjgc9kwn9b.cloudfront.net/\"/><rule from=\"^http://files\\.enjin\\.com/\" to=\"https://s3.amazonaws.com/files.enjin.com/\"/><rule from=\"^http://(www\\.)?([\\w-]+\\.)?enjin\\.com/\" to=\"https://$2enjin.com/\"/><rule from=\"^http://resources\\.guild-hosting\\.net/\" to=\"https://resources.enjin.com/\"/></ruleset>", "<ruleset name=\"Enjoy.com (partial)\" f=\"Enjoy.com.xml\"><securecookie host=\"^www\\.enjoy\\.com$\" name=\".+\"/><rule from=\"^http://enjoy\\.com/\" to=\"https://www.enjoy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enlightened Perl.org (partial)\" f=\"Enlightened_Perl.org.xml\"><rule from=\"^http://members\\.enlightenedperl\\.org/\" to=\"https://members.enlightenedperl.org/\"/></ruleset>", "<ruleset name=\"Enlightenment.org\" f=\"Enlightenment.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eNom.com (partial)\" f=\"Enom.xml\"><exclusion pattern=\"^http://www\\.enom\\.com/(?!login|signup/).*\\.aspx(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?enom\\.com/kb(?:$|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enpass.io\" f=\"Enpass.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enphase.com (partial)\" f=\"Enphase-Energy.xml\"><exclusion pattern=\"^http://info\\.enphase\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://info\\.enphase\\.com/+(?:\\?.*)?$\" to=\"https://enphase.com/\"/><rule from=\"^http://info\\.enphase\\.com/\" to=\"https://na-abb.marketo.com/\"/><rule from=\"^http://www\\.enphase\\.com/\" to=\"https://enphase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enphase Energy.com (partial)\" f=\"Enphase_Energy.com.xml\"><securecookie host=\"^enlighten\\.enphaseenergy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?enphaseenergy\\.com/\" to=\"https://enphase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ens-lyon.org\" platform=\"cacert\" f=\"Ens-lyon.org.xml\"><rule from=\"^http://((?:blog|cvs|git|svn|toccata|web|wiki|www)\\.)?ens-lyon\\.org/\" to=\"https://$1ens-lyon.org/\"/></ruleset>", "<ruleset name=\"Ensighten\" f=\"Ensighten.xml\"><securecookie host=\"^ui\\.ensighten\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ensighten\\.com/\" to=\"https://www.ensighten.com/\"/><rule from=\"^http://(nexus|ui)\\.ensighten\\.com/\" to=\"https://$1.ensighten.com/\"/></ruleset>", "<ruleset name=\"Ensignia mail.com (partial)\" f=\"Ensignia_mail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ensimag.fr (partial)\" f=\"Ensimag.fr.xml\"><rule from=\"^http://(ensiwiki|inside|intranet|relint|webmail)\\.ensimag\\.fr/\" to=\"https://$1.ensimag.fr/\"/></ruleset>", "<ruleset name=\"Entanet (mismatches)\" default_off=\"mismatch\" f=\"Entanet-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?entadsl\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?entadsl\\.com/\" to=\"https://entadsl.com/\"/><rule from=\"^http://(?:www\\.)?entagroup\\.com/(content|includes)?/\" to=\"https://www.entagroup.com/$1/\"/></ruleset>", "<ruleset name=\"Entanet (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Entanet.xml\"><securecookie host=\"^(?:.*\\.)?enta\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?voipuserportal\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://enta\\.net/\" to=\"https://www.enta.net/\"/><rule from=\"^http://(billing|synergi|www)\\.enta\\.net/\" to=\"https://$1.enta.net/\"/><rule from=\"^http://(www\\.)?voipuserportal\\.co\\.uk/\" to=\"https://$1voipuserportal.co.uk/\"/></ruleset>", "<ruleset name=\"Enterprise.com\" f=\"Enterprise.com.xml\"><rule from=\"^http://(?:www\\.)?enterprise\\.com/\" to=\"https://www.enterprise.com/\"/></ruleset>", "<ruleset name=\"Enterprise CIO Forum.com\" default_off=\"expired, mismatched, self-signed\" f=\"Enterprise_CIO_Forum.com.xml\"><securecookie host=\"^www\\.enterprisecioforum\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?enterprisecioforum\\.com/\" to=\"https://www.enterprisecioforum.com/\"/></ruleset>", "<ruleset name=\"Enterprisers Project.com\" f=\"Enterprisers_Project.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entertainment Consumer's Association (mismatches)\" default_off=\"mismatch\" f=\"Entertainment-Consumers-Association-mismatches.xml\"><rule from=\"^http://(?:www\\.)ecaforums\\.com/((?:fil|modul|sit)e|newsletter)s/\" to=\"https://www.ecaforums.com/$1s/\"/></ruleset>", "<ruleset name=\"Entertainment Consumer's Association (partial)\" platform=\"mixedcontent\" f=\"Entertainment-Consumers-Association.xml\"><securecookie host=\"^\\.theeca\\.com$\" name=\"__utm\\w$\"/><rule from=\"^http://(?:www\\.)theeca\\.com/(favicon\\.ico|files/|misc/|modules/|newsletters/|sites/)\" to=\"https://www.theeca.com/$1\"/></ruleset>", "<ruleset name=\"entertainment.ie\" default_off=\"failed ruleset test\" f=\"Entertainment.ie.xml\"><securecookie host=\"^entertainment\\.ie$\" name=\".+\"/><rule from=\"^http://(?:images\\.|www\\.)?entertainment\\.ie/\" to=\"https://entertainment.ie/\"/></ruleset>", "<ruleset name=\"Entertainment Weekly (partial)\" default_off=\"mismatched\" f=\"Entertainment_Weekly.xml\"><securecookie host=\"^\\.ew\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ew\\.com/\" to=\"https://www.ew.com/\"/><rule from=\"^http://(popwatch|tvrecaps)\\.ew\\.com/\" to=\"https://$1.ew.com/\"/></ruleset>", "<ruleset name=\"EntheoShop\" f=\"EntheoShop.xml\"><securecookie host=\"^shop\\.entheogene\\.de$\" name=\".*\"/><rule from=\"^http://shop\\.entheogene\\.de/\" to=\"https://shop.entheogene.de/\"/></ruleset>", "<ruleset name=\"Enthought.com (partial)\" f=\"Enthought.com.xml\"><securecookie host=\"^(?:support\\.|www2?\\.)?enthought\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EntroPay\" f=\"EntroPay.xml\"><securecookie host=\"^.*\\.entropay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?entropay\\.com/\" to=\"https://www.entropay.com/\"/><rule from=\"^http://(payment-solutions|secure2)\\.entropay\\.com/\" to=\"https://$1.entropay.com/\"/></ruleset>", "<ruleset name=\"Entropy Wave.com (partial)\" default_off=\"expired\" f=\"Entropy_Wave.xml\"><securecookie host=\"^(?:www\\.)?entropywave\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entroware.com\" f=\"Entroware.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?entroware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entrust.com (partial)\" f=\"Entrust.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entrust.net (partial)\" f=\"Entrust.xml\"><exclusion pattern=\"^http://www\\.entrust\\.net/(?!css/|customer_support/|ev/|favicon\\.ico|images/new/)\"/><securecookie host=\"^(?:buy|home|login|managed)\\.entrust\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envato-static.com (partial)\" f=\"Envato-static.com.xml\"><rule from=\"^http://\\d\\.envato-static\\.com/\" to=\"https://dmypbau5frl9g.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Envato.com (mismatched)\" default_off=\"mismatched\" f=\"Envato.com-problematic.xml\"><securecookie host=\"^www\\.envato\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?envato\\.com/\" to=\"https://www.envato.com/\"/></ruleset>", "<ruleset name=\"Envato.com (partial)\" f=\"Envato.com.xml\"><rule from=\"^http://\\d\\.s3\\.envato\\.com/\" to=\"https://d2mdw063ttlqtq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Envirotrend (mismatches)\" default_off=\"expired, mismatch\" f=\"Envirotrend-mismatches.xml\"><rule from=\"^http://(?:www\\.)?envirostyles\\.ca/\" to=\"https://envirostyles.ca/\"/><rule from=\"^http://(?:www\\.)?sakittome\\.com/\" to=\"https://sakittome.com/\"/><rule from=\"^http://svc079\\.wic859dp\\.server-web\\.com/\" to=\"https://svc079.wic859dp.server-web.com/\"/><securecookie host=\"^\\.envirostyles\\.ca$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?sakittome\\.com$\" name=\".*\"/><securecookie host=\"^svc079\\.wic859dp\\.server-web\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Envirotrend (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Envirotrend.xml\"><rule from=\"^http://(?:www\\.)?envirotrend\\.com\\.au/\" to=\"https://envirotrend.com.au/\"/><securecookie host=\"^(?:www.)?envirotrend\\.com\\.au\" name=\".*\"/></ruleset>", "<ruleset name=\"Envoy Direct.com\" f=\"Envoy_Direct.com.xml\"><securecookie host=\"^(?:www)?\\.envoydirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envoy Media Group.com (partial)\" f=\"Envoy_Media_Group.com.xml\"><securecookie host=\"^(?:www)?\\.envoymediagroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envoyer.io\" f=\"Envoyer.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eoPortal.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"EoPortal.org-problematic.xml\"><securecookie host=\"^wiki\\.services\\.eoportal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eoPortal.org (partial)\" f=\"EoPortal.xml\"><securecookie host=\"^wiki\\.services\\.eoportal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eole Water\" default_off=\"mismatch, self-signed\" f=\"Eole-Water.xml\"><securecookie host=\"^www\\.eolewater\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eolewater\\.com/\" to=\"https://www.eolewater.com/\"/></ruleset>", "<ruleset name=\"epartnershub.com (partial)\" f=\"Epartnershub.com.xml\"><rule from=\"^http://(\\w+)\\.epartnershub\\.com/(App_Themes/|Checkout/|CommonCss/|[lL]ogin\\.aspx)\" to=\"https://$1.epartnershub.com/$2\"/></ruleset>", "<ruleset name=\"Epaysol.com\" f=\"Epaysol.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epek (partial)\" default_off=\"expired\" f=\"Epek.xml\"><securecookie host=\"^signin\\.epek\\.com$\" name=\".*\"/><rule from=\"^http://signin\\.epek\\.com/\" to=\"https://signin.epek.com/\"/></ruleset>", "<ruleset name=\"Epic.com\" f=\"Epic-Systems.xml\"><securecookie host=\"^\\w+\\.epic\\.com$\" name=\".*\"/><rule from=\"^https?://epic\\.com/\" to=\"https://www.epic.com/\"/><rule from=\"^http://(access|careers|councils|eventregistration|sites|ugm|userweb|www)\\.epic\\.com/\" to=\"https://$1.epic.com/\"/></ruleset>", "<ruleset name=\"Epic Games.com (partial)\" f=\"Epic_Games.xml\"><exclusion pattern=\"^http://(?:www\\.)?epicgames\\.com/(?!about$|favicon\\.ico|files/|css/|games$|img/|js/|mediaplayer/|news-events$|support$|technology$)\"/><securecookie host=\"^\\.?forums\\.epicgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epilepsy Foundation of America\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Epilepsy-Foundation-America.xml\"><rule from=\"^http://(?:www\\.)?epilepsyfoundation\\.org/\" to=\"https://www.epilepsyfoundation.org/\"/></ruleset>", "<ruleset name=\"Epilepsy Ontario\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Epilepsy-Ontario.xml\"><rule from=\"^http://(?:www\\.)?epilepsyontario\\.org/\" to=\"https://www.epilepsyontario.org/\"/></ruleset>", "<ruleset name=\"Epix Media.co.uk\" f=\"Epix_Media.co.uk.xml\"><securecookie host=\"^\\.epixmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epls.gov\" default_off=\"failed ruleset test\" f=\"Epls.gov.xml\"><securecookie host=\"(?:^|\\.)epls\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)epls\\.gov/\" to=\"https://www.epls.gov/\"/></ruleset>", "<ruleset name=\"Epoch.com\" f=\"Epoch.com.xml\"><securecookie host=\"^(?:(?:billing|reports|www)\\.)?epoch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EpochStats.com\" f=\"EpochStats.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epoch Times (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Epoch_Times.xml\"><securecookie host=\"^ad\\.epochtimes\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.epochtimes\\.com/\" to=\"https://ad.epochtimes.com/\"/><rule from=\"^http://(?:www\\.)?theepochtimes\\.com/n2/(images|wp-content)/\" to=\"https://www.theepochtimes.com/n2/$1/\"/></ruleset>", "<ruleset name=\"Epoxate.com\" f=\"Epoxate.com.xml\"><securecookie host=\"^epoxate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eprncdn.com\" f=\"Eprncdn.com.xml\"><rule from=\"^http://static1?\\.ca\\.eprncdn\\.com/\" to=\"https://static.ca.eprncdn.com/\"/></ruleset>", "<ruleset name=\"Epson.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Epson.xml\"><exclusion pattern=\"^http://(?:www\\.)?epson\\.com/cgi-bin/Store/consumer/(?!cross_sell\\.jsp)\"/><exclusion pattern=\"^http://(?:www\\.)?epson\\.com/cgi-bin/Store/jsp/Product/(?:Overview|Photos)\\.do\"/><exclusion pattern=\"^http://(?:www\\.)?epson\\.com/(?:[a-zA-Z][a-zA-Z\\d]+){1}$\"/><securecookie host=\"^(?:.*\\.)?epson\\.c(?:a|om)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?epson\\.c(a|om)/\" to=\"https://www.epson.c$1/\"/><rule from=\"^http://global\\.latin\\.epson\\.com/(data|frame|template)/\" to=\"https://global.latin.epson.com/$1/\"/><rule from=\"^http://(pos|was)\\.epson\\.com/\" to=\"https://$1.epson.com/\"/><rule from=\"^http://(?:www\\.)?epson\\.com\\.mx/\" to=\"https://global.latin.epson.com/mx\"/><rule from=\"^http://cform\\.epson\\.jp/\" to=\"https://cform.epson.jp/\"/><rule from=\"^http://shop\\.epson\\.jp/eshop/\" to=\"https://shop.epson.jp/eshop/\"/></ruleset>", "<ruleset name=\"Equality Trust.org.uk\" f=\"Equality_Trust.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EquifaxCanada\" default_off=\"Certificate mismatch\" f=\"EquifaxCanada.xml\"><rule from=\"^http://([^/:@]*)\\.econsumer\\.equifax\\.com/\" to=\"https://$1.econsumer.equifax.ca/\"/></ruleset>", "<ruleset name=\"Equinix.com (problematic)\" default_off=\"mismatched\" f=\"Equinix.com-problematic.xml\"><securecookie host=\"^www\\.equinix\\.com$\" name=\".+\"/><rule from=\"^http://www\\.equinix\\.com/(?!img/|local/(?!new/css/ui/jquery-ui\\.css)|ss/)\" to=\"https://www.equinix.com/\"/></ruleset>", "<ruleset name=\"Equinix.com (partial)\" default_off=\"failed ruleset test\" f=\"Equinix.com.xml\"><securecookie host=\"^\\.equinix\\.com$\" name=\"^_(?:mkto_trk|_utm\\w)$\"/><securecookie host=\"^(?:.+\\.)?equinix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Equip.org (partial)\" f=\"Equip.org.xml\"><rule from=\"^http://(www\\.)?equip\\.org/wp-(?=content/|includes/)\" to=\"https://$1equip.org/wp-\"/></ruleset>", "<ruleset name=\"Equity\" f=\"Equity.xml\"><securecookie host=\"^www\\.equity\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?equity\\.org\\.uk/\" to=\"https://www.equity.org.uk/\"/></ruleset>", "<ruleset name=\"EquityZen.com\" f=\"EquityZen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ercpe.de\" f=\"Ercpe.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"erdgeist.org\" f=\"Erdgeist.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eregon.ch\" f=\"Ergon.ch.xml\"><rule from=\"^http://((?:secure|techzone|www)\\.)?ergon\\.ch/\" to=\"https://$1ergon.ch/\"/></ruleset>", "<ruleset name=\"Erhvervsstyrelsen.dk\" f=\"Erhvervsstyrelsen.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eric W.us\" f=\"Eric_W.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ericsson (partial)\" default_off=\"failed ruleset test\" f=\"Ericsson.xml\"><rule from=\"^http://webtrends-lb\\.ericsson\\.net/\" to=\"https://webtrends-lb.ericsson.net/\"/></ruleset>", "<ruleset name=\"erinn.org\" f=\"Erinn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erlang (partial)\" default_off=\"expired, mismatched\" f=\"Erlang.xml\"><rule from=\"^http://(?:www\\.)?erlang\\.org/(?=\\w+\\.css$|doc/|images/|upload/)\" to=\"https://www.erlang.org/\"/></ruleset>", "<ruleset name=\"Ernst & Young (partial)\" f=\"Ernst-and-Young.xml\"><securecookie host=\"^.*\\.ey\\.com$\" name=\".*\"/><rule from=\"^http://(?:webforms\\.|www\\.)?ey\\.com/\" to=\"https://webforms.ey.com/\"/><rule from=\"^http://(clientportal|eyonline)\\.ey\\.com/\" to=\"https://$1.ey.com/\"/></ruleset>", "<ruleset name=\"ero-advertising.com (partial)\" f=\"Ero-advertising.com.xml\"><rule from=\"^http://(banners|data|userpanel)\\.ero-advertising\\.com/\" to=\"https://$1.ero-advertising.com/\"/></ruleset>", "<ruleset name=\"Eroakirkosta.fi\" f=\"Eroakirkosta.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erooups.com\" default_off=\"shows default page\" f=\"Erooups.xml\"><securecookie host=\"^erooups\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eroshare.com\" f=\"Eroshare.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erowid\" f=\"Erowid.xml\"><securecookie host=\"^\\.www\\.erowid\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?erowid\\.(?:com|org)/\" to=\"https://www.erowid.org/\"/></ruleset>", "<ruleset name=\"es.gy (expired)\" default_off=\"expired\" f=\"Es.gy-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"es.gy (partial)\" f=\"Es.gy.xml\"><securecookie host=\"^bbs\\.es\\.gy$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Escrow.com\" f=\"Escrow.com.xml\"><securecookie host=\"^\\.escrow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Escrow Live.net\" f=\"Escrow_Live.net.xml\"><securecookie host=\"^www\\.escrowlive\\.net$\" name=\".+\"/><rule from=\"^http://escrowlive\\.net/[^?]*\" to=\"https://www.nccgroup.com/services/software-escrow-services.aspx\"/><rule from=\"^http://www\\.escrowlive\\.net/\" to=\"https://www.escrowlive.net/\"/></ruleset>", "<ruleset name=\"Esdominios.com\" f=\"Esdominios.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Esellerate.net (partial)\" f=\"Esellerate.net.xml\"><securecookie host=\"^(?:.*\\.)?esellerate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESET.com (partial)\" f=\"Eset.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.shop\\.eset\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Esolangs.org\" f=\"Esolangs.org.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(?:www\\.)?esolangs\\.org$\" name=\".\"/></ruleset>", "<ruleset name=\"espacejeux\" f=\"Espacejeux.xml\"><rule from=\"^http://(?:www\\.)?espacejeux\\.com/\" to=\"https://www.espacejeux.com/\"/><securecookie host=\"^(?:.*\\.)?espacejeux\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Esper.net\" f=\"Esper.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Espionage app.com\" f=\"Espionage_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Esri (partial)\" f=\"Esri.xml\"><securecookie host=\"^(?:customers|ecasapi|esribc|events|redowa|training)\\.esri\\.com$\" name=\".+\"/><rule from=\"^http://(autodiscover|customers|ecasapi|esribc|esriwd|events|legacy|promos|redowa|rss|service|training|uel|webaccounts)\\.esri\\.com/\" to=\"https://$1.esri.com/\"/><rule from=\"^http://(?:www\\.)?myesri\\.com/\" to=\"https://myesri.com/\"/></ruleset>", "<ruleset name=\"essaysReasy.net\" default_off=\"mismatch\" f=\"EssaysReasy.xml\"><securecookie host=\"^essaysreasy\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?essaysreasy\\.(com|net)/\" to=\"https://essaysreasy.$1/\"/></ruleset>", "<ruleset name=\"Essex.gov.uk (partial)\" f=\"Essex.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Essex Police\" f=\"EssexPolice.xml\"><rule from=\"^http://(www\\.)?essex\\.police\\.uk/\" to=\"https://www.essex.police.uk/\"/></ruleset>", "<ruleset name=\"estara.com\" f=\"Estara.com.xml\"><securecookie host=\"^\\.estara\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Estonia Evoting.org\" default_off=\"failed ruleset test\" f=\"Estonia_Evoting.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Estonian Public Broadcasting (partial)\" f=\"Estonian_Public_Broadcasting.xml\"><securecookie host=\"^(?:.+\\.)?err\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etapestry.com\" f=\"Etapestry.com.xml\"><securecookie host=\"^app\\.etapestry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?etapestry\\.com/(?=$|\\?)\" to=\"https://www.blackbaud.com/fundraising-crm/etapestry-donor-management.aspx\"/><rule from=\"^http://(?:www\\.)?etapestry\\.com/.+\" to=\"https://www.blackbaud.com/page.aspx?pid=209\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.hu\" f=\"Etarget.hu.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.ro\" default_off=\"expired\" f=\"Etarget.ro.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.sk\" f=\"Etarget.sk.xml\"><securecookie host=\"^(?:www\\.)?etarget\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.cz\" default_off=\"missing certificate chain\" f=\"Etarget.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget net.com\" f=\"Etarget_net.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eth0.nl\" f=\"Eth0.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EthACK.org\" f=\"EthACK.org.xml\"><securecookie host=\"^(?:www\\.)?ethack\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EtherCalc.net\" f=\"EtherCalc.net.xml\"><securecookie host=\"^\\.ethercalc\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethereum.org (partial)\" f=\"Ethereum.org.xml\"><securecookie host=\"^(?:www)?\\.ethereum\\.org$\" name=\".+\"/><rule from=\"^http://((?:code|forum|www)\\.)?ethereum\\.org/\" to=\"https://$1ethereum.org/\"/><rule from=\"^http://wiki\\.ethereum\\.org/(?:$|\\?.*)\" to=\"https://github.com/ethereum/wiki/wiki\"/></ruleset>", "<ruleset name=\"Ethersheet.org\" default_off=\"expired\" f=\"Ethersheet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethical Data\" f=\"Ethical_Data.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethical Hacker.Net (false MCB)\" platform=\"mixedcontent\" f=\"Ethical_Hacker.Net.xml\"><securecookie host=\"^(?:\\.|www\\.)?ethicalhacker\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EthicsPoint.com\" f=\"EthicsPoint.com.xml\"><securecookie host=\"^secure\\.ethicspoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethn.io\" f=\"Ethn.io.xml\"><securecookie host=\"^\\.ethn\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ethn\\.io/\" to=\"https://ethn.io/\"/></ruleset>", "<ruleset name=\"Ethnologue\" f=\"Ethnologue.xml\"><securecookie host=\"^www\\.ethnologue\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ethnologue\\.com/\" to=\"https://www.ethnologue.com/\"/></ruleset>", "<ruleset name=\"Ethos-OS.org\" f=\"Ethos-OS.org.xml\"><rule from=\"^http://(?:www\\.)?ethos-os\\.org/\" to=\"https://www.ethos-os.org/\"/></ruleset>", "<ruleset name=\"Ethos Custom Brands\" f=\"Ethos_Custom_Brands.xml\"><securecookie host=\"^(?:www)?\\.ethoscustombrands\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etipos.sk\" f=\"Etipos.sk.xml\"><rule from=\"^http://(?:www\\.)?etipos\\.sk/\" to=\"https://www.etipos.sk/\"/></ruleset>", "<ruleset name=\"etouches\" f=\"Etouches.xml\"><securecookie host=\"^(?:www\\.)?e(?:iseverywhere|touches)\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etracker (partial)\" f=\"Etracker.xml\"><exclusion pattern=\"^http://editor\\.etracker\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://etracker\\.de/\" to=\"https://www.etracker.de/\"/><rule from=\"^http://(?:www\\.)?sedotracker\\.com/\" to=\"https://www.etracker.de/\"/><rule from=\"^http://visitormotion\\.com/\" to=\"https://www.visitormotion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etrade.com\" default_off=\"failed ruleset test\" f=\"Etrade.com.xml\"><rule from=\"^http://((?:about|career|global|us|www)\\.)?etrade\\.com/\" to=\"https://$1etrade.com/\"/><rule from=\"^http://cdn\\.etrade\\.net/\" to=\"https://cdn.etrade.net/\"/></ruleset>", "<ruleset name=\"Etravelway.com\" default_off=\"failed ruleset test\" f=\"Etravelway.com.xml\"><rule from=\"^http://(?:www\\.)?etravelway\\.com/\" to=\"https://www.etravelway.com/\"/></ruleset>", "<ruleset name=\"Etre Shop.com (partial)\" platform=\"mixedcontent\" f=\"Etre_Shop.com.xml\"><securecookie host=\"^www\\.etreshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etre Touchy.com\" default_off=\"expired\" f=\"Etre_Touchy.com.xml\"><exclusion pattern=\"^http://www\\.etrytouchy\\.com/+(?!favicon\\.ico|images/|styles/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etsy (partial)\" f=\"Etsy.xml\"><exclusion pattern=\"^http://(?:de\\.|fr\\.|www\\.)?etsy\\.com/(?:\\w\\w/)?(?:apps|browse|error\\.php|forums(?:_user_threads\\.php)?|listing/\\d+|people|reopen_account\\.php|teams|treasury)(?:$|\\?|/)\"/><rule from=\"^http://((?:blog|de|fr|ny-image\\d|system|www)\\.)?etsy\\.com/\" to=\"https://$1etsy.com/\"/><rule from=\"^http://(img\\d|site|www)\\.etsystatic\\.com/\" to=\"https://$1.etsystatic.com/\"/></ruleset>", "<ruleset name=\"Ettus.com (partial)\" f=\"Ettus.com.xml\"><rule from=\"^http://(www\\.)?ettus\\.com/(?=(?:account|cart|login|product/quick-order)(?:$|[?/])|assets/|content/|favicon\\.ico|images/)\" to=\"https://$1ettus.com/\"/></ruleset>", "<ruleset name=\"EuP Network\" default_off=\"mismatch\" f=\"EuP_Network.xml\"><securecookie host=\"^www\\.eup-network\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eup-network\\.de/\" to=\"https://www.eup-network.de/\"/></ruleset>", "<ruleset name=\"Eucalyptus.com\" f=\"Eucalyptus.com.xml\"><rule from=\"^http://(www\\.)?eucalyptus\\.com/\" to=\"https://$1eucalyptus.com/\"/><rule from=\"^http://support\\.eucalyptus\\.com/\" to=\"https://support.eucalyptus.com/\"/></ruleset>", "<ruleset name=\"Eurex Repo.com (partial)\" f=\"Eurex_Repo.com.xml\"><exclusion pattern=\"^http://www\\.eurexrepo\\.com/+(?!blob/|image/|resources/)\"/><rule from=\"^http://(?:www\\.)?eurexrepo\\.com/\" to=\"https://www.eurexrepo.com/\"/><rule from=\"^http://member\\.eurexrepo\\.com/\" to=\"https://member.eurexrepo.com/\"/></ruleset>", "<ruleset name=\"Eurexchange.com (partial)\" f=\"Eurexchange.com.xml\"><exclusion pattern=\"^http://www\\.eurexchange\\.com/+(?!blob/|image/|(?:exchange-de/ressourcen/circulars|exchange-de/ressourcen/regelwerke|exchange-en/contacts)(?:$|[?/])|resources/)\"/><rule from=\"^http://(?:www\\.)?eurexchange\\.com/\" to=\"https://www.eurexchange.com/\"/><rule from=\"^http://member\\.eurexchange\\.com/\" to=\"https://member.eurexchange.com/\"/></ruleset>", "<ruleset name=\"Euro-IX.net\" f=\"Euro-IX.xml\"><securecookie host=\"^(?:www\\.)?euro-ix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroAds.se (partial)\" f=\"EuroAds.se.xml\"><rule from=\"^http://banner\\.euroads\\.se/\" to=\"https://banner.euroads.se/\"/></ruleset>", "<ruleset name=\"EuroBSDcon.org (false MCB)\" platform=\"mixedcontent\" f=\"EuroBSDcon.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroBSDcon.org (partial)\" f=\"EuroBSDcon.org.xml\"><securecookie host=\"^2015\\.eurobsdcon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroDNS.com (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"EuroDNS.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroDNS.com (partial)\" f=\"EuroDNS.com.xml\"><securecookie host=\"^affiliate\\.eurodns\\.com$\" name=\"^CAKEPHP$\"/><securecookie host=\"^(?:affiliate|www)\\.eurodns\\.com$\" name=\".+\"/><rule from=\"^http://cdn3\\.eurodns\\.com/\" to=\"https://static.eurodns.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroFlorist.no (partial)\" f=\"EuroFlorist.no.xml\"><exclusion pattern=\"^http://(?:bedrift\\.|www\\.)?euroflorist\\.no/(?!Css/|Domains/|favicon\\.ico|Images/|(?:En/)?Pages/CaptchaImage|Products/|(?:Script|Web)Resource\\.axd|Scripts/)\"/><securecookie host=\"^\\.(?:bedrift\\.)?euroflorist\\.no\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?euroflorist\\.no/\" to=\"https://www.euroflorist.no/\"/><rule from=\"^http://bedrift\\.euroflorist\\.no/\" to=\"https://bedrift.euroflorist.no/\"/></ruleset>", "<ruleset name=\"EuroPriSe\" platform=\"mixedcontent\" f=\"EuroPriSe.xml\"><rule from=\"^http://(?:www\\.)?european-privacy-seal\\.eu/\" to=\"https://www.european-privacy-seal.eu/\"/></ruleset>", "<ruleset name=\"EuroPython.eu\" f=\"EuroPython.xml\"><securecookie host=\".+\\.europython\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroSmartz\" default_off=\"expired\" f=\"EuroSmartz.xml\"><rule from=\"^http://(?:(?:mobile\\.|www\\.)?eurosmartz|u15404278\\.onlinehome-server)\\.com/\" to=\"https://u15404278.onlinehome-server.com/\"/></ruleset>", "<ruleset name=\"Eurodiet (partial)\" f=\"Eurodiet.xml\"><rule from=\"^http://(?:www\\.)?eurodiet\\.co\\.uk/_design/\" to=\"https://www.eurodiet.co.uk/_design/\"/></ruleset>", "<ruleset name=\"Euroforum (problematic)\" default_off=\"mismatched\" f=\"Euroforum-problematic.xml\"><rule from=\"^http://(?:www\\.)?euroforum\\.de/\" to=\"https://www.euroforum.de/\"/></ruleset>", "<ruleset name=\"Euroforum (partial)\" f=\"Euroforum.xml\"><rule from=\"^http://(www\\.)?euroforum\\.com/\" to=\"https://$1euroforum.com/\"/><rule from=\"^http://static2?\\.euroforum\\.de/\" to=\"https://d30az3luf8nwkb.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Eurofurence\" f=\"Eurofurence.xml\"><securecookie host=\"^forum\\.eurofurence\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.eurofurence\\.org/\" to=\"https://forum.eurofurence.org/\"/></ruleset>", "<ruleset name=\"Eurogamer (expired)\" default_off=\"expired\" f=\"Eurogamer-problematic.xml\"><securecookie host=\"^ads\\.eurogamer\\.net$\" name=\".+\"/><rule from=\"^http://ads\\.eurogamer\\.net/\" to=\"https://ads.eurogamer.net/\"/></ruleset>", "<ruleset name=\"Eurogamer (partial)\" f=\"Eurogamer.xml\"><rule from=\"^http://images\\.eurogamer\\.net/\" to=\"https://images.eurogamer.net/\"/><rule from=\"^http://images\\.vg247\\.com/\" to=\"https://d2f23iedlijwim.cloudfront.net/\"/></ruleset>", "<ruleset name=\"eurogap.cz\" default_off=\"expired\" f=\"Eurogap.cz.xml\"><securecookie host=\"^dealers\\.eurogap\\.cz$\" name=\".+\"/><rule from=\"^http://dealers\\.eurogap\\.cz/\" to=\"https://dealers.eurogap.cz/\"/></ruleset>", "<ruleset name=\"Euroland.com\" f=\"Euroland.com.xml\"><securecookie host=\"^(?:tools\\.|www\\.)?euroland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europa-Apotheek.com\" f=\"Europa-Apotheek.com.xml\"><securecookie host=\"^www\\.europa-apotheek\\.com$\" name=\".+\"/><rule from=\"^http://europa-apotheek\\.com/\" to=\"https://www.europa-apotheek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europa.eu (false MCB)\" platform=\"mixedcontent\" f=\"Europa.eu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europa.eu (partial)\" f=\"Europa.eu.xml\"><exclusion pattern=\"http://www\\.consilium\\.europa\\.eu/+(?!content/|favicon\\.ico|images/|uedocs/|uploadedImages/)\"/><exclusion pattern=\"^http://cordis\\.europa\\.eu/+(?!account/|common/arc/|css/|favicon\\.ico|guidance/(?:cs|icon)s/|icons/|js/|scienceweek/+(?!$|\\?)|wel/template-)\"/><exclusion pattern=\"^http://ec\\.europa\\.eu/+(?!(?:commission|eures|eusurvey|jrc|research)(?:$|[?/])|enterprise/images/|growth/(?:heroes/template|images|stylesheets)/|wel/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?:bookshop|www\\.ecb|eiopa|oami|publications)\\.europa\\.eu$\" name=\".\"/><securecookie host=\"^ec\\.europa\\.eu$\" name=\"^JSESSIONIDEUSURVEY$\"/><rule from=\"^http://www\\.ecb\\.eu/\" to=\"https://www.ecb.europa.eu/\"/><rule from=\"^http://(consilium|easa)\\.europa\\.eu/\" to=\"https://www.$1.europa.eu/\"/><rule from=\"^http://www\\.tmview\\.europa\\.eu/.*\" to=\"https://www.tmdn.org/tmview/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe Minatures\" default_off=\"expired, self-signed\" f=\"Europe_Miniatures.xml\"><rule from=\"^http://(?:www\\.)?europe-miniatures\\.com/\" to=\"https://europe-miniatures.com/\"/></ruleset>", "<ruleset name=\"European Bioinformatics Institute\" default_off=\"failed ruleset test\" f=\"European-Bioinformatics-Institute.xml\"><rule from=\"^http://www\\.ebi\\.co\\.uk/\" to=\"https://www.ebi.co.uk/\"/></ruleset>", "<ruleset name=\"European Nuclear Society\" platform=\"mixedcontent\" f=\"European-Nuclear-Society.xml\"><rule from=\"^http://(?:www\\.)?euronuclear\\.org/\" to=\"https://www.euronuclear.org/\"/></ruleset>", "<ruleset name=\"European Nuclear Young Generation Forum\" default_off=\"mismatch\" f=\"European-Nuclear-Young-Generation-Forum.xml\"><securecookie host=\"^www\\.enygf\\.eu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?enygf\\.eu/\" to=\"https://www.enygf.eu/\"/></ruleset>", "<ruleset name=\"European Southern Observatory (partial)\" default_off=\"failed ruleset test\" f=\"European-Southern-Observatory.xml\"><exclusion pattern=\"^http://www\\.eso\\.org/public/(?:austria|belgium-(?:de|fr|nl)|brazil|chile|czechrepublic|denmark|finland|france|germany|italy|netherlands|portugal|spain|sweden)/\"/><exclusion pattern=\"^http://www\\.eso\\.org/public/news(?:$|\\?|/)\"/><rule from=\"^http://(?:www\\.)?eso\\.org/\" to=\"https://www.eso.org/\"/></ruleset>", "<ruleset name=\"EuropeanCensorship.eu (partial)\" default_off=\"failed ruleset test\" f=\"EuropeanCensorshop.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuropeanSSL\" f=\"EuropeanSSL.xml\"><securecookie host=\"^secure\\.europeanssl\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:secure\\.)?europeanssl\\.eu/\" to=\"https://secure.europeanssl.eu/\"/></ruleset>", "<ruleset name=\"European Energy Exchange (partial)\" f=\"European_Energy_Exchange.xml\"><securecookie host=\"^\\.eex\\.com$\" name=\"^sakura_session$\"/><rule from=\"^http://(?:www\\.)?eex\\.com/\" to=\"https://www.eex.com/\"/><rule from=\"^http://cdn\\.eex\\.com/\" to=\"https://cdn.eex.com/\"/></ruleset>", "<ruleset name=\"ESA.int (partial)\" f=\"European_Space_Agency.xml\"><exclusion pattern=\"^http://www\\.esa\\.int/(?!extension/|var/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://esa\\.int/\" to=\"https://www.esa.int/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eurovision.de\" f=\"Eurovision.de.xml\"><securecookie host=\"^(www\\.)?eurovision\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESC\" f=\"Eurovision.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eveger\" f=\"EvEGer.xml\"><rule from=\"^http://(?:www\\.)?eveger\\.de/\" to=\"https://www.eveger.de/\"/></ruleset>", "<ruleset name=\"evanced.info\" f=\"Evanced.info.xml\"><securecookie host=\"^(?:ca\\.)?evanced\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evaske.com\" f=\"Evaske.com.xml\"><securecookie host=\"^(?:clients|www)\\.evaske\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evbstatic.com\" f=\"Evbstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EvbUC.com\" f=\"Evbuc.com.xml\"><securecookie host=\"^s?\\.evbuc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"evenmere.org (partial)\" default_off=\"failed ruleset test\" f=\"Evenmere.org.xml\"><rule from=\"^http://blog\\.evenmere\\.org/\" to=\"https://blog.evenmere.org/\"/></ruleset>", "<ruleset name=\"EventOverload\" default_off=\"failed ruleset test\" f=\"EventOverload.xml\"><securecookie host=\"^\\.?eventoverload\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Event Booking Online.com\" f=\"Event_Booking_Online.com.xml\"><rule from=\"^http://eventbookingonline\\.com/\" to=\"https://eventbookingonline.com/\"/></ruleset>", "<ruleset name=\"Eventbrite.co.uk\" f=\"Eventbrite.co.uk.xml\"><exclusion pattern=\"^http://help\\.eventbrite\\.co\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventbrite.com\" f=\"Eventbrite.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventim (partial)\" f=\"Eventim.xml\"><exclusion pattern=\"^http://(?:www\\.)?eventim\\.bg/(?!bg/moyat_profil/|bg/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.hr/(?!hr/my_account/|hr/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.hu/(?!hu/felhasznaloi_profilom/|hu/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.ro/(?!ro/contul_meu/|ro/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.si/(?!si/moj_racun/|si/sign-in/)\"/><securecookie host=\"^.*\\.eventim\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eventim\\.(bg|cz|co\\.il|co\\.uk|de|hr|hu|nl|pl|ro|se|si)/\" to=\"https://www.eventim.$1/\"/><rule from=\"^http://(ru\\.)?content\\.eventim\\.com/\" to=\"https://$1content.eventim.com/\"/><rule from=\"^http://secure\\.eventim\\.(co\\.il|co\\.uk|cz|de|nl|pl|se)/\" to=\"https://secure.eventim.$1/\"/></ruleset>", "<ruleset name=\"Eventpoint.com (partial)\" f=\"Eventpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EverMap.com\" f=\"EverMap.com.xml\"><securecookie host=\"^(?:www\\.)?evermap\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?evermap\\.com/\" to=\"https://evermap.com/\"/></ruleset>", "<ruleset name=\"Everest Tech.net\" f=\"Everest_Technology.xml\"><securecookie host=\"^\\.everesttech\\.net$\" name=\".+\"/><rule from=\"^http://pixel(\\d*)\\.everesttech\\.net/\" to=\"https://pixel$1.everesttech.net/\"/></ruleset>", "<ruleset name=\"Evergage.com (partial)\" f=\"Evergage.com.xml\"><securecookie host=\"^\\.?login\\.evergage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"evermeet.cx\" f=\"Evermeet.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (problematic)\" default_off=\"mismatched\" f=\"Evernote-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (partial)\" f=\"Evernote.xml\"><securecookie host=\"^(?:.*\\.)?evernote\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everplans.com\" f=\"Everplans.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Every Angle Media\" default_off=\"mismatch\" f=\"Every_Angle_Media.xml\"><securecookie host=\"^(?:www\\.)?everyanglemedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everyday Health (partial)\" default_off=\"failed ruleset test\" f=\"Everyday_Health.xml\"><securecookie host=\"^www\\.everydayhealth\\.com$\" name=\".+\"/><rule from=\"^http://images\\.(agora|waterfront)media\\.com/\" to=\"https://images.$1media.com/\"/><rule from=\"^http://(content\\.|www\\.)?everydayhealth\\.com/\" to=\"https://$1everydayhealth.com/\"/></ruleset>", "<ruleset name=\"Everyday Hero\" f=\"Everyday_Hero.xml\"><securecookie host=\"^\\.(?:passport\\.)?everydayhero\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?everydayhero\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everyone is Gay.com\" default_off=\"mismatched\" f=\"Everyone_is_Gay.com.xml\"><rule from=\"^http://(?:www\\.)?everyoneisgay\\.com/\" to=\"https://www.everyoneisgay.com/\"/></ruleset>", "<ruleset name=\"everything4bet\" default_off=\"failed ruleset test\" f=\"Everything4bet.xml\"><securecookie host=\"^(?:w*\\.)?everything4bet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everything Everywhere (partial)\" f=\"Everything_Everywhere.xml\"><exclusion pattern=\"^http://business\\.ee\\.co\\.uk/(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^(?:(?:apply|broadband|community|explore|my|shop|storefinder)\\.)?ee\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://((?:apply|assets[1-5]|broadband|business|community|explore|my|shop|storefinder|www)\\.)?ee\\.co\\.uk/\" to=\"https://$1ee.co.uk/\"/><rule from=\"^http://assets6\\.ee\\.co\\.uk/\" to=\"https://s3-eu-west-1.amazonaws.com/assets6.ee.co.uk/\"/><rule from=\"^http://assets7\\.ee\\.co\\.uk/\" to=\"https://s3-eu-west-1.amazonaws.com/assets7.ee.co.uk/\"/><rule from=\"^http://assets10\\.ee\\.co\\.uk/\" to=\"https://c1400017.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets11\\.ee\\.co\\.uk/\" to=\"https://c1400022.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets12\\.ee\\.co\\.uk/\" to=\"https://c1400021.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets13\\.ee\\.co\\.uk/\" to=\"https://c1400023.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets14\\.ee\\.co\\.uk/\" to=\"https://c1400024.ssl.cf3.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Evidon Inc (partial)\" f=\"Evidon.xml\"><rule from=\"^http://cdn\\.(?:betteradvertising|evidon)\\.com/\" to=\"https://cdn.betrad.com/\"/><rule from=\"^http://blog\\.evidon\\.com/(?![^?])\" to=\"https://www.ghostery.com/intelligence/business-blog/\"/><rule from=\"^http://blog\\.evidon\\.com/\" to=\"https://www.ghostery.com/intelligence/business-blog\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evil 32.com\" f=\"Evil_32.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evisa-Vietnam.com\" default_off=\"expired\" f=\"Evisa-Vietnam.Com.xml\"><securecookie host=\"^(www\\.)?evisa-vietnam\\.com$\" name=\"^[\\da-f]{32}$\"/><securecookie host=\"^(?:www\\.)?evisa-vietnam\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evm.dk\" default_off=\"connection refused\" f=\"Evm.dk.xml\"><rule from=\"^http://(www\\.)?evm\\.dk/\" to=\"https://www.evm.dk/\"/></ruleset>", "<ruleset name=\"evo.com (partial)\" f=\"Evo.com.xml\"><rule from=\"^http://(?:www\\.)?evo\\.com/(?=favicon\\.ico|faviconcrown\\.ico|img/|img-?p/|promos/upload/|temp/)\" to=\"https://www.evo.com/\"/></ruleset>", "<ruleset name=\"EvoTronix (partial)\" default_off=\"failed ruleset test\" f=\"EvoTronix.xml\"><rule from=\"^http://(?:www\\.)?evotronix(?:\\.netdna-cdn)?\\.com/\" to=\"https://evotronix.com/\"/><rule from=\"^https://f(aq|orum)\\.evotronix\\.com/\" to=\"http://f$1.evotronix.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"EvolMed.com\" f=\"EvolMed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evoliatis (partial)\" default_off=\"mismatch, self-signed\" f=\"Evoliatis.xml\"><rule from=\"^http://ref\\.evoliatis\\.com/\" to=\"https://ref.evoliatis.com/\"/></ruleset>", "<ruleset name=\"Evoluted.net\" default_off=\"failed ruleset test\" f=\"Evoluted.net.xml\"><securecookie host=\"^(?:www\\.)?evoluted\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evolve Socially.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Evolve_Socially.org-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?evolvesocially\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?evolvesocially\\.org/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1evolvesocially.org/\"/></ruleset>", "<ruleset name=\"Evolve Socially.org (partial)\" default_off=\"failed ruleset test\" f=\"Evolve_Socially.org.xml\"><rule from=\"^http://(www\\.)?evolvesocially\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1evolvesocially.org/\"/></ruleset>", "<ruleset name=\"Evozi\" f=\"Evozi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eweka.nl\" f=\"Eweka.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ex10.biz\" f=\"Ex10.biz.xml\"><rule from=\"^http://ex10\\.biz/\" to=\"https://www.ex10.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ex Libris\" f=\"Ex_Libris.xml\"><securecookie host=\"^sfxhosted\\.exlibrisgroup\\.com$\" name=\".+\"/><rule from=\"^http://(?:\\w+sfx\\.|sfx)hosted\\.exlibrisgroup\\.com/\" to=\"https://sfxhosted.exlibrisgroup.com/\"/></ruleset>", "<ruleset name=\"Ex Ratione.com\" f=\"Ex_Ratione.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExaVault.com\" f=\"ExaVault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"exaccess.ru (partial)\" f=\"Exaccess.ru.xml\"><rule from=\"^http://(dynam|stat)ic\\.exaccess\\.ru/\" to=\"https://$1ic.exaccess.ru/\"/></ruleset>", "<ruleset name=\"Exacom.sk\" f=\"Exacom.sk.xml\"><rule from=\"^http://(?:www\\.)?exacom\\.sk/+\" to=\"https://www.exahost.com/\"/></ruleset>", "<ruleset name=\"ExactTarget (mismatches)\" default_off=\"mismatches\" f=\"ExactTarget-mismatches.xml\"><rule from=\"^http://(blog|partners)\\.exacttarget\\.com/\" to=\"https://$1.exacttarget.com/\"/></ruleset>", "<ruleset name=\"ExactTarget (partial)\" f=\"ExactTarget.xml\"><securecookie host=\"^(?:.*\\.)?exacttarget\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?exacttarget\\.com/\" to=\"https://www.exacttarget.com/\"/><rule from=\"^http://(3sixty|(?:auth|click|imh|mc)\\.boa|brandcdn|click|email|image|imh|mc|members|nexus|pages|partners|(?:auth|imh|mc)\\.poc|(?:auth|imh|mc)\\.s[12]\\.qa[123]|(?:auth|mc)\\.s1|(?:auth|mc)\\.s100|(?:auth|click|image|imh|mc|members)\\.s4|(?:mc|members)\\.s5|(?:auth|click|image|imh|mc|members)\\.s6|(?:auth|click|image|mc|members)\\.s7|(?:auth|click|image|mc|members)\\.s8|(?:auth|mc|members)\\.test)\\.exacttarget\\.com/\" to=\"https://$1.exacttarget.com/\"/><rule from=\"^http://images\\.s4\\.exacttarget\\.com/\" to=\"https://image.s4.exacttarget.com/\"/></ruleset>", "<ruleset name=\"Exactag (partial)\" f=\"Exactag.xml\"><exclusion pattern=\"^http://(?:www\\.)?exactag\\.com/(?!_extjs/|_jquery/|_js/|auth/)\"/><securecookie host=\"^(?:dr|m)\\.exactag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"examiner.com (partial)\" default_off=\"failed ruleset test\" f=\"Examiner.com.xml\"><exclusion pattern=\"^http://www\\.examiner\\.com/tag/\"/><exclusion pattern=\"^http://www\\.examiner\\.com/(?![^/]+/|About_Examiner|Advertise|arts-entertainment$|careers|favicon\\.ico|interests$|privacy_policy|rss$|[\\w-]*sitemap|Terms_of_Use|video-portal$|[^\\?]+\\?cid=.*)\"/><securecookie host=\"^photos\\.examiner\\.com$\" name=\".+\"/><rule from=\"^http://((?:beacon|cdn2-b|photos|staging|www)\\.)?examiner\\.com/\" to=\"https://$1examiner.com/\"/><rule from=\"^http://www\\.examiner\\.com/([^\\?]+)(?:\\?cid=.*)$\" to=\"https://www.examiner.com/$1\"/><rule from=\"^http://stats\\.examiner\\.com/\" to=\"https://examiner-com.122.2o7.net/\"/><rule from=\"^http://cdn\\.exm\\.nr/\" to=\"https://cdn2-b.examiner.com/\"/></ruleset>", "<ruleset name=\"examp1e.net\" f=\"Examp1e.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExcT.net\" f=\"ExcT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excaliburfilms (partial)\" f=\"Excaliburfilms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excelsior-USA.com (partial)\" f=\"Excelsior-USA.com.xml\"><exclusion pattern=\"^http://www\\.excelsior-usa\\.com/+(?!(?:blog|forum)(?:$|[?/])|images/|new\\.css)\"/><securecookie host=\"^excelsior-usa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExchangeWire.com\" f=\"ExchangeWire.com.xml\"><securecookie host=\"^www\\.exchangewire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excitations.com\" f=\"Excitations.com.xml\"><securecookie host=\"^(?:www)?\\.excitations\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exclusive X\" f=\"Exclusive_X.xml\"><securecookie host=\"^(?:.*\\.)?exclusivex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Executive Interviews.biz\" f=\"Executive_Interviews.biz.xml\"><rule from=\"^http://(?:www\\.)?executiveinterviews\\.biz/\" to=\"https://www.executiveinterviews.biz/\"/></ruleset>", "<ruleset name=\"Executive Interviews.com\" f=\"Executive_Interviews.com.xml\"><rule from=\"^http://www\\.executiveinterviews\\.com/\" to=\"https://www.executiveinterviews.com/\"/></ruleset>", "<ruleset name=\"Exede (partial)\" f=\"Exede.xml\"><securecookie host=\"^order\\.exede\\.com$\" name=\".+\"/><rule from=\"^http://order\\.exede\\.com/\" to=\"https://order.exede.com/\"/></ruleset>", "<ruleset name=\"Exeter Friendly Society\" f=\"Exeter_Friendly_Society.xml\"><securecookie host=\"^www\\.exeterfamily\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?exeterfamily\\.co\\.uk/\" to=\"https://www.exeterfamily.co.uk/\"/><rule from=\"^http://(?:www\\.)?exeterfriendly\\.co\\.uk/(?:\\?.*)?$\" to=\"https://www.exeterfamily.co.uk/\"/></ruleset>", "<ruleset name=\"Exhale\" f=\"Exhale.xml\"><rule from=\"^http://(?:www\\.)?4exhale\\.org/\" to=\"https://exhaleprovoice.org/\"/><rule from=\"^http://(www\\.)?exhaleprovoice\\.org/\" to=\"https://$1exhaleprovoice.org/\"/></ruleset>", "<ruleset name=\"Exherbo Linux (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Exherbo-Linux.xml\"><securecookie host=\"^bugs\\.exherbo\\.org$\" name=\".*\"/><rule from=\"^http://bugs\\.exherbo\\.org/\" to=\"https://bugs.exherbo.org/\"/></ruleset>", "<ruleset name=\"Exim.org (partial)\" f=\"Exim.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exinda (partial)\" f=\"Exinda.xml\"><securecookie host=\"^support\\.exinda\\.com$\" name=\".+\"/><rule from=\"^http://go\\.exinda\\.com/(cs|image|r)s/\" to=\"https://na-sjf.marketo.com/$1s/\"/><rule from=\"^http://support\\.exinda\\.com/\" to=\"https://support.exinda.com/\"/></ruleset>", "<ruleset name=\"Exitec (partial)\" f=\"Exitec.xml\"><rule from=\"^http://traq\\.exitec\\.com/\" to=\"https://traq.exitec.com/\"/></ruleset>", "<ruleset name=\"Exmasters.com (partial)\" default_off=\"failed ruleset test\" f=\"Exmasters.com.xml\"><securecookie host=\"^admin\\.exmasters\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.exmasters\\.com/\" to=\"https://admin.exmasters.com/\"/></ruleset>", "<ruleset name=\"Exmo.com\" f=\"Exmo.com.xml\"><securecookie host=\"^(?:www)?\\.exmo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exoclick.com (partial)\" f=\"Exoclick.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www-static\\.exoclick\\.com/\" to=\"https://www.exoclick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExootLab\" f=\"ExootLab.xml\"><securecookie host=\"^www\\.exootlab\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExoticAds.com (partial)\" f=\"ExoticAds.com.xml\"><securecookie host=\"^(?:adserver\\.)?exoticads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Expanded Support.com\" default_off=\"connection dropped\" f=\"Expanded_Support.com.xml\"><securecookie host=\"^expandedsupport\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?expandedsupport\\.com/\" to=\"https://expandedsupport.com/\"/></ruleset>", "<ruleset name=\"Expedia\" default_off=\"failed ruleset test\" f=\"Expedia.xml\"><securecookie host=\"^\\.expedia\\.co(?:om|\\.uk)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?expedia\\.com/(?=pub/|p/|.*Checkout)\" to=\"https://www.expedia.com/\"/><rule from=\"^http://media\\.expedia\\.com/\" to=\"https://media.expedia.com/\"/><rule from=\"^http://(www\\.)?expedia\\.co\\.uk/\" to=\"https://$1expedia.co.uk/\"/></ruleset>", "<ruleset name=\"Expedia affiliate.com\" f=\"Expedia_affiliate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExpeditedSSL.com\" f=\"ExpeditedSSL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Experian\" f=\"Experian.xml\"><securecookie host=\"^\\.?experian\\.experiandirect\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?experian\\.com/\" to=\"https://www.experian.com/\"/><rule from=\"^http://experian\\.experiandirect\\.com/\" to=\"https://experian.experiandirect.com/\"/></ruleset>", "<ruleset name=\"Experience Days\" f=\"Experience-Days.xml\"><securecookie host=\"^www\\.experiencedays\\.co\\.uk$\" name=\".+\"/><rule from=\"^(?:https://|http://(?:www\\.)?)experiencedays\\.co\\.uk/\" to=\"https://www.experiencedays.co.uk/\"/></ruleset>", "<ruleset name=\"Exploit.IN\" f=\"Exploit.IN.xml\"><securecookie host=\"^exploit\\.in$\" name=\".+\"/><rule from=\"^http://www\\.exploit\\.in/\" to=\"https://exploit.in/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExploitHub.com\" f=\"ExploitHub.com.xml\"><rule from=\"^http://(?:www\\.)?exploithub\\.com/\" to=\"https://exploithub.com/\"/></ruleset>", "<ruleset name=\"exploreB2B.com\" default_off=\"failed ruleset test\" f=\"ExploreB2B.com.xml\"><securecookie host=\"^\\.exploreb2b\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Explosm.net (partial)\" default_off=\"failed ruleset test\" f=\"Explosm.net.xml\"><securecookie host=\"^\\.explosm\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?explosm\\.net/\" to=\"https://$1explosm.net/\"/><rule from=\"^http://store\\.explosm\\.net/\" to=\"https://explosmstore.myshopify.com/\"/></ruleset>", "<ruleset name=\"Exponential.com (partial)\" f=\"Exponential.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExposeFacts.org\" f=\"ExposeFacts.org.xml\"><rule from=\"^http://(?:www\\.)?exposefacts\\.org/\" to=\"https://exposefacts.org/\"/></ruleset>", "<ruleset name=\"Exposing the Invisible.org\" f=\"Exposing_the_Invisible.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exposure.co (partial)\" f=\"Exposure.co.xml\"><exclusion pattern=\"^http://(?:changes|gettingstarted|support)\\.exposure\\.co/\"/><securecookie host=\"^\\.exposure\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Express-VPN.com\" f=\"Express-VPN.xml\"><rule from=\"^http://(?:www\\.)express-vpn\\.com/\" to=\"https://www.express-vpn.com/\"/></ruleset>", "<ruleset name=\"expresscoin.com (partial)\" f=\"Expresscoin.com.xml\"><securecookie host=\"^(?:\\.|accounts\\.|www\\.)?expresscoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extabit (partial)\" default_off=\"expired\" f=\"Extabit.xml\"><securecookie host=\"^\\.extabit\\.com$\" name=\"^(?:\\w|\\w{3}|\\w{6,}|einfo)$\"/><rule from=\"^http://(?:st\\.|webmaster\\.|www\\.)?extabit\\.com/\" to=\"https://extabit.com/\"/></ruleset>", "<ruleset name=\"extatic.org (partial)\" f=\"Extatic.org.xml\"><rule from=\"^http://(?:secure|www)\\.extatic\\.org/\" to=\"https://secure.extatic.org/\"/></ruleset>", "<ruleset name=\"Extensible Web Manifesto.org\" f=\"Extensible_Web_Manifesto.org.xml\"><rule from=\"^http://www\\.extensiblewebmanifesto\\.org/\" to=\"https://extensiblewebmanifesto.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extension Defender.com\" f=\"Extension_Defender.com.xml\"><securecookie host=\"^\\.extensiondefender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (mismatched)\" default_off=\"mimatched\" f=\"Extensis.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (partial)\" f=\"Extensis.com.xml\"><securecookie host=\"^(?:secure|www)?\\.extensis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extra Lunch Money\" f=\"Extra_Lunch_Money.xml\"><securecookie host=\"^\\.?extralunchmoney\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?extralunchmoney\\.com/\" to=\"https://$1extralunchmoney.com/\"/><rule from=\"^http://imageassets\\.extralunchmoney\\.com/\" to=\"https://1c2b4e3d78d00f8d775f-9944ec653f3e6c54804d49fe85e91fe7.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Extract Widget.com\" default_off=\"mismatched\" f=\"Extract_Widget.com.xml\"><securecookie host=\"^extractwidget\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?extractwidget\\.com/\" to=\"https://extractwidget.com/\"/></ruleset>", "<ruleset name=\"Extreme-Dm.com (partial)\" f=\"Extreme-Dm.com.xml\"><rule from=\"^http://nht-(2|3)\\.extreme-dm\\.com/\" to=\"https://nht-$1.extreme-dm.com/\"/><rule from=\"^http://t[01]\\.extreme-dm\\.com/\" to=\"https://t1.extreme-dm.com/\"/><rule from=\"^http://w1\\.extreme-dm\\.com/\" to=\"https://t1.extreme-dm.com/\"/></ruleset>", "<ruleset name=\"Extreme Light Infrastructure\" f=\"Extreme-Light-Infrastructure.xml\"><rule from=\"^http://(?:www\\.)?extreme-light-infrastructure\\.eu/\" to=\"https://ssl7.ovh.net/~extremel/\"/></ruleset>", "<ruleset name=\"Extreme Tracking\" f=\"Extreme-Tracking.xml\"><rule from=\"^http://(?:www\\.)?extremetracking\\.com/\" to=\"https://extremetracking.com/\"/></ruleset>", "<ruleset name=\"Extreme Digital\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Extreme_Digital.xml\"><securecookie host=\"^www\\.edigital\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.edigital\\.hu/\" to=\"https://www.edigital.hu/\"/></ruleset>", "<ruleset name=\"Extreme Tech.com (partial)\" default_off=\"broken\" f=\"Extreme_Tech.com.xml\"><securecookie host=\"^\\.extremetech\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><securecookie host=\"^www\\.extremetech\\.com$\" name=\"^_chartbeat2$\"/><rule from=\"^http://metrics\\.extremetech\\.com/\" to=\"https://extremetech-com.122.2o7.net/\"/></ruleset>", "<ruleset name=\"eyeReturn.com (partial)\" f=\"EyeReturn.com.xml\"><securecookie host=\"^reports\\.eyereturn\\.com$\" name=\".+\"/><rule from=\"^http://reports\\.eyereturn\\.com/\" to=\"https://reports.eyereturn.com/\"/></ruleset>", "<ruleset name=\"eyeReturn Marketing.com (partial)\" f=\"EyeReturn_Marketing.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?eyereturnmarketing\\.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http://(?:(?:www\\.)?eyereturnmarketing|emi\\.wpengine)\\.com/\" to=\"https://emi.wpengine.com/\"/></ruleset>", "<ruleset name=\"EyeTech\" default_off=\"failed ruleset test\" f=\"EyeTech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eyeviewads.com\" f=\"Eyeviewads.com.xml\"><securecookie host=\"^\\.eyeviewads\\.com$\" name=\".+\"/><rule from=\"^http://track\\.eyeviewads\\.com/\" to=\"https://track.eyeviewads.com/\"/></ruleset>", "<ruleset name=\"ezAccessory.com\" f=\"EzAccessory.com.xml\"><securecookie host=\"^(?:www\\.)?ezaccessory\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ezDing.com.tw (partial)\" default_off=\"failed ruleset test\" f=\"EzDing.com.tw.xml\"><securecookie host=\"^www\\.ezding\\.com\\.tw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ezaxess.com (partial)\" f=\"Ezaxess.com.xml\"><exclusion pattern=\"^http://files\\.ezaxess\\.com/.+\\.css\"/><rule from=\"^http://files\\.ezaxess\\.com/\" to=\"https://s3.amazonaws.com/files.ezaxess.com/\"/></ruleset>", "<ruleset name=\"EzineArticles (partial)\" f=\"EzineArticles.xml\"><exclusion pattern=\"^http://ezinearticles\\.com/(?:.+\\.html)?(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?ezinearticles\\.com/\" to=\"https://ezinearticles.com/\"/><rule from=\"^http://img\\.ezinearticles\\.com/\" to=\"https://img.ezinearticles.com/\"/></ruleset>", "<ruleset name=\"F-CDN.com\" f=\"F-CDN.com.xml\"><rule from=\"^http://(\\d)\\.f-cdn\\.com/\" to=\"https://$1.f-cdn.com/\"/></ruleset>", "<ruleset name=\"F-Droid.org\" f=\"F-Droid.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F-Secure.com (partial)\" f=\"F-Secure.xml\"><securecookie host=\"^(?:.*\\.)?f-secure\\.com$\" name=\".+\"/><rule from=\"^http://sp\\.f-secure\\.com/\" to=\"https://www.f-secure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F35.com\" f=\"F35.com.xml\"><securecookie host=\"^www\\.f35\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"f3images.com\" f=\"F3images.com.xml\"><securecookie host=\"^\\.f3images\\.com$\" name=\".+\"/><rule from=\"^http://(c\\d|www)\\.f3images\\.com/\" to=\"https://$1.f3images.com/\"/></ruleset>", "<ruleset name=\"f3mimages.com\" default_off=\"failed ruleset test\" f=\"F3mimages.com.xml\"><securecookie host=\"^\\.f3mimages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F5 (mismatches)\" default_off=\"mismatch\" f=\"F5-mismatches.xml\"><securecookie host=\"^www\\.f5\\.com\\.cn$\" name=\".*\"/><securecookie host=\"^www\\.f5networks\\.(?:com\\.br|co\\.uk|cz|[ds]e|es|fr|it|[np]l)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?f5\\.com\\.cn/\" to=\"https://www.f5.com.cn/\"/><rule from=\"^http://(?:www\\.)?f5networks\\.(com\\.br|co\\.uk|cz|[ds]e|es|fr|it|[np]l)/\" to=\"https://www.f5networks.$1/\"/></ruleset>", "<ruleset name=\"F5.com\" f=\"F5.xml\"><securecookie host=\".*\\.f5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F5 Networks.co.jp (partial)\" f=\"F5_Networks.co.jp.xml\"><rule from=\"^http://(www\\.)?f5networks\\.co\\.jp/(?=images/|shared/)\" to=\"https://$1f5networks.co.jp/\"/></ruleset>", "<ruleset name=\"F9 Distribution\" f=\"F9-Distribution.xml\"><rule from=\"^http://(?:www\\.)?f9\\.fi/\" to=\"https://www.f9.fi/\"/></ruleset>", "<ruleset name=\"FAAN College Network.org\" f=\"FAANCollegeNetwork.xml\"><rule from=\"^http://(?:www\\.)?faancollegenetwork\\.org/+(?:\\?.*)?$\" to=\"https://www.foodallergy.org/resources-for/colleges-universities/college-food-allergy-program\"/><rule from=\"^http://(?:www\\.)?faancollegenetwork\\.org/+\" to=\"https://www.foodallergy.org/resources-for/colleges-universities/college-food-allergy-program/\"/></ruleset>", "<ruleset name=\"FASFA.gov\" f=\"FAFSA.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAPMC\" default_off=\"self-signed\" f=\"FAPMC.xml\"><rule from=\"^http://(?:www\\.)?fapmc\\.ru/\" to=\"https://www.fapmc.ru/\"/></ruleset>", "<ruleset name=\"Freie Arbeiterinnen- und Arbeiter-Union (FAU) (CAcert)\" platform=\"cacert mixedcontent\" f=\"FAU.org.xml\"><rule from=\"^http://(?:www\\.)?fau\\.org/\" to=\"https://www.fau.org/\"/></ruleset>", "<ruleset name=\"FAZ (mismatches)\" default_off=\"Certificate mismatch\" f=\"FAZ-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAZ (partial)\" platform=\"mixedcontent\" f=\"FAZ.xml\"><securecookie host=\"^(?:www\\.)?fazjob\\.net$\" name=\".*\"/><rule from=\"^http://fazschule\\.net/\" to=\"https://www.fazschule.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FB18_Forum\" default_off=\"failed ruleset test\" f=\"FB18.de.xml\"><rule from=\"^http://(?:www\\.)?fb18\\.de/\" to=\"https://www.fb18.de/\"/></ruleset>", "<ruleset name=\"FC2.com (partial)\" f=\"FC2.com.xml\"><securecookie host=\"^\\.id\\.fc2\\.com$\" name=\"^FCSID$\"/><securecookie host=\"^(?:\\.?blog|id|secure\\.id|media3)\\.fc2\\.com$\" name=\".+\"/><rule from=\"^http://(blog|form1ssl|id|secure\\.id|media3|rentalserver1)\\.fc2\\.com/\" to=\"https://$1.fc2.com/\"/></ruleset>", "<ruleset name=\"FCA.org.uk (partial)\" f=\"FCA.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FCO.gov.uk (partial)\" f=\"FCO.gov.uk.xml\"><exclusion pattern=\"^http://(?:centralcontent\\.|www\\.)?fco\\.gov\\.uk/+(?!$|\\?)\"/><exclusion pattern=\"^http://ukinusa\\.fco\\.gov\\.uk/+(?!$|\\?|(?:houston|seattle)(?:$|[?/]))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:centralcontent\\.|www\\.)?fco\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/foreign-commonwealth-office\"/><rule from=\"^http://ukinusa\\.fco\\.gov\\.uk/houston.*\" to=\"https://www.gov.uk/government/world/organisations/british-consulate-general-houston\"/><rule from=\"^http://ukinusa\\.fco\\.gov\\.uk/seattle.*\" to=\"https://www.gov.uk/government/world/organisations/british-consulate-general-san-francisco\"/><rule from=\"^http://ukinusa\\.fco\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/world/usa\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FCPA Blog (partial)\" default_off=\"failed ruleset test\" f=\"FCPA-Blog.xml\"><rule from=\"^http://(?:www\\.)?fcpablog\\.com/\" to=\"https://fcpablog.squarespace.com/\"/></ruleset>", "<ruleset name=\"FCW.com (partial)\" f=\"FCW.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDA.gov (partial)\" f=\"FDA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDF.org.uk\" f=\"FDF.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FE-DDIS.dk\" f=\"FE-DDIS.dk.xml\"><rule from=\"^http://www\\.fe-ddis\\.dk/\" to=\"https://fe-ddis.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FEE.org\" f=\"FEE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFmpeg.org\" f=\"FFMPEG.xml\"><securecookie host=\"^trac\\.ffmpeg\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFSG.org\" f=\"FFSG.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFTLive.org\" f=\"FFTLive.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fftlive\\.org/\" to=\"https://www.fftlive.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FHI.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FHI.se.xml\"><rule from=\"^http://www\\.fhi\\.se/\" to=\"https://www.fhi.se/\"/><rule from=\"^http://fhi\\.se/\" to=\"https://fhi.se/\"/></ruleset>", "<ruleset name=\"FHNW.ch (partial)\" f=\"FHNW.ch.xml\"><rule from=\"^http://aai-logon\\.fhnw\\.ch/\" to=\"https://aai-logon.fhnw.ch/\"/></ruleset>", "<ruleset name=\"FHS.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FHS.se.xml\"><rule from=\"^http://fhs\\.se/\" to=\"https://www.fhs.se/\"/><rule from=\"^http://www\\.fhs\\.se/\" to=\"https://www.fhs.se/\"/></ruleset>", "<ruleset name=\"FIDH.org\" f=\"FIDH.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FIDO Alliance.org\" f=\"FIDO_Alliance.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FIFE\" default_off=\"mismatch, self-signed\" f=\"FIFE.xml\"><rule from=\"^http://(?:www\\.)?fifengine\\.(?:de|net)/\" to=\"https://fifengine.net/\"/></ruleset>", "<ruleset name=\"FIGUE.com (partial)\" f=\"FIGUE.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?figue\\.com/+(?:$|\\?)\"/><securecookie host=\"^\\.figue\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:cdn1\\.|www\\.)?figue\\.com/\" to=\"https://www.figue.com/\"/></ruleset>", "<ruleset name=\"FIME.me\" f=\"FIME.me.xml\"><securecookie host=\"^\\.fime\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FIRST.org (partial)\" f=\"FIRST.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FLOSSManuals.net\" f=\"FLOSSManuals.xml\"><securecookie host=\"^flossmanuals\\.net$\" name=\".+\"/><rule from=\"^http://(?:en\\.|(www\\.))?flossmanuals\\.net/\" to=\"https://$1flossmanuals.net/\"/></ruleset>", "<ruleset name=\"FLonline.eu\" f=\"FLonline.eu.xml\"><securecookie host=\"^winners\\.flonline\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FMV.se\" platform=\"mixedcontent\" f=\"FMV.se.xml\"><rule from=\"^http://www\\.fmv\\.se/\" to=\"https://www.fmv.se/\"/><rule from=\"^http://fmv\\.se/\" to=\"https://www.fmv.se/\"/></ruleset>", "<ruleset name=\"FMyLife.com\" f=\"FMyLife.com.xml\"><securecookie host=\"^(?:www)?\\.fmylife\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?fmylife\\.com/\" to=\"https://$1fmylife.com/\"/><rule from=\"^http://cdn\\d\\.fmylife\\.com/\" to=\"https://betacie.cachefly.net/\"/><rule from=\"^http://media\\.fmylife\\.com/\" to=\"https://cdn.betacie.com/\"/></ruleset>", "<ruleset name=\"FN Cash.com\" f=\"FN_Cash.com.xml\"><securecookie host=\"^\\.?www\\.fncash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FN Mag.co (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FN_Mag.co-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.fnmag\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FN Mag.co (partial)\" f=\"FN_Mag.co.xml\"><rule from=\"^http://cdn5?\\.fnmag\\.co/\" to=\"https://d3riqfjibuvp3c.cloudfront.net/\"/></ruleset>", "<ruleset name=\"FOM Networks.com\" default_off=\"mismatched\" f=\"FOM_Networks.com.xml\"><rule from=\"^http://(?:www\\.)?fomnetworks\\.com/\" to=\"https://fomnetworks.com/\"/></ruleset>", "<ruleset name=\"FORA.tv (partial)\" f=\"FORA.tv.xml\"><rule from=\"^http://(?:cdn\\.|(www\\.))?fora\\.tv/(fora/clientscript|purchase)/\" to=\"https://$1fora.tv/$2/\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?fora\\.tv/i/\" to=\"https://$1fora.tv/i/\"/></ruleset>", "<ruleset name=\"FORCE11.org\" f=\"FORCE11.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FOSS.IN (partial)\" default_off=\"expired\" f=\"FOSS.IN.xml\"><rule from=\"^http://(planet\\.)?(www\\.)?foss\\.in/\" to=\"https://$1foss.in/\"/></ruleset>", "<ruleset name=\"FOSSBazaar.org (partial)\" f=\"FOSSBazaar.org.xml\"><securecookie host=\"^(?:.*\\.)?fossbazaar\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?fossbazaar\\.org/\" to=\"https://$1fossbazaar.org/\"/></ruleset>", "<ruleset name=\"FOX Toolkit\" default_off=\"self-signed\" f=\"FOX-Toolkit.xml\"><rule from=\"^http://www\\.fox-toolkit\\.(?:net|org)/\" to=\"https://fox-toolkit.org/\"/><rule from=\"^http://(blog|www)\\.fox-toolkit\\.(?:net|org)/\" to=\"https://$1.fox-toolkit.org/\"/></ruleset>", "<ruleset name=\"FPJ Intel.com\" f=\"FPJ_Intel.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FP Complete.com\" f=\"FP_Complete.com.xml\"><securecookie host=\"^(?:www\\.)?fpcomplete\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FRA LLC.com\" f=\"FRA_LLC.com.xml\"><securecookie host=\"^(?:www\\.)?frallc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FREAK Attack.com\" f=\"FREAK_Attack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FREECULTR\" default_off=\"failed ruleset test\" f=\"FREECULTR.xml\"><securecookie host=\"^\\.freecultr\\.com$\" name=\".+\"/><rule from=\"^http://(?:static\\.|www\\.)?freecultr\\.com/\" to=\"https://www.freecultr.com/\"/></ruleset>", "<ruleset name=\"FRUCT.org (partial)\" f=\"FRUCT.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.yar\\.fruct\\.org/\" to=\"https://yar.fruct.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSA.go.jp (partial)\" f=\"FSA.go.jp.xml\"><exclusion pattern=\"^http://www\\.fsa\\.go\\.jp/(?!sesc/watch/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSA.gov.uk (partial)\" f=\"FSA.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSCS.org.uk (partial)\" f=\"FSCS.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSF (self-signed)\" default_off=\"self-signed\" f=\"FSF-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fsfla\\.org/\" to=\"https://www.fsfla.org/\"/></ruleset>", "<ruleset name=\"Free Software Foundation\" f=\"FSF.xml\"><exclusion pattern=\"^http://shop\\.fsf\\.org/(?!faq/$|jf$|static/|termsofsale/$)\"/><securecookie host=\"^(?:\\.crm|my|status)\\.fsf\\.org$\" name=\".*\"/><rule from=\"^http://donate\\.fsf\\.org/\" to=\"https://my.fsf.org/donate/\"/><rule from=\"^http://patron\\.fsf\\.org/\" to=\"https://www.fsf.org/patrons\"/><rule from=\"^http://bugs\\.gnewsense\\.org/.*\" to=\"https://savannah.nongnu.org/bugs/?group=gnewsense\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSFE.org (partial)\" f=\"FSFE.org.xml\"><securecookie host=\"^(?:fellowship|vote)\\.fsfe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSFEurope.org (partial)\" f=\"FSFEurope.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSU.edu (partial)\" f=\"FSU.edu.xml\"><securecookie host=\"^(?:(?:www\\.)?admissions|campus|cas|w(?:ebmail|ww)\\.cs|foundation|(?:www\\.)?my|one|(?:apps|cfprd)\\.oti|(?:www\\.)?registrar)\\.fsu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?admissions|campus|cas|(?:service|system|webmail|www1?)\\.cs|financialaid|foundation|(?:www\\.)?my|one|(?:cfprd|apps)\\.oti|(?:www\\.)?registrar|www)\\.)?fsu\\.edu/\" to=\"https://$1fsu.edu/\"/></ruleset>", "<ruleset name=\"FS CDN.org\" default_off=\"failed ruleset test\" f=\"FS_CDN.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FS Data.se (partial)\" f=\"FS_Data.xml\"><securecookie host=\"^(?:webmail\\.)?fsdata\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FS ISAC.com\" f=\"FS_ISAC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FTC Complaint Assistant.gov\" f=\"FTC_Complaint_Assistant.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FTL Game.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FTL_Game.com.xml\"><securecookie host=\"^\\.ftlgame\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FVEYdocs.org\" f=\"FVEYdocs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Prime.com\" f=\"FX_Prime.com.xml\"><rule from=\"^http://fxprime\\.com/\" to=\"https://www.fxprime.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Systems\" default_off=\"failed ruleset test\" f=\"FX_Systems.xml\"><securecookie host=\"^\\.fxsystems.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FYBSG.com\" f=\"FYBSG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FYB SE.se\" f=\"FYB_SE.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FabLab Tacoma\" default_off=\"failed ruleset test\" f=\"FabLab_Tacoma.xml\"><securecookie host=\"^(?:www\\.)?fablabtacoma\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fab Lab Truck.nl\" f=\"Fab_Lab_Truck.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fabian Franke.de\" f=\"Fabian_Franke.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fabian Keil.de\" f=\"Fabian_Keil.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fabricatorz\" f=\"Fabricatorz.xml\"><securecookie host=\"^fabricatorz\\.com$\" name=\".+\"/><rule from=\"^http://(?:(private\\.)|www\\.)?fabricatorz\\.com/\" to=\"https://$1fabricatorz.com/\"/></ruleset>", "<ruleset name=\"Facebook.net\" f=\"Facebook.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Facebook.com\" f=\"Facebook.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.ak\\.facebook\\.com/\" to=\"https://s-static.ak.facebook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Facebook Hidden Service\" platform=\"mixedcontent\" f=\"FacebookCoreWWWi.onion.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Facebook-Studio.com\" f=\"Facebook_Studio.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://facebook-studio\\.com/\" to=\"https://www.facebook-studio.com/\"/><rule from=\"^http://(\\w+)\\.facebook-studio\\.com/\" to=\"https://$1.facebook-studio.com/\"/></ruleset>", "<ruleset name=\"Facebook ccTLDs\" f=\"Facebook_ccTLDs.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?facebook\\.(?:be|is|it|nl|us)/\" to=\"https://www.facebook.com/\"/><rule from=\"^http://(?:de-de\\.|www\\.)?facebook\\.de/\" to=\"https://de-de.facebook.com/\"/><rule from=\"^http://(?:da-dk\\.|www\\.)?facebook\\.dk/\" to=\"https://da-dk.facebook.com/\"/><rule from=\"^http://(?:es-es\\.|www\\.)?facebook\\.(?:es|mx)/\" to=\"https://es-es.facebook.com/\"/><rule from=\"^http://(?:fr-fr\\.|www\\.)?facebook\\.fr/\" to=\"https://fr-fr.facebook.com/\"/><rule from=\"^http://(?:ja-jp\\.|www\\.)?facebook\\.jp/\" to=\"https://ja-jp.facebook.com/\"/><rule from=\"^http://(?:nb-no\\.|www\\.)?facebook\\.no/\" to=\"https://nb-no.facebook.com/\"/><rule from=\"^http://(?:sv-se\\.|www\\.)?facebook\\.se/\" to=\"https://sv-se.facebook.com/\"/></ruleset>", "<ruleset name=\"Facepunch.com\" f=\"Facepunch.com.xml\"><securecookie host=\"^\\.facepunch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"facetz.net\" f=\"Facetz.net.xml\"><securecookie host=\"^\\.facetz\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"factorable.net\" f=\"Factorable.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Factory Expo Home Centers\" f=\"Factory_Expo_Home_Centers.xml\"><securecookie host=\"^(?:.*\\.)?(?:azchampion|expo(?:mobile)?homes|factory(?:directcabins|expo(?:direct|expohomes|mobilehomes)|homesale|selecthomes)|fbhexpo)\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?(?:cimacorp|factoryexpo)\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?(azchampion|expo(?:mobile)?homes|factory(?:directcabins|expo(?:direct|expohomes|mobilehomes)|homesale|selecthomes)|fbhexpo)\\.com/\" to=\"https://$1$2.com/\"/><rule from=\"^http://(www\\.)?(cimacorp|factoryexpo)\\.net/\" to=\"https://$1$2.net/\"/></ruleset>", "<ruleset name=\"Faculty Diversity.org\" default_off=\"mismatched\" f=\"Faculty_Diversity.org.xml\"><securecookie host=\"^(?:www\\.)?facultydiversity\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fagms.net\" f=\"Fagms.net.xml\"><rule from=\"^http://(?:www\\.)?fagms\\.net/\" to=\"https://www.fagms.net/\"/></ruleset>", "<ruleset name=\"Failure Magazine\" default_off=\"mismatch\" f=\"Failure-Magazine.xml\"><securecookie host=\"^(?:.*\\.)?failuremag\\.com$\" name=\".*\"/><rule from=\"^http://(?:origin\\.|www\\.)?failuremag\\.com/\" to=\"https://failuremag.com/\"/></ruleset>", "<ruleset name=\"FairSSL.se\" f=\"FairSSL.se.xml\"><securecookie host=\"^www\\.fairssl\\.se$\" name=\".+\"/><rule from=\"^http://fairssl\\.se/\" to=\"https://www.fairssl.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fair Work Commission\" f=\"FairWorkCommission.xml\"><rule from=\"^http://(?:www\\.)?fwc\\.gov\\.au/\" to=\"https://www.fwc.gov.au/\"/></ruleset>", "<ruleset name=\"Fair Work Ombudsman\" f=\"FairWorkOmbudsman.xml\"><rule from=\"^http://(?:www\\.)?fairwork\\.gov\\.au/\" to=\"https://www.fairwork.gov.au/\"/></ruleset>", "<ruleset name=\"Fairfax Digital (partial)\" default_off=\"failed ruleset test\" f=\"Fairfax-Digital.xml\"><securecookie host=\"^membercentre\\.fairfax\\.com\\.au$\" name=\".*\"/><rule from=\"^http://ads\\.afraccess\\.com/\" to=\"https://ads.afraccess.com/\"/><rule from=\"^http://membercentre\\.fairfax\\.com\\.au/\" to=\"https://membercentre.fairfax.com.au/\"/></ruleset>", "<ruleset name=\"Fairfax Public Access\" f=\"Fairfax_Public_Access.xml\"><securecookie host=\"^\\.fcac\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fcac\\.org/\" to=\"https://www.fcac.org/\"/></ruleset>", "<ruleset name=\"Fairphone.com (partial)\" f=\"Fairphone.com.xml\"><exclusion pattern=\"^http://shop\\.fairphone\\.com/+(?!(?:checkout/cart|customer/account)(?:$|[?/])|favicon\\.ico|media/|skin/)\"/><securecookie host=\"^(?:forum\\.|www\\.)?fairphone\\.com$\" name=\".+\"/><rule from=\"^http://((?:forum|shop|www)\\.)?fairphone\\.com/\" to=\"https://$1fairphone.com/\"/></ruleset>", "<ruleset name=\"Faith in Motion.com.au (partial)\" f=\"Faith_in_Motion.com.au.xml\"><rule from=\"^http://(www\\.)?faithinmotion\\.com\\.au/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1faithinmotion.com.au/\"/></ruleset>", "<ruleset name=\"FakaHeda.eu\" f=\"FakaHeda.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fakturownia (partial)\" f=\"Fakturownia.xml\"><securecookie host=\"^\\.fakturownia\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falcon-UAV.com (partial)\" default_off=\"mismatched\" f=\"Falcon-UAV.com.xml\"><rule from=\"^http://(?:www\\.)?falcon-uav\\.com/(?=display/|favicon\\.ico|layout/|process/|storage/|universal/)\" to=\"https://www.falcon-uav.com/\"/></ruleset>", "<ruleset name=\"Falkirk.gov.uk (partial)\" f=\"Falkirk.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://beta\\.falkirk\\.gov\\.uk/\" to=\"https://www.falkirk.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falkvinge on Infopolicy\" f=\"Falkvinge_on_Infopolicy.xml\"><securecookie host=\"^\\.falkvinge\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fallout 4.com\" f=\"Fallout_4.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"familie redlich\" default_off=\"mismatch, self-signed\" f=\"Familie-redlich.xml\"><securecookie host=\"^(?:systeme\\.)?familie-redlich\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(systeme\\.)?familie-redlich\\.de/\" to=\"https://$1familie-redlich.de/\"/></ruleset>", "<ruleset name=\"Family Christian Stores\" f=\"Family-Christian-Stores.xml\"><securecookie host=\"^\\.?www\\.familychristian\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FamilySearch.org\" default_off=\"failed ruleset test\" f=\"FamilySearch.org.xml\"><securecookie host=\"^(?:(?:donate|indexing|new)\\.)?familysearch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Family Medicine Association\" f=\"Family_Medicine_Association.xml\"><securecookie host=\"^\\.fmaba\\.com$\" name=\".+\"/><rule from=\"^http://fmaba\\.com/\" to=\"https://www.fmaba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FanFiction.net\" f=\"FanFiction.xml\"><rule from=\"^http://fanfiction\\.net/\" to=\"https://www.fanfiction.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanatics (partial)\" f=\"Fanatics.xml\"><securecookie host=\"^st\\.fanatics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fanatics\\.com/((?:accoun|checkou)t(?:$|\\?|/)|css/)\" to=\"https://www.fanatics.com/$1\"/><rule from=\"^http://st\\.fanatics\\.com/\" to=\"https://st.fanatics.com/\"/></ruleset>", "<ruleset name=\"Fanboy.co.nz\" f=\"Fanboy.xml\"><securecookie host=\"^(?:.+\\.)?fanboy\\.co\\.nz$\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fandago\" default_off=\"failed ruleset test\" f=\"Fandago.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fandango (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fandango.xml\"><securecookie host=\"^(?:www)?\\.?fandango\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fangamer (partial)\" f=\"Fangamer.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?fangamer\\.net/\" to=\"https://fangamer.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanhatten (partial)\" default_off=\"failed ruleset test\" f=\"Fanhattan.xml\"><rule from=\"^http://(?:www\\.)?fanhattan\\.com/\" to=\"https://www.fanhattan.com/\"/><rule from=\"^http://blog\\.fanhattan\\.com/\" to=\"https://blog.fanhattan.com/\"/><rule from=\"^http://cf2\\.imgobject\\.com/\" to=\"https://d1zm4mmpsrckwj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fanli.com\" default_off=\"mixedcontent\" f=\"Fanli.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanoe.dk\" f=\"Fanoe.dk.xml\"><securecookie host=\"^(www\\.)?fanoe\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fantlab.ru\" f=\"Fantlab.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Faq-o-matic.net\" f=\"Faq-o-matic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Faraday sec.com\" f=\"Faraday_sec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fareham.gov.uk (partial)\" f=\"Fareham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fareham\\.gov\\.uk/\" to=\"https://www.fareham.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fark (partial)\" default_off=\"Breaks form submission\" f=\"Fark.xml\"><securecookie host=\"^(?:gw|shop)\\.fark\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fark\\.com/(blog|comments/|feedback|forgotpassword|ll$|newuser|psbrowser|quiz|submit/|users)\" to=\"https://www.fark.com/$1\"/><rule from=\"^http://(app|beta|gw|m|shop|ssl|(?:m\\.)?total)\\.fark\\.com/\" to=\"https://$1.fark.com/\"/><rule from=\"^http://img\\.fark\\.net/\" to=\"https://img.fark.net/\"/></ruleset>", "<ruleset name=\"FarmLogs.com\" f=\"FarmLogs.com.xml\"><securecookie host=\"^\\.farmlogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Farmaciforbundet.se\" default_off=\"failed ruleset test\" f=\"Farmaciforbundet.se.xml\"><rule from=\"^http://farmaciforbundet\\.se/\" to=\"https://www.farmaciforbundet.se/\"/><rule from=\"^http://www\\.farmaciforbundet\\.se/\" to=\"https://www.farmaciforbundet.se/\"/></ruleset>", "<ruleset name=\"Farmers Development Organization (partial)\" default_off=\"expired, self-signed\" f=\"Farmers_Development_Organization.xml\"><rule from=\"^http://(?:www\\.)?fdopk\\.org/\" to=\"https://fdopk.org/\"/></ruleset>", "<ruleset name=\"Faround.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Faround.net.xml\"><securecookie host=\"^(?:www)?\\.faround\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?faround\\.net/\" to=\"https://www.faround.net/\"/></ruleset>", "<ruleset name=\"Fashion Dip\" f=\"Fashion_Dip.xml\"><securecookie host=\"^(?:w*\\.)?fashiondip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fashionara.com (false MCB)\" platform=\"mixedcontent\" f=\"Fashionara.com-falsemixed.xml\"><securecookie host=\"^\\.fashionara\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fashionara.com (partial)\" f=\"Fashionara.com.xml\"><rule from=\"^http://(www\\.)?fashionara\\.com/(?=favicon\\.ico|customer/|media/|skin/)\" to=\"https://$1fashionara.com/\"/><rule from=\"^http://static\\.fashionara\\.com/\" to=\"https://d1x2ae5wsotp3k.cloudfront.net/\"/><rule from=\"^http://staticassets\\.fashionara\\.com/\" to=\"https://s3-ap-southeast-1.amazonaws.com/staticassets.fashionara.com/\"/></ruleset>", "<ruleset name=\"Fass.se\" f=\"Fass.se.xml\"><rule from=\"^http://fass\\.se/\" to=\"https://www.fass.se/\"/><rule from=\"^http://www\\.fass\\.se/\" to=\"https://www.fass.se/\"/></ruleset>", "<ruleset name=\"Fast Company.com (partial)\" f=\"Fast-Company.xml\"><securecookie host=\"^magazine\\.fastcompany\\.com$\" name=\".*\"/><rule from=\"^http://fastcompany\\.com/\" to=\"https://www.fastcompany.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Web Media (partial)\" default_off=\"failed ruleset test\" f=\"Fast-Web-Media.xml\"><securecookie host=\"^.+\\.fwmapps\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?fastwebmedia\\.com/\" to=\"https://$1fastwebmedia.com/\"/><rule from=\"^http://([\\w\\-]+\\.)?fwmapps\\.co\\.uk/\" to=\"https://$1fwmapps.co.uk/\"/></ruleset>", "<ruleset name=\"FastDomain\" f=\"FastDomain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastSSL.net\" f=\"FastSSL.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastShare.cz\" f=\"FastShare.cz.xml\"><securecookie host=\"^\\.(?:www\\.)?fastshare\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastSoft (partial)\" default_off=\"expired, self-signed\" f=\"FastSoft.xml\"><rule from=\"^http://fastsoft\\.com/media//images/logo\\.gif$\" to=\"https://chi-10g-1-mirror.fastsoft.net/fs-logo.gif\"/><rule from=\"^http://chi-10g-1-mirror\\.fastsoft\\.net/\" to=\"https://chi-10g-1-mirror.fastsoft.net/\"/></ruleset>", "<ruleset name=\"FastSpring (mismatches)\" default_off=\"mismatch\" f=\"FastSpring-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fastspringblog\\.com/\" to=\"https://fastspringblog.com/\"/><rule from=\"^http://(?:www\\.)?fastspringstore\\.com/\" to=\"https://www.fastspringstore.com/\"/></ruleset>", "<ruleset name=\"FastSpring (partial)\" f=\"FastSpring.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://resource\\.fastspring\\.com/\" to=\"https://s3.amazonaws.com/resource.fastspring.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastWebHost.com (mismatches)\" default_off=\"mismatch\" f=\"FastWebHost.com-mismatches.xml\"><securecookie host=\"^webmail\\.fastwebhost\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.fastwebhost\\.com/\" to=\"https://webmail.fastwebhost.com/\"/></ruleset>", "<ruleset name=\"FastWebHost.com (partial)\" default_off=\"failed ruleset test\" f=\"FastWebHost.com.xml\"><securecookie host=\"^(?:support|www)\\.fastwebhost\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Co Design.com\" f=\"Fast_Co_Design.com.xml\"><rule from=\"^http://(?:www\\.)?fastcodesign\\.com/\" to=\"https://www.fastcodesign.com/\"/></ruleset>", "<ruleset name=\"Fast Company.net\" f=\"Fast_Company.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Serv.com (partial)\" f=\"Fast_Serv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Fast and the Furious\" default_off=\"akamai cert\" f=\"Fast_and_the_Furious.xml\"><rule from=\"^http://(?:www\\.)?thefastandthefurious\\.com/\" to=\"https://www.thefastandthefurious.com/\"/></ruleset>", "<ruleset name=\"FasterBadger.com\" f=\"FasterBadger.com.xml\"><securecookie host=\"^(?:www\\.)?fasterbadger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fasthosts (partial)\" f=\"Fasthosts.xml\"><securecookie host=\"^.*\\.fasthosts\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.ukreg\\.com$\" name=\".*\"/><rule from=\"^https://www\\.fasthosts\\.co\\.uk/js/track\\.js\" to=\"https://www.fasthosts.co.uk/favicon.ico\"/><rule from=\"^http://(?:www\\.)?fasthosts\\.co\\.uk/\" to=\"https://www.fasthosts.co.uk/\"/><rule from=\"^http://(admin|login|order)\\.fasthosts\\.co\\.uk/\" to=\"https://$1.fasthosts.co.uk/\"/><rule from=\"^http://secure(\\d|1[0-3-9]|2[0-4]|5[26])\\.prositehosting\\.co\\.uk/\" to=\"https://secure$1.prositehosting.co.uk/\"/><rule from=\"^http://(?:www\\.)?ukreg\\.com/\" to=\"https://www.ukreg.com/\"/></ruleset>", "<ruleset name=\"Fastly.net (partial)\" f=\"Fastly.net.xml\"><exclusion pattern=\"^http://(?!assets1\\.fastly\\.com\\.a\\.prod\\.)[\\w.-]+\\.prod\\.fastly\\.net/\"/><exclusion pattern=\"^http://purge\\.fastly\\.net/\"/><exclusion pattern=\"^http://[\\w.-]+/assets/fontawesome-webfont-\"/><exclusion pattern=\"^http://periscope\\-prod\\-[\\w.-]+\\.global\\.ssl\\.fastly\\.net\"/><rule from=\"^http://assets1\\.fastly\\.com\\.a\\.prod\\.fastly\\.net/\" to=\"https://fastly.a.ssl.fastly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fastly.com\" f=\"Fastly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fastmail (partial)\" f=\"Fastmail.xml\"><securecookie host=\"^.*\\.fastmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fastweb.com (partial)\" f=\"Fastweb.com.xml\"><exclusion pattern=\"^http://www\\.fastweb\\.com/+(?!assets/|images/|login(?:$|[?/])|nfs/|uploads/)\"/><rule from=\"^http://fastweb\\.com/\" to=\"https://www.fastweb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FatCow Web Hosting\" platform=\"mixedcontent\" f=\"FatCow-Web-Hosting.xml\"><securecookie host=\"^(?:.*\\.)?fatcow\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?fatcow\\.com(:443)?/\" to=\"https://$1fatcow.com$2/\"/></ruleset>", "<ruleset name=\"FatWallet.com (partial)\" f=\"FatWallet.com.xml\"><exclusion pattern=\"^http://www\\.fatwallet\\.com/+(?!favicon\\.ico|login(?:$|[?/]))\"/><securecookie host=\"^\\.fatwallet\\.com$\" name=\"^(?:incap_ses|nlbi|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.fatwallet\\.com$\" name=\"^___utm[abm]+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Favrskov.dk\" f=\"Favrskov.dk.xml\"><securecookie host=\"^(www\\.)?favrskov\\.dk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Favstar.fm\" f=\"Favstar.fm.xml\"><rule from=\"^http://favstar\\.fm/\" to=\"https://favstar.fm/\"/></ruleset>", "<ruleset name=\"FaxCritics\" f=\"FaxCritics.xml\"><securecookie host=\"^\\.faxcritics.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fax Big Brother.com\" f=\"Fax_Big_Brother.com.xml\"><securecookie host=\"^\\.faxbigbrother\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fax Robot.com\" f=\"Fax_Robot.com.xml\"><securecookie host=\"^\\.faxrobot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fazekas\" f=\"Fazekas.xml\"><rule from=\"^http://(?:www\\.)?fazekas\\.hu/\" to=\"https://fazekas.hu/\"/><rule from=\"^http://sas\\.fazekas\\.hu/\" to=\"https://sas.fazekas.hu/\"/><rule from=\"^http://summertime\\.fazekas\\.hu/\" to=\"https://summertime.fazekas.hu/\"/></ruleset>", "<ruleset name=\"Fb.com (partial)\" f=\"Fb.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fb.me\" f=\"Fb.me.xml\"><rule from=\"^http://(www\\.)?fb\\.me/\" to=\"https://$1fb.me/\"/><rule from=\"^http://on\\.fb\\.me/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"FbCDN.net\" f=\"FbCDN.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://dragon\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-dragon-a.akamaihd.net/\"/><rule from=\"^http://external\\.ak\\.fbcdn\\.net/\" to=\"https://fbexternal-a.akamaihd.net/\"/><rule from=\"^http://s?photos-([a-h])\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-sphotos-$1-a.akamaihd.net/\"/><rule from=\"^http://profile\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-profile-a.akamaihd.net/\"/><rule from=\"^http://a\\d\\.sphotos\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-sphotos-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fb F8.com\" f=\"Fb_F8.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fcitx-im.org\" f=\"Fcitx-im.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fdworlds.net (partial)\" f=\"Fdworlds.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?fdworlds\\.net/+(?!favicon\\.ico|forum/$|img/|(?:about|laws|news|reg|top)\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeatherCoin (partial)\" f=\"FeatherCoin.xml\"><securecookie host=\"^forum\\.feathercoin\\.com$\" name=\".+\"/><rule from=\"^http://forum\\.feathercoin\\.com/\" to=\"https://forum.feathercoin.com/\"/></ruleset>", "<ruleset name=\"Febas.de\" f=\"Febas.de.xml\"><rule from=\"^http://(?:www\\.)?febas\\.de/\" to=\"https://www.febas.de/\"/></ruleset>", "<ruleset name=\"FedEx.com (problematic, false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"FedEx.com-problematic.xml\"><securecookie host=\"^\\.blog\\.van\\.fedex\\.com$\" name=\".+\"/><rule from=\"^http://(blog|news)\\.van\\.fedex\\.com/\" to=\"https://$1.van.fedex.com/\"/></ruleset>", "<ruleset name=\"FedEx.com (partial)\" f=\"FedEx.com.xml\"><exclusion pattern=\"^http://m\\.fedex\\.com/+(?!img/)\"/><exclusion pattern=\"^http://wwwtest\\.fedex\\.com/(?!css/|images/)\"/><securecookie host=\"^\\.fedex\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?fedex\\.com/(?=css/|images/|myprofile/)\" to=\"https://www.fedex.com/\"/><rule from=\"^http://(images|m|wwwtest)\\.fedex\\.com/\" to=\"https://$1.fedex.com/\"/><rule from=\"^http://metrics\\.fedex\\.com/\" to=\"https://fedex-com.d2.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"FBI.gov\" f=\"Federal-Bureau-of-Investigation.xml\"><securecookie host=\"^\\.fbi\\.gov$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://fbi\\.gov/\" to=\"https://www.fbi.gov/\"/><rule from=\"^http://foia\\.fbi\\.gov/\" to=\"https://www.fbi.gov/foia/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FCC.gov (partial)\" f=\"Federal-Communications-Commission.xml\"><exclusion pattern=\"^http://hraunfoss\\.fcc\\.gov/(?!edocs_public/attachmatch/(?!$))\"/><securecookie host=\".*\\.fcc\\.gov$\" name=\".+\"/><rule from=\"^http://fcc\\.gov/\" to=\"https://www.fcc.gov/\"/><rule from=\"^http://hraunfoss\\.fcc\\.gov/edocs_public/attachmatch/\" to=\"https://apps.fcc.gov/edocs_public/attachmatch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDIC.gov\" f=\"Federal-Deposit-Insurance-Corporation.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://fdic\\.gov/\" to=\"https://www.fdic.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Office for Information Security\" default_off=\"failed ruleset test\" f=\"Federal-Office-for-Information-Security.xml\"><securecookie host=\"^www\\.bsi(?:\\.bund|-fuer-buerger)?\\.de$\" name=\".+\"/><rule from=\"^http://www\\.bsi\\.de/\" to=\"https://www.bsi.de/\"/><rule from=\"^http://(?:www\\.)?bsi-fuer-buerger\\.de/\" to=\"https://www.bsi-fuer-buerger.de/\"/><rule from=\"^http://(?:www\\.)?bsi\\.bund\\.de/\" to=\"https://www.bsi.bund.de/\"/></ruleset>", "<ruleset name=\"Federal Register.gov\" f=\"Federal-Register.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAA.gov (partial)\" f=\"Federal_Aviation_Administration.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Business Opportunities\" f=\"Federal_Business_Opportunities.xml\"><securecookie host=\"^(?:.*\\.)?fbo\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?f(bo|edbizopps)\\.gov/\" to=\"https://www.f$1.gov/\"/></ruleset>", "<ruleset name=\"Federal Emergency Management Agency (FEMA)\" f=\"Federal_Emergency_Management_Agency.xml\"><rule from=\"^http://fema\\.gov/\" to=\"https://www.fema.gov/\"/><rule from=\"^http://([^/:@]+)?\\.fema\\.gov/\" to=\"https://$1.fema.gov/\"/></ruleset>", "<ruleset name=\"BVA.bund.de\" f=\"Federal_Office_of_Administration.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bva\\.bund\\.de/\" to=\"https://www.bva.bund.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Reserve.org (partial)\" f=\"Federal_Reserve.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Reserve.gov\" f=\"Federal_Reserve.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://federalreserve\\.gov/\" to=\"https://www.federalreserve.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Soup\" f=\"Federal_Soup.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FTC.gov (partial)\" f=\"Federal_Trade_Commission.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federated Investors (partial)\" default_off=\"failed ruleset test\" f=\"Federated-Investors.xml\"><rule from=\"^http://(www\\.)?federatedinvestors\\.com/($|FII/(?:css/|(?:daf/)?images/|login\\.do|registration/|splash\\.do))\" to=\"https://$1federatedinvestors.com/$2\"/></ruleset>", "<ruleset name=\"Federated Media Publishing (partial)\" default_off=\"failed ruleset test\" f=\"Federated-Media-Publishing.xml\"><securecookie host=\"^.*\\.fmpub\\.net$\" name=\".+\"/><securecookie host=\"^www\\.federatedmedia\\.net$\" name=\".*\"/><rule from=\"^http://(www\\.)?federatedmedia\\.net/\" to=\"https://$1federatedmedia.net/\"/><rule from=\"^http://(keywords|r1|static|tenzing)\\.fmpub\\.net/\" to=\"https://$1.fmpub.net/\"/><rule from=\"^http://static-cf\\.fmpub\\.net/\" to=\"https://fmpub.cachefly.net/\"/></ruleset>", "<ruleset name=\"FAS.org\" f=\"Federation-of-American-Scientists.xml\"><securecookie host=\".*\\.fas\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federation of Small Businesses (partial)\" default_off=\"failed ruleset test\" f=\"Federation-of-Small-Businesses.xml\"><securecookie host=\"^join\\.fsb\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fsb\\.org\\.uk/(general/imag|Templat)es/\" to=\"https://www.fsb.org.uk/$1es/\"/><rule from=\"^http://join\\.fsb\\.org\\.uk/\" to=\"https://join.fsb.org.uk/\"/></ruleset>", "<ruleset name=\"Fedge NO.com\" f=\"Fedge_NO.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Project.org\" f=\"Fedora.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Hosted.org\" f=\"Fedora_Hosted.org.xml\"><securecookie host=\"^(?:www\\.)?fedorahosted\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Magazine.org\" f=\"Fedora_Magazine.org.xml\"><securecookie host=\"^(www\\.)?fedoramagazine\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora People.org\" f=\"Fedora_People.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Project.org (problematic)\" default_off=\"mismatched, self-signed, untrusted root\" f=\"Fedora_Project-problematic.xml\"><exclusion pattern=\"^http://koji\\.fedoraproject\\.org/packages/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeeFighters\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FeeFighters.xml\"><securecookie host=\"^(?:.+\\.)?feefighters\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?feefighters\\.com/\" to=\"https://feefighters.com/\"/></ruleset>", "<ruleset name=\"Feed2JS.org\" f=\"Feed2JS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedBlitz\" f=\"FeedBlitz.xml\"><securecookie host=\"^w*\\.feedblitz\\.com$\" name=\".*\"/><rule from=\"^http://((?:archive|blog|feeds|p|www)\\.)?feedblitz\\.com/\" to=\"https://$1feedblitz.com/\"/><rule from=\"^http://(asset|user)s\\.feedblitz\\.com/\" to=\"https://s3.amazonaws.com/$1s.feedblitz.com/\"/><rule from=\"^http://spnsrs\\.feedblitz\\.com/\" to=\"https://p.liadm.com/\"/><rule from=\"^http://t\\.feedblitz\\.com/\" to=\"https://ei.rlcdn.com/\"/></ruleset>", "<ruleset name=\"FeedBurner.com\" f=\"FeedBurner.xml\"><rule from=\"^http://feedburner\\.com/\" to=\"https://www.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedPress.me\" f=\"FeedPress.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feedbackify.com\" f=\"Feedbackify.com.xml\"><securecookie host=\"^www\\.feedbackify\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feedjit (partial)\" f=\"Feedjit.xml\"><rule from=\"^http://(www\\.)?feedjit\\.com/(favicon\\.ico|images/|plansPricing/|pro/|rush/|static/)\" to=\"https://$1feedjit.com/$2\"/></ruleset>", "<ruleset name=\"feedly.com (partial)\" f=\"Feedly.com.xml\"><securecookie host=\"^\\.feedly\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:www\\.)?feedly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedMyInbox\" f=\"Feedmyinbox.xml\"><securecookie host=\"^(?:.*\\.)?feedmyinbox\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?feedmyinbox\\.com/\" to=\"https://www.feedmyinbox.com/\"/></ruleset>", "<ruleset name=\"Feedsportal.com (partial)\" f=\"Feedsportal.com.xml\"><rule from=\"^http://stats\\.feedsportal\\.com/\" to=\"https://stats.feedsportal.com/\"/></ruleset>", "<ruleset name=\"Feefo\" f=\"Feefo.xml\"><securecookie host=\"^www\\.feefo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?feefo\\.com/\" to=\"https://www.feefo.com/\"/></ruleset>", "<ruleset name=\"Fefe.de (partial)\" f=\"Fefe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feide\" f=\"Feide.xml\"><securecookie host=\".*\\.feide\\.no$\" name=\".+\"/><rule from=\"^http://((?:api|crawler|(?:idp\\.|sp\\d\\.)?demo|docs|foodle|fwtest|idp|idp-dev|innsyn|kunde|logout|metadata|openidp|openwiki|ow|rnd|(?:beta|translation)\\.rnd|sp-test|tools|wiki|www)\\.)?feide\\.no/\" to=\"https://$1feide.no/\"/></ruleset>", "<ruleset name=\"Feisty Duck.com\" f=\"Feisty_Duck.com.xml\"><rule from=\"^http://store\\.feistyduck\\.com/\" to=\"https://feistyduck.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feit Electric Company (partial)\" platform=\"mixedcontent\" f=\"Feit-Electric-Company.xml\"><rule from=\"^http://(?:www\\.)?feitbulb\\.com/\" to=\"https://secure1.voloper.net/feitbulbs/\"/></ruleset>", "<ruleset name=\"Femtoduino.com\" f=\"Femtoduino.com.xml\"><securecookie host=\"^www\\.femtoduino\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fence Center.com\" f=\"Fence_Center.com.xml\"><securecookie host=\"^www\\.fencecenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fencecenter\\.com/\" to=\"https://www.fencecenter.com/\"/></ruleset>", "<ruleset name=\"Fender.com (problematic)\" default_off=\"mismatched\" f=\"Fender.com-problematic.xml\"><securecookie host=\"^\\.customcare\\.fender\\.com$\" name=\".+\"/><rule from=\"^http://customcare\\.fender\\.com/\" to=\"https://customcare.fender.com/\"/></ruleset>", "<ruleset name=\"Fender.com (partial)\" f=\"Fender.com.xml\"><securecookie host=\"^(?:www)?\\.fender\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fender\\.com/\" to=\"https://www.fender.com/\"/></ruleset>", "<ruleset name=\"Fenland.gov.uk (partial)\" f=\"Fenland.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?fenland\\.gov\\.uk/+(?!CHttpHandler\\.ashx|(?:HEF|article/(?:10909/Request-asbestos-bags|10910/Request-Housing-Advice|10919/Trade-or-Clinical-Waste-collection|10922/Request-an-extra-blue-bin|10923/Assisted-collection|3127/Apply-for-large-or-bulky-items-to-be-collected-Household-waste|3128/Make-a-Land-Charges-search)|cemeteryenquiry|ierform|landchargessearch|marketenquiry|streetnamingandnumbering|treesandhedges)(?:$|[?/])|\\w+/(?:css|images|template)/|media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feral.io\" f=\"Feral.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feral Hosting.com\" f=\"Feral_Hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feralinteractive.com\" f=\"Feralinteractive.com.xml\"><rule from=\"^http://(?:www\\.)?feralinteractive\\.com/\" to=\"https://www.feralinteractive.com/\"/></ruleset>", "<ruleset name=\"Fermi National Accelerator Laboratory (partial)\" f=\"Fermi_National_Accelerator_Laboratory.xml\"><securecookie host=\"^(?:.*\\.)?fnal\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FernUni-Hagen.de\" f=\"FernUni-Hagen.de.xml\"><securecookie host=\"^(?:account|moodle|wiki)\\.fernuni-hagen\\.de$\" name=\".+\"/><rule from=\"^http://(?:(cl-)?www\\.)?fernuni-hagen\\.de/\" to=\"https://$1www.fernuni-hagen.de/\"/><rule from=\"^http://(account|blog|moodle|www\\.ub|vu|wiki)\\.fernuni-hagen\\.de/\" to=\"https://$1.fernuni-hagen.de/\"/></ruleset>", "<ruleset name=\"Ferris State University (problematic)\" default_off=\"mismatched, self-signed\" f=\"Ferris_State_University-problematic.xml\"><rule from=\"^http://calendar\\.ferris\\.edu/\" to=\"https://calendar.ferris.edu/\"/></ruleset>", "<ruleset name=\"Ferris State University (partial)\" f=\"Ferris_State_University.xml\"><exclusion pattern=\"^http://myfsu.ferris.edu/cp/home/loginf\"/><securecookie host=\"^(?!myfsu)\\.ferris\\.edu$\" name=\".+\"/><rule from=\"^http://(ebill|fsuban2|m|mysfu|passwordhelp)\\.ferris\\.edu(:9000)?/\" to=\"https://$1.ferris.edu$2/\"/></ruleset>", "<ruleset name=\"Ferroh.com (partial)\" default_off=\"expired\" f=\"Ferroh.com.xml\"><rule from=\"^http://(?:www\\.)?ferroh\\.com/\" to=\"https://ferroh.com/\"/></ruleset>", "<ruleset name=\"Festeirice.com.br\" f=\"Festeirice.com.br.xml\"><securecookie host=\"^\\.festeirice\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Festivus Games.com\" f=\"Festivus_Games.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FetLife\" f=\"FetLife.xml\"><securecookie host=\"^(?:.*\\.)?fetlife\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fetlife\\.com/\" to=\"https://fetlife.com/\"/></ruleset>", "<ruleset name=\"FetShop.co.uk\" f=\"FetShop.co.uk.xml\"><securecookie host=\"^\\.www\\.fetshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fetshop\\.co\\.uk/\" to=\"https://www.fetshop.co.uk/\"/><rule from=\"^http://cdn\\.fetshop\\.co\\.uk/\" to=\"https://4001-fetshop-iamnoonesolution.netdna-ssl.com/\"/><rule from=\"^http://cdn-test\\.fetshop\\.co\\.uk/\" to=\"https://4001-test-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"FetchBack.com (partial)\" f=\"FetchBack.xml\"><exclusion pattern=\"^http://imp\\.fetchback\\.com/serve/optout/pt-out\\.html\"/><exclusion pattern=\"^http://www\\.fetchback\\.com/\"/><securecookie host=\"^\\.fetchback\\.com$\" name=\"^(act|afl|apd|bpd|clk|cmp|cre|fbid|eng|kwd|ppd|scg|sit|uat|uid)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fewo-mehrtens.de\" f=\"Fewo-mehrtens.de.xml\"><securecookie host=\"^(www\\.)?fewo-mehrtens\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?fewo-mehrtens\\.de/\" to=\"https://www.fewo-mehrtens.de/\"/></ruleset>", "<ruleset name=\"FfProfile.com\" f=\"FfProfile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FftFEF.org\" f=\"FftFEF.org.xml\"><securecookie host=\"^\\.fftfef\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fhserve.com\" default_off=\"missing certificate chain\" f=\"Fhserve.com.xml\"><rule from=\"^http://fhserve\\.com/\" to=\"https://www.fhserve.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fianna Fail\" f=\"FiannaFail.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fibank\" platform=\"mixedcontent\" f=\"Fibank.xml\"><rule from=\"^http://(?:www\\.)?fibank\\.bg/\" to=\"https://www.fibank.bg/\"/><rule from=\"^http://(?:[^/:@\\.]+\\.)?e-fibank\\.bg/\" to=\"https://e-fibank.bg/\"/></ruleset>", "<ruleset name=\"Fiber7.ch\" f=\"Fiber7.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ficora.fi\" f=\"Ficora.fi.xml\"><securecookie host=\"^(?:eservices|www)\\.ficora\\.fi$\" name=\".+\"/><rule from=\"^http://ficora\\.fi/\" to=\"https://www.ficora.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FictionPress.com (partial)\" f=\"FictionPress.com.xml\"><rule from=\"^http://fictionpress\\.com/\" to=\"https://www.fictionpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fictiv.com\" f=\"Fictiv.com.xml\"><rule from=\"^http://fictiv\\.com/\" to=\"https://www.fictiv.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fidelity.com (partial)\" f=\"Fidelity.com.xml\"><securecookie host=\"^\\.fidelity\\.com$\" name=\"^MC$\"/><securecookie host=\"^(?:charitablegift|login)\\.fidelity\\.com$\" name=\".+\"/><rule from=\"^http://((?:charitablegift|eresearch|fixedincome|login|membership|moneymovement|news|oltx|research2|researchtools|screener|scs|www)\\.)?fidelity\\.com/\" to=\"https://$1fidelity.com/\"/></ruleset>", "<ruleset name=\"FierceFinance (partial)\" f=\"FierceFinance.xml\"><rule from=\"^http://(www\\.)?fiercefinance\\.com/(fil|sit)es/\" to=\"https://$1fiercefinance.com/$2es/\"/></ruleset>", "<ruleset name=\"FierceMarkets (partial)\" f=\"FierceMarkets.xml\"><rule from=\"^http://secure\\.fiercemarkets\\.com/\" to=\"https://secure.fiercemarkets.com/\"/><rule from=\"^http://assets\\.fiercemarkets\\.com/\" to=\"https://www.fiercefinance.com/\"/><rule from=\"^http://(?:static\\.fiercemarkets\\.com|assets\\.fiercemarkets\\.net)/\" to=\"https://d2pkycnpovhofp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"FiercePharma (partial)\" default_off=\"self-signed\" f=\"FiercePharma.xml\"><rule from=\"^http://(?:www\\.)?fiercepharma\\.com/(fil|sit)es/\" to=\"https://www.fiercepharma.com/$1es/\"/></ruleset>", "<ruleset name=\"FierceWireless (partial)\" f=\"FierceWireless.xml\"><rule from=\"^http://(?:www\\.)?fiercewireless\\.com/(?=favicon\\.ico|files/|sites/)\" to=\"https://d2pkycnpovhofp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fife Direct.org.uk\" f=\"Fife_Direct.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fifi.Org (partial)\" default_off=\"self-signed\" f=\"Fifi.Org.xml\"><securecookie host=\"^\\.fifi\\.org$\" name=\".+\"/><rule from=\"^http://secure\\.fifi\\.org/\" to=\"https://secure.fifi.org/\"/></ruleset>", "<ruleset name=\"Fifth Third Bank\" f=\"FifthThirdBank.xml\"><rule from=\"^http://53\\.com/\" to=\"https://www.53.com/\"/><rule from=\"^http://(reo|sdg2|www)\\.53\\.com/\" to=\"https://$1.53.com/\"/></ruleset>", "<ruleset name=\"fifthhorseman.net (partial)\" f=\"Fifthhorseman.net.xml\"><rule from=\"^http://dkg\\.fifthhorseman\\.net/\" to=\"https://dkg.fifthhorseman.net/\"/></ruleset>", "<ruleset name=\"Fight fot the Future (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Fight-for-the-Future-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?americancensorship\\.org$\" name=\".*\"/><securecookie host=\"^a\\.fightforthefuture\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(americancensorship|congresstmi|freebieber)\\.org/\" to=\"https://$1.org/\"/><rule from=\"^http://(?:www\\.)?privacyisawesome\\.com/\" to=\"https://www.privacyisawesome.com/\"/><rule from=\"^http://a\\.fightforthefuture\\.org/\" to=\"https://a.fightforthefuture.org/\"/><rule from=\"^http://(?:www\\.)?sopastrike\\.com/\" to=\"https://sopastrike.com/\"/></ruleset>", "<ruleset name=\"Fight for the Future.org (partial)\" f=\"Fight-for-the-Future.xml\"><securecookie host=\"^(?:\\w.*\\.)?fightforthefuture\\.org$\" name=\".+\"/><rule from=\"^http://s3\\.fightforthefuture\\.org/\" to=\"https://s3.amazonaws.com/s3.fightforthefuture.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fight Aging.org\" f=\"Fight_Aging.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"figshare\" default_off=\"failed ruleset test\" f=\"Figshare.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fiksu.com\" f=\"Fiksu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileBox\" default_off=\"failed ruleset test\" f=\"FileBox.xml\"><securecookie host=\"^(?:.*\\.)filebox\\.tv$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileFactory.com (partial)\" f=\"FileFactory.xml\"><securecookie host=\"^(?:.*\\.)?filefactory\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.filefactory\\.com/\" to=\"https://www.filefactory.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileFormat.info (MCB)\" platform=\"mixedcontent\" f=\"FileFormat.info.xml\"><rule from=\"^http://(www\\.)?fileformat\\.info/\" to=\"https://www.fileformat.info/\"/></ruleset>", "<ruleset name=\"FileHoot.com (false MCB)\" platform=\"mixedcontent\" f=\"FileHoot.com.xml\"><securecookie host=\"^\\.filehoot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileNuke.com\" f=\"FileNuke.com.xml\"><securecookie host=\"^\\.filenuke\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FilePost.com\" f=\"FilePost.com.xml\"><securecookie host=\"^\\.filepost\\.com$\" name=\".+\"/><rule from=\"^http://(fs\\d+\\.|www\\.)?filepost\\.com/\" to=\"https://$1filepost.com/\"/></ruleset>", "<ruleset name=\"FileRio.in (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FileRio.in.xml\"><securecookie host=\"^\\.filerio\\.in$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?filerio\\.in/\" to=\"https://filerio.in/\"/></ruleset>", "<ruleset name=\"FileTrip.net (partial)\" default_off=\"expired\" f=\"FileTrip.net.xml\"><securecookie host=\"^filetrip\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?filetrip\\.net/\" to=\"https://filetrip.net/\"/></ruleset>", "<ruleset name=\"FileZilla-project.org (partial)\" f=\"FileZilla.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filebyid.com\" default_off=\"missing certificate chain\" f=\"Filebyid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filecloud.io\" default_off=\"failed ruleset test\" f=\"Filecloud.io.xml\"><securecookie host=\"^\\.filecloud\\.io$\" name=\".+\"/><rule from=\"^http://(?:(?:cdn|secure|www)\\.)?filecloud\\.io/\" to=\"https://secure.filecloud.io/\"/></ruleset>", "<ruleset name=\"Filemobile.com (mismatches)\" default_off=\"mismatched\" f=\"Filemobile-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filemobile.com (partial)\" f=\"Filemobile.xml\"><securecookie host=\"^(?:.+\\.)?filemobile\\.com$\" name=\".\"/><rule from=\"^http://(assets|storage)\\.filemobile\\.com/\" to=\"https://s3.amazonaws.com/$1.filemobile.com/\"/><rule from=\"^http://cimg\\.filemobile\\.com/\" to=\"https://d2ksawk1637r8x.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filestack\" f=\"Filepicker.io.xml\"><securecookie host=\"^.*\\.?filestack\\.com$\" name=\"^.+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"files.poulsander.com\" default_off=\"self-signed\" f=\"Files.poulsander.com.xml\"><rule from=\"^http://files\\.poulsander\\.com/\" to=\"https://files.poulsander.com/\"/></ruleset>", "<ruleset name=\"FilesCrunch\" default_off=\"expired, self-signed\" f=\"FilesCrunch.xml\"><securecookie host=\"^filescrunch\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?filescrunch\\.com/\" to=\"https://filescrunch.com/\"/></ruleset>", "<ruleset name=\"Filippo.io\" f=\"Filippo.io.xml\"><securecookie host=\"^\\.filippo\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Film Threat\" default_off=\"failed ruleset test\" f=\"Film-Threat.xml\"><securecookie host=\"^(?:.*\\.)?filmthreat\\.com$\" name=\".*\"/><rule from=\"^http://(media2?\\.|www\\.)?filmthreat\\.com/\" to=\"https://$1filmthreat.com/\"/></ruleset>", "<ruleset name=\"FilmTrack\" f=\"FilmTrack.xml\"><securecookie host=\"^.+\\.filmtrackonline\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.filmtrackonline\\.com/\" to=\"https://$1.filmtrackonline.com/\"/><rule from=\"^http://([\\w-]+)\\.extranet2\\.filmtrackonline\\.com/\" to=\"https://$1.filmtrackonline.com/extranet/\"/></ruleset>", "<ruleset name=\"Film Linc.com (false MCB)\" platform=\"mixedcontent\" f=\"Film_Linc.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.filmlinc\\.com$\" name=\".+\"/><rule from=\"^http://www\\.filmlinc\\.com/\" to=\"https://www.filmlinc.com/\"/></ruleset>", "<ruleset name=\"Film Linc.com (partial)\" f=\"Film_Linc.com.xml\"><exclusion pattern=\"^http://www\\.filmlinc\\.com/(?!\\?css=|assets/|favicon\\.ico|page/-/)\"/><securecookie host=\"^\\.secure\\.filmlinc\\.com$\" name=\"^X-CheckNode$\"/><securecookie host=\"^(?:\\.secure\\.)?filmlinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filmdates.co.uk (partial)\" f=\"Filmdates.co.uk.xml\"><securecookie host=\"^\\.filmdates\\.co\\.uk$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?filmdates\\.co\\.uk/(?=(?:content|reminders|widget(?!/details))(?:$|[?/])|css/|dummy\\.html|favicon\\.ico|headshots/|images/|js/|posters/|tools/)\" to=\"https://www.filmdates.co.uk/\"/></ruleset>", "<ruleset name=\"Filmlair\" f=\"Filmlair.xml\"><securecookie host=\"^(?:www\\.)?filmlair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filmlash.com (partial)\" default_off=\"failed ruleset test\" f=\"Filmlash.com.xml\"><securecookie host=\"^(?:w*\\.)?filmlush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filmon.com\" f=\"Filmon.com.xml\"><securecookie host=\"^(?:www\\.)?filmon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filter (partial)\" f=\"Filter.xml\"><rule from=\"^http://(www\\.)?filterdigital\\.com/(CaptchaType\\.ashx|[cC]onnections/[bB]log/(?:editors/tiny_mce/|image\\.axd|pics/|themes/)|[rR]es/(?:img/|screen\\.css))\" to=\"https://$1filterdigital.com/$2\"/></ruleset>", "<ruleset name=\"FilterBypass.me\" f=\"FilterBypass.me.xml\"><securecookie host=\"^www\\.filterbypass\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filtrala.org\" f=\"Filtrala.org.xml\"><securecookie host=\"^\\.filtrala.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fimfiction.net\" f=\"Fimfiction.net.xml\"><securecookie host=\"^\\.fimfiction\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fimserve.com\" default_off=\"failed ruleset test\" f=\"Fimserve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Final-Score\" f=\"Final-Score.xml\"><securecookie host=\"^.*\\.final-score\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?final-score\\.com/\" to=\"https://www.final-score.com/\"/><rule from=\"^http://ebm\\.e\\.final-score\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://f\\.e\\.final-score\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http://(images|m)\\.final-score\\.com/\" to=\"https://$1.final-score.com/\"/></ruleset>", "<ruleset name=\"Final4Ever.com (false MCB)\" platform=\"mixedcontent\" f=\"Final4Ever.xml\"><securecookie host=\"^\\.?final4ever\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"finalsite (partial)\" f=\"Finalsite.xml\"><securecookie host=\"^(?:www)?\\.finalsite\\.com$\" name=\".+\"/><rule from=\"^http://((?:demo|secure(?:css|data|images|js|private)|www)\\.)?finalsite\\.com/\" to=\"https://$1finalsite.com/\"/></ruleset>", "<ruleset name=\"Finam (partial)\" default_off=\"failed ruleset test\" f=\"Finam.xml\"><rule from=\"^http://fb\\.finam\\.ru/\" to=\"https://fb.finam.ru/\"/><securecookie host=\"^fb\\.finam\\.ru$\" name=\".*\"/></ruleset>", "<ruleset name=\"Financial Content (partial)\" f=\"Financial-Content.xml\"><rule from=\"^http://(chart|images|js|markets)\\.financialcontent\\.com/\" to=\"https://$1.financialcontent.com/\"/></ruleset>", "<ruleset name=\"Financial Cryptography\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Financial-Cryptography.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Financial Industry Regulatory Authority\" f=\"Financial_Industry_Regulatory_Authority.xml\"><rule from=\"^http://finra\\.org/\" to=\"https://www.finra.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Financial Post.com (partial)\" f=\"Financial_Post.com.xml\"><exclusion pattern=\"^http://idms\\.financialpost\\.com/(?!charts/|images/|js/|watchlist/\\w+\\.ajax\\?)\"/><rule from=\"^http://idms\\.financialpost\\.com/\" to=\"https://www.financialpost.idmanagedsolutions.com/\"/></ruleset>", "<ruleset name=\"FT.com (partial)\" f=\"Financial_Times.xml\"><exclusion pattern=\"^http://markets\\.ft\\.com/(?!favicon\\.ico|RESEARCH/uploadhandler/)\"/><securecookie host=\"^\\.ft\\.com$\" name=\"^(?:AYSC|AYSC_C|FTUserTrack)$\"/><rule from=\"^http://s4\\.media\\.ft\\.com/\" to=\"https://s4.ft-static.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"financialtrans.com\" f=\"Financialtrans.com.xml\"><rule from=\"^http://www(2|3)?\\.financialtrans\\.com/\" to=\"https://www$1.financialtrans.com/\"/></ruleset>", "<ruleset name=\"Financnahitparada.sk\" f=\"Financnahitparada.sk.xml\"><rule from=\"^http://(?:www\\.)?financnahitparada\\.sk/\" to=\"https://www.financnahitparada.sk/\"/><rule from=\"^http://(?:www\\.)?poistenie\\.financnahitparada\\.sk/\" to=\"https://www.poistenie.financnahitparada.sk/\"/></ruleset>", "<ruleset name=\"FinansWatch (mixed content)\" platform=\"mixedcontent\" f=\"FinansWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finansportalen.no\" f=\"Finansportalen.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanssialan Keskusliitto\" f=\"Finanssialan-Keskusliitto.xml\"><securecookie host=\"^extranet\\.fkl\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanstilsynet.dk\" f=\"Finanstilsynet.dk.xml\"><securecookie host=\"^www\\.finanstilsynet\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanzberatung Max Herbst (partial)\" f=\"Finanzberatung_Max_Herbst.xml\"><rule from=\"^http://(?:cdn3|rechner)\\.fmh\\.de/\" to=\"https://rechner.fmh.de/\"/></ruleset>", "<ruleset name=\"Finavia.fi\" f=\"Finavia.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find a Babysitter (partial)\" f=\"Find-a-Babysitter.xml\"><rule from=\"^http://findababysitter\\.com\\.au/\" to=\"https://www.findababysitter.com.au/\"/><rule from=\"^http://www\\.findababysitter\\.com\\.au/(Account/|[cC]ontent/)\" to=\"https://www.findababysitter.com.au/$1\"/></ruleset>", "<ruleset name=\"Find n Save.com (partial)\" f=\"Find-n-Save.xml\"><securecookie host=\"^(?:sfgate|\\.?www)\\.findnsave\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.findnsave\\.com/\" to=\"https://d3ne1tggqg4fzy.cloudfront.net/\"/><rule from=\"^http://content\\.findnsave\\.com/\" to=\"https://d10yv8m6mggaen.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find.ly (partial)\" f=\"Find.ly.xml\"><rule from=\"^http://connectssl\\.find\\.ly/\" to=\"https://connectssl.find.ly/\"/></ruleset>", "<ruleset name=\"FindLegalForms.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FindLegalForms.com.xml\"><rule from=\"^http://(?:www\\.)?findlegalforms\\.com/\" to=\"https://www.findlegalforms.com/\"/></ruleset>", "<ruleset name=\"FindRetros.com\" f=\"FindRetros.com.xml\"><securecookie host=\"^(?:w*\\.)?findretros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FindTheBest.com\" default_off=\"failed ruleset test\" f=\"FindTheBest.xml\"><rule from=\"^http://([\\w-]+\\.)?findthebest\\.com/\" to=\"https://$1findthebest.com/\"/></ruleset>", "<ruleset name=\"Find My Order.com\" f=\"Find_My_Order.com.xml\"><securecookie host=\"^(?:www\\.)?findmyorder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find a Grave (partial)\" f=\"Find_a_Grave.xml\"><exclusion pattern=\"^http://www\\.findagrave\\.com/cgi-bin/\"/><rule from=\"^http://(?:secure\\.|www\\.)?findagrave\\.com/\" to=\"https://secure.findagrave.com/\"/></ruleset>", "<ruleset name=\"find Gravy.com\" f=\"Findgravy.com.xml\"><securecookie host=\"^findgravy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fine Art America.com\" platform=\"mixedcontent\" f=\"Fine_Art_America.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.fineartamerica\\.com/\" to=\"https://s3.amazonaws.com/images.fineartamerica.com/\"/><rule from=\"^http://(?:imageslocal|render)\\.fineartamerica\\.com/\" to=\"https://fineartamerica.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fineproxy.org (problematic)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Fineproxy.org-problematic.xml\"><securecookie host=\"^billingproxy\\.fineproxy\\.org$\" name=\".+\"/><rule from=\"^http://billingproxy\\.fineproxy\\.org/\" to=\"https://billingproxy.fineproxy.org/\"/></ruleset>", "<ruleset name=\"Fineproxy.org (partial)\" platform=\"mixedcontent\" f=\"Fineproxy.org.xml\"><securecookie host=\"^\\.(?:forum\\.)?fineproxy\\.org$\" name=\".+\"/><rule from=\"^http://www\\.fineproxy\\.org/\" to=\"https://fineproxy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finka.pl (partial)\" f=\"Finka.pl.xml\"><rule from=\"^http://(?:www\\.)?finka\\.pl/(?=demo/|FrontPage/|images/)\" to=\"https://finka.pl/\"/></ruleset>", "<ruleset name=\"finmozg.ru\" f=\"Finmozg.ru.xml\"><rule from=\"^http://(?:www\\.)?finmozg\\.ru/\" to=\"https://finmozg.ru/\"/></ruleset>", "<ruleset name=\"Finn\" platform=\"mixedcontent\" f=\"Finn.xml\"><exclusion pattern=\"^http://labs\\.finn\\.no/\"/><exclusion pattern=\"^http://kart\\.finn\\.no/\"/><exclusion pattern=\"^http://oppdrag\\.finn\\.no/\"/><exclusion pattern=\"^http://katalog\\.finn\\.no/\"/><exclusion pattern=\"^http://www\\.katalog\\.finn\\.no/\"/><rule from=\"^http://finn\\.no/\" to=\"https://finn.no/\"/><rule from=\"^http://www\\.finn\\.no/\" to=\"https://www.finn.no/\"/></ruleset>", "<ruleset name=\"FinnChristiansen.de\" default_off=\"untrusted root\" f=\"FinnChristiansen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finna.fi\" f=\"Finna.fi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FireEye (partial)\" f=\"FireEye.xml\"><securecookie host=\"^(?:www)?\\.fireeye\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fireeye\\.com/\" to=\"https://www.fireeye.com/\"/><rule from=\"^http://blog\\.fireeye\\.com/[^?]*\" to=\"https://www.fireeye.com/blog/\"/><rule from=\"^http://(csportal|tfs|www2)\\.fireeye\\.com/\" to=\"https://$1.fireeye.com/\"/></ruleset>", "<ruleset name=\"FireFart.at\" f=\"FireFart.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FireHost (partial)\" f=\"FireHost.xml\"><exclusion pattern=\"^http://www\\.firehost\\.com/(?:company|compare|customers|details/[\\w\\-]+\\w|secure-hosting(?:/[^/]?/)?|solutions)?$\"/><securecookie host=\"^(?:.*\\.)?firehost\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?firehost\\.com/(/_CaptchaImage\\.axd|assets/|cart|company/contact|partners|protected/|secure-hosting/[\\w\\-]+/configure)\" to=\"https://$1firehost.com/$1\"/><rule from=\"^http://(developer|my)\\.firehost\\.com/\" to=\"https://$1.firehost.com/\"/></ruleset>", "<ruleset name=\"Firebase.com (partial)\" f=\"Firebase.xml\"><securecookie host=\"^auth\\.firebase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fireclick.com (partial)\" f=\"Fireclick.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firedoglake (partial)\" default_off=\"failed ruleset test\" f=\"Firedoglake.xml\"><securecookie host=\"^members\\.firedoglake\\.com$\" name=\".+\"/><rule from=\"^http://members\\.firedoglake\\.com/\" to=\"https://members.firedoglake.com/\"/></ruleset>", "<ruleset name=\"Firedrive.com (partial)\" f=\"Firedrive.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?firedrive\\.com/+(?!favicon\\.ico)\"/><securecookie host=\"^(?:auth|dl|stats)\\.firedrive\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|dl|media-b\\d+|static|stats|www)\\.)?firedrive\\.com/\" to=\"https://$1firedrive.com/\"/></ruleset>", "<ruleset name=\"Firefox.com\" f=\"Firefox.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firefox.net.cn\" f=\"Firefox.net.cn.xml\"><securecookie host=\"^(?:www\\.)?firefox\\.net\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firefox OS Devices.org\" f=\"Firefox_OS_Devices.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firelady.com\" f=\"Firelady.com.xml\"><securecookie host=\"^\\.firelady\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firemail.de\" f=\"Firemail.de.xml\"><rule from=\"^http://(?:www\\.)?firemail\\.de/\" to=\"https://www.firemail.de/\"/></ruleset>", "<ruleset name=\"Firm24.com\" f=\"Firm24.com.xml\"><securecookie host=\"^(?:www\\.)?firm24\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firmas.lv\" f=\"Firmas.lv.xml\"><rule from=\"^http://(?:www\\.)?firmas\\.lv/\" to=\"https://www.firmas.lv/\"/></ruleset>", "<ruleset name=\"Firmware.netgate.com\" f=\"Firmware.netgate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Central SB.com\" f=\"First-Central-State-Bank.xml\"><securecookie host=\"^(?:^|\\.)firstcentralsb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstDEDIC.ru (partial)\" f=\"FirstDEDIC.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstGiving\" platform=\"mixedcontent\" f=\"FirstGiving.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://)firstgiving\\.com/\" to=\"https://www.firstgiving.com/\"/></ruleset>", "<ruleset name=\"FirstTag.de\" f=\"FirstTag.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstTechFed.com\" f=\"FirstTechFed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstVDS.ru (partial)\" f=\"FirstVDS.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|billmgr)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Amendment Center.org\" default_off=\"mismatched\" f=\"First_Amendment_Center.org.xml\"><securecookie host=\"^\\.firstamendmentcenter\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Amendment Coalition\" default_off=\"expired\" f=\"First_Amendment_Coalition.xml\"><rule from=\"^http://(?:www\\.)?firstamendmentcoalition\\.org/\" to=\"https://firstamendmentcoalition.org/\"/></ruleset>", "<ruleset name=\"First Class Magazine.se (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"First_Class_Magazine.se-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?firstclassmagazine\\.se$\" name=\".+\"/><rule from=\"^http://(www\\.)?firstclassmagazine\\.se/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1firstclassmagazine.se/\"/></ruleset>", "<ruleset name=\"First Class Magazine.se (partial)\" f=\"First_Class_Magazine.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?firstclassmagazine\\.se/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Integrity.com\" f=\"First_Integrity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Look.org\" f=\"First_Look.org.xml\"><securecookie host=\"^\\.firstlook\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firstfloor Elecronix\" default_off=\"expired, self-signed\" f=\"Firstfloor-Electronix.xml\"><rule from=\"^http://(?:www\\.)?firstfloor\\.org/\" to=\"https://firstfloor.org/\"/></ruleset>", "<ruleset name=\"Firsts.com\" f=\"Firsts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FishBase.us\" default_off=\"handshake failure\" f=\"FishBase.us.xml\"><securecookie host=\"^www\\.fishbase\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fishbase\\.us/\" to=\"https://www.fishbase.us/\"/></ruleset>", "<ruleset name=\"FishNet Security.com\" f=\"FishNet_Security.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fishshell.com\" f=\"Fishshell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fishwrapper.com (false MCB)\" platform=\"mixedcontent\" f=\"Fishwrapper.com-falsemixed.xml\"><securecookie host=\"^\\.www\\.fishwrapper.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fishwrapper.com (partial)\" f=\"Fishwrapper.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?fishwrapper\\.com/+(?!favicon\\.ico)\"/><rule from=\"^http://((?:cdn-assets|cdn-media|www)\\.)?fishwrapper\\.com/\" to=\"https://$1fishwrapper.com/\"/></ruleset>", "<ruleset name=\"Fiskeriverket.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fiskeriverket.se.xml\"><rule from=\"^http://fiskeriverket\\.se/\" to=\"https://www.fiskeriverket.se/\"/><rule from=\"^http://www\\.fiskeriverket\\.se/\" to=\"https://www.fiskeriverket.se/\"/></ruleset>", "<ruleset name=\"FitBit\" f=\"FitBit.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FitStudio.com (partial)\" f=\"FitStudio.com.xml\"><securecookie host=\".*\\.fitstudio\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|gear|polls|sweeps|www)\\.)?fitstudio\\.com/\" to=\"https://$1fitstudio.com/\"/><rule from=\"^http://fitnessconnect\\.fitstudio\\.com/(?=favicon\\.ico|files/|misc/|sites/)\" to=\"https://fitstudio.ideafit.com/\"/></ruleset>", "<ruleset name=\"Fitness Market (partial)\" f=\"Fitness_Market.xml\"><rule from=\"^http://(www\\.)?fitnessmarket\\.com\\.au/(favicon\\.ico|shop/(?:(?:antibot_)?image\\.php|cart\\.php\\?mode=checkout|images/|skin/|var/))\" to=\"https://$1fitnessmarket.com.au/$2\"/></ruleset>", "<ruleset name=\"Fitocracy (partial)\" f=\"Fitocracy.xml\"><securecookie host=\"^www\\.fitocracy\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www.fitocracy.com/knowledge/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fiuza.me\" default_off=\"failed ruleset test\" f=\"Fiuza.me.xml\"><rule from=\"^http://fiuza\\.me/\" to=\"https://fiuza.me/\"/></ruleset>", "<ruleset name=\"FiveTV (partial)\" f=\"FiveTV.xml\"><rule from=\"^http://oas\\.five\\.tv/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"FiveThirtyEight.com (false MCB)\" platform=\"mixedcontent\" f=\"FiveThirtyEight.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FiveThirtyEight.com (partial)\" f=\"FiveThirtyEight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FixMyStreet.com\" f=\"FixMyStreet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FixUnix.com (partial)\" f=\"FixUnix.xml\"><rule from=\"^http://c\\.fixunix\\.com/\" to=\"https://d2yvm6gxdmpjqc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fix Ubuntu.com\" f=\"Fix_Ubuntu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fixer.io (partial)\" f=\"Fixer.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fixing Tao.com\" f=\"Fixing_Tao.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flagrate.org\" f=\"Flagrate.org.xml\"><securecookie host=\"^\\.flagrate\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flameeyes.eu\" f=\"Flameeyes.xml\"><securecookie host=\"^blog\\.flameeyes\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlamingSpork.com (partial)\" f=\"FlamingSpork.com.xml\"><exclusion pattern=\"^http://bugzilla\\.flamingspork\\.com/+(?!$|\\?)\"/><rule from=\"^http://bugzilla\\.flamingspork\\.com/.*\" to=\"https://bugs.launchpad.net/memberdb\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flash-mp3-player.net (partial)\" default_off=\"mismatch\" f=\"Flash-mp3-player.net.xml\"><rule from=\"^http://flash-mp3-player\\.net/\" to=\"https://flash-mp3-player.net/\"/></ruleset>", "<ruleset name=\"FlashGot.net\" f=\"FlashGot.net.xml\"><securecookie host=\"^flashgot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flashback.org\" f=\"Flashback.org.xml\"><rule from=\"^http://flashback\\.org/\" to=\"https://www.flashback.org/\"/><rule from=\"^http://www\\.flashback\\.org/\" to=\"https://www.flashback.org/\"/><rule from=\"^http://static\\.flashback\\.org/\" to=\"https://static.flashback.org/\"/></ruleset>", "<ruleset name=\"flashrom.org\" default_off=\"mismatch\" platform=\"cacert\" f=\"Flashrom.xml\"><securecookie host=\"^flashrom\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flashtalking (partial)\" f=\"Flashtalking.xml\"><securecookie host=\"^\\.flashtalking\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn|servedby)\\.)?flashtalking\\.com/\" to=\"https://$1flashtalking.com/\"/><rule from=\"^http://(www\\.)?flashtalking\\.net/\" to=\"https://$1flashtalking.net/\"/></ruleset>", "<ruleset name=\"Flaska.net (partial)\" platform=\"cacert\" f=\"Flaska.net.xml\"><securecookie host=\"^projects\\.flaska\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?flaska\\.net/\" to=\"https://www.flaska.net/\"/><rule from=\"^http://(projects|trojita)\\.flaska\\.net/\" to=\"https://$1.flaska.net/\"/></ruleset>", "<ruleset name=\"Flatline Security.com\" f=\"Flatline_Security.com.xml\"><securecookie host=\"^\\.flatlinesecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flattr.net (partial)\" f=\"Flattr.net.xml\"><rule from=\"^http://(?:www\\.)?flattr\\.net/\" to=\"https://flattr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flattr.com (partial)\" f=\"Flattr.xml\"><securecookie host=\"^(?:.*\\.)?flattr\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flavors.me\" f=\"Flavors.me.xml\"><rule from=\"^http://flavors\\.me/\" to=\"https://flavors.me/\"/></ruleset>", "<ruleset name=\"Fleet Networks (partial)\" default_off=\"failed ruleset test\" f=\"Fleet_Networks.xml\"><rule from=\"^http://(?:www\\.)?hosting\\.fleetnetworks\\.net/csa/((?:clientarea|register)\\.php|images/|includes/|templates/)\" to=\"https://hosting.fleetnetworks.net/csa/$1\"/></ruleset>", "<ruleset name=\"Flex Investments\" default_off=\"connection refused\" f=\"Flex_Investments.xml\"><securecookie host=\"^(?:w*\\.)?flexinvestments\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flexport.com\" f=\"Flexport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flic.kr\" f=\"Flic.kr.xml\"><securecookie host=\"^\\.flic\\.kr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flickr.net\" f=\"Flickr.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flickr.com\" f=\"Flickr.xml\"><securecookie host=\".*\\.flickr\\.com$\" name=\"^(?!current_identity$).+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flightaware\" f=\"Flightaware.xml\"><rule from=\"^http://((?:[A-Za-z][A-Za-z]|photos|www)\\.)?flightaware\\.com/\" to=\"https://$1flightaware.com/\"/></ruleset>", "<ruleset name=\"Flightglobal (mismatches)\" default_off=\"mismatch\" f=\"Flightglobal-mismatches.xml\"><rule from=\"^http://(?:www\\.)flightglobalimages\\.com/\" to=\"https://www.flightglobalimages.com/\"/></ruleset>", "<ruleset name=\"Flightglobal (partial)\" platform=\"mixedcontent\" f=\"Flightglobal.xml\"><securecookie host=\"^.*\\.flightglobal\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?flightglobal\\.com/\" to=\"https://www.flightglobal.com/\"/><rule from=\"^http://pro\\.flightglobal\\.com/\" to=\"https://pro.flightglobal.com/\"/><rule from=\"^http://(www\\.)?flightglobalshop\\.com/(new_image|skin)s/\" to=\"https://$1flightglobalshop.com/$1s/\"/></ruleset>", "<ruleset name=\"Flinq.de (redirects)\" default_off=\"redirect loops\" f=\"Flinq.de.xml\"><rule from=\"^http://(?:www\\.)?flinq\\.de/\" to=\"https://www.flinq.de/\"/></ruleset>", "<ruleset name=\"Flinto.com (partial)\" f=\"Flinto.com.xml\"><exclusion pattern=\"^http://blog\\.flinto\\.com/(?!assets/|favicon\\.ico)\"/><securecookie host=\"^www\\.flinto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?flinto\\.com/\" to=\"https://www.flinto.com/\"/><rule from=\"^http://blog\\.flinto\\.com/\" to=\"https://d2xxitgvta5ie.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Flipagram.com\" f=\"Flipagram.com.xml\"><securecookie host=\"^(?:www\\.)?flipagram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flipboard.com (partial)\" f=\"Flipboard.xml\"><securecookie host=\"^(?:accounts|editor)\\.flipboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flipkart.com (partial)\" f=\"Flipkart.com.xml\"><exclusion pattern=\"^http://www\\.flipkart\\.com/(?!(?:account|s/contact|viewcart)(?:$|[?/])|favicon\\.ico)\"/><securecookie host=\"^seller\\.flipkart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flippa.com\" f=\"Flippa.xml\"><securecookie host=\"^flippa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flite (partial)\" f=\"Flite.xml\"><securecookie host=\"^\\.flite\\.com$\" name=\"^__uuc2$\"/><securecookie host=\"^console\\.flite\\.com$\" name=\".+\"/><rule from=\"^http://(console|[prst])\\.flite\\.com/\" to=\"https://$1.flite.com/\"/><rule from=\"^http://press\\.flite\\.com/(display/|favicon\\.ico|layout/|storage/|universal/)\" to=\"https://pressflite.squarespace.com/$1\"/></ruleset>", "<ruleset name=\"Flitto.com\" f=\"Flitto.com.xml\"><securecookie host=\"^www\\.flitto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?flitto\\.com/\" to=\"https://www.flitto.com/\"/></ruleset>", "<ruleset name=\"flix123.com\" f=\"Flix123.com.xml\"><securecookie host=\"^flix123\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlixBus\" f=\"FlixBus.xml\"><securecookie host=\"^.*\\.flixbus\\..*$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlixDen\" f=\"FlixDen.xml\"><securecookie host=\"^(?:www\\.)?flixden\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flixster (partial)\" f=\"Flixster.xml\"><securecookie host=\"^community\\.flixster\\.com$\" name=\".+\"/><rule from=\"^http://(?:instart[02]|content8)\\.flixster\\.com/\" to=\"https://content6.flixster.com/\"/><rule from=\"^http://(?:content9|instart[13])\\.flixster\\.com/\" to=\"https://content7.flixster.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Floating Hospital.org\" f=\"Floating_Hospital.org.xml\"><securecookie host=\"^www\\.floatinghospital\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?floatinghospital\\.org/\" to=\"https://www.floatinghospital.org/\"/></ruleset>", "<ruleset name=\"Flocabulary.com\" f=\"Flocabulary.com.xml\"><securecookie host=\"^www\\.flocabulary\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flockport.com\" f=\"Flockport.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Floek.net\" default_off=\"failed ruleset test\" f=\"Floek.net.xml\"><securecookie host=\"^www\\.floek\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:binefreund\\.de|floek\\.net)/\" to=\"https://www.floek.net/\"/><rule from=\"^http://schwimm\\.binefreund\\.de/\" to=\"https://schwimm.binefreund.de/\"/></ruleset>", "<ruleset name=\"FlokiNET.is (partial)\" f=\"FlokiNET.is.xml\"><exclusion pattern=\"^http://(www\\.)?billing\\.flokinet\\.com/?$\"/><exclusion pattern=\"^http://(www\\.)?billing\\.flokinet\\.com/(announcements|downloads|index|knowledgebase)\\.php\"/><securecookie host=\"^(?!billing\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Floor64 (mismatches)\" default_off=\"mismatch\" f=\"Floor64-mismatches.xml\"><rule from=\"^http://listserv\\.techdirt\\.com/\" to=\"https://listserv.techdirt.com/\"/></ruleset>", "<ruleset name=\"Floor64 (partial)\" f=\"Floor64.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Florida Center for Library Automation (partial)\" f=\"Florida-Center-for-Library-Automation.xml\"><rule from=\"^http://(fclaweb|metalib)\\.fcla\\.edu/\" to=\"https://$1.fcla.edu/\"/></ruleset>", "<ruleset name=\"Florida Institute of Technology (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Florida-Institute-of-Technology.xml\"><rule from=\"^http://(?:www\\.)?fit\\.edu/\" to=\"https://www.fit.edu/\"/><rule from=\"^http://(411|(asset|ca|c|event|list|pantherpas|service|track)s|alumni|media|online|spam|webmail)\\.fit\\.edu/\" to=\"https://$1.fit.edu/\"/><rule from=\"^http://(?:go|my|portal\\.my)\\.fit\\.edu/\" to=\"https://portal.my.fit.edu/\"/></ruleset>", "<ruleset name=\"Florida Today (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Florida_Today.xml\"><securecookie host=\"^(?:.*\\.)fl(?:atd|oridatoda)y\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.flatdy\\.net/\" to=\"https://ads.flatdy.net/\"/><rule from=\"^http://(?:(?:origin-)?cmsimg\\.)?floridatoday\\.com/\" to=\"https://www.floridatoday.com/\"/><rule from=\"^http://((?:origin-)?www)\\.floridatoday\\.com/\" to=\"https://$1.floridatoday.com/\"/><rule from=\"^http://deals\\.floridatoday\\.com/(?:$|\\?)\" to=\"https://brevardco.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://(?:deals|search)\\.floridatoday\\.com/\" to=\"https://brevardco.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"FlowBTC.com\" f=\"FlowBTC.com.xml\"><rule from=\"^http://(?:www\\.)?flowbtc\\.com/.*\" to=\"https://trader.flowbtc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlowingData.com (false MCB)\" platform=\"mixedcontent\" f=\"FlowingData.com-falsemixed.xml\"><securecookie host=\"^\\.flowingdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlowingData.com (partial)\" default_off=\"failed ruleset test\" f=\"FlowingData.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?flowingdata\\.com/+(?!\\?custom-css=|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:jobs|media|www)\\.)?flowingdata\\.com/\" to=\"https://$1flowingdata.com/\"/></ruleset>", "<ruleset name=\"Flownative.com\" default_off=\"missing certificate chain\" f=\"Flownative.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flowplayer.org (partial)\" f=\"Flowplayer.org.xml\"><rule from=\"^http://releases\\.flowplayer\\.org/\" to=\"https://releases.flowplayer.org/\"/></ruleset>", "<ruleset name=\"Flowtab.com\" default_off=\"failed ruleset test\" f=\"Flowtab.com.xml\"><securecookie host=\"^(?:w*\\.)?flowtab\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?flowtab\\.com/\" to=\"https://$1flowtab.com/\"/><rule from=\"^http://cdn\\.flowtab\\.mobi/\" to=\"https://dxluo93d48m7d.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fluctis Hosting.com (partial)\" f=\"Fluctis_Hosting.com.xml\"><securecookie host=\"^\\.fluctishosting\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?fluctishosting\\.com/(?!whmcs/(?:announcements\\.php|index\\.php)?(?:$|[?/]))\" to=\"https://fluctishosting.com/\"/></ruleset>", "<ruleset name=\"Fluendo (partial)\" f=\"Fluendo.xml\"><rule from=\"^http://(www\\.)?fluendo\\.com/(media/|press/\\w)\" to=\"https://$1fluendo.com/$2\"/></ruleset>", "<ruleset name=\"Fluid Hosting.com (partial)\" f=\"Fluid_Hosting.com.xml\"><securecookie host=\"^support\\.fluidhosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flurry (problematic)\" default_off=\"mismatched\" f=\"Flurry-problematic.xml\"><securecookie host=\"^blog\\.flurry\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.flurry\\.com/\" to=\"https://blog.flurry.com/\"/></ruleset>", "<ruleset name=\"Flurry\" f=\"Flurry.xml\"><securecookie host=\"^dev\\.flurry\\.com$\" name=\".+\"/><rule from=\"^http://(cdn|dev)\\.flurry\\.com/\" to=\"https://$1.flurry.com/\"/></ruleset>", "<ruleset name=\"FlutterToday.com (partial)\" f=\"FlutterToday.com.xml\"><rule from=\"^http://(www\\.)?fluttertoday\\.com/(?=deals/(?:account(?:$|[?/])|flavor/css/|wp-content/|wp-includes/)|favicon\\.ico)\" to=\"https://$1fluttertoday.com/\"/></ruleset>", "<ruleset name=\"F.lux\" f=\"Flux.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FluxBB.org\" f=\"FluxBB.xml\"><securecookie host=\"^\\.fluxbb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FluxCards.de\" f=\"FluxCards.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fluxx.io (partial)\" f=\"Fluxx.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flyasite.com (partial)\" f=\"Flyasite.com.xml\"><rule from=\"^http://assets[01]\\.flyasite\\.com/\" to=\"https://d1gzjld104oq4p.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Flybuys\" f=\"Flybuys.xml\"><rule from=\"^http://(www\\.)?flybuys\\.com\\.au/\" to=\"https://www.flybuys.com.au/\"/></ruleset>", "<ruleset name=\"FlyersRights.org\" default_off=\"failed ruleset test\" f=\"FlyersRights.org.xml\"><rule from=\"^http://(?:anything\\.|www\\.)?flyersrights\\.(?:com|org)/\" to=\"https://anything.flyersrights.com/\"/></ruleset>", "<ruleset name=\"Flyertalk.com\" platform=\"mixedcontent\" f=\"Flyertalk.com.xml\"><rule from=\"^http://(?:www\\.)?flyertalk\\.com/\" to=\"https://www.flyertalk.com/\"/></ruleset>", "<ruleset name=\"Flyertown\" f=\"Flyertown.xml\"><securecookie host=\"^www\\.flyertown\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flying Cameras\" f=\"Flying_Cameras.xml\"><securecookie host=\"^\\.(?:www\\.)?flyingcameras\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flying Meat (partial)\" f=\"Flying_Meat.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?flyingmeat\\.com/\" to=\"https://secure.flyingmeat.com/\"/></ruleset>", "<ruleset name=\"Flyn.org\" f=\"Flyn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fmod.org\" default_off=\"mismatch\" f=\"Fmod.xml\"><securecookie host=\"^(?:www\\.)?fmod\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fnac (partial)\" f=\"Fnac.xml\"><rule from=\"^http://(?:www\\.)?fnacspectacles\\.com/(aide\\.do(?:$|\\?)|banniere/|css/|images/|js/|static/)\" to=\"https://www.fnacspectacles.com/$1\"/></ruleset>", "<ruleset name=\"fnfismd.com (partial)\" default_off=\"failed ruleset test\" f=\"Fnfismd.com.xml\"><rule from=\"^http://carenet\\.fnfismd\\.com/\" to=\"https://carenet.fnfismd.com/\"/></ruleset>", "<ruleset name=\"FoECV LiaB.com\" default_off=\"expired\" f=\"FoECV_LiaB.com.xml\"><rule from=\"^http://(?:www\\.)?foecvliab\\.com/\" to=\"https://www.foecvliab.com/\"/></ruleset>", "<ruleset name=\"Fobos.de\" f=\"Fobos.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"focaljet.com\" default_off=\"failed ruleset test\" f=\"Focaljet.com.xml\"><securecookie host=\"^\\.focaljet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Focus.de (partial)\" f=\"Focus.de.xml\"><exclusion pattern=\"^http://m\\.focus\\.de/+(?!favicon\\.ico|resources/)\"/><exclusion pattern=\"^http://www\\.focus\\.de/+(?!resources/)\"/><rule from=\"^http://p4\\.focus\\.de/\" to=\"https://p0.focus.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Focus Camera.com\" f=\"Focus_Camera.com.xml\"><securecookie host=\"^\\.(?:www\\.)?focuscamera\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Focus on Learning Center.com\" f=\"Focus_on_Learning_Center.com.xml\"><securecookie host=\"^(?:www\\.)?focusonlearningcenter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FodevareWatch\" f=\"FodevareWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoeBuD e.V.\" f=\"FoeBuD.xml\"><securecookie host=\"^\\.(?:shop\\.)?foebud\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?foebud\\.org/\" to=\"https://$1foebud.org/\"/></ruleset>", "<ruleset name=\"FogBugz.com\" f=\"FogBugz.com.xml\"><securecookie host=\"^d2l\\.fogbugz\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fogbugz\\.com/.*\" to=\"https://www.fogcreek.com/fogbugz/\"/><rule from=\"^http://d2l\\.fogbugz\\.com/\" to=\"https://d2l.fogbugz.com/\"/></ruleset>", "<ruleset name=\"Fog Creek\" f=\"Fog_Creek.xml\"><securecookie host=\"^(?:secure\\.|\\.)?fogcreek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fokus Bank\" default_off=\"failed ruleset test\" f=\"Fokus.no.xml\"><rule from=\"^http://fokus\\.no/\" to=\"https://www.fokus.no/\"/><rule from=\"^http://www\\.fokus\\.no/\" to=\"https://www.fokus.no/\"/></ruleset>", "<ruleset name=\"Fold.cm\" f=\"Fold.cm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoldingCoin.net\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"FoldingCoin.net.xml\"><securecookie host=\"^www\\.foldingcoin\\.net$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Folding Forum.org\" f=\"Folding_Forum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foliovision.com\" f=\"Foliovision.com.xml\"><securecookie host=\"^foliovision\\.com$\" name=\".+\"/><rule from=\"^http://www\\.foliovision\\.com/\" to=\"https://foliovision.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Folkets.dk\" f=\"Folkets.dk.xml\"><securecookie host=\"(?:www)?\\.folkets\\.dk\" name=\".*\"/><rule from=\"^http://(?:www\\.)?folkets\\.dk/\" to=\"https://www.folkets.dk/\"/></ruleset>", "<ruleset name=\"Folksam.se\" platform=\"mixedcontent\" f=\"Folksam.se.xml\"><rule from=\"^http://www\\.folksam\\.se/\" to=\"https://www.folksam.se/\"/><rule from=\"^http://folksam\\.se/\" to=\"https://www.folksam.se/\"/></ruleset>", "<ruleset name=\"fomori.org\" default_off=\"self-signed\" f=\"Fomori.org.xml\"><rule from=\"^http://(?:www\\.)?fomori\\.org/\" to=\"https://fomori.org/\"/></ruleset>", "<ruleset name=\"FontMarketplace.com (partial)\" f=\"FontMarketplace.com.xml\"><rule from=\"^http://(?:www\\.)?fontmarketplace\\.com/+(?=$|\\?)\" to=\"https://www.fonts.com/\"/></ruleset>", "<ruleset name=\"Fontdeck.com (partial)\" f=\"Fontdeck.xml\"><exclusion pattern=\"http://fontdeck\\.com/(?!images/|login$|register$|stylesheets/)\"/><rule from=\"^http://www\\.fontdeck\\.com/\" to=\"https://fontdeck.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fonticons.com (partial)\" f=\"Fonticons.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fonts.com (javascript loop)\" default_off=\"js redirect to http\" f=\"Fonts.com-noscript.xml\"><rule from=\"^http://www\\.fonts\\.com/(?!$)\" to=\"https://www.fonts.com/\"/></ruleset>", "<ruleset name=\"Fonts.com (partial)\" f=\"Fonts.com.xml\"><exclusion pattern=\"^http://fast10\\.fonts\\.com/(?!(?:Account/)?LogOn(?:$|[?/]))\"/><exclusion pattern=\"^http://webfonts\\.fonts\\.com/(?![Cc]ontent/|min/|.+/Subscription/)\"/><exclusion pattern=\"^http://www\\.fonts\\.com/+(?!favicon\\.ico|(?:customer/login-page|customer-signin-page|secure/(?:become-a-member|reset-password|sign-in))(?:$|[?/]))\"/><rule from=\"^http://www\\.webfonts\\.fonts\\.com/\" to=\"https://webfonts.fonts.com/\"/><rule from=\"^http://www0\\d\\.fonts\\.com/\" to=\"https://www.fonts.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fonts.net (partial)\" f=\"Fonts.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fontspring (partial)\" f=\"Fontspring.xml\"><rule from=\"^http://www\\.fontspring\\.com/fonts/(?=$|\\?)\" to=\"https://www.fontspring.com/fonts\"/><rule from=\"^http://(www\\.)?fontspring\\.com/(?=account(?:$|[?/])|cache_assets/|favicon\\.ico|fnt_imgs/|(?:fonts|fresh)/*(?:$|\\?)|poster_imgs/|presentation_20140401/|tools/)\" to=\"https://$1fontspring.com/\"/><rule from=\"^http://cdn\\d\\.fontspring\\.com/\" to=\"https://www.fontspring.com/\"/></ruleset>", "<ruleset name=\"FooFighters\" default_off=\"failed ruleset test\" f=\"FooFighters.xml\"><securecookie host=\"^(?:.+\\.)?foofighters\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?foofighters\\.com/\" to=\"https://www.foofighters.com/\"/></ruleset>", "<ruleset name=\"Foocorp.net (partial)\" default_off=\"expired, untrusted root\" f=\"Foocorp.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food Allergy Initiative (mismatch)\" default_off=\"mismatch\" f=\"Food-Allergy-Initiative.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoodSafety.gov\" default_off=\"Akamai\" f=\"FoodSafety.gov.xml\"><rule from=\"^http://(?:www\\.)?foodsafety\\.gov/\" to=\"https://www.foodsafety.gov/\"/></ruleset>", "<ruleset name=\"Food Hub\" default_off=\"failed ruleset test\" f=\"Food_Hub.xml\"><securecookie host=\"^(?:www\\.)?foodhub\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food Protection Task Force.com (partial)\" f=\"Food_Protection_Task_Force.com.xml\"><rule from=\"^http://(www\\.)?foodprotectiontaskforce\\.com/(dfsr2/|member(?:$|[?/]))\" to=\"https://$1foodprotectiontaskforce.com/$2\"/></ruleset>", "<ruleset name=\"Food & Water Watch (partial)\" f=\"Food_and_Water_Watch.xml\"><securecookie host=\"^(?:w*\\.)?foodandwaterwatch\\.org$\" name=\".+\"/><rule from=\"^http://act\\.foodandwaterwatch\\.org/site/Donation\" to=\"https://secure3.convio.net/fww/site/Donation\"/><rule from=\"^http://(www\\.)?foodandwaterwatch\\.org/\" to=\"https://$1foodandwaterwatch.org/\"/></ruleset>", "<ruleset name=\"Food Allergy.org\" f=\"Foodallergy.org.xml\"><securecookie host=\"^(?:www\\.)?foodallergy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foodl.org\" f=\"Foodl.org.xml\"><securecookie host=\"^(?:beta\\.|deploy\\.)?foodl\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foodl\\.org/\" to=\"https://foodl.org/\"/><rule from=\"^http://(beta|deploy)\\.foodl\\.org/\" to=\"https://$1.foodl.org/\"/></ruleset>", "<ruleset name=\"Foodler\" f=\"Foodler.com.xml\"><rule from=\"^http://(www\\.)?foodler\\.com/\" to=\"https://www.foodler.com/\"/></ruleset>", "<ruleset name=\"Fool.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fool.com-falsemixed.xml\"><rule from=\"^http://wiki\\.fool\\.com/\" to=\"https://wiki.fool.com/\"/><rule from=\"^http://(?:www\\.)?marketfoolery\\.com/[^?]*\" to=\"https://wiki.fool.com/MarketFoolery\"/></ruleset>", "<ruleset name=\"Foolz.us\" f=\"Foolz.us.xml\"><rule from=\"^http://((?:archive|blog|www)\\.)?foolz\\.us/\" to=\"https://$1foolz.us/\"/></ruleset>", "<ruleset name=\"Foot Locker (partial)\" default_off=\"failed ruleset test\" f=\"Foot_Locker.xml\"><securecookie host=\"^.*\\.footlocker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?footlocker\\.com/\" to=\"https://www.footlocker.com/\"/><rule from=\"^http://(images|m)\\.footlocker\\.com/\" to=\"https://$1.footlocker.com/\"/></ruleset>", "<ruleset name=\"Foot Locker Canada\" f=\"Foot_Locker_Canada.xml\"><securecookie host=\"^.*\\.footlocker\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?footlocker\\.ca/\" to=\"https://www.footlocker.ca/\"/></ruleset>", "<ruleset name=\"Foot Locker.Eu (partial)\" f=\"Foot_Locker_Europe.xml\"><rule from=\"^http://(?:www\\.)?footlocker\\.eu/(\\w\\w/\\w\\w)/(?=k/|s/|ShoppingCart\\.aspx)\" to=\"https://www.footlocker.eu/$1/secure/\"/><rule from=\"^http://(?:www\\.)?footlocker\\.eu/(?=ns/|secure/|WebResource\\.axd)\" to=\"https://www.footlocker.eu/\"/></ruleset>", "<ruleset name=\"Foot Locker, Inc.\" f=\"Foot_Locker_Inc.xml\"><rule from=\"^http://(?:www\\.)?footlocker-inc\\.com/\" to=\"https://www.footlocker-inc.com/\"/></ruleset>", "<ruleset name=\"Footaction USA\" f=\"Footaction_USA.xml\"><securecookie host=\"^.*\\.footaction\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?footaction\\.com/\" to=\"https://www.footaction.com/\"/><rule from=\"^http://(images|m)\\.footaction\\.com/\" to=\"https://$1.footaction.com/\"/></ruleset>", "<ruleset name=\"Football Fanatics (partial)\" f=\"Football_Fanatics.xml\"><exclusion pattern=\"^http://(?!images\\.)(?:\\w+\\.)?footballfanatics\\.com/(?!account/|checkout/|css/)\"/><rule from=\"^http://footballfanatics\\.com/\" to=\"https://www.footballfanatics.com/\"/><rule from=\"^http://(\\w+)\\.footballfanatics\\.com/\" to=\"https://$1.footballfanatics.com/\"/></ruleset>", "<ruleset name=\"footholds.net\" f=\"Footholds.net.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([\\w-]+)\\.footholds\\.net/\" to=\"https://$1.footholds.net/\"/></ruleset>", "<ruleset name=\"footprint.net (partial)\" f=\"Footprint.net.xml\"><rule from=\"^http://secure\\.footprint\\.net/\" to=\"https://secure.footprint.net/\"/></ruleset>", "<ruleset name=\"Forbes.com (partial)\" f=\"Forbes.com.xml\"><securecookie host=\"^www\\.newsletters\\.forbes\\.com$\" name=\"^fc\\w+$\"/><rule from=\"^http://(?:www\\.)?newsletters\\.forbes\\.com/(?=DRHM/|favicon\\.ico|store\\?Action=(?:AddItemToRequisition|DisplayPage)(?:$|[?/]))\" to=\"https://www.newsletters.forbes.com/\"/><rule from=\"^http://(e-subscriptions|safesource|secureads)\\.forbes\\.com/\" to=\"https://$1.forbes.com/\"/></ruleset>", "<ruleset name=\"Forbes.com (expired)\" default_off=\"expired\" f=\"Forbes_Magazine-mixed.xml\"><rule from=\"^http://blogs\\.forbes\\.com/\" to=\"https://blogs.forbes.com/\"/></ruleset>", "<ruleset name=\"Forbes Magazine.com\" platform=\"mixedcontent\" default_off=\"mismatch, self-signed\" f=\"Forbes_Magazine.xml\"><securecookie host=\".+\\.forbesmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forbrukerraadet\" default_off=\"failed ruleset test\" f=\"Forbrukerraadet.xml\"><rule from=\"^http://(?:www\\.)?forbrukerportalen\\.no/\" to=\"https://forbrukerportalen.no/\"/></ruleset>", "<ruleset name=\"Ford (partial)\" f=\"Ford.xml\"><exclusion pattern=\"^http://media\\.ford\\.com/(?!graphics/|images/|include/)\"/><rule from=\"^http://(developer|media)\\.ford\\.com/\" to=\"https://$1.ford.com/\"/></ruleset>", "<ruleset name=\"Fordela.com\" default_off=\"failed ruleset test\" f=\"Fordela.com.xml\"><securecookie host=\".*\\.fordela\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fordela\\.com/\" to=\"https://www.fordela.com/\"/><rule from=\"^http://(goldmember|vms)\\.fordela\\.com/\" to=\"https://$1.fordela.com/\"/></ruleset>", "<ruleset name=\"ForeSee Results.com\" f=\"ForeSee_Results.com.xml\"><securecookie host=\"^(?:portal2)?\\.foreseeresults\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foreseeresults\\.com/\" to=\"https://www.foreseeresults.com/\"/><rule from=\"^http://(events|portal2)\\.foreseeresults\\.com/\" to=\"https://$1.foreseeresults.com/\"/></ruleset>", "<ruleset name=\"Forecast.io\" f=\"Forecast.io.xml\"><securecookie host=\"^developer\\.forecast\\.io$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForeignPolicy.com (partial)\" f=\"ForeignPolicy.com.xml\"><rule from=\"^http://blog\\.foreignpolicy\\.com/+(?:\\?.*)?$\" to=\"https://foreignpolicy.com/channel/passport/\"/><rule from=\"^http://ideas\\.foreignpolicy\\.com/+(?=$|\\?)\" to=\"https://foreignpolicy.com/\"/><rule from=\"^http://thecable\\.foreignpolicy\\.com/+(?:\\?.*)?$\" to=\"https://foreignpolicy.com/channel/the-cable/\"/><rule from=\"^http://theturtlebay\\.foreignpolicy\\.com/+(?:\\?.*)?$\" to=\"https://foreignpolicy.com/category/turtle-bay/\"/><rule from=\"^http://(?:blog|thecable|theturtlebay)\\.foreignpolicy\\.com/\" to=\"https://foreignpolicy.com/\"/><rule from=\"^http://ideas\\.foreignpolicy\\.com/\" to=\"https://foreignpolicy.com/\"/><rule from=\"^http://jobs\\.foreignpolicy\\.com/.*\" to=\"https://foreignpolicy.com/employment-opportunities/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foreign Affairs.com (partial)\" f=\"Foreign_Affairs.com.xml\"><securecookie host=\"^\\.foreignaffairs\\.com$\" name=\"^(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.foreignaffairs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foreningen for Dansk Internethandel (partial)\" f=\"Foreningen_for_Dansk_Internethandel.xml\"><rule from=\"^http://cookie\\.fdih\\.dk/\" to=\"https://cookie.fdih.dk/\"/></ruleset>", "<ruleset name=\"Forensic Institute.nl\" f=\"Forensic_Institute.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://forensicinstitute\\.nl/\" to=\"https://www.forensicinstitute.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foresight.org\" f=\"Foresight.org.xml\"><securecookie host=\"^\\.foresight\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foresight\\.org/\" to=\"https://www.foresight.org/\"/></ruleset>", "<ruleset name=\"Forest Sangha\" f=\"ForestSangha.org.xml\"><securecookie host=\"^(?:www)?(?:\\.)?forestsangha\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foresters\" default_off=\"failed ruleset test\" f=\"Foresters.xml\"><securecookie host=\"^\\.foresters\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foresters\\.biz/.*\" to=\"https://www.foresters.com/\"/><rule from=\"^http://foresters\\.com/.*\" to=\"https://www.foresters.com/\"/><rule from=\"^http://www\\.foresters\\.com/\" to=\"https://www.foresters.com/\"/></ruleset>", "<ruleset name=\"Forever New\" platform=\"mixedcontent\" f=\"ForeverNew.xml\"><rule from=\"^http://(www\\.)?forevernew\\.com\\.au/\" to=\"https://www.forevernew.com.au/\"/></ruleset>", "<ruleset name=\"Forex-Metal\" f=\"Forex-Metal.xml\"><securecookie host=\"^forex-metal\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?forex-metal\\.com/\" to=\"https://forex-metal.com/\"/></ruleset>", "<ruleset name=\"Forex.com (partial)\" f=\"Forex.com.xml\"><securecookie host=\"^(?:myaccount|(?:practic|secur)e(?:15)?|previewtrade)\\.forex\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?forex\\.com/\" to=\"https://secure.forex.com/\"/><rule from=\"^http://(apply|assets|myaccount|(?:practic|secur)e(?:15)?|previewtrade)\\.forex\\.com/\" to=\"https://$1.forex.com/\"/></ruleset>", "<ruleset name=\"ForexCT (partial)\" f=\"ForexCT.xml\"><exclusion pattern=\"^http://(?:cn\\.|www\\.)?forexct\\.com/(?![iI]mages/|styles/)\"/><securecookie host=\"^forexctlogin\\.tradenetworks\\.com$\" name=\".+\"/><rule from=\"^http://forexct\\.com/\" to=\"https://www.forexct.com/\"/><rule from=\"^http://(cn|www)\\.forexct\\.com/\" to=\"https://$1.forexct.com/\"/><rule from=\"^http://forexctlogin\\.tradenetworks\\.com/\" to=\"https://forexctlogin.tradenetworks.com/\"/></ruleset>", "<ruleset name=\"ForgeFields.com (mismatched)\" default_off=\"mismatched\" f=\"ForgeFields.com-problematic.xml\"><securecookie host=\"^\\.?shop\\.forgefields\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.forgefields\\.com/\" to=\"https://shop.forgefields.com/\"/></ruleset>", "<ruleset name=\"ForgeFields.com (partial)\" f=\"ForgeFields.com.xml\"><securecookie host=\"^(?:www)?\\.forgefields\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"forgifs.com\" f=\"Forgifs.com.xml\"><securecookie host=\"^\\.forgifs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?4gifs\\.com/+\" to=\"https://forgifs.com/\"/><rule from=\"^http://(www\\.)?forgifs\\.com/\" to=\"https://$1forgifs.com/\"/></ruleset>", "<ruleset name=\"ForgottenLands.eu\" f=\"ForgottenLands.eu.xml\"><securecookie host=\"^(?:vote)?\\.forgottenlands\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?forgottenlands\\.eu/\" to=\"https://www.forgottenlands.eu/\"/><rule from=\"^http://vote\\.forgottenlands\\.eu/\" to=\"https://vote.forgottenlands.eu/\"/></ruleset>", "<ruleset name=\"Foris Wine\" f=\"ForisWine.xml\"><rule from=\"^http://(?:www\\.)?foriswine\\.com/\" to=\"https://www.foriswine.com/\"/></ruleset>", "<ruleset name=\"FormAssembly.com (partial)\" f=\"FormAssembly.com.xml\"><securecookie host=\"^.+\\.formassembly\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?formassembly\\.com/\" to=\"https://www3.formassembly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FormKeep.com\" f=\"FormKeep.com.xml\"><securecookie host=\"^formkeep\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FormSanity.com (partial)\" f=\"FormSanity.com.xml\"><securecookie host=\"^(?:download\\.)?formsanity\\.com$\" name=\".+\"/><rule from=\"^http://www\\.formsanity\\.com/\" to=\"https://formsanity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FormatDynamics.com\" f=\"FormatDynamics.com.xml\"><securecookie host=\"^\\.formatdynamics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Formilux.org\" default_off=\"expired, mismatched, self-signed\" f=\"Formilux.org.xml\"><rule from=\"^http://formilux\\.org/\" to=\"https://www.formilux.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Formspring (broken)\" default_off=\"invalid certificates\" f=\"Formspring.xml\"><rule from=\"^http://(?:www\\.)?formspring\\.me/\" to=\"https://www.formspring.me/\"/><rule from=\"^http://([\\w\\-]+)\\.formspring\\.me/\" to=\"https://$1.formspring.me/\"/></ruleset>", "<ruleset name=\"Formstack.com (partial)\" f=\"Formstack.xml\"><securecookie host=\"^(?:bi|www)\\.formstack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fornex.com (partial)\" default_off=\"failed ruleset test\" f=\"Fornex.com.xml\"><securecookie host=\"^fornex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forocoches\" f=\"Forocoches.com.xml\"><rule from=\"^http://forocoches\\.com/\" to=\"https://forocoches.com/\"/><rule from=\"^http://([^/:@]*)\\.forocoches\\.com/\" to=\"https://$1.forocoches.com/\"/></ruleset>", "<ruleset name=\"Forester (partial)\" f=\"Forrester.xml\"><rule from=\"^http://(?:www\\.)?forrester\\.com/(assets|javax\\.faces\\.resource)/\" to=\"https://www.forrester.com/$1/\"/></ruleset>", "<ruleset name=\"Forsakringskassan.se\" platform=\"mixedcontent\" f=\"Forsakringskassan.se.xml\"><rule from=\"^http://www\\.forsakringskassan\\.se/\" to=\"https://www.forsakringskassan.se/\"/><rule from=\"^http://forsakringskassan\\.se/\" to=\"https://www.forsakringskassan.se/\"/></ruleset>", "<ruleset name=\"forsec.nl\" f=\"Forsec.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forsiden (partial)\" default_off=\"failed ruleset test\" f=\"Forsiden.xml\"><securecookie host=\"^kundesenter\\.fvn\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fvn\\.no/\" to=\"https://www.fvn.no/\"/><rule from=\"^http://kundesenter\\.fvn\\.no/\" to=\"https://kundesenter.fvn.no/\"/></ruleset>", "<ruleset name=\"Forsvarsforbundet.se\" default_off=\"failed ruleset test\" f=\"Forsvarsforbundet.se.xml\"><rule from=\"^http://forsvarsforbundet\\.se/\" to=\"https://www.forsvarsforbundet.se/\"/><rule from=\"^http://www\\.forsvarsforbundet\\.se/\" to=\"https://www.forsvarsforbundet.se/\"/></ruleset>", "<ruleset name=\"Forthnet\" default_off=\"failed ruleset test\" f=\"Forthnet.gr.xml\"><securecookie host=\"^webmail.forthnet\\.gr$\" name=\".*\"/><securecookie host=\"^services.forthnet\\.gr$\" name=\".*\"/><rule from=\"^http://(webmail|services)\\.forthnet\\.gr/\" to=\"https://$1.forthnet.gr/\"/></ruleset>", "<ruleset name=\"FortiGuard.com\" platform=\"mixedcontent\" f=\"FortiGuard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortinet.com (partial)\" f=\"Fortinet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortnite.com\" f=\"Fortnite.com.xml\"><securecookie host=\"^(?:alpha\\.|www\\.)?fortnite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortress Linux.org\" f=\"Fortress_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortum\" default_off=\"failed ruleset test\" f=\"Fortum.xml\"><securecookie host=\"^(?:.*\\.)?fortum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fortum\\.com/\" to=\"https://www.fortum.com/\"/></ruleset>", "<ruleset name=\"Fortumo\" f=\"Fortumo.xml\"><securecookie host=\"^.*\\.fortumo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortune.com\" default_off=\"Breaks site\" f=\"Fortune.com.xml\"><rule from=\"^http://(?:www\\.)?fortune\\.com/\" to=\"https://fortune.com/\"/></ruleset>", "<ruleset name=\"Fortune Affiliates.com (partial)\" f=\"Fortune_Affiliates.com.xml\"><securecookie host=\"^secure\\.fortuneaffiliates\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForumBlog.org\" f=\"ForumBlog.org.xml\"><securecookie host=\"^\\.?forumblog\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?forumblog\\.org/\" to=\"https://forumblog.org/\"/></ruleset>", "<ruleset name=\"Forum Wizard.net\" f=\"Forum_Wizard.xml\"><securecookie host=\"^\\.forumwizard\\.net$\" name=\".+\"/><rule from=\"^http://w\\.forumwizard\\.net/\" to=\"https://www.forumwizard.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forumatic (partial)\" f=\"Forumatic.xml\"><securecookie host=\"^\\.forumatic\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums.nexusmods.com\" f=\"Forums.nexusmods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums für Naturfotografen\" f=\"Forums_fur_Naturfotografen.xml\"><securecookie host=\"^\\.?naturfotografen-forum\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?naturfotografen-forum\\.de/\" to=\"https://naturfotografen-forum.de/\"/></ruleset>", "<ruleset name=\"Foscam-BG.com\" f=\"Foscam-BG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FOSDEM.org\" f=\"Fosdem.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fosscon.us\" f=\"Fosscon.us.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?fosscon\\.us/\" to=\"https://fosscon.us/\"/></ruleset>", "<ruleset name=\"Fossil-SCM.org\" f=\"Fossil-SCM.org.xml\"><rule from=\"^http://(?:www\\.)?fossil-scm\\.org/\" to=\"https://www.fossil-scm.org/\"/></ruleset>", "<ruleset name=\"FotisL.com\" f=\"Fotisl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fotki (partial)\" f=\"Fotki.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FotoPigeon.com\" f=\"FotoPigeon.xml\"><securecookie host=\"^(?:www\\.)?fotopigeon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fotoblur\" f=\"Fotoblur.xml\"><securecookie host=\"^www\\.fotoblur\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fotoblur\\.com/\" to=\"https://www.fotoblur.com/\"/></ruleset>", "<ruleset name=\"fotocommunity.de (partial)\" f=\"Fotocommunity.de.xml\"><rule from=\"^http://(www\\.)?fotocommunity\\.de/(?=(?:blog|serverstatus)/wp-(?:content|includes)/|blog/\\?sccss=|(?:calendar|fotos-kaufen|fotowissen|html-sitemaps|login|mediathek|models|registrieren|sitemap)(?:$|[?/])|css/|css-2/|css-static/|favicon\\.ico|fcAssets/|gfx/|(?:Hilfe|pc/pc/channel/\\d+/\\w+/\\w+/display/\\d+)(?:$|\\?)|market-[\\w-]+\\.php|model-sedcard/|static/|wikiAssets/)\" to=\"https://$1fotocommunity.de/\"/><rule from=\"^http://(?:origin\\.)?images\\.fotocommunity\\.de/\" to=\"https://origin.images.fotocommunity.de/\"/></ruleset>", "<ruleset name=\"Foundation Source\" f=\"Foundation-Source.xml\"><securecookie host=\"^(?:.*\\.)?foundationsource\\.com$\" name=\".*\"/><rule from=\"^http://((?:access|fsol|online|www)\\.)?foundationsource\\.com/\" to=\"https://$1foundationsource.com/\"/></ruleset>", "<ruleset name=\"Foundation Beyond Belief.org\" f=\"Foundation_Beyond_Belief.org.xml\"><securecookie host=\"^\\.foundationbeyondbelief\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Founding Fathers\" default_off=\"mismatched\" f=\"Founding_Fathers.xml\"><rule from=\"^http://(?:www\\.)?foundingfathers\\.info/\" to=\"https://foundingfathers.info/\"/></ruleset>", "<ruleset name=\"fourecks.de\" f=\"Fourecks.de.xml\"><rule from=\"^http://www\\.fourecks\\.de/\" to=\"https://fourecks.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fourmilab (partial)\" f=\"Fourmilab.xml\"><exclusion pattern=\"^http://(?:www\\.)?fourmilab\\.ch/(?:cgi-bin/(?:uncgi/)?Earth\\?|images/(?:c1995o1/$|flash/g-audio-player\\.swf))\"/><securecookie host=\"^www\\.fourmilab\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fourmilab\\.ch/\" to=\"https://www.fourmilab.ch/\"/><rule from=\"^https://www\\.fourmilab\\.ch/images/c1995o1/$\" to=\"http://www.fourmilab.ch/images/c1995o1/\" downgrade=\"1\"/><rule from=\"^https://www\\.fourmilab\\.ch/cship/figures/Gdoppler1\\.html\" to=\"http://www.fourmilab.ch/cship/figures/Gdoppler1.html\" downgrade=\"1\"/><rule from=\"^https://(?:www\\.)?fourmilab\\.ch/cgi-bin/(?:uncgi/)?Earth\\?\" to=\"http://www.fourmilab.ch/cgi-bin/Earth?\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Foursquare.com (partial)\" f=\"Foursquare.com.xml\"><securecookie host=\"^(?:.*\\.)?foursquare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fout.jp (partial)\" f=\"Fout.jp.xml\"><securecookie host=\"^\\.fout\\.jp$\" name=\"^uid$\"/><rule from=\"^http://(cnt|dsp|js)\\.fout\\.jp/\" to=\"https://$1.fout.jp/\"/></ruleset>", "<ruleset name=\"Fox-IT.com\" f=\"Fox-IT.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fox News (partial)\" f=\"Fox_News.xml\"><exclusion pattern=\"^http://(?:www\\.fbn|global\\.fnc)static\\.com/static/(?:.+/)?(?:j|cs)s/\"/><rule from=\"^http://www\\.fbnstatic\\.com/\" to=\"https://a57.foxnews.com/$1static.com/\"/><rule from=\"^http://global\\.fncstatic\\.com/\" to=\"https://global.fncstatic.com/\"/><rule from=\"^http://(beta\\.)?video\\.foxbusiness\\.com/\" to=\"https://$1video.foxbusiness.com/\"/><rule from=\"^http://(a57|ads|video\\.(?:imag|insider|latino|ureport)|live|video|beta\\.video(?:\\.latino)?)\\.foxnews\\.com/\" to=\"https://$1.foxnews.com/\"/><rule from=\"^http://metrics\\.foxnews\\.com/\" to=\"https://foxnews.112.2o7.net/\"/><rule from=\"^http://uereport\\.foxnews\\.com/services/\" to=\"https://filemobile.com/services/\"/><rule from=\"^http://facebook\\.foxnewsinsider\\.com/\" to=\"https://facebook.foxnewsinsider.com/\"/><rule from=\"^http://foxnews\\.ramp\\.com/\" to=\"https://foxnews.ramp.com/\"/></ruleset>", "<ruleset name=\"Foxitsoftware.com (partial)\" f=\"Foxitsoftware.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoxyCart.com (partial)\" f=\"FoxyCart.com.xml\"><securecookie host=\"^(?:admin|docs|forum|wiki)\\.foxycart\\.com$\" name=\".+\"/><rule from=\"^http://(admin|cdn|docs|forum|wiki)\\.foxycart\\.com/\" to=\"https://$1.foxycart.com/\"/></ruleset>", "<ruleset name=\"foxydeal.de (false MCB)\" platform=\"mixedcontent\" f=\"Foxydeal.de-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?foxydeal\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?foxydeal\\.(?:com|de)/(?!favicon\\.ico|files/|wp-content/|wp-includes/)\" to=\"https://$1foxydeal.de/\"/></ruleset>", "<ruleset name=\"foxydeal.de (partial)\" f=\"Foxydeal.de.xml\"><rule from=\"^http://(www\\.)?foxydeal\\.(?:com|de)/(?=favicon\\.ico|files/|wp-content/|wp-includes/)\" to=\"https://$1foxydeal.de/\"/></ruleset>", "<ruleset name=\"fprnt.com\" f=\"Fprnt.com.xml\"><securecookie host=\"^\\.fprnt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fr33tux.org\" platform=\"cacert mixedcontent\" f=\"Fr33tux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frack.nl\" f=\"Frack.nl.xml\"><securecookie host=\"^(?:www\\.)?frack\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FragDenStaat.de\" f=\"FragDenStaat.de.xml\"><securecookie host=\"^(?:www\\.)?fragdenstaat\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraglive\" f=\"Fraglive.xml\"><securecookie host=\"^(?:w*\\.)?fraglive\\.cl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Framalab.org\" f=\"Framalab.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Framasphere.org\" f=\"Framasphere.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"France-Universite-Numerique-MOOC.fr\" f=\"France-Universite-Numerique-MOOC.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franceserv\" default_off=\"failed ruleset test\" f=\"Franceserv.xml\"><securecookie host=\"^www\\.franceserv\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franchise Gator.com (partial)\" f=\"Franchise_Gator.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?franchisegator\\.com/+(?!dashboard(?:$|[?/])|tracker\\.php)\"/><rule from=\"^http://franchisegator\\.com/\" to=\"https://www.franchisegator.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Francis Kim.co\" f=\"Francis_Kim.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frank Timis\" f=\"Frank_Timis.xml\"><securecookie host=\"^\\.franktimis\\.com$\" name=\".+\"/><rule from=\"^http://www\\.franktimis\\.com/\" to=\"https://www.franktimis.com/\"/></ruleset>", "<ruleset name=\"Franken.de\" f=\"Franken.de.xml\"><securecookie host=\"^www\\.franken\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?franken\\.de/\" to=\"https://www.franken.de/\"/><rule from=\"^http://(cloud|kerio)\\.franken\\.de/\" to=\"https://$1.franken.de/\"/></ruleset>", "<ruleset name=\"Franklin Veaux.com\" f=\"Franklin_Veaux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franklin W. Olin College of Engineering\" default_off=\"failed ruleset test\" f=\"Franklin_W_Olin_College_of_Engineering.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franziska Wellner.de (partial)\" f=\"Franziska_Wellner.de.xml\"><securecookie host=\"^mail\\.franziskawellner\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frascati Cafe.nl\" f=\"Frascati_Cafe.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frascati Producties.nl\" f=\"Frascati_Producties.nl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://frascatiproducties\\.nl/\" to=\"https://www.frascatiproducties.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frascati Theater.nl\" f=\"Frascati_Theater.nl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://frascatitheater\\.nl/\" to=\"https://www.frascatitheater.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraser Xu.me\" f=\"Fraser_Xu.me.xml\"><securecookie host=\"^\\.fraserxu\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraternal Order of Locksport\" default_off=\"self-signed\" f=\"Fraternal-Order-of-Locksport.xml\"><securecookie host=\"^www\\.bloomingtonfools\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bloomingtonfools\\.org/\" to=\"https://www.bloomingtonfools.org/\"/></ruleset>", "<ruleset name=\"FraudLabs.com\" f=\"FraudLabs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraunhofer (partial)\" f=\"Fraunhofer.xml\"><securecookie host=\"^(?:.*\\.)?(?:izb|scai)\\.fraunhofer\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?((scai|fit|aisec|igd|iais|fkie|fokus|sit|ipk|irb|isst)\\.)?fraunhofer\\.de/\" to=\"https://www.$2fraunhofer.de/\"/></ruleset>", "<ruleset name=\"frcanalytics.com\" f=\"Frcanalytics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fred and Pickles\" f=\"Fred_and_Pickles.xml\"><securecookie host=\"^\\.fredandpickles\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fredericia.dk\" f=\"Fredericia.dk.xml\"><securecookie host=\"^(www\\.)?fredericia\\.dk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frederik-Braun.com\" f=\"Frederik-Braun.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frederikshavn.dk\" f=\"Frederikshavn.dk.xml\"><securecookie host=\"^\\.?frederikshavn\\.dk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frederikssund.dk\" f=\"Frederikssund.dk.xml\"><securecookie host=\"^\\.?www\\.frederikssund\\.dk\" name=\".+\"/><rule from=\"^http://(www\\.)?frederikssund\\.dk/\" to=\"https://www.frederikssund.dk/\"/></ruleset>", "<ruleset name=\"Free-TV-Video-Online.me\" f=\"Free-TV-Video-Online.me.xml\"><securecookie host=\"^\\.free-tv-video-online\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSD.org (partial)\" f=\"FreeBSD.xml\"><securecookie host=\"^(?:admbug|\\.bug|forum)s\\.freebsd\\.org$\" name=\".+\"/><rule from=\"^http://svn\\.freebsd\\.org/\" to=\"https://svnweb.freebsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSDNews.com\" f=\"FreeBSDNews.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSD Foundation.org\" f=\"FreeBSD_Foundation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSoft.org (partial)\" f=\"FreeBSoft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBin\" default_off=\"Certificate mismatch\" f=\"FreeBin.xml\"><rule from=\"^http://(?:www\\.)?freebin\\.org/\" to=\"https://freebin.org/\"/></ruleset>", "<ruleset name=\"FreeBusy.io\" f=\"FreeBusy.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freedesktop.org (partial)\" f=\"FreeDesktop.xml\"><securecookie host=\"^bug\" name=\".\"/><rule from=\"^http://(?:download|sitewranglers)\\.freedesktop\\.org/\" to=\"https://fontconfig.freedesktop.org/\"/><rule from=\"^http://xorg\\.freedesktop\\.org/wiki(?=$|\\?)\" to=\"https://wiki.freedesktop.org/xorg\"/><rule from=\"^http://xorg\\.freedesktop\\.org/(?:wiki/)?\" to=\"https://wiki.freedesktop.org/xorg/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeFind.com\" f=\"FreeFind.xml\"><securecookie host=\"^(?:control|search|www)?\\.freefind\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeMarket Lite.cc\" f=\"FreeMarket_Lite.cc.xml\"><rule from=\"^http://freemarketlite\\.cc/+\" to=\"https://www.freemarketlite.cc/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeRTOS.org (partial)\" f=\"FreeRTOS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeSWITCH.org (partial)\" f=\"FreeSWITCH.org.xml\"><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeScoreNation.com\" f=\"FreeScoreNation.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?freescorenation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeSoundEffects.com\" f=\"FreeSoundEffects.com.xml\"><securecookie host=\"(^|\\.)freesoundeffects\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeUnlocks.com\" f=\"FreeUnlocks.com.xml\"><securecookie host=\"^(?:www)?\\.freeunlocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeVPS.us\" f=\"FreeVPS.us.xml\"><securecookie host=\"^freevps\\.us$\" name=\".+\"/><rule from=\"^http://www\\.freevps\\.us/\" to=\"https://freevps.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeWheel (self-signed)\" default_off=\"expired, self-signed\" f=\"FreeWheel-problematic.xml\"><securecookie host=\"^\\.?freewheel\\.tv$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?freewheel\\.tv/\" to=\"https://freewheel.tv/\"/></ruleset>", "<ruleset name=\"FreeWheel (partial)\" default_off=\"failed ruleset test\" f=\"FreeWheel.xml\"><securecookie host=\"^.*\\.fwmrm\\.net$\" name=\".+\"/><securecookie host=\"^mrm\\.freewheel\\.tv$\" name=\".+\"/><rule from=\"^http://mrm\\.freewheel\\.tv/\" to=\"https://mrm.freewhell.tv/\"/><rule from=\"^http://2(912a|df7d)\\.v\\.fwmrm\\.net/\" to=\"https://2$1.v.fwmrm.net/\"/></ruleset>", "<ruleset name=\"Free Assange Now.org\" f=\"Free_Assange_Now.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Barrett Brown.org\" f=\"Free_Barrett_Brown.org.xml\"><securecookie host=\"^\\.freebarrettbrown\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Bible Software.com\" default_off=\"missing certificate chain\" f=\"Free_Bible_Software.com.xml\"><securecookie host=\"^(?:development\\.|www\\.)?freebiblesoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Chelsea.com\" f=\"Free_Chelsea.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Jeremy.net\" f=\"Free_Jeremy.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Language.org\" f=\"Free_Language.org.xml\"><securecookie host=\"^\\.freelanguage\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Lauri.com\" f=\"Free_Lauri.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Movement.org.uk\" f=\"Free_Movement.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Porn Gif.com (false MCB)\" platform=\"mixedcontent\" f=\"Free_Porn_Gif.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Porn Gif.com (partial)\" f=\"Free_Porn_Gif.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?freeporngif\\.com/+(?!css/|favicon\\.ico)\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Press.net\" f=\"Free_Press.xml\"><securecookie host=\"^(?:act\\.|analytics\\.|www\\.)?freepress\\.net$\" name=\".+\"/><rule from=\"^http://s3\\.freepress\\.net/\" to=\"https://s3.amazonaws.com/s3.freepress.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Press Unlimited.org\" f=\"Free_Press_Unlimited.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Rainbow Tables.com\" f=\"Free_Rainbow_Tables.xml\"><securecookie host=\"^(?:www\\.)?freerainbowtables\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Snowden.is\" f=\"Free_Snowden.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Speech.org\" f=\"Free_Speech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free State Project.org\" f=\"Free_State_Project.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free TV Online.com (partial)\" default_off=\"expired\" f=\"Free_TV_Online.com.xml\"><rule from=\"^http://(?:www\\.)?freetvonline\\.com/(?=css/|images/|showImages/)\" to=\"https://www.freetvonline.com/\"/></ruleset>", "<ruleset name=\"Free Utopia.org\" default_off=\"mismatched\" f=\"Free_Utopia.org.xml\"><securecookie host=\"^(?:www\\.)?freeutopia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?freeutopia\\.org/\" to=\"https://www.freeutopia.org/\"/></ruleset>", "<ruleset name=\"Free Your Android.org\" f=\"Free_Your_Android.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free practice tests.org\" f=\"Free_practice_tests.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freebase.com (partial)\" f=\"Freebase.xml\"><securecookie host=\".*\\.freebase\\.com$\" name=\".*\"/><rule from=\"^http://freebase\\.com/\" to=\"https://www.freebase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freebaselibs.com\" f=\"Freebaselibs.com.xml\"><rule from=\"^http://freebaselibs\\.com/\" to=\"https://static.freebase.com/\"/></ruleset>", "<ruleset name=\"Freecause.com\" f=\"Freecause.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freeciv.org (partial)\" f=\"Freeciv.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freecode.com (partial)\" default_off=\"connection refused\" f=\"Freecode.xml\"><rule from=\"^http://(?:www\\.)?freecode\\.com/(?=avatars/|images/|password_resets/|screenshots/|session/|user/)\" to=\"https://freecode.com/\"/></ruleset>", "<ruleset name=\"Freecycle.org (partial)\" f=\"Freecycle.xml\"><securecookie host=\"^(?:web)?mail\\.freecycle\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freed0m4All.net (partial)\" f=\"Freed0m4All.net.xml\"><securecookie host=\"^\\.freed0m4all\\.net$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom-IP.com\" f=\"Freedom-IP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom from Religion Foundation (partial)\" f=\"Freedom-from-Religion-Foundation.xml\"><exclusion pattern=\"^http://(?:www\\.)?ffrf\\.org/news/radio(?:$|\\?|/)\"/><securecookie host=\"^\\.?ffrf\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom to Connect\" default_off=\"self-signed\" f=\"Freedom-to-Connect.xml\"><rule from=\"^http://(?:www\\.)?freedom-to-connect\\.net/\" to=\"https://freedom-to-connect.net/\"/></ruleset>", "<ruleset name=\"Freedom to Tinker.com\" f=\"Freedom-to-Tinker.xml\"><securecookie host=\"^(?:.*\\.)?freedom-to-tinker.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom.Press\" f=\"Freedom.Press.xml\"><securecookie host=\"^\\.freedom\\.press$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreedomPop.com (partial)\" f=\"FreedomPop.com.xml\"><securecookie host=\"^(?:www)?\\.freedompop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom Inc.nl\" f=\"Freedom_Inc.nl.xml\"><rule from=\"^http://www\\.freedominc\\.nl/\" to=\"https://freedominc.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom Online Coalition.com\" f=\"Freedom_Online_Coalition.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom not Fear.org\" f=\"Freedom_not_Fear.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Press Freedom Foundation.org\" f=\"Freedom_of_the_Press_Foundation.xml\"><securecookie host=\"^\\.pressfreedomfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedombox Foundation\" platform=\"mixedcontent\" f=\"Freedombox.xml\"><rule from=\"^http://(?:www\\.)?freedomboxfoundation\\.org/\" to=\"https://www.freedomboxfoundation.org/\"/></ruleset>", "<ruleset name=\"freegeoip.net\" f=\"Freegeoip.net.xml\"><securecookie host=\"^\\.freegeoip\\.net$\" name=\"^(?:__cfuid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freelancer\" f=\"Freelancer.xml\"><securecookie host=\"^(?:.*\\.)?freelancer\\.co(?:m|\\.uk)$\" name=\".*\"/><rule from=\"^http://(cdn\\d+\\.|www\\.)?freelancer\\.co(m|\\.uk)/\" to=\"https://$1freelancer.co$2/\"/></ruleset>", "<ruleset name=\"Freelancers Union.org\" f=\"Freelancers_Union.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freelansim.ru (partial)\" f=\"Freelansim.ru.xml\"><rule from=\"^http://(?:www\\.)?freelansim\\.ru/(?=assets/|favicon\\.ico|favicon\\.png)\" to=\"https://freelansim.ru/\"/></ruleset>", "<ruleset name=\"Freemailer.ch\" f=\"Freemailer.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freenet.de (partial)\" f=\"Freenet.de.xml\"><securecookie host=\"^(?:w*\\.)?mload\\.webmail\\.freenet\\.de$\" name=\".+\"/><rule from=\"^http://abakus\\.freenet\\.de/\" to=\"https://secure.freenet.de/abakus.freenet.de/\"/><rule from=\"^http://(?:blob|code)\\.freene?t\\.de/\" to=\"https://secure.freenet.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freenet Project.org\" f=\"Freenet.xml\"><securecookie host=\"^.*\\.freenetproject\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freepik.com (partial)\" f=\"Freepik.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freescale.com (partial)\" f=\"Freescale.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?freescale\\.com/(?!favicon\\.ico|files/|(?:idp|ruhp|security|webapp)(?:$|[?/])|js/|recommendation/|shared/)\"/><securecookie host=\"^(?!www\\.).+\\.freescale\\.com$\" name=\".+\"/><rule from=\"^http://freescale\\.com/\" to=\"https://www.freescale.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freesound.org\" f=\"Freesound.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freestyle Capital\" default_off=\"self-signed\" f=\"Freestyle-Capital.xml\"><rule from=\"^http://(?:www\\.)?freestyle\\.vc/\" to=\"https://freestyle.vc/\"/></ruleset>", "<ruleset name=\"Freethought Blogs.com (partial)\" f=\"Freethought_Blogs.com.xml\"><securecookie host=\"^\\.freethoughtblogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freezone.co.uk (partial)\" f=\"Freezone.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://freezone\\.co\\.uk/\" to=\"https://www.freezone.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FU-Berlin.de (partial)\" f=\"Freie-Universitat-Berlin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk-Ansbach.de\" f=\"Freifunk-Ansbach.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk-Goettingen.de\" f=\"Freifunk-Goettingen.de.xml\"><rule from=\"^http://goettingen\\.freifunk\\.net/(.*)\" to=\"https://freifunk-goettingen.de/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freifunk-karlsruhe.de\" f=\"Freifunk-Karlsruhe.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk.net\" f=\"Freifunk.xml\"><securecookie host=\"^(bug|forum|blog\\.guetersloh|pad)\\.freifunk\\.net$\" name=\".+\"/><rule from=\"^http://facebook\\.freifunk\\.net/[^?]*\" to=\"https://www.facebook.com/pages/Freifunk/54553170762\"/><rule from=\"^http://twitter\\.freifunk\\.net/[^?]*\" to=\"https://twitter.com/freifunk\"/><rule from=\"^http://vimeo\\.freifunk\\.net/[^?]*\" to=\"https://vimeo.com/user20804353\"/><rule from=\"^http://youtube\\.freifunk\\.net/[^?]*\" to=\"https://www.youtube.com/user/FREIFUNK2013\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freight Calculator Australia\" default_off=\"self-signed\" f=\"Freight_Calculator_Australia.xml\"><rule from=\"^http://(?:www\\.)?freightcalculator\\.com\\.au/\" to=\"https://freightcalculator.com.au/\"/></ruleset>", "<ruleset name=\"Der Freitag\" f=\"Freitag.xml\"><securecookie host=\"^(www\\.|digital\\.|abo\\.)?freitag\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNRS.fr (partial)\" f=\"French-National-Centre-for-Scientific-Research.xml\"><exclusion pattern=\"http://www\\.cnrs\\.fr/+(?!ins2i/(?:images|IMG|plugins|squelettes/css|styles)/)\"/><securecookie host=\"^(?:nouba|support)\\.dsi\\.cnrs\\.fr$\" name=\".+\"/><rule from=\"^http://www\\.sg\\.cnrs\\.fr/[^?]*\" to=\"https://www.dgdr.cnrs.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FrenchTV.to\" f=\"FrenchTV.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frequentis.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Frequentis.com-falsemixed.xml\"><securecookie host=\"^www.frequentis\\.com$\" name=\".+\"/><rule from=\"^http://www\\.frequentis\\.com/(?!favicon\\.ico|fileadmin/|typo3temp/)\" to=\"https://www.frequentis.com/\"/></ruleset>", "<ruleset name=\"Frequentis.com (partial)\" default_off=\"failed ruleset test\" f=\"Frequentis.com.xml\"><exclusion pattern=\"^http://www\\.frequentis\\.com/+(?!favicon\\.ico|fileadmin/|typo3temp/)\"/><securecookie host=\"^\\.frequentis\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fresh-hotel.org\" f=\"Fresh-hotel.org.xml\"><securecookie host=\"^(?:w*\\.)?fresh-hotel\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreshBSD.org\" f=\"FreshBSD.org.xml\"><rule from=\"^http://www\\.freshbsd\\.org/\" to=\"https://freshbsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreshBooks (partial)\" default_off=\"failed ruleset test\" f=\"FreshBooks.xml\"><exclusion pattern=\"^http://(?:www\\.)?freshbooks\\.com/(?!cache/|images/|javascript/|styles/)\"/><exclusion pattern=\"^http://(?:community|developers)\\.\"/><securecookie host=\"^(?!www\\.).+\\.freshbooks\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?fb-assets\\.com/\" to=\"https://$1fb-assets.com/\"/><rule from=\"^http://([\\w-]+\\.)?freshbooks\\.com/\" to=\"https://$1freshbooks.com/\"/></ruleset>", "<ruleset name=\"freshcode.club\" f=\"Freshcode.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freshdesk (partial)\" f=\"Freshdesk.xml\"><exclusion pattern=\"^http://(?:blog|www)\\.\"/><rule from=\"^http://assets\\.freshdesk\\.com/\" to=\"https://s3.amazonaws.com/assets.freshdesk.com/\"/><rule from=\"^http://cdn\\.freshdesk\\.com/\" to=\"https://s3.amazonaws.com/cdn.freshdesk.com/\"/><rule from=\"^http://static[1-5]?\\.freshdesk\\.com/\" to=\"https://d3o14s01j0qbic.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.freshdesk\\.com/\" to=\"https://$1.freshdesk.com/\"/></ruleset>", "<ruleset name=\"Freshmilk.de\" default_off=\"self-signed\" f=\"Freshmilk.de.xml\"><rule from=\"^http://(?:www\\.)?freshmilk\\.de/\" to=\"https://www.freshmilk.de/\"/><rule from=\"^http://nettv\\.freshmilk\\.de/\" to=\"https://nettv.freshmilk.de/\"/></ruleset>", "<ruleset name=\"Freshmilk.tv (partial)\" f=\"Freshmilk.tv.xml\"><exclusion pattern=\"^http://(?:www\\.)?freshmilk\\.tv/+(?!media/|static/)\"/><rule from=\"^http://(?:hub\\.|www\\.)?freshmilk\\.tv/\" to=\"https://hub.freshmilk.tv/\"/></ruleset>", "<ruleset name=\"Freshports.org\" f=\"Freshports.org.xml\"><securecookie host=\"^\\.freshports\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fressnapf.de\" f=\"Fressnapf.de.xml\"><securecookie host=\"^www\\.fressnapf\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fri-Gate.org (partial)\" default_off=\"failed ruleset test\" f=\"Fri-Gate.org.xml\"><rule from=\"^http://api2\\.fri-gate\\.org/\" to=\"https://api2.fri-gate.org/\"/></ruleset>", "<ruleset name=\"FriBID.se\" f=\"FriBID.se.xml\"><rule from=\"^http://fribid\\.se/\" to=\"https://fribid.se/\"/><rule from=\"^http://www\\.fribid\\.se/\" to=\"https://www.fribid.se/\"/></ruleset>", "<ruleset name=\"Frictional Games (partial)\" f=\"Frictional-Games.xml\"><securecookie host=\"^(?:.*\\.)?frictionalgames\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fridge\" default_off=\"failed ruleset test\" f=\"Fridge.xml\"><securecookie host=\"^(?:.+\\.)?frid\\.ge$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?frid\\.ge/\" to=\"https://frid.ge/\"/></ruleset>", "<ruleset name=\"Friedhoff.org\" f=\"Friedhoff.org.xml\"><rule from=\"^http://(?:www\\.)?friedhoff\\.org/\" to=\"https://friedhoff.org/\"/></ruleset>", "<ruleset name=\"FriendFinder.com\" f=\"FriendFinder.xml\"><securecookie host=\"^\\.friendfinder\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?friendfinder\\.com/\" to=\"https://secure.friendfinder.com/\"/><rule from=\"^http://(?:graphics|photos|piclist)\\.friendfinder\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FriendlyDuck.com\" f=\"FriendlyDuck.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friendly Bracelets.com (partial)\" f=\"Friendly_Bracelets.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friendpaste.com\" f=\"Friendpaste.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friends of WikiLeaks\" default_off=\"failed ruleset test\" f=\"Friends-of-WikiLeaks.xml\"><securecookie host=\"^wlfriends\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wlfriends\\.org/\" to=\"https://wlfriends.org/\"/></ruleset>", "<ruleset name=\"Friendster (partial)\" f=\"Friendster.xml\"><rule from=\"^http://(www\\.)?friendster\\.com/assets/\" to=\"https://$1friendster.com/assets/\"/><rule from=\"^http://assets0\\.frndcdn\\.net/\" to=\"https://d3outgkpos8q21.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Friesland Bank.nl (partial)\" f=\"Friesland_Bank.nl.xml\"><securecookie host=\"^(?:forms|internetbankieren)\\.frieslandbank\\.nl$\" name=\".+\"/><rule from=\"^http://(forms|internetbankieren)\\.frieslandbank\\.nl/\" to=\"https://$1.frieslandbank.nl/\"/></ruleset>", "<ruleset name=\"frim.nl\" default_off=\"self-signed\" f=\"Frim.nl.xml\"><rule from=\"^http://(?:www\\.)?frim\\.nl/\" to=\"https://www.frim.nl/\"/><rule from=\"^http://(frim|gitx)\\.frim\\.nl/\" to=\"https://$1.frim.nl/\"/></ruleset>", "<ruleset name=\"Frivillighetshuset.no\" default_off=\"failed ruleset test\" f=\"Frivillighetshuset.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fromorbit.com\" default_off=\"failed ruleset test\" f=\"Fromorbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frontier Network and Computing Systems\" f=\"Frontier-Network-and-Computing-Systems.xml\"><securecookie host=\"^fcns\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fcns\\.eu/\" to=\"https://fcns.eu/\"/></ruleset>", "<ruleset name=\"Frontier.co.uk (partial)\" f=\"Frontier.co.uk.xml\"><securecookie host=\"^(?:(?:elite|kinectimals|lostwinds|www)\\.)?frontier\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://((?:elite|kinectimals|lostwinds|www)\\.)?frontier\\.co\\.uk/\" to=\"https://$1frontier.co.uk/\"/></ruleset>", "<ruleset name=\"Frontiers (partial)\" f=\"Frontiers.xml\"><rule from=\"^http://(?:www\\.)?frontiersin\\.org/((?:Design/(?:cs|[iI]mage|j)|file)s/|(?:Script|Web)Resource\\.axd)\" to=\"https://www.frontiersin.org/$1\"/></ruleset>", "<ruleset name=\"Frontline Defenders.org\" f=\"FrontlineDefenders.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frooition Software (partial)\" f=\"Frooition_Software.xml\"><rule from=\"^http://(freedom|my|secure)\\.frooition\\.com/\" to=\"https://$1.frooition.com/\"/></ruleset>", "<ruleset name=\"FrootVPN.com\" f=\"FrootVPN.com.xml\"><securecookie host=\"^www\\.frootvpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FrostWire (partial)\" f=\"FrostWire.xml\"><rule from=\"^http://static\\.frostwire\\.com/\" to=\"https://s3.amazonaws.com/static.frostwire.com/\"/></ruleset>", "<ruleset name=\"Frostmourne-WoW.eu (partial)\" default_off=\"mismatched\" f=\"Frostmourne-WoW.eu.xml\"><securecookie host=\"^img\\.frostmourne-wow\\.eu$\" name=\".+\"/><rule from=\"^http://img\\.frostmourne-wow\\.eu/\" to=\"https://img.frostmourne-wow.eu/\"/></ruleset>", "<ruleset name=\"FrozenCPU.com\" f=\"FrozenCPU.com.xml\"><securecookie host=\"^\\.www\\.frozencpu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frozen Yoghurt Franchise\" default_off=\"failed ruleset test\" f=\"Frozen_Yoghurt_Franchise.xml\"><securecookie host=\"^\\.frozen-yogurt-franchise.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frozentux.net\" f=\"Frozentux.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frugalware Linux\" default_off=\"mismatched, self-signed\" f=\"Frugalware_Linux.xml\"><securecookie host=\"^.+\\.frugalware\\.org$\" name=\".+\"/><rule from=\"^http://(?:((?:bugs|forums|webmail|wiki)\\.)|www\\.)?frugalware\\.org/\" to=\"https://$1frugalware.org/\"/></ruleset>", "<ruleset name=\"Fruit Ninja (partial)\" default_off=\"failed ruleset test\" f=\"Fruit_Ninja.xml\"><securecookie host=\"^store\\.fruitninja\\.com$\" name=\".+\"/><rule from=\"^http://store\\.fruitninja\\.com/\" to=\"https://store.fruitninja.com/\"/></ruleset>", "<ruleset name=\"Frys (mismatches)\" default_off=\"mismatch\" f=\"Frys-mismatches.xml\"><rule from=\"^http://(?:www\\.)?frys\\.com/\" to=\"https://www.frys.com/\"/></ruleset>", "<ruleset name=\"Frys (partial)\" f=\"Frys.xml\"><securecookie host=\"^.*\\.frys\\.com$\" name=\".*\"/><rule from=\"^http://images\\.frys\\.com/\" to=\"https://frys.hs.llnwd.net/e1/\"/><rule from=\"^http://shop([1-6])\\.frys\\.com/\" to=\"https://shop$1.frys.com/\"/></ruleset>", "<ruleset name=\"Fshare.vn\" f=\"Fshare.vn.xml\"><securecookie host=\"^(?:www)?\\.fshare\\.vn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fstoppers.com\" f=\"Fstoppers.com.xml\"><securecookie host=\"^(?:www\\.)?fstoppers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fteproxy.org\" f=\"Fteproxy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuck You Cash\" default_off=\"mismatch\" f=\"Fuck-You-Cash.xml\"><rule from=\"^http://join\\.fuckyoucash\\.com/\" to=\"https://join.fuckyoucash.com/\"/></ruleset>", "<ruleset name=\"Fuel Economy\" f=\"Fuel_Economy.xml\"><securecookie host=\"^www\\.fueleconomy\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fueleconomy\\.gov/\" to=\"https://www.fueleconomy.gov/\"/></ruleset>", "<ruleset name=\"fuelcdn.com\" f=\"Fuelcdn.com.xml\"><securecookie host=\"^\\.fuelcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuerza Popular (partial)\" f=\"Fuerza_Popular.xml\"><rule from=\"^http://(?:fuerzapopularpe\\.keikoperu\\.com|(?:www\\.)?fuerzapopular\\.pe)/(banner/|favicon\\.ico|wp-content/)\" to=\"https://secure.bluehost.com/~keikoper/fuerzapopular.pe/$1\"/></ruleset>", "<ruleset name=\"Fujitsu (partial)\" platform=\"mixedcontent\" f=\"Fujitsu.xml\"><exclusion pattern=\"^http://(?:img\\.)?jp\\.fujitsu\\.com/imgv4/jp/\"/><securecookie host=\"^.*\\.fmworld\\.net$\" name=\".*\"/><securecookie host=\"^.*\\.fujitsu-webmart\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fmworld\\.net/\" to=\"https://www.fmworld.net/\"/><rule from=\"^http://azby\\.fmworld\\.net/\" to=\"https://azby.fmworld.net/\"/><rule from=\"^http://img\\.jp\\.fujitsu\\.com/\" to=\"https://jp.fujitsu.com/\"/><rule from=\"^http://jp\\.fujitsu\\.com/(cgi-bin|cssv4|imgv[34])/\" to=\"https://jp.fujitsu.com/$1/\"/><rule from=\"^http://(?:www\\.)?fujitsu-webmart\\.com/\" to=\"https://www.fujitsu-webmart.com/\"/></ruleset>", "<ruleset name=\"Fukuchi.org\" f=\"Fukuchi.org.xml\"><rule from=\"^http://(?:www\\.)?fukuchi\\.org/\" to=\"https://fukuchi.org/\"/></ruleset>", "<ruleset name=\"Fulcrum Biometrics\" f=\"Fulcrum_Biometrics.xml\"><securecookie host=\"^(?:www\\.)?fulcrumbiometrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Full Circle Studies.com (partial)\" f=\"Full-Circle-Studies.xml\"><securecookie host=\"^(?:.*\\.)?fullcirclestudies\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullCoin.com\" default_off=\"expired, missing certificate chain\" f=\"FullCoin.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullContact.com\" f=\"FullContact.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Full Slate\" f=\"FullSlate.xml\"><exclusion pattern=\"^http://blog\\.fullslate\\.com/\"/><exclusion pattern=\"^http://support\\.fullslate\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullStory.com (partial)\" f=\"FullStory.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullTraffic (partial)\" f=\"FullTraffic.xml\"><exclusion pattern=\"^http://(?:www\\.)?fulltraffic\\.net/(?!(?:cart|create_account|login)(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Full Signal (partial)\" f=\"Full_Signal.xml\"><rule from=\"^http://static\\.thefullsignal\\.com/\" to=\"https://d1jy4z176wg3x.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fullerton.edu (partial)\" default_off=\"failed ruleset test\" f=\"Fullerton.edu.xml\"><securecookie host=\"^(?:(?:calstate|diversity|ehis|ehs|exchange|finance|hr|my|parking|police|riskmanagement|training|vpait|www)\\.)?fullerton\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?business|calstate|csuftraining|diversity|ehis|ehs|exchange|finance|giving|hr|(?:www\\.)?library|my|parking|police|pp|riskmanagement|training|vpait|www)\\.)?fullerton\\.edu/\" to=\"https://$1fullerton.edu/\"/><rule from=\"^http://rmehs\\.fullerton\\.edu/\" to=\"https://ehis.fullerton.edu/\"/></ruleset>", "<ruleset name=\"Fullrate\" f=\"Fullrate.xml\"><rule from=\"^http://(www\\.)?fullrate\\.dk/\" to=\"https://www.fullrate.dk/\"/><rule from=\"^http://forum\\.fullrate\\.dk/\" to=\"https://forum.fullrate.dk/\"/></ruleset>", "<ruleset name=\"FundFill.com\" f=\"FundFill.com.xml\"><securecookie host=\"^www\\.fundfill\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FundRazr.com (partial)\" f=\"FundRazr.com.xml\"><securecookie host=\"^(?:www\\.)?fundrazr\\.com$\" name=\".+\"/><rule from=\"^http://(poweredby\\.|www\\.)?fundrazr\\.com/\" to=\"https://$1fundrazr.com/\"/><rule from=\"^http://support\\.fundrazr\\.com/favicon\\.ico\" to=\"https://fundrazr.zendesk.com/favicon.ico\"/></ruleset>", "<ruleset name=\"FundaGeek (partial)\" f=\"FundaGeek.xml\"><rule from=\"^http://(?:www\\.)?fundageek\\.com/+([^?]*).*\" to=\"https://gogetfunding.com/$1\"/></ruleset>", "<ruleset name=\"Fundacion Televisa.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fundacion_Televisa.org.xml\"><securecookie host=\"^\\.fundaciontelevisa\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FundersClub.com\" f=\"FundersClub.com.xml\"><securecookie host=\"^fundersclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fundinfo.com (false MCB)\" platform=\"mixedcontent\" f=\"Fundinfo.com-falsemixed.xml\"><rule from=\"^http://about\\.fundinfo\\.com/\" to=\"https://about.fundinfo.com/\"/></ruleset>", "<ruleset name=\"fundinfo.com (partial)\" f=\"Fundinfo.com.xml\"><exclusion pattern=\"^http://about\\.fundinfo.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http://((?:about|datahub|media|mobile|paperboy|www)\\.)?fundinfo\\.com/\" to=\"https://$1fundinfo.com/\"/></ruleset>", "<ruleset name=\"funet.fi\" f=\"Funet.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funio.com (partial)\" f=\"Funio.com.xml\"><securecookie host=\"^\\.(?:hub\\.|secure\\.)?funio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funker530.com\" f=\"Funker530.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funky Android.com\" default_off=\"failed ruleset test\" f=\"Funky_Android.com.xml\"><rule from=\"^http://(?:www\\.)?funkyandroid\\.com/\" to=\"https://funkyandroid.com/\"/></ruleset>", "<ruleset name=\"Funstockdigital.co.uk\" f=\"Funstockdigital.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funtoo.org (partial)\" f=\"Funtoo.org.xml\"><securecookie host=\"^bugs\\.funtoo\\.org$\" name=\".+\"/><rule from=\"^http://bugs\\.funtoo\\.org/\" to=\"https://bugs.funtoo.org/\"/></ruleset>", "<ruleset name=\"Furaffinity (partial)\" f=\"Furaffinity.xml\"><securecookie host=\"^(?:forums|ox|sfw|www)?\\.furaffinity\\.net$\" name=\".+\"/><rule from=\"^http://(d|t)\\.facdn\\.net/\" to=\"https://$1.facdn.net/\"/><rule from=\"^http://((?:forums|ox|sfw|www)\\.)?furaffinity\\.net/\" to=\"https://$1furaffinity.net/\"/></ruleset>", "<ruleset name=\"Further\" f=\"Further.xml\"><securecookie host=\"^(?:www)?\\.further\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?further\\.co\\.uk/\" to=\"https://www.further.co.uk/\"/></ruleset>", "<ruleset name=\"fuscia.info\" default_off=\"failed ruleset test\" f=\"Fuscia.info.xml\"><securecookie host=\"^fuscia\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fuscia\\.info/\" to=\"https://fuscia.info/\"/></ruleset>", "<ruleset name=\"Fused\" f=\"Fused.xml\"><securecookie host=\"^(?:clients|support)\\.fused\\.com$\" name=\".+\"/><rule from=\"^http://((?:clients|s\\d+|soapbox|support|www)\\.)?fused\\.com/\" to=\"https://$1fused.com/\"/></ruleset>", "<ruleset name=\"Fusion-lifestyle.com\" f=\"Fusion-lifestyle.com.xml\"><rule from=\"^http://(www\\.)?fusion-lifestyle\\.com/\" to=\"https://www.fusion-lifestyle.com/\"/></ruleset>", "<ruleset name=\"FusionForge.org\" f=\"FusionForge.xml\"><securecookie host=\"^(?:.*\\.)?fusionforge.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FusionIO\" f=\"FusionIO.xml\"><securecookie host=\"^(?:.*\\.)?fusionio\\.com$\" name=\".*\"/><rule from=\"^http://((?:quote|support|(?:web)?mail|www)\\.)?fusionio\\.com/\" to=\"https://$1fusionio.com/\"/></ruleset>", "<ruleset name=\"FusionNet\" platform=\"mixedcontent\" f=\"FusionNet.xml\"><securecookie host=\"^(?:.+\\.)?fusion-net.co.uk$\" name=\".*\"/><rule from=\"^http://fusion-net\\.co\\.uk/\" to=\"https://fusion-net.co.uk/\"/><rule from=\"^http://www\\.fusion-net\\.co\\.uk/\" to=\"https://www.fusion-net.co.uk/\"/></ruleset>", "<ruleset name=\"Fusion Digital.io (partial)\" f=\"Fusion_Digital.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuskator.com\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Fuskator.com.xml\"><securecookie host=\"^(?:(?:i1|imgsrv|www)\\.)?fuskator\\.com$\" name=\".+\"/><rule from=\"^http://((?:i1|imgsrv|www)\\.)?fuskator\\.com/\" to=\"https://$1fuskator.com/\"/></ruleset>", "<ruleset name=\"Future Publishing (mismatches)\" default_off=\"mismatched\" f=\"Future-Publishing-mismatches.xml\"><rule from=\"^http://prg\\.(computerandvideogames|gamesradar)\\.com/\" to=\"https://prg.$1.com/\"/></ruleset>", "<ruleset name=\"Future Publishing (partial)\" f=\"Future-Publishing.xml\"><rule from=\"^http://(?:www\\.)?computerandvideogames\\.com/(reg|templates)/\" to=\"https://www.computerandvideogames.com/$1/\"/><rule from=\"^http://(?:cdn\\.)?static\\.computerandvideogames\\.com/\" to=\"https://www.computerandvideogames.com/templates/\"/></ruleset>", "<ruleset name=\"FutureLearn.com\" f=\"FutureLearn.com.xml\"><securecookie host=\"^(?:www)?\\.futurelearn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FutureQuest (partial)\" f=\"FutureQuest.net.xml\"><securecookie host=\"^(?:www\\.)?se(?:cur|rvic)e\\.(?:futurequest|questadmin)\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?se(cur|rvic)e\\.futurequest\\.net/\" to=\"https://$1se$2e.futurequest.net/\"/><rule from=\"^http://(?:www\\.)?questadmin\\.net/(?:$|\\?.*)\" to=\"https://secure.questadmin.net/cgi-ssl/mgr.py/login\"/><rule from=\"^http://secure\\.questadmin\\.net/\" to=\"https://secure.questadmin.net/\"/></ruleset>", "<ruleset name=\"futureboy.us\" f=\"Futureboy.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Futurity.org\" default_off=\"http redirect\" f=\"Futurity.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuzzing-Project.org\" f=\"Fuzzing-Project.org.xml\"><securecookie host=\"^blog\\.fuzzing-project\\.org$\" name=\".+\"/><rule from=\"^http://((?:blog|crashes|www)\\.)?fuzzing-project\\.org/\" to=\"https://$1fuzzing-project.org/\"/></ruleset>", "<ruleset name=\"fw.to\" default_off=\"mismatched\" f=\"Fw.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fwdcdn.com\" f=\"Fwdcdn.com.xml\"><rule from=\"^http://([\\w-]+)\\.fwdcdn\\.com/\" to=\"https://$1.fwdcdn.com/\"/></ruleset>", "<ruleset name=\"fxguide.com (partial)\" f=\"Fxguide.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?fxguide\\.com/(?!(?:articles|contact|faq|insider|podcasts|quicktakes)(?:$|\\?|/)|favicon\\.ico|forums/(?:clientscript/||css\\.php|images/)|wp-admin/|wp-content/|wp-login\\.php)\"/><rule from=\"^http://(?:www\\.)?fxguide\\.com/wp-admin/\" to=\"https://ipa.fxguide.com/wp-admin/\"/><rule from=\"^http://(ipa\\.|www\\.)?fxguide\\.com/\" to=\"https://$1fxguide.com/\"/></ruleset>", "<ruleset name=\"fxphd\" f=\"Fxphd.xml\"><securecookie host=\"^(?:w*\\.)?fxphd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fylde.gov.uk (partial)\" f=\"Fylde.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G Central\" default_off=\"connection refused\" f=\"G-Central.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G DATA Software (partial)\" f=\"G-Data-Software.xml\"><securecookie host=\"^www\\.gdata\\.(at|be|co\\.jp|com\\.mx|ch|de|es|fr|it|nl|pl|pt)$\" name=\".+\"/><securecookie host=\"^www\\.gdatasoftware\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^(br|in|jp|mx|ru|www)\\.gdatasoftware\\.com$\" name=\".+\"/><securecookie host=\"^www\\.gdata-software\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g10 Code (partial)\" default_off=\"mismatched, self-signed\" f=\"G10_Code.xml\"><rule from=\"^http://(?:www\\.)?g10code\\.com/\" to=\"https://g10code.com/\"/><rule from=\"^http://(bugs|kerckhoffs)\\.g10code\\.com/\" to=\"https://$1.g10code.com/\"/></ruleset>", "<ruleset name=\"G2 Crowd.com (partial)\" f=\"G2_Crowd.com.xml\"><securecookie host=\"^www\\.g2crowd\\.com$$\" name=\".+\"/><rule from=\"^http://g2crowd\\.com/\" to=\"https://www.g2crowd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G2a.com\" f=\"G2a.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G2play.net\" f=\"G2play.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g33kinfo.com (false MCB)\" platform=\"mixedcontent\" f=\"G33kinfo.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g33kinfo.com (partial)\" f=\"G33kinfo.com.xml\"><exclusion pattern=\"^http://g33kinfo\\.com/+(?!favicon\\.ico|info/wp-content/|info/wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G5 - US Department of Education\" default_off=\"failed ruleset test\" f=\"G5.gov.xml\"><securecookie host=\"(?:^|\\.)g5\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)g5\\.gov/\" to=\"https://www.g5.gov/\"/></ruleset>", "<ruleset name=\"GAC.edu\" f=\"GAC.edu.xml\"><rule from=\"^http://www\\.gac\\.edu/\" to=\"https://gac.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GAIA Host Collective\" f=\"GAIA_Host_Collective.xml\"><securecookie host=\"^(?:.+\\.)?gaiahost\\.coop$\" name=\".+\"/><rule from=\"^http://((?:securehost4|securemail2|www)\\.)?gaiahost\\.coop/\" to=\"https://$1gaiahost.coop/\"/></ruleset>", "<ruleset name=\"GAME.se (partial)\" default_off=\"connection reset\" f=\"GAME.se.xml\"><rule from=\"^http://secure\\.game\\.se/\" to=\"https://secure.game.se/\"/></ruleset>", "<ruleset name=\"GAcollege411.org\" f=\"GAcollege411.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GBAtemp.net\" f=\"GBAtemp.net.xml\"><securecookie host=\"^\\.?gbatemp\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gCDN.org\" f=\"GCDN.org.xml\"><rule from=\"^http://www\\.gcdn\\.org/\" to=\"https://gcdn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCHQ-Careers.co.uk\" f=\"GCHQ-Careers.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCion.com (partial)\" f=\"GCIon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCM Asia.com (partial)\" f=\"GCM_Asia.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?gcmasia\\.com/(?!favicon\\.ico|_Incapsula_Resource(?:$|\\?)|open-real-account(?:$|[?/])|Templates/|tools/|Uploaded/|WebResource\\.axd)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCM Computers.com\" f=\"GCM_Computers.com.xml\"><securecookie host=\"^(?:(?:cp|\\.webmail|www)\\.)?gcmcomputers\\.com$\" name=\".+\"/><rule from=\"^http://((?:cp|webmail|www)\\.)?gcmcomputers\\.com/\" to=\"https://$1gcmcomputers.com/\"/></ruleset>", "<ruleset name=\"gCaptain.com (partial)\" f=\"GCaptain.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?gcaptain\\.com/+(?!images/)\"/><securecookie host=\"^gcaptain\\.com$\" name=\".+\"/><rule from=\"^http://c\\.gcaptain\\.com/\" to=\"https://d32gw8q6pt8twd.cloudfront.net/\"/><rule from=\"^http://cf\\.gcaptain\\.com/\" to=\"https://d38ecmhxsvwui3.cloudfront.net/\"/><rule from=\"^http://cfs1\\.gcaptain\\.com/\" to=\"https://d2m8pnbf2v4ae2.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GChat.com\" f=\"GChat.com.xml\"><securecookie host=\"^\\.gchat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GEANT.net (partial)\" f=\"GEANT.net.xml\"><exclusion pattern=\"^http://geant3\\.archive\\.geant\\.net/(?!_layouts/|_login/|_wpresources/|[sS]tyle%20Library/|_trust/|WebResource\\.axd\\?)\"/><exclusion pattern=\"^http://www\\.geant\\.net/+(?!_catalogs/|_layouts/|_login/|Style%20Library/|_trust/|WebResource\\.axd)\"/><securecookie host=\"^crowd\\.geant\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GEANT.org (partial)\" f=\"GEANT.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GE Money\" f=\"GEMoney.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (false MCB)\" platform=\"mixedcontent\" f=\"GENEVI.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (partial)\" f=\"GENEVI.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?genevi\\.org/+(?!favicon\\.ico|sites/)\"/><securecookie host=\"^(?:bug|project)s\\.genivi\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugs|projects|www)\\.)?genivi\\.org/\" to=\"https://$1genivi.org/\"/></ruleset>", "<ruleset name=\"GENI.net (partial)\" f=\"GENI.xml\"><securecookie host=\"^portal\\.geni\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI-Italia.com (partial)\" f=\"GFI-Italia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfi-italia\\.com/\" to=\"https://www.gfi-italia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI.nl\" f=\"GFI.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfi\\.nl/\" to=\"https://www.gfi.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI Cloud\" f=\"GFI_Cloud.xml\"><securecookie host=\"^www\\.gficloud\\.com$\" name=\".+\"/><rule from=\"^http://((?:forgot|login|redirect|signup|www)\\.)?gficloud\\.com/\" to=\"https://$1gficloud.com/\"/></ruleset>", "<ruleset name=\"GFI Hispana.com\" f=\"GFI_Hispana.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfihispana\\.com/\" to=\"https://www.gfihispana.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI Software.de\" f=\"GFI_Software.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfisoftware\\.de/\" to=\"https://www.gfisoftware.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI.com (partial)\" f=\"GFI_Software_Development.xml\"><exclusion pattern=\"^http://kb\\.gfi\\.com/(?!resource/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://kb\\.gfi\\.com/resource/\" to=\"https://gfi.secure.force.com/partnersurvey/resource/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFM Trader.com\" f=\"GFM_Trader.com.xml\"><securecookie host=\"^(?:w*\\.)?gfmtrader.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFS France.com (partial)\" f=\"GFS_France.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfsfrance\\.com/\" to=\"https://www.gfsfrance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GH static.com\" f=\"GH_static.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gHacks.net (partial)\" default_off=\"broken\" f=\"GHacks.net.xml\"><rule from=\"^http://cdn\\.ghacks\\.net/\" to=\"https://ghacks-ghacks.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"GHash.IO\" f=\"GHash.IO.xml\"><securecookie host=\"^\\.ghash\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIAC.org\" f=\"GIAC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIDApp.com\" f=\"GIDApp.com.xml\"><securecookie host=\"^www\\.gidapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIDForums.com\" f=\"GIDForums.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIDNetwork.com (partial)\" f=\"GIDNetwork.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIMP foo\" default_off=\"self-signed\" f=\"GIMP-foo.xml\"><rule from=\"^http://(?:www\\.)?gimpfoo\\.de/\" to=\"https://gimpfoo.de/\"/></ruleset>", "<ruleset name=\"Hehner Reus Systems GmbH\" f=\"GIPS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GJ Open.com\" f=\"GJ_Open.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GKG\" f=\"GKG.xml\"><securecookie host=\"^(?:.+\\.)?gkg\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gkg\\.net/\" to=\"https://www.gkg.net/\"/></ruleset>", "<ruleset name=\"GKVnet-ag.de\" f=\"GKVnet-ag.de.xml\"><rule from=\"^http://www\\.gkvnet-ag\\.de/$\" to=\"https://www.gkvnet-ag.de/svnet-online/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GLAD (Gay & Lesbian Advocates & Defenders)\" platform=\"mixedcontent\" f=\"GLAD.xml\"><rule from=\"^http://(?:www\\.)?glad\\.org/\" to=\"https://www.glad.org/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.glad\\.org/\" to=\"https://$1.glad.org/\"/></ruleset>", "<ruleset name=\"GLS Bank\" default_off=\"failed ruleset test\" f=\"GLS.de.xml\"><rule from=\"^http://(?:www\\.)?gls\\.de/\" to=\"https://www.gls.de/\"/><rule from=\"^http://gls\\.gls-service\\.de/\" to=\"https://gls.gls-service.de/\"/></ruleset>", "<ruleset name=\"GMO.com\" f=\"GMO.com.xml\"><securecookie host=\"^www\\.gmo\\.com$\" name=\".+\"/><rule from=\"^http://gmo\\.com/\" to=\"https://www.gmo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO BB.jp (partial)\" f=\"GMO_BB.jp.xml\"><securecookie host=\"^(?:file|help|webmail)\\.gmobb\\.jp\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO Cloud.com (partial)\" f=\"GMO_Cloud.com.xml\"><securecookie host=\"^(?:contact|order|www)\\.gmocloud\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.gmocloud\\.com/[^?]*\" to=\"https://www.gmocloud.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO Cloud.us\" f=\"GMO_Cloud.us.xml\"><securecookie host=\"^my\\.gmocloud\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO.jp (partial)\" f=\"GMO_Internet.xml\"><exclusion pattern=\"http://cloud\\.gmo\\.jp/+(?!common/|favicon\\.ico|(?:\\w+/)?images/|\\w+/style\\.css|this\\.css)\"/><securecookie host=\"^point\\.gmo\\.jp$\" name=\".+\"/><rule from=\"^http://img\\.gmo\\.jp/\" to=\"https://cache.img.gmo.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO Registry.com\" f=\"GMO_Registry.com.xml\"><securecookie host=\"^www\\.gmoregistry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gmo-registry\\.com/\" to=\"https://www.gmoregistry.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO server.jp\" f=\"GMO_server.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMP Lib.org\" f=\"GMP_Lib.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMRU.net\" f=\"GMRU.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMX (partial)\" f=\"GMX.xml\"><securecookie host=\"^mobile\\.gmx\\.de$\" name=\".+\"/><securecookie host=\"^(?:service|\\.suche|\\.?www)?\\.gmx\\.net$\" name=\".+\"/><rule from=\"^http://i[012]\\.gmx\\.com/\" to=\"https://sec-s.uicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GND-Tech.com (problematic)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"GND-Tech.com-problematic.xml\"><securecookie host=\"^\\.gnd-tech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gnd-tech\\.com/\" to=\"https://www.gnd-tech.com/\"/></ruleset>", "<ruleset name=\"GND-Tech.com (partial)\" f=\"GND-Tech.com.xml\"><rule from=\"^http://cdn\\.gnd-tech\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/cdn.gnd-tech.com/\"/></ruleset>", "<ruleset name=\"GNOME (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GNOME-falsemixed.xml\"><rule from=\"^http://(blog|new)s\\.gnome\\.org/\" to=\"https://$1s.gnome.org/\"/></ruleset>", "<ruleset name=\"GNOME (partial)\" f=\"GNOME.xml\"><exclusion pattern=\"^http://(?:blog|new)s\\.gnome\\.org/\"/><securecookie host=\"^(?:.*\\.)?gnome\\.org$\" name=\".+\"/><rule from=\"^http://((?:admin|api|blogs|bugs|bugzilla|(?:\\w+\\.)?bugzilla-attachments|build|cloud|developer|download|etherpad|extensions|foundation|git|glade|help|l10n|library|live|mail|mango|meetbot|nagios|news|ostree|people|planet|progress|projects|rt|static|usability|vote|webstats|wiki|www)\\.)?gnome\\.org/\" to=\"https://$1gnome.org/\"/><rule from=\"^http://ldap\\.gnome\\.org/\" to=\"https://www.gnome.org/\"/><rule from=\"^http://src\\.gnome\\.org/\" to=\"https://git.gnome.org/browse/\"/><rule from=\"^http://(?:www\\.)?gnomejournal\\.org/\" to=\"https://www.gnome.org/\"/><rule from=\"^http://(?:www\\.)?gupnp\\.org/\" to=\"https://live.gnome.org/GUPnP/\"/></ruleset>", "<ruleset name=\"GNS3.com (partial)\" f=\"GNS3.com.xml\"><securecookie host=\"^\\.gns3\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^community\\.gns3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.io\" f=\"GNU.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.org (partial)\" f=\"GNU.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?classpath\\.org/$\" to=\"https://www.gnu.org/software/classpath/\"/><rule from=\"^http://mail\\.gnu\\.org/\" to=\"https://lists.gnu.org/\"/><rule from=\"^http://sv\\.gnu\\.org/+\" to=\"https://savannah.gnu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.pl\" f=\"GNU.pl.xml\"><rule from=\"^http://gnu\\.pl/\" to=\"https://www.gnu.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU Radio.org\" f=\"GNU_Radio.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNUnet.org\" f=\"GNUnet.xml\"><securecookie host=\"^(?:.*\\.)?gnunet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNUsocial.de\" f=\"GNUsocial.de.xml\"><securecookie host=\"^gnusocial\\.de$\" name=\".+\"/><rule from=\"^http://www\\.gnusocial\\.de/\" to=\"https://gnusocial.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNUsocial.no\" f=\"GNUsocial.no.xml\"><securecookie host=\"^(?:www\\.)?gnusocial\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GO.com (partial)\" platform=\"mixedcontent\" f=\"GO.com.xml\"><exclusion pattern=\"^http://a\\d?\\.espncdn\\.com/(?:espn360|media/motion)/\"/><securecookie host=\"^\\.go\\.com$\" name=\"^(?:mbox|s_pers|s_sess|s_vi)$\"/><securecookie host=\"^(?:(?:\\.?disneyparks|\\.?disneyworld|quickquote)\\.disney|(?:(?:\\.games|proxy|[rs]|streak)\\.)?espn)\\.go\\.com$\" name=\".+\"/><rule from=\"^http://(abc|ctologgerdev01\\.analytics|(?:(?:analytics|disneyparks|disneyworld|mobile|quickquote)\\.)?disney|(?:(?:broadband|games|proxy|[rs]|streak)\\.)?espn|globalregsession|marvelstore|register|sw88|tredir)\\.go\\.com/\" to=\"https://$1.go.com/\"/><rule from=\"^http://a?(home\\.disney|global)\\.go\\.com/\" to=\"https://$1.go.com/\"/><rule from=\"^http://games-ak\\.espn\\.go\\.com/(banners|img)/\" to=\"https://games.espn.go.com/$1/\"/><rule from=\"^http://g\\.espncdn\\.com/flb/static/\" to=\"https://games.espn.go.com/flb/static/\"/></ruleset>", "<ruleset name=\"GOC.io\" f=\"GOC.io.xml\"><securecookie host=\"^\\.goc\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GOG.com\" f=\"GOG.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GOV.UK\" f=\"GOV.UK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GO Transit (partial)\" f=\"GO_Transit.xml\"><rule from=\"^http://(onthegoalerts|secure\\d*)\\.gotransit\\.com/\" to=\"https://$1.gotransit.com/\"/></ruleset>", "<ruleset name=\"GP.se (partial)\" f=\"GP.se.xml\"><exclusion pattern=\"^http://info\\.gp\\.se/(?!image_processor/|polopoly_fs/)\"/><rule from=\"^http://(?:info\\.|(www\\.))?gp\\.se/\" to=\"https://$1gp.se/\"/><rule from=\"^http://sifomedia\\.gp\\.se/\" to=\"https://oasc16.247realmedia.com/\"/></ruleset>", "<ruleset name=\"GP2X.de (partial)\" default_off=\"Certificate mismatch\" f=\"GP2X.de.xml\"><rule from=\"^http://(?:www\\.)?gp2x\\.de/shop\" to=\"https://gp2x.de/shop\"/></ruleset>", "<ruleset name=\"GPFI\" default_off=\"failed ruleset test\" f=\"GPFI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPGTools.org (partial)\" f=\"GPGTools.xml\"><exclusion pattern=\"http://support\\.gpgtools\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPLHost (partial)\" default_off=\"missing certificate chain\" f=\"GPLHost.xml\"><securecookie host=\"^dtc\\.\\w+\\.gplhost\\.com$\" name=\".*\"/><rule from=\"^http://dtc(\\.sharedfr|\\.node\\d{1,5})?\\.gplhost\\.com/\" to=\"https://dtc$1.gplhost.com/\"/><rule from=\"^http://dtc\\.gplhost\\.co\\.uk/\" to=\"https://dtc.gplhost.co.uk/\"/></ruleset>", "<ruleset name=\"GPShopper.com (partial)\" f=\"GPShopper.com.xml\"><rule from=\"^http://(analytics|cdn|static)\\.gpshopper\\.com/\" to=\"https://$1.gpshopper.com/\"/></ruleset>", "<ruleset name=\"GPUGRID.net\" f=\"GPUGRID.net.xml\"><securecookie host=\"^.*\\.gpugrid\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPUL.org (partial)\" f=\"GPUL.org.xml\"><rule from=\"^http://(?:www\\.)?gpul\\.org/\" to=\"https://gpul.org/\"/></ruleset>", "<ruleset name=\"GP ehosting.com\" f=\"GP_ehosting.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gPodder (partial)\" f=\"GPodder.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.bugs\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GQ-magazine.co.uk (partial)\" f=\"GQ-magazine.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?gq-magazine\\.co\\.uk/(?!_/)\"/><rule from=\"^http://(?:www\\.)?gq-magazine\\.co\\.uk/_/\" to=\"https://d3u12z27ui3vom.cloudfront.net/Build-GQ-master/1220-22b97fd67340/\"/></ruleset>", "<ruleset name=\"GQ.com (partial)\" f=\"GQ.xml\"><rule from=\"^http://gq\\.com/\" to=\"https://www.gq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRC.com\" f=\"GRC.com.xml\"><securecookie host=\"^www\\.grc\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRCtech.com\" f=\"GRCtech.com.xml\"><securecookie host=\"^www\\.grctech\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRML.org\" f=\"GRML.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRSecurity.net\" f=\"GRSecurity.net.xml\"><rule from=\"^http://(?:www\\.)?(cvsweb\\.|forums\\.|pax\\.)?grsecurity\\.net/\" to=\"https://$1grsecurity.net/\"/><securecookie host=\"^\\.forums\\.grsecurity\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"GRÜN Software\" f=\"GRUN_Software.xml\"><securecookie host=\"^www\\.gruen\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GS-media.de\" f=\"GS-media.de.xml\"><securecookie host=\"^\\.gs-media\\.de\" name=\".+\"/><rule from=\"^http://(css|flags|netbar|themes|www)\\.gs-media\\.de/\" to=\"https://$1.gs-media.de/\"/></ruleset>", "<ruleset name=\"GSA.gov (partial)\" f=\"GSA.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSFC.org\" default_off=\"failed ruleset test\" f=\"GSFC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSI Commerce\" default_off=\"mismatch\" f=\"GSI-Commerce.xml\"><rule from=\"^http://qpbs\\.imageg\\.net/\" to=\"https://qpbs.imageg.net/\"/></ruleset>", "<ruleset name=\"GSI.de\" f=\"GSI.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSL-Co2.com\" platform=\"mixedcontent\" f=\"GSL-Co2.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSU.edu (false MCB)\" platform=\"mixedcontent\" f=\"GSU.edu-falsemixed.xml\"><securecookie host=\"^www\\.gsu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gsu\\.edu/\" to=\"https://www.gsu.edu/\"/></ruleset>", "<ruleset name=\"GSU.edu (partial)\" f=\"GSU.edu.xml\"><securecookie host=\"^(?:campusid|paws)\\.gsu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gsu\\.edu/(?=wp-content/|wp-includes/)\" to=\"https://www.gsu.edu/\"/><rule from=\"^http://(campusid|(?:inb|www)\\.gosolar|paws|sendafile|gsu\\.view|webservices)\\.gsu\\.edu/\" to=\"https://$1.gsu.edu/\"/></ruleset>", "<ruleset name=\"GStreamer (partial)\" f=\"GStreamer.xml\"><rule from=\"^http://cdn\\.gstreamer\\.com/\" to=\"https://d2688lj8lursqz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GTC's Online\" f=\"GTCs-Online.xml\"><securecookie host=\"^\\.gtcsonline\\.mycashflow\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)peliaika\\.fi/\" to=\"https://gtcsonline.mycashflow.fi/\"/><rule from=\"^http://gtcsonline\\.mycashflow\\.fi/\" to=\"https://gtcsonline.mycashflow.fi/\"/></ruleset>", "<ruleset name=\"GTT.net (false MCB)\" platform=\"mixedcontent\" f=\"GTT.net.xml\"><securecookie host=\"^\\.gtt\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GU.se\" f=\"GU.se.xml\"><securecookie host=\"^gupea\\.ub\\.gu\\.se$\" name=\".+\"/><rule from=\"^http://(gupea\\.ub|webresources)\\.gu\\.se/\" to=\"https://$1.gu.se/\"/></ruleset>", "<ruleset name=\"GUADEC.org (partial)\" f=\"GUADEC.org.xml\"><rule from=\"^http://(www\\.)?guadec\\.org/\" to=\"https://$1guadec.org/\"/><rule from=\"^http://2012\\.guadec\\.org/sites/\" to=\"https://guadec.org/sites/\"/></ruleset>", "<ruleset name=\"GUUG.de\" f=\"GUUG.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GVNTube.com (partial)\" f=\"GVNTube.com.xml\"><rule from=\"^http://(?:www\\.)?gvntube\\.com/(favicon\\.ico|images/|javascripts/|login(?:$|\\?|/)|media/|stylesheets/)\" to=\"https://gvntube.com/$1\"/></ruleset>", "<ruleset name=\"GWhois.org (partial)\" f=\"GWhois.org.xml\"><securecookie host=\"^gwhois\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaatur u stig slapen.nl\" default_off=\"failed ruleset test\" f=\"Gaatur_u_stig_slapen.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dhaval Kapil.me\" f=\"Gabor_Szathmari.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://gaborszathmari\\.me/\" to=\"https://blog.gaborszathmari.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gabry.hu\" default_off=\"expired, missing certificate chain\" f=\"Gabry.hu.xml\"><securecookie host=\"^(?:www\\.)?gabry\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaia-GIS.it\" f=\"Gaia-GIS.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaia Online (breaks registration)\" default_off=\"registration, avatar system not fully supported\" f=\"GaiaOnline.xml\"><exclusion pattern=\"^http://a2\\.cdn\\.gaiaonline\\.com/\"/><securecookie host=\"^.gaiaonline\\.com$\" name=\".*\"/><rule from=\"^http://gaiaonline\\.com/\" to=\"https://www.gaiaonline.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.gaiaonline\\.com/\" to=\"https://$1.gaiaonline.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.gaia\\.hs\\.llnwd\\.net/\" to=\"https://$1.gaia.hs.llnwd.net/\"/><rule from=\"^http://([^/:@\\.]+)\\.cdn\\.gaiaonline\\.com/\" to=\"https://$1.cdn.gaiaonline.com/\"/><rule from=\"^http://gaiaonlinehelp\\.com/\" to=\"https://www.gaiaonlinehelp.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.gaiaonlinehelp\\.com/\" to=\"https://$1.gaiaonlinehelp.com/\"/></ruleset>", "<ruleset name=\"Gajim.org\" f=\"Gajim.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galaxis.at\" f=\"Galaxis.xml\"><securecookie host=\"^(?:www)?\\.galaxis\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galaxy Project.org (partial)\" f=\"Galaxy_Project.org.xml\"><rule from=\"^http://wiki\\.galaxyproject\\.org/\" to=\"https://wiki.galaxyproject.org/\"/></ruleset>", "<ruleset name=\"Gallup (partial)\" f=\"Gallup.xml\"><exclusion pattern=\"^http://www\\.gallup\\.com/+(?!Assets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galois.com\" f=\"Galois.com.xml\"><rule from=\"^http://corp\\.galois\\.com/$\" to=\"https://galois.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GamCare.org.uk (partial)\" default_off=\"522\" f=\"GamCare.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?gamcare\\.org\\.uk/((?:forum/)?cs|image)s/\" to=\"https://secure.gamcare.org.uk/$1s/\"/></ruleset>", "<ruleset name=\"GambleID\" f=\"GambleID.xml\"><securecookie host=\".+\\.gambleid\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gambleid\\.com/\" to=\"https://www.gambleid.com/\"/><rule from=\"^http://(admin|developer|enterprise|myaccount)\\.gambleid\\.com/\" to=\"https://$1.gambleid.com/\"/></ruleset>", "<ruleset name=\"Gambling Commission.gov.uk (partial)\" f=\"Gambling_Commission.xml\"><securecookie host=\"^secure\\.gamblingcommission\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://secure\\.gamblingcommission\\.gov\\.uk/\" to=\"https://secure.gamblingcommission.gov.uk/\"/></ruleset>", "<ruleset name=\"Gambling Portal Webmasters Association (partial)\" f=\"Gambling_Portal_Webmasters_Association.xml\"><rule from=\"^http://certify\\.gpwa\\.org/\" to=\"https://certify.gpwa.org/\"/></ruleset>", "<ruleset name=\"Game Link (partial)\" f=\"Game-Link.xml\"><rule from=\"^http://(?:www\\.)?gamelink\\.com/(login|shipping)\\.jhtml($|[;\\?])\" to=\"https://www.gamelink.com/$1.jhtml$2\"/><rule from=\"^http://gfx3\\.gamelink\\.com/\" to=\"https://gamelink.hs.llnwd.net/e1/images/\"/></ruleset>", "<ruleset name=\"Game Show Network (partial)\" default_off=\"failed ruleset test\" f=\"Game-Show-Network.xml\"><securecookie host=\"^(?:www\\.)?gsn\\.com$\" name=\"^bb_.*$\"/><rule from=\"^http://(?:www\\.)?tv\\.gsn\\.com/\" to=\"https://www.tv.gsn.com/\"/><rule from=\"^http://(www\\.)?gsn\\.com/(cgi/(account/register|cash/wwcpa/register|nosession/)|dynamic/|forums/)\" to=\"https://$1gsn.com/$2\"/><rule from=\"^http://(www\\.)?worldwinner\\.com/(cgi/(login\\.html|nosession/)|dynamic/|images/)\" to=\"https://$1worldwinner.com/$2\"/><rule from=\"^http://cdn\\.worldwinner\\.com/\" to=\"https://gp1.wpc.edgecastcdn.net/\"/></ruleset>", "<ruleset name=\"Game.co.uk\" f=\"Game.co.uk.xml\"><rule from=\"^http://(?:www\\.)?game\\.co\\.uk/\" to=\"https://www.game.co.uk/\"/></ruleset>", "<ruleset name=\"GameDev.net (partial)\" f=\"GameDev.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?gamedev\\.net/page/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameFly\" default_off=\"needs clearnet testing\" f=\"GameFly.xml\"><securecookie host=\"^www\\.gamefly\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://gamefly\\.co(\\.uk|m)/\" to=\"https://www.gamefly.co$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameFly CDN.com\" f=\"GameFly_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameHouse\" default_off=\"failed ruleset test\" f=\"GameHouse.xml\"><securecookie host=\"^.*\\.gamehouse\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gamehouse\\.com/\" to=\"https://www.gamehouse.com/\"/><rule from=\"^http://(media|support)\\.gamehouse\\.com/\" to=\"https://$1.gamehouse.com/\"/><rule from=\"^http://ad\\.ghfusion\\.com/\" to=\"https://ad.ghfusion.com/\"/></ruleset>", "<ruleset name=\"GameInformer.com (partial)\" f=\"GameInformer.xml\"><securecookie host=\"^(?:www)?\\.gameinformer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameSports.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GameSports.net-falsemixed.xml\"><securecookie host=\"^broadcasting\\.gamesports\\.net$\" name=\".+\"/><rule from=\"^http://(?:broadcasting\\.)?gamesports\\.net/\" to=\"https://broadcasting.gamesports.net/\"/></ruleset>", "<ruleset name=\"GameSports.net (partial)\" f=\"GameSports.net.xml\"><exclusion pattern=\"^http://broadcasting\\.gamesports\\.net/+(?!images/)\"/><securecookie host=\"^\\.gamesports\\.net$\" name=\"^gs_\\w+$\"/><rule from=\"^http://(broadcasting|forum|static|www)\\.gamesports\\.net/\" to=\"https://$1.gamesports.net/\"/><rule from=\"^http://(css|flags|netbar|themes)\\.cdn\\.gamesports\\.net/\" to=\"https://$1.gs-media.de/\"/></ruleset>", "<ruleset name=\"GameSpot.com (false MCB)\" platform=\"mixedcontent\" f=\"GameSpot.com-falsemixed.xml\"><securecookie host=\"^www\\.gamespot\\.com\" name=\".+\"/><rule from=\"^http://www\\.gamespot\\.com/\" to=\"https://www.gamespot.com/\"/></ruleset>", "<ruleset name=\"GameSpot (partial)\" f=\"GameSpot.xml\"><securecookie host=\"^\\.gamespot\\.com$\" name=\"^(?:AD_SESSION|ads_firstpg)$\"/><securecookie host=\"^(?:auth|us)\\.gamespot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameStop\" default_off=\"broken\" f=\"GameStop.xml\"><rule from=\"^http://(www\\.)?gamestop\\.com/(?:(.+/images|[cC]ommon|gs/(?:landing|merchincludes)|INTL|JavaScript|mrkt)/|.+\\.css$)\" to=\"https://$1gamestop.com/$2\"/></ruleset>", "<ruleset name=\"GameTree\" f=\"GameTree.xml\"><securecookie host=\"^gametreedeveloper\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?gametree(?:developer|linux)\\.com/\" to=\"https://$1gametreedeveloper.com/\"/><rule from=\"^http://cdn\\.gametreelinux\\.com/\" to=\"https://d303q111h1m66t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gamebillet.com\" f=\"Gamebillet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gamedesire.net (partial)\" f=\"Gamedesire.net.xml\"><rule from=\"^http://photos-1\\.gamedesire\\.net/\" to=\"https://e3228179915a08bd7e37-5d69d236ea985bd6e2070d8724d53456.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-2\\.gamedesire\\.net/\" to=\"https://e3f51024f050759f7996-7353508386eef0cf2e5b88063e9df0e2.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-3\\.gamedesire\\.net/\" to=\"https://888908a8a91b641e6a67-7e55c3863a20b7cd1941980d016517fa.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-4\\.gamedesire\\.net/\" to=\"https://60b63af08206a373f3af-736369e37fca9c51db6ab510561606c6.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-5\\.gamedesire\\.net/\" to=\"https://621677fdefd90f85a52a-b6139ea58ae4d364e7b4bd4667a1c497.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-6\\.gamedesire\\.net/\" to=\"https://af8d3a47a81718cefa81-092f7446244ae8acdfdac8010fb979cd.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-7\\.gamedesire\\.net/\" to=\"https://614a85fb3d3c967a8ec5-1d529e27d70978c2b79448c725df2738.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-8\\.gamedesire\\.net/\" to=\"https://573a22c7efb0251d38f2-87b36d2522973cbc189ecd1c3c4899eb.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-9\\.gamedesire\\.net/\" to=\"https://9c355a3ef7902c58f8c3-2968a6ed64c8971ba68b842decd2980d.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-10\\.gamedesire\\.net/\" to=\"https://d3673d8f8c3a865506dc-7d83ed208f9667477016ebfe6ac5ce62.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-11\\.gamedesire\\.net/\" to=\"https://551442956d1acb2b1ac1-b6b048cb71860b8f89a51e8ff21479aa.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-12\\.gamedesire\\.net/\" to=\"https://b6092b1ede836d275575-c3f6d1586b2580acbe6579e8eb935fd7.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-13\\.gamedesire\\.net/\" to=\"https://3daaecb033373e0b2101-70b1b2585d1b9a060f1c8b9e7768ed38.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-15\\.gamedesire\\.net/\" to=\"https://73a523f744d40ef6e1ea-e266b9b68094d09351772a92303a5498.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-16\\.gamedesire\\.net/\" to=\"https://6c0411fb3fc0be77b0de-2e254e45e3a9aa8529b4e5d95b3b5673.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-17\\.gamedesire\\.net/\" to=\"https://17ce5d735a99c6d96ee6-947a6139d03941c2771ec84916445494.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-38\\.gamedesire\\.net/\" to=\"https://289d643eaa9a1888ba4c-04f12471bcdb95cca3eeca2eb5591ec9.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-42\\.gamedesire\\.net/\" to=\"https://c913c7fbe304b76ded85-f041eef37cfea00a1dcae6859e4fae41.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-48\\.gamedesire\\.net/\" to=\"https://b223bd47ce46d2ab6b47-12643ce45db55bfccbbdf83d0572b127.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-50\\.gamedesire\\.net/\" to=\"https://a3e605ccc7eed766293f-bbc3afff9c06ca2e8d6ce9265e4caf01.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-74\\.gamedesire\\.net/\" to=\"https://9f68ec267a18e90d8671-d946aa0389f9fea95272af17b1d5e649.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-76\\.gamedesire\\.net/\" to=\"https://04079b3c5fffcb144679-73bdb3f152213b22052a33e18373fccd.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Gamefactory.jp\" f=\"Gamefactory.jp.xml\"><securecookie host=\"^\\.gamefactory\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.gamefactory\\.jp/\" to=\"https://www.gamefactory.jp/\"/></ruleset>", "<ruleset name=\"Gameladen\" f=\"Gameladen.xml\"><securecookie host=\"^\\.gameladen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gameoapp.com\" f=\"Gameoapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Gameological Society (partial)\" f=\"Gameological_Society.xml\"><exclusion pattern=\"^http://(?:www\\.)?gameological\\.com/(?!favicon\\.ico)\"/><rule from=\"^http://(?:quickman\\.|www\\.)?gameological\\.com/\" to=\"https://douky4lqbffj8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gamersfirst.com (partial)\" f=\"Gamersfirst.com.xml\"><rule from=\"^http://(?:www\\.)?gamersfirst\\.com/\" to=\"https://www.gamersfirst.com/\"/><rule from=\"^http://merchants\\.gamersfirst\\.com/\" to=\"https://merchants.gamersfirst.com/\"/></ruleset>", "<ruleset name=\"GamesOnly.at\" f=\"GamesOnly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GamesPlanet (partial, buggy)\" default_off=\"breaks some flash content\" f=\"GamesPlanet.xml\"><rule from=\"^http://(uk|es|it|fr)\\.gamesplanet\\.com/\" to=\"https://$1.gamesplanet.com/\"/></ruleset>", "<ruleset name=\"Gamesites.cz\" f=\"Gamesites.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamesrocket.de\" f=\"Gamesrocket.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamestar.de\" f=\"Gamestar.de.xml\"><rule from=\"^http://images\\.gamestar\\.de/\" to=\"https://images.gamestar.de/\"/></ruleset>", "<ruleset name=\"Gamestar Mechanic\" f=\"Gamestar_Mechanic.xml\"><securecookie host=\".*\\.gamestarmechanic\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:chalkable|edmodo|lti|schoology)?(?:\\.stage)?|cq|dev|dyn|ltps|msu|njbegich|q2l|ramapo|stmarysschool|www)\\.)?gamestarmechanic\\.com/\" to=\"https://$1gamestarmechanic.com/\"/><rule from=\"^http://cdn\\.gamestarmechanic\\.com/\" to=\"https://d1uoa9d4t4btfa.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gameswelt.de\" f=\"Gameswelt.de.xml\"><rule from=\"^http://www\\.gameswelt\\.de/\" to=\"https://www.gameswelt.de/\"/><rule from=\"^http://(mediang|static)\\.gameswelt\\.net/\" to=\"https://$1.gameswelt.net/\"/></ruleset>", "<ruleset name=\"Gametracker.com (partial)\" default_off=\"failed ruleset test\" f=\"Gametracker.com.xml\"><rule from=\"^http://(?:www\\.)?gametracker\\.com/\" to=\"https://www.gametracker.com/\"/><rule from=\"^http://image\\.www\\.gametracker\\.com/\" to=\"https://image.www.gametracker.com/\"/></ruleset>", "<ruleset name=\"Gamezebo\" default_off=\"failed ruleset test\" f=\"Gamezebo.xml\"><securecookie host=\"^\\.gamezebo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?gamezebo\\.com/\" to=\"https://$1gamezebo.com/\"/><rule from=\"^http://qa\\.gamezebo\\.com/gamezebov\\d/\" to=\"https://www.gamezebo.com/\"/></ruleset>", "<ruleset name=\"gamigo.com (partial)\" f=\"Gamigo.com.xml\"><securecookie host=\"^\\.gamigo\\.com$\" name=\"^BIGipServer[\\w.]+$\"/><securecookie host=\"^\\w.*\\.gamigo\\.com$\" name=\".\"/><rule from=\"^http://gamigo\\.com/\" to=\"https://www.gamigo.com/\"/><rule from=\"^http://us\\.gamigo\\.com/[^?]*\" to=\"https://en.gamigo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaminator\" default_off=\"failed ruleset test\" f=\"Gaminator.xml\"><securecookie host=\"^w*\\.slotsgaminator\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:gaminatorslots|slotsgaminator)\\.com/\" to=\"https://$1slotsgaminator.com/\"/></ruleset>", "<ruleset name=\"Gamingonlinux.com\" f=\"Gamingonlinux.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamma Group\" f=\"Gamma-Group.xml\"><rule from=\"^http://(?:www\\.)?gammagroup\\.com/\" to=\"https://www.gammagroup.com/\"/></ruleset>", "<ruleset name=\"GammaE.com\" f=\"GammaE.com.xml\"><securecookie host=\"^ad2\\.gammae\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gammae\\.com/\" to=\"https://www.gammae.com/\"/><rule from=\"^http://ad2\\.gammae\\.com/\" to=\"https://ad2.gammae.com/\"/></ruleset>", "<ruleset name=\"Gamona.de\" f=\"Gamona.de.xml\"><rule from=\"^http://www\\.gamona\\.de/\" to=\"https://www.gamona.de/\"/></ruleset>", "<ruleset name=\"Gandi\" f=\"Gandi.xml\"><rule from=\"^http://(?:www\\.)?gandi\\.net/\" to=\"https://www.gandi.net/\"/><rule from=\"^http://(en|es)\\.gandi\\.net/([^?#]*)(?:\\?([^#]+))?(#.*)?$\" to=\"https://www.gandi.net/$2?lang=$1&$3$4\"/><rule from=\"^http://uk\\.gandi\\.net/([^?#]*)(?:\\?([^#]+))?(#.*)?$\" to=\"https://www.gandi.net/$1?lang=en&$2$3\"/><rule from=\"^http://(blog|cal|wiki)\\.gandi\\.net/\" to=\"https://$1.gandi.net/\"/><securecookie host=\"^(?:(?:blog|cal|en|es|uk|wiki|www)\\.)?gandi\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"Gang Land News\" f=\"Gang_Land_News.xml\"><securecookie host=\"^\\.(?:www\\.)?ganglandnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gannett Company (partial)\" default_off=\"failed ruleset test\" f=\"Gannett-Company.xml\"><securecookie host=\"^(?:support|wiki)\\.dmslocal\\.com$\" name=\".+\"/><securecookie host=\"^\\.gannett\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:am[mp]oc0\\d|circportal|cwa|www\\.ganweb01|webmail(?:\\.\\w+)?)\\.gannett\\.com$\" name=\".+\"/><securecookie host=\"^classifieds\\.nncogannett\\.com$\" name=\".+\"/><rule from=\"^http://(support|wiki)\\.dmslocal\\.com/\" to=\"https://$1.dmslocal.com/\"/><rule from=\"^http://(am[mp]oc0\\d|autodisover|circportal|cwa|www\\.ganweb01|webmail(?:\\.\\w+)?)\\.gannett\\.com/\" to=\"https://$1.gannett.com/\"/><rule from=\"^http://benefits\\.gannett\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.benefitsweb.com/gannett.html$1\"/><rule from=\"^http://ssl1\\.gmti\\.com/\" to=\"https://ssl1.gmti.com/\"/><rule from=\"^http://deals\\.montgomeryadvertiser\\.com/\" to=\"https://montgom.planetdiscover.com/\"/><rule from=\"^http://classifieds\\.nncogannett\\.com/\" to=\"https://classifieds.nncogannett.com/\"/></ruleset>", "<ruleset name=\"GannettLocal (partial)\" f=\"GannettLocal.xml\"><securecookie host=\"^(?:support|wiki)\\.gannettlocal\\.com$\" name=\".+\"/><rule from=\"^http://(support|wiki)\\.gannettlocal\\.com/\" to=\"https://$1.gannettlocal.com/\"/></ruleset>", "<ruleset name=\"Gannett Ridge\" default_off=\"failed ruleset test\" f=\"Gannett_Ridge.xml\"><securecookie host=\"^(?:www\\.)?gannettridge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ganz eStore.com (partial)\" f=\"Ganz_eStore.com.xml\"><securecookie host=\"^(?:www\\.)?ganzestore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ganzestore\\.com/\" to=\"https://www.ganzestore.com/\"/><rule from=\"^http://adimages\\.ganzestore\\.com/\" to=\"https://adimages.ganzestore.com/\"/></ruleset>", "<ruleset name=\"GarageGames\" f=\"GarageGames.xml\"><securecookie host=\"^\\.garagegames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garcinia Cambogia VitalMend.com (partial)\" f=\"Garcinia_Cambogia_VitalMend.com.xml\"><securecookie host=\"^\\.garciniacambogiavitalmend\\.com$\" name=\"^__qca$\"/><rule from=\"^http://(www\\.)?garciniacambogiavitalmend\\.com/(?=checkout(?:$|[?/])|favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1garciniacambogiavitalmend.com/\"/></ruleset>", "<ruleset name=\"Garfield.com\" f=\"Garfield.com.xml\"><rule from=\"^http://(?:www\\.)?garfield\\.com/\" to=\"https://garfield.com/\"/><rule from=\"^http://licensee\\.garfield\\.com/\" to=\"https://licensee.garfield.com/\"/></ruleset>", "<ruleset name=\"Garoa.net\" default_off=\"failed ruleset test\" f=\"Garoa.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garron.me\" f=\"Garron.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garron.net\" f=\"Garron.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gartner.com (partial)\" f=\"Gartner.com.xml\"><exclusion pattern=\"^http://blogs\\.gartner\\.com/+(?!favicon\\.ico|gbn-feed(?:$|[?/])|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://www\\.gartner\\.com/(?!SignIn\\.jsp).+\\.jsp(?:$|\\?)\"/><securecookie host=\"^my\\.gartner\\.com$\" name=\".+\"/><rule from=\"^http://(?:na\\d\\.www\\.)?gartner\\.com/\" to=\"https://www.gartner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gary Johnson 2012\" default_off=\"failed ruleset test\" f=\"Gary_Johnson_2012.xml\"><securecookie host=\"^(?:.*\\.)?garyjohnson2012\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gasngrills.com (partial)\" f=\"Gasngrills.com.xml\"><rule from=\"^http://(www\\.)?gasngrills\\.com/(images/|index\\.php\\?(?:.+&)?dispatch=(?:auth\\.login_form|image\\.captcha|profiles\\.add)|skins/)\" to=\"https://$1gasngrills.com/$2\"/></ruleset>", "<ruleset name=\"Gate Grashing Org\" default_off=\"expired, self-signed\" f=\"Gate-Crashing-Org.xml\"><rule from=\"^http://gate\\.crashing\\.org/\" to=\"https://gate.crashing.org/\"/></ruleset>", "<ruleset name=\"Gateshead.gov.uk (partial)\" f=\"Gateshead.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gateway SB.com\" f=\"Gateway-State-Bank.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?gatewaysb\\.com/\" to=\"https://$1gatewaysb.com/\"/></ruleset>", "<ruleset name=\"Gatwick Airport\" f=\"Gatwick_Airport.xml\"><rule from=\"^http://gatwickairport\\.com/\" to=\"https://www.gatwickairport.com/\"/><rule from=\"^http://([^/:@]+)?\\.gatwickairport\\.com/\" to=\"https://$1.gatwickairport.com/\"/></ruleset>", "<ruleset name=\"Gavel Buddy.com\" f=\"Gavel_Buddy.com.xml\"><securecookie host=\"^(?:www\\.)?gavelbuddy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gavel Buddy Live.com\" f=\"Gavel_Buddy_Live.com.xml\"><securecookie host=\"^(?:w*\\.)?gavelbuddylive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gavin Newsom\" default_off=\"mismatch\" f=\"Gavin-Newsom.xml\"><securecookie host=\"^gavinnewsom\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gavinnewsom\\.com/\" to=\"https://gavinnewsom.com/\"/></ruleset>", "<ruleset name=\"Gavin Hungry.io\" f=\"Gavin_Hungry.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gavinhungry.com\" default_off=\"failed ruleset test\" f=\"Gavinhungry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawker-labs.com\" f=\"Gawker-labs.com.xml\"><rule from=\"^http://www\\.gawker-labs\\.com/\" to=\"https://gawker-labs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawker\" default_off=\"mismatched\" f=\"Gawker.xml\"><exclusion pattern=\"^http://help\\.gawker\\.com/(?!images/)\"/><securecookie host=\"^(?:.*\\.)?gawker\\.com$\" name=\".+\"/><rule from=\"^http://help\\.gawker\\.com/\" to=\"https://d3jyn100am7dxp.cloudfront.net/\"/><rule from=\"^http://cache\\.gawkerassets\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawkerassets.com (partial)\" f=\"Gawkerassets.com.xml\"><rule from=\"^http://img\\.gawkerassets\\.com/\" to=\"https://s3.amazonaws.com/img.gawkerassets.com/\"/></ruleset>", "<ruleset name=\"Gay180\" f=\"Gay180.xml\"><securecookie host=\"^\\.gay180\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GaySwap.com\" default_off=\"failed ruleset test\" f=\"GaySwap.com.xml\"><securecookie host=\"^(?:www\\.)?gayswap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GayTorrents\" default_off=\"failed ruleset test\" f=\"GayTorrents.xml\"><rule from=\"^http://(?:www\\.)?gay-torrents\\.net/\" to=\"https://www.gay-torrents.net/\"/><rule from=\"^http://static\\.gay-torrents\\.net/\" to=\"https://static.gay-torrents.net/\"/></ruleset>", "<ruleset name=\"Gayakuman\" default_off=\"mismatch\" f=\"Gayakuman.xml\"><rule from=\"^http://(?:www\\.)?gayakuman\\.com/\" to=\"https://www.gayakuman.com/\"/></ruleset>", "<ruleset name=\"GeForce.com (partial)\" f=\"GeForce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geany.org (false MCB)\" platform=\"cacert mixedcontent\" f=\"Geany.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GearSourceCDN.com\" f=\"GearSourceCDN.com.xml\"><securecookie host=\"^\\.gearsourcecdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GearSourceEurope.com (partial)\" f=\"GearSourceEurope.xml\"><exclusion pattern=\"^http://www\\.gearsourceeurope\\.com/+(?!general/(?:dsplogin|registration)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gearhog (default off)\" default_off=\"Certificate mismatch\" f=\"Gearhog.xml\"><rule from=\"^http://(?:www\\.)?gearhog\\.com/\" to=\"https://www.gearhog.com/\"/></ruleset>", "<ruleset name=\"Gearman\" default_off=\"self-signed\" f=\"Gearman.xml\"><securecookie host=\"^gearman\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gearman\\.org/\" to=\"https://gearman.org/\"/></ruleset>", "<ruleset name=\"Gearslutz.com\" f=\"Gearslutz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gearworks Manufacturing\" default_off=\"failed ruleset test\" f=\"Gearworks_Manufacturing.xml\"><securecookie host=\"^(?:.*\\.)?gearworkstire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geccdn.net\" f=\"Geccdn.net.xml\"><securecookie host=\"^i\\d+\\.geccdn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geef.nl (partial)\" f=\"Geef.nl.xml\"><exclusion pattern=\"^http://www\\.geef\\.nl/(?!assets/|commons/|css/|donatiemodule/|externalMod\\.php|favicon\\.ico|images/|js/|login|upload/)\"/><rule from=\"^http://geef\\.nl/\" to=\"https://www.geef.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek.com (mismatched)\" default_off=\"Certificate mismatch\" f=\"Geek.com-problematic.xml\"><securecookie host=\"^(?:.*\\.)?geek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?geek\\.com/\" to=\"https://www.geek.com/\"/></ruleset>", "<ruleset name=\"Geek.net (partial)\" f=\"Geek.net.xml\"><rule from=\"^http://cdn\\.asset\\.geek\\.net/\" to=\"https://d2hfi8wofzzjwf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GeekISP.com\" f=\"GeekISP.com.xml\"><securecookie host=\"^(?:www\\.)?geekisp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeekLAN.co.uk\" f=\"GeekLAN.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeekWire (partial)\" default_off=\"failed ruleset test\" f=\"GeekWire.xml\"><rule from=\"^http://cdn\\.geekwire\\.com/\" to=\"https://s3.amazonaws.com/geekwire/\"/></ruleset>", "<ruleset name=\"Geek Girls Guide.com\" f=\"Geek_Girls_Guide.com.xml\"><securecookie host=\"^\\.?www\\.geekgirlsguide\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Squad.co.uk\" f=\"Geek_Squad.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Tech Labs.com\" f=\"Geek_Tech_Labs.com.xml\"><rule from=\"^http://geektechlabs\\.com/\" to=\"https://www.geektechlabs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geekdo-static.com\" f=\"Geekdo-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geekevents.org\" f=\"Geekevents.org.xml\"><securecookie host=\"^\\.geekevents\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geekhack.org\" f=\"Geekhack.org.xml\"><securecookie host=\"^geekhack\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geekheim.de\" default_off=\"self-signed\" f=\"Geekheim.de.xml\"><rule from=\"^http://frank\\.geekheim\\.de/\" to=\"https://frank.geekheim.de/\"/></ruleset>", "<ruleset name=\"Geekify (partial)\" f=\"Geekify.xml\"><rule from=\"^http://(www\\.)?geekify\\.com\\.au/(data/|fpss/|images/|sites/|user(?:$|\\?|/))\" to=\"https://$1geekify.com.au/$2\"/></ruleset>", "<ruleset name=\"Geek Net Media.com\" default_off=\"404\" f=\"Geeknet_Media.xml\"><securecookie host=\"^geeknetmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geeksphone.com\" default_off=\"failed ruleset test\" f=\"Geeksphone.com.xml\"><securecookie host=\"^(?:(?:forum|\\.?shop|www)\\.)?geeksphone\\.com$\" name=\".+\"/><rule from=\"^http://((?:forum|shop|www)\\.)?geeksphone\\.com/\" to=\"https://$1geeksphone.com/\"/><rule from=\"^http://downloads\\.geeksphone\\.com/\" to=\"https://d337ou2hengace.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Geektimes.ru (partial)\" f=\"Geektimes.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gehrcke.de\" f=\"Gehrcke.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gehrcke\\.de/\" to=\"https://gehrcke.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geht.net (partial)\" default_off=\"failed ruleset test\" f=\"Geht.net.xml\"><securecookie host=\"^hydra\\.geht\\.net$\" name=\".+\"/><rule from=\"^http://hydra\\.geht\\.net/\" to=\"https://hydra.geht.net/\"/></ruleset>", "<ruleset name=\"Geizhals.at\" f=\"Geizhals.at.xml\"><rule from=\"^http://(?:www\\.)?geizhals\\.at/\" to=\"https://geizhals.at/\"/><rule from=\"^http://(forum|gewinnspiel|unternehmen)\\.geizhals\\.at/\" to=\"https://$1.geizhals.at/\"/></ruleset>", "<ruleset name=\"Geizhals.de\" f=\"Geizhals.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gem.co (partial)\" f=\"Gem.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemalto.com (expired, self-signed)\" default_off=\"expired, self-signed\" f=\"Gemalto.com-problematic.xml\"><securecookie host=\"^support\\.gemalto\\.com$\" name=\".+\"/><rule from=\"^http://support\\.gemalto\\.com/\" to=\"https://support.gemalto.com/\"/></ruleset>", "<ruleset name=\"Gemalto.com (partial)\" f=\"Gemalto.com.xml\"><securecookie host=\"^(?:boutique|webstore)\\.gemalto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemini.com\" f=\"Gemini.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemius.com (partial)\" f=\"Gemius.com.xml\"><securecookie host=\"^(?:heatmap\\.|www\\.)?gemius\\.com$\" name=\".+\"/><rule from=\"^http://gemius\\.com/+\" to=\"https://www.gemius.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemius.pl\" f=\"Gemius.xml\"><securecookie host=\"^(?:\\.hit|www)\\.gemius\\.pl$\" name=\".+\"/><rule from=\"^http://gemius\\.pl/\" to=\"https://www.gemius.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gémklub\" f=\"Gemklub.xml\"><rule from=\"^http://www\\.gemklub\\.hu/\" to=\"https://www.gemklub.hu/\"/></ruleset>", "<ruleset name=\"Gemnasium.com (partial)\" f=\"Gemnasium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemseek.com\" f=\"Gemseek.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GenGes.com\" f=\"GenGes.com.xml\"><securecookie host=\"^\\.genges\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"General Electric (partial)\" f=\"General-Electric.xml\"><rule from=\"^http://files\\.([^\\.]+)\\.geblogs\\.com/\" to=\"https://s3.amazonaws.com/files.$1.geblogs.com/\"/></ruleset>", "<ruleset name=\"General Logistics Systems\" f=\"General-Logistics-Systems.xml\"><securecookie host=\"^www\\.gls-group\\.eu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gls-group\\.eu/\" to=\"https://www.gls-group.eu/\"/></ruleset>", "<ruleset name=\"Generalitat of Catalonia (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Generalitat-of-Catalonia.xml\"><securecookie host=\"^(?:.*[^0]*\\.)?gencat\\.cat$\" name=\".*\"/><rule from=\"^http://(www\\.)?gencat\\.cat/\" to=\"https://$1gencat.cat/\"/><rule from=\"^http://www20\\.gencat\\.cat/(doc|portal/template)s/\" to=\"https://www20.gencat.cat/$1s/\"/></ruleset>", "<ruleset name=\"Genesee Photo Systems\" default_off=\"failed ruleset test\" f=\"Genesee_Photo_Systems.xml\"><securecookie host=\"^\\.(?:geneseephoto|okpartypix)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:geneseephoto|okpartypix)\\.com/\" to=\"https://$1geneseephotos.com/\"/></ruleset>", "<ruleset name=\"Genesis-Technologies\" f=\"Genesis-Technologies.xml\"><securecookie host=\"^(?:www\\.)?genesis-technologies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"genesis4gamer.de (partial)\" f=\"Genesis4gamer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gentle labs.com\" f=\"Gentle_labs.com.xml\"><securecookie host=\"^\\.gentlelabs\\.com$\" name=\".+\"/><rule from=\"^http://gentlelabs\\.com/\" to=\"https://www.gentlelabs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gentoo-blog.de (partial)\" f=\"Gentoo-blog.de.xml\"><rule from=\"^http://www\\.gentoo-blog\\.de/\" to=\"https://gentoo-blog.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gentoo-eV.org\" f=\"Gentoo-eV.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gentoo.org (partial)\" f=\"Gentoo.xml\"><exclusion pattern=\"^http://(?:distfiles|forums-web1)\\.gentoo\\.org/\"/><securecookie host=\".*\\.gentoo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GentooQuebec.org\" default_off=\"expired\" f=\"GentooQuebec.org.xml\"><securecookie host=\"^\\.?gentooquebec\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gentooquebec\\.org/\" to=\"https://gentooquebec.org/\"/></ruleset>", "<ruleset name=\"gentooexperimental.org (partial)\" default_off=\"self-signed\" f=\"Gentooexperimental.org.xml\"><rule from=\"^http://(?:www\\.)?gentooexperimental\\.org/~\" to=\"https://www.gentooexperimental.org/~\"/></ruleset>", "<ruleset name=\"Genymotion.com\" f=\"Genymotion.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://genymotion\\.com/\" to=\"https://www.genymotion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoAmigo\" default_off=\"failed ruleset test\" f=\"GeoAmigo.xml\"><securecookie host=\"^(?:www\\.)?geoamigo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoCoder.ca\" f=\"GeoCoder.xml\"><securecookie host=\"^(?:.*\\.)?geocoder\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoGebra.org\" f=\"GeoGebra.org.xml\"><securecookie host=\"^(?:(?:blog|community|events|\\.?forum|gathering|tube|tube-test|vanillatest|wiki|www)?\\.)?geogebra\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoPlatform.gov\" f=\"GeoPlatform.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoTrust.net\" f=\"GeoTrust.net.xml\"><securecookie host=\"^\\.geotrust\\.net$\" name=\"^v1st$\"/><rule from=\"^http://(enterprise-security-center\\.ilg|www)\\.geotrust\\.net/\" to=\"https://$1.geotrust.net/\"/></ruleset>", "<ruleset name=\"Geo Listening.com\" f=\"Geo_Listening.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geocaching.com (false MCB)\" platform=\"mixedcontent\" f=\"Geocaching.com-falsemixed.xml\"><securecookie host=\"^www\\.geocaching\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.geocaching\\.com/\" to=\"https://www.geocaching.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geocaching.com (partial)\" f=\"Geocaching.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?geocaching\\.com/blog(?:$|[?/])\"/><securecookie host=\"^shop\\.geocaching\\.com$\" name=\".+\"/><rule from=\"^http://www\\.geocaching\\.com/forums/default\\.aspx(?:\\?.*)?\" to=\"https://forums.groundspeak.com/GC/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geoclub.de (partial)\" f=\"Geoclub.de.xml\"><securecookie host=\"^\\.geoclub\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?geoclub\\.de/+\" to=\"https://forum.geoclub.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMU.edu (partial)\" f=\"George-Mason-University.xml\"><exclusion pattern=\"^http://mason\\.gmu\\.edu/(?!~)\"/><exclusion pattern=\"^http://today\\.gmu\\.edu/+(?!css/|images/)\"/><exclusion pattern=\"^http://ulife\\.gmu\\.edu/+(?!wp-content/)\"/><securecookie host=\"^(?:eagle|peoplefinder)\\.gmu\\.edu$\" name=\".+\"/><rule from=\"^http://gmu\\.edu/\" to=\"https://www.gmu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GWU.edu (partial)\" f=\"George-Washington-University.xml\"><exclusion pattern=\"^http://www\\.seas\\.gwu\\.edu/+(?!~|favicon\\.ico|sites/)\"/><securecookie host=\"^.*\\.gwu\\.edu$\" name=\".*\"/><rule from=\"^http://(gwtoday|www\\.seas|www)\\.gwu\\.edu/\" to=\"https://$1.gwu.edu/\"/></ruleset>", "<ruleset name=\"Georgetown University (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Georgetown_University.xml\"><securecookie host=\"^(?:secure\\.alumni|campus|commons|eaplus|gle|gquads|gucms-mgmt|guevents|gushare|hoyalink|(?:mail|schedule|www)\\.law|(?:\\.?catalog|repository)\\.library|m|msb|myaccess|mydante-public|wiki\\.uis|uis-bboard-\\d|www[134])\\.georgetown\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:secure\\.)?alumni|apps|campus|(?:media\\.|pilot\\.)?cndls|(?:blogs\\.|digital)?commons|eaplus|gdc|gle|gquads|gucms-(?:mgmt|ui)|guevents|gusa|gushare|hoyalink|itel|(?:autodiscover|legacy|mail|msb|schedule|www)\\.law|(?:(?:catalog|illiad|(?:login|www)\\.proxy|repository|resources|www)\\.)?library|m|mail|mobile|myaccess|mydante-public|netid-mgmt|pegasus|blog\\.provost|blog\\.sfs|signin|sites|wiki\\.uis|uis-bboard-\\d|www\\d?|www1[1235-9])\\.)?georgetown\\.edu/\" to=\"https://$1georgetown.edu/\"/><rule from=\"^http://www\\.(catalog\\.library|msb)\\.georgetown\\.edu/\" to=\"https://$1.georgetown.edu/\"/><rule from=\"^http://dante\\.georgetown\\.edu/\" to=\"https://blogs.commons.georgetown.edu/mydante/\"/><rule from=\"^http://digital\\.georgetown\\.edu/\" to=\"https://www.library.georgetown.edu/digital/\"/><rule from=\"^http://(?:researchguides\\.dml|guides\\.library)\\.georgetown\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://keyform\\.georgetown\\.edu/\" to=\"https://www4.georgetown.edu/uis/keybridge/keyform/\"/><rule from=\"^http://proxy\\.library\\.georgetown\\.edu/\" to=\"https://www.proxy.library.georgetown.edu/\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/(\\?.*)?$\" to=\"https://www.law.georgetown.edu/library/$1\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/services/(\\?.*)?$\" to=\"https://www.law.georgetown.edu/library/about/services-policies/$1\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/services/ill/(\\?.*)?$\" to=\"https://www.law.georgetown.edu/library/about/services-policies/interlibrary-loan.cfm$1\"/><rule from=\"^http://preparedness\\.georgetown\\.edu/[^\\?]*(\\?.*)?\" to=\"https://www.georgetown.edu/campus-life/safety-and-emergency-preparedness/$1\"/></ruleset>", "<ruleset name=\"Georgia Innocence Project\" default_off=\"expired, self-signed\" f=\"Georgia_Innocence_Project.xml\"><rule from=\"^http://(?:www\\.)?ga-innocenceproject\\.org/\" to=\"https://ga-innocenceproject.org/\"/></ruleset>", "<ruleset name=\"Georgie Girl Australia (partial)\" f=\"Georgie_Girl_Australia.xml\"><rule from=\"^http://(www\\.)?georgiegirl\\.com\\.au/(data/|fpss/|images/|sites/|user(?:$|\\?|/))\" to=\"https://$1georgiegirl.com.au/$2\"/></ruleset>", "<ruleset name=\"GeoTrust\" f=\"Geotrust.xml\"><securecookie host=\"^(?:knowledge)?\\.geotrust\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?geotrust\\.com/\" to=\"https://$1geotrust.com/\"/><rule from=\"^http://(enterprise-security-center|gesc|knowledge|products|seal|security-center|smarticon)\\.geotrust\\.com/\" to=\"https://$1.geotrust.com/\"/></ruleset>", "<ruleset name=\"Geovation.uk\" f=\"Geovation.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gephi\" f=\"Gephi.xml\"><securecookie host=\"^.+\\.gephi\\.org$\" name=\".+\"/><rule from=\"^http://((?:consortium|forum|marketplace|wiki|www)\\.)?gephi\\.org/\" to=\"https://$1gephi.org/\"/></ruleset>", "<ruleset name=\"Geraspora\" default_off=\"failed ruleset test\" f=\"Geraspora.xml\"><rule from=\"^http://(?:www\\.)?pod\\.geraspora\\.de/\" to=\"https://pod.geraspora.de/\"/></ruleset>", "<ruleset name=\"German Academic Exchange Service\" default_off=\"failed ruleset test\" f=\"German-Academic-Exchange-Service.xml\"><securecookie host=\"^ssl\\.daad\\.de$\" name=\".*\"/><rule from=\"^http://(?:(?:ssl|www)\\.)?daad\\.de/\" to=\"https://ssl.daad.de/\"/></ruleset>", "<ruleset name=\"German Design Council\" default_off=\"failed ruleset test\" f=\"German-Design-Council.xml\"><securecookie host=\"^(?:.*\\.)?german-design-council\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GermanTV\" f=\"GermanTV.xml\"><securecookie host=\"^(?:w*\\.)?germantv\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"German Center for Neurodegenerative Diseases\" f=\"German_Center_for_Neurodegenerative_Diseases.xml\"><securecookie host=\"^www\\.dzne\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"German Privacy Foundation\" default_off=\"failed ruleset test\" f=\"German_Privacy_Foundation.xml\"><securecookie host=\"^(?:www\\.)?privacyfoundation\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gesellschaft fuer Informatik\" f=\"GesellschaftInformatik.xml\"><rule from=\"^http://(?:www\\.)?gi\\.de/\" to=\"https://www.gi.de/\"/></ruleset>", "<ruleset name=\"Gesetze-im-Internet.de\" f=\"Gesetze-im-internet.de.xml\"><securecookie host=\"^www\\.gesetze-im-internet\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get-Digital.es\" f=\"Get-Digital.es.xml\"><securecookie host=\"^\\.(?:www\\.)?get-digital\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get-Digital.it\" f=\"Get-Digital.it.xml\"><securecookie host=\"^\\.(?:www\\.)?get-digital\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get-Digital.nl\" f=\"Get-Digital.nl.xml\"><securecookie host=\"^\\.(?:www\\.)?get-digital\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get.CM\" default_off=\"expired\" f=\"Get.CM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get.It\" f=\"Get.It.xml\"><securecookie host=\"^\\.get.it$\" name=\".+\"/><rule from=\"^http://(media\\.|www\\.)?get\\.it/\" to=\"https://$1get.it/\"/><rule from=\"^http://detect\\.get\\.it/\" to=\"https://s3.amazonaws.com/detect.get.it/\"/></ruleset>", "<ruleset name=\"GetAwayGrey\" f=\"GetAwayGrey.xml\"><securecookie host=\"^\\.getawaygrey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetChute (partial)\" f=\"GetChute.xml\"><rule from=\"^http://auth\\.getchute\\.com/\" to=\"https://auth.getchute.com/\"/><rule from=\"^http://media\\.getchute\\.com/\" to=\"https://s3.amazonaws.com/media.getchute.com/\"/></ruleset>", "<ruleset name=\"GetCloak.com\" f=\"GetCloak.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetClouder.com\" f=\"GetClouder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital-Blog.de\" f=\"GetDigital-Blog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital.co.uk\" f=\"GetDigital.co.uk.xml\"><securecookie host=\"^\\.(?:www\\.)?getdigital\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital.eu\" f=\"GetDigital.eu.xml\"><securecookie host=\"^\\.(?:www\\.)?getdigital\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital.fr\" f=\"GetDigital.fr.xml\"><securecookie host=\"^\\.(?:www\\.)?getdigital\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetFirebug\" f=\"GetFirebug.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetGlue\" default_off=\"failed ruleset test\" f=\"GetGlue.xml\"><securecookie host=\"^www\\.getglue\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?getglue\\.com/\" to=\"https://$1getglue.com/\"/><rule from=\"^http://widgets\\.getglue\\.com/\" to=\"https://s3.amazonaws.com/widgets.getglue.com/\"/></ruleset>", "<ruleset name=\"GET.HOW\" f=\"GetHOW.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getHarvest.com (partial)\" f=\"GetHarvest.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?getharvest\\.com/(?!images/|javascripts/|signup(?:$|[?/])|stylesheets/)\"/><securecookie host=\"^\\.getharvest\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:asset\\d\\.|(www\\.))?getharvest\\.com/\" to=\"https://$1getharvest.com/\"/></ruleset>", "<ruleset name=\"GetHashing.com\" f=\"GetHashing.com.xml\"><securecookie host=\"^forum\\.gethashing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetPersonas.com\" f=\"GetPersonas.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetPocket.com (partial)\" f=\"GetPocket.com.xml\"><exclusion pattern=\"^http://help\\.getpocket\\.com/(?!favicon\\.ico)\"/><securecookie host=\"^\\.getpocket\\.com$\" name=\".+\"/><rule from=\"^http://help\\.getpocket\\.com/\" to=\"https://d3jyn100am7dxp.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetResponse.com (partial)\" f=\"GetResponse.com.xml\"><exclusion pattern=\"^http://support\\.getresponse\\.com/+(?!uploads/|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:api2?|app|cdn|multimedia|secure|static|support|support-panel|www)\\.)?getresponse\\.com/\" to=\"https://$1getresponse.com/\"/></ruleset>", "<ruleset name=\"GetTraffic.com (partial)\" f=\"GetTraffic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetVoIP.com\" f=\"GetVoIP.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get ASGard.com\" f=\"Get_ASGard.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Ambassador.com (partial)\" f=\"Get_Ambassador.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Beagle.co (partial)\" f=\"Get_Beagle.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Chef.com (partial)\" f=\"Get_Chef.com.xml\"><exclusion pattern=\"http://www\\.getchef\\.com/+(?!account(?:$|[?/]))\"/><rule from=\"^http://(supermarket\\.|www\\.)?getchef\\.com/\" to=\"https://$1getchef.com/\"/><rule from=\"^http://docs\\.getchef\\.com/+(?=_static/)\" to=\"https://d172u545pcyiea.cloudfront.net/\"/><rule from=\"^http://learn\\.getchef\\.com/(?=assets/|favicon\\.ico)\" to=\"https://d11vgriu1n9l23.cloudfront.net/\"/></ruleset>", "<ruleset name=\"get Clef.com (partial)\" f=\"Get_Clef.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Composer.org\" f=\"Get_Composer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Fedora.org\" f=\"Get_Fedora.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Final.com\" f=\"Get_Final.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Foxy Proxy.org (partial)\" f=\"Get_Foxy_Proxy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get HTTPS for free.com\" f=\"Get_HTTPS_for_free.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get I2P.net\" f=\"Get_I2P.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get KeepSafe.com\" f=\"Get_KeepSafe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Lantern.org\" f=\"Get_Lantern.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Mailbird.com\" f=\"Get_Mailbird.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Mango.com\" f=\"Get_Mango.com.xml\"><rule from=\"^http://((?:blog|developers|panel|status|www)\\.)?getmango\\.com/\" to=\"https://$1getmango.com/\"/></ruleset>", "<ruleset name=\"get Meadow.com\" f=\"Get_Meadow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Out of Debt Guy\" f=\"Get_Out_of_Debt_Guy.xml\"><securecookie host=\"^\\.getoutofdebt\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?getoutofdebt\\.org/\" to=\"https://$1getoutofdebt.org/\"/><rule from=\"^http://cdn\\d*\\.getoutofdebt\\.org/\" to=\"https://d3iekd80gadj25.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Get Pelican.com\" default_off=\"expired, mismatched\" platform=\"cacert mixedcontent\" f=\"Get_Pelican.com.xml\"><rule from=\"^http://((?:blog|docs|www)\\.)?getpelican\\.com/\" to=\"https://$1getpelican.com/\"/></ruleset>", "<ruleset name=\"Get Rave.com\" f=\"Get_Rave.com.xml\"><rule from=\"^http://getrave\\.com/+\" to=\"https://www.getrave.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Safe Online.org\" f=\"Get_Safe_Online.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Scroll.com\" f=\"Get_Scroll.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get ShareX.com\" f=\"Get_ShareX.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Shine.com\" f=\"Get_Shine.com.xml\"><securecookie host=\"^\\.getshine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getshine\\.com/\" to=\"https://www.getshine.com/\"/></ruleset>", "<ruleset name=\"Get Tag.mobi\" default_off=\"mismatched\" f=\"Get_Tag.mobi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get jaco.com\" f=\"Get_jaco.com.xml\"><securecookie host=\".*\\.getjacko\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get pol.org\" f=\"Get_pol.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getbootstrap.com\" f=\"Getbootstrap.com.xml\"><securecookie host=\"^(www\\.|expo\\.|blog\\.|themes\\.)?getbootstrap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetClicky\" f=\"Getclicky.xml\"><securecookie host=\"^(?:.*\\.)?getclicky\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?staticstuff\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?clicky\\.com/(favicon\\.ico|user(?:$|\\?|/))\" to=\"https://$1clicky.com/$2\"/><rule from=\"^http://([^/:@\\.]+\\.)?getclicky\\.com/\" to=\"https://$1getclicky.com/\"/><rule from=\"^http://(?:win\\.|www\\.)?staticstuff\\.net/\" to=\"https://win.staticstuff.net/\"/><rule from=\"^http://hello\\.staticstuff\\.net/\" to=\"https://hello.staticstuff.net/\"/><rule from=\"^http://cdn\\.staticstuff\\.net/\" to=\"https://cdn.staticstuff.net/\"/></ruleset>", "<ruleset name=\"getDigital.de\" f=\"Getdigital.de.xml\"><securecookie host=\"^\\.(?:hex\\.|leet\\.|www\\.)?getdigital\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getdns API.net\" f=\"Getdns_API.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getgo\" f=\"Getgo.xml\"><securecookie host=\"^.*\\.getgo\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getgo\\.de/\" to=\"https://www.getgo.de/\"/><rule from=\"^http://secure\\.getgo\\.de/\" to=\"https://secure.getgo.de/\"/></ruleset>", "<ruleset name=\"Getify.com (partial)\" f=\"Getify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetMyBalance\" f=\"Getmybalance.xml\"><securecookie host=\"^((www\\.)?getmybalance\\.com)|(www.getmybalance.ca)|(www.getmymgmbalance.com)\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getprice (partial)\" f=\"Getprice.xml\"><rule from=\"^http://secure\\.getprice\\.com\\.au/\" to=\"https://secure.getprice.com.au/\"/></ruleset>", "<ruleset name=\"Getsatisfaction.com (mismatches)\" default_off=\"expired, mismatched\" f=\"Getsatisfaction.com-mismatches.xml\"><rule from=\"^http://(blog|product)\\.getsatisfaction\\.com/\" to=\"https://$1.getsatisfaction.com/\"/></ruleset>", "<ruleset name=\"Getsatisfaction.com (partial)\" f=\"Getsatisfaction.com.xml\"><securecookie host=\"^\\.getsatisfaction\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|education|info|www)\\.)?getsatisfaction\\.com/\" to=\"https://$1getsatisfaction.com/\"/></ruleset>", "<ruleset name=\"Getty.edu\" f=\"Getty.edu.xml\"><rule from=\"^http://(?:www\\.)?getty\\.edu/\" to=\"https://www.getty.edu/\"/><rule from=\"^http://shop\\.getty\\.edu/\" to=\"https://shopgetty.myshopify.com/\"/></ruleset>", "<ruleset name=\"Getty Images (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Getty_Images-problematic.xml\"><rule from=\"^http://(contributors|e)\\.gettyimages\\.com/\" to=\"https://$1.gettyimages.com/\"/></ruleset>", "<ruleset name=\"Getty Images (partial)\" f=\"Getty_Images.xml\"><exclusion pattern=\"^http://www\\.gettyimages\\.(?:ae|at|be|ca|ch|co\\.(?:jp|nz|uk)|com\\.au|de|dk|es|fi|fr|i[ent]|nl|no|pt|se)/(?!cms/|CMS/|favicon\\.ico|[iI]mages/|jQuery/|scripts/|style/)\"/><securecookie host=\"^.+\\.gettyimages\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?(stage-)?gettyimages\\.(ae|at|be|ca|ch|co\\.(?:jp|nz|uk)|com\\.au|de|dk|es|fi|fr|i[ent]|nl|no|pt|se)/\" to=\"https://secure.$1gettyimages.$2/\"/><rule from=\"^http://(?:cache|delivery)\\.gettyimages\\.com/\" to=\"https://delivery.gettyimages.com/\"/><rule from=\"^http://(api|assignments|autodiscover|callawaygolf|contribute|contributorsystems|developer|licensecompliance|mail|maildr|mixer|mm|remote|secure|upload)\\.gettyimages\\.com/\" to=\"https://$1.gettyimages.com/\"/></ruleset>", "<ruleset name=\"Gexpro.com\" f=\"Gexpro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GfK Etilize (partial)\" f=\"GfK_Etilize.xml\"><rule from=\"^http://content\\.etilize\\.com/\" to=\"https://content.etilize.com/\"/></ruleset>", "<ruleset name=\"gfx.ms\" f=\"Gfx.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gfycat.com\" f=\"Gfycat.com.xml\"><securecookie host=\"^\\.gfycat\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?gfycat\\.com/\" to=\"https://$1gfycat.com/\"/></ruleset>", "<ruleset name=\"ghbtns.com\" f=\"Ghbtns.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ghirardelligiftguides.com\" default_off=\"failed ruleset test\" f=\"Ghirardelligiftguides.com.xml\"><securecookie host=\"^(?:w*\\.)?ghirardelligiftguides\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghost.org (partial)\" f=\"Ghost.org.xml\"><securecookie host=\"^ghost\\.org$\" name=\".+\"/><securecookie host=\"^\\.ghost\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://status\\.ghost\\.org/\" to=\"https://ghost.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery.com\" f=\"Ghostery.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery Enterprise.com\" f=\"Ghostery_Enterprise.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery metrics optout\" default_off=\"user choice\" f=\"Ghostery_metrics_optout.xml\"><rule from=\"^https?://d\\.ghostery\\.com/.*\" to=\"https://hell.localhost/\"/></ruleset>", "<ruleset name=\"Ghostnote app.com\" f=\"Ghostnote_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ghowen.me\" f=\"Ghowen.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GiBlod.no\" f=\"GiBlod.xml\"><rule from=\"^http://(?:www\\.)?giblod\\.no/\" to=\"https://www.giblod.no/\"/></ruleset>", "<ruleset name=\"GiNaC.de\" default_off=\"self-signed\" f=\"GiNaC.de.xml\"><rule from=\"^http://www\\.ginac\\.de/\" to=\"https://www.ginac.de/\"/></ruleset>", "<ruleset name=\"Giant Bomb.com (partial)\" f=\"Giant_Bomb.com.xml\"><exclusion pattern=\"^http://www\\.giantbomb\\.com/+(?!bundles/|favicon\\.ico)\"/><securecookie host=\"^\\.giantbomb\\.com$\" name=\"^(?:AD_SESSION|ads_firstpg)$\"/><securecookie host=\"^auth\\.giantbomb\\.com$\" name=\".+\"/><securecookie host=\"^www\\.giantbomb\\.com$\" name=\"^_promos_seen\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gibraltar.gov.gi\" f=\"Gibraltar.gov.gi.xml\"><rule from=\"^http://gibraltar\\.gov\\.gi/\" to=\"https://www.gibraltar.gov.gi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GifBook.io\" f=\"GifBook.io.xml\"><rule from=\"^http://www\\.gifbook\\.io/\" to=\"https://gifbook.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gif Gratis.net\" default_off=\"expired, self-signed\" f=\"Gif_Gratis.net.xml\"><rule from=\"^http://(?:www\\.)?gifgratis\\.net/\" to=\"https://www.gifgratis.net/\"/></ruleset>", "<ruleset name=\"Gifsauce\" default_off=\"Certificate mismatch\" f=\"Gifsauce.xml\"><rule from=\"^http://(?:www\\.)?gifsauce\\.us/\" to=\"https://gifsauce.us/\"/></ruleset>", "<ruleset name=\"GiftTool.com\" f=\"GiftTool.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GiftedandTalented.com (partial)\" f=\"GiftedandTalented.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gifyo.com (partial)\" default_off=\"400, expired, missing certificate chain\" f=\"Gifyo.xml\"><securecookie host=\"^(?:www\\.)?gifyo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GigaOM.com (partial)\" f=\"GigaOM.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^(?!jobs\\.)\\w\" name=\".\"/><rule from=\"^http://jobs\\.gigaom\\.com/\" to=\"https://www.jobthread.com/\"/><exclusion pattern=\"^http://jobs\\.gigaom\\.com/+(?!files/|images/|partners/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GigaSize (partial)\" platform=\"mixedcontent\" f=\"GigaSize.xml\"><securecookie host=\"^(?:.*\\.)?gigasize\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigabyte.com (partial)\" f=\"Gigabyte.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigaclear.com (partial)\" f=\"Gigaclear.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gigafreak.net\" f=\"Gigafreak.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigamon.com (partial)\" f=\"Gigamon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giganews (partial)\" f=\"Giganews.xml\"><rule from=\"^http://(www\\.)?giganews\\.com/($|\\?|(?:auth|signup)(?:$|/)|images/|password(?:$|\\.html)|styles/)\" to=\"https://$1giganews.com/$2\"/></ruleset>", "<ruleset name=\"Gigantic Tickets (partial)\" default_off=\"failed ruleset test\" f=\"Gigantic_Tickets.xml\"><securecookie host=\"^(?:.+\\.)?gigantic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigantti.fi\" f=\"Gigantti.fi.xml\"><securecookie host=\"^www\\.gigantti\\.fi$\" name=\".*\"/><rule from=\"^http://www\\.gigantti\\.fi/\" to=\"https://www.gigantti.fi/\"/></ruleset>", "<ruleset name=\"gigaone.pl\" f=\"Gigaone.pl.xml\"><rule from=\"^http://(?:www\\.)?gigaone\\.pl/\" to=\"https://www.gigaone.pl/\"/></ruleset>", "<ruleset name=\"Gigaserver (partial)\" f=\"Gigaserver.xml\"><exclusion pattern=\"^http://(?:blog|kb)\\.\"/><securecookie host=\"^(?:.*\\.)?gigaserver\\.cz$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?gigaserver\\.cz/\" to=\"https://$1gigaserver.cz/\"/></ruleset>", "<ruleset name=\"Gigaset.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Gigaset.com.xml\"><rule from=\"^http://gigaset\\.com/\" to=\"https://gigaset.com/\"/><rule from=\"^http://www\\.gigaset\\.com/\" to=\"https://gigaset.com/\"/></ruleset>", "<ruleset name=\"GigeNET.com\" f=\"GigeNET.com.xml\"><securecookie host=\"^\\.gigenet\\.com$\" name=\".+\"/><securecookie host=\"^manage\\.gigenet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GigeNET Cloud.com\" f=\"GigeNET_Cloud.com.xml\"><securecookie host=\"^orders\\.gigenetcloud\\.com$\" name=\".+\"/><rule from=\"^http://gigenetcloud\\.gigenet\\.net/\" to=\"https://gigenetcloud.com/\"/><rule from=\"^http://(orders\\.|www\\.)?gigenetcloud\\.com/\" to=\"https://$1gigenetcloud.com/\"/></ruleset>", "<ruleset name=\"Gigster.com\" f=\"Gigster.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigya.com (partial)\" f=\"Gigya.xml\"><exclusion pattern=\"^http://blog\\.gigya\\.com/+(?!wp-content/)\"/><exclusion pattern=\"^http://info\\.gigya\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^staging\\.blog\\.gigya\\.com$\" name=\".+\"/><rule from=\"^http://gigya\\.com/\" to=\"https://www.gigya.com/\"/><rule from=\"^http://cdn\\.gigya\\.com/\" to=\"https://cdns.gigya.com/\"/><rule from=\"^http://info\\.gigya\\.com/+(?:\\?.*)?$\" to=\"https://www.gigya.com/\"/><rule from=\"^http://info\\.gigya\\.com/\" to=\"https://na-sjf.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gihyo.jp\" f=\"Gihyo.jp.xml\"><securecookie host=\"^gihyo\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.gihyo\\.jp/\" to=\"https://gihyo/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gimme Bar.com\" f=\"Gimme_Bar.com.xml\"><rule from=\"^http://(?:www\\.)?gimmebar\\.com/\" to=\"https://gimmebar.com/\"/></ruleset>", "<ruleset name=\"Gimmickwear\" f=\"Gimmickwear.xml\"><securecookie host=\"^\\.(?:www\\.)?gimmickwear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ginkel.com (partial)\" f=\"Ginkel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gionn.net\" f=\"Gionn.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gionn\\.net/\" to=\"https://gionn.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giphy.com\" f=\"Giphy.com.xml\"><securecookie host=\"^\\.giphy\\.com$\" name=\".+\"/><rule from=\"^http://media10\\.giphy\\.com/\" to=\"https://giphygifs.s3.amazonaws.com/\"/><rule from=\"^http://www\\.giphy\\.com/\" to=\"https://giphy.com/\"/><rule from=\"^http://((?:api|i|media\\d*)\\.)?giphy\\.com/\" to=\"https://$1giphy.com/\"/></ruleset>", "<ruleset name=\"Girl Scouts (partial)\" f=\"Girl_Scouts.xml\"><securecookie host=\"^www\\.girlscouts\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?girlscouts\\.org/\" to=\"https://www.girlscouts.org/\"/><rule from=\"^http://blog\\.girlscouts\\.org/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/></ruleset>", "<ruleset name=\"Girls Out West.com (partial)\" f=\"Girls_Out_West.com.xml\"><exclusion pattern=\"^http://forums?\\.girlsoutwest\\.com/+(?!clientscript/|cron\\.php|favicon\\.ico|images/)\"/><securecookie host=\"^(?!forum\\.).\" name=\".\"/><rule from=\"^http://forums\\.girlsoutwest\\.com/\" to=\"https://forum.girlsoutwest.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Girls Out West Free Stuff.com\" f=\"Girls_Out_West_Free_Stuff.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gismeteo.ru (partial)\" f=\"Gismeteo.ru.xml\"><securecookie host=\"^\\.?www\\.gismeteo\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gismeteo.ua\" f=\"Gismeteo.ua.xml\"><securecookie host=\"^\\.?www\\.gismeteo\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gistmarks.com\" f=\"Gistmarks.com.xml\"><securecookie host=\"^(?:www\\.)?gistmarks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Git.io\" f=\"Git.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Git\" f=\"Git.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitBook.com\" f=\"GitBook.com.xml\"><rule from=\"^http://gitbook\\.com/\" to=\"https://www.gitbook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitBook.IO (partial)\" f=\"GitBook.io.xml\"><rule from=\"^http://(?:www\\.)?gitbook\\.io/\" to=\"https://www.gitbook.com/\"/><rule from=\"^http://status\\.gitbook\\.io/\" to=\"https://githubio.statuspage.io/\"/></ruleset>", "<ruleset name=\"GitCafe.com (partial)\" f=\"GitCafe.xml\"><securecookie host=\"^www\\.gitcafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitCop.com\" f=\"GitCop.com.xml\"><securecookie host=\"^gitcop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitLab.com (partial)\" f=\"GitLab.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitHub Pages\" f=\"Github-Pages.xml\"><rule from=\"^http://([^/@:\\.]+)\\.github\\.io/\" to=\"https://$1.github.io/\"/></ruleset>", "<ruleset name=\"GitHub\" f=\"Github.xml\"><securecookie host=\"^(?:.*\\.)?github\\.com$\" name=\".+\"/><rule from=\"^http://github\\.io/\" to=\"https://pages.github.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gitian.org\" f=\"Gitian.org.xml\"><rule from=\"^http://(?:www\\.)?gitian\\.org/\" to=\"https://gitian.org/\"/></ruleset>", "<ruleset name=\"Gitorious\" f=\"Gitorious.xml\"><exclusion pattern=\"^http://(?:blog|en)\\.gitorious\\.org/\"/><exclusion pattern=\"^http://issues\\.gitorious\\.org/+(?!$|\\?)\"/><securecookie host=\".*\\.gitorious\\.org$\" name=\".+\"/><rule from=\"^http://issues\\.gitorious\\.org/+(?=$|\\?)\" to=\"https://gitorious.org/projects/gitorious/issues\"/><rule from=\"^http://status\\.gitorious\\.org/\" to=\"https://gitorious-status.herokuapp.com/\"/><rule from=\"^http://([^/:@\\.]+\\.)?gitorious\\.org/\" to=\"https://$1gitorious.org/\"/></ruleset>", "<ruleset name=\"Gitshell.com (partial)\" f=\"Gitshell.com.xml\"><securecookie host=\"^gitshell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gitter.im (partial)\" f=\"Gitter.im.xml\"><securecookie host=\"^(?:billing|developer|irc)\\.gitter\\.im$\" name=\".+\"/><rule from=\"^http://support\\.gitter\\.im/.*\" to=\"https://gitter.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gittip.com\" f=\"Gittip.com.xml\"><securecookie host=\"^www\\.gittip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Give Kids the World\" platform=\"mixedcontent\" f=\"Give-Kids-the-World.xml\"><securecookie host=\"^(?:secure|www)\\.gktw\\.org$\" name=\".+\"/><securecookie host=\"^www\\.givekidstheworldstore\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?gktw\\.org/\" to=\"https://$1gktw.org/\"/><rule from=\"^http://(www\\.)?givekidstheworld\\.org/\" to=\"https://$1gktw.org/\"/><rule from=\"^http://secure\\.gktw\\.org/\" to=\"https://secure.gktw.org/\"/><rule from=\"^http://(?:www\\.)?givekidstheworldstore\\.org/\" to=\"https://www.givekidstheworldstore.org/\"/></ruleset>", "<ruleset name=\"GiveDirect\" f=\"GiveDirect.xml\"><securecookie host=\"^(?:www\\.)?givedirect\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GiveDirectly.org\" f=\"GiveDirectly.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Givex (partial)\" f=\"Givex.xml\"><securecookie host=\"^wwws-.+\\.givex\\.com$\" name=\".+\"/><rule from=\"^http://wwws(-\\w\\w\\d)?\\.givex\\.com/\" to=\"https://wwws$1.givex.com/\"/></ruleset>", "<ruleset name=\"GivingComfort.org\" default_off=\"mismatched\" f=\"GivingComfort.org.xml\"><rule from=\"^http://(www\\.)?givingcomfort\\.(?:com|org)/\" to=\"https://$1givingcomfort.org/\"/></ruleset>", "<ruleset name=\"GivingPrograms.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GivingPrograms.com.xml\"><securecookie host=\"^(?:.+\\.)?givingprograms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Givskudzoo.dk\" f=\"Givskudzoo.dk.xml\"><rule from=\"^http://(www\\.)?givskudzoo\\.dk/\" to=\"https://www.givskudzoo.dk/\"/></ruleset>", "<ruleset name=\"Gixen\" f=\"Gixen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gizmag (partial)\" f=\"Gizmag.xml\"><rule from=\"^http://files\\.gizmag\\.com/\" to=\"https://d1ad9ekm4vh0vj.cloudfront.net/\"/><rule from=\"^http://images\\.gizmag\\.com/\" to=\"https://d3fvptmknnj7i1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gizmodo.com\" default_off=\"mismatched\" f=\"Gizmodo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?gizmodo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GladRags.com (partial)\" f=\"GladRags.com.xml\"><securecookie host=\"^secure\\.gladrags\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gladrags\\.com/\" to=\"https://secure.gladrags.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glam (partial)\" f=\"Glam.xml\"><securecookie host=\"^\\.glam\\.com$\" name=\".+\"/><rule from=\"^http://www2\\.glam\\.com/\" to=\"https://swww2.glam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glamorous UK\" default_off=\"failed ruleset test\" f=\"Glamorous_UK.xml\"><securecookie host=\"^\\.glamorousuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?glamorousuk\\.com/\" to=\"https://glamorousuk.com/\"/></ruleset>", "<ruleset name=\"Glasgow.gov.uk (partial)\" f=\"Glasgow.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glass Craft & Bead Expo\" f=\"Glass-Craft-and-Bead-Expo.xml\"><rule from=\"^http://(?:www\\.)?glasscraftexpo\\.com/\" to=\"https://www.glasscraftexpo.com/\"/></ruleset>", "<ruleset name=\"Glassdoor (partial)\" f=\"Glassdoor.xml\"><exclusion pattern=\"^http://(?:www\\.)?glassdoor\\.c(?:a|om|om\\.au|o\\.in|o\\.uk)/(?!images/|profile/)\"/><securecookie host=\"^static\\.glassdoor\\.com$\" name=\".+\"/><rule from=\"^http://(media\\.|static\\.|www\\.)?glassdoor\\.com/\" to=\"https://$1glassdoor.com/\"/><rule from=\"^http://ads\\.glassdoor\\.com/\" to=\"https://d3uryx0fdgatve.cloudfront.net/\"/><rule from=\"^http://glassdoor\\.c(a|om\\.au|o\\.in|o\\.uk)/\" to=\"https://www.glassdoor.c$1/\"/><rule from=\"^http://(static|www)\\.glassdoor\\.c(a|om\\.au|o\\.in|o\\.uk)/\" to=\"https://$1.glassdoor.c$2/\"/></ruleset>", "<ruleset name=\"Glasses.com (partial)\" f=\"Glasses.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?glasses\\.com/(?!images/|javascript/|product-detail/get-flyout/|production_minified/|__ssobj/|user/login-modal/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glassesusa.com\" f=\"Glassesusa.com.xml\"><rule from=\"^http://(?:www\\.)?glassesusa\\.com/\" to=\"https://www.glassesusa.com/\"/></ruleset>", "<ruleset name=\"Glb img.com (partial)\" f=\"Glb_img.com.xml\"><rule from=\"^http://s\\.glbimg\\.com/\" to=\"https://s.glbimg.com/\"/></ruleset>", "<ruleset name=\"Gleam\" f=\"Gleam.xml\"><securecookie host=\"^gleam\\.io$\" name=\".+\"/><rule from=\"^http://(js\\.)?gleam\\.io/\" to=\"https://$1gleam.io/\"/></ruleset>", "<ruleset name=\"GlenScott\" f=\"GlenScott.xml\"><securecookie host=\"^(?:.+\\.)?glenscott\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?glenscott\\.net/\" to=\"https://www.glenscott.net/\"/></ruleset>", "<ruleset name=\"Glenoit.com\" f=\"Glenoit.com.xml\"><securecookie host=\"^(?:www\\.)?glenoit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glerups\" f=\"Glerups.xml\"><rule from=\"^http://glerups\\.dk/\" to=\"https://www.glerups.dk/\"/><rule from=\"^http://([^/:@]+)\\.glerups\\.dk/\" to=\"https://$1.glerups.dk/\"/></ruleset>", "<ruleset name=\"GlimmerBlocker.org\" f=\"GlimmerBlocker.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glispa.com\" f=\"Glispa.com.xml\"><securecookie host=\"^ads\\.glispa\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.glispa\\.com/\" to=\"https://ads.glispa.com/\"/></ruleset>", "<ruleset name=\"GlitterBank (partial)\" f=\"GlitterBank.xml\"><rule from=\"^http://(?:www\\.)?glitterbank\\.com/flag/\" to=\"https://secure.hostmonster.com/~glitterb/flag/\"/></ruleset>", "<ruleset name=\"GlobaLeaks.org (partial)\" f=\"GlobaLeaks.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Footprint Network\" default_off=\"self-signed\" f=\"Global-Footprint-Network.xml\"><securecookie host=\"^www\\.footprintnetwork\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?footprintnetwork\\.org/\" to=\"https://www.footprintnetwork.org/\"/></ruleset>", "<ruleset name=\"Global Investor Relations\" default_off=\"connection dropped\" f=\"Global-Investor-Relations.xml\"><securecookie host=\"^ww7\\.investorrelations\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:(?:www\\.)g-ir\\.com|ww7\\.investorrelations\\.co\\.uk)/\" to=\"https://ww7.investorrelations.co.uk/\"/></ruleset>", "<ruleset name=\"Global Marine Networks (partial)\" default_off=\"failed ruleset test\" f=\"Global-Marine-Networks.xml\"><securecookie host=\"^\\.www\\.globalmarinenet\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Marketing Strategies (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Global-Marketing-Strategies.xml\"><securecookie host=\"^www\\.(?:free|professional)privacypolicy\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?howtowriteabookasap\\.com$\" name=\".+\"/><securecookie host=\"^www\\.termsofservicegenerator\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?fanpagegeneratorpro\\.com/\" to=\"https://$1fanpagegeneratorpro.com/\"/><rule from=\"^http://(www\\.)?(free|professional)privacypolicy\\.com/\" to=\"https://$1$2privacypolicy.com/\"/><rule from=\"^http://(www\\.)?howtowriteabookasap\\.com/\" to=\"https://$1howtowriteabookasap.com/\"/><rule from=\"^http://(www\\.)?termsofservicegenerator\\.com/\" to=\"https://$1termsofservicegenerator.com/\"/><rule from=\"^http://(www\\.)?whatsuccesstakes\\.com/\" to=\"https://$1whatsuccesstakes.com/\"/></ruleset>", "<ruleset name=\"Global Witness\" f=\"Global-Witness.xml\"><securecookie host=\"^.*\\.globalwitness\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?globalwitness\\.org/\" to=\"https://www.globalwitness.org/\"/></ruleset>", "<ruleset name=\"GlobalSign\" f=\"GlobalSign.xml\"><securecookie host=\"^(?:.*\\.)?globalsign\\.(?:com|co\\.uk|eu)$\" name=\".+\"/><rule from=\"^http://((?:archive|cn|dev|e-sign|eu|hk|dev\\.hk|jp|profile|revoked|seal|ssif1|sslcheck|static\\d|status|system(?:eu|us)?|th|dev\\.th|www)\\.)?globalsign\\.com/\" to=\"https://$1globalsign.com/\"/><rule from=\"^http://apac\\.globalsign\\.com/\" to=\"https://www.globalsign.com.sg/\"/><rule from=\"^http://blog\\.globalsign\\.com/\" to=\"https://www.globalsign.com/blog\"/><rule from=\"^http://(www\\.)?globalsign\\.(co(?:\\.in|\\.uk|m\\.au|m\\.sg)|de|es|eu|fr|net|nl)/\" to=\"https://$1globalsign.$2/\"/><rule from=\"^http://m\\.globalsign\\.eu/\" to=\"https://m.globalsign.eu/\"/></ruleset>", "<ruleset name=\"Globaltestsupply\" default_off=\"failed ruleset test\" f=\"GlobalTestSupply.xml\"><rule from=\"^http://(?:www\\.)?globaltestsupply\\.com/\" to=\"https://www.globaltestsupply.com/\"/></ruleset>", "<ruleset name=\"Global 2000.at\" f=\"Global_2000.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Amici\" default_off=\"expired\" f=\"Global_Amici.xml\"><securecookie host=\"^\\.globalamicistore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globalamicistore\\.com/\" to=\"https://www.globalamicistore.com/\"/></ruleset>", "<ruleset name=\"Global Bersih\" f=\"Global_Bersih.xml\"><securecookie host=\"^(?:w*\\.)?globalbersih.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Capacity.com (partial)\" f=\"Global_Capacity.com.xml\"><securecookie host=\"^(?:clm|myaccount)\\.globalcapacity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Cloud Xchange.com (partial)\" f=\"Global_Cloud_Xchange.com.xml\"><rule from=\"^http://cdn\\.globalcloudxchange\\.com/\" to=\"https://d6v3rabjzlopt.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global HIV Me Info.org\" f=\"Global_HIV_Me_Info.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Human Rights.org (partial)\" f=\"Global_Human_Rights.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?globalhumanrights\\.org/+(?!act-now/donate-now/|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Network.pl\" f=\"Global_Network.pl.xml\"><rule from=\"^http://www\\.globalnetwork\\.pl/\" to=\"https://globalnetwork.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Network Initiative.org\" default_off=\"missing certificate chain\" f=\"Global_Network_Initiative.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Perspectives Canada\" f=\"Global_Perspectives_Canada.xml\"><securecookie host=\"^\\.globalperspectivescanada.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Policy Forum\" f=\"Global_Policy_Forum.xml\"><securecookie host=\"^www\\.globalpolicy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globalpolicy\\.org/\" to=\"https://www.globalpolicy.org/\"/></ruleset>", "<ruleset name=\"Global Promote\" default_off=\"mismatched\" f=\"Global_Promote.xml\"><rule from=\"^http://(?:www\\.)?globalpromote\\.com/\" to=\"https://globalpromote.com/\"/></ruleset>", "<ruleset name=\"Global Research.ca (partial)\" f=\"Global_Research.ca.xml\"><rule from=\"^http://store\\.globalresearch\\.ca/\" to=\"https://store.globalresearch.ca/\"/></ruleset>", "<ruleset name=\"Global Sources (partial)\" default_off=\"failed ruleset test\" f=\"Global_Sources.xml\"><securecookie host=\"^w*\\.globalsources\\.com$\" name=\".+\"/><rule from=\"^http://(?:s\\.|www\\.)?globalsources\\.com/\" to=\"https://www.globalsources.com/\"/><rule from=\"^http://login\\.globalsources\\.com/\" to=\"https://login.globalsources.com/\"/></ruleset>", "<ruleset name=\"Global Trade Day.org\" f=\"Global_Trade_Day.org.xml\"><securecookie host=\"^www\\.globaltradeday\\.org$\" name=\".+\"/><rule from=\"^http://globaltradeday\\.org/\" to=\"https://www.globaltradeday.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Voices Online.org (partial)\" f=\"Global_Voices_Online.org.xml\"><securecookie host=\"^\\.(?:\\w+\\.)?globalvoicesonline\\.org$\" name=\".+\"/><rule from=\"^http://((?:advocacy|ar|aym?|bn|books|da|de|el|es|fa|fr|hu|id|it|jp|ko|mg|mk|nl|pl|pt|rising|ru|s[rvw]|www|zh)\\.)?globalvoicesonline\\.org/\" to=\"https://$1globalvoicesonline.org/\"/></ruleset>", "<ruleset name=\"Global Web.co.uk\" f=\"Global_Web.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://globalweb\\.co\\.uk/\" to=\"https://www.globalweb.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globalclimatemarch.org\" f=\"Globalclimatemarch.org.xml\"><securecookie host=\"^globalclimatemarch\\.org\" name=\".+\"/><rule from=\"^http://www\\.globalclimatemarch\\.org/\" to=\"https://globalclimatemarch.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"globaloneteam.com\" f=\"Globaloneteam.com.xml\"><securecookie host=\"^(?:dsso|sso|sso-qa)\\.globaloneteam\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globaloneteam\\.com/(?=$|\\?)\" to=\"https://me2.ihgmerlin.com/web/merlin/home\"/><rule from=\"^http://(?:www\\.)?globaloneteam\\.com//[^?]*\" to=\"https://www.ihgmerlin.com/portal/server.pt?\"/><rule from=\"^http://(?:www\\.)?globaloneteam\\.com/\" to=\"https://me2.ihgmerlin.com/me2-vanity-url-portlet/redirect/\"/><rule from=\"^http://(dsso|sso|sso-qa)\\.globaloneteam\\.com/\" to=\"https://$1.globaloneteam.com/\"/></ruleset>", "<ruleset name=\"Global Scale Technologies\" f=\"Globalscaletechnologies.com.xml\"><securecookie host=\"^(?:.*\\.)?globalscaletechnologies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globaltap.com\" default_off=\"failed ruleset test\" f=\"Globaltap.com.xml\"><securecookie host=\"^billing\\.globaltap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globalways.net\" f=\"Globalways.net.xml\"><securecookie host=\"^(?:www\\.)?globalways\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globat\" f=\"Globat.xml\"><securecookie host=\"^\\.globat\\.com$\" name=\".*\"/><rule from=\"^http://(secure\\.|www\\.)?globat\\.com(?:443)?/\" to=\"https://$1globat.com/\"/></ruleset>", "<ruleset name=\"TheGlobeAndMail (cert warning)\" default_off=\"akamai\" f=\"GlobeAndMail.xml\"><rule from=\"^http://(?:www\\.)?theglobeandmail\\.com/\" to=\"https://www.theglobeandmail.com/\"/></ruleset>", "<ruleset name=\"Globes (partial)\" f=\"Globes.xml\"><securecookie host=\"^www\\.globes\\.co\\.il$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globes\\.co\\.il/\" to=\"https://www.globes.co.il/\"/></ruleset>", "<ruleset name=\"Globetrotter\" f=\"Globetrotter.xml\"><rule from=\"^http://(?:www\\.)?globetrotter\\.de/\" to=\"https://www.globetrotter.de/\"/></ruleset>", "<ruleset name=\"Globus Online\" f=\"Globus-Online.xml\"><securecookie host=\"^(?:.*\\.)?globusonline\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globus (partial)\" default_off=\"self-signed\" f=\"Globus.xml\"><securecookie host=\"^dev\\.globus\\.org$\" name=\".*\"/><rule from=\"^http://dev\\.globus\\.org/\" to=\"https://dev.globus.org/\"/></ruleset>", "<ruleset name=\"Glose.com\" f=\"Glose.com.xml\"><rule from=\"^http://(?:www\\.)?glose\\.com/\" to=\"https://glose.com/\"/></ruleset>", "<ruleset name=\"Gloucestershire.gov.uk (partial)\" f=\"Gloucestershire.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?gloucestershire\\.gov\\.uk/+(?!\\w+/(?:css|images|scripts/.+\\.css|template/)|images/|media/)\"/><exclusion pattern=\"^http://my(?:temp)?jobs\\.gloucestershire\\.gov\\.uk/+(?!css/|js/.+\\.css|pages/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gloucestershire Constabulary\" f=\"GloucestershireConstabulary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glowing.com (partial)\" f=\"Glowing.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gluster.org\" f=\"Gluster.org.xml\"><securecookie host=\"^\\.forge\\.gluster\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glype (partial)\" platform=\"mixedcontent\" f=\"Glype.xml\"><securecookie host=\"^www\\.glype\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glyph.im\" f=\"Glyph.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glyphicons.com\" f=\"Glyphicons.com.xml\"><securecookie host=\"^(www\\.)?glyphicons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gmedianetworks.com\" f=\"Gmedianetworks.com.xml\"><rule from=\"^http://static\\.gmedianetworks\\.com/\" to=\"https://static.gmedianetworks.com/\"/><rule from=\"^http://staticcdn\\.gmedianetworks\\.com/\" to=\"https://dn6540p04s3vz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gymnázium Matyáše Lercha\" f=\"Gml.cz.xml\"><rule from=\"^http://gml\\.cz/\" to=\"https://www.gml.cz/\"/><rule from=\"^http://www\\.gml\\.cz/\" to=\"https://www.gml.cz/\"/></ruleset>", "<ruleset name=\"Gna.org (partial)\" default_off=\"failed ruleset test\" f=\"Gna.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gngr.info\" f=\"Gngr.info.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?gngr\\.info/\" to=\"https://$1gngr.info/\"/></ruleset>", "<ruleset name=\"Gnosis Software\" default_off=\"Certificate mismatch\" f=\"Gnosis-Software.xml\"><rule from=\"^http://(?:www\\.)?gnosis\\.cx/\" to=\"https://gnosis.cx/\"/></ruleset>", "<ruleset name=\"GnuPG.org (self-signed)\" default_off=\"self-signed\" f=\"GnuPG.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuPG.org (partial)\" f=\"GnuPG.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuTLS.org (partial)\" f=\"GnuTLS.org.xml\"><rule from=\"^http://lists\\.gnutls\\.org/\" to=\"https://lists.gnupg.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gnuheter.org\" default_off=\"mismatched\" f=\"Gnuheter.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gnumeric.org\" default_off=\"self-signed\" f=\"Gnumeric.org.xml\"><rule from=\"^http://(?:www\\.)?gnumeric\\.org/\" to=\"https://www.gnumeric.org/\"/></ruleset>", "<ruleset name=\"Gnumonks.org (CAcert, partial)\" platform=\"cacert\" default_off=\"connection refused\" f=\"Gnumonks.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go2Arena.com\" f=\"Go2Arena.com.xml\"><securecookie host=\"^\\.(?:www\\.)?go2arena\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go8.edu.au\" f=\"Go8.edu.au.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoAbroad.com (partial)\" f=\"GoAbroad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoAruna.com (partial)\" default_off=\"expired\" f=\"GoAruna.com.xml\"><securecookie host=\"^\\.goaruna\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?goaruna\\.com/(?=account(?:$|[?/])|favicon\\.ico|images/|javascripts/|stylesheets/)\" to=\"https://goaruna.com/\"/></ruleset>", "<ruleset name=\"GoCoin.com\" f=\"GoCoin.com.xml\"><securecookie host=\"^(?:\\.|dashboard\\.|www\\.)?gocoin\\.com$\" name=\".+\"/><rule from=\"^http://help\\.gocoin\\.com/\" to=\"https://gocoin.tenderapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy.net\" f=\"GoDaddy.net.xml\"><securecookie host=\"^(?:aboutus|investors|newsroom)\\.godaddy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy.com (partial)\" f=\"GoDaddy.xml\"><securecookie host=\"^(?:.*\\.)?godaddy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy mobile.com (partial)\" f=\"GoDaddy_mobile.com.xml\"><securecookie host=\"^\\.godaddymobile\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDoc.org\" f=\"GoDoc.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoEmerchant.com\" default_off=\"failed ruleset test\" f=\"GoEmerchant.xml\"><securecookie host=\"^(?:secure)\\.gomerchant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoExplore.net\" f=\"GoExplore.net.xml\"><exclusion pattern=\"^http:\\/\\/www\\.goexplore\\.net\\/they-did-what\\/payments-evolution-sheep-to-smartphones\"/><securecookie host=\"^www\\.goexplore\\.net$\" name=\".+\"/><rule from=\"^http://goexplore\\.net/\" to=\"https://www.goexplore.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoFrugal.com (partial)\" f=\"GoFrugal.xml\"><securecookie host=\"^mydiscussion\\.gofrugal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoFundMe.com\" f=\"GoFundMe.xml\"><securecookie host=\"^(?:funds)?\\.gofundme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoGetSSL.com\" f=\"GoGetSSL.com.xml\"><exclusion pattern=\"^http://dev\\.gogetssl\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoNewSoft.com\" f=\"GoNewSoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoRails.com\" f=\"GoRails.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoSoapBox.com\" default_off=\"failed ruleset test\" f=\"GoSoapBox.xml\"><securecookie host=\"^\\.gosoapbox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gosoapbox\\.com/\" to=\"https://www.gosoapbox.com/\"/></ruleset>", "<ruleset name=\"GoSquared.com\" f=\"GoSquared.com.xml\"><securecookie host=\"^\\.gosquared\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoStats (partial)\" default_off=\"failed ruleset test\" f=\"GoStats.xml\"><rule from=\"^http://(?:www\\.)?gostats\\.com/js/\" to=\"https://ssl.gostats.com/js/\"/><rule from=\"^http://(www\\.)?ssl\\.gostats\\.com/\" to=\"https://$1ssl.gostats.com/\"/><rule from=\"^http://cdn\\.gsstatic\\.com/\" to=\"https://gostats.cachefly.net/\"/></ruleset>", "<ruleset name=\"GoToAssist.com\" f=\"GoToAssist.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gotoassist\\.com/remote_support/\" to=\"https://www.gotoassist.com/remote-support/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoToMeeting.com\" f=\"GoToMeeting.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoToTraining.com\" f=\"GoToTraining.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoToWebinar.com (partial)\" f=\"GoToWebinar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gotowebinar\\.com/\" to=\"https://www.gotowebinar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoUrl.io\" f=\"GoUrl.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoWork.pl (partial)\" f=\"GoWork.pl.xml\"><exclusion pattern=\"^http://(?:www\\.)?gowork\\.pl/+(?!css/|favicon\\.ico|images/|js/|logowanie(?:$|[?/])|xml/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Lang.org\" f=\"Go_Lang.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Lucid.co\" f=\"Go_Lucid.co.xml\"><rule from=\"^http://golucid\\.co/\" to=\"https://www.golucid.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Mohu.com (partial)\" f=\"Go_Mohu.com.xml\"><securecookie host=\"^\\.store\\.gomohu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Rickshaw.com\" f=\"Go_Rickshaw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Turkey.com\" f=\"Go_Turkey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go Ubiquiti.com\" f=\"Go_Ubiquiti.com.xml\"><securecookie host=\"^www\\.goubiquiti\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Walker.org\" f=\"Go_Walker.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.gowalker\\.org/\" to=\"https://gowalker.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go eShow.com\" f=\"Go_eShow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoalWorthy.com\" f=\"GoalWorthy.com.xml\"><securecookie host=\"^(?:w*\\.)?goalworthy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goaldet.com\" f=\"Goaldet.com.xml\"><securecookie host=\"^(?:w*\\.)?goaldet.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GodPraksis.no\" f=\"GodPraksis.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Goddard Group\" default_off=\"self-signed\" f=\"Goddard-Group.xml\"><securecookie host=\"^(?:.*\\.)?garygoddard\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?garygoddard\\.com/\" to=\"https://www.garygoddard.com/\"/></ruleset>", "<ruleset name=\"Godville game\" f=\"Godville.xml\"><rule from=\"^http://(?:www\\.)?godvillegame\\.com/\" to=\"https://godvillegame.com/\"/></ruleset>", "<ruleset name=\"goeswhere.com\" f=\"Goeswhere.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GogoTraining.com (partial)\" f=\"GogoTraining.com.xml\"><rule from=\"^http://(?:www\\.)?gogotraining\\.com/(?=(?:blog|shop)(?:$|[?/])|css/|favicon\\.ico|images/|join/login\\.php|js/)\" to=\"https://gogotraining.com/\"/></ruleset>", "<ruleset name=\"Gogo\" f=\"Gogoair.xml\"><rule from=\"^http://(?:www\\.gogoair|(?:www\\.)?gogoinflight)\\.com/\" to=\"https://gogoair.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gogobot (partial)\" f=\"Gogobot.xml\"><securecookie host=\".*\\.g(?:bot\\.me|ogobot\\.com)$\" name=\".+\"/><rule from=\"^http://gbot\\.me/\" to=\"https://bit.ly/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gogoyoko.com (partial)\" default_off=\"connection dropped\" f=\"Gogoyoko.xml\"><securecookie host=\".*\\.gogoyoko\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoingUp.com (partial)\" f=\"GoingUp.xml\"><securecookie host=\"^(?:counter|www)\\.goingup\\.com$\" name=\".*\"/><rule from=\"^http://goingup\\.com/\" to=\"https://www.goingup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goke.me\" f=\"Goke.me.xml\"><securecookie host=\"^\\.goke\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golden Adventures.com\" default_off=\"failed ruleset test\" f=\"Golden_Adventures.xml\"><securecookie host=\"^\\.goldenadventures\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golden Charter (partial)\" f=\"Golden_Charter.xml\"><securecookie host=\"^mygoldencharter\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(mail|webservices)\\.goldencharter\\.co\\.uk/\" to=\"https://$1.goldencharter.co.uk/\"/><rule from=\"^http://webservices\\.goldencharter\\.co\\.uk:8808/portal/([^?]*)(?:\\?.*)?\" to=\"https://mygoldencharter.co.uk/$1\"/><rule from=\"^http://(?:www\\.)?mygoldencharter\\.co\\.uk/\" to=\"https://mygoldencharter.co.uk/\"/></ruleset>", "<ruleset name=\"Golden Frog.com (partial)\" f=\"Golden_Frog.com.xml\"><securecookie host=\"^www\\.goldenfrog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldkeys.net (partial)\" default_off=\"failed ruleset test\" f=\"Goldkeys.net.xml\"><securecookie host=\"^portal\\.goldkeys\\.net$\" name=\".+\"/><rule from=\"^http://(?:portal|www)\\.goldkeys\\.(net|org)/\" to=\"https://portal.goldkeys.$1/\"/></ruleset>", "<ruleset name=\"Goldmann.pl\" f=\"Goldmann.pl.xml\"><rule from=\"^http://www\\.goldmann\\.pl/\" to=\"https://goldmann.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldsboro Web Development.com\" default_off=\"failed ruleset test\" f=\"Goldsboro_Web_Development.xml\"><securecookie host=\"^\\.?goldsborowebdevelopment.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldstar (partial)\" f=\"Goldstar.xml\"><exclusion pattern=\"^http://(?:i\\.|www\\.)?goldstar\\.com/(?:company|help|my_tickets|series|weekendapp)(?:$|\\?|/)\"/><securecookie host=\"^(?:i|images|www)\\.goldstar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?goldstar\\.com/\" to=\"https://www.goldstar.com/\"/><rule from=\"^http://gifts\\.goldstar\\.com/\" to=\"https://goldstar.myshopify.com/\"/><rule from=\"^http://i(mages)?\\.goldstar\\.com/\" to=\"https://i$1.goldstar.com/\"/></ruleset>", "<ruleset name=\"Golem.de\" f=\"Golem.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GolfLink.com (partial)\" default_off=\"failed ruleset test\" f=\"GolfLink.com.xml\"><rule from=\"^http://(?:(?:cdn-www\\.)?golflink\\.com|(?:www\\.)?golflink\\.net|u?i\\.glimg\\.net)/\" to=\"https://www.golflink.com/\"/></ruleset>", "<ruleset name=\"GolfRev.com\" f=\"GolfRev.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golf Course Industry\" f=\"Golf_Course_Industry.xml\"><securecookie host=\"^www\\.golfcourseindustry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?golfcourseindustry\\.com/\" to=\"https://www.golfcourseindustry.com/\"/></ruleset>", "<ruleset name=\"Golf Digest (partial)\" f=\"Golf_Digest.xml\"><exclusion pattern=\"^http://(?:www\\.)?golfdigest\\.com/(?!css/|images/|favicon\\.ico$|sandbox/)\"/><securecookie host=\"^www\\.golfdigestinsiders\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?golfdigest\\.com/\" to=\"https://secure.golfdigest.com/\"/><rule from=\"^http://subscribe\\.golfdigest\\.com/\" to=\"https://subscribe.golfdigest.com/\"/><rule from=\"^http://(www\\.)?golfdigestinsiders\\.com/\" to=\"https://$1golfdigestinsiders.com/\"/></ruleset>", "<ruleset name=\"Gondor\" f=\"Gondor.xml\"><securecookie host=\".+\\.gondor\\.co$\" name=\".+\"/><securecookie host=\"^gondor\\.io$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.gondor\\.co/\" to=\"https://$1.gondor.co/\"/><rule from=\"^http://(www\\.)?gondor\\.io/\" to=\"https://$1gondor.io/\"/></ruleset>", "<ruleset name=\"Goo.im\" default_off=\"expired\" f=\"Goo.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Good.net\" default_off=\"failed ruleset test\" f=\"Good.net.xml\"><exclusion pattern=\"^http://www\\.good\\.net/\"/><rule from=\"^http://([^/]+)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"GoodCrypto.com\" f=\"GoodCrypto.com.xml\"><securecookie host=\"^(?:www\\.)?goodcrypto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Good Luck Trunk.com\" f=\"Good_Luck_Trunk.com.xml\"><securecookie host=\"^\\.goodlucktrunk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goodreads.com\" f=\"Goodreads.xml\"><rule from=\"^http://photo\\.goodreads\\.com/\" to=\"https://s3.amazonaws.com/photo.goodreads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goodsearch (partial)\" f=\"Goodsearch.xml\"><rule from=\"^http://(?:www\\.)?goodsearch\\.com/(_gfx/|assets/|favicon\\.ico|legacy/|register|Registration\\.aspx|ResourceHandler\\.ashx)\" to=\"https://www.goodsearch.com/$1\"/></ruleset>", "<ruleset name=\"Goodsie (partial)\" platform=\"mixedcontent\" f=\"Goodsie.xml\"><securecookie host=\"^goodsie\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?goodsie\\.com/\" to=\"https://goodsie.com/\"/></ruleset>", "<ruleset name=\"Goodzer.com\" f=\"Goodzer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google (mismatches)\" default_off=\"mismatches\" f=\"Google-mismatches.xml\"><rule from=\"^http://js\\.admeld\\.com/\" to=\"https://js.admeld.com/\"/><rule from=\"^http://(?:www\\.)?apture\\.com/\" to=\"https://apture.com/\"/><rule from=\"^http://(?:www\\.)?googleartproject\\.com/\" to=\"https://www.googleartproject.com/\"/></ruleset>", "<ruleset name=\"Google.com Subdomains\" f=\"Google.com_Subdomains.xml\"><securecookie host=\"^(?:\\.code|login\\.corp|developers|docs|\\d\\.docs|fiber|mail|plus|\\.?productforums|support)\\.google\\.[\\w.]{2,6}$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.corp\\.google\\.com/\" to=\"https://$1.corp.google.com/\"/><rule from=\"^http://(earth|trends)\\.google\\.com/\" to=\"https://www.google.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google.com Subdomains (Complex)\" f=\"Google.com_Subdomains_Complex.xml\"><rule from=\"^http://(clients\\d)\\.google\\.com/\" to=\"https://clients1.google.com/\"/><exclusion pattern=\"^http://clients[0-9]\\.google\\.com/ocsp\"/><rule from=\"^http://(docs\\d)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://(\\d\\.docs)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://(spreadsheets\\d)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://(?:encrypted-)?tbn(\\d)\\.google\\.com/\" to=\"https://encrypted-tbn$1.google.com/\"/><rule from=\"^http://chart\\.apis\\.google\\.com/chart\" to=\"https://chart.googleapis.com/chart\"/><rule from=\"^http://([\\w-]+)\\.clients\\.google\\.com/\" to=\"https://$1.clients.google.com/\"/><rule from=\"^http://codesearch\\.google\\.com/\" to=\"https://www.google.com/codesearch/\"/></ruleset>", "<ruleset name=\"Google.org\" f=\"Google.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google.tld Subdomains\" f=\"Google.tld_Subdomains.xml\"><securecookie host=\"^(?:accounts|adwords|m|picasaweb)\\.google\\.[\\w.]{2,6}$\" name=\".+\"/><rule from=\"^http://news\\.google\\.((?:com?\\.)?\\w{2,3})/archivesearch\" to=\"https://news.google.$1/news/advanced_news_search\"/><rule from=\"^http://(accounts|adwords|finance|groups|id|lh\\d|m|news|picasaweb|scholar)\\.google\\.((?:com?\\.)?\\w{2,3})/\" to=\"https://$1.google.$2/\"/></ruleset>", "<ruleset name=\"Google\" f=\"Google.xml\"><exclusion pattern=\"^http://(www\\.)?google\\.com/analytics/\"/><exclusion pattern=\"^http://(www\\.)?google\\.com/imgres/\"/><securecookie host=\"^www\\.google\\.com$\" name=\"^GoogleAccountsLocale_session$\"/><rule from=\"^http://(?:www\\.)?google\\.co/\" to=\"https://www.google.com/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:co\\.)?(in|kr|ug)/\" to=\"https://www.google.co.$1/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(kz|lk)/\" to=\"https://www.google.$1/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(bo|ec|mx|sg|sl|vn)/\" to=\"https://www.google.com.$1/\"/><rule from=\"^https?://(?:www\\.)?google\\.((?:com?\\.)?\\w{2,3})/tisp(?=$|\\?)\" to=\"https://www.google.$1/tisp/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?\\w{2,3}/custom\" to=\"https://www.google.com/cse\"/><rule from=\"^https?://(?:www\\.)?google\\.(?:com?\\.)?\\w{2,3}/(?=calendar|dictionary|foobar|ideas|partners|powermeter|webdesigner)\" to=\"https://www.google.com/\"/><rule from=\"^http://(www\\.)?google\\.((?:com?\\.)?\\w{2,3})/(?=#|\\?|$)\" to=\"https://www.google.$2/\"/><rule from=\"^http://(?:www\\.)?google\\.((?:com?\\.)?\\w{2,3})/(?=about|accounts|admob|adplanner|ads|adsense|adwords|analytics|bookmarks|books|chrome|chromecast|contacts|coop|cse|css|culturalinstitute|doodles|doubleclick|earth|favicon.ico|finance|get|goodtoknow|googleblogs|grants|green|hangouts|help|hostednews|images|intl|js|landing|logos|mapmaker|mobile|newproducts|news|nexus|pacman|patents|policies|postini|prdhp|profiles|products|reader|s2|script|search|setprefs|settings|shopping|support|teapot|tools|transparencyreport|trends|urchin|url|webhp|webmasters)\" to=\"https://www.google.$1/\"/><rule from=\"^http://(www\\.)?google\\.com/(\\+|afsonline|appsstatus|buzz|chat|chart|chromeos|codesearch|extern_js|glass|googlebooks|ig|insights|jsapi|moderator|phone|recaptcha|registry|safebrowsing|uds|videotargetting|webfonts)\" to=\"https://www.google.com/$2\"/><exclusion pattern=\"^http://(www\\.)?google\\.com/search.*tbs=shop\"/><exclusion pattern=\"^http://(www\\.)?google\\.com/search.*tbm=isch.*\"/><rule from=\"^http://(www\\.)?google\\.((?:com?\\.)?\\w{2,3})/firefox/?\" to=\"https://www.google.$2/\"/></ruleset>", "<ruleset name=\"Google APIs\" f=\"GoogleAPIs.xml\"><exclusion pattern=\"^http://(www\\.)?gmodules\\.com/$\"/><exclusion pattern=\"^http://ajax\\.googleapis\\.com/$\"/><exclusion pattern=\"^http://chart\\.googleapis\\.com/$\"/><exclusion pattern=\"^http://www\\.gstatic\\.com/generate_204\"/><exclusion pattern=\"^http://gdata\\.youtube\\.com/crossdomain\\.xml\"/><securecookie host=\"^ssl\\.google-analytics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gmodules\\.com/ig/images/\" to=\"https://www.google.com/ig/images/\"/><rule from=\"^http://(click|ssl|www)\\.google-analytics\\.com/\" to=\"https://$1.google-analytics.com/\"/><rule from=\"^http://(ajax|chart|ct|fonts|imasdk|www)\\.googleapis\\.com/\" to=\"https://$1.googleapis.com/\"/><rule from=\"^http://([^@:\\./]+\\.)?(commondata)?storage\\.googleapis\\.com/\" to=\"https://$1$2storage.googleapis.com/\"/><rule from=\"^http://(www\\.)?gstatic\\.com/\" to=\"https://www.gstatic.com/\"/><rule from=\"^http://(csi|encrypted-tbn\\d|fonts|g0|[\\w-]+\\.metric|ssl|t\\d)\\.gstatic\\.com/\" to=\"https://$1.gstatic.com/\"/><rule from=\"^http://gdata\\.youtube\\.com/\" to=\"https://gdata.youtube.com/\"/></ruleset>", "<ruleset name=\"Google Images\" f=\"GoogleImages.xml\"><exclusion pattern=\"^http://google\\.com/\"/><rule from=\"^http://images\\.google\\.((?:com?\\.)?\\w{2,3})/\" to=\"https://images.google.$1/\"/><rule from=\"^http://(www\\.)?google\\.((?:com?\\.)?\\w{2,3})/(advanced_image_search|imghp|.*tb(?:m=isch|s=sbi))\" to=\"https://www.google.$2/$3\"/></ruleset>", "<ruleset name=\"Google Maps\" f=\"GoogleMaps.xml\"><exclusion pattern=\"^http://maps\\.google\\.com/local_url\"/><exclusion pattern=\"^http://maps\\.google\\.gr/transitathens\"/><exclusion pattern=\"^http://maps-api-ssl\\.google\\.com/$\"/><securecookie host=\"^maps\\.google\\.[\\w.]{2,6}$\" name=\".+\"/><securecookie host=\"^maps\\.g(?:oogle|oogleapis|static)\\.com$\" name=\".+\"/><securecookie host=\"^maps-api-ssl\\.google\\.com$\" name=\".+\"/><rule from=\"^http://maps\\.google\\.((?:com?\\.)?\\w{2,3})/\" to=\"https://maps.google.$1/\"/><rule from=\"^http://khms\\d?\\.google\\.com/+\\??$\" to=\"https://www.google.com/\"/><rule from=\"^http://(khms\\d?|maps-api-ssl|mw2)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://maps\\.googleapis\\.com/\" to=\"https://maps.googleapis.com/\"/><rule from=\"^http://maps\\.gstatic\\.com/\" to=\"https://maps.gstatic.com/\"/></ruleset>", "<ruleset name=\"GoogleMelange\" f=\"GoogleMelange.xml\"><rule from=\"^http://(?:www\\.)?google-melange\\.com/\" to=\"https://www.google-melange.com/\"/></ruleset>", "<ruleset name=\"Google Services Simple\" f=\"GoogleServices.xml\"><securecookie host=\"^gmail\\.com$\" name=\".+\"/><securecookie host=\"^www\\.gmail\\.com$\" name=\".+\"/><securecookie host=\"^googlemail\\.com$\" name=\".+\"/><securecookie host=\"^www\\.googlemail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google Services\" f=\"GoogleServices_Complex.xml\"><exclusion pattern=\"^http://cbks0\\.google\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://gg\\.google\\.com/(?!csi(?:$|\\?))\"/><exclusion pattern=\"^http://[\\w-]+-opensocial\\.googleusercontent\\.com\"/><securecookie host=\"^mail-attachment\\.googleusercontent\\.com$\" name=\".+\"/><rule from=\"^http://lh(\\d)\\.ggpht\\.com/\" to=\"https://lh$1.ggpht.com/\"/><rule from=\"^http://(www\\.)?goo\\.gl/\" to=\"https://goo.gl/\"/><rule from=\"^http://([\\w-]+)\\.googleusercontent\\.com/\" to=\"https://$1.googleusercontent.com/\"/><rule from=\"^http://([\\w-]+\\.)?googlecode\\.com/\" to=\"https://$1googlecode.com/\"/><rule from=\"^http://([\\w-]+\\.)?googlesource\\.com/\" to=\"https://$1googlesource.com/\"/></ruleset>", "<ruleset name=\"Google Shopping\" f=\"GoogleShopping.xml\"><rule from=\"^http://encrypted\\.google\\.com/(prdhp|shopping)\" to=\"https://www.google.com/$1\"/><rule from=\"^http://shopping\\.google\\.com/\" to=\"https://shopping.google.com/\"/><rule from=\"^http://(?:encrypted|www)\\.google\\.com/(.*tbm=shop)\" to=\"https://www.google.com/$1\"/><rule from=\"^http://(?:www\\.)?google\\.((?:com?\\.)?(?:ae|ar|at|au|bg|bh|bo|br|ca|ch|cl|cr|co|cu|de|ec|eg|es|fi|fr|gh|gt|hr|id|ie|il|in|it|jm|jo|jp|ke|kr|kw|kz|lb|lk|ly|mx|my|na|ng|nl|no|nz|om|pa|pe|pk|pl|pt|py|qa|ro|ru|rw|sa|sg|sl|se|sv|th|tr|ug|uk|uy|ve|vn|za|zw))/(?=prdhp|shopping)\" to=\"https://www.google.com/$1\"/></ruleset>", "<ruleset name=\"Google Sorry\" f=\"GoogleSorry.xml\"><exclusion pattern=\"^http://(www\\.)?google.com/$\"/><rule from=\"^http://(www\\.)?google\\.com/sorry/\" to=\"https://sorry.google.com/sorry/\"/><rule from=\"^http://sorry\\.google\\.com/\" to=\"https://sorry.google.com/\"/></ruleset>", "<ruleset name=\"Google Translate (broken)\" default_off=\"redirect loops\" f=\"GoogleTranslate.xml\"><rule from=\"^http://translate\\.googleapis\\.com/\" to=\"https://translate.googleapis.com/\"/><rule from=\"^http://translate\\.google\\.com/\" to=\"https://translate.google.com/\"/></ruleset>", "<ruleset name=\"Google Videos\" default_off=\"Needs ruleset tests\" f=\"GoogleVideos.xml\"><rule from=\"^http://(?:www\\.)?google\\.com/videohp\" to=\"https://www.google.com/videohp\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?(?:au|ca|gh|ie|in|jm|ke|lk|my|na|ng|nz|pk|rw|sl|sg|ug|uk|za|zw)/videohp\" to=\"https://www.google.com/videohp\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?(?:ar|bo|cl|co|cu|cr|ec|es|gt|mx|pa|pe|py|sv|uy|ve)/videohp$\" to=\"https://www.google.com/videohp?hl=es\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(?:ae|bh|eg|jo|kw|lb|ly|om|qa|sa)/videohp$\" to=\"https://www.google.com/videohp?hl=ar\"/><rule from=\"^http://(?:www\\.)?google\\.(?:at|ch|de)/videohp$\" to=\"https://www.google.com/videohp?hl=de\"/><rule from=\"^http://(?:www\\.)?google\\.(fr|nl|it|pl|ru|bg|pt|ro|hr|fi|no)/videohp$\" to=\"https://www.google.com/videohp?hl=$1\"/><rule from=\"^http://(?:www\\.)?google\\.com?\\.(id|th|tr)/videohp$\" to=\"https://www.google.com/videohp?hl=$1\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.il/videohp$\" to=\"https://www.google.com/videohp?hl=he\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kr/videohp$\" to=\"https://www.google.com/videohp?hl=ko\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kz/videohp$\" to=\"https://www.google.com/videohp?hl=kk\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.jp/videohp$\" to=\"https://www.google.com/videohp?hl=ja\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.vn/videohp$\" to=\"https://www.google.com/videohp?hl=vi\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.br/videohp$\" to=\"https://www.google.com/videohp?hl=pt-BR\"/><rule from=\"^http://(?:www\\.)?google\\.se/videohp$\" to=\"https://www.google.com/videohp?hl=sv\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?(?:ar|bo|cl|co|cu|cr|ec|es|gt|mx|pa|pe|py|sv|uy|ve)/videohp\\?\" to=\"https://www.google.com/videohp?hl=es&\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(?:ae|bh|eg|jo|kw|lb|ly|om|qa|sa)/videohp\\?\" to=\"https://www.google.com/videohp?hl=ar&\"/><rule from=\"^http://(?:www\\.)?google\\.(?:at|ch|de)/videohp\\?\" to=\"https://www.google.com/videohp?hl=de&\"/><rule from=\"^http://(?:www\\.)?google\\.(fr|nl|it|pl|ru|bg|pt|ro|hr|fi|no)/videohp\\?\" to=\"https://www.google.com/videohp?hl=$1&\"/><rule from=\"^http://(?:www\\.)?google\\.com?\\.(id|th|tr)/videohp\\?\" to=\"https://www.google.com/videohp?hl=$1&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.il/videohp\\?\" to=\"https://www.google.com/videohp?hl=he&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kr/videohp\\?\" to=\"https://www.google.com/videohp?hl=ko&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kz/videohp\\?\" to=\"https://www.google.com/videohp?hl=kk&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.jp/videohp\\?\" to=\"https://www.google.com/videohp?hl=ja&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.vn/videohp\\?\" to=\"https://www.google.com/videohp?hl=vi&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.br/videohp\\?\" to=\"https://www.google.com/videohp?hl=pt-BR&\"/><rule from=\"^http://(?:www\\.)?google\\.se/videohp\\?\" to=\"https://www.google.com/videohp?hl=sv&\"/><rule from=\"^http://video\\.google\\.com/ThumbnailServer2\" to=\"https://video.google.com/ThumbnailServer2\"/></ruleset>", "<ruleset name=\"GoogleWatchBlog.de\" f=\"GoogleWatchBlog.xml\"><securecookie host=\"^(?:www)?\\.googlewatchblog\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google App Engine\" f=\"Google_App_Engine.xml\"><exclusion pattern=\"^http://photomunchers\\.appspot\\.com/\"/><exclusion pattern=\"^http://sbux-portal\\.appspot\\.com/\"/><exclusion pattern=\"^http://www\\.appspot\\.com/\"/><securecookie host=\"^.+\\.appspot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google ad services.com\" f=\"Google_ad_services.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gosuslugi.ru\" f=\"Gosuslugi.ru.xml\"><securecookie host=\"^(?:esia|static|www)?\\.gosuslugi\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GotFuturama.com\" default_off=\"self-signed\" f=\"GotFuturama.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Got Vape.net\" default_off=\"failed ruleset test\" f=\"Got_Vape.net.xml\"><securecookie host=\"^\\.(?:m|www)\\.gotvape\\.net$\" name=\".+\"/><rule from=\"^http://m\\.gotvape\\.(?:com|net)/\" to=\"https://m.gotvape.net/\"/><rule from=\"^http://(images\\.|www\\.)?gotvape\\.(com|net)/\" to=\"https://$1gotvape.$2/\"/></ruleset>", "<ruleset name=\"Gotland Ring.com\" f=\"Gotland_Ring.com.xml\"><securecookie host=\"^\\.gotlandring\\.com$\" name=\".+\"/><rule from=\"^http://www\\.gotlandring\\.com/\" to=\"https://gotlandring.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gotmerchant.com (partial)\" f=\"Gotmerchant.com.xml\"><rule from=\"^http://(?:www\\.)?gotmerchant\\.com/apply($|[?/])\" to=\"https://www.gotmerchant.com/apply$1\"/></ruleset>", "<ruleset name=\"gotraffic.net (partial)\" f=\"Gotraffic.net.xml\"><rule from=\"^http://cdn\\.gotraffic\\.net/(?=v/\\d+_\\d+/images/)\" to=\"https://cdn.gotraffic.net/\"/></ruleset>", "<ruleset name=\"Gottman.com\" f=\"Gottman.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GourmetGiftBaskets.com (partial)\" f=\"GourmetGiftBaskets.com.xml\"><rule from=\"^http://(?:www\\.)?gourmetgiftbaskets\\.com/(App_Themes/|images/|login\\.aspx|scripts/)\" to=\"https://www.gourmetgiftbaskets.com/$1\"/><rule from=\"^http://search\\.gourmetgiftbaskets\\.com/\" to=\"https://gourmetgiftbaskets.resultspage.com/\"/></ruleset>", "<ruleset name=\"Gov.Wales (partial)\" f=\"Gov.Wales.xml\"><exclusion pattern=\"^http://(?:learning\\.|www\\.)?gov\\.wales/+(?!\\d+/(?:images|site_furniture)/|cbin/|homepage/megamenufmas/)\"/><securecookie host=\"^cssiw\\.gov\\.wales$\" name=\".\"/><rule from=\"^http://enterprisezones\\.gov\\.wales/+\" to=\"https://businesswales.gov.wales/enterprisezones/\"/><rule from=\"^http://www\\.gov\\.wales/\" to=\"https://gov.wales/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gov1.info\" f=\"Gov1.info.xml\"><securecookie host=\"^\\.gov1\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDelivery.com (mismatches)\" default_off=\"mismatch\" f=\"GovDelivery-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDelivery.com (partial)\" f=\"GovDelivery.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDex.gov.au\" f=\"GovDex.xml\"><rule from=\"^http://(?:www\\.)?govdex\\.gov\\.au/\" to=\"https://www.govdex.gov.au/\"/></ruleset>", "<ruleset name=\"GovHack.org\" f=\"GovHack.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:dev\\.www\\.)?govhack\\.org/\" to=\"https://www.govhack.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovMetric.com\" f=\"GovMetric.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Govspace.gov.au\" f=\"GovSpace.xml\"><rule from=\"^http://govspace\\.gov\\.au/\" to=\"https://www.govspace.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovTrack.us\" f=\"GovTrack.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gov Waste.co.uk\" f=\"Gov_Waste.co.uk.xml\"><securecookie host=\"^\\.govwaste\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSN Magazine.com (partial)\" default_off=\"failed ruleset test\" f=\"Government-Security-News.xml\"><exclusion pattern=\"^http://www\\.gsnmagazine\\.com/user/register(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCHQ.gov.uk\" default_off=\"broken\" f=\"Government_Communications_Headquarters.xml\"><rule from=\"^http://gchq\\.gov\\.uk/\" to=\"https://www.gchq.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Governmentattic.org\" default_off=\"mismatch\" f=\"Governmentattic.org.xml\"><rule from=\"^http://(?:www\\.)?governmentattic\\.org/\" to=\"https://governmentattic.org/\"/></ruleset>", "<ruleset name=\"Governo Português\" default_off=\"mismatched\" f=\"GovernoPortugues-mismatches.xml\"><rule from=\"^http://portaldaempresa\\.pt/\" to=\"https://www.portaldaempresa.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GG.gov.au\" f=\"Governor-GeneraloftheCommonwealthofAustralia.xml\"><rule from=\"^http://(?:www\\.)?gg\\.gov\\.au/\" to=\"https://www.gg.gov.au/\"/></ruleset>", "<ruleset name=\"Gpg4win.org\" default_off=\"self-signed\" f=\"Gpg4win.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gpgAuth.org\" default_off=\"expired, missing certificate chain\" f=\"GpgAuth.org.xml\"><securecookie host=\"^forums\\.gpgauth\\.org$\" name=\".+\"/><rule from=\"^http://www\\.gpgauth\\.org/\" to=\"https://gpgauth.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gr-assets.com\" f=\"Gr-assets.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"graasmilk.net\" default_off=\"failed ruleset test\" f=\"Graasmilk.net.xml\"><rule from=\"^http://(www\\.)?(webmail\\.)?graasmilk\\.net/\" to=\"https://$2graasmilk.net/\"/></ruleset>", "<ruleset name=\"GrabCAD\" f=\"GrabCAD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grab Media (partial)\" f=\"Grab_Media.xml\"><rule from=\"^http://images\\.grab-media\\.com/\" to=\"https://dg8ui1w5a5byc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GradImages\" f=\"GradImages.xml\"><securecookie host=\"^(?:www\\.)?gradimages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradle.org (partial, false MCB)\" platform=\"mixedcontent\" f=\"Gradle.org.xml\"><securecookie host=\"^\\.gradle\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradwell.com (partial)\" f=\"Gradwell.com.xml\"><securecookie host=\".+\\.gradwell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradwell Cloud.com\" f=\"Gradwell_Cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Graham Cluley.com\" f=\"Graham_Cluley.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grains Research and Development Corporation\" f=\"GrainsResearchandDevelopmentCorporation.xml\"><rule from=\"^http://(?:www\\.)?grdc\\.com\\.au/\" to=\"https://www.grdc.com.au/\"/></ruleset>", "<ruleset name=\"Grams flow.com\" f=\"Grams_flow.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gran-Turismo.com (partial)\" f=\"Gran-Turismo.com.xml\"><rule from=\"^http://(www\\.)?gran-turismo\\.com/(?=common/|images/)\" to=\"https://$1gran-turismo.com/\"/></ruleset>", "<ruleset name=\"Grand Rapids Community Media Center\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Grand-Rapids-Community-Media-Center.xml\"><securecookie host=\"^.*\\.grcmc\\.org$\" name=\".*\"/><rule from=\"^http://(client\\.|www\\.)?grcmc\\.org/\" to=\"https://$1grcmc.org/\"/><rule from=\"^http://(?:www\\.)?wealthytheatre\\.org/\" to=\"https://www.grcmc.org/theatre/\"/></ruleset>", "<ruleset name=\"Grand Margherita Hotel\" f=\"GrandMargherita.com.xml\"><securecookie host=\"^(www\\.)?grandmargherita\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grand Haven Tribune (partial)\" f=\"Grand_Haven_Tribune.xml\"><rule from=\"^http://(?:www\\.)?grandhaventribune\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.grandhaventribune.com/$1\"/></ruleset>", "<ruleset name=\"Grand Lodge of British Columbia\" f=\"Grand_Lodge_of_British_Columbia.xml\"><rule from=\"^http://(?:www\\.)?(?:freemasonry\\.)?bcy\\.ca/\" to=\"https://www.freemasonry.bcy.ca/\"/></ruleset>", "<ruleset name=\"Graphene-lda.com\" f=\"Graphene-lda.com.xml\"><securecookie host=\"^\\.graphene-lda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grassroots.org (mismatches)\" default_off=\"mismatch\" f=\"Grassroots.org-mismatches.xml\"><securecookie host=\"^tools\\.grassroots\\.org$\" name=\".*\"/><rule from=\"^http://tools\\.grassroots\\.org/\" to=\"https://tools.grassroots.org/\"/></ruleset>", "<ruleset name=\"Grassroots.org (partial)\" default_off=\"failed ruleset test\" f=\"Grassroots.org.xml\"><securecookie host=\"^.*\\.grassroots\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grasswire.com\" f=\"Grasswire.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GratiSoft.us\" default_off=\"mismatch, self-signed\" f=\"GratiSoft.us.xml\"><rule from=\"^http://(?:www\\.)?courtesan\\.com/\" to=\"https://www.courtesan.com/\"/><rule from=\"^http://(?:www\\.)?gratisoft\\.us/\" to=\"https://www.gratisoft.us/\"/><rule from=\"^http://(?:www\\.)?(mktemp|newsyslog)\\.org/\" to=\"https://www.gratisoft.us/$1/\"/><rule from=\"^http://(?:www\\.)?sudo\\.ws/pipermail/\" to=\"https://www.gratisoft.us/pipermail/\"/><rule from=\"^http://(?:www\\.)?sudo\\.ws/\" to=\"https://www.gratisoft.us/sudo/\"/></ruleset>", "<ruleset name=\"Gratipay.com (partial)\" f=\"Gratipay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravatar\" f=\"Gravatar.xml\"><rule from=\"^http://((?:[012s]|en|secure|www)\\.)?gravatar\\.com/\" to=\"https://$1gravatar.com/\"/></ruleset>", "<ruleset name=\"Gravity (mismatches)\" default_off=\"expired, mismatched\" f=\"Gravity-mismatches.xml\"><rule from=\"^http://gravity\\.com/\" to=\"https://www.gravity.com/\"/><rule from=\"^http://cdn\\.insights\\.gravity\\.com/\" to=\"https://cdn.insights.gravity.com/\"/><rule from=\"^http://i\\.grvcdn\\.com/gravity\\.com/\" to=\"https://www.gravity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravity.com (partial)\" f=\"Gravity.xml\"><securecookie host=\"^(?:analytics)?\\.gravity\\.com$\" name=\".+\"/><rule from=\"^http://insights\\.gravity\\.com/\" to=\"https://analytics.gravity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravity4.com (partial)\" f=\"Gravity4.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grays of Westminster (partial)\" f=\"Grays-of-Westminster.xml\"><rule from=\"^http://(?:www\\.)?graysofwestminster\\.co\\.uk/(images/|pdf/|\\w+\\.css$)\" to=\"https://www.graysofwestminster.co.uk/$1\"/></ruleset>", "<ruleset name=\"GreaseSpot.net (partial)\" default_off=\"mismatched\" f=\"GreaseSpot.net.xml\"><securecookie host=\"^wiki\\.greasespot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greasy Fork.org\" f=\"Greasy_Fork.org.xml\"><securecookie host=\"^greasyfork\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?greasyfork\\.org/\" to=\"https://greasyfork.org/\"/></ruleset>", "<ruleset name=\"GreatDomains.com\" f=\"GreatDomains.com.xml\"><securecookie host=\"^\\.greatdomains\\.com$\" name=\".+\"/><rule from=\"^http://www\\.greatdomains\\.com/\" to=\"https://greatdomains.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreatFire.org\" f=\"GreatFire.org.xml\"><securecookie host=\"^(?:(?:en|www|zh)?\\.)?greatfire\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Great American Office\" default_off=\"expired\" f=\"Great_American_Office.xml\"><securecookie host=\"^(?:www\\.)?gaos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greatnet.de (partial)\" default_off=\"failed ruleset test\" f=\"Greatnet.de.xml\"><securecookie host=\"^www\\.greatnet\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greatnonprofits.org (partial)\" f=\"Greatnonprofits.org.xml\"><exclusion pattern=\"^http://api\\.greatnonprofits\\.org/+(?!whitelabel/reviews/[\\w-]+(?:$|\\?))\"/><securecookie host=\"^greatnonprofits\\.org$\" name=\".+\"/><rule from=\"^http://(?:api\\.|(www\\.))?greatnonprofits\\.org/\" to=\"https://$1greatnonprofits.org/\"/><rule from=\"^http://(?:cdn|static)\\.greatnonprofits\\.org/\" to=\"https://static.greatnonprofits.org/\"/></ruleset>", "<ruleset name=\"Greek-banks\" default_off=\"failed ruleset test\" f=\"Greek-banks.xml\"><securecookie host=\"^www\\.nbg\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.alpha\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.alphabankcards\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.probank\\.gr$\" name=\".*\"/><rule from=\"^http://www\\.nbg\\.gr/\" to=\"https://www.nbg.gr/\"/><rule from=\"^http://(?:www\\.)?alpha\\.gr/\" to=\"https://www.alpha.gr/\"/><rule from=\"^http://www\\.alphabankcards\\.gr/\" to=\"https://www.alphabankcards.gr/\"/><rule from=\"^http://(?:www\\.)?probank\\.gr/\" to=\"https://www.probank.gr/\"/></ruleset>", "<ruleset name=\"Greek-gov\" f=\"Greek-gov.xml\"><securecookie host=\"^(?:lists|noc|.*\\.noc)\\.grnet\\.gr$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?gsis\\.gr$\" name=\".*\"/><securecookie host=\"^service\\.eudoxus\\.gr$\" name=\".*\"/><rule from=\"^http://(lists|lists\\.noc|www\\.noc)\\.grnet\\.gr/\" to=\"https://$1.grnet.gr/\"/><rule from=\"^http://(www1|login)\\.gsis\\.gr/\" to=\"https://$1.gsis.gr/\"/><rule from=\"^http://service\\.eudoxus\\.gr/\" to=\"https://service.eudoxus.gr/\"/></ruleset>", "<ruleset name=\"Greek-media (partial)\" f=\"Greek-media.xml\"><securecookie host=\"^(?:.*\\.)?antenna\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greek-travel\" f=\"Greek-travel.xml\"><securecookie host=\"^(?:.*\\.)?aegeanair\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?aegeanair\\.com/\" to=\"https://$1aegeanair.com/\"/></ruleset>", "<ruleset name=\"Greek-various\" default_off=\"failed ruleset test\" f=\"Greek-various.xml\"><securecookie host=\"^(?:.*\\.)?void\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?hackerspace\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?pirateparty\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?ellak\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.dei\\.com\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.eydap\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?eduroam\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?skytal\\.es$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?barikat\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?dionyziz\\.com$\" name=\".*\"/><rule from=\"^http://((www|webmail)\\.)?void\\.gr/\" to=\"https://$1void.gr/\"/><rule from=\"^http://pad\\.void\\.gr/\" to=\"https://pad.void.gr/\"/><rule from=\"^http://(www\\.)?hackerspace\\.gr/\" to=\"https://$1hackerspace.gr/\"/><rule from=\"^http://(www\\.)?pirateparty\\.gr/\" to=\"https://$1pirateparty.gr/\"/><rule from=\"^http://(?:www\\.)?ellak\\.gr/\" to=\"https://www.ellak.gr/\"/><rule from=\"^http://www\\.dei(?:\\.com)?\\.gr/\" to=\"https://www.dei.com.gr/\"/><rule from=\"^http://www\\.eydap\\.gr/\" to=\"https://www.eydap.gr/\"/><rule from=\"^http://(www\\.)?eduroam\\.gr/\" to=\"https://$1eduroam.gr/\"/><rule from=\"^http://(www\\.)?skytal\\.es/\" to=\"https://$1skytal.es/\"/><rule from=\"^http://(www\\.)?barikat\\.gr/\" to=\"https://$1barikat.gr/\"/><rule from=\"^http://(www\\.)?dionyziz\\.com/\" to=\"https://$1dionyziz.com/\"/></ruleset>", "<ruleset name=\"Green-Wood.com (partial)\" f=\"Green-Wood.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreenIT-BB (mismatches)\" default_off=\"mismatch\" f=\"GreenIT-BB-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?greenit-bb\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?greenit-bb\\.de/\" to=\"https://www.greenit-bb.de/\"/></ruleset>", "<ruleset name=\"GreenIT-BB (partial)\" default_off=\"failed ruleset test\" f=\"GreenIT-BB.xml\"><securecookie host=\"^benchmarking\\.greenit-bb\\.de$\" name=\".*\"/><rule from=\"^http://benchmarking\\.greenit-bb\\.de/\" to=\"https://benchmarking.greenit-bb.de/\"/></ruleset>", "<ruleset name=\"GreenQloud.com\" f=\"GreenQloud.com.xml\"><securecookie host=\"^auth\\.greenqloud\\.com$\" name=\".+\"/><rule from=\"^http://status\\.greenqloud\\.com/\" to=\"https://greenqloud.statuspage.io/\"/><rule from=\"^http://support\\.greenqloud\\.com/\" to=\"https://greenqloud.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreenSky Credit.com (partial)\" default_off=\"failed ruleset test\" f=\"GreenSky_Credit.com.xml\"><rule from=\"^http://(www\\.)?greensky\\.com/(images/|payment(?:$|\\?|/)|secure/)\" to=\"https://$1greensky.com/$2\"/><rule from=\"^http://(www\\.)?greensky\\.com/(favicon\\.ico|_media/|_ui/)\" to=\"https://$1greensky.com/secure/$2\"/></ruleset>", "<ruleset name=\"Green Vehicle Guide\" f=\"GreenVehicleGuide.xml\"><rule from=\"^http://(?:www\\.)?greenvehicleguide\\.gov\\.au/\" to=\"https://www.greenvehicleguide.gov.au/\"/></ruleset>", "<ruleset name=\"Green Billion.org\" default_off=\"expired, self-signed\" f=\"Green_Billion.org.xml\"><securecookie host=\"^(?:www\\.)?greenbillion\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Coffee Bean Extract\" f=\"Green_Coffee_Bean_Extract.xml\"><securecookie host=\"^(?:w*\\.)?mygreenbeanextract\\.com$\" name=\".+\"/><rule from=\"^http://www\\.mygreenbeanextract\\.com/(?=$|[^/])\" to=\"https://www.myultragreenbeansupplement.com/\"/></ruleset>", "<ruleset name=\"Green Left.org.au\" f=\"Green_Left.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://greenleft\\.org\\.au/\" to=\"https://www.greenleft.org.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Party.org.uk (partial)\" f=\"Green_Party.org.uk.xml\"><securecookie host=\"^(?:.*\\.)?greenparty\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://www\\.(doncaster|hereford|kingston|northwest|salisbury|stroud|wyreforest)\\.greenparty\\.org\\.uk/\" to=\"https://$1.greenparty.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Party.org\" f=\"Green_Party.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green PolkaDot Box\" f=\"Green_PolkaDot_Box.xml\"><securecookie host=\"^\\.(?:www\\.)?greenpolkadotbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Smoke (partial)\" f=\"Green_Smoke.xml\"><securecookie host=\"(?:^|\\.)greensmoke\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenbone (partial)\" default_off=\"failed ruleset test\" f=\"Greenbone.xml\"><rule from=\"^http://support\\.greenbone\\.net/\" to=\"https://support.greenbone.net/\"/></ruleset>", "<ruleset name=\"Greenhost.nl\" f=\"Greenhost.xml\"><securecookie host=\"^(?:www\\.)?greenhost\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenhouse.io\" f=\"Greenhouse.io.xml\"><rule from=\"^http://(?:www\\.)?greenhouse\\.io/\" to=\"https://www.greenhouse.io/\"/><rule from=\"^http://(blog|boards|info)\\.greenhouse\\.io/\" to=\"https://$1.greenhouse.io/\"/></ruleset>", "<ruleset name=\"greenman gaming (partial)\" f=\"Greenmangaming.com.xml\"><rule from=\"^http://(?:www\\.)?greenmangaming\\.com/user/login\" to=\"https://www.greenmangaming.com/user/login\"/><rule from=\"^http://(?:www\\.)?greenmangaming\\.com/user/account\" to=\"https://www.greenmangaming.com/user/account\"/></ruleset>", "<ruleset name=\"Greenpeace-Energy.de\" f=\"Greenpeace-Energy.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenpeace-Jugend.de\" f=\"Greenpeace-Jugend.de.xml\"><securecookie host=\"^(www\\.)?greenpeace-jugend\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenpeace-Magazin.de\" f=\"Greenpeace-Magazin.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenpeace.de (partial)\" f=\"Greenpeace.de.xml\"><exclusion pattern=\"^http://gruppen\\.greenpeace\\.de/+(?!$|\\?)\"/><rule from=\"^http://greenpeace\\.de/\" to=\"https://www.greenpeace.de/\"/><rule from=\"^http://gruppen\\.greenpeace\\.de/+\" to=\"https://www.greenpeace.de/gruppen/uebersicht\"/><rule from=\"^http://www\\.kids\\.greenpeace\\.de/\" to=\"https://kids.greenpeace.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"greenpeace.org (partial)\" f=\"Greenpeace.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greentech Media\" f=\"Greentech-Media.xml\"><securecookie host=\"^www\\.greentechmedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreenvilleOnline.com\" default_off=\"failed ruleset test\" f=\"GreenvilleOnline.com.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?greenvilleonline\\.com/\" to=\"https://www.greenvilleonline.com/\"/></ruleset>", "<ruleset name=\"Greenwood.org\" default_off=\"expired\" f=\"Greenwood.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grenet.fr (partial)\" f=\"Grenet.fr.xml\"><exclusion pattern=\"^http://(?:cicg|www)\\.grenet\\.fr/+(?!charte/|favicon\\.ico)\"/><rule from=\"^http://(cas-(?:inp|uds)|cicg|proxagalan|vpn\\d?|www)\\.grenet\\.fr/\" to=\"https://$1.grenet.fr/\"/></ruleset>", "<ruleset name=\"Grenoble-INP.fr (partial)\" f=\"Grenoble-INP.fr.xml\"><rule from=\"^http://(applicationform|edt|emploi-du-temps)\\.grenoble-inp\\.fr/\" to=\"https://$1.grenoble-inp.fr/\"/></ruleset>", "<ruleset name=\"GrepBugs.com\" f=\"GrepBugs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grepular.com\" f=\"Grepular.xml\"><rule from=\"^http://secure\\.grepular\\.com/\" to=\"https://grepular.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gresille.org\" f=\"Gresille.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greyhole.net\" f=\"Greyhole.net.xml\"><securecookie host=\"^\\.whitehathouston\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greyhound\" f=\"Greyhound.com.xml\"><rule from=\"^http://greyhound\\.com\\.mx/\" to=\"https://www.greyhound.com.mx/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greystripe.com\" default_off=\"akamai cert\" f=\"Greystripe.com.xml\"><rule from=\"^http://(?:www\\.)?greystripe\\.com/\" to=\"https://www.greystripe.com/\"/><rule from=\"^http://c\\.greystripe\\.com/\" to=\"https://c.greystripe.com/\"/></ruleset>", "<ruleset name=\"Grid5000.fr\" f=\"Grid5000.fr.xml\"><rule from=\"^http://(api|www)\\.grid5000\\.fr/\" to=\"https://$1.grid5000.fr/\"/></ruleset>", "<ruleset name=\"Gridcoin.us (partial)\" f=\"Gridcoin.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gridserver.com\" default_off=\"Needs ruleset tests\" f=\"Gridserver.com.xml\"><rule from=\"^http://(s\\d+\\.)?gridserver\\.com/\" to=\"https://$1gridserver.com/\"/></ruleset>", "<ruleset name=\"Gridz Direct.com (false MCB)\" default_off=\"handshake failure\" platform=\"mixedcontent\" f=\"Gridz_Direct.com-falsemixed.xml\"><securecookie host=\"^\\.(?:www\\.)?gridzdirect\\.com$\" name=\".+\"/><rule from=\"^http://www\\.gridzdirect\\.com/\" to=\"https://www.gridzdirect.com/\"/></ruleset>", "<ruleset name=\"Gridz Direct.com (partial)\" default_off=\"handshake failure\" f=\"Gridz_Direct.com.xml\"><exclusion pattern=\"^http://www\\.gridzdirect.com/(?!favicon\\.ico|js/|media/|skin/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Griffin Technology.com (partial)\" f=\"Griffin_Technology.com.xml\"><securecookie host=\"^\\.store\\.griffintechnology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Griffith University\" f=\"Griffith-University.xml\"><securecookie host=\"^www3\\.secure\\.griffith\\.edu\\.au$\" name=\".*\"/><rule from=\"^http://griffith\\.edu\\.au/\" to=\"https://www.griffith.edu.au/\"/><rule from=\"^http://www\\.griffith\\.edu\\.au/(__data/|intranet)\" to=\"https://www.griffith.edu.au/$1\"/><rule from=\"^http://(ias|learning|(?:intranet|learning|portal|www3)\\.secure)\\.griffith\\.edu\\.au/\" to=\"https://$1.griffith.edu.au/\"/><rule from=\"^http://intranet\\.griffith\\.edu\\.au/\" to=\"https://intranet.secure.griffith.edu.au/\"/><rule from=\"^http://www3\\.griffith\\.edu\\.au/(03/ertiki|schema)/\" to=\"https://www3.secure.griffith.edu.au/$1/\"/></ruleset>", "<ruleset name=\"Grilling is Happiness.com\" default_off=\"failed ruleset test\" f=\"Grilling_is_Happiness.com.xml\"><securecookie host=\"^(?:w*\\.)?grillingishappiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grinnell College (partial)\" f=\"Grinnell_College.xml\"><securecookie host=\"^(?:\\.?bookstore|db|\\.?digital|help|cat\\.lib|mail)\\.grinnell\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?grinnell\\.edu/(files/|includes/|misc/|sites/)\" to=\"https://www.grinnell.edu/$1\"/><rule from=\"^http://(autodiscover|db|digital|help|imap|itwebapps|libweb|loggia|mail)\\.grinnell\\.edu/\" to=\"https://$1.grinnell.edu/\"/><rule from=\"^http://(?:www\\.)?cat\\.lib\\.grinnell\\.edu/\" to=\"https://cat.lib.grinnell.edu/\"/></ruleset>", "<ruleset name=\"grit.io\" default_off=\"expired\" f=\"Grit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grit Digital.co.uk\" f=\"Grit_Digital.co.uk.xml\"><securecookie host=\"^(?:www\\.)?gritdigital\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grnh.se\" default_off=\"mismatched\" f=\"Grnh.se.xml\"><securecookie host=\"^www\\.grnh\\.se$\" name=\".+\"/><rule from=\"^http://www\\.grnh\\.se/\" to=\"https://www.grnh.se/\"/></ruleset>", "<ruleset name=\"Grocery Server.com (partial)\" f=\"Grocery_Server.com.xml\"><securecookie host=\"^(?:www\\.)?groceryserver\\.com$\" name=\".+\"/><rule from=\"^http://(?:wanderful\\.|(www\\.))?groceryserver\\.com/\" to=\"https://$1groceryserver.com/\"/></ruleset>", "<ruleset name=\"GroenLinks.nl\" f=\"GroenLinks.nl.xml\"><securecookie host=\"^(?:.+\\.)?groenlinks\\.nl$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"grok.org.uk (partial)\" default_off=\"self-signed\" f=\"Grok.org.uk.xml\"><rule from=\"^http://lists\\.grok\\.org\\.uk/\" to=\"https://lists.grok.org.uk/\"/></ruleset>", "<ruleset name=\"Grok Learning.com\" f=\"Grok_Learning.com.xml\"><securecookie host=\"^groklearning\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?groklearning(-cdn)?\\.com/\" to=\"https://$1groklearning$2.com/\"/></ruleset>", "<ruleset name=\"Grooveshark (broken)\" default_off=\"broken\" f=\"Grooveshark.xml\"><rule from=\"^http://(www\\.)?grooveshark\\.com/(about$|artists$|careers$|causes$|favicon\\.ico|help$|JSQueue\\.swf|legal$|press$|webincludes/)\" to=\"https://$1grooveshark.com/$2\"/><rule from=\"^http://help\\.grooveshark\\.com/favicon\\.(ico|png)\" to=\"https://deskcontent.s3.amazonaws.com/favicon.$1\"/><rule from=\"^http://(listen|staticweb)\\.grooveshark\\.com/\" to=\"https://$1.grooveshark.com/\"/><rule from=\"^http://static\\.a\\.gs-cdn\\.net/\" to=\"https://static.a.gs-cdn.net/\"/></ruleset>", "<ruleset name=\"Groton.org\" f=\"Groton.org.xml\"><rule from=\"^http://www\\.groton\\.org/\" to=\"https://www.groton.org/\"/><rule from=\"^http://groton\\.org/\" to=\"https://www.groton.org/\"/></ruleset>", "<ruleset name=\"Groundspeak.com (partial)\" f=\"Groundspeak.com.xml\"><securecookie host=\"^(?:forums|support)\\.groundspeak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Group Commerce (partial)\" default_off=\"failed ruleset test\" f=\"Group-Commerce.xml\"><rule from=\"^http://admin\\.groupcommerce\\.com/\" to=\"https://admin.groupcommerce.com/\"/></ruleset>", "<ruleset name=\"GroupLogic (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GroupLogic.xml\"><securecookie host=\"^www\\.grouplogic\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?grouplogic\\.com/\" to=\"https://www.grouplogic.com/\"/></ruleset>", "<ruleset name=\"GroupMe.com (partial)\" f=\"GroupMe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupees.com\" f=\"Groupees.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grouper Social Club.com\" f=\"Grouper_Social_Club.com.xml\"><securecookie host=\"^(?:www)?\\.groupersocialclub\\.com(?:\\.au)?$\" name=\".+\"/><rule from=\"^http://(www\\.)?groupersocialclub\\.com(\\.au)?/\" to=\"https://$1groupersocialclub.com$2/\"/></ruleset>", "<ruleset name=\"Groupon.com.br\" f=\"Groupon.com.br.xml\"><securecookie host=\"^(?:www)?\\.groupon\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.com (partial)\" f=\"Groupon.com.xml\"><securecookie host=\"^(?:merchants|touch|www)\\.groupon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.gr\" f=\"Groupon.gr.xml\"><securecookie host=\"^(?:.*\\.)?groupon\\.gr$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?groupon\\.gr/\" to=\"https://$1groupon.gr/\"/></ruleset>", "<ruleset name=\"Groupon.se\" f=\"Groupon.se.xml\"><rule from=\"^http://groupon\\.se/\" to=\"https://www.groupon.se/\"/><rule from=\"^http://www\\.groupon\\.se/\" to=\"https://www.groupon.se/\"/></ruleset>", "<ruleset name=\"Groupon DE/UK\" f=\"Groupon.xml\"><exclusion pattern=\"^http://(?:news|jobs|blog)\\.groupon\\.co\\.uk/\"/><exclusion pattern=\"^http://action\\.groupon\\.de/\"/><rule from=\"^http://groupon\\.(de|co\\.uk)/\" to=\"https://www.groupon.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.groupon\\.(de|co\\.uk)/\" to=\"https://$1.groupon.$2/\"/></ruleset>", "<ruleset name=\"Groupon CDN.com\" f=\"Groupon_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon Works.com\" f=\"Groupon_Works.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groups.io\" f=\"Groups.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grove.io\" f=\"Grove.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grow HQ.com\" f=\"Grow_HQ.com.xml\"><securecookie host=\"^\\.growhq\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|s3|www)\\.)?growhq\\.com/\" to=\"https://$1growhq.com/\"/></ruleset>", "<ruleset name=\"Growery (partial)\" f=\"Growery.xml\"><rule from=\"^http://(www\\.)?growery\\.org/(bnr/|favicon\\.www\\.growery\\.org\\.ico|forum/(?:avatar|image|stylesheet)s/|images/|smarty/)\" to=\"https://$1growery.org/$2\"/></ruleset>", "<ruleset name=\"GrowthHackers.com (partial)\" f=\"GrowthHackers.com.xml\"><securecookie host=\"^growthhackers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gruen-Digital.de\" f=\"GrunDigital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grupfoni\" f=\"Grupfoni.xml\"><securecookie host=\"^(?:.*\\.)?grupfoni\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grupo Tritón\" default_off=\"mismatch\" f=\"Grupo-Triton.xml\"><securecookie host=\"^grupotriton\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?grupotriton\\.com/\" to=\"https://grupotriton.com/\"/></ruleset>", "<ruleset name=\"Grupo Avante.org\" default_off=\"expired\" f=\"Grupo_Avante.org.xml\"><securecookie host=\"^www\\.grupoavante\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?grupoavante\\.org/\" to=\"https://www.grupoavante.org/\"/></ruleset>", "<ruleset name=\"GrvCDN.com (partial)\" f=\"GrvCDN.com.xml\"><rule from=\"^http://i\\.api\\.grvcdn\\.com/\" to=\"https://api.gravity.com/\"/><rule from=\"^http://b\\.grvcdn\\.com/\" to=\"https://b-ssl.grvcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gsfacket.se\" f=\"Gsfacket.se.xml\"><rule from=\"^http://gsfacket\\.se/\" to=\"https://www.gsfacket.se/\"/><rule from=\"^http://www\\.gsfacket\\.se/\" to=\"https://www.gsfacket.se/\"/></ruleset>", "<ruleset name=\"gsfn.us\" f=\"Gsfn.us.xml\"><rule from=\"^http://gsfn\\.us/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http://loader\\.engage\\.gsfn\\.us/\" to=\"https://loader.engage.gsfn.us/\"/></ruleset>", "<ruleset name=\"Gsmhosting.com\" f=\"Gsmhosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gtimg.cn (partial)\" f=\"Gtimg.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://i\\.gtimg\\.cn/\" to=\"https://imgcache.gtimg.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gu.com\" f=\"Gu.com.xml\"><rule from=\"^http://gu\\.com/\" to=\"https://www.theguardian.com/\"/></ruleset>", "<ruleset name=\"Gruner+ Jahr AG + Co KG\" f=\"GuJ.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guag.es (partial)\" f=\"Guag.es.xml\"><securecookie host=\"^(?:www\\.)?gaug\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guaranibitcoin.com\" f=\"Guaranibitcoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guarantorus Loans.co.uk\" default_off=\"failed ruleset test\" f=\"Guarantorus_Loans.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian.co.tt (false MCB)\" platform=\"mixedcontent\" f=\"Guardian.co.tt.xml\"><securecookie host=\"^(?:www)?\\.guardian\\.co\\.tt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian.co.uk (partial)\" f=\"Guardian.xml\"><securecookie host=\"^\\.\" name=\"^(?:NXCLICK2|OAX|s_.+s)$\"/><securecookie host=\"^(?:\\w|\\.witness\\.)\" name=\".\"/><rule from=\"^http://(?:download|image)\\.guardian\\.co\\.uk/\" to=\"https://image.guim.co.uk/\"/><rule from=\"^http://hits\\.guardian\\.co\\.uk/\" to=\"https://guardian.d1.sc.omtrdc.net/\"/><rule from=\"^http://oas\\.guardian\\.co\\.uk/\" to=\"https://oase00824.247realmedia.com/\"/><rule from=\"^http://(register|soulmates)\\.guardian\\.co\\.uk/\" to=\"https://$1.theguardian.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Project\" f=\"GuardianProject.xml\"><securecookie host=\"^dev\\.guardianproject\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Escapes.com\" f=\"Guardian_Escapes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Offers.co.uk (partial)\" f=\"Guardian_Offers.co.uk.xml\"><securecookie host=\"^e(?:ntertainment|ssentials)\\.guardianoffers\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Subscriptions.co.uk\" f=\"Guardian_Subscriptions.co.uk.xml\"><securecookie host=\"^(?:www\\.)?guardiansubscriptions\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GuerrillaMail.com\" f=\"GuerrillaMail.com.xml\"><securecookie host=\"^www\\.guerrillamail\\.com$\" name=\".+\"/><securecookie host=\"^grr\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guidance Software\" f=\"Guidance-Software.xml\"><securecookie host=\"^www\\.guidancesoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GuideStar.org (partial)\" f=\"GuideStar.xml\"><securecookie host=\"^(?:www)?\\.guidestar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guide FAQ.com\" default_off=\"mismatched\" f=\"Guide_FAQ.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guidebook.com\" f=\"Guidebook.com.xml\"><securecookie host=\"^\\.guidebook\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guifi.net (partial)\" f=\"Guifi.xml\"><securecookie host=\"\\.guifi\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guild Wars 2 (partial)\" f=\"Guild-Wars-2.xml\"><securecookie host=\"^.+\\.guildwars\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|buy|forum(?:-de|-e[ns]|-fr)?|register|support|www)\\.)?guildwars2\\.com/\" to=\"https://$1guildwars2.com/\"/></ruleset>", "<ruleset name=\"The Guild of Master Craftsmen\" default_off=\"connection dropped\" f=\"Guild_of_Master_Craftsmen.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?guildmc\\.com/\" to=\"https://www.guildmc.com/\"/></ruleset>", "<ruleset name=\"Guillaume Dargaud's website\" default_off=\"expired\" f=\"Guillaume_Dargauds_website.xml\"><rule from=\"^http://(?:www\\.)?gdargaud\\.net/\" to=\"https://gdargaud.net/\"/></ruleset>", "<ruleset name=\"Guim.co.uk (partial)\" f=\"Guim.co.uk.xml\"><exclusion pattern=\"^http://assets\\..+/(?:commercial|enhanced-vendor|main)\\.js$\"/><rule from=\"^http://id\\.guim\\.co\\.uk/\" to=\"https://id.guardian.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guitar Center.com (partial)\" f=\"Guitar_Center.com.xml\"><securecookie host=\"^(?:clearance|gc)\\.guitarcenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?guitarcenter\\.com/(?=Ajax/|favicon\\.ico|[iI]ncludes/)\" to=\"https://www.guitarcenter.com/\"/><rule from=\"^http://(clearance|gc|images|m|stores)\\.guitarcenter\\.com/\" to=\"https://$1.guitarcenter.com/\"/></ruleset>", "<ruleset name=\"Guldencoin.com\" f=\"Guldencoin.com.xml\"><securecookie host=\"^\\.guldencoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gulesider\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Gulesider.xml\"><exclusion pattern=\"^http://kundesider\\.gulesider\\.no/\"/><rule from=\"^http://(?:www\\.)?gulesider\\.no/\" to=\"https://www.gulesider.no/\"/></ruleset>", "<ruleset name=\"Gum.co\" f=\"Gum.co.xml\"><securecookie host=\"^(?:\\.|www\\.)?gum\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GumGum (partial)\" f=\"GumGum.xml\"><rule from=\"^http://(www\\.)?gumgum\\.com/(?=images/|(?:login|terms-of-service)(?:/?$|\\?))\" to=\"https://$1gumgum.com/\"/><rule from=\"^http://(ads|g2)\\.gumgum\\.com/\" to=\"https://$1.gumgum.com/\"/><rule from=\"^http://c\\.gumgum\\.com/\" to=\"https://d1u2cbczpt82kt.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gumroad.com\" f=\"Gumroad.com.xml\"><securecookie host=\"^(?:\\.|api\\.|www\\.)?gumroad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gumstix\" f=\"Gumstix.xml\"><securecookie host=\"^\\.gumstix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gun.io (partial)\" f=\"GunIO.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guru3d.com\" f=\"Guru3d.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://guru3d\\.com/\" to=\"https://www.guru3d.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guru Labs.com\" default_off=\"failed ruleset test\" f=\"Guru_Labs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gust (partial)\" f=\"Gust.xml\"><rule from=\"^http://(www\\.)?gust\\.com/(?!$)\" to=\"https://$1gust.com/\"/></ruleset>", "<ruleset name=\"Gustavus.edu (partial)\" f=\"Gustavus.edu.xml\"><securecookie host=\"^gustavus\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gusto.com\" f=\"Gusto.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gutenberg.org\" f=\"Gutenberg.org.xml\"><securecookie host=\"^\\.gutenberg\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gutenberg\\.org/\" to=\"https://www.gutenberg.org/\"/></ruleset>", "<ruleset name=\"Guttmacher Institute\" f=\"Guttmacher_Institute.xml\"><securecookie host=\"^(?:w*\\.)?guttmacher\\.org$\" name=\".+\"/><rule from=\"^http://gu\\.tt/\" to=\"https://bit.ly/\"/><rule from=\"^http://(www\\.)?guttmacher\\.org/\" to=\"https://$1guttmacher.org/\"/></ruleset>", "<ruleset name=\"GwDg.de\" f=\"GwDg.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GwR YMCA.org\" f=\"GwR_YMCA.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gweb.io\" f=\"Gweb.io.xml\"><securecookie host=\"^(?:\\.)?(?:.+)?(?:\\.)?gweb\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gwent.police.uk\" f=\"Gwent.police.uk.xml\"><rule from=\"^http://(www\\.)?gwent\\.police\\.uk/\" to=\"https://www.gwent.police.uk/\"/></ruleset>", "<ruleset name=\"Gwinnett County.com\" f=\"Gwinnett_County.com.xml\"><securecookie host=\"^www\\.gwinnettcounty\\.com$\" name=\".+\"/><rule from=\"^http://gwinnettcounty\\.com/\" to=\"https://www.gwinnettcounty.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gyazo.com (partial)\" f=\"Gyazo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gyft.com\" f=\"Gyft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GymGlish (problematic)\" default_off=\"mismatched\" f=\"GymGlish-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?gymglish\\.vn/\"/><securecookie host=\"^www\\.gymglish\\.(?:\\w\\w|com\\.br|co\\.uk)$\" name=\".+\"/><rule from=\"^http://faq\\.gymglish\\.com/\" to=\"https://faq.gymglish.com/\"/><rule from=\"^http://(?:www\\.)?gymglish\\.(\\w\\w|com\\.br|co\\.uk)/\" to=\"https://www.gymglish.$1/\"/></ruleset>", "<ruleset name=\"GymGlish (partial)\" f=\"GymGlish.xml\"><exclusion pattern=\"^http://(?:www\\.)?gymglish\\.(?:\\w\\w|com\\.br|co\\.uk)/(?!images/)\"/><exclusion pattern=\"^http://(?:www\\.)?gymglish\\.vn/\"/><exclusion pattern=\"^http://webservers6?\\.gymglish\\.com/(?!images/)\"/><securecookie host=\"^.+\\.gymglish\\.com$\" name=\".+\"/><rule from=\"^http://(?:webservers6?\\.|www\\.)?gymglish\\.(?:\\w\\w|com|com\\.br|co\\.uk)/\" to=\"https://www.gymglish.com/\"/></ruleset>", "<ruleset name=\"Gynecomastia.org\" f=\"Gynecomastia.org.xml\"><securecookie host=\"^(?:(?:www)?\\.)?gynecomastia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gynecomastia\\.org/\" to=\"https://www.gynecomastia.org/\"/></ruleset>", "<ruleset name=\"H-CDN.co\" default_off=\"mismatched\" f=\"H-CDN.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H-T.co\" f=\"H-T.co.xml\"><securecookie host=\"^(?:i\\.)?h-t\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"h-node.org\" f=\"H-node.org.xml\"><securecookie host=\"^(?:www\\.)?h-node\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H2HC.com.br\" f=\"H2HC.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"h5n.us\" f=\"H5n.us.xml\"><rule from=\"^http://(?:(virtual\\.)|www\\.)?h5n\\.us/\" to=\"https://$1h5n.us/\"/></ruleset>", "<ruleset name=\"HAProxy.com (partial)\" f=\"HAProxy.com.xml\"><exclusion pattern=\"^http://blog\\.haproxy\\.com/+(?!i/)\"/><securecookie host=\"^(?:www\\.)?haproxy\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.haproxy\\.com/\" to=\"https://alohalb.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBAnet.org\" f=\"HBAnet.org.xml\"><securecookie host=\"^\\.hbanet\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hbanet\\.org/\" to=\"https://www.hbanet.org/\"/></ruleset>", "<ruleset name=\"HBO.com (partial)\" f=\"HBO.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBR.org\" f=\"HBR.org.xml\"><securecookie host=\"^(?:\\.|ox-d\\.|www\\.)?hbr\\.org$\" name=\".+\"/><rule from=\"^http://(?:static\\.|((?:blogs|ox-d|www)\\.))?hbr\\.org/\" to=\"https://$1hbr.org/\"/><rule from=\"^http://web\\.hbr\\.org/\" to=\"https://hbdm.hbsp.harvard.edu/\"/></ruleset>", "<ruleset name=\"HBoeck.de\" f=\"HBoeck.xml\"><securecookie host=\"^(?:blog\\.)?hboeck\\.de$\" name=\".+\"/><rule from=\"^http://((?:blog|ssl|[\\w-]+\\.ssl|svn|www)\\.)?hboeck\\.de/\" to=\"https://$1hboeck.de/\"/></ruleset>", "<ruleset name=\"HCL Technologies (partial)\" default_off=\"failed ruleset test\" f=\"HCL_Technologies.xml\"><securecookie host=\"^(?:(?:chn|comnetweb|isd)?mail|\\.?meme|mpindia|mycampus|(?:as\\.|download\\.)?ocsweb|remedy)\\.hcl\\.com$\" name=\".+\"/><securecookie host=\"^hcltmail(?:-chn)?\\.hcl\\.in$\" name=\".+\"/><securecookie host=\"^webmail\\.hcltech\\.com$\" name=\".+\"/><rule from=\"^http://(autodiscover|(?:chn|comnetweb|isd)?mail|meme|mpindia|mycampus|(?:as\\.|download\\.)?ocsweb|remedy)\\.hcl\\.com/\" to=\"https://$1.hcl.com/\"/><rule from=\"^http://(autodiscover|hcltmail(?:-chn)?)\\.hcl\\.in/\" to=\"https://$1.hcl.in/\"/><rule from=\"^http://autodiscover\\.hcl-axon\\.com/\" to=\"https://autodiscover.hcl-axon.com/\"/><rule from=\"^http://webmail\\.hcltech\\.com/\" to=\"https://webmail.hcltech.com/\"/></ruleset>", "<ruleset name=\"hClippr.com (partial)\" f=\"HClippr.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HD.se\" default_off=\"failed ruleset test\" f=\"HD.se.xml\"><rule from=\"^http://hd\\.se/\" to=\"https://hd.se/\"/><rule from=\"^http://www\\.hd\\.se/\" to=\"https://hd.se/\"/></ruleset>", "<ruleset name=\"HDFury.com\" f=\"HDFury.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huntington's Disease Society of America\" platform=\"mixedcontent\" f=\"HDSA.xml\"><rule from=\"^http://hdsa\\.org/\" to=\"https://www.hdsa.org/\"/><rule from=\"^http://www\\.hdsa\\.org/\" to=\"https://www.hdsa.org/\"/></ruleset>", "<ruleset name=\"HDserviceproviders.com\" f=\"HDserviceproviders.com.xml\"><securecookie host=\"^www\\.hdserviceproviders\\.com$\" name=\".+\"/><rule from=\"^http://www\\.hdserviceproviders\\.com/\" to=\"https://www.hdserviceproviders.com/\"/></ruleset>", "<ruleset name=\"HDtracks.com\" f=\"HDtracks.com.xml\"><securecookie host=\"^www\\.hdtracks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hdtracks\\.com/\" to=\"https://www.hdtracks.com/\"/></ruleset>", "<ruleset name=\"HEA.net\" f=\"HEA.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HGO.se\" default_off=\"failed ruleset test\" f=\"HGO.se.xml\"><rule from=\"^http://hgo\\.se/\" to=\"https://www.hgo.se/\"/><rule from=\"^http://www\\.hgo\\.se/\" to=\"https://www.hgo.se/\"/><rule from=\"^http://space\\.hgo\\.se/\" to=\"https://space.hgo.se/\"/></ruleset>", "<ruleset name=\"HGST.com (partial)\" f=\"HGST.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HH.ru (partial)\" f=\"HH.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?hh\\.ru/+(?!favicon\\.ico|file/|icms/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HH.se\" f=\"HH.se.xml\"><rule from=\"^http://hh\\.se/\" to=\"https://www.hh.se/\"/><rule from=\"^http://www\\.hh\\.se/\" to=\"https://www.hh.se/\"/></ruleset>", "<ruleset name=\"HHS.gov (partial)\" f=\"HHS.gov.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://thinkculturalhealth\\.hhs\\.gov/\" to=\"https://www.thinkculturalhealth.hhs.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HH CDN.ru\" f=\"HH_CDN.ru.xml\"><rule from=\"^http://www\\.hhcdn\\.ru/\" to=\"https://hhcdn.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HHid.com\" f=\"HHid.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HI.is (false MCB)\" platform=\"mixedcontent\" f=\"HI.is-falsemixed.xml\"><securecookie host=\"^vefir\\.hi\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HI.is (partial)\" f=\"HI.is.xml\"><securecookie host=\"^(?:kennslumidstod|nemendafelog|ugla|uni|webmail)\\.hi\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HIG.se\" default_off=\"failed ruleset test\" f=\"HIG.se.xml\"><rule from=\"^http://hig\\.se/\" to=\"https://www.hig.se/\"/><rule from=\"^http://www\\.hig\\.se/\" to=\"https://www.hig.se/\"/></ruleset>", "<ruleset name=\"HIIG.de\" default_off=\"mismatched, self-signed\" f=\"HIIG.de.xml\"><securecookie host=\"^(?:www\\.)?hiig\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HIS.se\" platform=\"mixedcontent\" f=\"HIS.se.xml\"><rule from=\"^http://his\\.se/\" to=\"https://www.his.se/\"/><rule from=\"^http://www\\.his\\.se/\" to=\"https://www.his.se/\"/></ruleset>", "<ruleset name=\"HITBSecConf\" f=\"HITBSecConf.xml\"><securecookie host=\"^(?:conference|news)\\.hitb\\.org$\" name=\".+\"/><rule from=\"^http://(conference|news)\\.hitb\\.org/\" to=\"https://$1.hitb.org/\"/></ruleset>", "<ruleset name=\"HJCMS.de (CAcert)\" platform=\"cacert\" f=\"HJCMS.xml\"><securecookie host=\"^(?:.*\\.)?hjcms\\.de$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?hjcms\\.de/\" to=\"https://$1hjcms.de/\"/></ruleset>", "<ruleset name=\"HJR-Verlag.de\" f=\"HJR-Verlag.de.xml\"><securecookie host=\"^(?:mediendb|www)\\.hjr-verlag\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hjr-verlag\\.de/\" to=\"https://www.hjr-verlag.de/\"/><rule from=\"^http://mediendb\\.hjr-verlag\\.de/\" to=\"https://mediendb.hjr-verlag.de/\"/></ruleset>", "<ruleset name=\"HKEdCity (partial)\" f=\"HKEdCity.xml\"><rule from=\"^http://(?:www\\.)?hkedcity\\.net/\" to=\"https://www.hkedcity.net/\"/></ruleset>", "<ruleset name=\"Agriculture, Fisheries and Conservation Department\" f=\"HKGov-AFCD.xml\"><rule from=\"^http://(?:www\\.)?afcd\\.gov\\.hk/\" to=\"https://www.afcd.gov.hk/\"/></ruleset>", "<ruleset name=\"Architectural Services Department\" f=\"HKGov-ArchSD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Housing Authority\" f=\"HKGov-HousingAuth.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trade and Industry Department\" f=\"HKGov-TID.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HKK\" f=\"HKK.de.xml\"><rule from=\"^http://(?:www\\.)?hkk\\.de/\" to=\"https://www.hkk.de/\"/></ruleset>", "<ruleset name=\"HKN (partial)\" f=\"HKN.xml\"><securecookie host=\"^(?:www\\.)?hkn\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HKW.de\" f=\"HKW.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HK Yanto Yan.com (false MCB)\" platform=\"mixedcontent\" f=\"HK_Yanto_Yan.com-falsemixed.xml\"><securecookie host=\"^(?:\\.|www\\.)?hkyantoyan\\.com$\" name=\".+\"/><rule from=\"^http://www\\.hkyantoyan\\.com/\" to=\"https://www.hkyantoyan.com/\"/></ruleset>", "<ruleset name=\"HK Yanto Yan.com (partial)\" f=\"HK_Yanto_Yan.com.xml\"><exclusion pattern=\"http://www\\.hkyantoyan\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hm.com\" platform=\"mixedcontent\" f=\"HM.com.xml\"><rule from=\"^http://www\\.hm\\.com/\" to=\"https://www.hm.com/\"/><rule from=\"^http://hm\\.com/\" to=\"https://www.hm.com/\"/></ruleset>", "<ruleset name=\"HMRC.gov.uk (partial)\" f=\"HMRC.gov.uk.xml\"><exclusion pattern=\"^http://(?:aka\\.|www\\.)?hmrc\\.gov\\.uk/+(?!$|\\?|index\\.htm)\"/><securecookie host=\"^\\.\" name=\"^X_DEVICE_ID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:aka\\.|www\\.)?hmrc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/hm-revenue-customs\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HMV (partial)\" default_off=\"expired\" f=\"HMV.xml\"><rule from=\"^http://www3\\.hmv\\.co\\.uk/\" to=\"https://www3.hmv.co.uk/\"/><securecookie host=\"^hmv\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"HMV Japan (partial)\" f=\"HMV_Japan.xml\"><securecookie host=\"^\\.hmv\\.co\\.jp$\" name=\"(?:s_\\w+|__utm)\\w$\"/><rule from=\"^http://(?:www\\.)?hmv\\.co\\.jp/(?=async/|favicon\\.ico|login/)\" to=\"https://www.hmv.co.jp/\"/><rule from=\"^http://img(-org)?\\.hmv\\.co\\.jp/\" to=\"https://img$1.hmv.co.jp/\"/></ruleset>", "<ruleset name=\"hMailServer.com (partial)\" f=\"HMailServer.com.xml\"><securecookie host=\"^(?:build)?\\.hmailserver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HON.ch (Health On the Net)\" f=\"HON.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HONcode.ch\" f=\"HONcode.xml\"><rule from=\"^http://honcode\\.ch/\" to=\"https://www.honcode.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HPI.de\" f=\"HPI.de.xml\"><securecookie host=\"^(?:www\\.)?open\\.hpi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HP Cloud.com (partial)\" f=\"HP_Cloud.com.xml\"><exclusion pattern=\"http://www\\.hpcloud\\.com/(?!sites/)\"/><rule from=\"^http://((?:blog|marketplace|www)\\.)?hpcloud\\.com/\" to=\"https://$1hpcloud.com/\"/></ruleset>", "<ruleset name=\"H+: the Digital Series\" f=\"HPlus_the_Digital_Series.xml\"><rule from=\"^http://(?:www\\.)?hplusdigitalseries\\.com/\" to=\"https://www.hplusdigitalseries.com/\"/></ruleset>", "<ruleset name=\"HR-Skyen.dk\" f=\"HR-Skyen.dk.xml\"><securecookie host=\"(www\\.)?hr-skyen\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HRA-News.org\" f=\"HRA-News.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HR Solutions\" f=\"HR_Solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HRsmart\" platform=\"mixedcontent\" f=\"HRsmart.xml\"><securecookie host=\"^.*\\.hrdepartment\\.com$\" name=\".*\"/><securecookie host=\"^www\\.hrsmart\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.(mua|tms)\\.hrdepartment\\.com/\" to=\"https://$1.$2.hrdepartment.com/\"/><rule from=\"^http://(www\\.)?hrsmart\\.com/\" to=\"https://$1hrsmart.com/\"/></ruleset>", "<ruleset name=\"HS-analytics.net\" f=\"HS-analytics.net.xml\"><rule from=\"^http://js\\.hs-analytics\\.net/\" to=\"https://js.hs-analytics.net/\"/></ruleset>", "<ruleset name=\"HSBC\" default_off=\"failed ruleset test\" f=\"HSBC.xml\"><securecookie host=\"^(?:.*\\.)?hsbc\\..*$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?firstdirect\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www\\.hangseng\\.com/\"/><exclusion pattern=\"^http://www\\.hfcbank\\.co\\.uk/\"/><exclusion pattern=\"^http://www\\.hsbc\\.cz/\"/><exclusion pattern=\"^http://www\\.hsbc\\.ge/\"/><exclusion pattern=\"^http://www\\.hsbc\\.ie/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.id/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.pa/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.za/\"/><exclusion pattern=\"^http://www\\.kuwait\\.hsbc\\.com/\"/><exclusion pattern=\"^http://www\\.hsbc\\.co\\.nz/\"/><exclusion pattern=\"^http://www\\.hsbc\\.com\\.tr/\"/><exclusion pattern=\"^http://www\\.hsbc\\.com\\.uy/\"/><rule from=\"^http://(?:www\\.)?hsbc\\.([^/:@]+)/\" to=\"https://www.hsbc.$1/\"/><rule from=\"^http://([^/:@]+)?\\.hsbc\\.co\\.uk/\" to=\"https://$1.hsbc.co.uk/\"/><rule from=\"^http://firstdirect\\.com/\" to=\"https://www.firstdirect.com/\"/><rule from=\"^http://([^/:@]+)?\\.firstdirect\\.com/\" to=\"https://$1.firstdirect.com/\"/><rule from=\"^http://(?:www\\.)?hsbctrinkaus\\.de/\" to=\"https://www.hsbctrinkaus.de/\"/><rule from=\"^http://(?:www\\.)?sabb\\.com/\" to=\"https://www.sabb.com/\"/><rule from=\"^http://(?:www\\.)?firstdirect\\.com/\" to=\"https://www.firstdirect.com/\"/><rule from=\"^http://www\\.business\\.hsbc\\.co\\.uk/\" to=\"https://www.business.hsbc.co.uk/\"/><rule from=\"^http://(?:www\\.)?us\\.hsbc\\.com/\" to=\"https://www.us.hsbc.com/\"/></ruleset>", "<ruleset name=\"Home School Legal Defense Association\" platform=\"mixedcontent\" f=\"HSLDA.xml\"><rule from=\"^http://(?:www\\.)?hslda\\.org/\" to=\"https://www.hslda.org/\"/><rule from=\"^http://secure\\.hslda\\.org/\" to=\"https://secure.hslda.org/\"/></ruleset>", "<ruleset name=\"HSV.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"HSV.se.xml\"><rule from=\"^http://hsv\\.se/\" to=\"https://www.hsv.se/\"/><rule from=\"^http://www\\.hsv\\.se/\" to=\"https://www.hsv.se/\"/></ruleset>", "<ruleset name=\"HSappstatic.net\" f=\"HSappstatic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSstatic.net\" f=\"HSstatic.net.xml\"><rule from=\"^http://static\\.hsstatic\\.net/\" to=\"https://static.hsstatic.net/\"/></ruleset>", "<ruleset name=\"HTC\" default_off=\"displays error message\" f=\"HTC.xml\"><rule from=\"^http://(?:www\\.)?htc\\.com/\" to=\"https://www.htc.com/\"/></ruleset>", "<ruleset name=\"HTML5 Rocks\" default_off=\"handshake failure\" f=\"HTML5-Rocks.xml\"><rule from=\"^http://(?:www\\.)?html5rocks\\.com/\" to=\"https://www.html5rocks.com/\"/></ruleset>", "<ruleset name=\"HTML5Sec.org (partial)\" f=\"HTML5Sec.org.xml\"><rule from=\"^http://www\\.html5sec\\.org/\" to=\"https://html5sec.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5Video.org (false MCB)\" platform=\"mixedcontent\" f=\"HTML5Video.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5test.com\" f=\"HTML5test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPSWatch.com\" f=\"HTTPSWatch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPSWatch.nz\" f=\"HTTPSWatch.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTP Security Report.com\" f=\"HTTP_Security_Report.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPwatch.com\" f=\"HTTPwatch.com.xml\"><rule from=\"^http://httpwatch\\.com/\" to=\"https://www.httpwatch.com/\"/><rule from=\"^http://(blog|www)\\.httpwatch\\.com/\" to=\"https://$1.httpwatch.com/\"/></ruleset>", "<ruleset name=\"HTW-Berlin.de (partial)\" f=\"HTW-Berlin.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTWG Konstanz\" f=\"HTWG-Konstanz.xml\"><rule from=\"^http://qisserver\\.htwg-konstanz\\.de/\" to=\"https://qisserver.htwg-konstanz.de/\"/><rule from=\"^http://lsf\\.htwg-konstanz\\.de/\" to=\"https://lsf.htwg-konstanz.de/\"/><rule from=\"^http://login\\.rz\\.htwg-konstanz\\.de/\" to=\"https://login.rz.htwg-konstanz.de/\"/><rule from=\"^http://webmail\\.htwg-konstanz\\.de/\" to=\"https://webmail.htwg-konstanz.de/\"/></ruleset>", "<ruleset name=\"HTWK-Leipzig\" f=\"HTWK-Leipzig.xml\"><rule from=\"^http://htwk-leipzig\\.de/\" to=\"https://www.htwk-leipzig.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HT Bridge.com\" f=\"HT_Bridge.com.xml\"><securecookie host=\"^\\.htbridge\\.com$\" name=\".+\"/><rule from=\"^http://htbridge\\.com/\" to=\"https://www.htbridge.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HUBzero.org\" f=\"HUBzero.xml\"><securecookie host=\"^hubzero\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HUK Coburg\" platform=\"mixedcontent\" f=\"HUK.de.xml\"><rule from=\"^http://(?:www\\.)?huk\\.de/\" to=\"https://www.huk.de/\"/></ruleset>", "<ruleset name=\"HVG Kiadó Zrt.\" f=\"HVGKonyvek.xml\"><securecookie host=\"^www\\.hvgkonyvek\\.hu$\" name=\".*\"/><rule from=\"^http://www\\.hvgkonyvek\\.hu/\" to=\"https://www.hvgkonyvek.hu/\"/></ruleset>", "<ruleset name=\"HWSW.hu\" default_off=\"expired\" f=\"HWSW.hu.xml\"><securecookie host=\"^\\.hwsw\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H Sivonen.fi\" f=\"H_Sivonen.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HaCoder.com (false MCB)\" platform=\"mixedcontent\" f=\"HaCoder.com.xml\"><securecookie host=\"^\\.hacoder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Habbo.fi\" f=\"Habbo.fi.xml\"><rule from=\"^http://(?:www\\.)?habbo\\.fi/\" to=\"https://www.habbo.fi/\"/><rule from=\"^http://help\\.habbo\\.fi/\" to=\"https://help.habbo.fi/\"/></ruleset>", "<ruleset name=\"HabboLatino\" default_off=\"failed ruleset test\" f=\"HabboLatino.xml\"><securecookie host=\"^(?:w*\\.)?hlat\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haber Vision (partial)\" f=\"Haber-Vision.xml\"><securecookie host=\"^(?:.*\\.)?habervision\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?habervision\\.com/(css/|images/|mainstreet/)\" to=\"https://www.habervision.com/$1\"/></ruleset>", "<ruleset name=\"habets.se (mismatches)\" default_off=\"mismatch\" platform=\"cacert\" f=\"Habets.se-mismatches.xml\"><rule from=\"^http://(?:www\\.)?habets(\\.pp)?\\.se/\" to=\"https://habets$1.se/\"/></ruleset>", "<ruleset name=\"habets.se (partial)\" platform=\"cacert\" f=\"Habets.se.xml\"><securecookie host=\"^blog\\.habets(?:\\.pp)?\\.se$\" name=\".*\"/><rule from=\"^http://(blog|cdn)\\.habets(\\.pp)?\\.se/\" to=\"https://$1.habets$2.se/\"/></ruleset>", "<ruleset name=\"habpl.us\" f=\"Habpl.us.xml\"><securecookie host=\"^\\.?habpl\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HabraCDN.net\" f=\"HabraCDN.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Habrahabr.ru (partial)\" f=\"Habrahabr.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"habrastorage.org\" f=\"Habrastorage.org.xml\"><rule from=\"^http://www\\.habrastorage\\.org/\" to=\"https://habrastorage.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HacDC.org (partial)\" platform=\"mixedcontent\" f=\"HacDC.org.xml\"><securecookie host=\"^wiki\\.hacdc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackHands.com\" f=\"HackHands.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackLab.to\" default_off=\"self-signed\" f=\"HackLab.to.xml\"><rule from=\"^http://(?:www\\.)?hacklab\\.to/\" to=\"https://hacklab.to/\"/></ruleset>", "<ruleset name=\"HackRead.com\" f=\"HackRead.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hack In Paris.com\" f=\"Hack_In_Paris.com.xml\"><securecookie host=\"^\\.hackinparis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hack This Site.org\" f=\"Hack_This_Site.org.xml\"><securecookie host=\"^www\\.hackthissite\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackable-devices.org\" f=\"Hackable-devices.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackaday.io (partial)\" f=\"Hackaday.io.xml\"><securecookie host=\"^(?:dev\\.)?hackaday\\.io$\" name=\".+\"/><rule from=\"^http://www\\.hackaday\\.io/\" to=\"https://hackaday.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackademix.net\" f=\"Hackademix.net.xml\"><securecookie host=\"^www\\.hackademix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacker Factor (partial)\" default_off=\"self-signed\" f=\"Hacker-Factor.xml\"><rule from=\"^http://(?:www\\.)?fotoforensics\\.com/\" to=\"https://fotoforensics.com/\"/></ruleset>", "<ruleset name=\"Y Combinator.com\" f=\"HackerNews.xml\"><securecookie host=\"^(?:.*\\.)?ycombinator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackerOne.com\" f=\"HackerOne.com.xml\"><securecookie host=\"^\\.hackerone(?:-user-content)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackerRank.com\" default_off=\"failed ruleset test\" f=\"HackerRank.com.xml\"><securecookie host=\"^www\\.hackerrank\\.com$\" name=\".+\"/><securecookie host=\"^\\.hrcdn\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?hackerrank\\.com/\" to=\"https://$1hackerrank.com/\"/><rule from=\"^http://hrcdn\\.net/\" to=\"https://hrcdn.net/\"/></ruleset>", "<ruleset name=\"Hacker Experience.com\" f=\"Hacker_Experience.com.xml\"><securecookie host=\"^\\.hackerexperience\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacker Target.com\" f=\"Hacker_Target.com.xml\"><securecookie host=\"^(?:www\\.)?hackertarget\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackerboard.de (partial)\" f=\"Hackerboard.de.xml\"><securecookie host=\"^\\.hackerboard\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackers.fi\" default_off=\"failed ruleset test\" f=\"Hackers.fi.xml\"><rule from=\"^http://(?:(root\\.)|www\\.)?hackers\\.fi/\" to=\"https://$1hackers.fi/\"/></ruleset>", "<ruleset name=\"hackerschool.com\" f=\"Hackerschool.xml\"><securecookie host=\"^(?:.*\\.)?hackerschool\\.com$\" name=\".*\"/><rule from=\"^http://hackerschool\\.com/\" to=\"https://www.hackerschool.com/\"/><rule from=\"^http://(\\w+)\\.hackerschool\\.com/\" to=\"https://$1.hackerschool.com/\"/></ruleset>", "<ruleset name=\"Hackerspace.pl\" f=\"Hackerspace.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackerspaces.nl (false MCB)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"Hackerspaces.nl.xml\"><rule from=\"^http://(?:www\\.)?hackerspaces\\.nl/\" to=\"https://hackerspaces.nl/\"/></ruleset>", "<ruleset name=\"Hackerspaces\" default_off=\"self-signed\" f=\"Hackerspaces.xml\"><securecookie host=\"^hackerspaces\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hackerspaces\\.org/\" to=\"https://hackerspaces.org/\"/></ruleset>", "<ruleset name=\"Hackforums.net (mixed content)\" platform=\"mixedcontent\" f=\"Hackforums.net.xml\"><rule from=\"^http://(?:www\\.)?hackforums\\.net/\" to=\"https://www.hackforums.net/\"/></ruleset>", "<ruleset name=\"Hacking.Ventures\" default_off=\"failed ruleset test\" f=\"Hacking.Ventures.xml\"><rule from=\"^http://(?:www\\.)?hacking\\.ventures/\" to=\"https://hacking.ventures/\"/></ruleset>", "<ruleset name=\"Hackinthebox.org\" default_off=\"failed ruleset test\" f=\"Hackinthebox.org.xml\"><rule from=\"^http://forum\\.hackinthebox\\.org/\" to=\"https://forum.hackinthebox.org/\"/><rule from=\"^http://(?:www\\.)?hackinthebox\\.org/\" to=\"https://www.hackinthebox.org/\"/></ruleset>", "<ruleset name=\"Hackney.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Hackney.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackney.gov.uk (partial)\" f=\"Hackney.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackover.de\" platform=\"cacert\" f=\"Hackover.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackpad\" f=\"Hackpad.xml\"><securecookie host=\".*\\.hackpad\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?hackpad\\.com/\" to=\"https://$1hackpad.com/\"/></ruleset>", "<ruleset name=\"hackthe.computer\" f=\"Hackthe.computer.xml\"><rule from=\"^http://www\\.hackthe\\.computer/\" to=\"https://hackthe.computer/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HacktionLab.org\" f=\"HacktionLab.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hadrons.org\" f=\"Hadrons.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hafner-ips.com\" f=\"Hafner-ips.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haiku Project\" f=\"Haiku_Project.xml\"><securecookie host=\"^\\.haiku-os\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hail Protector\" f=\"Hail_Protector.xml\"><securecookie host=\"^\\.myhailprotector\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myhailprotector\\.com/\" to=\"https://www.myhailprotector.com/\"/></ruleset>", "<ruleset name=\"Hail Storm Products\" f=\"Hail_Storm_Products.xml\"><securecookie host=\"^\\.hailstormproducts\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)hailavenger(?:\\.hailguardian)\\.com/\" to=\"https://secure.bluehost.com/~hailguar/hailavenger/\"/><rule from=\"^http://(?:www\\.)?hailguardian\\.com/\" to=\"https://secure.bluehost.com/~hailguar/\"/><rule from=\"^http://(?:www\\.)?hailstormproducts\\.com/\" to=\"https://www.hailstormproducts.com/\"/></ruleset>", "<ruleset name=\"Hairsmize.com\" default_off=\"failed ruleset test\" f=\"Hairsmize.com.xml\"><securecookie host=\"^\\.hairsmize\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hak5.org (false MCB)\" platform=\"mixedcontent\" f=\"Hak5.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hak5.org (partial)\" f=\"Hak5.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?hak5\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.forums\\.hak5\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hakin9.org\" f=\"Hakin9.org.xml\"><securecookie host=\"^\\.hakin9\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hakka Labs.co\" f=\"Hakka_Labs.co.xml\"><securecookie host=\"^(?:www)?\\.hakkalabs\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hakko.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hakko.com.xml\"><rule from=\"^http://(?:www\\.)?hakko\\.com/\" to=\"https://www.hakko.com/\"/></ruleset>", "<ruleset name=\"Halcyon.sh\" f=\"Halcyon.sh.xml\"><rule from=\"^http://(?:www\\.)?halcyon\\.sh/\" to=\"https://halcyon.sh/\"/></ruleset>", "<ruleset name=\"Halebop.se\" platform=\"mixedcontent\" f=\"Halebop.se.xml\"><rule from=\"^http://halebop\\.se/\" to=\"https://www.halebop.se/\"/><rule from=\"^http://www\\.halebop\\.se/\" to=\"https://www.halebop.se/\"/></ruleset>", "<ruleset name=\"Halifax\" f=\"Halifax.xml\"><securecookie host=\"^\\.halifax(?:-online)?\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?halifax(-online)?\\.co\\.uk/\" to=\"https://www.halifax$1.co.uk/\"/></ruleset>", "<ruleset name=\"Hall Data.com\" f=\"Hall_Data.com.xml\"><securecookie host=\"^1105-sub\\.halldata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halo\" f=\"Halo.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://halowaypoint\\.com/\" to=\"https://www.halowaypoint.com/\"/><rule from=\"^http://download\\.halowaypoint\\.com/\" to=\"https://download-ssl.halowaypoint.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"halo123 (partial)\" f=\"Halo123.xml\"><rule from=\"^http://user\\.hao123\\.com/\" to=\"https://user.hao123.com/\"/></ruleset>", "<ruleset name=\"Halsnaes.dk\" f=\"Halsnaes.dk.xml\"><securecookie host=\"^\\.?(www\\.)?halsnaes\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HamStudy.org (partial)\" f=\"HamStudy.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?hamstudy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ham Radio Science.com\" default_off=\"mismatched\" f=\"Ham_Radio_Science.com.xml\"><securecookie host=\"^\\.(?:www\\.)?hamradioscience\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hamradioscience\\.com/\" to=\"https://www.hamradioscience.com/\"/></ruleset>", "<ruleset name=\"Hamburg\" f=\"Hamburg.de.xml\"><rule from=\"^http://(?:www\\.)?hamburg\\.de/\" to=\"https://www.hamburg.de/\"/></ruleset>", "<ruleset name=\"Hammacher Schlemmer (partial)\" platform=\"mixedcontent\" f=\"Hammacher-Schlemmer.xml\"><rule from=\"^http://(?:images\\.)?hammacher\\.com/\" to=\"https://www.hammacher.com/\"/><rule from=\"^http://www\\.hammacher\\.com/((?:(?:cs|[iI]mage)s30)/|favicon\\.ico)\" to=\"https://www.hammacher.com/$1\"/><rule from=\"^http://digital\\.hammacher\\.com/\" to=\"https://digital.hammacher.com/\"/></ruleset>", "<ruleset name=\"Hamppu.net (mismatches)\" default_off=\"mismatch\" f=\"Hamppu.net.xml\"><rule from=\"^http://(?:www\\.)?hamppu\\.net/\" to=\"https://hamppu.net/\"/></ruleset>", "<ruleset name=\"Hamradio.com\" f=\"Hamradio.com.xml\"><rule from=\"^http://(?:www\\.)?hamradio\\.com/\" to=\"https://www.hamradio.com/\"/></ruleset>", "<ruleset name=\"Handbrake.fr\" f=\"Handbrake.fr.xml\"><securecookie host=\"^trac\\.handbrake\\.fr$\" name=\".+\"/><rule from=\"^http://((?:forum|trac|www)\\.)?handbrake\\.fr/\" to=\"https://$1handbrake.fr/\"/></ruleset>", "<ruleset name=\"handelsbanken.fi (partial)\" default_off=\"failed ruleset test\" f=\"Handelsbanken.fi.xml\"><rule from=\"^http://(?:www\\.)?handelsbanken\\.fi/\" to=\"https://www.handelsbanken.fi/\"/><rule from=\"^http://(www1|www2|www9)\\.handelsbanken\\.fi/\" to=\"https://$1.handelsbanken.fi/\"/><rule from=\"^http://(?:www\\.)?aktiiviraha\\.fi/\" to=\"https://www.aktiiviraha.fi/\"/><rule from=\"^http://netsale\\.aktiiviraha\\.fi/\" to=\"https://netsale.aktiiviraha.fi/\"/></ruleset>", "<ruleset name=\"Handelsblatt (partial)\" f=\"Handelsblatt.xml\"><securecookie host=\"^abo\\.handelsblatt\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?handelsblatt\\.com/images/\" to=\"https://www.handelsblatt.com/images/\"/><rule from=\"^http://abo\\.handelsblatt\\.com/\" to=\"https://abo.handelsblatt.com/\"/><rule from=\"^http://staticef[12]\\.handelsblatt\\.com/\" to=\"https://d21rxpf5vn0rru.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Handelsregister.de\" f=\"Handelsregister.de.xml\"><securecookie host=\"^(www\\.)?handelsregister\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Handmade Kultur.de (partial)\" f=\"Handmade_Kultur.de.xml\"><rule from=\"^http://(www\\.)?handmadekultur\\.de/(?!/*(?:$|\\?))\" to=\"https://$1handmadekultur.de/\"/></ruleset>", "<ruleset name=\"hands.com\" platform=\"cacert\" f=\"Hands.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Handsome Code.com\" default_off=\"mismatched\" f=\"Handsome_Code.com.xml\"><rule from=\"^http://(?:www\\.)?handsomecode\\.com/\" to=\"https://www.handsomecode.com/\"/></ruleset>", "<ruleset name=\"Handtekening.nl\" f=\"Handtekening.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"handy.de\" f=\"Handy.de.xml\"><rule from=\"^http://(?:www\\.)?handy\\.de/+[^?]*\\?(.*)\" to=\"https://www.etracker.de/lnkcnt.php?et=kbglnx&url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&lnkname=handy&$1\"/><rule from=\"^http://(?:www\\.)?handy\\.de/.*\" to=\"https://www.etracker.de/lnkcnt.php?et=kbglnx&url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&lnkname=handy\"/><rule from=\"^http://img\\.handy\\.de/\" to=\"https://i.arvm.de/\"/></ruleset>", "<ruleset name=\"Hanford.gov\" default_off=\"connection dropped\" f=\"Hanford_Site.xml\"><securecookie host=\"^(?:www\\.)?hanford\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hannover Messe.de (partial)\" f=\"Hannover_Messe.de.xml\"><exclusion pattern=\"^http://www\\.hannovermesse\\.de/(?!en/applikation/secure/|meinemesse/login|myfair-root/login)\"/><rule from=\"^http://hannovermesse\\.de/\" to=\"https://www.hannovermesse.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hants.gov.uk (partial)\" f=\"Hants.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haobtc.com\" f=\"Haobtc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HappyHardcore.com\" f=\"HappyHardcore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HappyKnowledge.com\" f=\"HappyKnowledge.com.xml\"><securecookie host=\"^(?:www)\\.happyknowledge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?happyknowledge\\.com/\" to=\"https://www.happyknowledge.com/\"/></ruleset>", "<ruleset name=\"Happy Herbivore (partial)\" f=\"Happy_Herbivore.xml\"><rule from=\"^http://css\\.happyherbivore\\.com/\" to=\"https://d2vtfeon2ovn8e.cloudfront.net/\"/><rule from=\"^http://media\\.happyherbivore\\.com/\" to=\"https://d1go12qtky6pt0.cloudfront.net/\"/><rule from=\"^http://photos\\.happyherbivore\\.com/\" to=\"https://dmi4pvc5gbhhd.cloudfront.net/\"/><rule from=\"^http://store\\.happyherbivore\\.com/themes/\" to=\"https://www.storenvy.com/themes/\"/></ruleset>", "<ruleset name=\"happyassassin.net\" f=\"Happyassassin.net.xml\"><securecookie host=\"^(?:mail\\.|www\\.)?happyassassin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harakahdaily (partial)\" default_off=\"failed ruleset test\" f=\"Harakahdaily.xml\"><exclusion pattern=\"^http://arkib\\.harakahdaily\\.net/(?!resource/)\"/><securecookie host=\"^(?:en|m)\\.harakahdaily\\.net$\" name=\".+\"/><securecookie host=\"^\\.harakah\\.net\\.my$\" name=\".+\"/><rule from=\"^http://((?:arkib|bm|cdn-ads|en|m|www)\\.)?harakahdaily\\.net/\" to=\"https://$1harakahdaily.net/\"/><rule from=\"^http://(cdn\\.|www\\.)?harakah\\.net\\.my/\" to=\"https://$1harakah.net.my/\"/></ruleset>", "<ruleset name=\"Hardcore Teen Girls\" default_off=\"mismatch, self-signed\" f=\"Hardcore_Teen_Girls.xml\"><securecookie host=\"^hardcoreteengirls\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hardcoreteengirls\\.com/\" to=\"https://hardcoreteengirls.com/\"/></ruleset>", "<ruleset name=\"HardenedBSD.org (partial)\" f=\"HardenedBSD.org.xml\"><securecookie host=\"^\\.hardenedbsd\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hardwarebug\" default_off=\"self-signed\" f=\"Hardwarebug.xml\"><rule from=\"^http://(?:www\\.)?hardwarebug\\.org/\" to=\"https://hardwarebug.org/\"/></ruleset>", "<ruleset name=\"Hark\" default_off=\"failed ruleset test\" f=\"Hark.xml\"><securecookie host=\"^www\\.hark\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?hark\\.com/\" to=\"https://$1hark.com/\"/><rule from=\"^http://cdn\\d?\\.hark\\.com/\" to=\"https://d1qq3790ig6355.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Harland Clarke\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Harland-Clarke.xml\"><exclusion pattern=\"^http://(?:www\\.)?harlandclarke\\.com/businessshop(?:$|/)\"/><exclusion pattern=\"^http://(?:www\\.)?harlandclarke\\.com/bdocs2(?:$|/)\"/><securecookie host=\"(?:^|\\.)checksconnect\\.com$\" name=\".+\"/><securecookie host=\"^member\\.harland\\.com$\" name=\".+\"/><securecookie host=\"^(?:branchprod|vansso)\\.harland\\.net$\" name=\".+\"/><securecookie host=\"(?:^|\\.)(?:harlandclarke(?:giftcard|websmart)|harlandforms|ordermychecks)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?checksconnect\\.com/\" to=\"https://www.checksconnect.com/\"/><rule from=\"^http://app3\\.checksconnect\\.com/\" to=\"https://app3.checksconnect.com/\"/><rule from=\"^http://member\\.harland\\.com/\" to=\"https://member.harland.com/\"/><rule from=\"^http://(?:www\\.)?harland\\.(?:com|net)/?$\" to=\"https://www.ordermychecks.com/\"/><rule from=\"^http://(branchprod|vansso)\\.harland\\.net/\" to=\"https://$1.harland.net/\"/><rule from=\"^http://(www\\.)?(harlandclarke(giftcard|websmart)?|harlandforms|ordermychecks)\\.com/\" to=\"https://www.$2.com/\"/></ruleset>", "<ruleset name=\"Harman International Industries (partial)\" default_off=\"failed ruleset test\" f=\"Harman-International-Industries.xml\"><exclusion pattern=\"http://www\\.akg\\.\"/><rule from=\"^http://(?:\\w+\\.(?:akg|infinitysystems)\\.com|(?:www\\.)?shop\\.harman\\.com|(?:www\\.)?harmankardon\\.nl)/(plugins|system|tl_files)/\" to=\"https://shop.harman.com/$1/\"/></ruleset>", "<ruleset name=\"Harper Reed.com\" f=\"Harper_Reed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"harrenmedianetwork.com\" f=\"Harrenmedianetwork.com.xml\"><rule from=\"^http://ad\\.harrenmedianetwork\\.com/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"Harris Interactive (partial)\" default_off=\"failed ruleset test\" f=\"Harris-Interactive.xml\"><rule from=\"^http://www1\\.pollg\\.com/\" to=\"https://www1.pollg.com/\"/></ruleset>", "<ruleset name=\"Harris Computer.com (partial)\" f=\"Harris_Computer.com.xml\"><securecookie host=\"^webmail\\.harriscomputer\\.com$\" name=\".+\"/><rule from=\"^http://(bonaventure|mail|webmail)\\.harriscomputer\\.com/\" to=\"https://$1.harriscomputer.com/\"/></ruleset>", "<ruleset name=\"Harrow.io\" f=\"Harrow.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harry S Truman Library and Museum\" f=\"Harry_S_Truman_Library_and_Museum.xml\"><rule from=\"^http://(?:www\\.)?trumanlibrary\\.org/\" to=\"https://www.trumanlibrary.org/\"/></ruleset>", "<ruleset name=\"Hart voor Internetvrijheid.nl\" default_off=\"failed ruleset test\" f=\"Hart_voor_Internetvrijheid.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hartware.de\" f=\"Hartware.de.xml\"><rule from=\"^http://www\\.hartware\\.de/\" to=\"https://www.hartware.de/\"/></ruleset>", "<ruleset name=\"Hartwork.org\" f=\"Hartwork-Project.xml\"><securecookie host=\"^blog\\.hartwork\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?binera\\.de/\" to=\"https://www.hartwork.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harvard.edu (problematic)\" default_off=\"expired, missing certificate chain, self-signed\" f=\"Harvard-University-expired.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harvard.edu (partial)\" f=\"Harvard-University.xml\"><exclusion pattern=\"^http://(?:accessibility|cqh|economics|astronomy\\.fas|hr|huit|static\\.hwpi|(?:projects|static\\.projects|psr)\\.iq|onecampus|(?:computefest|iacs|robobees)\\.seas|shanghaicenter|trademark|(?:(?:programs|www)\\.)?wcfia)\\.harvard\\.edu/+(?!favicon\\.ico|files/|modules/|profiles/|sites/|user(?:$|\\?))\"/><exclusion pattern=\"^http://cbmi\\.catalyst\\.harvard\\.edu/(?!formsJsf/javax\\.faces\\.resource/|formsJsf/resources/)\"/><exclusion pattern=\"^http://www\\.cfa\\.harvard\\.edu/image_archive/\"/><exclusion pattern=\"^http://pearson\\.eps\\.harvard\\.edu/+(?!favicon\\.ico|misc/)\"/><exclusion pattern=\"^http://isites\\.harvard\\.edu/+(?!favicon\\.ico|[fj]s/|icb/calendar/themes/|icb/[\\w-]\\.css)\"/><securecookie host=\"^(?:community\\.alumni|connects\\.catalyst|rc\\.fas|\\w.*\\.rc\\.fas|login\\.icommons|.*\\.law|www\\.pin1|secure\\.post|www\\.seas)\\.harvard\\.edu$\" name=\".+\"/><rule from=\"^http://(berkman|hsph|pin|saas)\\.harvard\\.edu/\" to=\"https://www.$1.harvard.edu/\"/><rule from=\"^http://media\\.campaign\\.harvard\\.edu/\" to=\"https://dlv9ibhjf3gu3.cloudfront.net/\"/><rule from=\"^http://employment\\.harvard\\.edu/[^?]*\" to=\"https://hr.harvard.edu/jobs/\"/><rule from=\"^http://www\\.(rc\\.fas|trademark)\\.harvard\\.edu/\" to=\"https://$1.harvard.edu/\"/><rule from=\"^http://ksgexecprogram\\.harvard\\.edu/+\" to=\"https://exed.hks.harvard.edu/\"/><rule from=\"^http://(?:www\\.cyber|eon)\\.law\\.harvard\\.edu/\" to=\"https://cyber.law.harvard.edu/\"/><rule from=\"^http://www\\.pin\\.harvard\\.edu/(?:$|\\?.*)\" to=\"https://www.pin.harvard.edu/home.shtml\"/><rule from=\"^http://media\\.www\\.harvard\\.edu/\" to=\"https://d2i28rwvea3z9u.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harvard Pilgrim.org (partial)\" f=\"Harvard_Pilgrim.org.xml\"><rule from=\"^http://(?:www\\.)?harvardpilgrim\\.org/\" to=\"https://www.harvardpilgrim.org/\"/></ruleset>", "<ruleset name=\"HasGeek (partial)\" f=\"HasGeek.xml\"><rule from=\"^http://jobs\\.hasgeek\\.com/(new(?:/?$|\\?)|static/)\" to=\"https://jobs.hasgeek.com/$1\"/></ruleset>", "<ruleset name=\"HasOffers (partial)\" f=\"HasOffers.xml\"><securecookie host=\"^signup\\.hasoffers\\.com$\" name=\".+\"/><rule from=\"^http://media\\.go2app\\.org/\" to=\"https://media.go2app.org/\"/><rule from=\"^http://signup\\.hasoffers\\.com/\" to=\"https://signup.hasoffers.com/\"/></ruleset>", "<ruleset name=\"Haschek.at (partial)\" f=\"Haschek.at.xml\"><rule from=\"^http://blog\\.haschek\\.at/\" to=\"https://blog.haschek.at/\"/></ruleset>", "<ruleset name=\"HashTalk.org\" default_off=\"connection refused\" f=\"HashTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashbang.ca\" f=\"Hashbang.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashcat.net\" f=\"Hashcat.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HashiCorp.com\" f=\"HashiCorp.com.xml\"><securecookie host=\"^\\.hashicorp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashnest.com\" f=\"Hashnest.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haskell.org (partial)\" f=\"Haskell.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haskell on Heroku.com\" f=\"Haskell_on_Heroku.com.xml\"><rule from=\"^http://(?:www\\.)?haskellonheroku\\.com/\" to=\"https://haskellonheroku.com/\"/></ruleset>", "<ruleset name=\"Haskoin.com\" f=\"Haskoin.com.xml\"><rule from=\"^http://(?:www\\.)?haskoin\\.com/+([^?]+)\" to=\"https://github.com/$1/haskoin\"/><rule from=\"^http://(?:www\\.)?haskoin\\.com/+\" to=\"https://github.com/haskoin\"/></ruleset>", "<ruleset name=\"Hass.de\" f=\"Hass.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hastexo.com\" f=\"Hastexo.com.xml\"><securecookie host=\"^(?:www)?\\.hastexo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?hastexo\\.com/\" to=\"https://www.hastexo.com/\"/></ruleset>", "<ruleset name=\"Hastings.gov.uk (partial)\" f=\"Hastings.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hastrk1.com\" f=\"Hastrk1.com.xml\"><securecookie host=\"hastrk1\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hastrk3.com\" f=\"Hastrk3.com.xml\"><securecookie host=\"^hastrk3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hatatorium\" default_off=\"failed ruleset test\" f=\"Hatatorium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hatena (partial)\" f=\"Hatena.xml\"><rule from=\"^http://(www\\.)?hatena\\.ne\\.jp/(css/|images/|login($|\\?|/)|statics/)\" to=\"https://www.hatena.ne.jp/$2\"/><rule from=\"^http://(b|d)\\.st-hatena\\.com/images/\" to=\"https://$1.hatena.ne.jp/images/\"/><rule from=\"^http://(cdn\\.)?www\\.st-hatena\\.com/\" to=\"https://www.hatena.ne.jp/\"/></ruleset>", "<ruleset name=\"Hauke-m.de\" f=\"Hauke-m.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HauteLook.com\" f=\"HauteLook.com.xml\"><securecookie host=\"^\\.hautelook\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HauteLook CDN.com\" f=\"HauteLook_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HaveProof.com\" f=\"HaveProof.com.xml\"><rule from=\"^http://(?:www\\.)?haveproof\\.com/\" to=\"https://haveproof.com/\"/></ruleset>", "<ruleset name=\"Havelock Investments.com\" f=\"Havelock_Investments.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?havelockinvestments\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Havering.gov.uk (partial)\" f=\"Havering.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hawaii.gov (partial)\" default_off=\"failed ruleset test\" f=\"Hawaii.gov.xml\"><exclusion pattern=\"^http://portal\\.ehawaii\\.gov/landing/(?:\\?.*)?$\"/><securecookie host=\"^www\\.ehawaii\\.gov$\" name=\".+\"/><securecookie host=\"^stayconnected\\.hawaii\\.gov$\" name=\".+\"/><rule from=\"^http://(dlnr|hic|hidot|stayconnected)\\.hawaii\\.gov/\" to=\"https://$1.hawaii.gov/\"/><rule from=\"^http://(portal\\.|www\\.)?ehawaii\\.gov/\" to=\"https://$1ehawaii.gov/\"/></ruleset>", "<ruleset name=\"Hawaiian Airlines\" platform=\"mixedcontent\" f=\"HawaiianAirlines.xml\"><rule from=\"^http://hawaiianair\\.com/\" to=\"https://www.hawaiianair.com/\"/><rule from=\"^http://(emarket|ifs|www)\\.hawaiianair\\.com/\" to=\"https://$1.hawaiianair.com/\"/></ruleset>", "<ruleset name=\"Hawk Host.com (partial)\" f=\"Hawk_Host.com.xml\"><securecookie host=\"^(?:my|support|vps)?\\.hawkhost\\.com$\" name=\".+\"/><rule from=\"^http://((?:my|support|vps|www)\\.)?hawkhost\\.com/\" to=\"https://$1hawkhost.com/\"/></ruleset>", "<ruleset name=\"Haymarket (problematic)\" default_off=\"mismatched\" f=\"Haymarket-problematic.xml\"><securecookie host=\"^\\.careers\\.haymarket\\.com$\" name=\".+\"/><rule from=\"^http://careers\\.haymarket\\.com/\" to=\"https://careers.haymarket.com/\"/></ruleset>", "<ruleset name=\"Haymarket (partial)\" f=\"Haymarket.xml\"><securecookie host=\"^\\.haymarket\\.com$\" name=\"^utag_main$\"/><securecookie host=\"^(?:apac|\\.?shop)\\.haymarket\\.com$\" name=\".*\"/><securecookie host=\"^\\.?subscribe\\.haymarketmedia\\.com$\" name=\".+\"/><rule from=\"^http://(apac|shop)\\.haymarket\\.com/\" to=\"https://$1.haymarket.com/\"/><rule from=\"^http://subscribe\\.haymarketmedia\\.com/\" to=\"https://subscribe.haymarketmedia.com/\"/></ruleset>", "<ruleset name=\"Haystack Software\" f=\"HaystackSoftware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hayward-Pool.com\" f=\"Hayward-Pool.com.xml\"><rule from=\"^http://(?:www\\.)?hayward-pool\\.com/\" to=\"https://www.hayward-pool.com/\"/></ruleset>", "<ruleset name=\"HbbTV\" f=\"HbbTV.xml\"><securecookie host=\"^(?:www\\.)?hbbtv\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hbz-nrw.de (partial)\" f=\"Hbz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Head-Fi.org (partial)\" f=\"Head-Fi.org.xml\"><rule from=\"^http://cdn\\.head-fi\\.org/\" to=\"https://d1jesv1uvhg9i4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Headphone.com\" f=\"Headphone.com.xml\"><securecookie host=\"^www\\.headphone\\.com$\" name=\".+\"/><rule from=\"^http://(?:media\\.)?headphone\\.com/\" to=\"https://www.headphone.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"headstrong.de\" default_off=\"failed ruleset test\" f=\"Headstrong.de.xml\"><securecookie host=\"^www\\.headstrong\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?headstrong\\.de/\" to=\"https://www.headstrong.de/\"/></ruleset>", "<ruleset name=\"HealthCheckUSA\" default_off=\"failed ruleset test\" f=\"HealthCheckUSA.xml\"><securecookie host=\"^(?:\\.|secure\\.|www\\.)?healthcheckusa\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)healthcheckusa\\.com/\" to=\"https://www.healthcheckusa.com/\"/><rule from=\"^http://secure\\.healthcheckusa\\.com/\" to=\"https://secure.healthcheckusa.com/\"/></ruleset>", "<ruleset name=\"HealthTap (partial)\" f=\"HealthTap.xml\"><securecookie host=\"^www\\.healthtap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HealthUnlocked.com\" f=\"HealthUnlocked.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_(?:_utm|gat?$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Health On Net.org\" f=\"Health_On_Net.org.xml\"><rule from=\"^http://healthonnet\\.org/\" to=\"https://www.healthonnet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthcare.gov\" f=\"Healthcare.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthcare Staff Benefits\" default_off=\"failed ruleset test\" f=\"Healthcare_Staff_Benefits.xml\"><securecookie host=\"^(?:w*\\.)?healthcarestaffbenefits\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthdirect Australia\" f=\"HealthdirectAustralia.xml\"><rule from=\"^http://(?:www\\.)?healthdirect\\.gov\\.au/\" to=\"https://www.healthdirect.gov.au/\"/></ruleset>", "<ruleset name=\"Healthfuze.com\" default_off=\"expired\" f=\"Healthfuze.com.xml\"><securecookie host=\"^(?:.*\\.)?healthfuze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healths.Biz\" f=\"Healths.Biz.xml\"><rule from=\"^http://(www\\.)?healths\\.biz/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1healths.biz/\"/></ruleset>", "<ruleset name=\"Healthy Eater.com\" f=\"Healthy_Eater.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.healthyeater\\.com/\" to=\"https://healthyeater.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthy for Kids (partial)\" f=\"Healthy_for_Kids.xml\"><rule from=\"^http://healthyforkids\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://healthyforkids.wpengine.com/\"/></ruleset>", "<ruleset name=\"Heanet.ie (false MCB)\" platform=\"mixedcontent\" f=\"Heanet.ie-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://heanet\\.ie/\" to=\"https://www.heanet.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heanet.ie (partial)\" f=\"Heanet.ie.xml\"><exclusion pattern=\"^http://ds\\.heanet\\.ie/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heap Analytics.com\" f=\"Heap_Analytics.com.xml\"><securecookie host=\"^heapanalytics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hearst Corporation (self-signed)\" default_off=\"expired, mismatch, self-signed\" f=\"Hearst-Corporation-self-signed.xml\"><securecookie host=\"^docuwiki\\.hearstdigitalnews\\.com$\" name=\".*\"/><rule from=\"^http://docuwiki\\.hearstdigitalnews\\.com/\" to=\"https://docuwiki.hearstdigitalnews.com/\"/><rule from=\"^http://(?:www\\.)?hdnux\\.com/\" to=\"https://hdnux.com/\"/><rule from=\"^http://(?:www\\.)?thedailygreen\\.com/\" to=\"https://www.thedailygreen.com/\"/></ruleset>", "<ruleset name=\"Hearst Corporation (partial)\" platform=\"mixedcontent\" f=\"Hearst-Corporation.xml\"><securecookie host=\"^(?:.*\\.)?myhearstnewspaper\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hearst Magazines\" f=\"Hearst_Magazines.xml\"><securecookie host=\"^\\.circules\\.com$\" name=\".+\"/><securecookie host=\"^(?:\\.subscribe)?\\.hearstmags\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heart 2 Heart\" default_off=\"expired, mismatch, self-signed\" f=\"Heart-2-Heart.xml\"><rule from=\"^http://(?:www\\.)?heart-2-heart\\.ca/\" to=\"https://heart-2-heart.ca/\"/></ruleset>", "<ruleset name=\"Heart.org (partial)\" default_off=\"failed ruleset test\" f=\"Heart.org.xml\"><securecookie host=\"^donate\\.heart\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?heart\\.org/\" to=\"https://www.heart.org/\"/><rule from=\"^http://(extranet|donate|static|volunteer)\\.heart\\.org/\" to=\"https://$1.heart.org/\"/><rule from=\"^http://my\\.heart\\.org/\" to=\"https://my.americanheart.org/\"/></ruleset>", "<ruleset name=\"Heartbleed.com\" default_off=\"mismatched\" f=\"Heartbleed.com.xml\"><rule from=\"^http://(?:www\\.)?heartbleed\\.com/\" to=\"https://heartbleed.com/\"/></ruleset>", "<ruleset name=\"Heatball.de\" default_off=\"shows another domain\" f=\"Heatball.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heathkit\" f=\"Heathkit.com.xml\"><rule from=\"^http://(?:www\\.)?heathkit\\.com/\" to=\"https://www.heathkit.com/\"/></ruleset>", "<ruleset name=\"Heatmap\" f=\"Heatmap.xml\"><securecookie host=\"^heatmap\\.(me|it)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heavy.com (partial)\" f=\"Heavy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"heckrath.net\" f=\"Heckrath.net.xml\"><securecookie host=\"^www\\.heckrath\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?heckrath\\.net/\" to=\"https://www.heckrath.net/\"/><rule from=\"^http://login\\.heckrath\\.net/\" to=\"https://www.heckrath.net/login/\"/></ruleset>", "<ruleset name=\"Hegerys.com (partial)\" f=\"Hegerys.com.xml\"><securecookie host=\"^cp\\.hegerys\\.com$\" name=\".+\"/><rule from=\"^http://(cp|store)\\.hegerys\\.com/\" to=\"https://$1.hegerys.com/\"/></ruleset>", "<ruleset name=\"Heidelberg.de\" f=\"Heidelberg.de.xml\"><rule from=\"^http://heidelberg\\.de/\" to=\"https://www.heidelberg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heifer.org\" f=\"Heifer.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?heifer\\.org/+(?!favicon\\.ico|gift-catalog/donor-info\\.html|resources/)\"/><securecookie host=\"^\\.heifer\\.org$\" name=\"^__(?:qca|utm\\w+)$\"/><securecookie host=\"^(?:honorcards|shop)\\.heifer\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heimdal Security.com\" f=\"Heimdal_Security.com.xml\"><rule from=\"^http://((?:goz|support|www)\\.)?heimdalsecurity\\.com/\" to=\"https://$1heimdalsecurity.com/\"/></ruleset>", "<ruleset name=\"Heinlein-Support.de\" f=\"Heinlein-Support.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heino-cykler\" f=\"Heino-cykler.dk.xml\"><rule from=\"^http://(www\\.)?heino-cykler\\.dk/\" to=\"https://www.heino-cykler.dk/\"/></ruleset>", "<ruleset name=\"Heise.de (partial)\" f=\"Heise.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?heise\\.de/(?![ai]vw-bin/|favicon\\.ico|foto/icons/|icons/|ix/images/|imgs/|js/|security/icons/|software/screenshots/|stil/|security/dienste/portscan/test/go\\.shtml|support/lib/)\"/><exclusion pattern=\"^http://www\\.heise\\.de/js/foto/galerie/angularjs/partials/ngDialog.inc\"/><exclusion pattern=\"^http://www\\.heise\\.de/js/foto/galerie/angularjs/partials/photo/diashow.html\"/><exclusion pattern=\"^http://www\\.heise\\.de/js/ho/jwplayer-6.10/skin/\"/><rule from=\"^http://m\\.heise\\.de/(js/|icons/|[ai]vw-bin/|security/icons/|stil/|fonts/)\" to=\"https://m.heise.de/$1\"/><rule from=\"^http://heise\\.de/\" to=\"https://www.heise.de/\"/><rule from=\"^http://www\\.shop\\.heise\\.de/\" to=\"https://shop.heise.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heise shop.de (partial)\" f=\"Heise_shop.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hekko.pl (partial)\" f=\"Hekko.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HeliNY.com\" f=\"HeliNY.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hell Hole Cheese Factory.org\" default_off=\"failed ruleset test\" f=\"Hell_Hole_Cheese_Factory.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heller Information Services (partial)\" f=\"Heller-Information-Services.xml\"><securecookie host=\"^(?:.*\\.)?his\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Bar.com (partial)\" f=\"Hello-Bar.xml\"><securecookie host=\"^www\\.hellobar\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Neighbour\" default_off=\"failed ruleset test\" f=\"Hello-Neighbour.xml\"><securecookie host=\"^www\\.helloneighbour\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?helloneighbour\\.com/\" to=\"https://www.helloneighbour.com/\"/></ruleset>", "<ruleset name=\"hello.tokyo\" default_off=\"plaintext reply\" f=\"Hello.tokyo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HelloLife.net\" f=\"HelloLife.net.xml\"><securecookie host=\"^www\\.hellolife\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HelloSign.com (partial)\" f=\"HelloSign.com.xml\"><securecookie host=\"^\\.www\\.hellosign\\.com$\" name=\"^hf_ref$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Bond.com\" f=\"Hello_Bond.com.xml\"><securecookie host=\"^(?:dev\\.|staging\\.)?hellobond\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Web App.com (partial)\" f=\"Hello_Web_App.com.xml\"><securecookie host=\"^\\.?hellowebapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helmet.fi\" f=\"Helmet.fi.xml\"><securecookie host=\"^(?:haku|luettelo|www)?\\.helmet\\.fi$\" name=\".+\"/><rule from=\"^http://(www|luettelo|haku)\\.helmet\\.fi/\" to=\"https://$1.helmet.fi/\"/></ruleset>", "<ruleset name=\"Helmholtz-Berlin.de\" f=\"Helmholtz-Zentrum-Berlin-for-Materials-and-Energy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helmich IT-Security\" f=\"Helmich_IT-Security.xml\"><securecookie host=\"^www\\.helmich\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helpOcean\" default_off=\"failed ruleset test\" f=\"HelpOcean.xml\"><securecookie host=\"^\\.helpocean\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?helpocean\\.com/\" to=\"https://$1helpocean.com/\"/></ruleset>", "<ruleset name=\"HelpOnClick\" f=\"HelpOnClick.xml\"><securecookie host=\"^(?:.*\\.)?helponclick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HelpSpot\" f=\"HelpSpot.xml\"><securecookie host=\"^(?:www)?\\.helpspot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Help Scout.net (partial)\" f=\"Help_Scout.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helpdocsonline.com\" f=\"Helpdocsonline.com.xml\"><securecookie host=\"^\\.helpdocsonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helpjuice.com\" f=\"Helpjuice.xml\"><rule from=\"^http://www\\.billing\\.helpjuice\\.com/\" to=\"https://billing.helpjuice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helpshift.com\" f=\"Helpshift.com.xml\"><securecookie host=\".+\\.helpshift\\.com\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?helpshift\\.com/\" to=\"https://$1helpshift.com/\"/></ruleset>", "<ruleset name=\"Helsingebilpleje.dk\" f=\"Helsingebilpleje.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helsingin Sanomat (partial)\" f=\"Helsingin-Sanomat.xml\"><rule from=\"^http://(?:www\\.)?hs\\.fi/(webkuva|webstatic)/\" to=\"https://www.hs.fi/$1/\"/></ruleset>", "<ruleset name=\"Helsingor.dk\" f=\"Helsingor.dk.xml\"><securecookie host=\"\\.?(www)?\\.helsingor\\.dk\" name=\".*\"/><rule from=\"^http://(www\\.)?helsingor\\.dk/\" to=\"https://www.helsingor.dk/\"/></ruleset>", "<ruleset name=\"Helsinki (partial)\" default_off=\"failed ruleset test\" f=\"Helsinki.xml\"><rule from=\"^http://asiointi\\.hel\\.fi/\" to=\"https://asiointi.hel.fi/\"/></ruleset>", "<ruleset name=\"Hemk.es (partial)\" default_off=\"untrusted root\" f=\"Hemk.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heml.is\" f=\"Heml.is.xml\"><securecookie host=\"^(?:www\\.)?heml\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hemmingway Marketing (partial)\" f=\"Hemmingway-Marketing.xml\"><rule from=\"^http://(?:www\\.)?voucherexpress\\.co\\.uk/([^/]+)/\" to=\"https://www.voucherexpress.co.uk/$1/\"/></ruleset>", "<ruleset name=\"Hendrik Luup\" f=\"Hendrik.luup.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hepe.com\" f=\"Hepe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hepo.fi\" f=\"Hepo.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herald Media (partial)\" f=\"Herald_Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herald Times Reporter\" default_off=\"failed ruleset test\" f=\"Herald_Times_Reporter.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?htrnews\\.com/\" to=\"https://www.htrnews.com/\"/><rule from=\"^http://deals\\.htrnews\\.com/(?:$|\\?.*)\" to=\"https://manitow.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://deals\\.htrnews\\.com/\" to=\"https://manitow.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"herbal-nutrition2.net\" f=\"Herbal-nutrition2.net.xml\"><securecookie host=\"^\\.herbal-nutrition2\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"herdProtect.com\" f=\"HerdProtect.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herdict\" f=\"Herdict.xml\"><securecookie host=\"^www\\.(?:herdic|nardik)t\\.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(herdic|nardik)t\\.org/\" to=\"https://www.$1t.org/\"/><rule from=\"^http://dev\\.(herdic|nardik)t\\.org/\" to=\"https://dev.$1t.org/\"/></ruleset>", "<ruleset name=\"Here.com (partial)\" f=\"Here.com.xml\"><securecookie host=\"^(?:.*\\.)?here\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herefordshire.gov.uk (partial)\" f=\"Herefordshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hereplus.me\" f=\"Hereplus.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hereplus\\.me/\" to=\"https://www.hereplus.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heritage.org (partial)\" f=\"Heritage.org.xml\"><rule from=\"^http://s(ecure|hop)\\.heritage\\.org/\" to=\"https://s$1.heritage.org/\"/></ruleset>", "<ruleset name=\"HeroX.com\" f=\"HeroX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hero Up.com\" f=\"Hero_Up.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.heroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heroku\" f=\"Heroku.xml\"><exclusion pattern=\"^http://mc\\.heroku\\.com/\"/><securecookie host=\"^[\\w\\-]+\\.herokuapp\\.com$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+\\.)?heroku(app)?\\.com/\" to=\"https://$1heroku$2.com/\"/></ruleset>", "<ruleset name=\"Hertfordshire Constabulary\" f=\"HertfordshireConstabulary.xml\"><rule from=\"^http://(www\\.)?herts\\.police\\.uk/\" to=\"https://www.herts.police.uk/\"/></ruleset>", "<ruleset name=\"hertsdirect.org (false MCB)\" platform=\"mixedcontent\" f=\"Hertsdirect.org-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hertsdirect.org (partial)\" f=\"Hertsdirect.org.xml\"><exclusion pattern=\"^http://childcarejobs\\.hertsdirect\\.org/+(?!(?:[Ll]ogin|Resources)\\.aspx|css/|images/|younginherts/registration(?:$|[?/]))\"/><exclusion pattern=\"^http://cmis\\.hertsdirect\\.org/$\"/><exclusion pattern=\"^http://m\\.hertsdirect\\.org/+(?!css/|images/)\"/><exclusion pattern=\"^http://(?:www\\.)?hertsdirect\\.org/+(?!css/|droppedkerbs(?:$|[?/])|eservices/(?:analytics/|images/|scripts/.+\\.css|styles/)|favicon\\.ico|images/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!(?:childcarejobs|m|www)\\.)\\w\" name=\".\"/><rule from=\"^http://hertsdirect\\.org/\" to=\"https://www.hertsdirect.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Australia\" f=\"Hertz-Australia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Austria\" f=\"Hertz-Austria.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Bahrain\" f=\"Hertz-Bahrain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Belgium\" f=\"Hertz-Belgium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Brazil\" default_off=\"redirects to http\" f=\"Hertz-Brazil.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Canda\" f=\"Hertz-Canada.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz China\" f=\"Hertz-China.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Croatia\" f=\"Hertz-Croatia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Finland\" f=\"Hertz-Finland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz France\" f=\"Hertz-France.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Germany\" f=\"Hertz-Germany.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Hong Kong\" f=\"Hertz-Hong-Kong.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Hungary\" f=\"Hertz-Hungary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Iceland\" f=\"Hertz-Iceland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Indonesia\" f=\"Hertz-Indonesia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Ireland\" f=\"Hertz-Ireland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Italy\" f=\"Hertz-Italy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Jordan\" f=\"Hertz-Jordan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Kuwait\" f=\"Hertz-Kuwait.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Netherlands\" f=\"Hertz-Netherlands.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz New Zealand\" f=\"Hertz-New-Zealand.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Norway\" f=\"Hertz-Norway.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Poland\" f=\"Hertz-Poland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Portugal\" f=\"Hertz-Portugal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Qatar\" f=\"Hertz-Qatar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Saudi Arabia\" f=\"Hertz-Saudi-Arabia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Slovenia\" f=\"Hertz-Slovenia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz South Africa\" f=\"Hertz-South-Africa.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz South Korea\" f=\"Hertz-South-Korea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Spain\" f=\"Hertz-Spain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Sweden\" f=\"Hertz-Sweden.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Switzerland\" f=\"Hertz-Switzerland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Taiwan\" f=\"Hertz-Taiwan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Thailand\" f=\"Hertz-Thailand.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz UAE\" f=\"Hertz-UAE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz UK\" f=\"Hertz-UK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz US\" f=\"Hertz-US.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hesapla Bakalim.com\" f=\"Hesapla_Bakalim.com.xml\"><securecookie host=\"^\\.?hesaplabakalim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hesecure.com\" f=\"Hesecure.com.xml\"><securecookie host=\".+\\.c13\\.hesecure\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.c13\\.hesecure\\.com/\" to=\"https://$1.c13.hesecure.com/\"/></ruleset>", "<ruleset name=\"Heteml.jp\" f=\"Heteml.jp.xml\"><securecookie host=\"^secure\\.heteml\\.jp$\" name=\".+\"/><rule from=\"^http://(?:secure\\.)?heteml\\.jp/\" to=\"https://secure.heteml.jp/\"/><rule from=\"^http://www\\.heteml\\.jp/[^?]*\" to=\"https://secure.heteml.jp/\"/></ruleset>", "<ruleset name=\"Hetzner Online\" f=\"Hetzner-Online.xml\"><exclusion pattern=\"^http://wiki\\.hetzner\\.de\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(\\w+\\.)?(hetzner|your-server)\\.de/\" to=\"https://$1$2.de/\"/></ruleset>", "<ruleset name=\"Hewlett-Packard Company (mismatches)\" default_off=\"mismatch\" f=\"Hewlett-Packard-mismatches.xml\"><rule from=\"^http://met1\\.hp\\.com/\" to=\"https://met1.hp.com/\"/></ruleset>", "<ruleset name=\"HP (buggy?)\" default_off=\"testing\" f=\"Hewlett-Packard.xml\"><exclusion pattern=\"^http://(?:h(?:22166|22207|30499|30507|50146|71000)\\.austin|(?:www\\.)?hpl|m|reimagine|welcome|h1(?:0060|7007|8004)\\.www1|h30(?:261|434)\\.www3)\\.hp\\.com\"/><exclusion pattern=\"^http://shopping1\\.hp\\.com/(?!is-bin/)\"/><exclusion pattern=\"^http://store\\.hp\\.com/webapp/wcs/stores/servlet(?:$|[?/])\"/><exclusion pattern=\"^http://www\\.hp\\.com/(?!img/)\"/><exclusion pattern=\"^http://h18000\\.www1\\.hp\\.com/products/servers/linux/documentation\\.html\"/><exclusion pattern=\"^http://welcome\\.hp-ww\\.com/+(?!(?:img/+)?favicon\\.ico)\"/><securecookie host=\"^protect724\\.arcsight\\.com$\" name=\".+\"/><securecookie host=\"^\\.hp\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^(?:esca(?:2\\.americas|5\\.asiapac|3\\.europe)|community\\.dev|(?:uat\\.)?protect724|(?:www\\.)?register|shopping|h2(?:0141|2166)\\.www2|h30(?:434|499|507)\\.www3|h41183\\.www4|h71016\\.www7|ssl\\.www8)\\.hp\\.com$\" name=\".+\"/><rule from=\"^http://protect724\\.arcsight\\.com/\" to=\"https://protect724.arcsight.com/\"/><rule from=\"^http://(www(?:-mo)?\\.)?eds\\.com/\" to=\"https://$1eds.com/\"/><rule from=\"^http://([^/:@]+)\\.(americas|asiapac|austin|europe|www[1-7])\\.hp\\.com/\" to=\"https://$1.austin.hp.com/\"/><rule from=\"^http://(?:ssl\\.)?www8\\.hp\\.com/\" to=\"https://ssl.www8.hp.com/\"/><rule from=\"^http://([^/:@.]+|community\\.dev|v4nzproa\\.houston|(?:apps|uat|apps\\.uat)\\.protect724)\\.hp\\.com/\" to=\"https://$1.hp.com/\"/><rule from=\"^http://(?:secur|welcom)e\\.hp-ww\\.com/\" to=\"https://secure.hp-ww.com/\"/><rule from=\"^http://ssl-product-images\\.www8-hp\\.com/\" to=\"https://ssl-product-images.www8-hp.com/\"/></ruleset>", "<ruleset name=\"Hex-Rays.com\" f=\"Hex-Rays.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hexagon\" default_off=\"failed ruleset test\" f=\"Hexagon.xml\"><rule from=\"^http://(?:www\\.)?hexagon\\.cc/\" to=\"https://hexagon.cc/\"/></ruleset>", "<ruleset name=\"Hexonet\" f=\"Hexonet.xml\"><securecookie host=\".*\\.hexonet\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hexonet\\.net/\" to=\"https://www.hexonet.net/\"/><rule from=\"^http://(cp-ote|wi)\\.hexonet\\.net/\" to=\"https://$1.hexonet.net/\"/><rule from=\"^http://demo\\.hexonet\\.net/(?:\\?.*)?$\" to=\"https://cp-ote.hexonet.net/cp2/index.php/domain/listing/?LOGIN_USER=test.user&LOGIN_PASSWORD=test.passw0rd\"/></ruleset>", "<ruleset name=\"Hexplo.it\" f=\"Hexplo.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hexspoor WMS.nl\" f=\"Hexspoor_WMS.nl.xml\"><securecookie host=\"^\\.hexspoorwms\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hi-eg\" default_off=\"self-signed\" f=\"Hi-eg.xml\"><securecookie host=\"^hi-eg\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hi-eg\\.com/\" to=\"https://hi-eg.com/\"/></ruleset>", "<ruleset name=\"Hi\" f=\"Hi.nl.xml\"><rule from=\"^http://(?:www\\.)?hi\\.nl/\" to=\"https://www.hi.nl/\"/><rule from=\"^http://shop\\.(?:www\\.)?hi\\.nl/\" to=\"https://shop.www.hi.nl/\"/></ruleset>", "<ruleset name=\"HiConversion.com (partial)\" f=\"HiConversion.com.xml\"><securecookie host=\"^console\\.hiconversion\\.com$\" name=\".+\"/><rule from=\"^http://hiconversion\\.com/\" to=\"https://www.hiconversion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HiFX\" f=\"HiFX.xml\"><securecookie host=\"^(?:postoffice|www)\\.hifx(?:online)?\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hifx(online)?\\.co\\.uk/\" to=\"https://www.hifx$1.co.uk/\"/><rule from=\"^http://postoffice\\.hifxonline\\.co\\.uk/\" to=\"https://postoffice.hifxonline.co.uk/\"/></ruleset>", "<ruleset name=\"HiPEAC.net (partial)\" f=\"HiPEAC.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HiPoint Inc.com\" f=\"HiPoint_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hiawatha-webserver.org\" default_off=\"failed ruleset test\" f=\"Hiawatha-webserver.org.xml\"><rule from=\"^http://(www\\.)?hiawatha-webserver\\.org/\" to=\"https://$1hiawatah-webserver.org/\"/></ruleset>", "<ruleset name=\"hide.me\" f=\"Hide.me.xml\"><securecookie host=\"^(?:member\\.)?hide\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HideMe.ru\" f=\"HideMe.ru.xml\"><securecookie host=\"^hidemu\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hideme\\.ru/\" to=\"https://hideme.ru/\"/></ruleset>", "<ruleset name=\"Hideki Saito.com (partial)\" f=\"Hideki_Saito.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hideman.net\" f=\"Hideman.net.xml\"><securecookie host=\"^\\.hideman\\.net$\" name=\".+\"/><rule from=\"^http://((?:cdn|static|www)\\.)?hideman\\.net/\" to=\"https://$1hideman.net/\"/></ruleset>", "<ruleset name=\"hideme.today\" default_off=\"expired\" f=\"Hideme.today.xml\"><rule from=\"^http://www\\.hideme\\.today/\" to=\"https://hideme.today/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hide My Ass (partial)\" f=\"Hidemyass.xml\"><securecookie host=\"^(?:.*\\.)?hidemyass\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hidemyass\\.com/\" to=\"https://hidemyass.com/\"/><rule from=\"^http://(\\d+)\\.hidemyass\\.com/\" to=\"https://$1.hidemyass.com/\"/><rule from=\"^http://affiliate\\.hidemyass\\.com/\" to=\"https://affiliate.hidemyass.com/\"/><rule from=\"^http://static\\.hidemyass\\.com/\" to=\"https://hidemyass.cachefly.net/\"/></ruleset>", "<ruleset name=\"Hidepay.net\" f=\"Hidepay.net.xml\"><securecookie host=\"^\\.hidepay\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"High Gear Media (partial)\" f=\"High-Gear-Media.xml\"><rule from=\"^http://(static\\.hgmsites\\.net|images\\.thecarconnection\\.com)/\" to=\"https://s3.amazonaws.com/$1/\"/></ruleset>", "<ruleset name=\"HighOn.Coffee\" f=\"HighOn.Coffee.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HighQ Solutions\" default_off=\"self-signed\" f=\"HighQ_Solutions.xml\"><rule from=\"^http://(?:www\\.)?highqsolutions\\.com/\" to=\"https://highqsolutions.com/\"/><rule from=\"^http://support\\.highqsolutions\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"HighWire (partial)\" f=\"HighWire.xml\"><securecookie host=\"^shibboleth\\.highwire\\.org$\" name=\".+\"/><rule from=\"^http://shibboleth\\.highwire\\.org/\" to=\"https://shibboleth.highwire.org/\"/></ruleset>", "<ruleset name=\"High Fidelity.io\" f=\"High_Fidelity.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"High Seer.com\" f=\"High_Seer.com.xml\"><securecookie host=\"^\\.www\\.highseer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highcharts.com (MCB)\" platform=\"mixedcontent\" f=\"Highcharts.com-mixedcontent.xml\"><securecookie host=\"^\\.highcharts\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highcharts.com (partial)\" f=\"Highcharts.com.xml\"><exclusion pattern=\"^http://code\\.highcharts\\.com/+(?![\\d.]+/modules/)\"/><securecookie host=\"^\\.highcharts\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^(?:cloud|\\.shop)\\.highcharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Higher Education Academy (partial)\" f=\"Higher_Education_Academy.xml\"><securecookie host=\"^.+\\.heacademy\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(anywhere|autodiscover|groupspace|heagateway|heamysites|integra|my|o[mw]a|portaltest|servicedesk|vpn|webmail)\\.heacademy\\.ac\\.uk/\" to=\"https://$1.heacademy.ac.uk/\"/></ruleset>", "<ruleset name=\"Hightail.com (partial)\" f=\"Hightail.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://hightail\\.com/\" to=\"https://www.hightail.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"highwebmedia.com\" f=\"Highwebmedia.com.xml\"><exclusion pattern=\"^http://ssl-ccstatic\\.highwebmedia\\.com/$\"/><securecookie host=\"^\\.highwebmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hillary Clinton.com\" f=\"Hillary_Clinton.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hillingdon.gov.uk (partial)\" f=\"Hillingdon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.young\\.hillingdon\\.gov\\.uk/\" to=\"https://young.hillingdon.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"himediadx.com\" f=\"Himediadx.com.xml\"><rule from=\"^http://ad\\.himediadx\\.com/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"Hinckley-Bosworth.gov.uk (partial)\" f=\"Hinckley-Bosworth.gov.uk.xml\"><securecookie host=\"^(?!\\.hinckley-bosworth\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hinckley and Bosworth online.org.uk\" f=\"Hinckley_and_Bosworth_online.org.uk.xml\"><rule from=\"^http://(?:www\\.)?hinckleyandbosworthonline\\.org\\.uk/+\" to=\"https://www.hinckley-bosworth.gov.uk/\"/></ruleset>", "<ruleset name=\"HipChat.com\" f=\"HipChat.com.xml\"><securecookie host=\"^(?:help\\.|www\\.)?hipchat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hipmunk.com (false MCB)\" platform=\"mixedcontent\" f=\"Hipmunk.com-falsemixed.xml\"><securecookie host=\"^\\.blog\\.hipmunk\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.hipmunk\\.com/\" to=\"https://blog.hipmunk.com/\"/></ruleset>", "<ruleset name=\"Hipmunk.com\" default_off=\"failed ruleset test\" f=\"Hipmunk.com.xml\"><securecookie host=\"^(?:www)?\\.hipmunk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"History.com (mismatches)\" default_off=\"mismatch\" f=\"History.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?history\\.com/\" to=\"https://www.history.com/\"/></ruleset>", "<ruleset name=\"History.com (partial)\" f=\"History.com.xml\"><securecookie host=\"^.*\\.history\\.com$\" name=\".*\"/><rule from=\"^http://s(?:ecure|shop)\\.history\\.com/\" to=\"https://secure.history.com/\"/></ruleset>", "<ruleset name=\"History Today.com (partial)\" f=\"History_Today.xml\"><rule from=\"^http://historytoday\\.com/\" to=\"https://www.historytoday.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HitBTC.com\" f=\"HitBTC.com.xml\"><securecookie host=\"^(?:\\.|forum\\.)?hitbtc\\.com$\" name=\".+\"/><rule from=\"^http://((?:affiliate|auth|blog|demo|forum|www)\\.)?hitbtc\\.com/\" to=\"https://$1hitbtc.com/\"/></ruleset>", "<ruleset name=\"HitLeap.com\" f=\"HitLeap.com.xml\"><securecookie host=\"^\\.hitleap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hitachi Data Systems (partial)\" f=\"Hitachi_Data_Systems.xml\"><securecookie host=\"^(?:blogs|portal|sdc)\\.hds\\.com$\" name=\".+\"/><rule from=\"^http://(blogs|portal|sdc)\\.hds\\.com/\" to=\"https://$1.hds.com/\"/></ruleset>", "<ruleset name=\"Hitbox.com\" default_off=\"failed ruleset test\" f=\"Hitbox.com.xml\"><rule from=\"^http://(?:www\\.)?hitbox\\.com/(?:.*)\" to=\"https://www.omniture.com/\"/><rule from=\"^http://([\\w-])\\.hitbox\\.com/\" to=\"https://$1.hitbox.com/\"/></ruleset>", "<ruleset name=\"hitbox.tv\" default_off=\"broken\" f=\"Hitbox.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hitfarm\" default_off=\"self-signed\" f=\"Hitfarm.xml\"><securecookie host=\"^www\\.hitfarm.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hitfarm\\.com/\" to=\"https://www.hitfarm.com/\"/></ruleset>", "<ruleset name=\"HitsLink.com\" f=\"HitsLink.xml\"><securecookie host=\"^(?:.*\\.)?hitslink\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hits processor.com\" f=\"Hits_processor.com.xml\"><securecookie host=\"^loc1\\.hitsprocessor\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hiveage.com (partial)\" f=\"Hiveage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hivelocity Hosting\" f=\"Hivelocity-Hosting.xml\"><securecookie host=\"^.*\\.hivelocity\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hivos.nl\" f=\"Hivos.nl.xml\"><securecookie host=\"^(?:www\\.)?hivos.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hivos.org\" f=\"Hivos.org.xml\"><rule from=\"^http://m\\.hivos\\.org/\" to=\"https://hivos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hızlı Saat\" f=\"Hizli_Saat.xml\"><securecookie host=\"^(?:.*\\.)?hizlisaat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hizliresim.com\" f=\"Hizliresim.com.xml\"><securecookie host=\"^\\.hizliresim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hizook.com\" default_off=\"mismatch\" f=\"Hizook.xml\"><securecookie host=\"^(?:.*\\.)?hizook\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hizook\\.com/\" to=\"https://www.hizook.com/\"/></ruleset>", "<ruleset name=\"Hjv.dk (partial)\" f=\"Hjv.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hjv.kursuslogin.dk\" f=\"Hjv.kursuslogin.dk.xml\"><rule from=\"^http://hjv\\.kursuslogin\\.dk/\" to=\"https://hjv.kursuslogin.dk/\"/></ruleset>", "<ruleset name=\"hmapps.net\" f=\"Hmapps.net.xml\"><securecookie host=\"^(?:www\\.)?hmapps\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobbyking\" default_off=\"failed ruleset test\" f=\"HobbyKing.xml\"><rule from=\"^http://www\\.hobbyking\\.com/\" to=\"https://www.hobbyking.com/\"/><rule from=\"^http://hobbyking\\.com/\" to=\"https://www.hobbyking.com/\"/></ruleset>", "<ruleset name=\"Hobocomp.com\" f=\"Hobocomp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobsons EMT (partial)\" f=\"Hobsons-EMT.xml\"><securecookie host=\"^\\w.*\\.askadmissions\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.askadmissions\\.net/\" to=\"https://$1.askadmissions.net/\"/></ruleset>", "<ruleset name=\"Hochschule Esslingen (partial)\" f=\"Hochschule-Esslingen.xml\"><rule from=\"^http://(ftp-stud|idp|webmail|www2)\\.hs-esslingen\\.de/\" to=\"https://$1.hs-esslingen.de/\"/><rule from=\"^http://(www\\.)?hs-esslingen\\.de/((de|en)/.+)\" to=\"https://www.hs-esslingen.de/$2\"/><exclusion pattern=\"^http://hs-esslingen.de/$\"/><exclusion pattern=\"^http://www.hs-esslingen.de/$\"/></ruleset>", "<ruleset name=\"Hochschule-Trier.de (partial)\" f=\"Hochschule-Trier.de.xml\"><rule from=\"^http://autodiscover\\.hochschule-trier\\.de/\" to=\"https://autodiscover.fh-trier.de/\"/><rule from=\"^http://((?:(?:www\\.)?asta|autodiscover|fht|fsi|lists|(?:www\\.)?protron|rft|rz|rzshop|www)\\.)?hochschule-trier\\.de/\" to=\"https://$1hochschule-trier.de/\"/></ruleset>", "<ruleset name=\"Hoeringsportalen.dk\" f=\"Hoeringsportalen.dk.xml\"><rule from=\"^http://(www\\.)?hoeringsportalen\\.dk/\" to=\"https://hoeringsportalen.dk/\"/></ruleset>", "<ruleset name=\"Hofstra University\" f=\"Hofstra-University.xml\"><rule from=\"^http://(?:www\\.)?hofstra\\.edu/\" to=\"https://www.hofstra.edu/\"/></ruleset>", "<ruleset name=\"Hola\" f=\"Hola.xml\"><securecookie host=\"^(?:www\\.)?hola\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holarse-Linuxgaming.de\" f=\"Holarse-LinuxGaming.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holba.ch\" f=\"Holba.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holder.com.ua (partial)\" f=\"Holder.com.ua.xml\"><securecookie host=\"^\\.holder\\.com\\.ua$\" name=\"^U$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holder de ord.no\" f=\"Holder_de_ord.no.xml\"><rule from=\"^http://(?:www\\.)?holderdeord\\.no/\" to=\"https://www.holderdeord.no/\"/></ruleset>", "<ruleset name=\"HolidayBullshit.com\" f=\"HolidayBullshit.com.xml\"><rule from=\"^http://(?:www\\.)?holidaybullshit\\.com/\" to=\"https://www.holidaybullshit.com/\"/></ruleset>", "<ruleset name=\"Holiday Break (mismathes)\" default_off=\"mismatch\" f=\"Holidaybreak-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?nachtjeweg\\.nl/$\"/><securecookie host=\"^(?:.*\\.)?nachtjeweg\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nachtjeweg\\.nl/\" to=\"https://www.nachtjeweg.nl/\"/></ruleset>", "<ruleset name=\"Holidaybreak (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Holidaybreak.xml\"><exclusion pattern=\"^http://www\\.weekendjeweg\\.nl/$\"/><securecookie host=\"^(?:.*\\.)(?:bookit|weekendjeweg)\\.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)pgl\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)superbreak\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bookit\\.nl/\" to=\"https://www.bookit.nl/\"/><rule from=\"^http://(?:www\\.)?djoser\\.nl/assets/\" to=\"https://djoser.nl/assets/\"/><rule from=\"^http://cache[12]\\.djoser\\.nl/assets/djoser_2012-1\\.0\\.56/\" to=\"https://djoser.nl/assets/djoser_2012/\"/><rule from=\"^http://(?:www\\.)?djoser(?:junior|wandelenfiets)\\.nl/(asset|cs|image)s/\" to=\"https://djoser.nl/assets/$1s/\"/><rule from=\"^http://(www\\.)?explore\\.co\\.uk/(images/|media/|templates/)\" to=\"https://$1explore.co.uk/$2\"/><rule from=\"^http://(?:www\\.)?holidaybreak\\.co\\.uk/(?:holidaybreak/)?\" to=\"https://ww7.investorrelations.co.uk/holidaybreak/\"/><rule from=\"^http://(?:www\\.)?pgl\\.co\\.uk/\" to=\"https://www.pgl.co.uk/\"/><rule from=\"^http://(www\\.)?superbreak\\.com/\" to=\"https://$1superbreak.com/\"/><rule from=\"^http://(?:img1|static)\\.superbreak\\.(?:com|net)/\" to=\"https://www.superbreak.com/\"/><rule from=\"^http://(?:www\\.)?weekendjeweg\\.nl/(favicon\\.ico|resources/)\" to=\"https://www.weekendjeweg.nl/$1\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (mismatches)\" default_off=\"mismatch\" f=\"Hollywood-Reporter-mismatches.xml\"><rule from=\"^http://thr\\d\\.pgmcdn\\.net/\" to=\"https://www.hollywoodreporter.com/\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (partial)\" f=\"Hollywood-Reporter.xml\"><securecookie host=\"\\.\" name=\"^_gat?$\"/><securecookie host=\".\\.hollywoodreporter\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hollywood Life.com\" f=\"Hollywood_Life.com.xml\"><rule from=\"^http://www\\.hollywoodlife\\.com/\" to=\"https://hollywoodlife.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hollywood Outlaws.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hollywood_Outlaws.com-falsemixed.xml\"><securecookie host=\"^\\.hollywoodoutlaws\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hollywoodoutlaws\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.hollywoodoutlaws.com/\"/></ruleset>", "<ruleset name=\"Hollywood Outlaws.com\" default_off=\"plaintext reply\" f=\"Hollywood_Outlaws.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holoscripter.org\" f=\"Holoscripter.org.xml\"><securecookie host=\"^(?:w*\\.)?holoscripter\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holtstrom.com (false MCB)\" platform=\"mixedcontent\" f=\"Holtstrom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holtwick IT (mismatches)\" default_off=\"self-signed\" f=\"Holtwick-IT-mismatches.xml\"><rule from=\"^http://(?:www\\.)?holtwick\\.it/\" to=\"https://www.holtwick.it/\"/></ruleset>", "<ruleset name=\"Holtwick IT (partial)\" default_off=\"failed ruleset test\" f=\"Holtwick-IT.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HolyTransaction.com\" f=\"HolyTransaction.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home of the Sebijk.com\" default_off=\"failed ruleset test\" f=\"Home-of-the-Sebijk.com.xml\"><rule from=\"^http://(?:www\\.)?sebijk\\.com/\" to=\"https://www.sebijk.com/\"/><rule from=\"^http://(?:www\\.)?freemail\\.sebijk\\.com/\" to=\"https://freemail.sebijk.com/\"/></ruleset>", "<ruleset name=\"Home.ch (partial)\" f=\"Home.ch.xml\"><securecookie host=\"^www\\.home\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?home\\.ch/\" to=\"https://www.home.ch/\"/></ruleset>", "<ruleset name=\"home.pl\" f=\"Home.pl.xml\"><securecookie host=\"^(?:.+\\.)?home\\.pl$\" name=\".+\"/><rule from=\"^http://((?:akcje|hq|m|panel|(?:m\\.)?poczta|pomoc|rozwijaj|www)\\.)?home\\.pl/\" to=\"https://$1home.pl/\"/></ruleset>", "<ruleset name=\"HomeBello (partial)\" f=\"HomeBello.xml\"><rule from=\"^http://(www\\.)?homebello\\.com/((?:checkout|contact|order-status)(?:$|\\?)|content/|css/|images/|photos/|Public/|store_image/|Styles/)\" to=\"https://$1homebello.com/$2\"/></ruleset>", "<ruleset name=\"HomeFinder.com (partial)\" f=\"HomeFinder.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?homefinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HomeInsurance.com\" f=\"HomeInsurance.com.xml\"><securecookie host=\"^\\.homeinsurance\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home Depot (problematic)\" default_off=\"akamai cert\" f=\"Home_Depot.com-problematic.xml\"><exclusion pattern=\"^http://ir\\.homedepot\\.com/(?:client|WebSideStory)/\"/><securecookie host=\"^ir\\.homedepot\\.com$\" name=\".+\"/><rule from=\"^http://(ir|www)\\.homedepot\\.com/\" to=\"https://$1.homedepot.com/\"/></ruleset>", "<ruleset name=\"Home Depot.com (partial)\" f=\"Home_Depot.com.xml\"><securecookie host=\"^(?:hdapps|hdconnect|homedepotlink|thdfed)?\\.homedepot\\.com$\" name=\".+\"/><rule from=\"^http://secure2\\.homedepot\\.com/\" to=\"https://secure2.homedepot.com/\"/><rule from=\"^http://(?:www\\.)?community\\.homedepot\\.com/\" to=\"https://homedepot.i.lithium.com/\"/><rule from=\"^http://contractorservices\\.homedepot\\.com/(\\?.*)?$\" to=\"https://secure2.homedpot.com/pro$1\"/><rule from=\"^http://(corporate|hdapps|hdconnect|homedepotlink|swsac|thdfed)\\.homedepot\\.com/\" to=\"https://$1.homedepot.com/\"/><rule from=\"^http://ir\\.homedepot\\.com/(client|WebSideStory)/\" to=\"https://origin-phoenix.corporate-ir.net/$1/\"/></ruleset>", "<ruleset name=\"Home Depot Foundation.org\" default_off=\"mismatched\" f=\"Home_Depot_Foundation.org.xml\"><securecookie host=\"^homedepotfoundation.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?homedepotfoundation\\.org/\" to=\"https://homedepotfoundation.org/\"/></ruleset>", "<ruleset name=\"Home Mentors.com\" f=\"Home_Mentors.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home Theater Review.com (false MCB)\" platform=\"mixedcontent\" f=\"Home_Theater_Review.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?hometheaterreview\\.com/(?!advertpro/|dev/|favicon\\.ico|htrads/|images/|images_news/|wp-content/|wp-includes/)\" to=\"https://hometheaterreview.com/\"/></ruleset>", "<ruleset name=\"Home Theater Review.com (partial)\" f=\"Home_Theater_Review.com.xml\"><securecookie host=\"^\\.hometheaterreview\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?hometheaterreview\\.com/(?=advertpro/|dev/|favicon\\.ico|htrads/|images/|images_news/|wp-content/|wp-includes/)\" to=\"https://hometheaterreview.com/\"/></ruleset>", "<ruleset name=\"home buzz.co.uk\" default_off=\"503\" f=\"Home_buzz.co.uk.xml\"><securecookie host=\"^(?:www)?\\.homebuzz\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homebase\" default_off=\"failed ruleset test\" f=\"Homebase.xml\"><rule from=\"^http://homebase\\.co\\.uk/\" to=\"https://www.homebase.co.uk/\"/><rule from=\"^http://www\\.homebase\\.co\\.uk/\" to=\"https://www.homebase.co.uk/\"/><rule from=\"^http://www\\.homebase\\.com/\" to=\"https://www.homebase.co.uk/\"/><rule from=\"^http://homebase\\.com/\" to=\"https://www.homebase.co.uk/\"/></ruleset>", "<ruleset name=\"Homecomputing.fr\" default_off=\"self-signed\" f=\"Homecomputing.fr.xml\"><rule from=\"^http://homecomputing\\.fr/\" to=\"https://www.homecomputing.fr/\"/><rule from=\"^http://([^@/:]*)\\.homecomputing\\.fr/\" to=\"https://$1.homecomputing.fr/\"/></ruleset>", "<ruleset name=\"Homeless Veterans.co.uk (false MCB)\" platform=\"mixedcontent\" f=\"Homeless_Veterans.co.uk-falsemixed.xml\"><securecookie host=\"^\\.homelessveterans\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://www\\.homelessveterans\\.co\\.uk/\" to=\"https://www.homelessveterans.co.uk/\"/></ruleset>", "<ruleset name=\"Homeless Veterans.co.uk (partial)\" f=\"Homeless_Veterans.co.uk.xml\"><exclusion pattern=\"^http://www\\.homelessveterans\\.co\\.uk/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^donate\\.homelessveterans\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homeless World Cup\" f=\"Homeless_World_Cup.xml\"><securecookie host=\"^(?:www)?\\.homelessworldcup\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honest.com\" f=\"Honest.com.xml\"><securecookie host=\"^(?:www)?\\.honest\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|img|www)\\.)?honest\\.com/\" to=\"https://$1honest.com/\"/></ruleset>", "<ruleset name=\"Honest Policy\" f=\"Honest_Policy.xml\"><securecookie host=\"^\\.honestpolicy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HoneyBeeLoans.com\" f=\"HoneyBeeLoans.com.xml\"><securecookie host=\"^(?:w*\\.)?honeybeeloans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Stock Exchange (partial)\" f=\"Hong_Kong_Stock_Exchange.xml\"><securecookie host=\"^www\\.hkex\\.com\\.hk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hkex\\.com\\.hk/\" to=\"https://www.hkex.com.hk/\"/></ruleset>", "<ruleset name=\"Honolulu Star Advertiser\" default_off=\"failed ruleset test\" f=\"Honolulu_Star_Advertiser.xml\"><rule from=\"^http://(?:www\\.)?staradvertiser\\.com/\" to=\"https://www.staradvertiser.com/\"/><rule from=\"^http://media\\.staradvertiser\\.com/\" to=\"https://media.staradvertiser.com/\"/><rule from=\"^http://sa-cmedia01\\.staradvertiser\\.com/\" to=\"https://d392249hhaazk5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Hoodline.com\" f=\"Hoodline.com.xml\"><rule from=\"^http://(www\\.)?hoodline\\.com/\" to=\"https://www.hoodline.com/\"/></ruleset>", "<ruleset name=\"HootSuite (mismatched)\" default_off=\"mismatched\" f=\"HootSuite-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HootSuite\" f=\"HootSuite.xml\"><securecookie host=\"^(?:.*\\.)?hootsuite\\.com$\" name=\".+\"/><rule from=\"^http://(?:s7\\.)?static\\.hootsuite\\.com/\" to=\"https://d1ue63gpusfv5w.cloudfront.net/\"/><rule from=\"^http://s0\\.static\\.hootsuite\\.com/\" to=\"https://d2l6uygi1pgnys.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hoover Institution\" default_off=\"mismatched\" f=\"Hoover_Institution.xml\"><rule from=\"^http://(?:www\\.)?hoover\\.org/\" to=\"https://www.hoover.org/\"/><rule from=\"^http://media\\.hoover\\.org/\" to=\"https://media.hoover.org/\"/></ruleset>", "<ruleset name=\"Hoover's (partial)\" default_off=\"webmaster request\" f=\"Hoovers.xml\"><securecookie host=\"^subscriber\\.hoovers\\.com$\" name=\".+\"/><rule from=\"^http://s(ecure|ubscriber)\\.hoovers\\.com/\" to=\"https://s$1.hoovers.com/\"/></ruleset>", "<ruleset name=\"Hop Studios\" platform=\"mixedcontent\" f=\"Hop-Studios.xml\"><securecookie host=\"^(?:.*\\.)?hopstudios\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hope.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hope.net-falsemixed.xml\"><rule from=\"^http://wiki\\.hope\\.net/\" to=\"https://wiki.hope.net/\"/></ruleset>", "<ruleset name=\"hope.net (partial)\" default_off=\"missing certificate chain\" f=\"Hope.net.xml\"><exclusion pattern=\"^http://wiki\\.hope\\.net/+(?!w/)\"/><rule from=\"^http://www\\.hope\\.net/\" to=\"https://hope.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hopkins-Interactive.com\" f=\"Hopkins-Interactive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Horde (partial)\" f=\"Horde.xml\"><rule from=\"^http://dev\\.horde\\.org/\" to=\"https://dev.horde.org/\"/><rule from=\"^http://(www\\.)?horde-llc\\.com/\" to=\"https://$1horde-llc.com/\"/></ruleset>", "<ruleset name=\"Hornbach\" f=\"Hornbach.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hornstra Farms.com\" default_off=\"failed ruleset test\" f=\"Hornstra_Farms.com.xml\"><rule from=\"^http://www\\.hornstrafarms\\.com/\" to=\"https://hornstrafarms.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Horyzon Media.com (partial)\" f=\"Horyzon_Media.xml\"><securecookie host=\"^ads\\.horyzon-media\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosokawa-Alpine.com\" f=\"Hosokawa-Alpine.com.xml\"><securecookie host=\"^(?:www\\.)?hosokawa-alpine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hospitality Leaders \" f=\"Hospitality_Leaders.xml\"><securecookie host=\"^\\.?hospitalityleaders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host Creo\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Host-Creo.xml\"><rule from=\"^http://(?:hostcreo|creocommunico)\\.com/\" to=\"https://creocommunico.com/\"/><rule from=\"^http://(secure|www)\\.(hostcreo|creocommunico)\\.com/\" to=\"https://$1.creocommunico.com/\"/></ruleset>", "<ruleset name=\"Host Europe Group\" platform=\"mixedcontent\" f=\"Host-Europe-Group.xml\"><rule from=\"^http://dev\\.heg\\.com/\" to=\"https://www.heg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host-Tracker.com\" f=\"Host-tracker.com.xml\"><securecookie host=\"^www\\.host-tracker\\.com$\" name=\".+\"/><rule from=\"^http://host-tracker\\.com/\" to=\"https://www.host-tracker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host.co.id\" f=\"Host.co.id.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host1Plus\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Host1Plus.xml\"><securecookie host=\"^(?:.*\\.)?host1plus\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?host1plus\\.com/\" to=\"https://$1host1plus.com/\"/></ruleset>", "<ruleset name=\"host2.bg\" f=\"Host2.bg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostBaby.com (partial)\" f=\"HostBaby.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostBill (partial)\" f=\"HostBill.xml\"><rule from=\"^http://www\\.hostbillapp\\.com/\" to=\"https://hostbillapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostCentric.com\" f=\"HostCentric.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://images\\.hostcentric\\.com/\" to=\"https://secure.hostcentric.com/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostDime.com (partial)\" f=\"HostDime.xml\"><securecookie host=\"^(?:.*\\.)?hostdime\\.com$\" name=\".*\"/><rule from=\"^http://jobs\\.hostdime\\.com/[^?]*\" to=\"https://www.hostdime.com/jobs/\"/><rule from=\"^http://status\\.hostdime\\.com/[^?]*\" to=\"https://www.hostdime.com/facilities/server-status/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostGator.com (false MCB)\" platform=\"mixedcontent\" f=\"HostGator.com-falsemixed.xml\"><securecookie host=\"www\\.hostgator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostGator.com (partial)\" f=\"HostGator.xml\"><exclusion pattern=\"^http://(?:demo|forums|suspended)\\.hostgator\\.com/\"/><exclusion pattern=\"^http://templates\\.hostgator\\.com/+(?!favicon\\.ico|images/|thumbnails/|style\\.css|styles-gator\\.css)\"/><exclusion pattern=\"^http://www\\.hostgator\\.com/+blog(?!/~/tmp/|/wp-content/)\"/><securecookie host=\".+\\.hostgator\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?hostgator\\.com(:8443)?/\" to=\"https://$1hostgator.com$2/\"/></ruleset>", "<ruleset name=\"HostHorde.com\" f=\"HostHorde.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostSearch (partial)\" f=\"HostSearch.xml\"><rule from=\"^http://secure\\.hostsearch\\.com/\" to=\"https://secure.hostsearch.com/\"/></ruleset>", "<ruleset name=\"Host Analytics.com (partial)\" f=\"Host_Analytics.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host Europe.de\" f=\"Host_Europe.de.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host One (partial)\" default_off=\"failed ruleset test\" f=\"Host_One.xml\"><securecookie host=\"^sugarcrm\\.hostone\\.com\\.au$\" name=\".+\"/><rule from=\"^http://sugarcrm\\.hostone\\.com\\.au/\" to=\"https://sugarcrm.hostone.com.au/\"/></ruleset>", "<ruleset name=\"Host Virtual.com\" f=\"Host_Virtual.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host Voice.com\" f=\"Host_Voice.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostasaurus.com\" f=\"Hostasaurus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hosted-oswa.org\" f=\"Hosted-oswa.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosterbox.com\" f=\"Hosterbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostica.com\" f=\"Hostica.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostican Web Hosting\" default_off=\"connection dropped\" f=\"Hostican.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Reviews (partial)\" default_off=\"mismatch\" f=\"Hosting-Reviews.xml\"><rule from=\"^http://(?:www\\.)?hostingreviews\\.com/wp-content/\" to=\"https://hostingreviews.com/wp-content/\"/></ruleset>", "<ruleset name=\"Hosting2GO.nl\" f=\"Hosting2GO.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting90.cz\" f=\"Hosting90.cz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting9000.com\" f=\"Hosting9000.com.xml\"><securecookie host=\"^(?:www\\.)?hosting9000\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingCon.com\" f=\"HostingCon.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingLabs.pe (partial)\" f=\"HostingLabs.pe.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingSolutions s.r.o.\" f=\"HostingSolutions.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingXtreme.com (partial)\" f=\"HostingXtreme.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Catalog.com (false MCB)\" platform=\"mixedcontent\" f=\"Hosting_Catalog.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Catalog.com (partial)\" f=\"Hosting_Catalog.com.xml\"><exclusion pattern=\"^http://www\\.hostingcatalog\\.com/+(?!1x1s\\.gif|favicon\\.ico|images/|style\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostingas.lt\" f=\"Hostingas.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"23Vnet\" f=\"Hostit.xml\"><securecookie host=\"^\\.hostit\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.hostit\\.hu/\" to=\"https://hostit.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostmonster\" default_off=\"failed ruleset test\" f=\"Hostmonster.xml\"><securecookie host=\"^(?:.*\\.)?hostmonster\\.com$\" name=\".+\"/><securecookie host=\"^\\.hostmonster-cdn\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?hostmonster\\.com/\" to=\"https://$1hostmonster.com/\"/><rule from=\"^http://(cf\\.)?hostmonster-cdn\\.com/\" to=\"https://$1hostmonster-cdn.com/\"/></ruleset>", "<ruleset name=\"hostname.sk (partial)\" f=\"Hostname.sk.xml\"><securecookie host=\"^blog\\.hostname\\.sk$\" name=\".+\"/><rule from=\"^http://(blog|sendxmpp|whatsmyip)\\.hostname\\.sk/\" to=\"https://$1.hostname.sk/\"/></ruleset>", "<ruleset name=\"Hostoople.com (false MCB)\" platform=\"mixedcontent\" f=\"Hostoople.com-falsemixed.xml\"><rule from=\"^http://(?:(?:www\\.)?hostoople|hostooplecms\\.hostooplecom\\.netdna-cdn)\\.com/\" to=\"https://www.hostoople.com/\"/></ruleset>", "<ruleset name=\"Hostoople.com (partial)\" f=\"Hostoople.com.xml\"><exclusion pattern=\"^http://(?:(?:www\\.)?hostoople|hostooplecms\\.hostooplecom\\.netdna-cdn)\\.com/+(?!favicon\\.ico|images/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:(?:www\\.)?hostoople|hostooplecms\\.hostooplecom\\.netdna-cdn)\\.com/\" to=\"https://www.hostoople.com/\"/><rule from=\"^http://(affiliate|customer)\\.hostoople\\.com/\" to=\"https://$1.hostoople.com/\"/></ruleset>", "<ruleset name=\"Hostpoint\" f=\"Hostpoint.xml\"><securecookie host=\"^(?:admin|support|www)\\.hostpoint\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hostpoint\\.ch/\" to=\"https://www.hostpoint.ch/\"/><rule from=\"^http://(?:www\\.)?14daytrial\\.hostpoint\\.ch/[^\\?]*(\\?.*)?\" to=\"https://www.hostpoint.ch/ms/promo/hostingtrial/index.php$1\"/><rule from=\"^http://(?:www\\.)?admin\\.hostpoint\\.ch/\" to=\"https://admin.hostpoint.ch/\"/><rule from=\"^http://(?:www\\.)?blog\\.hostpoint\\.ch/\" to=\"https://blog.hostpoint.ch/\"/><rule from=\"^http://support\\.hostpoint\\.ch/\" to=\"https://support.hostpoint.ch/\"/><rule from=\"^http://www\\.support\\.hostpoint\\.ch/[^\\?]*(\\?.*)?\" to=\"https://support.hostpoint.ch/$1\"/></ruleset>", "<ruleset name=\"Hostpointpartner.ch\" f=\"Hostpointpartner.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostr.co\" f=\"Hostr.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosts.co.uk (mismatched)\" default_off=\"mismatched\" f=\"Hosts.co.uk-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosts.co.uk (partial)\" f=\"Hosts.xml\"><securecookie host=\"^(?:admin|webmail)\\.hosts\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://webmail4\\.hosts\\.co\\.uk/\" to=\"https://webmail4.names.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hot-Chilli.net (partial)\" f=\"Hot-Chilli.net.xml\"><securecookie host=\"^jabber\\.hot-chilli\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HotLog.ru (partial)\" default_off=\"missing certificate chain\" f=\"HotLog.ru.xml\"><securecookie host=\"^\\.hotlog\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HotUKDeals (mismatches)\" default_off=\"mismatch\" f=\"HotUKDeals-mismatches.xml\"><rule from=\"^http://(?:www\\.)?bitterwallet\\.com/\" to=\"https://www.bitterwallet.com/\"/></ruleset>", "<ruleset name=\"HotUKDeals (partial)\" default_off=\"failed ruleset test\" f=\"HotUKDeals.xml\"><rule from=\"^http://(www\\.)?dealspwn\\.com/(clientscript/|css/|images/|login$|writer)\" to=\"https://www.dealspwn.com/$2\"/><rule from=\"^http://gamebase\\.dealspwn\\.com/((base|style_UK)\\.css$|images/)\" to=\"https://gamebase.dealspwn.com/$1\"/><rule from=\"^http://(www\\.)?hotukdeals\\.com/(about$|clientscript/|contact|custom-settings|favicon\\.ico$|help|hukd-badges|images/|login|newsletter|profile/|rest-api|stylesheets/|submit|top)\" to=\"https://www.hotukdeals.com/$2\"/><rule from=\"^http://m\\.hotukdeals\\.com/(favicon\\.ico$|images/|login/|newsletter|stylesheets/)\" to=\"https://m.hotukdeals.com/$2\"/><rule from=\"^http://(?:www\\.)?mobot\\.net/\" to=\"https://www.mobot.net/\"/><rule from=\"^http://m\\.mobot\\.net/(css/|images/|login$)\" to=\"https://m.mobot.net/$1\"/><rule from=\"^http://(?:www\\.)?statichukd\\.com/\" to=\"https://www.hotukdeals.com/\"/><securecookie host=\"^\\.mobot\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"Hot Pics Amateur\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Hot_Pics_Amateur.xml\"><securecookie host=\"^(?:www\\.)?hotpics-amateur\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(collection\\.)?hotpics-amateur\\.com/\" to=\"https://$1hotpics-amateur.com/\"/></ruleset>", "<ruleset name=\"Hot Scripts.com\" f=\"Hot_Scripts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotel Mangaby.com\" default_off=\"expired\" f=\"Hotel_Managaby.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotel Wifi.com (partial)\" default_off=\"failed ruleset test\" f=\"Hotel_Wifi.com.xml\"><securecookie host=\"^hiesorrentovalley\\.hotelwifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotels.com (partial)\" f=\"Hotels.com.xml\"><securecookie host=\"^\\.cdn-hotels\\.com$\" name=\".+\"/><securecookie host=\"^\\.hotels\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:customercare|(?:\\w\\w\\.)?service)\\.hotels\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.cdn-hotels\\.com/\" to=\"https://$1.cdn-hotels.com/\"/><rule from=\"^http://(?:\\w\\w\\.|www\\.)?hotels\\.com/(external/|html/blank\\.html|static/)\" to=\"https://a1.cdn-hotels.com/$1\"/><rule from=\"^http://(?:www\\.)?hotels\\.com/((?:c[no]\\d+|customer_care|de\\d+|deals|ImageDisplay|site-index)(?:$|\\?|/)|selectors/|__ssobj/)\" to=\"https://ssl.hotels.com/$1\"/><rule from=\"^http://(\\w\\w)\\.hotels\\.com/((?:c[no]\\d+|customer_care|de\\d+|deals|ImageDisplay|site-index)(?:$|\\?|/)|selectors/|__ssobj/)\" to=\"https://ssl-$1.hotels.com/$2\"/><rule from=\"^http://(customercare|delivery|(?:\\w\\w\\.)?service|ssl(?:-\\w\\w)?)\\.hotels\\.com/\" to=\"https://$1.hotels.com/\"/></ruleset>", "<ruleset name=\"Hoteltotravel.com\" default_off=\"shows incontri5stelle.com\" f=\"Hoteltotravel.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotfile\" default_off=\"failed ruleset test\" f=\"Hotfile.xml\"><rule from=\"^http://(?:www\\.)?hotfile\\.com/\" to=\"https://hotfile.com/\"/></ruleset>", "<ruleset name=\"Hotmail.co.jp\" f=\"Hotmail.co.jp.xml\"><rule from=\"^http://www\\.hotmail\\.co\\.jp/\" to=\"https://hotmail.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotmail.co.uk\" f=\"Hotmail.co.uk.xml\"><rule from=\"^http://www\\.hotmail\\.co\\.uk/\" to=\"https://hotmail.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotmail.com\" f=\"Hotmail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotspot Shield (partial)\" default_off=\"failed ruleset test\" f=\"Hotspot_Shield.xml\"><exclusion pattern=\"^http://(?:www\\.)?hsselite\\.com/sign-in(?:$|[?/])\"/><rule from=\"^http://hotspotshield\\.com/\" to=\"https://hotspotshield.com/\"/><rule from=\"^http://(cdn\\.|www\\.)?hsselite\\.com/\" to=\"https://$1hsselite.com/\"/></ruleset>", "<ruleset name=\"Hotwire\" f=\"Hotwire.xml\"><rule from=\"^http://hotwire\\.com/\" to=\"https://www.hotwire.com/\"/><rule from=\"^http://(cruise|extranet|www)\\.hotwire\\.com/\" to=\"https://$1.hotwire.com/\"/></ruleset>", "<ruleset name=\"Hound CI.com\" f=\"Hound_CI.com.xml\"><securecookie host=\"^(?:www\\.)?houndci\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hounddog Central\" f=\"Hounddog_Central.xml\"><securecookie host=\"^(?:w*\\.)?hounddogcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HousingWire.com\" default_off=\"failed ruleset test\" f=\"HousingWire.com.xml\"><rule from=\"^http://(?:www\\.)?housingwire\\.com/\" to=\"https://www.housingwire.com/\"/><rule from=\"^http://store\\.housingwire\\.com/[^\\?]*(\\?.*)?\" to=\"https://checkout.subscriptiongenius.com/housingwire.com/$1\"/></ruleset>", "<ruleset name=\"Houston Chronicle (partial)\" f=\"Houston_Chronicle.xml\"><exclusion pattern=\"^http://fangear\\.chron\\.com/(?!App_Themes|images)/\"/><securecookie host=\"^dailydeal\\.chron\\.com$\" name=\".+\"/><securecookie host=\"^myaccount\\.houstonchronicle\\.com$\" name=\".+\"/><rule from=\"^http://(dailydeal|fangear|file)\\.chron\\.com/\" to=\"https://$1.chron.com/\"/><rule from=\"^http://local\\.chron\\.com/static/\" to=\"https://www.localedge.com/static/\"/><rule from=\"^http://myaccount\\.houstonchronicle\\.com/\" to=\"https://myaccount.houstonchronicle.com/\"/></ruleset>", "<ruleset name=\"Hover.com (partial)\" f=\"Hover.com.xml\"><exclusion pattern=\"^http://www\\.hover\\.com/(?:blog|wp-content|wp-includes)(?:$|[?/])\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How-Old.Net\" f=\"How-Old.net.xml\"><securecookie host=\"^.*\\.how-old\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HowTo.gov\" f=\"HowTo.gov.xml\"><rule from=\"^http://howto\\.gov/\" to=\"https://www.howto.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How Secure Is My Password.net\" f=\"How_Secure_Is_My_Password.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How To Geek.com (partial)\" default_off=\"breaks images\" f=\"How_To_Geek.com.xml\"><rule from=\"^http://(www\\.)?howtogeek\\.com/(?=favicon\\.ico|pagespeed_static/|public/|thumbcache/|wp-content/|wp-includes/)\" to=\"https://$1howtogeek.com/\"/><rule from=\"^http://cdn8\\.howtogeek\\.com/\" to=\"https://www.howtogeek.com/\"/></ruleset>", "<ruleset name=\"How-to-Box.com\" default_off=\"self-signed\" f=\"How_to_Box.xml\"><securecookie host=\"^\\.how-to-box\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Howard Hughes Medical Institute\" platform=\"mixedcontent\" f=\"Howard-Hughes-Medical-Institute.xml\"><securecookie host=\"^.*\\.hhmi\\.org$\" name=\".*\"/><rule from=\"^http://hhmi\\.org/\" to=\"https://www.hhmi.org/\"/><rule from=\"^http://([\\w\\-]+)\\.hhmi\\.org/\" to=\"https://$1.hhmi.org/\"/></ruleset>", "<ruleset name=\"Hows My SSL.com\" f=\"Hows_My_SSL.com.xml\"><rule from=\"^http://(www\\.)?howsmy(ssl|tls)\\.com/\" to=\"https://$1howsmy$2.com/\"/></ruleset>", "<ruleset name=\"HowtoForge.com\" f=\"HowtoForge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HowtoForge.de\" f=\"HowtoForge.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hqcodeshop.fi (partial)\" f=\"Hqcodeshop.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HrC.onl\" f=\"HrC.onl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"href.li\" f=\"Href.li.xml\"><rule from=\"^http://www\\.href\\.li/\" to=\"https://href.li/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hrkgame.com\" f=\"Hrkgame.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hs-rm.de\" f=\"Hs-rm.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HsI cloud.com (partial)\" f=\"HsI_cloud.com.xml\"><rule from=\"^http://fb\\.hsicloud\\.com/\" to=\"https://fb.hsicloud.com/\"/></ruleset>", "<ruleset name=\"HsKA\" f=\"HsKA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hslu\" f=\"Hslu.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hsmr.cc\" f=\"Hsmr.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hsto.org\" f=\"Hsto.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hstor.org\" f=\"Hstor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ht.vc\" f=\"Ht.vc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"htaccessbook.com\" f=\"Htaccessbook.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"html5.org\" f=\"Html5.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"httpLab.it\" f=\"HttpLab.it.xml\"><securecookie host=\"^(?:www\\.)?httplab\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"httpbin\" f=\"Httpbin.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huawei.com (partial)\" f=\"Huawei.com.xml\"><securecookie host=\"^(?:edoc|imail\\w\\w|imailind|uniportal)\\.huawei\\.com$\" name=\".+\"/><rule from=\"^http://imail(\\w\\w|ind)\\.huawei\\.com/(?:\\?.*)?$\" to=\"https://imail$1.huawei.com/OWA\"/><rule from=\"^http://(autodiscover|edoc|edoc-hk|imail\\w\\w|imailind|uniportal)\\.huawei\\.com/\" to=\"https://$1.huawei.com/\"/></ruleset>", "<ruleset name=\"HubSpot.net\" f=\"HubSpot.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HubSpot.com\" f=\"HubSpot.xml\"><securecookie host=\"^(?:.*\\.)?hubspot\\.com$\" name=\".*\"/><rule from=\"^http://hubspot\\.com/\" to=\"https://www.hubspot.com/\"/><rule from=\"^http://cdn\\.blog\\.hubspot\\.com/\" to=\"https://s3.amazonaws.com/cdn.hubspot.com/\"/><rule from=\"^http://cdn1\\.hubspot\\.com/\" to=\"https://s3.amazonaws.com/cdn1.hubspot.com/\"/><rule from=\"^http://forums\\.hubspot\\.com/\" to=\"https://hubspot3.vanillaforums.com/\"/><rule from=\"^http://jobs\\.hubspot\\.com/\" to=\"https://www.hubspot.com/jobs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HubSpot QA.com (partial)\" f=\"HubSpot_QA.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hubble (partial)\" f=\"Hubble.xml\"><exclusion pattern=\"^http://www\\.spacetelescope\\.org/(?:kidsandteachers/(?:drawings|education)|press/kits)/\"/><rule from=\"^http://(?:www\\.)?spacetelescope\\.org/(about|contact|kidsandteachers|press|projects|science|static|subscribe)/\" to=\"https://www.spacetelescope.org/$1/\"/></ruleset>", "<ruleset name=\"Hubic.com\" f=\"Hubic.com.xml\"><securecookie host=\"(?:^|\\.)hubic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hudson Valley Host (partial)\" f=\"Hudson_Valley_Host.xml\"><rule from=\"^http://billing\\.hudsonvalleyhost\\.com/((?:cart|clientarea|submitticket)\\.php|favicon\\.ico|images/|includes/|modules/|templates/)\" to=\"https://billing.hudsonvalleyhost.com/$1\"/></ruleset>", "<ruleset name=\"Huffington Post (mismatches)\" default_off=\"mismatch\" f=\"Huffington-Post-mismatches.xml\"><rule from=\"^http://(?:www\\.)?huffingtonpost\\.ca/\" to=\"https://www.huffingtonpost.ca/\"/><rule from=\"^http://e\\.huffpost\\.com/\" to=\"https://e.huffpost.com/\"/></ruleset>", "<ruleset name=\"Huffington Post (partial)\" default_off=\"Breaks some images\" f=\"Huffington-Post.xml\"><exclusion pattern=\"^http://(?:www\\.)?huffingtonpost\\.com/+(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://e\\.huffpost\\.com/+(?!\\w+/images/)\"/><rule from=\"^http://big\\.assets\\.huffingtonpost\\.com/\" to=\"https://s3.amazonaws.com/big.assets.huffingtonpost.com/\"/><rule from=\"^http://images\\.huffingtonpost\\.com/\" to=\"https://s-i.huffpost.com/\"/><rule from=\"^http://secure\\.huffingtonpost\\.com/\" to=\"https://secure.huffingtonpost.com/\"/><rule from=\"^http://s\\.huffpost\\.com/contributors/\" to=\"https://secure.huffingtonpost.com/contributors/\"/><rule from=\"^http://(?:s-)?([is])\\.huffpost\\.com/\" to=\"https://s-$1.huffpost.com/\"/><rule from=\"^http://s\\d\\.huffpost\\.com/\" to=\"https://s-s.huffpost.com/\"/></ruleset>", "<ruleset name=\"HugeDomains.com (partial)\" f=\"HugeDomains.com.xml\"><exclusion pattern=\"^http://www\\.hugedomains\\.com/domain_profile\\.cfm\"/><securecookie host=\"^hugedomains\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huggies Australia (partial)\" f=\"Huggies_Australia.xml\"><securecookie host=\"^\\.huggies\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(www\\.)?huggies\\.com\\.au/\" to=\"https://$1huggies.com.au/\"/><rule from=\"^http://assets\\.huggies-cdn\\.net/\" to=\"https://assets.huggies-cdn.net/\"/></ruleset>", "<ruleset name=\"HughesNet (partial)\" f=\"HughesNet.xml\"><rule from=\"^http://s1\\.hughesnet\\.com/\" to=\"https://s1.hughesnet.com/\"/></ruleset>", "<ruleset name=\"Human Rights Campaign (partial)\" platform=\"mixedcontent\" f=\"Human-Rights-Campaign.xml\"><securecookie host=\"^www\\.hrc\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hrc\\.org/\" to=\"https://www.hrc.org/\"/></ruleset>", "<ruleset name=\"HumanKode.com\" f=\"HumanKode.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Research Ethics Portal\" f=\"HumanResearchEthicsPortal.xml\"><rule from=\"^http://(?:www\\.)?hrep\\.nhmrc\\.gov\\.au/\" to=\"https://hrep.nhmrc.gov.au/\"/></ruleset>", "<ruleset name=\"Human Action\" f=\"Human_Action.xml\"><securecookie host=\"^\\.humanaction\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Brain Project.eu\" f=\"Human_Brain_Project.eu.xml\"><securecookie host=\"^(?:collaboration|education|www)\\.humanbrainproject\\.eu$\" name=\".+\"/><rule from=\"^http://((?:collaboration|education|www)\\.)?humanbrainproject\\.eu/\" to=\"https://$1humanbrainproject.eu/\"/></ruleset>", "<ruleset name=\"Human Events (partial)\" f=\"Human_Events.xml\"><exclusion pattern=\"^http://(?:www\\.)?humanevents\\.com/(?!t/)\"/><securecookie host=\"^order\\.humanevents\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Rights Defense Center.org\" f=\"Human_Rights_Defense_Center.org.xml\"><securecookie host=\"^www\\.humanrightsdefensecenter\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Rights First.org (partial)\" f=\"Human_Rights_First.org.xml\"><rule from=\"^http://(www\\.)?humanrightsfirst\\.org/(?=favicon\\.ico|sites/|uploads/|wp-content/|wp-includes/)\" to=\"https://$1humanrightsfirst.org/\"/></ruleset>", "<ruleset name=\"HRW.org (partial)\" f=\"Human_Rights_Watch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:beta|multimedia)\\.hrw\\.org/\" to=\"https://features.hrw.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Humanism.org.uk\" f=\"Humanism.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Humanity+\" default_off=\"mismatched\" f=\"HumanityPlus.xml\"><rule from=\"^http://(?:www\\.)?humanityplus\\.org/\" to=\"https://humanityplus.org/\"/></ruleset>", "<ruleset name=\"Humble Bundle (partial)\" f=\"HumbleBundle.xml\"><securecookie host=\"^www\\.humblebundle\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Humpi.at\" f=\"Humpi.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hunch (partial)\" default_off=\"failed ruleset test\" f=\"Hunch.xml\"><rule from=\"^http://(admin\\.|api\\.|www\\.)?hunch\\.com/\" to=\"https://$1hunch.com/\"/><rule from=\"^http://(?:aka-img-\\d\\.h-img|img-1\\.hunch)\\.com/\" to=\"https://hunch.com/\"/></ruleset>", "<ruleset name=\"HunchLab.com\" f=\"HunchLab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hungerhost\" platform=\"mixedcontent\" f=\"Hungerhost.xml\"><rule from=\"^http://(?:www\\.)?hungerhost\\.com/\" to=\"https://hungerhost.com/\"/></ruleset>", "<ruleset name=\"Hungry for Change\" default_off=\"mismatch\" f=\"Hungry-for-Change.xml\"><securecookie host=\"^(?:.*\\.)?hungryforchange\\.tv$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hungryforchange\\.tv/\" to=\"https://www.hungryforchange.tv/\"/></ruleset>", "<ruleset name=\"hungryhouse.co.uk\" f=\"Hungryhouse.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|dh_analytics_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hunt Calendars\" platform=\"mixedcontent\" f=\"Hunt-Calendars.xml\"><securecookie host=\"^www\\.huntcal\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)huntcal\\.com/\" to=\"https://www.huntcal.com/\"/></ruleset>", "<ruleset name=\"Hunting Bears.nl\" f=\"Hunting_Bears.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huobi.com\" f=\"Huobi.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://huobi\\.com/\" to=\"https://www.huobi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hupso.com (partial)\" f=\"Hupso.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hupstream.com\" f=\"Hupstream.com.xml\"><securecookie host=\"^(?:www\\.)?hupstream\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huque.com (partial)\" default_off=\"failed ruleset test\" f=\"Huque.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hurley Medical Center\" default_off=\"failed ruleset test\" f=\"Hurley_Medical_Center.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hurricane Electric\" f=\"HurricaneElectric.xml\"><securecookie host=\"^(?:.*\\.)?he\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?h(?:e\\.com|urricaneelectric\\.net)/\" to=\"https://www.he.net/\"/><rule from=\"^http://((?:admin|code|cust|dns|ipv6|www)\\.)?he\\.net/\" to=\"https://$1he.net/\"/></ruleset>", "<ruleset name=\"Hush-Hush (partial)\" f=\"Hush-Hush.xml\"><securecookie host=\"^secure\\.hush-hush\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hush-hush\\.com/(cs|image)s/\" to=\"https://secure.hush-hush.com/$1s/\"/><rule from=\"^http://secure\\.hush-hush\\.com/\" to=\"https://secure.hush-hush.com/\"/></ruleset>", "<ruleset name=\"Hush.technology\" f=\"Hush.technology.xml\"><securecookie host=\"^hush\\.technology$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hushmail\" default_off=\"failed ruleset test\" f=\"Hushmail.xml\"><securecookie host=\"^www\\.hushmail\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hush(mail)?\\.com/\" to=\"https://www.hush$1.com/\"/></ruleset>", "<ruleset name=\"Hustler\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hustler.xml\"><rule from=\"^http://(?:www\\.)?hustlermagazine\\.com/\" to=\"https://www.hustlermagazine.com/\"/></ruleset>", "<ruleset name=\"Huxo.co.uk\" default_off=\"self-signed\" f=\"Huxo.co.uk.xml\"><rule from=\"^http://(?:www\\.)?huxo\\.co\\.uk/\" to=\"https://huxo.co.uk/\"/></ruleset>", "<ruleset name=\"huzs.net\" f=\"Huzs.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hvidovre Kajakklub\" f=\"Hvidovrekajakklub.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hvosting.ua\" f=\"Hvosting.ua.xml\"><securecookie host=\"^(?:.*\\.)?hvosting\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hwbot.org (partial)\" f=\"Hwbot.org.xml\"><rule from=\"^http://img\\.hwbot\\.org/\" to=\"https://d1ebmxcfh8bf9c.cloudfront.net/\"/><rule from=\"^http://static\\.hwbot\\.org/\" to=\"https://d3vp4utu9lbqmm.cloudfront.net/\"/></ruleset>", "<ruleset name=\"hwcdn.net (partial)\" f=\"Hwcdn.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hybrid-Analysis.com\" f=\"Hybrid-Analysis.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hynek.me\" f=\"Hynek.me.xml\"><rule from=\"^http://ox\\.cx/\" to=\"https://www.ox.cx/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hypanova.com\" default_off=\"failed ruleset test\" f=\"Hypanova.com.xml\"><securecookie host=\"^\\.hypanova\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HypeMachine (not supported)\" default_off=\"Full SSL not supported\" f=\"HypeMachine.xml\"><exclusion pattern=\"^http://(?:www\\.)?hypem\\.com/(?!favicon\\.ico|images/|inc/|js/)\"/><rule from=\"^http://([^/:@]+\\.)?hypem\\.com/\" to=\"https://$1hypem.com/\"/><rule from=\"^http://static-ak\\.hypem\\.net/\" to=\"https://static.hypem.com/\"/></ruleset>", "<ruleset name=\"Hyper.sh\" f=\"Hyper.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyper Elliptic.org\" f=\"Hyper_Elliptic.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyperboria.net\" f=\"Hyperboria.net.xml\"><securecookie host=\"^\\.hyperboria\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyperoptic.com\" default_off=\"failed ruleset test\" f=\"Hyperoptic.com.xml\"><securecookie host=\"^(?:www\\.)?hyperoptic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyperspin (partial)\" f=\"Hyperspin.xml\"><rule from=\"^http://(?:www\\.)?hyperspin\\.com/(en/(?:captcha|controlpanel|uncacheable\\.gif)\\.php(?:$|\\?)|forum(?:$|[\\?/])|images/|themes/)\" to=\"https://www.hyperspin.com/$1\"/></ruleset>", "<ruleset name=\"Hypovereinsbank\" platform=\"mixedcontent\" f=\"Hypovereinsbank.de.xml\"><securecookie host=\"^(?:.*\\.)?hvb\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?hypovereinsbank\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hypovereinsbank\\.de/\" to=\"https://www.hypovereinsbank.de/\"/><rule from=\"^http://(?:www\\.)?hvb\\.de/\" to=\"https://www.hypovereinsbank.de/\"/></ruleset>", "<ruleset name=\"I Do Foundation\" platform=\"mixedcontent\" f=\"I-Do-Foundation.xml\"><rule from=\"^http://(?:www\\.)?idofoundation\\.org/\" to=\"https://www.idofoundation.org/\"/></ruleset>", "<ruleset name=\"I-kiz.de\" f=\"I-kiz.de.xml\"><rule from=\"^http://www\\.i-kiz\\.de/\" to=\"https://www.i-kiz.de/\"/></ruleset>", "<ruleset name=\"I.CX\" f=\"I.CX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i.materialise.com\" f=\"I.materialise.xml\"><securecookie host=\"^i\\.materialise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I.ua (partial)\" f=\"I.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i0.cz\" f=\"I0.cz.xml\"><rule from=\"^http://(?:www\\.)?i0\\.cz/\" to=\"https://i0.cz/\"/></ruleset>", "<ruleset name=\"I12 GmbH\" f=\"I12.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i2Coalition.com\" f=\"I2Coalition.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I2P2.de (partial)\" f=\"I2P.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?i2p2\\.de/+\" to=\"https://geti2p.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i3D.net\" f=\"I3D.net.xml\"><rule from=\"^http://(?:customer\\.|www\\.)?i3d\\.net/\" to=\"https://customer.i3d.net/\"/></ruleset>", "<ruleset name=\"i3wm.org\" f=\"I3wm.org.xml\"><securecookie host=\"^faq\\.i3wm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Association of Amusement Parks and Attractions\" default_off=\"failed ruleset test\" f=\"IAAPA.xml\"><securecookie host=\"^(?:.*\\.)?iaapa\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?iaapa\\.org/\" to=\"https://www.iaapa.org/\"/></ruleset>", "<ruleset name=\"IAATA.info\" f=\"IAATA.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAB.org (false MCB)\" platform=\"mixedcontent\" f=\"IAB.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAB.org (partial)\" f=\"IAB.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?iab\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IABM\" default_off=\"connection reset\" f=\"IABM.xml\"><securecookie host=\"^www\\.theiabm\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?theiabm\\.org/\" to=\"https://www.theiabm.org/\"/></ruleset>", "<ruleset name=\"IAEA.org (partial)\" f=\"IAEA.org.xml\"><securecookie host=\"^\\.iaea\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IANA.org\" f=\"IANA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAR.com\" default_off=\"failed ruleset test\" f=\"IAR.com.xml\"><securecookie host=\"^www\\.iar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iar\\.com/\" to=\"https://www.iar.com/\"/></ruleset>", "<ruleset name=\"IAS.edu (partial)\" f=\"IAS.edu.xml\"><securecookie host=\"^(?:\\.math|\\.mail\\.math|\\.pcmi|sig|\\.sns|www)\\.ias\\.edu$\" name=\".+\"/><rule from=\"^http://(admin|hs|math|s[ns]s)\\.ias\\.edu/\" to=\"https://www.$1.ias.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iATS Payments.com (partial)\" f=\"IATS_Payments.com.xml\"><rule from=\"^http://(?:www\\.)?iatspayments\\.com/\" to=\"https://www.iatspayments.com/\"/></ruleset>", "<ruleset name=\"IA Japan.org (partial)\" f=\"IA_Japan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iAmplify (partial)\" f=\"IAmplify.xml\"><securecookie host=\"^affiliates?\\.iamplify\\.com$\" name=\".*\"/><rule from=\"^http://affiliate(s)?\\.iamplify\\.com/\" to=\"https://affiliate$1.iamplify.com/\"/><rule from=\"^http://(\\w+\\.)?iamplify\\.com/(shared_|store/(shared_)?)?(css/|images/|password_forgotten|signin)\" to=\"https://$1iamplify.com/$1\"/></ruleset>", "<ruleset name=\"iAnonym.com\" default_off=\"mismatched\" f=\"IAnonym.com.xml\"><securecookie host=\"^ianonym\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ianonym\\.com/\" to=\"https://ianonym.com/\"/></ruleset>", "<ruleset name=\"IB-IBI.com (partial)\" f=\"IB-IBI.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBM.com (partial)\" f=\"IBM.xml\"><securecookie host=\"^\\.\" name=\"^PrefID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(research\\.)?ibm\\.com/\" to=\"https://www.$1ibm.com/\"/><rule from=\"^http://domino\\.watson\\.ibm\\.com/\" to=\"https://domino.research.ibm.com/\"/><rule from=\"^http://researchweb\\.watson\\.ibm\\.com/\" to=\"https://www.research.ibm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBPhoenix.com\" f=\"IBPhoenix.com.xml\"><securecookie host=\"^www\\.ibphoenix\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ibphoenix\\.com/\" to=\"https://www.ibphoenix.com/\"/></ruleset>", "<ruleset name=\"IBTimes.co.uk\" platform=\"mixedcontent\" f=\"IBTimes.co.uk.xml\"><exclusion pattern=\"^http://[dg]\\.ibtimes\\.co\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://(d|g)\\.ibtimes\\.co\\.uk/\" to=\"http://$1.ibtimes.co.uk/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"iBario.com\" default_off=\"failed ruleset test\" f=\"IBario.com.xml\"><rule from=\"^http://(?:www\\.)?ibario\\.com/\" to=\"https://www.ibario.com/\"/></ruleset>", "<ruleset name=\"IBillBoard.com (partial)\" f=\"IBillBoard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICA.se\" f=\"ICA.se.xml\"><rule from=\"^http://ica\\.se/\" to=\"https://www.ica.se/\"/><rule from=\"^http://www\\.ica\\.se/\" to=\"https://www.ica.se/\"/></ruleset>", "<ruleset name=\"ICANN.org (false MCB)\" platform=\"mixedcontent\" f=\"ICANN.org-falsemixed.xml\"><rule from=\"^http://(newgtlds|whois)\\.icann\\.org/\" to=\"https://$1.icann.org/\"/></ruleset>", "<ruleset name=\"ICANN.org (partial)\" f=\"ICANN.xml\"><exclusion pattern=\"^http://nomcom\\.icann\\.org/+(?!$|\\?)\"/><exclusion pattern=\"^http://(?:newgtlds|whois)\\.icann\\.org/+(?!sites/)\"/><securecookie host=\"(?:.*\\.)?icann\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atlarge\\.icann\\.org/\" to=\"https://atlarge.icann.org/\"/><rule from=\"^http://nomcom\\.icann\\.org/+(?=$|\\?)\" to=\"https://www.icann.org/en/groups/nomcom\"/><rule from=\"^http://((?:archive|(?:www\\.)?aso|atlarge-lists|atlas|blog|ccnso|charts|community|forms|forum|gac|mm\\.gac|gacweb|gnso|gtldresult|me|meetings|mm|new|newgtlds|prague44|public|whois|www)\\.)?icann\\.org/\" to=\"https://$1icann.org/\"/></ruleset>", "<ruleset name=\"ICBIT\" f=\"ICBIT.xml\"><securecookie host=\"^\\.icbit\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICC-CPI.int\" f=\"ICC-CPI.int.xml\"><rule from=\"^http://icc-cpi\\.int/\" to=\"https://www.icc-cpi.int/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICIMS.com\" f=\"ICIMS.com.xml\"><securecookie host=\"^(?:cdn0\\d|images)?\\.icims\\.com$\" name=\".+\"/><rule from=\"^http://www2\\.icims\\.com/+(?:$|\\?.*)\" to=\"https://www.icims.com/\"/><rule from=\"^http://www2\\.icims\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http://([\\w.-]+\\.)?icims\\.com/\" to=\"https://$1icims.com/\"/></ruleset>", "<ruleset name=\"ICLN.org\" f=\"ICLN.org.xml\"><securecookie host=\"^(?:www)?\\.icln\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICMail\" f=\"ICMail.xml\"><rule from=\"^http://(?:www\\.)?icmail\\.net/\" to=\"https://icmail.net/\"/></ruleset>", "<ruleset name=\"ICO.org.uk\" f=\"ICO.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICPEN\" f=\"ICPEN.xml\"><securecookie host=\"^icpen\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?icpen\\.org/\" to=\"https://icpen.org/\"/></ruleset>", "<ruleset name=\"ICQ.com\" f=\"ICQ.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICSA Labs.com\" f=\"ICSA_Labs.com.xml\"><securecookie host=\"^\\.icsalabs\\.com$\" name=\".+\"/><rule from=\"^http://icsalabs\\.com/\" to=\"https://www.icsalabs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICTRecht\" f=\"ICTRecht.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICTU.nl (partial)\" f=\"ICTU.nl.xml\"><rule from=\"^http://ictu\\.nl/\" to=\"https://www.ictu.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICUK\" f=\"ICUK.xml\"><rule from=\"^http://(?:www\\.)?icukhosting\\.co\\.uk/\" to=\"https://www.icukhosting.co.uk/\"/></ruleset>", "<ruleset name=\"ICanLocalize.com\" f=\"ICanLocalize.com.xml\"><securecookie host=\"^www\\.icanlocalize\\.com$\" name=\".+\"/><rule from=\"^http://icanlocalize\\.com/\" to=\"https://www.icanlocalize.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCharts (partial)\" f=\"ICharts.xml\"><securecookie host=\"^accounts\\.icharts\\.net$\" name=\".+\"/><rule from=\"^http://accounts\\.icharts\\.net/\" to=\"https://accounts.icharts.net/\"/></ruleset>", "<ruleset name=\"iClick Interactive (partial)\" f=\"IClick_Interactive.xml\"><securecookie host=\"^\\.optimix\\.asia$\" name=\"^opxPID$\"/><securecookie host=\"^e02\\.optimix\\.asia$\" name=\".+\"/><rule from=\"^http://e02\\.optimix\\.asia/\" to=\"https://e02.optimix.asia/\"/></ruleset>", "<ruleset name=\"iCloud.com\" f=\"ICloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCommons (mismatches)\" default_off=\"mismatch\" f=\"ICommons-mismatches.xml\"><securecookie host=\"^archive\\.icommons\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?archive\\.icommons\\.org/\" to=\"https://archive.icommons.org/\"/></ruleset>", "<ruleset name=\"iCommons (partial)\" f=\"ICommons.xml\"><rule from=\"^http://(?:www\\.)?icommons\\.org/wp-content/\" to=\"https://s69107.gridserver.com/wp-content/\"/></ruleset>", "<ruleset name=\"iCommunity.fr\" f=\"ICommunity.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCracked.com (partial)\" f=\"ICracked.com.xml\"><securecookie host=\"^\\.icracked\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IDC\" f=\"IDC.xml\"><securecookie host=\"^.+\\.idc\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?idc\\.com/\" to=\"https://www.idc.com/\"/><rule from=\"^http://cas\\.idc\\.com/\" to=\"https://cas.idc.com/\"/></ruleset>", "<ruleset name=\"IDG.com.au\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IDG.com.au.xml\"><securecookie host=\"^(?:www)?\\.computerworld\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(www\\.)?computerworld\\.com\\.au/\" to=\"https://$1computerworld.com.au/\"/><rule from=\"^http://demo\\.idg\\.com\\.au/\" to=\"https://d1i47h7pyjy1h0.cloudfront.net/\"/><rule from=\"^http://cdn\\.idg\\.com\\.au/\" to=\"https://dfwp37e65law8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"IDG.se (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IDG.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?extreme\\.idg\\.se/$\"/><exclusion pattern=\"^http://(?:www\\.)?tjanster\\.idg\\.se/(?:dilbertimage|j|whitepaper)s/\"/><securecookie host=\"^(?:computersweden|idgmedia)\\.idg\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?idg\\.se/\" to=\"https://www.idg.se/\"/><rule from=\"^http://sifomedia\\.idg\\.se/\" to=\"https://ssl.sifomedia.se/\"/><rule from=\"^http://(?:www\\.)?([a-rt-v]\\w+|s[ahm]\\w+)\\.idg\\.se/\" to=\"https://$1.idg.se/\"/></ruleset>", "<ruleset name=\"IDNet\" f=\"IDNet.xml\"><rule from=\"^http://(?:www\\.)?idnet\\.net/\" to=\"https://www.idnet.net/\"/></ruleset>", "<ruleset name=\"IDRIX.fr (false MCB, mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"IDRIX.fr-problematic.xml\"><securecookie host=\"^idrix\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?idrix\\.fr/\" to=\"https://idrix.fr/\"/></ruleset>", "<ruleset name=\"IDRIX.fr (partial)\" default_off=\"failed ruleset test\" f=\"IDRIX.fr.xml\"><securecookie host=\"^prod\\.idrix\\.fr$\" name=\".+\"/><rule from=\"^http://prod\\.idrix\\.fr(:8443)?/\" to=\"https://prod.idrix.fr$1/\"/></ruleset>", "<ruleset name=\"IDR Solutions.com\" f=\"IDR_Solutions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ID managed solutions.com\" f=\"ID_managed_solutions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iDownloadBlog (partial)\" f=\"IDownloadBlog.xml\"><rule from=\"^http://media\\.idownloadblog\\.com/\" to=\"https://idownloadblog.plssl.com/\"/></ruleset>", "<ruleset name=\"IED Industrieanlagen und Engineering\" default_off=\"self-signed\" f=\"IED-Industrieanlagen-und-Engineering.xml\"><securecookie host=\"^iedgmbh\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?iedgmbh\\.de/\" to=\"https://iedgmbh.de/\"/></ruleset>", "<ruleset name=\"IEEE.org (problematic)\" default_off=\"mismatch, missing certificate chain\" platform=\"mixedcontent\" f=\"IEEE-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE.org (false MCB)\" platform=\"mixedcontent\" f=\"IEEE.org-falsemixed.xml\"><securecookie host=\"^ieeexplore\\.ieee\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE.org (needs testing)\" default_off=\"needs testing\" f=\"IEEE.xml\"><exclusion pattern=\"^http://ieeexplore\\.ieee\\.org/+(?!assets/|favicon\\.ico|xpl/statse\\.webtrendslive\\.com/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?ieee\\.org/go/renew/?$\" to=\"https://www.ieee.org/membership-application/public/renew.html\"/><rule from=\"^http://(?:www\\.)?ieee\\.org/go/shop/?$\" to=\"https://www.ieee.org/membership-catalog/index.html\"/><rule from=\"^http://ieee\\.org/\" to=\"https://www.ieee.org/\"/><rule from=\"^http://www\\.ewh\\.ieee\\.org/\" to=\"https://ewh.ieee.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE USA.org (false MCB)\" platform=\"mixedcontent\" f=\"IEEE_USA.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE USA.org (partial)\" f=\"IEEE_USA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE-eLearning.org\" f=\"IEEE_eLearning_Library.xml\"><securecookie host=\"^ieee-elearning\\.org$\" name=\".+\"/><rule from=\"^http://www\\.ieee-elearning\\.org/\" to=\"https://ieee-elearning.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IELTS\" platform=\"mixedcontent\" f=\"IELTS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IET (partial)\" f=\"IET.xml\"><rule from=\"^http://(?:www\\.)?theiet\\.org/(?=help/passwordResetRequest\\.cfm|meganav/|my(?:$|[?/])|staticfiles/)\" to=\"https://www.theiet.org/\"/><rule from=\"^http://digital-library\\.theiet\\.org/(cart|css/|favicon\\.ico|files/|images/)\" to=\"https://digital-library.theiet.org/$1\"/></ruleset>", "<ruleset name=\"IETF.org (partial)\" f=\"IETF.xml\"><securecookie host=\"^\\.ietf\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFA.ch\" f=\"IFA.ch.xml\"><securecookie host=\"^(?:.*\\.)?ifa\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFEX.org\" f=\"IFEX.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFPA.ie\" f=\"IFPA.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFTTT.com (partial)\" f=\"IFTTT.com.xml\"><securecookie host=\"^ifttt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iFixit.net (partial)\" f=\"IFixit.net.xml\"><rule from=\"^http://ifixit-meta\\.dozuki\\.net/\" to=\"https://d225i93lhigkl1.cloudfront.net/\"/><rule from=\"^http://cart-products\\.ifixit\\.net/\" to=\"https://da2lh5cs8ikqj.cloudfront.net/\"/><rule from=\"^http://guide-images\\.ifixit\\.net/\" to=\"https://d3nevzfk7ii3be.cloudfront.net/\"/></ruleset>", "<ruleset name=\"iFixit.com (partial)\" f=\"IFixit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iFriends (partial)\" f=\"IFriends.xml\"><securecookie host=\"^\\.ifriends\\.net$\" name=\".*\"/><rule from=\"^http://images\\.ifriends\\.net/\" to=\"https://images.ifriends.net/\"/></ruleset>", "<ruleset name=\"IGN (problematic)\" default_off=\"akamai certificate\" f=\"IGN-problematic.xml\"><securecookie host=\"^.*\\.ign\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ign\\.com/\" to=\"https://www.ign.com/\"/><rule from=\"^http://(au|ca|de|ie|maint|dia|redirect|uk|widgets)\\.ign\\.com/\" to=\"https://$1.ign.com/\"/></ruleset>", "<ruleset name=\"IGN (partial)\" default_off=\"failed ruleset test\" f=\"IGN.xml\"><exclusion pattern=\"^http://oystatic\\.ignimgs\\.com/cache/css/(?!35/70/3570337b77bc103506ad234873b09d3f\\.css)\"/><securecookie host=\"^s\\.ign\\.com$\" name=\".+\"/><rule from=\"^http://(mail|s)\\.ign\\.com/\" to=\"https://$1.ign.com/\"/></ruleset>", "<ruleset name=\"IGNUM.cz (partial)\" f=\"IGNUM.xml\"><securecookie host=\"^(?:www\\.)?ignum\\.cz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iGaming (mismatches)\" default_off=\"mismatch, self-signed\" f=\"IGaming-mismatches.xml\"><securecookie host=\"^(?:best-pariuri-online|betclair|soccerpunt)\\.com$\" name=\".*\"/><securecookie host=\"^igaming\\.biz$\" name=\".*\"/><securecookie host=\"^pariuri\\.pariloto\\.net$\" name=\".*\"/><securecookie host=\"^tipseri\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?igaming\\.biz/\" to=\"https://igaming.biz/\"/><rule from=\"^http://(?:pariuri\\.|www\\.)?pariloto\\.net/\" to=\"https://pariuri.pariloto.net/\"/><rule from=\"^http://(?:www\\.)?(betclair|best-pariuri-online|pronosticuri-tenis|soccerpunt)\\.com/\" to=\"https://$1.com/\"/><rule from=\"^http://(?:www\\.)?tipseri\\.net/\" to=\"https://tipseri.net/\"/></ruleset>", "<ruleset name=\"iGaming (partial)\" platform=\"mixedcontent\" f=\"IGaming.xml\"><securecookie host=\"^(?:.*\\.)?(?:bwin|gambling-affiliation|itsfogo)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(bwin|gambling-affiliation)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://casino\\.bwin\\.com/\" to=\"https://casino.bwin.com/\"/><rule from=\"^http://(adserver|mcf)\\.itsfogo\\.com/\" to=\"https://$1.itsfogo.com/\"/></ruleset>", "<ruleset name=\"iGoDigital.com\" f=\"IGoDigital.com.xml\"><rule from=\"^http://(?:www\\.)?igodigital\\.com/.*\" to=\"https://www.exacttarget.com/products/predictive-intelligence/\"/><rule from=\"^http://(\\w+)\\.collect\\.igodigital\\.com/\" to=\"https://$1.collect.igodigital.com/\"/></ruleset>", "<ruleset name=\"iGrasp\" f=\"IGrasp.xml\"><securecookie host=\"^.+\\.i-grasp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.i-grasp\\.com/\" to=\"https://$1.i-grasp.com/\"/></ruleset>", "<ruleset name=\"IHC.ru\" f=\"IHC.ru.xml\"><securecookie host=\"^(?:support)?\\.ihc\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IHG Merlin.com (partial)\" default_off=\"failed ruleset test\" f=\"IHG_Merlin.com.xml\"><securecookie host=\"^(?:qa\\.|www\\.)?ihgmerlin\\.com$\" name=\".+\"/><rule from=\"^http://((?:images|imagesqa|me2|me2qa|qa|www)\\.)?ihgmerlin\\.com/\" to=\"https://$1ihgmerlin.com/\"/></ruleset>", "<ruleset name=\"IHG PLC.com (partial)\" f=\"IHG_PLC.com.xml\"><exclusion pattern=\"^http://www\\.ihgplc\\.com/+index\\.asp\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iHeart.com (partial)\" f=\"IHeart.com.xml\"><securecookie host=\"^\\.iheart\\.com$\" name=\".+\"/><rule from=\"^http://((?:iscale|pylon|www)\\.)?iheart\\.com/\" to=\"https://$1iheart.com/\"/><rule from=\"^http://(?:secure)?static\\.iheart\\.com/\" to=\"https://securestatic.iheart.com/\"/></ruleset>", "<ruleset name=\"IIPVV.nl\" f=\"IIPVV.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IIS.net\" f=\"IIS.net.xml\"><securecookie host=\"^\\.?login\\.iis\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IIS.se (partial)\" f=\"IIS.se.xml\"><securecookie host=\"^(?:domainmanager|domanhanteraren)\\.iis\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IISP.org\" f=\"IISP.org.xml\"><rule from=\"^http://(?:www\\.)?iisp\\.org/\" to=\"https://www.iisp.org/\"/><rule from=\"^http://apply\\.iisp\\.org/\" to=\"https://apply.iisp.org/\"/></ruleset>", "<ruleset name=\"IITB.ac.in (partial)\" f=\"IITB.ac.in.xml\"><securecookie host=\"^(?:www\\.cse|gpo|portal)\\.iitb\\.ac\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IJM Freedom Maker (partial)\" f=\"IJM_Freedom_Maker.xml\"><rule from=\"^http://(www\\.)?ijmfreedommaker\\.org/(apps|boost)/\" to=\"https://$1ijmfreedommaker.org/$2/\"/></ruleset>", "<ruleset name=\"IJReview.com (false MCB)\" platform=\"mixedcontent\" f=\"IJReview.com-falsemixed.xml\"><securecookie host=\"^\\.ijreview\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ijreview\\.com/\" to=\"https://www.ijreview.com/\"/></ruleset>", "<ruleset name=\"IJReview.com (partial)\" f=\"IJReview.com.xml\"><exclusion pattern=\"^http://www\\.ijreview\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IKK-Gesundplus\" default_off=\"failed ruleset test\" f=\"IKK-Gesundplus.xml\"><rule from=\"^http://(?:www\\.)?ikk-gesundplus\\.de/\" to=\"https://www.ikk-gesundplus.de/\"/></ruleset>", "<ruleset name=\"IKK-Suedwest\" f=\"IKK-Suedwest.xml\"><rule from=\"^http://(?:www\\.)?ikk-suedwest\\.de/\" to=\"https://www.ikk-suedwest.de/\"/></ruleset>", "<ruleset name=\"iKeepinCloud.com\" f=\"IKeepinCloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iKoruna\" default_off=\"failed ruleset test\" f=\"IKoruna.xml\"><securecookie host=\"^www\\.i-koruna\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ILO.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ILO.org.xml\"><rule from=\"^http://ilo\\.org/\" to=\"https://www.ilo.org/\"/><rule from=\"^http://www\\.ilo\\.org/\" to=\"https://www.ilo.org/\"/></ruleset>", "<ruleset name=\"ILG Group.com (partial)\" default_off=\"failed ruleset test\" f=\"ILX_Group.com.xml\"><rule from=\"^http://(?:www\\.)?ilxgroup\\.com/(?=consulting/images/|css/|favicon\\.ico|images/|js/)\" to=\"https://www.ilxgroup.com/\"/></ruleset>", "<ruleset name=\"iLivid (partial)\" f=\"ILivid.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iLogo\" f=\"ILogo.xml\"><securecookie host=\"^(?:.*\\.)?ilogo\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMDB (partial)\" f=\"IMDB.xml\"><exclusion pattern=\"^http://(?:[^/:@]+\\.)?imdb\\.com/images/(?:jwplayer|a/ifb/doubleclick/expand\\.html)\"/><rule from=\"^http://(?:www\\.)?imdb\\.com/(images|rg)/\" to=\"https://secure.imdb.com/$1/\"/><rule from=\"^http://(?:secure\\.|(?:i|www)\\.media-)imdb\\.com/\" to=\"https://secure.imdb.com/\"/></ruleset>", "<ruleset name=\"IMF.org\" f=\"IMF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMGrind.com\" f=\"IMGrind.com.xml\"><securecookie host=\"^(?:www)?\\.imgrind\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMMI.is\" f=\"IMMI.is.xml\"><securecookie host=\"^(?:www\\.)?immi\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMSSR.com\" f=\"IMSSR.com.xml\"><securecookie host=\"^(?:www\\.)?imssr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iMedia Communications\" default_off=\"failed ruleset test\" f=\"IMedia-Communications.xml\"><securecookie host=\"^www\\.imediaconnection\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?imediaconnection\\.com/\" to=\"https://www.imediaconnection.com/\"/></ruleset>", "<ruleset name=\"iModules\" default_off=\"failed ruleset test\" f=\"IModules.xml\"><securecookie host=\"^(?:iuaa|securelb)\\.imodules\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin(?:lb)?|clients|culinary|iuaa|niu|securelb|ucsb|www)\\.)?imodules\\.com/\" to=\"https://$1imodules.com/\"/></ruleset>", "<ruleset name=\"IMshopping.com (partial)\" f=\"IMshopping.com.xml\"><rule from=\"^http://product-images\\.imshopping\\.com/\" to=\"https://s3.amazonaws.com/product-images.imshopping.com/\"/></ruleset>", "<ruleset name=\"IN.com (partial)\" default_off=\"mismatch\" f=\"IN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INDURE\" f=\"INDURE.xml\"><securecookie host=\"^www\\.indure\\.org$\" name=\".+\"/><rule from=\"^http://www\\.indure\\.org/\" to=\"https://www.indure.org/\"/></ruleset>", "<ruleset name=\"INFN.it (partial)\" f=\"INFN.it.xml\"><exclusion pattern=\"^http://www\\.lnf\\.infn\\.it/~\\w+\"/><rule from=\"^http://www\\.presid\\.infn\\.it/\" to=\"https://web2.infn.it/presidenza/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INFOnline (partial)\" f=\"INFOnline.xml\"><rule from=\"^http://(?:www\\.)?infonline\\.de/\" to=\"https://www.infonline.de/\"/></ruleset>", "<ruleset name=\"ING Direct\" default_off=\"failed ruleset test\" f=\"ING-Direct.xml\"><securecookie host=\"^.*\\.ingdirect\\.com$\" name=\".*\"/><securecookie host=\"^www\\.ingdirect\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ingdirect\\.com/\" to=\"https://www.ingdirect.com/\"/><rule from=\"^http://(helpcenter|home|secure|shop)\\.ingdirect\\.com/\" to=\"https://$1.ingdirect.com/\"/><rule from=\"^http://(?:www\\.)?ingdirect\\.com\\.au/\" to=\"https://www.ingdirect.com.au/\"/></ruleset>", "<ruleset name=\"ING\" f=\"ING.xml\"><rule from=\"^http://ing\\.com/\" to=\"https://www.ing.com/\"/><rule from=\"^http://ing\\.nl/\" to=\"https://www.ing.nl/\"/><rule from=\"^http://([^/:@]+)\\.ing\\.com/\" to=\"https://$1.ing.com/\"/><rule from=\"^http://([^/:@]+)\\.ing\\.nl/\" to=\"https://$1.ing.nl/\"/></ruleset>", "<ruleset name=\"INPS.it\" f=\"INPS.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INSA-Lyon.fr (partial)\" f=\"INSA-Lyon.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://insa-lyon\\.fr/\" to=\"https://www.insa-lyon.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INYT.com (partial)\" f=\"INYT.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?inyt\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^(?:__utm|_ga$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?inyt\\.com/+\" to=\"https://global.nytimes.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iNaturalist.org\" f=\"INaturalist.org.xml\"><securecookie host=\"^www\\.inaturalist\\.org$\" name=\".+\"/><rule from=\"^http://inaturalist\\.org/\" to=\"https://www.inaturalist.org/\"/><rule from=\"^http://static\\.inaturalist\\.org/\" to=\"https://s3.amazonaws.com/static.inaturalist.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iNet Interactive (partial)\" f=\"INet-Interactive.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOCCC.org (partial)\" default_off=\"expired\" f=\"IOCCC.org.xml\"><rule from=\"^http://submit\\.ioccc\\.org/\" to=\"https://submit.ioccc.org/\"/></ruleset>", "<ruleset name=\"IOLProperty.co.za (partial)\" f=\"IOLProperty.co.za.xml\"><securecookie host=\"^www\\.iolproperty\\.co\\.za$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iolproperty\\.co\\.za/\" to=\"https://www.iolproperty.co.za/\"/></ruleset>", "<ruleset name=\"ION Audio\" f=\"ION-Audio.xml\"><securecookie host=\"^\\.?www\\.ionaudio\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ionaudio\\.com/\" to=\"https://www.ionaudio.com/\"/></ruleset>", "<ruleset name=\"IOPLEX Software\" f=\"IOPLEX_Software.xml\"><securecookie host=\"^(?:www\\.)?ioplex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOSCO.org\" f=\"IOSCO.org.xml\"><securecookie host=\"^\\.\" name=\"^CF(?:ID|TOKEN)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOSPP\" default_off=\"failed ruleset test\" f=\"IOSPP.xml\"><securecookie host=\"^(?:www)?\\.iospp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iOS Dev Weekly.com\" f=\"IOS_Dev_Weekly.com.xml\"><securecookie host=\"^iosdevweekly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iOS Dev Weekly.ly\" f=\"IOS_Dev_Weekly.ly.xml\"><securecookie host=\"^iosdevweekly\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOam.de\" f=\"IOam.de.xml\"><rule from=\"^http://www\\.ioam\\.de/[^?]*\" to=\"https://www.infonline.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iOpus.com (partial)\" f=\"IOpus.com.xml\"><securecookie host=\"^support\\.iopus\\.com$\" name=\".+\"/><rule from=\"^http://support\\.iopus\\.com/\" to=\"https://support.iopus.com/\"/></ruleset>", "<ruleset name=\"IP-Projects.de\" f=\"IP-Projects.de.xml\"><securecookie host=\"^www\\.ip-projects\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IP2Location.com\" f=\"IP2Location.com.xml\"><securecookie host=\"^(?:www\\.)?ip2location\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPA.go.jp\" f=\"IPA.go.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPAddressLabs.com (partial)\" f=\"IPAddressLabs.com.xml\"><rule from=\"^http://(www\\.)?ipaddresslabs\\.com/(cs|image)s/\" to=\"https://$1ipaddresslabs.com/$2s/\"/><rule from=\"^http://(?:https-)?services\\.ipaddresslabs\\.com/\" to=\"https://https-services.ipaddresslabs.com/\"/></ruleset>", "<ruleset name=\"IPCC.ch\" platform=\"mixedcontent\" f=\"IPCC.ch.xml\"><rule from=\"^http://ipcc\\.ch/\" to=\"https://ipcc.ch/\"/><rule from=\"^http://www\\.ipcc\\.ch/\" to=\"https://www.ipcc.ch/\"/></ruleset>", "<ruleset name=\"IPCdigital.co.uk (partial)\" f=\"IPCdigital.co.uk.xml\"><rule from=\"^http://([\\w-]+)(?:\\.secure)?\\.media\\.ipcdigital\\.co\\.uk/\" to=\"https://$1.secure.media.ipcdigital.co.uk/\"/></ruleset>", "<ruleset name=\"IPFS.com\" f=\"IPFS.com.xml\"><securecookie host=\"^(?:www\\.)?ipfs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPGMail.com\" f=\"IPGMail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPONWEB (partial)\" f=\"IPONWEB.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPOWER\" f=\"IPOWER.xml\"><securecookie host=\"^.*\\.ipower\\.com$\" name=\".*\"/><rule from=\"^http://images\\.ipower\\.com/\" to=\"https://secure.ipower.com/images/\"/><rule from=\"^http://([\\w\\-]+\\.)?ipower\\.com/\" to=\"https://$1ipower.com/\"/></ruleset>", "<ruleset name=\"IPQualityScore.com\" default_off=\"failed ruleset test\" f=\"IPQualityScore.com.xml\"><securecookie host=\"^(?:www\\.)?ipqualityscore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPR Software.com (partial)\" f=\"IPR_Software.com.xml\"><securecookie host=\"^(?:www\\.)?cms\\.iprsoftware\\.com$\" name=\".+\"/><rule from=\"^http://cms\\.ipressroom\\.com\\.s3\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/cms.ipressroom.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPSE.co.uk\" f=\"IPSE.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPTorrents\" f=\"IPTorrents.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPVanish.com\" f=\"IPVanish.com.xml\"><securecookie host=\"^.*\\.ipvanish\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPXE.org (partial)\" f=\"IPXE.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ipxe\\.org/(?!.*\\?do=(?:login|resendpwd|register))\"/><rule from=\"^http://((?:boot|git|www)\\.)?ipxe\\.org/\" to=\"https://$1ipxe.org/\"/></ruleset>", "<ruleset name=\"IP check (partial)\" f=\"IP_check.xml\"><rule from=\"^http://(?:www\\.)?ip-check\\.info/(all\\.css|authAttack\\.php|(?:auth|cache)\\.css\\.php|images/|ip-check\\.png)\" to=\"https://ip-check.info/$1\"/></ruleset>", "<ruleset name=\"iPage\" f=\"IPage.xml\"><securecookie host=\".*\\.ipage\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ipage\\.com/\" to=\"https://www.ipage.com/\"/><rule from=\"^http://([\\w-]+)\\.ipage\\.com/\" to=\"https://$1.ipage.com/\"/></ruleset>", "<ruleset name=\"iPinYou.com (partial)\" f=\"IPinYou.com.xml\"><securecookie host=\"^(?:console|stats)\\.ipinyou\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPredator.se (partial)\" f=\"IPredator.xml\"><securecookie host=\"^(?:.*\\.)?ipredator\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IProduction\" f=\"IProduction.xml\"><securecookie host=\"^(?:www)?\\.iproduction\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?iproduction\\.com/\" to=\"https://www.iproduction.com/\"/></ruleset>", "<ruleset name=\"IPsec.pl\" f=\"IPsec.pl.xml\"><securecookie host=\"^\\.ipsec\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPv6-adresse.dk\" f=\"IPv6-adresse.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPwnAge.com\" f=\"IPwnAge.com.xml\"><securecookie host=\"^(?:www\\.)?ipwnage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPython.org\" f=\"IPython.org.xml\"><rule from=\"^http://(?:www\\.)?ipython\\.org/\" to=\"https://ipython.org/\"/></ruleset>", "<ruleset name=\"IQ Digital Media Marketing\" f=\"IQ-Media-Marketing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRAAA.org\" f=\"IRAAA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRCTC.co.in\" f=\"IRCTC.co.in.xml\"><rule from=\"^http://(ecatering|services)\\.irctc\\.co\\.in/\" to=\"https://www.$1.irctc.co.in/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRC Reviews\" default_off=\"expired, mismatched, self-signed\" f=\"IRC_Reviews.xml\"><rule from=\"^http://(?:www\\.)?ircreviews\\.org/\" to=\"https://ircreviews.org/\"/></ruleset>", "<ruleset name=\"IRF.se\" platform=\"mixedcontent\" f=\"IRF.se.xml\"><rule from=\"^http://www\\.irf\\.se/\" to=\"https://www.irf.se/\"/><rule from=\"^http://irf\\.se/\" to=\"https://www.irf.se/\"/></ruleset>", "<ruleset name=\"IRILL.org\" f=\"IRILL.org.xml\"><rule from=\"^http://www\\.irill\\.org/\" to=\"https://www.irill.org/\"/></ruleset>", "<ruleset name=\"IRISA.fr (partial)\" f=\"IRISA.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRON Search\" default_off=\"failed ruleset test\" f=\"IRON_Search.xml\"><rule from=\"^http://ironsearch\\.com/\" to=\"https://www.ironsearch.com/\"/><rule from=\"^http://(secure|www)\\.ironsearch\\.com/\" to=\"https://$1.ironsearch.com/\"/></ruleset>", "<ruleset name=\"IRON Solutions (partial)\" f=\"IRON_Solutions.xml\"><rule from=\"^http://images\\.ironsolutions\\.com/\" to=\"https://images.ironsolutions.com/\"/></ruleset>", "<ruleset name=\"IRS.gov\" f=\"IRS.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://irs\\.gov/\" to=\"https://www.irs.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRTF.org\" f=\"IRTF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISC.org\" f=\"ISC.xml\"><securecookie host=\".\\.isc\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISC2.org (partial)\" f=\"ISC2.org.xml\"><securecookie host=\"^\\.isc2\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISC2 Cares.org\" f=\"ISC2_cares.org.xml\"><rule from=\"^http://(?:www\\.)?isc2cares\\.org/\" to=\"https://www.isc2cares.org/\"/></ruleset>", "<ruleset name=\"ISEAS.edu.sg (partial)\" f=\"ISEAS.edu.sg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iSEC Partners\" f=\"ISEC-Partners.xml\"><securecookie host=\"^(?:.*\\.)?isecpartners\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISNIC.is\" f=\"ISNIC.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISO.org (partial)\" f=\"ISO.org.xml\"><securecookie host=\"^connect\\.iso\\.org$\" name=\".+\"/><rule from=\"^http://connect\\.iso\\.org/\" to=\"https://connect.iso.org/\"/></ruleset>", "<ruleset name=\"ISOC.org.br\" default_off=\"plaintext reply\" f=\"ISOC.org.br.xml\"><securecookie host=\"^(?:www\\.)?isoc\\.org\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISOC.org\" f=\"ISOC.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iSOC24.com\" f=\"ISOC24.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISO Cpp.org\" f=\"ISO_Cpp.org.xml\"><securecookie host=\"^(?:www\\.)?isocpp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPGids.com\" f=\"ISPGids.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPID.nl\" default_off=\"expired\" f=\"ISPID.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPam.nl\" f=\"ISPam.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPsystem (partial)\" default_off=\"failed ruleset test\" f=\"ISPsystem.xml\"><rule from=\"^http://my\\.ispsystem\\.com/\" to=\"https://my.ispsystem.com/\"/></ruleset>", "<ruleset name=\"ISS World (partial)\" f=\"ISS-World.xml\"><rule from=\"^http://portal\\.issworld\\.com/\" to=\"https://portal.issworld.com/\"/></ruleset>", "<ruleset name=\"ISS Africa.org\" f=\"ISS_Africa.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT:Agenten\" f=\"IT-Agenten.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iT-Cube Systems\" default_off=\"mismatched\" f=\"IT-Cube_Systems.xml\"><securecookie host=\"^www\\.it-cube\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?it-cube\\.net/\" to=\"https://www.it-cube.net/\"/></ruleset>", "<ruleset name=\"IT-Offshore.co.uk\" f=\"IT-Offshore.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT University of Copenhagen\" platform=\"mixedcontent\" f=\"IT-University-of-Copenhagen.xml\"><securecookie host=\"^.*\\.itu\\.dk$\" name=\".*\"/><rule from=\"^http://((?:intranet|mit|wayf|www1?)\\.)?itu\\.dk/\" to=\"https://$1itu.dk/\"/></ruleset>", "<ruleset name=\"IT2.nl\" f=\"IT2.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITAlliance.com\" default_off=\"failed ruleset test\" f=\"ITAlliance.com.xml\"><securecookie host=\"^(?:www\\.)?italliance\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITC.mx (partial)\" f=\"ITC.mx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITCelaya.edu.mx (partial)\" f=\"ITCelaya.edu.mx.xml\"><securecookie host=\"^sii\\.itcelaya\\.edu\\.mx$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITEA 3.org\" f=\"ITEA_3.org.xml\"><securecookie host=\"^itea3\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITER.org\" f=\"ITER.org.xml\"><securecookie host=\"^portal\\.iter\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITMB.nl\" f=\"ITMB.nl.xml\"><securecookie host=\"^\\.itmb\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT Manie\" f=\"ITManie.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITPC (partial)\" f=\"ITPC.xml\"><exclusion pattern=\"^http://www\\.iptc\\.org/gfxgen(?:$|\\?)\"/><securecookie host=\"^(?:.*\\.)?iptc\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?iptc\\.org/\" to=\"https://www.iptc.org/\"/></ruleset>", "<ruleset name=\"ITSPA.org.uk\" f=\"ITSPA.org.uk.xml\"><securecookie host=\"^(?:www\\.)?itspa\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITU (partial)\" f=\"ITU.xml\"><securecookie host=\"^(?:erecruit|itunews)\\.itu\\.int$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?itu\\.int/(CookieAuth\\.dll|favicon\\.ico|lib/|net/)\" to=\"https://www.itu.int/$1\"/><rule from=\"^http://(erecruit|itunews)\\.itu\\.int/\" to=\"https://$1.itu.int/\"/></ruleset>", "<ruleset name=\"ITV.com (partial)\" f=\"ITV.com.xml\"><rule from=\"^http://(?:www\\.)?itv\\.com/thestore(?:$|[?/].*)\" to=\"https://www.jmldirect.com/\"/><rule from=\"^http://(?:www\\.)?itv\\.com/(?=assets/|itvplayer(?:$|[?/])|mediaplayer/)\" to=\"https://www.itv.com/\"/><rule from=\"^http://(beta|i01-www)\\.itv\\.com/\" to=\"https://$1.itv.com/\"/><rule from=\"^http://www\\.itvstatic\\.com/\" to=\"https://www.itvstatic.com/\"/></ruleset>", "<ruleset name=\"ITWeb.co.za (partial)\" f=\"ITWeb.co.za.xml\"><securecookie host=\"^secure\\.itweb\\.co\\.za$\" name=\".+\"/><rule from=\"^http://secure\\.itweb\\.co\\.za/\" to=\"https://secure.itweb.co.za/\"/></ruleset>", "<ruleset name=\"ITX.com\" default_off=\"self-signed\" f=\"ITX.com.xml\"><securecookie host=\"^(?:www\\.)?itx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT Dashboard.gov\" f=\"IT_Dashboard.gov.xml\"><securecookie host=\"^\\.my.itdashboard\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT Toolbox.com (partial)\" f=\"IT_Toolbox.com.xml\"><rule from=\"^http://images\\.ittoolbox\\.com/\" to=\"https://images.ittoolbox.com/\"/><rule from=\"^http://userimages\\.ittoolbox\\.com/\" to=\"https://deh50at6yod5w.cloudfront.net/\"/></ruleset>", "<ruleset name=\"my IT Works.com\" f=\"IT_Works.xml\"><securecookie host=\"^(?:w*\\.)?myitworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT bookshelf.com\" f=\"IT_bookshelf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.itbookshelf\\.com/\" to=\"https://itbookshelf.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT matrix.eu\" f=\"IT_matrix.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTactic.com\" default_off=\"mismatched\" f=\"ITactic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://itactic\\.com/\" to=\"https://www.itactic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITalian Network Operators Group (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"ITalian_Network_Operators_Group.xml\"><rule from=\"^http://lists\\.itnog\\.it/\" to=\"https://lists.itnog.it/\"/></ruleset>", "<ruleset name=\"iTechnician.co.uk\" f=\"ITechnician.co.uk.xml\"><securecookie host=\"^\\.itechnician\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTerm2.org\" default_off=\"failed ruleset test\" f=\"ITerm2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTunes.com\" f=\"ITunes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IUCNredlist.org (partial)\" f=\"IUCNredlist.org.xml\"><rule from=\"^http://i\\.iucnredlist\\.org/\" to=\"https://d17e9fs5g1pnhb.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Indiana University Health (partial)\" f=\"IUHealth.org.xml\"><securecookie host=\"^myiuhealth\\.org$\" name=\".+\"/><rule from=\"^http://www\\.myiuhealth\\.org/\" to=\"https://myiuhealth.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IUPUI.edu (partial)\" f=\"IUPUI.edu.xml\"><exclusion pattern=\"http://cs\\.iupui\\.edu/(?!~)\"/><rule from=\"^http://cs\\.iupui\\.edu/\" to=\"https://cs.iupui.edu/\"/></ruleset>", "<ruleset name=\"IVPN.net\" f=\"IVPN.net.xml\"><securecookie host=\"^www\\.ivpn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IVW (partial)\" f=\"IVW.xml\"><securecookie host=\"^heft\\.ivw\\.eu$\" name=\".+\"/><rule from=\"^http://heft\\.ivw\\.eu/\" to=\"https://heft.ivw.eu/\"/></ruleset>", "<ruleset name=\"iVoox.com\" f=\"IVoox.com.xml\"><securecookie host=\"^www\\.ivoox\\.com$\" name=\".+\"/><rule from=\"^http://images1\\.ivoox\\.com/\" to=\"https://d24j0spkseaxmc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWM Network.com\" default_off=\"self-signed\" f=\"IWM_Network.com.xml\"><rule from=\"^http://(?:www\\.)?iwmnetwork\\.com/\" to=\"https://iwmnetwork.com/\"/></ruleset>", "<ruleset name=\"iWOWCase.com\" f=\"IWOWCase.xml\"><securecookie host=\"^\\.iwowcase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWantClips.com\" f=\"IWantClips.com.xml\"><securecookie host=\"^iwantclips\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWeb.com (partial)\" f=\"IWeb.com.xml\"><securecookie host=\"^\\.iweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWebReader (partial)\" f=\"IWebReader.xml\"><rule from=\"^http://secure\\.iwebreader\\.com/\" to=\"https://secure.iwebreader.com/\"/><rule from=\"^http://static\\.iwebreader\\.com/\" to=\"https://du4ozcxd5zwr5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"IWight.com\" f=\"IWight.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWork.com\" f=\"IWork.com.xml\"><rule from=\"^http://iwork\\.com/\" to=\"https://www.iwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWouldDo.It (partial)\" f=\"IWouldDo.It.xml\"><rule from=\"^http://iwoulddo\\.it/\" to=\"https://www.iwoulddo.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IXI (mismatches)\" default_off=\"mismatch\" f=\"IXI-mismatches.xml\"><rule from=\"^http://(?:www\\.)?ixicorp\\.com/wp-content/\" to=\"https://www.ixicorp.com/wp-content/\"/></ruleset>", "<ruleset name=\"IXI (partial)\" f=\"IXI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IX Web Hosting.com (partial)\" f=\"IX_Web_Hosting.com.xml\"><exclusion pattern=\"^http://www\\.ixwebhosting\\.com/(?!(?:blog|support)/wp-content/|templates/)\"/><securecookie host=\"^\\.ixwebhosting\\.com$\" name=\"^uainfo$\"/><securecookie host=\"^m(?:anage|y)\\.ixwebhosting\\.com$\" name=\".+\"/><rule from=\"^http://email\\.ixwebhosting\\.com/\" to=\"https://webmail.opentransfer.com/horde/imp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iXit.cz\" f=\"IXit.cz.xml\"><rule from=\"^http://(?:www\\.)?ixit\\.cz/\" to=\"https://ixit.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iXsystems.com\" f=\"IXsystems.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iYouPort.com\" f=\"IYouPort.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IZEA.com\" f=\"IZEA.com.xml\"><securecookie host=\"^izea\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Am The Cavalry.org\" f=\"I_Am_The_Cavalry.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Fight Surveillance.org\" f=\"I_Fight_Surveillance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Give Online.com\" f=\"I_Give_Online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Make Things Work\" f=\"I_Make_Things_Work.xml\"><securecookie host=\"^(?:www)?\\.imakethingswork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Want U (partial)\" f=\"I_Want_U.xml\"><rule from=\"^http://cdn\\.keepstat\\.com/(?!(?:\\?.*)?$)\" to=\"https://cdn.keepstat.com/\"/></ruleset>", "<ruleset name=\"I love Freegle.org (partial)\" f=\"I_love_Freegle.org.xml\"><securecookie host=\"^directv2.ilovefreegle.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i love blue sea.com\" default_off=\"failed ruleset test\" f=\"I_love_blue_sea.com.xml\"><securecookie host=\"^\\.(?:www\\.)?ilovebluesea\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iamnoone-solutions.net (partial)\" f=\"Iamnoone-solutions.net.xml\"><rule from=\"^http://analytics\\.iamnoone-solutions\\.net/\" to=\"https://analytics.iamnoone-solutions.net/\"/><rule from=\"^http://cdn\\.analytics\\.iamnoone-solutions\\.net/\" to=\"https://4014-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"ian.com\" f=\"Ian.com.xml\"><securecookie host=\"^\\.ian\\.com$\" name=\".+\"/><rule from=\"^http://ian\\.com/\" to=\"https://www.ian.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IantheHenry.com\" f=\"IantheHenry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iberdrola (partial)\" f=\"Iberdrola.xml\"><securecookie host=\"^(?:www)?\\.iberdrola\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iberdrola\\.es/\" to=\"https://www.iberdrola.es/\"/></ruleset>", "<ruleset name=\"Iberia\" default_off=\"failed ruleset test\" f=\"Iberia.xml\"><rule from=\"^http://iberia\\.com/\" to=\"https://iberia.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.iberia\\.com/\" to=\"https://$1.iberia.com/\"/></ruleset>", "<ruleset name=\"Iberiabank\" f=\"Iberiabank.xml\"><securecookie host=\"^(?:w*\\.)?iberiabank\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibibo.com (partial)\" f=\"Ibibo.com.xml\"><rule from=\"^http://ads\\.ibibo\\.com/\" to=\"https://ads.ibibo.com/\"/></ruleset>", "<ruleset name=\"Ibiza Rocks (partial)\" f=\"Ibiza-Rocks.xml\"><securecookie host=\"^.*\\.ibizarocks\\.com$\" name=\".*\"/><rule from=\"^http://(bookings|mrh)\\.ibizarocks\\.com/\" to=\"https://$1.ibizarocks.com/\"/></ruleset>", "<ruleset name=\"IBlocklist.com (partial)\" f=\"Iblocklist.com.xml\"><securecookie host=\"^www\\.iblocklist\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ibood.com\" f=\"Ibood.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibqonline.com\" default_off=\"failed ruleset test\" f=\"Ibqonline.com.xml\"><securecookie host=\"^www\\.ibqonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ibqonline\\.com/\" to=\"https://www.ibqonline.com/\"/></ruleset>", "<ruleset name=\"Ibs.sberbank.sk\" default_off=\"failed ruleset test\" f=\"Ibs.sberbank.sk.xml\"><rule from=\"^http://ibs\\.sberbank\\.sk/\" to=\"https://ibs.sberbank.sk/\"/></ruleset>", "<ruleset name=\"ibtracking.com\" f=\"Ibtracking.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ic-live.com\" f=\"Ic-live.com.xml\"><securecookie host=\"^\\.ic-live\\.com$\" name=\".+\"/><rule from=\"^http://(c\\d+\\.|www\\.)?ic-live\\.com/\" to=\"https://$1ic-live.com/\"/></ruleset>", "<ruleset name=\"icanhazip.com\" f=\"Icanhazip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icculus.org\" f=\"Icculus.xml\"><rule from=\"^http://(([a-zA-Z0-9-]+\\.)?icculus\\.org)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"IceDivX.com\" f=\"IceDivX.com.xml\"><securecookie host=\"^\\.icedivx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IceFilms.info\" f=\"IceFilms.info.xml\"><securecookie host=\"^\\.icefilms\\.info$\" name=\"(?:__cfduid|__utm\\w+|cf_clearance)$\"/><securecookie host=\"^(?:\\.forum\\.|www\\.)?icefilms\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ice Heberg.fr\" default_off=\"mismatched\" f=\"IceHerberg.xml\"><securecookie host=\"^(?:www\\.)?iceheberg\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IceWarp.com (partial)\" f=\"IceWarp.com.xml\"><securecookie host=\"^(?:server|www)\\.icewarp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icecat.biz (partial)\" default_off=\"broken\" f=\"Icecat.xml\"><exclusion pattern=\"^http://(?:(?:at|be|ch|cz|es|fr|it|nl|se|ua|uk|us|www)\\.)?icecat\\.biz/forum\\.cgi\"/><securecookie host=\"^((?:at|be|ch|cz|es|fr|it|nl|se|ua|uk|us|www)\\.)?icecat\\.biz$\" name=\"^(?:isMobile|showMobile)$\"/><securecookie host=\"^\\.icecat\\.biz$\" name=\"^icecat_bizULocation$\"/><securecookie host=\"^\\.(?:(?:at|be|ch|cz|es|fr|it|nl|se|ua|uk|us|www)\\.)?icecat\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icehost.is (partial)\" f=\"Icehost.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iceleads.com\" f=\"Iceleads.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"icez.net\" default_off=\"expired, missing certificate chain\" f=\"Icez.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ichkoche.at\" f=\"IchKoche.at.xml\"><securecookie host=\"^(?:.*\\.)?ichkoche.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icinga\" f=\"Icinga.xml\"><securecookie host=\"^(?:.*\\.)?icinga\\.org$\" name=\".*\"/><rule from=\"^http://((?:dev|translate|wiki|www)\\.)?icinga\\.org/\" to=\"https://$1icinga.org/\"/></ruleset>", "<ruleset name=\"icio.us\" f=\"Icio.us.xml\"><securecookie host=\"^\\.api\\.del\\.icio\\.us$\" name=\".*\"/><rule from=\"^http://(?:www\\.|del\\.)?icio\\.us/\" to=\"https://delicious.com/\"/><rule from=\"^http://images\\.del\\.icio\\.us/\" to=\"https://api.del.icio.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iconfinder.com (partial)\" f=\"Iconfinder.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"icsdelivery.com\" f=\"Icsdelivery.com.xml\"><securecookie host=\"^(?:enroll|www)\\.icsdelivery\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?icsdelivery\\.com/\" to=\"https://www.icsdelivery.com/\"/><rule from=\"^http://enroll\\.icsdelivery\\.com/\" to=\"https://enroll.icsdelivery.com/\"/></ruleset>", "<ruleset name=\"icstars.com\" f=\"Icstars.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"id Software\" default_off=\"mismatch\" f=\"Id-Software.xml\"><rule from=\"^http://(?:www\\.)?idsoftware\\.com/\" to=\"https://www.idsoftware.com/\"/></ruleset>", "<ruleset name=\"idQQimg.com\" f=\"IdQQimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idea Fit.com (partial)\" f=\"Idea_Fit.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?ideafit\\.com/+(?!favicon\\.ico|files/|misc/|sites/)\"/><rule from=\"^http://(?:cdn[1-6]?\\.|www\\.)?ideafit\\.com/\" to=\"https://www.ideafit.com/\"/><rule from=\"^http://api\\.ideafit\\.com/\" to=\"https://api.ideafit.com/\"/></ruleset>", "<ruleset name=\"Idea Stations.org (partial)\" f=\"Idea_Stations.org.xml\"><exclusion pattern=\"^http://ideastations\\.org/+(?!misc/|sites/)\"/><rule from=\"^http://cdn\\.ideastations\\.org\\.s3\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/cdn.ideastations.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idea Storm.com\" f=\"Idea_Storm.com.xml\"><rule from=\"^http://(?:www\\.)?ideastorm\\.com/\" to=\"https://dellideas.secure.force.com/\"/></ruleset>", "<ruleset name=\"Idealo.com (partial)\" f=\"Idealo.com.xml\"><securecookie host=\"^business\\.idealo\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ideas on board.com\" default_off=\"self-signed\" f=\"Ideas_on_board.com.xml\"><rule from=\"^http://(?:www\\.)?ideasonboard\\.com/\" to=\"https://ideasonboard.com/\"/></ruleset>", "<ruleset name=\"Ideel.com (partial)\" f=\"Ideel.com.xml\"><exclusion pattern=\"^http://www\\.ideel\\.com/+(?!favicon\\.ico|login(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"idefi\" default_off=\"failed ruleset test\" f=\"Idefi.xml\"><securecookie host=\"^(?:www)?\\.idefimusic.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idefix\" platform=\"mixedcontent\" f=\"Idefix.xml\"><securecookie host=\"^www\\.idefix\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?idefix\\.com/\" to=\"https://www.idefix.com/\"/></ruleset>", "<ruleset name=\"IdenTrust.com\" f=\"IdenTrust.com.xml\"><rule from=\"^http://identrust\\.com/\" to=\"https://www.identrust.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdenTrustSSL.com\" f=\"IdenTrustSSL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Identica\" default_off=\"failed ruleset test\" f=\"Identica.xml\"><exclusion pattern=\"^http://identi\\.ca/main/openid\"/><rule from=\"^http://(?:www\\.)?identi\\.ca/\" to=\"https://identi.ca/\"/><rule from=\"^http://files\\.status\\.net/\" to=\"https://files.status.net/\"/><rule from=\"^http://(meteor\\d+\\.identi\\.ca)/\" to=\"https://$1/\"/><rule from=\"^http://avatar\\.identi\\.ca/\" to=\"https://avatar3.status.net/i/identica/\"/><securecookie host=\"^identi\\.ca$\" name=\".*\"/></ruleset>", "<ruleset name=\"Identity Stronghold\" platform=\"mixedcontent\" f=\"Identity-Stronghold.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdentityTheft.gov\" f=\"IdentityTheft.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdentityTheft\" default_off=\"failed ruleset test\" f=\"IdentityTheft.xml\"><rule from=\"^http://(?:www\\.)?identitytheft\\.org\\.uk/\" to=\"https://www.identitytheft.org.uk/\"/></ruleset>", "<ruleset name=\"Identity Workshop.eu\" f=\"Identity_Workshop.eu.xml\"><securecookie host=\"^(?:www\\.)?identityworkshop\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idenyt.dk\" f=\"Idenyt.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdeoClick.com\" f=\"IdeoClick.com.xml\"><securecookie host=\"^(?:www\\.)?ideoclick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ideone.com\" f=\"Ideone.com.xml\"><securecookie host=\"^(?:www\\.)?ideone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idevelop.ro\" f=\"Idevelop.ro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idg.de\" f=\"Idg.de.xml\"><rule from=\"^http://adserver\\.idg\\.de/\" to=\"https://adserver.idg.de/\"/></ruleset>", "<ruleset name=\"iesnare.com\" f=\"Iesnare.com.xml\"><securecookie host=\"^\\.iesnare\\.com$\" name=\"^token$\"/><rule from=\"^http://mpsnare\\.iesnare\\.com/\" to=\"https://mpsnare.iesnare.com/\"/></ruleset>", "<ruleset name=\"Ifortuna.sk\" f=\"Ifortuna.sk.xml\"><rule from=\"^http://(?:www\\.)?ifortuna\\.sk/\" to=\"https://www.ifortuna.sk/\"/></ruleset>", "<ruleset name=\"igHome.com\" f=\"IgHome.com.xml\"><securecookie host=\"^(?:rss|www)\\.ighome\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ighome\\.com/\" to=\"https://www.ighome.com/\"/><rule from=\"^http://rss\\.ighome\\.com/\" to=\"https://rss.ighome.com/\"/></ruleset>", "<ruleset name=\"igalia.com (self-signed)\" default_off=\"expired, self-signed\" f=\"Igalia-self-signed.xml\"><exclusion pattern=\"^http://www\\.igalia\\.com/(?!typo3(?:conf|temp)/)\"/><securecookie host=\"^blogs\\.igalia\\.com$\" name=\".*\"/><rule from=\"^http://(blogs|www)\\.igalia\\.com/\" to=\"https://$1.igalia.com/\"/></ruleset>", "<ruleset name=\"Igalia (partial)\" f=\"Igalia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"igcdn.com\" f=\"Igcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ignite Realtime.org\" f=\"Ignite_Realtime.org.xml\"><securecookie host=\"^(?:community\\.|www\\.)?igniterealtime\\.org$\" name=\".+\"/><rule from=\"^http://(community\\.|www\\.)?igniterealtime\\.org/\" to=\"https://$1igniterealtime.org/\"/><rule from=\"^http://issues\\.igniterealtime\\.org/+\" to=\"https://igniterealtime.org/issues/\"/></ruleset>", "<ruleset name=\"IgnitionDeck\" f=\"IgnitionDeck.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Igolder.com\" f=\"Igolder.com.xml\"><rule from=\"^http://(?:www\\.)?igolder\\.com/\" to=\"https://www.igolder.com/\"/></ruleset>", "<ruleset name=\"igowild.com\" f=\"Igowild.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ihug (partial)\" default_off=\"expired\" f=\"Ihug.xml\"><rule from=\"^http://homepages\\.ihug\\.co\\.nz/\" to=\"https://homepages.ihug.co.nz/\"/></ruleset>", "<ruleset name=\"iiBuy.com.au\" default_off=\"failed ruleset test\" f=\"IiBuy.com.au.xml\"><securecookie host=\"^\\.?www\\.iibuy\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iiNet.net.au (partial)\" f=\"IiNet.net.au.xml\"><securecookie host=\"^mail\\.iinet\\.net\\.au$\" name=\"^atmail6$\"/><rule from=\"^http://((?:hostedmail|iihelp|mail|toolbox3?|www)\\.)?iinet\\.net\\.au/\" to=\"https://$1iinet.net.au/\"/><rule from=\"^http://hostedwebmail\\.iinet\\.net\\.au/$\" to=\"https://hostedmail.iinet.net.au/\"/></ruleset>", "<ruleset name=\"Ikea.com (partial)\" f=\"Ikea.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?ikea\\.com/(?!favicon\\.ico|img_dot_com/|ms/(?:css|img|js)/)\"/><securecookie host=\"^\\.ikea\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?ikea\\.com/\" to=\"https://secure.ikea.com/\"/><rule from=\"^http://metrics\\.ikea\\.com/\" to=\"https://ikea-com.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ikgalekkerslapen.nl\" f=\"Ikgalekkerslapen.nl.xml\"><securecookie host=\"^www\\.ikgalekkerslapen\\.nl$\" name=\".+\"/><rule from=\"^http://www\\.ikgalekkerslapen\\.nl/\" to=\"https://www.ikgalekkerslapen.nl/\"/></ruleset>", "<ruleset name=\"Iki.fi\" default_off=\"failed ruleset test\" f=\"Iki.fi.xml\"><rule from=\"^http://(?:www\\.)?iki\\.fi/\" to=\"https://www.iki.fi/\"/><rule from=\"^http://ikiwiki\\.iki\\.fi/\" to=\"https://ikiwiki.iki.fi/\"/></ruleset>", "<ruleset name=\"ikiwiki.info\" f=\"Ikiwiki.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ikoula.com\" f=\"Ikoula.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iljmp.com\" f=\"Iljmp.com.xml\"><securecookie host=\"(?:.*\\.)?iljmp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?iljmp\\.com/\" to=\"https://$1iljmp.com/\"/></ruleset>", "<ruleset name=\"Illinois Department of Financial & Professional Regulation\" f=\"Illinois_Department_of_Financial_and_Professional_Regulation.xml\"><securecookie host=\"^www\\.idfpr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?idfpr\\.com/\" to=\"https://www.idfpr.com/\"/></ruleset>", "<ruleset name=\"Illinois Law Review.org (false MCB)\" platform=\"mixedcontent\" f=\"Illinois_Law_Review.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illinois Tech.org\" f=\"Illinois_Tech.org.xml\"><securecookie host=\"^www\\.illinoistech\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illumina.com (partial)\" f=\"Illumina.com.xml\"><securecookie host=\"^my\\.illumina\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illuminated Pots\" f=\"Illuminated_Pots.xml\"><securecookie host=\"^(?:\\.?www)?\\.illuminated-pots\\.com$\" name=\".+\"/><rule from=\"^http://www\\.illuminated-pots\\.com/\" to=\"https://www.illuminated-pots.com/\"/></ruleset>", "<ruleset name=\"illumos.org (partial)\" f=\"Illumos.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ilmasto-opas\" f=\"Ilmasto-opas.xml\"><securecookie host=\"^ilmasto-opas\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"igvita.com (partial)\" f=\"Ilya_Grigorik.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I'm a Bad Idea (partial)\" default_off=\"mismatch\" f=\"Im-a-Bad-Idea.xml\"><rule from=\"^http://vanessatorrivilla\\.com/\" to=\"https://www.vanessatorrivilla.com/\"/><rule from=\"^http://www\\.vanessatorrivilla\\.com/(display/|favicon\\.ico|storage/|universal/)\" to=\"https://www.vanessatorrivilla.com/$1\"/></ruleset>", "<ruleset name=\"ImQuQu.com\" f=\"ImQuQu.com.xml\"><rule from=\"^http://(?:www\\.)?imququ\\.com/\" to=\"https://www.imququ.com/\"/></ruleset>", "<ruleset name=\"Imag.fr (partial)\" f=\"Imag.fr.xml\"><exclusion pattern=\"^http://cmp\\.imag\\.fr/+(?!_img/|\\w+\\.jpg|favicon\\.ico|style\\.css)\"/><rule from=\"^http://msiam\\.imag\\.fr/\" to=\"https://iam.imag.fr/\"/><rule from=\"^http://(c-vpn-pub|cmp|forge|iam|mi2s|trombi-timc)\\.imag\\.fr/\" to=\"https://$1.imag.fr/\"/></ruleset>", "<ruleset name=\"Image-Maps.com\" f=\"Image-Maps.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageComics.com\" f=\"ImageComics.com.xml\"><securecookie host=\"^(?:www\\.)?imagecomics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageMagick.org (partial)\" f=\"ImageMagick.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageOptim.com\" f=\"ImageOptim.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageRights.com\" f=\"ImageRights.com.xml\"><securecookie host=\"^(?:www\\.)?imagerights\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageShack (partial)\" f=\"ImageShack.us.xml\"><exclusion pattern=\"^http://imageshack\\.us/f/.*\"/><exclusion pattern=\"^http://iload\\d\\.imageshack\\.us/$\"/><exclusion pattern=\"^http://kb\\.imageshack\\.us/(?!img/favicon\\.ico$)\"/><securecookie host=\"^(?:.*\\.)?imageshack\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?imageshack\\.com/\" to=\"https://$1imageshack.com/\"/><rule from=\"^http://kb\\.imageshack\\.us/img/favicon\\.ico$\" to=\"https://imageshack.us/favicon.ico\"/><rule from=\"^http://stream\\.imageshack\\.us/favicon\\.ico$\" to=\"https://imageshack.us/favicon.ico\"/><rule from=\"^http://img(\\d{1,3})\\.imageshack\\.us/\" to=\"https://img$1.imageshack.us/\"/><rule from=\"^http://(?:www\\.)?([ac-r]\\w+\\.)?imageshack\\.us/\" to=\"https://$1imageshack.us/\"/><rule from=\"^https://iload(\\d)\\.imageshack\\.us/\" to=\"http://iload$1.imageshack.us/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Imageforensic.org\" f=\"Imageforensic.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"images-CreateSpace.com\" f=\"Images-CreateSpace.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagesBN.com\" f=\"ImagesBN.com.xml\"><rule from=\"^http://s?img([12])\\.imagesbn\\.com/\" to=\"https://simg$1.imagesbn.com/\"/><rule from=\"^http://img3\\.imagesbn\\.com/\" to=\"https://img3.imagesbn.com/\"/></ruleset>", "<ruleset name=\"Imagestash\" f=\"Imagestash.xml\"><securecookie host=\"^(?:www\\.)?imagestash\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imation.com (partial)\" f=\"Imation.com.xml\"><securecookie host=\"^(?:support\\.|www\\.)?imation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imeem.com\" f=\"Imeem.com.xml\"><rule from=\"^http://(?:www\\.)?imeem\\.com/\" to=\"https://www.myspace.com/music/\"/></ruleset>", "<ruleset name=\"Imensa.de\" f=\"Imensa.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imerys.com\" f=\"Imerys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imfimg.com\" f=\"Imfimg.com.xml\"><securecookie host=\"^(?:w*\\.)?imfimg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"img.com.au (partial)\" f=\"Img.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Img.shields.io\" f=\"Img.shields.io.xml\"><rule from=\"^http://img\\.shields\\.io/\" to=\"https://img.shields.io/\"/></ruleset>", "<ruleset name=\"ImgDino\" default_off=\"expired, mismatched, self-signed\" f=\"ImgDino.xml\"><rule from=\"^http://(?:www\\.)?imgdino\\.com/\" to=\"https://imgdino.com/\"/></ruleset>", "<ruleset name=\"imgJam.com (partial)\" f=\"ImgJam.com.xml\"><rule from=\"^http://www\\.imgjam\\.com/\" to=\"https://imgjam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgUOL.com (partial)\" default_off=\"404\" f=\"ImgUOL.com.xml\"><exclusion pattern=\"^http://imguol\\.com/(?:\\d{4}/\\d\\d/\\d\\d/|blogs/|c/|cursos-online/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgbox (partial)\" f=\"Imgbox.xml\"><rule from=\"^http://(www\\.)?imgbox\\.com/(assets/|(?:dmca|help|login|register|tos)(?:$|\\?))\" to=\"https://$1imgbox.com/$2\"/></ruleset>", "<ruleset name=\"Imgflip.com\" f=\"Imgflip.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?imgflip\\.com$\" name=\".+\"/><rule from=\"^http://((?:i|s|www)\\.)?imgflip\\.com/\" to=\"https://$1imgflip.com/\"/></ruleset>", "<ruleset name=\"imgix.net\" f=\"Imgix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgrap.com (partial)\" f=\"Imgrap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imgrush.com\" f=\"Imgrush.com.xml\"><securecookie host=\"^\\.imgrush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgs Mail.ru (partial)\" f=\"Imgs_Mail.ru.xml\"><rule from=\"^http://(auto|cars|filapp1|go\\d*|hi-tech|img\\d*|limg|minigames|my\\d+|proxy|\\w+\\.radar)\\.imgsmail\\.ru/\" to=\"https://$1.imgsmail.ru/\"/></ruleset>", "<ruleset name=\"Imgur.com\" f=\"Imgur.xml\"><securecookie host=\"^\\.?imgur\\.com\" name=\".+\"/><rule from=\"^http://img\\.imgur\\.com/\" to=\"https://i.imgur.com/\"/><rule from=\"^http://store\\.imgur\\.com/\" to=\"https://imgur-store.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imiclk.com\" f=\"Imiclk.com.xml\"><securecookie host=\"^\\.imiclk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imine.co\" f=\"Imine.co.xml\"><securecookie host=\"^\\.?imine\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iminent.com (partial)\" f=\"Iminent.com.xml\"><rule from=\"^http://adserver\\.iminent\\.com/\" to=\"https://adserver.iminent.com/\"/></ruleset>", "<ruleset name=\"Immunicity.org\" default_off=\"failed ruleset test\" f=\"Immunicity.org.xml\"><rule from=\"^http://(?:www\\.)?immunicity\\.org/\" to=\"https://immunicity.org/\"/></ruleset>", "<ruleset name=\"Immunityinc.com\" default_off=\"missing certificate chain\" f=\"Immunityinc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imo.im\" f=\"Imo.im.xml\"><securecookie host=\"^(?:www\\.)?imo\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"impAct (partial)\" f=\"ImpAct.xml\"><securecookie host=\"^(?:\\.dc|\\.?[my]\\.one)?\\.impact-ad\\.jp$\" name=\".+\"/><rule from=\"^http://as\\.(dc|ief|iy)\\.impact-ad\\.jp/\" to=\"https://as.$1.impact-ad.jp/\"/><rule from=\"^http://(img\\.ak|[my]\\.one)\\.impact-ad\\.jp/\" to=\"https://$1.impact-ad.jp/\"/></ruleset>", "<ruleset name=\"ImpSec.org\" default_off=\"expired\" f=\"ImpSec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impact Radius.com\" f=\"Impact-Radius.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://adn\\.impactradius\\.com/\" to=\"https://dyfw24whmn0ln.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impact Software Company.com\" f=\"Impact_Software_Company.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impactstory.org\" f=\"Impactstory.org.xml\"><securecookie host=\"^.*\\.impactstory\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imperative Ideas.com (partial)\" f=\"Imperative_Ideas.com.xml\"><rule from=\"^http://(www\\.)?imperativeideas\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1imperativeideas.com/\"/></ruleset>", "<ruleset name=\"Imperial College London Union\" default_off=\"self-signed\" f=\"Imperial-College-London-Union.xml\"><securecookie host=\"^www\\.imperialcollegeunion\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?imperialcollegeunion\\.org/\" to=\"https://www.imperialcollegeunion.org/\"/></ruleset>", "<ruleset name=\"Imperial College London (partial)\" default_off=\"failed ruleset test\" f=\"Imperial-College-London.xml\"><rule from=\"^http://www\\.doc\\.ic\\.ac\\.uk/\" to=\"https://www.doc.ic.ac.uk/\"/><rule from=\"^http://(?:www(3)?\\.)?imperial\\.ac\\.uk/\" to=\"https://www$1.imperial.ac.uk/\"/></ruleset>", "<ruleset name=\"ImperialViolet.org\" f=\"ImperialViolet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impfen-info.de\" f=\"Impfen-info.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Improper Bostonian\" default_off=\"mismatch, self-signed\" f=\"Improper-Bostonian.xml\"><securecookie host=\"^www\\.improper\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?improper\\.com/\" to=\"https://www.improper.com/\"/></ruleset>", "<ruleset name=\"Improvely.com\" f=\"Improvely.com.xml\"><securecookie host=\"^www\\.improvely\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impulse.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Impulse.net.xml\"><securecookie host=\"^(?:webmail|www)?\\.impulse\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"impulsedriven.com\" f=\"Impulsedriven.com.xml\"><securecookie host=\"^(?:www\\.)?impulsedriven\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imrworldwide.com\" f=\"ImrWorldwide.com.xml\"><securecookie host=\"^\\.imrworldwide\\.com$\" name=\".*\"/><rule from=\"^http://secure-(\\w\\w)\\.imrworldwide\\.com/\" to=\"https://secure-$1.imrworldwide.com/\"/></ruleset>", "<ruleset name=\"in-Disguise.com\" f=\"In-Disguise.com.xml\"><securecookie host=\"^(?:my)?\\.(?:in-disguise|vpn-income)\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"In-Q-Tel\" f=\"In-Q-Tel.xml\"><rule from=\"^http://(?:www\\.)?iqt\\.org/\" to=\"https://www.iqt.org/\"/></ruleset>", "<ruleset name=\"In Stat.com\" default_off=\"connection refused\" f=\"In-Stat.xml\"><securecookie host=\"^www\\.instat\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?instat\\.com/\" to=\"https://www.instat.com/\"/></ruleset>", "<ruleset name=\"In-The-Sky.org\" f=\"In-The-Sky.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"in2code.de\" f=\"In2code.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inCloak.com\" f=\"InCloak.com.xml\"><securecookie host=\"^incloak\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?incloak\\.com/\" to=\"https://incloak.com/\"/></ruleset>", "<ruleset name=\"inCloak.es\" default_off=\"mismatched\" f=\"InCloak.es.xml\"><rule from=\"^http://(?:www\\.)?incloak\\.es/\" to=\"https://incloak.es/\"/></ruleset>", "<ruleset name=\"InCommon\" f=\"InCommon.xml\"><securecookie host=\"^\\.incommonfederation\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?incommon\\.org/\" to=\"https://$1incommon.org/\"/><rule from=\"^http://(?:www\\.)?incommonfederation\\.org/\" to=\"https://incommonfederation.org/\"/><rule from=\"^http://wayf2?\\.incommonfederation\\.org/\" to=\"https://wayf.incommonfederation.org/\"/></ruleset>", "<ruleset name=\"InLinkz.com (partial)\" f=\"InLinkz.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InMotion Hosting.com\" f=\"InMotion-Hosting.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://img0\\d\\.inmotionhosting\\.com/\" to=\"https://secure1.inmotionhosting.com/\"/><rule from=\"^http://((?:ad-srv1|(?:www\\.)?secure\\d{1,3}|www)\\.)?inmotionhosting\\.com/\" to=\"https://$1inmotionhosting.com/\"/></ruleset>", "<ruleset name=\"inSided (partial)\" f=\"InSided.xml\"><rule from=\"^http://static\\.insided\\.nl/\" to=\"https://static.insided.nl/\"/></ruleset>", "<ruleset name=\"InTechnology.co.uk\" default_off=\"handshake failure\" f=\"InTechnology.co.uk.xml\"><securecookie host=\"^(?:www\\.)?intechnology\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inapub.co.uk\" f=\"Inapub.co.uk.xml\"><securecookie host=\"^(?:w*\\.)?inapub\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inbenta.com\" f=\"Inbenta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inbox.lv\" f=\"Inbox.lv.xml\"><securecookie host=\"^(?:polls-framed|shop|travel)\\.inbox\\.lv$\" name=\".+\"/><rule from=\"^http://((?:ads|b|dating|fun|games|help|labiedarbi|login|mail|meteo|money|polls|polls-framed|pricelist|purchase|search|search-framed|shop|smart|travel|www)\\.)?inbox\\.lv/\" to=\"https://$1inbox.lv/\"/></ruleset>", "<ruleset name=\"InboxApp.com\" f=\"InboxApp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inburke.com\" f=\"Inburke.com.xml\"><rule from=\"^http://(?:www\\.)?(?:kev\\.)?inburke\\.com/\" to=\"https://kev.inburke.com/\"/></ruleset>", "<ruleset name=\"Inc.com (mixed content)\" platform=\"mixedcontent\" f=\"Inc.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?inc\\.com/\" to=\"https://www.inc.com/\"/><rule from=\"^http://(conference|mediakit)\\.inc\\.com/\" to=\"https://$1.inc.com/\"/></ruleset>", "<ruleset name=\"Inc.com (partial)\" f=\"Inc.com.xml\"><exclusion pattern=\"^http://(?:conference|mediakit)\\.inc\\.com/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://(?:www\\.)?inc\\.com/+(?!favicon\\.ico|lib/|views/css/)\"/><securecookie host=\"^(?:magazine|\\.subscriptions)\\.inc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inc\\.com/\" to=\"https://www.inc.com/\"/><rule from=\"^http://(conference|mediakit|subscriptions|magazine)\\.inc\\.com/\" to=\"https://$1.inc.com/\"/></ruleset>", "<ruleset name=\"Incapsula.com\" f=\"Incapsula.xml\"><securecookie host=\"^(?:content|my|www)?\\.incapsula\\.com$\" name=\".+\"/><rule from=\"^http://support\\.incapsula\\.com/\" to=\"https://incapsula.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inch-ci.org\" f=\"Inch-ci.org.xml\"><securecookie host=\"^inch-ci\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Incisive Media\" default_off=\"failed ruleset test\" f=\"Incisive_Media.xml\"><securecookie host=\"^incmai\\.incisivemedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?incisivemedia\\.com/\" to=\"https://secure.incisivemedia.com/\"/><rule from=\"^http://incmai\\.incisivemedia\\.com/\" to=\"https://incmai.incisivemedia.com/\"/><rule from=\"^http://db\\.riskwaters\\.com/global/\" to=\"https://secure.incisivemedia.com/global/\"/></ruleset>", "<ruleset name=\"incoin.io (partial)\" f=\"Incoin.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inconshreveable.com (partial)\" f=\"Inconshreveable.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ind.ie\" f=\"Ind.ie.xml\"><securecookie host=\"^(?:pulse-forum|source)\\.ind\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indaba Music.com (false MCB)\" platform=\"mixedcontent\" f=\"Indaba_Music.com.xml\"><securecookie host=\"^\\.indabamusic\\.com$\" name=\".+\"/><rule from=\"^http://((?:beta|notifications|www)\\.)?indabamusic\\.com/\" to=\"https://$1indabamusic.com/\"/></ruleset>", "<ruleset name=\"Indacoin.com\" f=\"Indacoin.com.xml\"><rule from=\"^http://www\\.indacoin\\.com/\" to=\"https://indacoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indeed.com (partial)\" f=\"Indeed.xml\"><securecookie host=\"^(?:ads|employers|secure)\\.indeed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent Centre for Privacy Protection Schleswig-Holstein\" f=\"Independent-Centre-for-Privacy-Protection-Schleswig-Holstein.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent.co.uk (partial)\" default_off=\"mismatched\" f=\"Independent.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://independent\\.co\\.uk/\" to=\"https://www.independent.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent.gov.uk (partial)\" f=\"Independent.gov.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent Mail.com (partial)\" default_off=\"failed ruleset test\" f=\"Independent_Mail.com.xml\"><securecookie host=\"^(?:login)?\\.independentmail\\.com$\" name=\".+\"/><rule from=\"^http://independentmail\\.com/\" to=\"https://www.independentmail.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Independent News (partial)\" f=\"Independent_News.xml\"><rule from=\"^http://(?:www\\.)?the-independent-news\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.the-independent-news.com/$1\"/></ruleset>", "<ruleset name=\"Independent Voter Network\" f=\"Independent_Voter_Network.xml\"><exclusion pattern=\"^http://(?:www\\.)?ivn\\.us/(?:ca-election-center/wp-(?:content/plugins/(?:buddypress/bp-core/css|jquery-colorbox/themes)|includes/css)|wp-content/themes/ivn)/\"/><rule from=\"^http://(?:www\\.)?ivn\\.us/([\\w\\-]+/)?(files|wp-content|wp-includes)/\" to=\"https://i0.wp.com/ivn.us/$1$2/\"/><rule from=\"^http://cdn\\.ivn\\.us/\" to=\"https://d1tu8ib6d01hwk.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Indepnet.net (partial)\" f=\"Indepnet.net.xml\"><securecookie host=\"^forge\\.indepnet\\.net$\" name=\".+\"/><rule from=\"^http://forge\\.indepnet\\.net/\" to=\"https://forge.indepnet.net/\"/></ruleset>", "<ruleset name=\"Index on Censorship.org\" f=\"Index_on_Censorship.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"India.com (partial)\" default_off=\"mismatched\" f=\"India.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IndiaMART (partial)\" f=\"IndiaMART.xml\"><rule from=\"^http://1\\.imgimg\\.com/\" to=\"https://d2y6cbvg1xh035.cloudfront.net/\"/><rule from=\"^http://2\\.imimg\\.com/\" to=\"https://d1raip7zazff6e.cloudfront.net/\"/><rule from=\"^http://3\\.imimg\\.com/\" to=\"https://dypmusfs8hvdw.cloudfront.net/\"/><rule from=\"^http://4\\.imimg\\.com/\" to=\"https://d3p8pcjf51nlqw.cloudfront.net/\"/><rule from=\"^http://im\\.gifbt\\.com/\" to=\"https://d1wd2icune084.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Indian Express.com (partial)\" f=\"Indian_Express.com.xml\"><rule from=\"^http://images\\.indianexpress\\.com/\" to=\"https://indianexpressonline.files.wordpress.com/\"/></ruleset>", "<ruleset name=\"Indiana.edu (self-signed)\" default_off=\"expired, self-signed\" f=\"Indiana-University-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IU.edu (partial)\" f=\"Indiana-University.xml\"><exclusion pattern=\"^http://(?:www\\.)?iu\\.edu/(?!css/|img/|[\\w/-]+/_image/)\"/><exclusion pattern=\"^http://viewpoints\\.iu\\.edu/+(?!wp-content/)\"/><securecookie host=\"^\\w.*\\.iu\\.edu$\" name=\".\"/><securecookie host=\"^\\.(?:cloudtools\\.access|internal\\.pti)\\.iu\\.edu$\" name=\".\"/><rule from=\"^http://osl\\.iu\\.edu/\" to=\"https://www.osl.iu.edu/\"/><rule from=\"^http://www\\.pti\\.iu\\.edu/\" to=\"https://pti.iu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indianna.edu (partial)\" f=\"Indiana.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://soic\\.indiana\\.edu/\" to=\"https://www.soic.indiana.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indiana State University (partial)\" f=\"Indiana_State_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?indstate\\.edu/(?!css/|favicon\\.ico|images/|js/)\"/><securecookie host=\"^isuportal\\.indstate\\.edu$\" name=\".+\"/><rule from=\"^http://((?:isuportal|www1?)\\.)?indstate\\.edu/\" to=\"https://$1indstate.edu/\"/></ruleset>", "<ruleset name=\"Indianapolis Star\" default_off=\"mismatched\" f=\"Indianapolis_Star.xml\"><securecookie host=\"^www\\.indystar\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsing\\.|www\\.)?indystar\\.com/\" to=\"https://www.indystar.com/\"/></ruleset>", "<ruleset name=\"IndieMerch (partial)\" f=\"IndieMerch.xml\"><securecookie host=\"^.+\\.indiemerch\\.com$\" name=\".+\"/><rule from=\"^http://indiemerch\\.com/\" to=\"https://www.indiemerch.com/\"/><rule from=\"^http://(cdn|pad|www)\\.indiemerch\\.com/\" to=\"https://$1.indiemerch.com/\"/></ruleset>", "<ruleset name=\"IndieMerchandising\" f=\"IndieMerchandising.xml\"><securecookie host=\"^(?:www\\.)?indiemerchandising\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IndieMerchstore\" f=\"IndieMerchstore.xml\"><securecookie host=\"^www\\.indiemerchstore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?indiemerchstore\\.com/\" to=\"https://www.indiemerchstore.com/\"/></ruleset>", "<ruleset name=\"Indiegala\" f=\"Indiegala.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indiegogo (partial)\" f=\"Indiegogo.xml\"><securecookie host=\"^\\.indiegogo\\.com$\" name=\"^(?:optimizely\\w+|__utm\\w)$\"/><rule from=\"^http://igg\\.me/\" to=\"https://www.indiegogo.com/\"/><rule from=\"^http://g(\\d)\\.iggcdn\\.com/\" to=\"https://g$1.iggcdn.com/\"/><rule from=\"^http://((?:images|web\\d|www)\\.)?indiegogo\\.com/\" to=\"https://$1indiegogo.com/\"/></ruleset>", "<ruleset name=\"Induction Solutions.com (false MCB)\" platform=\"mixedcontent\" f=\"Induction_Solutions.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?inductionsolutions\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?inductionsolutions\\.com/(?!favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1inductionsolutions.com/\"/></ruleset>", "<ruleset name=\"Induction Solutions.com (partial)\" f=\"Induction_Solutions.com.xml\"><rule from=\"^http://(www\\.)?inductionsolutions\\.com/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1inductionsolutions.com/\"/></ruleset>", "<ruleset name=\"IndusGuard (partial)\" f=\"IndusGuard.xml\"><securecookie host=\"^soc\\.indusguard\\.com$\" name=\".+\"/><rule from=\"^http://soc\\.indusguard\\.com/\" to=\"https://soc.indusguard.com/\"/></ruleset>", "<ruleset name=\"Industry Botnet Group.org\" default_off=\"connection dropped\" f=\"Industry-Botnet-Group.xml\"><securecookie host=\"^(?:www\\.)?industrybotnetgroup\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Industry Mailout.com (partial)\" f=\"Industry_Mailout.com.xml\"><securecookie host=\"^industrymailout\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"industrybrains.com\" f=\"Industrybrains.com.xml\"><securecookie host=\"^\\.industrybrains\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indy.im\" f=\"Indy.im.xml\"><securecookie host=\"^indy\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IndyReader.org\" f=\"IndyReader.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indybay.org\" f=\"Indybay.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.nl\" f=\"Indymedia.nl.xml\"><exclusion pattern=\"^http://irc\\.indymedia\\.nl/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.org (false MCB)\" platform=\"mixedcontent\" f=\"Indymedia.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.org.uk (partial)\" f=\"Indymedia.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.org (partial)\" f=\"Indymedia.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://netherlands\\.indymedia\\.org/\" to=\"https://www.indymedia.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inertianetworks.com\" f=\"Inertianetworks.com.xml\"><securecookie host=\"^inertianetworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inet.se\" f=\"Inet.se.xml\"><rule from=\"^http://(?:www\\.)?inet\\.se/\" to=\"https://www.inet.se/\"/></ruleset>", "<ruleset name=\"InfNX.com\" f=\"InfNX.xml\"><rule from=\"^http://(idn|static)\\.infnx\\.com/\" to=\"https://s3.amazonaws.com/$1.infnx.com/\"/></ruleset>", "<ruleset name=\"Infamous\" default_off=\"connection dropped\" f=\"Infamous.xml\"><securecookie host=\"^(?:w*\\.)?foreverinfamous\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infektionsschutz.de\" f=\"Infektionsschutz.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infile\" default_off=\"self-signed\" f=\"Infile.xml\"><securecookie host=\"^\\.infile\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?infile\\.com/\" to=\"https://infile.com/\"/></ruleset>", "<ruleset name=\"Infinet.com.au (false MCB)\" platform=\"mixedcontent\" f=\"Infinet.com.au-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?infinet\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(www\\.)?infinet\\.com\\.au/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1infinet.com.au/\"/></ruleset>", "<ruleset name=\"Infinet.com.au (partial)\" default_off=\"failed ruleset test\" f=\"Infinet.com.au.xml\"><exclusion pattern=\"^http://(?:www\\.)?shop\\.infinet\\.com\\.au/+(?!epages/shop\\.sf/en_AU/\\?ObjectPath=/Shops/infinet&ViewAction=ViewRegistration|WebRoot/)\"/><exclusion pattern=\"^http://(?:www\\.)?infinet.com.au/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^support\\.infinet\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(support\\.|www\\.(?:shop\\.)?)?infinet\\.com\\.au/\" to=\"https://$1infinet.com.au/\"/></ruleset>", "<ruleset name=\"InfinityDev.org\" f=\"InfinityDev.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infinity Tracking (partial)\" f=\"Infinity_Tracking.xml\"><rule from=\"^http://portal\\.infinity-tracking\\.com/\" to=\"https://portal.infinity-tracking.com/\"/><rule from=\"^http://a(pi|ssets)\\.infinity-tracking\\.net/\" to=\"https://a$1.infinity-tracking.net/\"/></ruleset>", "<ruleset name=\"Infinow.net\" f=\"Infinow.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfluAds (partial)\" f=\"InfluAds.xml\"><securecookie host=\"^dashboard\\.influads\\.com$\" name=\".+\"/><rule from=\"^http://(dashboard|engine)\\.influads\\.com/\" to=\"https://$1.influads.com/\"/></ruleset>", "<ruleset name=\"Influencers Conference\" default_off=\"failed ruleset test\" f=\"Influencers_Conference.xml\"><securecookie host=\"^\\.influencersconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Info.iet.unipi.it\" default_off=\"HTTPS and HTTP content differ\" f=\"Info.iet.unipi.it.xml\"><rule from=\"^http://info\\.iet\\.unipi\\.it/\" to=\"https://info.iet.unipi.it/\"/></ruleset>", "<ruleset name=\"InfoJobs.net (partial)\" f=\"InfoJobs.net.xml\"><securecookie host=\"^citrix\\.infojobs\\.net$\" name=\".+\"/><rule from=\"^http://((?:citrix|formacion|m|media|nosotros|www)\\.)?infojobs\\.net/\" to=\"https://$1infojobs.net/\"/><rule from=\"^http://static1\\.infojobs\\.net/\" to=\"https://es-static0.infojobs.com/\"/></ruleset>", "<ruleset name=\"InfoQ (partial)\" f=\"InfoQ.xml\"><rule from=\"^http://(www\\.)?infoq\\.com/((?:br|cn|jp)/?$|resource/)\" to=\"https://$1infoq.com/$2\"/></ruleset>", "<ruleset name=\"InfoSec Industry.com\" f=\"InfoSec_Industry.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoToday.com (partial)\" f=\"InfoToday.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoTomb.com\" f=\"InfoTomb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoWar.com\" default_off=\"missing certificate chain\" f=\"InfoWar.com.xml\"><securecookie host=\"^(?:www)?\\.infowar\\.com$\" name=\".+\"/><rule from=\"^http://infowar\\.com/\" to=\"https://www.infowar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infoblox.com\" f=\"Infoblox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infobox.ru\" f=\"Infobox.ru.xml\"><securecookie host=\"^(?:helpdesk)?\\.infobox\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infocube (partial)\" default_off=\"failed ruleset test\" f=\"Infocube.xml\"><rule from=\"^http://(a[35]\\.|www\\.)?ogt\\.jp/\" to=\"https://$1ogt.jp/\"/></ruleset>", "<ruleset name=\"Infogr.am (partial)\" f=\"Infogr.am.xml\"><exclusion pattern=\"^http://e\\.infogr\\.am/js/embed\\.js\\?\"/><exclusion pattern=\"^http://e.infogr.am/top_tarffic_violations\\?\"/><securecookie host=\"^\\.infogr\\.am$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infogroup (partial)\" f=\"Infogroup.xml\"><exclusion pattern=\"^http://link\\.p0\\.com/u\\.d\\?\"/><securecookie host=\"^(?:.*\\.)?infousa\\.com$\" name=\".*\"/><securecookie host=\"^link\\.p0\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infolinks (partial)\" f=\"Infolinks.xml\"><exclusion pattern=\"^http://ls\\.infolinks\\.com/(?!images/)\"/><securecookie host=\"^advertisers\\.infolinks\\.com$\" name=\".+\"/><rule from=\"^http://((?:advertisers|blog|c1|indnf|internalindn|ls|metrics|p1105|publishers|resources|www)\\.)?infolinks\\.com/\" to=\"https://$1infolinks.com/\"/></ruleset>", "<ruleset name=\"Infomaniak Network\" f=\"Infomaniak-Network.xml\"><securecookie host=\"^\\.infomaniak\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?infomaniak\\.com$\" name=\".*\"/><rule from=\"^http://(str05\\.|www\\.)?infomaniak\\.ch/\" to=\"https://$1infomaniak.ch/\"/><rule from=\"^http://(\\w+\\.)?infomaniak\\.com/\" to=\"https://$1infomaniak.com/\"/></ruleset>", "<ruleset name=\"Infopackets (partial)\" default_off=\"Certificate mismatch\" f=\"Infopackets.xml\"><rule from=\"^http://(?:www\\.)?infopackets\\.com/\" to=\"https://infopackets.com/\"/><exclusion pattern=\"^http://(?:www\\.)?infopackets\\.com.*(?:/|\\.htm)$\"/></ruleset>", "<ruleset name=\"Infopáginas\" f=\"Infopaginas.xml\"><securecookie host=\"^w*\\.infopaginas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?infopaginas\\.com/\" to=\"https://www.infopaginas.com/\"/></ruleset>", "<ruleset name=\"Infopankki.fi\" default_off=\"404\" f=\"Infopankki.xml\"><securecookie host=\"^www\\.infopankki\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InforME.org\" f=\"InforME.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InformIT (partial)\" platform=\"mixedcontent\" f=\"InformIT.xml\"><rule from=\"^http://informit\\.com/\" to=\"https://www.informit.com/\"/><rule from=\"^http://(memberservices|www)\\.informit\\.com/\" to=\"https://$1.informit.com/\"/></ruleset>", "<ruleset name=\"Informa (partial)\" default_off=\"failed ruleset test\" f=\"Informa.xml\"><rule from=\"^http://(crcpress|garlandscience|routledgeweb|tandfonline|taylorandfrancis)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://www\\.(crcpress|garlandscience|tandfonline)\\.com/(_?res|a4j/|action/(clickThrough|mobileDevicePairingLogin|registration|resources|show(Cart|Login))|content|(css|img)Jawr/|coverimage/|favicon|na101/|sda/|(templat|userimag)es/|twitter\\.html|[\\w\\-]+/\\w+_signin\\.jsf)\" to=\"https://www.$1.com/$2\"/><rule from=\"^http://(files|img|lib)\\.routledgeweb\\.com/\" to=\"https://$1.routledgeweb.com/\"/><rule from=\"^http://www\\.(routledgeweb|taylorandfrancis)\\.com/(account/|favicon)\" to=\"https://www.$1.com/$2\"/><rule from=\"^http://www\\.taylorandfrancis\\.com/(account/|favicon)\" to=\"https://www.taylorandfrancis.com/$1\"/></ruleset>", "<ruleset name=\"Informa Healthcare (problematic)\" default_off=\"mismatched\" f=\"Informa_Healthcare-problematic.xml\"><securecookie host=\"^comms\\.informahealthcare\\.com$\" name=\".+\"/><rule from=\"^http://co(mms|ntact)\\.informahealthcare\\.com/\" to=\"https://co$1.informahealthcare.com/\"/></ruleset>", "<ruleset name=\"Informa Healthcare (partial)\" f=\"Informa_Healthcare.xml\"><exclusion pattern=\"^http://(?:www\\.)?informahealthcare\\.com/$\"/><securecookie host=\"^\\.(?:www\\.)?informahealthcarestore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?informahealthcare\\.com/(action/(?:clickThrough|doLogin|registration)|cssJawr/|favicon\\.ico|na101/|sda/|templates/|userimages/)\" to=\"https://informahealthcare.com/$1\"/><rule from=\"^http://(www\\.)?informahealthcarestore\\.com/\" to=\"https://www.informahealthcarestore.com/\"/></ruleset>", "<ruleset name=\"Informaction.com (partial)\" f=\"Informaction.com.xml\"><securecookie host=\"^\\.forums\\.informaction\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"informatick.net (partial)\" default_off=\"failed ruleset test\" f=\"Informatick.net.xml\"><exclusion pattern=\"^http://www\\.informatick\\.net/+(?!images/|lib/)\"/><securecookie host=\"^paste\\.informatick\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Information.dk\" f=\"Information.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InformationWeek\" default_off=\"failed ruleset test\" f=\"InformationWeek.xml\"><securecookie host=\"^www\\.informationweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?byte\\.com/\" to=\"https://www.informationweek.com/byte/\"/><rule from=\"^http://(www\\.)?informationweek\\.com/\" to=\"https://$1informationweek.com/\"/></ruleset>", "<ruleset name=\"informationactivism.org\" f=\"Informationactivism.org.xml\"><securecookie host=\"^\\.archive\\.informationactivism\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Informer.com (partial)\" f=\"Informer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infosec Island (partial)\" f=\"Infosec-Island.xml\"><rule from=\"^http://(www\\.)?infosecisland\\.com/((?:ajax|css|images|js|sfCombine|system|uploads)/|favicon\\.ico|(?:login|register|suggestlink)\\.html)\" to=\"https://$1infosecisland.com/$2/\"/></ruleset>", "<ruleset name=\"Infospyware.com (partial)\" f=\"Infospyware.com.xml\"><rule from=\"^http://(?:www\\.)?infospyware\\.com/\" to=\"https://www.infospyware.com/\"/></ruleset>", "<ruleset name=\"Infowars.com (partial)\" f=\"Infowars.com.xml\"><exclusion pattern=\"^http://tv\\.infowars\\.com/+(?!amember(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoWorld.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Infoworld.com.xml\"><securecookie host=\"^\\.infoworld\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><rule from=\"^http://(?:www\\.)?infoworld\\.com/\" to=\"https://www.infoworld.com/\"/><rule from=\"^http://m\\.infoworld\\.com/(mobify/|static/)\" to=\"https://infoworld.mobify.com/$1\"/></ruleset>", "<ruleset name=\"Infra Fürth\" f=\"Infra-Furth.xml\"><rule from=\"^http://www\\.infra-fuerth\\.de/\" to=\"https://www.infra-fuerth.de/\"/></ruleset>", "<ruleset name=\"infradead.org (partial)\" platform=\"cacert\" f=\"Infradead.xml\"><rule from=\"^http://(?:www\\.)?infradead\\.org/\" to=\"https://casper.infradead.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infragard.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Infragard.xml\"><rule from=\"^http://(?:www\\.)?infragard\\.net/\" to=\"https://www.infragard.net/\"/></ruleset>", "<ruleset name=\"Infrequently.org\" f=\"Infrequently.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infused Systems (expired)\" default_off=\"expired\" f=\"Infused-Systems-mismatches.xml\"><rule from=\"^http://(?:www\\.)?infusedsystems\\.com/\" to=\"https://www.infusedsystems.com/\"/><rule from=\"^http://(?:cdn\\.infusionso|[ab]\\.ins)ft\\.com/\" to=\"https://a.insft.com/\"/></ruleset>", "<ruleset name=\"Infusionsoft (partial)\" platform=\"mixedcontent\" f=\"Infused-Systems.xml\"><exclusion pattern=\"^http://(?:help|kb|www)\\.customerhub\\.\"/><exclusion pattern=\"^http://(?:help(?:center)?|marketplace)\\.infusionsoft\\.\"/><securecookie host=\"^(?:.*\\.)?customerhub\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?infusionsoft\\.com$\" name=\".*\"/><rule from=\"^http://customerhub\\.net/$\" to=\"https://customerhub.net/\"/><rule from=\"^http://([\\w\\-]+)\\.customerhub\\.net/\" to=\"https://$1.customerhub.net/\"/><rule from=\"^http://(crm\\.|www\\.)?infusionsoft\\.com/\" to=\"https://$1infusionsoft.com/\"/></ruleset>", "<ruleset name=\"ING DIRECT\" platform=\"mixedcontent\" f=\"Ingdirect.es.xml\"><rule from=\"^http://(?:www\\.)?ingdirect\\.es/\" to=\"https://www.ingdirect.es/\"/></ruleset>", "<ruleset name=\"Ingenico.com (partial)\" f=\"Ingenico_Group.xml\"><securecookie host=\"^library\\.ingenico\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ingentaconnect (partial)\" f=\"Ingentaconnect.xml\"><rule from=\"^http://(www\\.)?ingentaconnect\\.com/(css|images|(?:journal|provider)-logos|session)/\" to=\"https://$1ingentaconnect.com/$2/\"/></ruleset>", "<ruleset name=\"Ingenuity Hosting\" f=\"Ingenuity_Hosting.xml\"><rule from=\"^http://(?:secure1\\.|www\\.)?ingenuity\\.net\\.au/\" to=\"https://secure1.ingenuity.net.au/\"/></ruleset>", "<ruleset name=\"Ingress\" f=\"Ingress.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inhumanity.com\" f=\"Inhumanity.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Init7\" platform=\"cacert\" f=\"Init7.xml\"><rule from=\"^http://init7\\.net/\" to=\"https://www.init7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"init Lab.org\" f=\"Init_Lab.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Initex.com\" f=\"Initex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inkFrog.com (expired)\" default_off=\"expired\" f=\"InkFrog.com-problematic.xml\"><rule from=\"^http://(img|thmb)\\.inkfrog\\.com/\" to=\"https://$1.inkfrog.com/\"/></ruleset>", "<ruleset name=\"inkFrog.com (partial)\" f=\"InkFrog.com.xml\"><securecookie host=\"^(?:www\\.)?inkfrog\\.com$\" name=\".+\"/><rule from=\"^http://imgs\\.inkfrog\\.com/\" to=\"https://d29h7ql7qnxkqx.cloudfront.net/\"/><rule from=\"^https?://thumbnails\\.inkfrog\\.com/\" to=\"https://d33oiwhbojapjx.cloudfront.net/\"/><rule from=\"^http://(www\\.)?inkfrog\\.com/\" to=\"https://$1inkfrog.com/\"/></ruleset>", "<ruleset name=\"Inkbunny\" f=\"Inkbunny.xml\"><securecookie host=\"^inkbunny\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inkbunny\\.net/\" to=\"https://inkbunny.net/\"/></ruleset>", "<ruleset name=\"Inkscape.org (partial)\" f=\"Inkscape.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Innocence Project (partial)\" f=\"Innocence_Project.xml\"><securecookie host=\"^secure\\.innocenceproject\\.org$\" name=\".+\"/><rule from=\"^http://secure\\.innocenceproject\\.org/\" to=\"https://secure.innocenceproject.org/\"/></ruleset>", "<ruleset name=\"Innometrics.com (partial)\" f=\"Innometrics.com.xml\"><securecookie host=\"^customer\\.innometrics\\.com$\" name=\".+\"/><rule from=\"^http://customer\\.innometrics\\.com/\" to=\"https://customer.innometrics.com/\"/></ruleset>", "<ruleset name=\"Innovate UK.org (partial)\" f=\"Innovate_UK.org.xml\"><rule from=\"^http://(?:www\\.)?innovateuk\\.org/+([^?]*)(?:\\?.*)?\" to=\"https://www.gov.uk/government/organisations/innovate-uk$1\"/><rule from=\"^http://(connect|interact|login|projects|reports|vouchers)\\.innovateuk\\.org/\" to=\"https://$1.innovateuk.org/\"/></ruleset>", "<ruleset name=\"Innovation Interactive (partial)\" f=\"Innovation-Interactive.xml\"><securecookie host=\"^\\.netmng\\.com$\" name=\"^evo5$\"/><securecookie host=\"^[\\w-]+\\.netmng\\.com$\" name=\"^evo5_[\\w-]+$\"/><rule from=\"^http://([\\w-]+)\\.netmng\\.com/\" to=\"https://$1.netmng.com/\"/></ruleset>", "<ruleset name=\"Innovative Food Concepts (partial)\" f=\"Innovative_Food_Concepts.xml\"><rule from=\"^http://common\\.restaurantfurnitureresource\\.com/\" to=\"https://d19a6ww13xgzf3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Innovative Interfaces (partial)\" f=\"Innovative_Interfaces.xml\"><exclusion pattern=\"^http://(?:linkplusaccess|sierra|www)\\.\"/><securecookie host=\"^.+\\.iii\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.iii\\.com/\" to=\"https://$1.iii.com/\"/></ruleset>", "<ruleset name=\"InoReader\" f=\"InoReader.xml\"><securecookie host=\"^www\\.inoreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inoreader\\.com/\" to=\"https://www.inoreader.com/\"/></ruleset>", "<ruleset name=\"Inphi\" default_off=\"expired, mismatch, self-signed\" f=\"Inphi.xml\"><securecookie host=\"^www\\.inphi\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?inphi\\.com/\" to=\"https://www.inphi.com/\"/></ruleset>", "<ruleset name=\"inpros.net\" default_off=\"self-signed\" f=\"Inpros.net.xml\"><securecookie host=\"^\\.?inpros\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inpros\\.net/\" to=\"https://inpros.net/\"/></ruleset>", "<ruleset name=\"Inria.fr (partial)\" f=\"Inria.fr.xml\"><securecookie host=\"^(?!\\.inria\\.fr$).\" name=\".\"/><rule from=\"^http://en\\.inria\\.fr/\" to=\"https://www.inria.fr/en/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inrialpes.fr (partial)\" f=\"Inrialpes.fr.xml\"><rule from=\"^http://planete\\.inrialpes\\.fr/\" to=\"https://planete.inrialpes.fr/\"/></ruleset>", "<ruleset name=\"Inschrijven.nl\" f=\"Inschrijven.xml\"><rule from=\"^http://(?:www\\.)?inschrijven\\.nl/\" to=\"https://www.inschrijven.nl/\"/></ruleset>", "<ruleset name=\"Insecure.ws\" f=\"Insecure.ws.xml\"><securecookie host=\"^www\\.insecure\\.ws$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside Higher Ed.com\" f=\"Inside-Higher-Ed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside.com\" f=\"Inside.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?inside\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InsideHW.com\" default_off=\"self-signed\" f=\"InsideHW.com.xml\"><rule from=\"^http://(?:www\\.)?insidehw\\.com/\" to=\"https://www.insidehw.com/\"/><securecookie host=\"^www\\.insidehw\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Inside Illinois.info\" f=\"Inside_Illinois.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside Science.org\" f=\"Inside_Science.xml\"><rule from=\"^http://insidescience\\.org/\" to=\"https://www.insidescience.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"insidecelebs.com\" f=\"Insidecelebs.com.xml\"><securecookie host=\"^\\.insidecelebs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"insideygs.com\" f=\"Insideygs.com.xml\"><securecookie host=\"^adintegration\\.insideygs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Insight\" f=\"Insight.xml\"><securecookie host=\"^(?:.+\\.)?insight\\.com$\" name=\".*\"/><rule from=\"^http://insight\\.com/\" to=\"https://www.insight.com/\"/><rule from=\"^http://(www|uk)\\.insight\\.com/\" to=\"https://$1.insight.com/\"/><rule from=\"^http://(i|img|images|imagesqa)(\\d+)\\.insight\\.com/\" to=\"https://$1$2.insight.com/\"/></ruleset>", "<ruleset name=\"InsightExpress.com\" f=\"InsightExpress.com.xml\"><securecookie host=\"^(?:www\\.)?insightexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InsightExpressai.com\" f=\"InsightExpressai.com.xml\"><securecookie host=\"^\\.insightexpressai\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Insinuator.net\" f=\"Insinuator.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://insinuator\\.net/\" to=\"https://www.insinuator.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Insnw.net\" f=\"Insnw.net.xml\"><rule from=\"^http://assets\\.insnw\\.net/\" to=\"https://assets.insnw.net/\"/></ruleset>", "<ruleset name=\"Insouciant.org\" f=\"Insouciant.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inspectlet.com\" f=\"Inspectlet.com.xml\"><securecookie host=\"^(?:.*\\.)?inspectlet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inspectlet\\.com/\" to=\"https://www.inspectlet.com/\"/></ruleset>", "<ruleset name=\"Inspiration Green\" f=\"Inspiration_Green.xml\"><securecookie host=\"^(?:www\\.)?inspirationgreen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inspire HEP.net\" f=\"Inspire_HEP.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instacom Inc.com\" f=\"Instacom_Inc.com.xml\"><securecookie host=\"^\\.instacominc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instaemail.net\" f=\"Instaemail.net.xml\"><rule from=\"^http://cdn\\.instaemail\\.net/\" to=\"https://s3.amazonaws.com/cdn.instaemail.net/\"/></ruleset>", "<ruleset name=\"Instagr.am (partial)\" default_off=\"Needs ruleset tests\" f=\"Instagr.am.xml\"><rule from=\"^http://instagr\\.am/static/images/\" to=\"https://s3.amazonaws.com/instagram-static/images/\"/><rule from=\"^http://instagr\\.am/(?=p/|static/)\" to=\"https://instagram.com/\"/></ruleset>", "<ruleset name=\"Instagram.com (partial)\" f=\"Instagram.xml\"><securecookie host=\"^(?:badges\\.|\\.help\\.)?instagram\\.com$\" name=\".+\"/><rule from=\"^http://distilleryimage1\\.instagram\\.com/\" to=\"https://d1ae3bdqlkjebx.cloudfront.net/\"/><rule from=\"^http://distilleryimage2\\.instagram\\.com/\" to=\"https://d2vdurooumowqn.cloudfront.net/\"/><rule from=\"^http://distilleryimage3\\.instagram\\.com/\" to=\"https://doa9ijhk46qwf.cloudfront.net/\"/><rule from=\"^http://distilleryimage4\\.instagram\\.com/\" to=\"https://d24elmu442q75h.cloudfront.net/\"/><rule from=\"^http://distilleryimage5\\.instagram\\.com/\" to=\"https://d1uysd8m4iv3h8.cloudfront.net/\"/><rule from=\"^http://distilleryimage6\\.instagram\\.com/\" to=\"https://d2aqnk7wh4vqhb.cloudfront.net/\"/><rule from=\"^http://distilleryimage7\\.instagram\\.com/\" to=\"https://d17c70w5wkxq2m.cloudfront.net/\"/><rule from=\"^http://distilleryimage8\\.instagram\\.com/\" to=\"https://d2nms3640z5x8l.cloudfront.net/\"/><rule from=\"^http://distilleryimage9\\.instagram\\.com/\" to=\"https://d2x3khweh61zds.cloudfront.net/\"/><rule from=\"^http://distilleryimage10\\.instagram\\.com/\" to=\"https://d34sa3fuqtuf2w.cloudfront.net/\"/><rule from=\"^http://distilleryimage11\\.instagram\\.com/\" to=\"https://d1z5wd2gcq19yd.cloudfront.net/\"/><rule from=\"^http://images\\.instagram\\.com/\" to=\"https://d18txuuu339yuz.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IM Freedom.org\" f=\"Instant-Messaging-Freedom.xml\"><securecookie host=\"^(?:www\\.)?imfreedom\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstantChat.io\" f=\"InstantChat.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstantSSL\" f=\"InstantSSL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instantbird.org (partial)\" f=\"Instantbird.org.xml\"><securecookie host=\"^bugzilla\\.instantbird\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instantpage.me\" f=\"Instantpage.me.xml\"><rule from=\"^http://instantpage\\.me/\" to=\"https://www.godaddy.com/default.aspx\"/><rule from=\"^http://www\\.instantpage\\.me/\" to=\"https://admin.instantpage.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instapanel.com\" f=\"Instapanel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instapaper.com\" f=\"Instapaper.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instart Logic.com (partial)\" f=\"Instart_Logic.com.xml\"><securecookie host=\"^(?:\\.customer\\.|www\\.)?instartlogic\\.com$\" name=\".+\"/><rule from=\"^http://go\\.instartlogic\\.com/+(?:$|\\?.*)\" to=\"https://www.instartlogic.com/\"/><rule from=\"^http://go\\.instartlogic\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sj07.marketo.com/\"/><rule from=\"^http://status\\.instartlogic\\.com/\" to=\"https://instartlogic.statuspage.io/\"/><rule from=\"^http://(customer\\.|www\\.)?instartlogic\\.com/\" to=\"https://$1instartlogic.com/\"/></ruleset>", "<ruleset name=\"Instella Platform (partial)\" f=\"Instella_Platform.xml\"><securecookie host=\"^.+\\.instellaplatform\\.com$\" name=\".+\"/><rule from=\"^http://(?!www)\\.instellaplatform\\.com/\" to=\"https://$1.instellaplatform.com/\"/></ruleset>", "<ruleset name=\"Institut National des Sciences Appliquées (partial)\" default_off=\"failed ruleset test\" f=\"Institut-National-des-Sciences-Appliquees.xml\"><securecookie host=\"^www\\.insa-strasbourg\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?insa-strasbourg\\.fr/\" to=\"https://www.insa-strasbourg.fr/\"/></ruleset>", "<ruleset name=\"Institut für Internet-Sicherheit\" f=\"Institut_fur_Internet-Sicherheit.xml\"><securecookie host=\"^www\\.it-sicherheit\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?it-sicherheit\\.de/\" to=\"https://www.it-sicherheit.de/\"/></ruleset>", "<ruleset name=\"IoP.org (mismatched)\" default_off=\"mismatched\" f=\"Institute-of-Physics-mismatches.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IoP.org (partial)\" f=\"Institute-of-Physics.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.iopscience\\.\" name=\".\"/><rule from=\"^http://iop\\.org/\" to=\"https://www.iop.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instra\" f=\"Instra.xml\"><securecookie host=\"^(?:www\\.)?instra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"instraffic.com\" f=\"Instraffic.com.xml\"><securecookie host=\"^(?:www\\.)?instraffic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instructables\" default_off=\"mismatch\" f=\"Instructables.xml\"><rule from=\"^http://instructables\\.com/\" to=\"https://www.instructables.com/\"/><rule from=\"^http://cdn\\.instructables\\.com/\" to=\"https://s3.amazonaws.com/instruct-deriv/\"/><rule from=\"^http://(img|www)\\.instructables\\.com/\" to=\"https://$1.instructables.com/\"/><securecookie host=\"^\\.instructables\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Int Gov Forum.org (partial)\" f=\"Int_Gov_Forum.org.xml\"><rule from=\"^http://(www\\.)?intgovforum\\.org/(?=cms/(?:components|images|media|modules|templates)/)\" to=\"https://$1intgovforum.org/\"/></ruleset>", "<ruleset name=\"intan.net\" f=\"Intan.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intego.com\" f=\"Intego.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\.fp\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.intego\\.com/\" to=\"https://d2peew1v0y8u0k.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Integral-Marketing.com (partial)\" f=\"Integral-Marketing.com.xml\"><rule from=\"^http://ads\\.integral-marketing\\.com/\" to=\"https://saxp.zedo.com/\"/></ruleset>", "<ruleset name=\"Integrity.pt\" f=\"Integrity.pt.xml\"><securecookie host=\"^\\.integrity\\.pt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Integrity.st\" f=\"Integrity.st.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel (mismatches)\" default_off=\"mismatch\" f=\"Intel-mismatches.xml\"><rule from=\"^http://failover\\.intel\\.com/\" to=\"https://failover.intel.com/\"/><rule from=\"^http://(?:www\\.)?intel\\.co\\.uk/\" to=\"https://www.intel.co.uk/\"/><rule from=\"^http://itcommunity\\.intel\\.co\\.uk/\" to=\"https://www.intel.co.uk/content/www/uk/en/it-management/intel-it/it-managers.html\"/></ruleset>", "<ruleset name=\"Intel.co.jp (partial)\" default_off=\"failed ruleset test\" f=\"Intel.co.jp.xml\"><securecookie host=\"^newsroom\\.intel\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://newsroom\\.intel\\.co\\.jp/\" to=\"https://newsroom.intel.co.jp/\"/></ruleset>", "<ruleset name=\"Intel.co.uk (partial)\" f=\"Intel.co.uk.xml\"><exclusion pattern=\"^http://iq\\.intel\\.co\\.uk/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http://iq\\.intel\\.co\\.uk/\" to=\"https://iq.intel.co.uk/\"/></ruleset>", "<ruleset name=\"Intel.com (false MCB)\" platform=\"mixedcontent\" f=\"Intel.com-falsemixed.xml\"><securecookie host=\"^newsroom\\.intel\\.com$\" name=\".+\"/><rule from=\"^http://newsroom\\.intel\\.com/\" to=\"https://newsroom.intel.com/\"/></ruleset>", "<ruleset name=\"Intel.com (partial)\" f=\"Intel.xml\"><exclusion pattern=\"^http://(?:www\\.)?intel\\.com/(?!content/|etc/|favicon\\.ico|newsroom/assets/(?!bio/)|sites/)\"/><exclusion pattern=\"^http://newsroom\\.intel\\.com/+(?!favicon\\.ico|(?:\\d\\.\\d\\.\\d/)?(?:images/|plugins/|styles/|themes?/)|people/\\w+/avatar/)\"/><securecookie host=\".+\\.intel\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?intel\\.com/\" to=\"https://www-ssl.intel.com/\"/><rule from=\"^http://embedded\\.edc\\.intel\\.com/+(?:$|\\?.*)\" to=\"https://embedded.communities.intel.com/\"/><rule from=\"^http://inside\\.intel\\.com/\" to=\"https://secure-inside.intel.com/\"/><rule from=\"^http://xdk\\.intel\\.com/$\" to=\"https://software.intel.com/en-us/intel-xdk\"/><rule from=\"^http://xdk\\.intel\\.com/\\?$\" to=\"https://software.intel.com/en-us/intel-xdk/\"/><rule from=\"^http://xdk\\.intel\\.com/\" to=\"https://software.intel.com/en-us/intel-xdk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel Fellowships.com\" f=\"Intel_Fellowships.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel Free Press.com\" default_off=\"mismatched\" f=\"Intel_Free_Press.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intelexit.org\" f=\"Intelexit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intelish.com\" f=\"Intelish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intelli-direct.com\" f=\"Intelli-direct.com.xml\"><securecookie host=\"^\\.intelli-direct\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?intelli-direct\\.com/\" to=\"https://$1intelli-direct.com/\"/></ruleset>", "<ruleset name=\"Intelligence.org\" f=\"Intelligence.org.xml\"><rule from=\"^http://(?:www\\.)?intelligence\\.org/\" to=\"https://intelligence.org/\"/></ruleset>", "<ruleset name=\"Intelligent Exploit.com\" f=\"Intelligent_Exploit.com.xml\"><securecookie host=\"^\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intelliot.com\" f=\"Intelliot.com.xml\"><securecookie host=\"^\\.intelliot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intelliserver.net\" default_off=\"failed ruleset test\" f=\"Intelliserver.net.xml\"><rule from=\"^http://(?:www\\.)?intelliserver\\.net/\" to=\"https://www.intelliserver.net/\"/></ruleset>", "<ruleset name=\"intelliwebservices.com\" f=\"Intelliwebservices.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intelliworks Chat.com\" f=\"Intelliworks_Chat.com.xml\"><rule from=\"^http://intelliworkschat\\.com/.*\" to=\"https://www.intelliworkschat.com/\"/><rule from=\"^http://www\\.intelliworkschat\\.com/\" to=\"https://www.intelliworkschat.com/\"/><rule from=\"^https?://(?:www\\.)?poll\\.intelliworkschat\\.com/\" to=\"https://poll.intelliworkschat.com/\"/></ruleset>", "<ruleset name=\"Intelrad.com\" default_off=\"failed ruleset test\" f=\"Intelrad.com.xml\"><securecookie host=\"^\\.intelrad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intency.com (partial)\" f=\"Intency.com.xml\"><securecookie host=\"^my\\.intencysrv\\.com$\" name=\".+\"/><rule from=\"^http://my\\.intencysrv\\.com/\" to=\"https://my.intencysrv.com/\"/></ruleset>", "<ruleset name=\"Intencysrv.com (partial)\" f=\"Intencysrv.com.xml\"><securecookie host=\"^\\.intencysrv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intense School\" default_off=\"expired\" f=\"Intense_School.xml\"><rule from=\"^http://(?:www\\.)?intenseschool\\.com/\" to=\"https://www.intenseschool.com/\"/></ruleset>", "<ruleset name=\"IntensityLab.com\" f=\"IntensityLab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intent Media (mismatches)\" default_off=\"Certificate mismatch\" f=\"Intent-Media-mismatches.xml\"><rule from=\"^http://(www\\.)?(audioprointernational|develop100|licensing|mcvpacific|mi-pro|toynews-online)\\.(biz|com|co\\.uk)/\" to=\"https://www.$2.$3/\"/></ruleset>", "<ruleset name=\"Intent Media (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Intent-Media.xml\"><rule from=\"^http://(www\\.)?(bikebiz|develop-online|intentmedia|mcvuk|mobile-ent|pcr-online)\\.(biz|com|co\\.uk|net)/\" to=\"https://www.$2.$3/\"/></ruleset>", "<ruleset name=\"intentmedia.net (partial)\" f=\"Intentmedia.xml\"><rule from=\"^http://a\\.intentmedia\\.net/\" to=\"https://a.intentmedia.net/\"/></ruleset>", "<ruleset name=\"Inter.net (partial)\" platform=\"mixedcontent\" f=\"Inter.net.xml\"><securecookie host=\"^www\\.br\\.inter\\.net$\" name=\".*\"/><rule from=\"^http://((?:www\\.)?br|hosting\\.de)\\.inter\\.net/\" to=\"https://$1.inter.net/\"/><rule from=\"^http://central\\.br\\.inter\\.net/\" to=\"https://www.br.inter.net/central-assinante\"/></ruleset>", "<ruleset name=\"InterContinental Hotels Group\" f=\"InterContinental_Hotels_Group.xml\"><exclusion pattern=\"^http://(?:contact|qa\\.contact|development)\\.ihg\\.com/\"/><securecookie host=\"^(?:.*\\.)?ihg\\.com$\" name=\".+\"/><rule from=\"^http://ihg\\.com/\" to=\"https://www.ihg.com/\"/><rule from=\"^http://([^/:@]+)?\\.ihg\\.com/\" to=\"https://$1.ihg.com/\"/><rule from=\"^http://ihgagent\\.com/\" to=\"https://www.ihgagent.com/\"/><rule from=\"^http://([^/:@]+)?\\.ihgagent\\.com/\" to=\"https://$1.ihgagent.com/\"/></ruleset>", "<ruleset name=\"InterNetworX\" f=\"InterNetworX.xml\"><securecookie host=\"^(?:.*\\.)?inwx\\.(?:at|ch|com|de|es|net)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?inwx\\.(at|ch|de|es)/\" to=\"https://www.inwx.$1/\"/><rule from=\"^http://(?:www\\.)?inwx\\.(?:com|net)/\" to=\"https://www.inwx.com/\"/></ruleset>", "<ruleset name=\"InterQ.or.jp (partial)\" f=\"InterQ.or.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InterWorx (partial)\" default_off=\"failed ruleset test\" f=\"InterWorx.xml\"><securecookie host=\"^(?:my|support)?\\.interworx\\.com$\" name=\".*\"/><rule from=\"^http://((my|support|www)\\.)?interworx\\.com/\" to=\"https://$1interworx.com/\"/></ruleset>", "<ruleset name=\"Interac.ca\" f=\"Interac.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interac PoS Centre.ca\" f=\"Interac_PoS_Centre.ca.xml\"><rule from=\"^http://interacposcentre\\.ca/\" to=\"https://interacposcentre.ca/\"/></ruleset>", "<ruleset name=\"IAB.net\" platform=\"mixedcontent\" f=\"Interactive-Advertising-Bureau.xml\"><securecookie host=\"^(?:www)?\\.iab\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interactive Marketing Solutions\" default_off=\"failed ruleset test\" f=\"Interactive-Marketing-Solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interactive Media Awards\" f=\"Interactive-Media-Awards.xml\"><rule from=\"^http://(?:www\\.)?interactivemediaawards\\.com/\" to=\"https://www.interactivemediaawards.com/\"/><securecookie host=\"^www\\.interactivemediaawards\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Interactive Media in Retail Group (partial)\" default_off=\"handshake failure\" f=\"Interactive-Media-in-Retail-Group.xml\"><securecookie host=\"^isisaccreditation\\.imrg\\.org$\" name=\".*\"/><rule from=\"^http://isisaccreditation\\.imrg\\.org/\" to=\"https://isisaccreditation.imrg.org/\"/></ruleset>", "<ruleset name=\"Interactive Data Corporation (partial)\" f=\"Interactive_Data_Corporation.xml\"><securecookie host=\"^(?:services|vantage)\\.interactivedata\\.com$\" name=\".+\"/><rule from=\"^http://chartbigchart\\.gtm\\.idmanagedsolutions\\.com/\" to=\"https://chartbigchart.gtm.idmanagedsolutions.com/\"/><rule from=\"^http://(fundrun|pool|services|vantage)\\.interactivedata\\.com/\" to=\"https://$1.interactivedata.com/\"/><rule from=\"^http://go\\.interactivedata\\.com/(cs|image|r)s/\" to=\"https://na-o.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"Interactive Online\" default_off=\"failed ruleset test\" f=\"Interactive_Online.xml\"><securecookie host=\"^interactiveonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?interactiveonline\\.com/\" to=\"https://interactiveonline.com/\"/><rule from=\"^http://cpanel(8|9|1[012])\\.primary001\\.net/\" to=\"https://cpanel$1.primary001.net/\"/></ruleset>", "<ruleset name=\"Interc.pt\" f=\"Interc.pt.xml\"><rule from=\"^http://interc\\.pt/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"Intercom.io (mismatched)\" default_off=\"mismatched\" f=\"Intercom.io-problematic.xml\"><securecookie host=\"^webinars\\.intercom\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intercom.io\" f=\"Intercom.io.xml\"><securecookie host=\"^(?:api\\.|www\\.)?intercom\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intercom CDN.com\" f=\"Intercom_CDN.com.xml\"><securecookie host=\"^\\.intercomcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interface Ecology Lab\" default_off=\"mismatch\" f=\"Interface-Ecology-Lab.xml\"><rule from=\"^http://(?:www\\.)?ecologylab\\.net/\" to=\"https://ecologylab.net/\"/></ruleset>", "<ruleset name=\"Interfacelift.com\" f=\"Interfacelift.xml\"><securecookie host=\"^(?:www\\.)?interfacelift\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?interfacelift\\.com/\" to=\"https://interfacelift.com/\"/></ruleset>", "<ruleset name=\"Interference.cc\" default_off=\"failed ruleset test\" f=\"Interference.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intergi.com (partial)\" f=\"Intergi.xml\"><securecookie host=\"^\\.intergi\\.com$\" name=\"^CfP$\"/><securecookie host=\"^app\\.intergi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interhyp.de\" f=\"Interhyp.de.xml\"><rule from=\"^http://(?:www\\.)?interhyp\\.de/\" to=\"https://www.interhyp.de/\"/></ruleset>", "<ruleset name=\"Interkassa.com\" f=\"Interkassa.xml\"><securecookie host=\"^(?:.+\\.)?interkassa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interlan.se\" default_off=\"failed ruleset test\" f=\"Interlan.se.xml\"><rule from=\"^http://(www2?\\.)?interlan\\.se/\" to=\"https://$1interlan.se/\"/></ruleset>", "<ruleset name=\"Intermundo Media.com\" default_off=\"failed ruleset test\" f=\"Intermundo_Media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internap Network Services (partial)\" default_off=\"failed ruleset test\" f=\"Internap.xml\"><securecookie host=\"^www\\.internap\\.com$\" name=\".+\"/><rule from=\"^http://http\\.cdnlayer\\.com/\" to=\"https://sslcdce.internapcdn.net/\"/><rule from=\"^http://www\\.internap\\.co\\.jp/\" to=\"https://www.internap.co.jp/\"/><rule from=\"^http://(customers\\.|www\\.)?internap\\.com/\" to=\"https://$1internap.com/\"/><rule from=\"^http://promo\\.internap\\.com/ImgHost/\" to=\"https://app.manticoretechnolgy.com/ImgHost/\"/><rule from=\"^http://sslcdce\\.internapcdn\\.net/\" to=\"https://sslcdce.internapcdn.net/\"/></ruleset>", "<ruleset name=\"IACR.org\" f=\"International-Association-for-Cryptologic-Research.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://iacr\\.org/\" to=\"https://www.iacr.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Business Times (partial)\" f=\"International-Business-Times.xml\"><rule from=\"^http://markets\\.ibtimes\\.com/$\" to=\"https://studio-5.financialcontent.com/ibtimes\"/><rule from=\"^http://markets\\.ibtimes\\.com/\" to=\"https://studio-5.financialcontent.com/\"/><rule from=\"^http://ssl\\.ibtimes\\.com/\" to=\"https://ssl.ibtimes.com/\"/></ruleset>", "<ruleset name=\"ICU-Project.org (partial)\" f=\"International-Components-for-Unicode.xml\"><exclusion pattern=\"^http://(?:(?:apps|bugs|demo|source|www)\\.)?icu-project\\.org/$\"/><securecookie host=\"^ssl\\.icu-project\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:apps|bugs|demo|source|ssl|www)\\.)?icu-project\\.org/\" to=\"https://ssl.icu-project.org/\"/></ruleset>", "<ruleset name=\"International Finance Corporation (mismatches)\" default_off=\"expired, mismatch\" f=\"International-Finance-Corporation-mismatches.xml\"><securecookie host=\"^(?:ifcext|www1)\\.ifc\\.org$\" name=\".*\"/><rule from=\"^http://ifcext\\.ifc\\.org/\" to=\"https://ifcext.ifc.org/\"/><rule from=\"^http://(?:www1?\\.)?ifc\\.org/\" to=\"https://www1.ifc.org/\"/></ruleset>", "<ruleset name=\"International Finance Corporation (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"International-Finance-Corporation.xml\"><securecookie host=\"^www\\.(?:gefpmis|miga|wbginvestmentclimate)\\.org$\" name=\".*\"/><securecookie host=\"^smartlessons\\.ifc\\.org$\" name=\".*\"/><securecookie host=\"^openknowledge\\.worldbank\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?gefpmis\\.org/\" to=\"https://$1gefpmis.org/\"/><rule from=\"^http://smartlessons\\.ifc\\.org/\" to=\"https://smartlessons.ifc.org/\"/><rule from=\"^http://(?:www\\.)?miga\\.org/\" to=\"https://www.miga.org/\"/><rule from=\"^http://thegef\\.org/\" to=\"https://thegef.org/\"/><rule from=\"^http://(www\\.)?thegef\\.org/gef/(misc/|sites/|user)/\" to=\"https://$1thegef.org/gef/$2\"/><rule from=\"^http://(?:www\\.)?wbginvestmentclimate\\.org/\" to=\"https://www.wbginvestmentclimate.org/\"/><rule from=\"^http://openknowledge\\.worldbank\\.org/\" to=\"https://openknowledge.worldbank.org/\"/></ruleset>", "<ruleset name=\"International Free and Open Source Software Law Review\" default_off=\"expired\" f=\"International-Free-and-Open-Source-Software-Law-Review.xml\"><securecookie host=\"^www\\.ifosslr\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ifosslr\\.org/\" to=\"https://www.ifosslr.org/\"/></ruleset>", "<ruleset name=\"International Supercomputing Conference\" f=\"International-Supercomputing-Conference.xml\"><securecookie host=\"^(?:www\\.)?isc-events\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InternationalMan\" default_off=\"failed ruleset test\" f=\"InternationalMan.xml\"><securecookie host=\"^\\.www\\.internationalman\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Association.org\" f=\"International_Association_of_Privacy_Professionals.xml\"><securecookie host=\"^(?:www\\.)?privacyassociation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Consortium of Investigative Journalists\" default_off=\"failed ruleset test\" f=\"International_Consortium_of_Investigative_Journalists.xml\"><securecookie host=\"^\\.icij\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?icij\\.org/\" to=\"https://$1icij.org/\"/><rule from=\"^http://cloudfront-\\d\\.icij\\.org/\" to=\"https://d2i83gre49b1s9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"International Energy Agency\" f=\"International_Energy_Agency.xml\"><rule from=\"^http://(?:www\\.)?iea\\.org/\" to=\"https://www.iea.org/\"/></ruleset>", "<ruleset name=\"International Financial Cryptography Association (partial)\" default_off=\"failed ruleset test\" f=\"International_Financial_Cryptography_Association.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Payments.co.uk\" default_off=\"failed ruleset test\" f=\"International_Payments.co.uk.xml\"><securecookie host=\"^www\\.internationalpayments\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?internationalpayments\\.co\\.uk/\" to=\"https://www.internationalpayments.co.uk/\"/></ruleset>", "<ruleset name=\"International SOS.org\" f=\"International_SOS.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scene.org (partial)\" f=\"International_Scene_Organization.xml\"><securecookie host=\"^(?:id\\.|www\\.)?scene\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International School of the Sacred Heart\" f=\"International_School_of_the_Sacred_Heart.xml\"><securecookie host=\"^(?:www)?\\.issh.ac.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archive.org\" f=\"Internet-Archive.xml\"><exclusion pattern=\"^http://(?:graphite|pgdp01|s3|lending)\\.us\\.archive\\.org/\"/><securecookie host=\"^\\.archive\\.org$\" name=\".+\"/><rule from=\"^http://blog\\.openlibrary\\.archive\\.org/\" to=\"https://blog.openlibrary.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Governance Project\" default_off=\"self-signed\" f=\"Internet-Governance-Project.xml\"><rule from=\"^http://(?:www\\.)?internetgovernance\\.org/\" to=\"https://www.internetgovernance.org/\"/></ruleset>", "<ruleset name=\"Internet-Radio.com\" f=\"Internet-Radio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Safety Project\" f=\"Internet-Safety-Project.xml\"><securecookie host=\"^www\\.internetsafetyproject\\.org$\" name=\".+\"/><rule from=\"^http://internetsafetyproject\\.org/\" to=\"https://www.internetsafetyproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Society.org (partial)\" f=\"Internet-Society.xml\"><exclusion pattern=\"^http://www\\.internetsociety\\.org/+(?!$|\\?|favicon\\.ico|(?:form/donation|who-we-are/contact-us)(?:$|[?/])|misc/|modules/|sites/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet.bs\" f=\"Internet.bs.xml\"><securecookie host=\"^\\.internetbs\\.net$\" name=\".+\"/><rule from=\"^http://(?:(chat\\.)|www\\.)?internet\\.bs/\" to=\"https://$1internet.bs/\"/><rule from=\"^http://(?:www\\.)?internetbs\\.net/\" to=\"https://internetbs.net/\"/></ruleset>", "<ruleset name=\"Internet.org.nz\" f=\"Internet.org.nz.xml\"><securecookie host=\"^\\.internet\\.org\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet.org\" f=\"Internet.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet2.edu (partial)\" f=\"Internet2.xml\"><exclusion pattern=\"^http://middleware\\.internet2\\.edu/(?!$|\\?)\"/><securecookie host=\"^(?:\\.lists|service1|spaces|wiki|www)\\.internet2\\.edu$\" name=\".+\"/><rule from=\"^http://internet2\\.edu/\" to=\"https://www.internet2.edu/\"/><rule from=\"^http://middleware\\.internet2\\.edu/(?:\\?.*)?$\" to=\"https://www.internet2.edu/middleware/index.cfm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Brands\" f=\"Internet_Brands.xml\"><rule from=\"^http://pxlssl\\.ibpxl\\.com/\" to=\"https://pxlssl.ibpxl.com/\"/><rule from=\"^http://(?:cdc|cdcssl|mms)\\.ibsrv\\.net/\" to=\"https://cdcssl.ibsrv.net/modelmayhem/\"/><rule from=\"^http://static(?:ssl)?\\.ibsrv\\.net/\" to=\"https://staticssl.ibsrv.net/\"/><rule from=\"^http://(?:www\\.)?internetbrands\\.com/mt-static/\" to=\"https://cdcssl.ibsrv.net/ibcom/mt-static/\"/></ruleset>", "<ruleset name=\"Internet Coup.org\" default_off=\"mismatched\" f=\"Internet_Coup.org.xml\"><securecookie host=\"^www\\.internetcoup\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?internetcoup\\.org/\" to=\"https://www.internetcoup.org/\"/></ruleset>", "<ruleset name=\"Internet Defense League.org\" f=\"Internet_Defense_League.xml\"><securecookie host=\"^(?:members)?\\.internetdefenseleague\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Live Stats.com\" platform=\"mixedcontent\" f=\"Internet_Live_Stats.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Protection Lab.net\" f=\"Internet_Protection_Lab.net.xml\"><securecookie host=\"^\\.internetprotectionlab\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Staff.com\" f=\"Internet_Staff.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Video Archive.com (partial)\" f=\"Internet_Video_Archive.com.xml\"><rule from=\"^http://content\\.internetvideoarchive\\.com/\" to=\"https://d2nebe8lbbiml.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Internet Week.jp\" f=\"Internet_Week.jp.xml\"><rule from=\"^http://(?:www\\.)?internetweek\\.jp/\" to=\"https://internetweek.jp/\"/></ruleset>", "<ruleset name=\"Internetfonden.se\" f=\"Internetfonden.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"internetsuccess.at\" f=\"Internetsuccess.at.xml\"><rule from=\"^http://(?:(p42\\.|second\\.)|www\\.)?internetsuccess\\.at/\" to=\"https://$1internetsuccess.at/\"/></ruleset>", "<ruleset name=\"Internews\" f=\"Internews.org.xml\"><rule from=\"^http://(?:www\\.)?internews\\.org/\" to=\"https://www.internews.org/\"/></ruleset>", "<ruleset name=\"Internot.info (partial)\" f=\"Internot.info.xml\"><securecookie host=\"^\\.internot\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interns.org\" default_off=\"self-signed\" f=\"Interns.org.xml\"><rule from=\"^http://(?:www\\.)?interns\\.org/\" to=\"https://www.interns.org/\"/></ruleset>", "<ruleset name=\"Interpol\" default_off=\"No longer supports HTTPS\" f=\"Interpol.xml\"><rule from=\"^http://(?:www\\.)?interpol\\.int/\" to=\"https://www.interpol.int/\"/></ruleset>", "<ruleset name=\"Intersango.com\" default_off=\"failed ruleset test\" f=\"Intersango.com.xml\"><securecookie host=\"^\\.intersango\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intersect Alliance.com\" f=\"Intersect_Alliance.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interstices.info\" f=\"Interstices.info.xml\"><rule from=\"^http://(?:www\\.)?interstices\\.info/\" to=\"https://interstices.info/\"/></ruleset>", "<ruleset name=\"Intevation GmbH (partial)\" f=\"Intevation-GmbH.xml\"><securecookie host=\"^(ssl\\.|www\\.)?intevation\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Into Higher.com\" f=\"Into_Higher.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intrepid Museum\" f=\"Intrepid_Museum.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intrepidus Group.com\" f=\"Intrepidus_Group.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Introversion Software (partial)\" f=\"Introversion-Software.xml\"><rule from=\"^http://(www\\.)?introversion\\.co\\.uk/(blog/|darwinia/(?:purchase(?:$|/)|sharedresources/))\" to=\"https://$1introversion.co.uk/$2\"/></ruleset>", "<ruleset name=\"Introweb Kft.\" f=\"Introweb.xml\"><securecookie host=\"^www\\.introweb\\.hu$\" name=\".+\"/><rule from=\"^http://([^@:/]*)\\.introweb\\.hu/\" to=\"https://$1.introweb.hu/\"/></ruleset>", "<ruleset name=\"Intuit (problematic)\" default_off=\"mismatched\" f=\"Intuit-problematic.xml\"><rule from=\"^http://(?:www\\.)?/intuitpayments\\.com/(favicon\\.ico|Global/|KeyGrip\\.ashx|Templates/)\" to=\"https://intuitpayments.com/$1\"/></ruleset>", "<ruleset name=\"Intuit (partial)\" default_off=\"failed ruleset test\" f=\"Intuit.xml\"><securecookie host=\"^.+\\.intuit\\.com$\" name=\".+\"/><securecookie host=\"^billscenter\\.paytrust\\.com$\" name=\".+\"/><rule from=\"^http://quicken\\.intuit\\.com/(\\?.*)?$\" to=\"https://quicken.intuit.com/index.jsp$1\"/><rule from=\"^http://((?:about|academy|(?:blog\\.)?accountants|accounts|(?:css\\.|images\\.)?appcenter|business|community|developer|enterprisesuite|(?:www\\.)?fi|healthcards?|healthcare|http-download|ifs|insurance|intuitmarket|ipn|quickbooks\\.lc|qbosg\\.lcp|learn|marketplace|paymentnetwork|payments|payroll|paytrust|pointofsale|privacy|proadvisor|psswprod3lb|support\\.quickbooks\\.qdc|quickbase|quickbase-community-e2e|(?:support\\.)?quickbooks|quickbooksonline|quicken|sci|security|smallbusiness|ttlc|ttlcprd|(?:images\\.)?turbotax|turbotaxcpaselect|websites|www)\\.)?intuit\\.com/\" to=\"https://$1intuit.com/\"/><rule from=\"^http://a\\d*\\.quickbase\\.intuit\\.com/\" to=\"https://quickbase.intuit.com/\"/><rule from=\"^http://media\\.turbotaxcpaselect\\.intuit\\.com/\" to=\"https://s3.amazonaws.com/media.turbotaxcpaselect.intuit.com/\"/><rule from=\"^http://(\\w+)\\.intuitcdn\\.net/\" to=\"https://$1.intuitcdn.net/\"/><rule from=\"^http://(payments-s3|s[123])\\.intuitstatic\\.com/\" to=\"https://$1.intuitstatic.com/\"/><rule from=\"^http://billscenter\\.paytrust\\.com/\" to=\"https://billscenter.paytrust.com/\"/><rule from=\"^http://(?:www\\.)?quickbase\\.com/\" to=\"https://www.quickbase.com/\"/><rule from=\"^http://intuitcorp\\.quickbase\\.com/\" to=\"https://intuitcorp.quickbase.com/\"/><rule from=\"^http://(www\\.)?turbotax\\.com/\" to=\"https://$1turbotax.com/\"/></ruleset>", "<ruleset name=\"Intuit Labs.com\" default_off=\"failed ruleset test\" f=\"Intuit_Labs.com.xml\"><securecookie host=\"^\\.intuitlabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intuitiv (partial)\" f=\"Intuitiv.xml\"><exclusion pattern=\"^http://www\\.csmres\\.co\\.uk/\"/><rule from=\"^http://(\\w+)\\.csmres\\.co\\.uk/\" to=\"https://$1.csmres.co.uk/\"/></ruleset>", "<ruleset name=\"Intuitive Password.com (partial)\" f=\"Intuitive_Password.com.xml\"><securecookie host=\"^(?:www)?\\.intuitivepassword\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?intuitivepassword\\.com/\" to=\"https://www.intuitivepassword.com/\"/></ruleset>", "<ruleset name=\"intux.de\" f=\"Intux.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inuits.eu\" f=\"Inuits.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invasion.com\" f=\"Invasion.com.xml\"><securecookie host=\"^(?:book)?\\.invasion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InvenSense.com (partial)\" f=\"InvenSense.com.xml\"><securecookie host=\"^store\\.invensense\\.com$\" name=\".+\"/><rule from=\"^http://store\\.invensense\\.com/\" to=\"https://store.invensense.com/\"/></ruleset>", "<ruleset name=\"Invenio-software.org\" default_off=\"failed ruleset test\" f=\"Invenio-software.org.xml\"><securecookie host=\"^invenio-software\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InventHelp\" f=\"InventHelp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inventive Designers.com\" f=\"Inventive_Designers.com.xml\"><securecookie host=\"^(?:www\\.)?inventivedesigners.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inverse\" f=\"Inverse.xml\"><securecookie host=\"^inverse\\.ca$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?inverse\\.ca/\" to=\"https://inverse.ca/\"/></ruleset>", "<ruleset name=\"InvestSMART (partial)\" platform=\"mixedcontent\" f=\"InvestSMART.xml\"><rule from=\"^http://investsmart\\.com\\.au/\" to=\"https://www.investsmart.com.au/\"/><rule from=\"^http://www\\.investsmart\\.com\\.au/(banner_ads|images|membership|share_trading|style)/\" to=\"https://www.investsmart.com.au/$1/\"/></ruleset>", "<ruleset name=\"Investigative News Network (partial)\" default_off=\"mismatch\" f=\"Investigative-News-Network.xml\"><rule from=\"^http://(?:www\\.)?npjhub\\.org/favicon\\.ico\" to=\"https://www.npjhub.org/favicon.ico\"/><rule from=\"^http://(?:www\\.)?npjhub\\.org/wp-(admin/|content/|login\\.php)\" to=\"https://www.npjhub.org/~npjhubor/wp-$1\"/></ruleset>", "<ruleset name=\"Investigative Dashboard.org\" f=\"Investigative_Dashboard.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Investing Channel (partial)\" f=\"Investing-Channel.xml\"><rule from=\"^http://ads\\.investingchannel\\.com/\" to=\"https://ads.investingchannel.com/\"/><rule from=\"^http://cdn\\.investingchannel\\.com/\" to=\"https://s3.amazonaws.com/cdn.investingchannel.com/\"/></ruleset>", "<ruleset name=\"Investis.com (partial)\" f=\"Investis.com.xml\"><rule from=\"^http://(?:miranda\\.hemscott|hsprod\\.investis)\\.com/\" to=\"https://hsprod.investis.com/\"/></ruleset>", "<ruleset name=\"Investor.gov\" default_off=\"failed ruleset test\" f=\"Investor.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Investors in People.co.uk\" f=\"Investors-in-People.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Investors.com (partial)\" default_off=\"Breaks site\" f=\"Investors.com.xml\"><exclusion pattern=\"http://news\\.investors\\.com/(?![\\w-]+/|ClientScriptCombiner\\.aspx|favicon\\.ico|(?:Script|Web)Resource\\.axd)\"/><securecookie host=\"^(?:www\\.)?investors\\.com$\" name=\".+\"/><rule from=\"^http://(?:www1\\.ibdcd|news\\.investors)\\.com/\" to=\"https://www.investors.com/\"/><rule from=\"^http://(www\\.)?investors\\.com/\" to=\"https://$1investors.com/\"/></ruleset>", "<ruleset name=\"Invincea.com (partial)\" f=\"Invincea.com.xml\"><rule from=\"^http://(www\\.)?invincea\\.com/(?=support(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1invincea.com/\"/><rule from=\"^http://info\\.invincea\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjn.marketo.com/\"/></ruleset>", "<ruleset name=\"Invision Power.com\" f=\"Invision-Power-Services.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invite Media (partial)\" f=\"Invite_Media.xml\"><securecookie host=\"^\\.invitemedia\\.com$\" name=\"^(?:segments_p1|uid)$\"/><rule from=\"^http://(?:www\\.)?invitemedia\\.com/([\\w-]+\\.(?:css|png))\" to=\"https://www.invitemedia.com/$1\"/><rule from=\"^http://bub\\.px\\.invitemedia\\.com/\" to=\"https://pixel.invitemedia.com/\"/><rule from=\"^http://(?:dashboard(?:-cdn)?|g-pixel|pixel|segment-pixel)\\.invitemedia\\.com/\" to=\"https://$1.invitemedia.com/\"/></ruleset>", "<ruleset name=\"Invitel (partial)\" f=\"Invitel.xml\"><securecookie host=\"^(?:mail\\.invitel|webmail\\.eol)\\.hu$\" name=\".+\"/><rule from=\"^http://mail\\.invitel\\.hu/\" to=\"https://mail.invitel.hu/\"/></ruleset>", "<ruleset name=\"InvizBox.io\" f=\"InvizBox.io.xml\"><securecookie host=\"^(?:www\\.)?invizbox\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invoca.com (partial)\" f=\"Invoca.com.xml\"><rule from=\"^http://(www\\.)?invoca\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1invoca.com/\"/></ruleset>", "<ruleset name=\"Invoca.net\" f=\"Invoca.net.xml\"><securecookie host=\"^\\.invoca\\.net$\" name=\".+\"/><rule from=\"^http://(www2?\\.)?invoca\\.net/\" to=\"https://$1invoca.net/\"/></ruleset>", "<ruleset name=\"Invodo (partial)\" f=\"Invodo.xml\"><rule from=\"^http://(www\\.)?invodo\\.com/register/\" to=\"https://$1invodo.com/register/\"/><rule from=\"^http://e\\.invodo\\.com/\" to=\"https://e.invodo.com/\"/><rule from=\"^http://www2\\.invodo\\.com/l/\" to=\"https://go.pardot.com/l/\"/></ruleset>", "<ruleset name=\"Invoice Ocean\" f=\"Invoice_Ocean.xml\"><securecookie host=\"^\\.invoiceocean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Involver\" default_off=\"failed ruleset test\" f=\"Involver.xml\"><securecookie host=\"^.*\\.involver\\.com$\" name=\".*\"/><rule from=\"^http://((?:amp|docs|embednr|facebook|status|www)\\.)?involver\\.com/\" to=\"https://$1involver.com/\"/><rule from=\"^http://support\\.involver\\.com/(assets|generated|images|registration|system|widgets)/\" to=\"https://involver.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Inxpo.com (partial)\" f=\"Inxpo.com.xml\"><securecookie host=\"^www\\.inxpo\\.com$\" name=\".+\"/><rule from=\"^http://inxpo\\.com/\" to=\"https://www.inxpo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"io9.com\" default_off=\"mismatched\" f=\"Io9.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?io9\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IoMTT.com (partial)\" f=\"IoMTT.com.xml\"><exclusion pattern=\"^http://(?:shop\\.|www\\.)?iomtt\\.com/(?!~/|(?:Basket|My-Account)(?:$|[?/])|css/|favicon\\.ico|images/|js/)\"/><rule from=\"^http://(?:www\\.)?iomtt\\.com/\" to=\"https://www.iomtt.com/\"/><rule from=\"^http://shop\\.iomtt\\.com/\" to=\"https://shop.iomtt.com/\"/></ruleset>", "<ruleset name=\"ioSafe.com\" f=\"IoSafe.com.xml\"><securecookie host=\"^(?:www\\.)?iosafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iojs.org\" f=\"Iojs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ionic Framework.com (false MCB)\" platform=\"mixedcontent\" f=\"Ionic_Framework.com-falsemixed.xml\"><securecookie host=\"^\\.ionicframework\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://ionicframework\\.com/\" to=\"https://www.ionicframework.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ionic Framework.com (partial)\" f=\"Ionic_Framework.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?ionicframework\\.com/+(?!css/|favicon\\.ico|img/)\"/><securecookie host=\"^\\.ionicframework\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://ionicframework\\.com/\" to=\"https://www.ionicframework.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iono.fm\" f=\"Iono.fm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.iono\\.fm/\" to=\"https://d1pbkbr0pcz1zy.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iovation\" f=\"Iovation.xml\"><securecookie host=\"^(?:.+\\.)?iovation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipfs.io\" f=\"Ipfs.io.xml\"><securecookie host=\"^(gateway\\.)?ipfs\\.io\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipfs.pics\" f=\"Ipfs.pics.xml\"><securecookie host=\"^(www\\.)?ipfs\\.pics\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iplay.com (partial)\" f=\"Iplay.com.xml\"><rule from=\"^http://(?:www\\.)?iplay\\.com/(?=favicon\\.ico|page/secure/)\" to=\"https://www.iplay.com/\"/><rule from=\"^http://client\\.iplay\\.com/\" to=\"https://client.iplay.com/\"/></ruleset>", "<ruleset name=\"Ippen-Digital\" f=\"IppenDigital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipredictive.com (partial)\" f=\"Ipredictive.com.xml\"><rule from=\"^http://ad\\.ipredictive\\.com/\" to=\"https://ad.ipredictive.com/\"/></ruleset>", "<ruleset name=\"ipsidixit.net\" f=\"Ipsidixit.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipsos-MORI.com\" f=\"Ipsos-MORI.com.xml\"><securecookie host=\"^(?:www\\.)?ipsos-mori\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipsos-NA.com\" f=\"Ipsos.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipswich.gov.uk (partial)\" f=\"Ipswich.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iqualita.link\" f=\"Iqualita.link.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.iqualita\\.link/\" to=\"https://iqualita.link/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iRaiser.eu\" f=\"Iraiser.eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRCCloud\" f=\"Irccloud.com.xml\"><securecookie host=\"^irccloud\\.com$\" name=\".+\"/><securecookie host=\"^www\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^alpha\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^api\\.irccloud\\.com$\" name=\".+\"/><securecookie host=\"^blog\\.irccloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ireeco.com\" default_off=\"plaintext reply\" f=\"Ireeco.com.xml\"><securecookie host=\"^\\.ireeco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iridium Browser.de\" f=\"Iridium_Browser.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Irish Broadband\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IrishBroadband.xml\"><rule from=\"^http://irishbroadband\\.ie/\" to=\"https://www.irishbroadband.ie/\"/><rule from=\"^http://([^/:@\\.]+)\\.irishbroadband\\.ie/\" to=\"https://$1.irishbroadband.ie/\"/></ruleset>", "<ruleset name=\"Ironwhale.com\" f=\"Ironwhale.com.xml\"><securecookie host=\"^www\\.ironwhale\\.com$\" name=\".+\"/><rule from=\"^http://(mail|www)\\.ironwhale\\.com/\" to=\"https://$1.ironwhale.com/\"/></ruleset>", "<ruleset name=\"Irssi (partial)\" f=\"Irssi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Irwin Law\" f=\"Irwin-Law.xml\"><securecookie host=\"^www\\.irwinlaw\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?irwinlaw\\.com/\" to=\"https://www.irwinlaw.com/\"/></ruleset>", "<ruleset name=\"Is-its.org\" f=\"Is-its.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is Leaked.com\" f=\"Is_Leaked.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is TLS Fast Yet.com\" f=\"Is_TLS_Fast_Yet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isalo.org (partial)\" f=\"Isalo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iseclab.org (partial)\" f=\"Iseclab.org.xml\"><securecookie host=\"^anubis\\.iseclab\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isen.com\" default_off=\"mismatch\" f=\"Isen.com.xml\"><rule from=\"^http://(?:www\\.)?isen\\.com/\" to=\"https://isen.com/\"/></ruleset>", "<ruleset name=\"Ishares.com\" f=\"Ishares.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isle.jp\" f=\"Isle.jp.xml\"><rule from=\"^http://(?:www\\.)?isle\\.jp/+\" to=\"https://shared.gmocloud.com/\"/><rule from=\"^http://(home|set)\\.isle\\.jp/\" to=\"https://$1.isle.jp/\"/></ruleset>", "<ruleset name=\"Islenzka.net\" default_off=\"missing certificate chain\" f=\"Islenzka.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islington.gov.uk\" f=\"Islington.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://islington\\.gov\\.uk/\" to=\"https://www.islington.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isoHunt.to (partial)\" f=\"IsoHunt.to.xml\"><securecookie host=\"^isohunt\\.to$\" name=\".+\"/><securecookie host=\"^\\.isohunt\\.to$\" name=\"^__cfduid$\"/><rule from=\"^http://www\\.isohunt\\.to/\" to=\"https://isohunt.to/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IsoHunt\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IsoHunt.xml\"><securecookie host=\"^(?:.*\\.)?isohunt\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ads by isocket.com\" f=\"Isocket.xml\"><securecookie host=\".*\\.adsbyisocket\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isomorphic Software (partial)\" default_off=\"failed ruleset test\" f=\"Isomorphic_Software.xml\"><securecookie host=\"^www\\.isomorphic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?isomorphic\\.com/\" to=\"https://www.isomorphic.com/\"/></ruleset>", "<ruleset name=\"Isorno.com\" default_off=\"self-signed\" f=\"Isorno.com.xml\"><securecookie host=\"^\\.isorno\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?isorno\\.com/\" to=\"https://www.isorno.com/\"/></ruleset>", "<ruleset name=\"ispgateway.de (partial)\" f=\"Ispgateway.de.xml\"><rule from=\"^http://ml01\\.ispgateway\\.de/\" to=\"https://ml01.ispgateway.de/\"/></ruleset>", "<ruleset name=\"IssHub.com\" f=\"IssHub.io.xml\"><securecookie host=\"^\\.isshub\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Issuu.com (partial)\" f=\"Issuu_Aps.xml\"><exclusion pattern=\"^http://help\\.issuu\\.com/+(?!favicon\\.ico|images/|system/)\"/><rule from=\"^http://(feed|sidebar)\\.issuu\\.com/\" to=\"https://s3.amazonaws.com/$1.issuu.com/\"/><rule from=\"^http://help\\.issuu\\.com/\" to=\"https://issuu.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ist-track.com\" f=\"Ist-track.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"istanbul hs.org\" f=\"Istanbul_hs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"istella.it (partial)\" f=\"Istella.it.xml\"><rule from=\"^http://istella\\.it/\" to=\"https://www.istella.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isu.pub\" f=\"Isu.pub.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isyVmon (partial)\" default_off=\"failed ruleset test\" f=\"IsyVmon.xml\"><rule from=\"^http://(?:www\\.)?isyvmon\\.com/(fileadmin/|index\\.php\\?eID=sr_freecap_captcha|(?:de/)?login\\.html|typo3(?:conf|temp)?/)\" to=\"https://www.isyvmon.com/$1\"/></ruleset>", "<ruleset name=\"itBit.com\" f=\"ItBit.com.xml\"><securecookie host=\"^www\\.itbit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?itbit\\.com/\" to=\"https://www.itbit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.it\" platform=\"cacert\" f=\"Italian-Linux-Society.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itau.com.br\" f=\"Itau.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itbiz.cz\" default_off=\"expired\" f=\"Itbiz.cz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://itbiz\\.cz/\" to=\"https://www.itbiz.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itc.cn\" f=\"Itc.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itch.io\" f=\"Itch.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itex\" platform=\"mixedcontent\" f=\"Itex.xml\"><securecookie host=\"^(?:.*\\.)?itex\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?itex\\.com/\" to=\"https://www.itex.com/\"/></ruleset>", "<ruleset name=\"Ithaca College\" f=\"IthicaCollege.xml\"><rule from=\"^http://(?:www\\.)?ithaca\\.edu/\" to=\"https://ithaca.edu/\"/></ruleset>", "<ruleset name=\"Itpol.dk\" f=\"Itpol.dk.xml\"><rule from=\"^http://(www\\.)?it-?pol\\.dk/\" to=\"https://$1itpol.dk/\"/></ruleset>", "<ruleset name=\"itrust.org.cn\" default_off=\"expired\" f=\"Itrust.org.cn.xml\"><securecookie host=\"^(?:www\\.)?itrust\\.org\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"It's an Honour\" f=\"ItsAnHonour.xml\"><rule from=\"^http://(?:www\\.)?itsanhonour\\.gov\\.au/\" to=\"https://www.itsanhonour.gov.au/\"/></ruleset>", "<ruleset name=\"ItsLearning\" platform=\"mixedcontent\" f=\"ItsLearning.com.xml\"><rule from=\"^http://(?:www\\.)?itslearning\\.com/\" to=\"https://www.itslearning.com/\"/></ruleset>", "<ruleset name=\"iubenda.com\" f=\"Iubenda.com.xml\"><securecookie host=\"^\\.iubenda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iv.lt (partial)\" f=\"Iv.lt.xml\"><exclusion pattern=\"^http://pagalba\\.iv\\.lt/(?!images/)\"/><securecookie host=\"^klientams\\.iv\\.lt$\" name=\".+\"/><rule from=\"^http://((?:gedimai|grafika|klientams|pagalba|sutartys|www)\\.)?iv\\.lt/\" to=\"https://$1iv.lt/\"/></ruleset>", "<ruleset name=\"Ivacy.com (partial)\" f=\"Ivacy.xml\"><exclusion pattern=\"^http://(?:www\\.)?ivacy\\.com/+(?!wp-content/)\"/><securecookie host=\"^billing\\.ivacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivarch.com\" f=\"Ivarch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ive Got Kids.com (false MCB)\" platform=\"mixedcontent\" f=\"Ive_Got_Kids.com-falsemixed.xml\"><securecookie host=\"^\\.?(?:ivegotkids|togevi)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(ivegotkids|togevi)\\.com/(?!cdn-cgi/|community/(?:forum/session\\.php|user/(?:media|modules|plugins|templates)/)|favicon\\.ico|script/|wp-content/|wp-includes/)\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"Ive Got Kids.com (partial)\" f=\"Ive_Got_Kids.com.xml\"><rule from=\"^http://(www\\.)?(ivegotkids|togevi)\\.com/(?!cdn-cgi/|community/(?:forum/session\\.php|user/(?:media|modules|plugins|templates)/)|favicon\\.ico|script/|wp-content/|wp-includes/)\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"ivorde.com\" f=\"Ivorde.com.xml\"><rule from=\"^http://www\\.ivorde\\.com/\" to=\"https://ivorde.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivwbox.de (partial)\" f=\"Ivwbox.de.xml\"><exclusion pattern=\"^http://(?:pro|www)\\.\"/><securecookie host=\"^\\.ivwbox\\.de$\" name=\"^i00$\"/><securecookie host=\".+\\.ivwbox\\.de$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.ivwbox\\.de/\" to=\"https://$1.ivwbox.de/\"/></ruleset>", "<ruleset name=\"ix.de\" f=\"Ix.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ixquick\" f=\"Ixquick.xml\"><rule from=\"^http://ixquick\\.com/\" to=\"https://ixquick.com/\"/><rule from=\"^http://([^@/:]*)\\.ixquick\\.com/\" to=\"https://$1.ixquick.com/\"/><rule from=\"^http://ixquick-proxy\\.com/\" to=\"https://ixquick-proxy.com/\"/><rule from=\"^http://([^@/:]*)\\.ixquick-proxy\\.com/\" to=\"https://$1.ixquick-proxy.com/\"/><rule from=\"^http://startpage\\.com/\" to=\"https://startpage.com/\"/><rule from=\"^http://([^@/:]*)\\.startpage\\.com/\" to=\"https://$1.startpage.com/\"/><rule from=\"^http://startingpage\\.com/\" to=\"https://startingpage.com/\"/><rule from=\"^http://([^@/:]*)\\.startingpage\\.com/\" to=\"https://$1.startingpage.com/\"/><securecookie host=\"^\\.ixquick\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Izquierda-unida.es\" default_off=\"Cert warning\" f=\"Izquierda-unida.es.xml\"><rule from=\"^http://(?:www\\.)?izquierda-unida\\.es/\" to=\"https://www.izquierda-unida.es/\"/></ruleset>", "<ruleset name=\"Izvestia.ru (partial)\" default_off=\"failed ruleset test\" f=\"Izvestia.ru.xml\"><rule from=\"^http://fb\\.izvestia\\.ru/\" to=\"https://fb.izvestia.ru/\"/></ruleset>", "<ruleset name=\"j-schmitz.net\" f=\"J-schmitz.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"j.mp (partial)\" f=\"J.mp.xml\"><securecookie host=\"^\\.j\\.mp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"j2global.com\" f=\"J2global.com.xml\"><rule from=\"^http://sassets\\.j2global\\.com/\" to=\"https://sassets.j2global.com/\"/></ruleset>", "<ruleset name=\"JAMA Network (partial)\" f=\"JAMA-Network.xml\"><securecookie host=\"^(?:.*\\.)?jamanetwork\\.com$\" name=\".+\"/><rule from=\"^http://((?:arch(?:derm|faci|inte|neur|neurpsyc|opht|otol|neurpsyc|pedi|surg)|jama|store|www)\\.)?jamanetwork\\.com/\" to=\"https://$1jamanetwork.com/\"/></ruleset>", "<ruleset name=\"JAMF Software.com (partial)\" f=\"JAMF_Software.com.xml\"><rule from=\"^http://(jamfnation|my|support|store)\\.jamfsoftware\\.com/\" to=\"https://$1.jamfsoftware.com/\"/></ruleset>", "<ruleset name=\"JAMSTEC.go.jp\" f=\"JAMSTEC.go.jp.xml\"><securecookie host=\"^www\\.jamstec\\.go\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.jamstec\\.go\\.jp/\" to=\"https://www.jamstec.go.jp/\"/></ruleset>", "<ruleset name=\"JA.NET (partial)\" default_off=\"failed ruleset test\" f=\"JANET.xml\"><rule from=\"^http://(?:www\\.)?ja\\.net/\" to=\"https://www.ja.net/\"/><rule from=\"^http://(community|networkshop)\\.ja\\.net/\" to=\"https://$1.ja.net/\"/></ruleset>", "<ruleset name=\"JBeekman.nl\" f=\"JBeekman.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.jbeekman\\.nl/\" to=\"https://jbeekman.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JBoss.com (partial)\" f=\"JBoss.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JBoss.org\" f=\"JBoss.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JCB USA.com\" f=\"JCB_USA.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JCP.org\" f=\"JCP.org.xml\"><securecookie host=\"^(?:www\\.)?jcp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jCore.fr\" default_off=\"mismatched\" f=\"JCore.fr.xml\"><securecookie host=\"^www\\.jcore\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JCrosoft.com\" default_off=\"expired, mismatched\" f=\"JCrosoft.com.xml\"><securecookie host=\"^(?:www\\.)?jcrosoft\\.com$\" name=\".+\"/><rule from=\"^http://jcrosoft\\.com/\" to=\"https://www.jcrosoft.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.com (false MCB)\" platform=\"mixedcontent\" f=\"JD.com-mixedcontent.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.com (partial)\" f=\"JD.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.search\\.jd\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.hk (partial)\" f=\"JD.hk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JDI Dating (mismatches)\" default_off=\"mismatch\" f=\"JDI-Dating-mismatches.xml\"><rule from=\"^http://static\\.(?:just(?:hookup|romeo)|rudefinder)\\.com/\" to=\"https://static.justhookup.com/\"/></ruleset>", "<ruleset name=\"JDI Dating (partial)\" default_off=\"failed ruleset test\" f=\"JDI-Dating.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Kasten.com\" f=\"JD_Kasten.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Supra\" default_off=\"failed ruleset test\" f=\"JD_Supra.xml\"><securecookie host=\"^www\\.jdsupra\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jdsupra\\.com/\" to=\"https://www.jdsupra.com/\"/></ruleset>", "<ruleset name=\"JDpay.com (partial)\" f=\"JDpay.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JEDEC.com\" f=\"JEDEC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"J.F. Shea Co. (partial)\" default_off=\"expired\" f=\"JF-Shea-Co.xml\"><securecookie host=\"^www\\.bluestargolf\\.com$\" name=\".*\"/><securecookie host=\"^www\\.sheamortgage\\.com$\" name=\".*\"/><securecookie host=\"^www\\.trilogygolfclub\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bluestargolf\\.com/\" to=\"https://www.bluestargolf.com/\"/><rule from=\"^http://(?:www\\.)?sheamortgage\\.com/\" to=\"https://www.sheamortgage.com/\"/><rule from=\"^http://(?:www\\.)?trilogygolfclub\\.com/\" to=\"https://www.trilogygolfclub.com/\"/></ruleset>", "<ruleset name=\"JFK library.org (partial)\" f=\"JFK_Library.org.xml\"><securecookie host=\"^store\\.jfklibrary\\.org$\" name=\".+\"/><rule from=\"^http://store\\.jfklibrary\\.org/\" to=\"https://store.jfklibrary.org/\"/></ruleset>", "<ruleset name=\"JFrog.com\" f=\"JFrog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JGuitar.com\" default_off=\"self-signed\" f=\"JGuitar.com.xml\"><rule from=\"^http://(?:www\\.)?jguitar\\.com/\" to=\"https://www.jguitar.com/\"/></ruleset>", "<ruleset name=\"JH.edu (partial)\" f=\"JH.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JHMI.edu (partial)\" f=\"JHMI.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JHU.edu (false MCB)\" platform=\"mixedcontent\" f=\"JHU.edu-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JIDE.com\" f=\"JIDE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JISCMail.ac.uk\" f=\"JISCMail.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JJC.edu (partial)\" f=\"JJC.edu.xml\"><exclusion pattern=\"^http://www\\.jjc\\.edu/(?!_catalogs/|_layouts/|[\\w-]+/PublishingImages/|[Pp]ublishing[Ii]mages/|about/|admissions/pages/apply-now\\.aspx|Style%20Library/|publishingimages/)\"/><securecookie host=\"^(?:employment|eresources)\\.jjc\\.edu$\" name=\".+\"/><rule from=\"^http://jjc\\.edu/\" to=\"https://www.jjc.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JK ry.org\" f=\"JK_ry.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JList.com (partial)\" f=\"JList.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:affiliateplus_account_code_1|affiliateplus_map_index|frontend)$\"/><rule from=\"^http://images3\\.jlist\\.com/\" to=\"https://s3.amazonaws.com/images3.jlist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JML Direct.com\" f=\"JML_Direct.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.jmldirect\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?jmldirect\\.com/\" to=\"https://$1jmldirect.com/\"/><rule from=\"^http://jmldirect\\.uat\\.venda\\.com/content/\" to=\"https://www.jmldirect.com/content/\"/></ruleset>", "<ruleset name=\"jMod\" default_off=\"expired\" f=\"JMod.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JP Pol.dk (partial)\" f=\"JP-Politikens_Hus.xml\"><securecookie host=\"^polid\\.jppol\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JPBerlin.de\" f=\"JPBerlin.de.xml\"><rule from=\"^http://(?:www\\.)?jpberlin\\.de/\" to=\"https://www.jpberlin.de/\"/></ruleset>", "<ruleset name=\"JP-CERT\" f=\"JPCERT.xml\"><rule from=\"^http://www\\.jpcert\\.or\\.jp/\" to=\"https://www.jpcert.or.jp/\"/></ruleset>", "<ruleset name=\"JPG Magazine (self-signed)\" default_off=\"self-signed\" f=\"JPGmag.xml\"><rule from=\"^http://(?:www\\.)?jpgmag\\.com/\" to=\"https://jpgmag.com/\"/></ruleset>", "<ruleset name=\"JPackage.org\" default_off=\"self-signed\" f=\"JPackage.org.xml\"><rule from=\"^http://(?:www\\.)?jpackage\\.org/\" to=\"https://www.jpackage.org/\"/></ruleset>", "<ruleset name=\"jQuery.org\" f=\"JQuery.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery.com (partial)\" f=\"JQuery.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery Mobile.com (partial)\" f=\"JQuery_Mobile.com.xml\"><rule from=\"^http://www\\.jquerymobile\\.com/\" to=\"https://jquerymobile.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery UI.com (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"JQuery_UI.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery UI.com (partial)\" f=\"JQuery_UI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JRES.org\" f=\"JRES.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSBi.org\" default_off=\"missing certificate chain\" f=\"JSBi.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTB.ru (partial)\" f=\"JSC-VTB-Bank.xml\"><securecookie host=\".*\\.vtb\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSConf.us (partial)\" f=\"JSConf.us.xml\"><rule from=\"^http://static\\.jsconf\\.us/\" to=\"https://d3g6x5wbd1mc2t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"JSON Resume.org\" f=\"JSON_Resume.org.xml\"><securecookie host=\"^\\.jsonresume\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSTOR (partial)\" f=\"JSTOR.xml\"><rule from=\"^http://(?:www\\.)?jstor\\.org/((?:abs|betasearch/static|jawr|jawrcss|literatum|sda|stable|templates|userimages)/|action/(?:myJstorSettings|registration|show(?:Login|RegistrationUpdate))|rx(?:$|\\?))\" to=\"https://www.jstor.org/$1\"/><rule from=\"^http://about\\.jstor\\.org/(modul|sit)es/\" to=\"https://about.jstor.org/$1es/\"/></ruleset>", "<ruleset name=\"JSaO.io\" f=\"JSaO.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUA.com\" f=\"JUA.com.xml\"><securecookie host=\"^www\\.jua\\.com$\" name=\".+\"/><rule from=\"^http://jua\\.com/\" to=\"https://www.jua.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUCY New Zealand\" f=\"JUCY-New-Zealand.xml\"><securecookie host=\"^.*\\.jucy(cruize)?\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUKI\" f=\"JUKI.xml\"><rule from=\"^http://www\\.juki\\.co\\.jp/\" to=\"https://www.juki.co.jp/\"/></ruleset>", "<ruleset name=\"JVN.jp\" f=\"JVN.jp.xml\"><rule from=\"^http://jvn\\.jp/\" to=\"https://jvn.jp/\"/></ruleset>", "<ruleset name=\"JWChat.org\" default_off=\"missing certificate chain\" f=\"JWChat.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JW Platform.com (partial)\" f=\"JW_Platform.com.xml\"><exclusion pattern=\"^http://dashboard\\.jwplatform\\.com/+(?!payments/|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JXT.net.au (partial)\" default_off=\"failed ruleset test\" f=\"JXT.net.au.xml\"><rule from=\"^http://images\\.jxt\\.net\\.au/\" to=\"https://images.jxt.net.au/\"/></ruleset>", "<ruleset name=\"J Deslippe.com\" default_off=\"failed ruleset test\" f=\"J_Deslippe.com.xml\"><rule from=\"^http://(?:www\\.)?jdeslippe\\.com/\" to=\"https://www.jdeslippe.com/\"/></ruleset>", "<ruleset name=\"J Halderm.com\" f=\"J_Halderm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JabJab.de\" f=\"JabJab.de.xml\"><securecookie host=\"^www\\.jabjab\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JabbR.net\" f=\"JabbR.net.xml\"><securecookie host=\"^\\.?jabbr\\.net$\" name=\".+\"/><rule from=\"^http://jabbr\\.net/\" to=\"https://jabbr.net/\"/></ruleset>", "<ruleset name=\"Jabber.at\" f=\"Jabber.at.xml\"><securecookie host=\"^list\\.jabber\\.at$\" name=\".+\"/><rule from=\"^http://www\\.jabber\\.at/\" to=\"https://jabber.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabber.dk\" f=\"Jabber.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabber.no\" f=\"Jabber.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jabber.org.uk\" f=\"Jabber.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabber.ru (partial)\" f=\"Jabber.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JabberES.org (partial)\" f=\"JabberES.org.xml\"><securecookie host=\"^\\.jabberes\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jabberd.org\" platform=\"cacert\" f=\"Jabberd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabbi.pl\" default_off=\"expired, missing certificate chain\" f=\"Jabbi.pl.xml\"><securecookie host=\"^(?:client\\.|www\\.)?jabbi\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Jack and Jill Children's Foundation Charity\" default_off=\"failed ruleset test\" f=\"Jack-and-Jill-Childrens-Foundation.xml\"><rule from=\"^http://(?:www\\.)?jackandjill\\.ie/\" to=\"https://www.jackandjill.ie/\"/><rule from=\"^http://(?:www\\.)?jackandjillraffle\\.org/\" to=\"https://www.jackandjillraffle.org/\"/><rule from=\"^http://(?:www\\.)?jackandjillraffle\\.com/\" to=\"https://www.jackandjillraffle.org/\"/></ruleset>", "<ruleset name=\"Jack Imaging.com\" f=\"Jack_Imaging.com.xml\"><rule from=\"^http://(?:beta\\.|www\\.)?jackimaging\\.com/\" to=\"https://beta.jackimaging.com/\"/><rule from=\"^http://cdn\\.jackimaging\\.com/\" to=\"https://d2si6vzga8sezn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jackpot Millions.com\" f=\"Jackpot_Millions.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://jackpotmillions\\.com/\" to=\"https://www.jackpotmillions.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jacks Fetish Tube\" f=\"Jacks_Fetish_Tube.xml\"><securecookie host=\"^\\.?jacksfetishtube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jackson-IT.de\" f=\"Jackson-IT.de.xml\"><securecookie host=\"^jackson-it\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Jackson Sun (partial)\" default_off=\"failed ruleset test\" f=\"Jackson_Sun.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?jacksonsun\\.com/\" to=\"https://www.jacksonsun.com/\"/></ruleset>", "<ruleset name=\"Jacksonville.com (partial)\" f=\"Jacksonville.com.xml\"><securecookie host=\"^\\.jacksonville\\.com$\" name=\"(?:_chartbeat2|cX_\\w|ppRef|ppThirdPartyCookieFound|s_\\w+|utag_main)\"/><rule from=\"^http://sec\\.jacksonville\\.com/\" to=\"https://sec.jacksonville.com/\"/></ruleset>", "<ruleset name=\"Jacob Langvad Nilsson\" default_off=\"failed ruleset test\" f=\"Jacob_Langvad_Nilsson.xml\"><securecookie host=\"^\\.jacoblangvad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jacobin Mag.com\" f=\"Jacobin_Mag.com.xml\"><rule from=\"^http://(auth\\.|www\\.)?jacobinmag\\.com/\" to=\"https://$1jacobinmag.com/\"/><rule from=\"^http://store\\.jacobinmag\\.com/[^?]*\" to=\"https://jacobinmag.com/subscribe/\"/></ruleset>", "<ruleset name=\"Jacqueline Gold\" default_off=\"mismatched\" f=\"Jacqueline_Gold.xml\"><rule from=\"^http://(?:www\\.)?jacquelinegold\\.com/\" to=\"https://www.jacquelinegold.com/\"/></ruleset>", "<ruleset name=\"Jadi.net\" f=\"Jadi.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jadu.net\" f=\"Jadu.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|TestCookie)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jailbreaking Is Not a Crime.org\" f=\"Jailbreaking_Is_Not_a_Crime.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jaim.at\" f=\"Jaim.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JakeArchibald.com\" f=\"JakeArchibald.com.xml\"><securecookie host=\"^\\.jakearchibald\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JAKO-O\" default_off=\"failed ruleset test\" f=\"Jako-O.xml\"><rule from=\"^http://(?:www\\.)?jako-o\\.(at|com|de|eu|lu)/\" to=\"https://www.jako-o.$1/\"/></ruleset>", "<ruleset name=\"Jalopnik.com\" default_off=\"mismatched\" f=\"Jalopnik.com.xml\"><securecookie host=\"^\\.?jalopnik\\.com$\" name=\".+\"/><rule from=\"^http://(?:(cache\\.)|www\\.)?jalopnik\\.com/\" to=\"https://$1jalopnik.com/\"/></ruleset>", "<ruleset name=\"JamPlay\" f=\"JamPlay.xml\"><rule from=\"^http://account\\.jamplay\\.com/\" to=\"https://account.jamplay.com/\"/></ruleset>", "<ruleset name=\"Jamtrackcentral\" default_off=\"failed ruleset test\" f=\"JamTrackCentral.xml\"><rule from=\"^http://(?:www\\.)?jamtrackcentral\\.com/\" to=\"https://jamtrackcentral.com/\"/></ruleset>", "<ruleset name=\"jambit\" f=\"Jambit.xml\"><securecookie host=\"^(?:www\\.)?jambit\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jameco\" f=\"Jameco.xml\"><securecookie host=\"^www\\.jameco\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jameco\\.com/\" to=\"https://www.jameco.com/\"/></ruleset>", "<ruleset name=\"Jamendo.com (partial)\" f=\"Jamendo.com.xml\"><securecookie host=\"^\\.?(?:(?:artists|developer|devportal|licensing|widgets|www)\\.)?jamendo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jamendo (partial)\" f=\"Jamendo.xml\"><rule from=\"^http://cdn\\.imgjam\\.com/\" to=\"https://s3.amazonaws.com/imgcdn.jamendo.com/\"/></ruleset>", "<ruleset name=\"jamesthebard.net\" f=\"Jamesthebard.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jamie Oliver\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Jamie-Oliver.xml\"><securecookie host=\"^www\\.jamieoliver\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?jamieoliver\\.com/\" to=\"https://www.jamieoliver.com/\"/></ruleset>", "<ruleset name=\"Jammerbugt.dk (mixed content)\" platform=\"mixedcontent\" f=\"Jammerbugt.dk-mixedcontent.xml\"><rule from=\"^http://(www\\.)?jammerbugt\\.dk/\" to=\"https://www.jammerbugt.dk/\"/></ruleset>", "<ruleset name=\"Jammerbugt.dk\" f=\"Jammerbugt.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JanRain (partial)\" f=\"JanRain.xml\"><securecookie host=\"^(?:community|support)\\.janrain\\.com$\" name=\".+\"/><securecookie host=\"^dashboard-login\\.janraincapture\\.com$\" name=\".+\"/><rule from=\"^http://(community|(?:dashboard-)?login|support)\\.janrain\\.com/\" to=\"https://$1.janrain.com/\"/><rule from=\"^http://info\\.janrain\\.com/\" to=\"https://actonsoftware.com/\"/><rule from=\"^http://cdn\\.quilt\\.janrain\\.com/\" to=\"https://s3.amazonaws.com/janrain.quilt/\"/><rule from=\"^http://(dashboard-login\\.|www\\.)?janraincapture\\.com/\" to=\"https://$1janraincapture.com/\"/><rule from=\"^http://(\\d+)\\.myopenid\\.com/\" to=\"https://$1.myopenid.com/\"/></ruleset>", "<ruleset name=\"Jan Hendrik Peters.de\" f=\"Jan_Hendrik_Peters.de.xml\"><securecookie host=\"^www\\.janhendrikpeters\\.de$\" name=\".+\"/><rule from=\"^http://janhendrikpeters\\.de/\" to=\"https://www.janhendrikpeters.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Janalta.com\" f=\"Janalta.com.xml\"><securecookie host=\"^(?:ftp\\.amazonweb1|www)\\.janalta\\.com$\" name=\".+\"/><rule from=\"^http://(ftp\\.amazonweb1|www)\\.janalta\\.com/\" to=\"https://$1.janalta.com/\"/><rule from=\"^http://cdn2\\.janalta\\.com/\" to=\"https://d2hcl8anv7xxg0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jane Street.com\" f=\"Jane_Street.com.xml\"><securecookie host=\"^\\.ocaml\\.janestreet\\.com$\" name=\".+\"/><rule from=\"^http://janestreet\\.com/+\" to=\"https://www.janestreet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheJH.net\" f=\"Jann_Horn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D.S.V. Sint Jansbrug\" f=\"Jansbrug.xml\"><rule from=\"^http://www\\.(?:sint)?jansbrug\\.nl/\" to=\"https://www.sintjansbrug.nl/\"/></ruleset>", "<ruleset name=\"Japan Airlines\" f=\"JapanAirlines.xml\"><rule from=\"^http://(?:www\\.)?jal\\.co\\.jp/\" to=\"https://www.jal.co.jp/\"/></ruleset>", "<ruleset name=\"Japanese government (partial)\" default_off=\"failed ruleset test\" f=\"Japanese-government.xml\"><rule from=\"^http://(?:www\\.)?challenge25\\.go\\.jp/\" to=\"https://www.challenge25.go.jp/\"/></ruleset>", "<ruleset name=\"Japias.jp (partial)\" f=\"Japias.jp.xml\"><rule from=\"^http://webcon\\.japias\\.jp/\" to=\"https://webcon.japias.jp/\"/></ruleset>", "<ruleset name=\"Jappix.org\" f=\"Jappix.org.xml\"><securecookie host=\"^jappix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jappix (partial)\" f=\"Jappix.xml\"><rule from=\"^http://(\\w+\\.)?jappix\\.com/\" to=\"https://$1jappix.com/\"/></ruleset>", "<ruleset name=\"Jaqpot.net\" default_off=\"self-signed\" f=\"Jaqpot.net.xml\"><securecookie host=\"^www\\.jaqpot\\.net$\" name=\".+\"/><rule from=\"^http://www\\.jaqpot\\.net/\" to=\"https://www.jaqpot.net/\"/></ruleset>", "<ruleset name=\"Jarian Gibson.com (false MCB)\" platform=\"mixedcontent\" f=\"Jarian_Gibson.com-falsemixed.xml\"><securecookie host=\"^\\.jariangibson.com$\" name=\".+\"/><rule from=\"^http://www\\.jariangibson\\.com/(?!\\?custom-css=1|favicon\\.ico)\" to=\"https://www.jariangibson.com/\"/></ruleset>", "<ruleset name=\"Jarian Gibson.com (partial)\" default_off=\"failed ruleset test\" f=\"Jarian_Gibson.com.xml\"><exclusion pattern=\"http://www\\.jariangibson\\.com/(?!\\?custom-css=1|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jasig.org\" f=\"Jasig.org.xml\"><securecookie host=\"^(?:issues|wiki)?\\.jasig\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ja-?sig\\.org/[^?]*\" to=\"https://www.apereo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jason Davies.com\" f=\"Jason_Davies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jaspan.com (partial)\" f=\"Jaspan.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?jaspan\\.com/+(?!sites/|themes/)\"/><rule from=\"^http://www\\.jaspan\\.com/\" to=\"https://jaspan.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Java.net (partial)\" f=\"Java.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Java\" f=\"Java.xml\"><securecookie host=\"^www\\.java\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?java\\.com(?::80)?/\" to=\"https://www.java.com/\"/></ruleset>", "<ruleset name=\"JavaScriptKicks.com\" f=\"JavaScriptKicks.com.xml\"><rule from=\"^http://(?:www\\.)?javascriptkicks\\.com/\" to=\"https://javascriptkicks.com/\"/></ruleset>", "<ruleset name=\"JavaScriptMVC (partial)\" default_off=\"failed ruleset test\" f=\"JavaScriptMVC.xml\"><securecookie host=\"^forum\\.javascriptmvc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?javascriptmvc\\.com/(documentjs|imvc)/\" to=\"https://d3tkw0zqe07qze.cloudfront.net/$1/\"/><rule from=\"^http://forum\\.javascriptmvc\\.com/\" to=\"https://forum.javascriptmvc.com/\"/></ruleset>", "<ruleset name=\"Javacoolsoftware.com\" default_off=\"failed ruleset test\" f=\"Javacoolsoftware.com.xml\"><rule from=\"^http://(?:www\\.)?javacoolsoftware\\.com/\" to=\"https://www.javacoolsoftware.com/\"/><rule from=\"^http://licenses\\.javacoolsoftware\\.com/\" to=\"https://licenses.javacoolsoftware.com/\"/></ruleset>", "<ruleset name=\"Javadoc.io\" f=\"Javadoc.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Javelin Strategy.com\" f=\"Javelin_Strategy.com.xml\"><securecookie host=\"^(?:store|www)\\.javelinstrategy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?javelinstrategy\\.com/\" to=\"https://www.javelinstrategy.com/\"/><rule from=\"^http://store\\.javelinstrategy\\.com/\" to=\"https://store.javelinstrategy.com/\"/></ruleset>", "<ruleset name=\"Javvin.com (partial)\" default_off=\"failed ruleset test\" f=\"Javvin.com.xml\"><rule from=\"^http://(www\\.)?javvin\\.com/(?=affiliate(?:$|[?/])|contact\\.(?:html|php)|favicon\\.ico|images/|(?:functions/verify_code|login|shopping_cart|submitterm|top_iframe)\\.php|pics/|stylesheet\\.css)\" to=\"https://$1javvin.com/\"/></ruleset>", "<ruleset name=\"Jawbone.com (partial)\" f=\"Jawbone.com.xml\"><exclusion pattern=\"^http://store\\.jawbone\\.com/(?!Admin/|DRHM/)\"/><securecookie host=\"^(?!store\\.).*\\.jawbone\\.com$\" name=\".+\"/><rule from=\"^http://((?:eu|forums|mytalk|store|thoughts|up|www)\\.)?jawbone\\.com/\" to=\"https://$1jawbone.com/\"/><rule from=\"^http://content\\.jawbone\\.com/\" to=\"https://d3osil7svxrrgt.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jay Is Games.com (partial)\" f=\"Jay_Is_Games.com.xml\"><rule from=\"^http://(www\\.)?jayisgames\\.com/mt4/\" to=\"https://$1jayisgames.com/mt4/\"/></ruleset>", "<ruleset name=\"Jaymart.co.th\" f=\"Jaymart.co.th.xml\"><rule from=\"^http://(?:www\\.)?jaymart\\.co\\.th/\" to=\"https://www.jaymart.co.th/\"/></ruleset>", "<ruleset name=\"Jazz.co (partial)\" f=\"Jazz.co.xml\"><exclusion pattern=\"^http://careers\\.jazz\\.co/+(?!css/)\"/><securecookie host=\"^\\.?jazz\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jazzy.id.au\" f=\"Jazzy.id.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jba.io\" f=\"Jba.io.xml\"><rule from=\"^http://(?:www\\.)?jba\\.io/\" to=\"https://jba.io/\"/></ruleset>", "<ruleset name=\"jbp.io\" f=\"Jbp.io.xml\"><securecookie host=\"^\\.jbp\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jcea.es (partial)\" f=\"Jcea.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jcloud.com (partial)\" f=\"Jcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JeKKT.com\" f=\"JeKKT.com.xml\"><securecookie host=\"^(?:www\\.)?jekkt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jeena.net\" f=\"Jeena.net.xml\"><securecookie host=\"^jeena\\.net$\" name=\".+\"/><rule from=\"^http://(?:(m\\.)|www\\.)?jeena\\.net/\" to=\"https://$1jeena.net/\"/></ruleset>", "<ruleset name=\"Jeep Tops Direct.com\" f=\"Jeep_Tops_Direct.com.xml\"><securecookie host=\"^\\.(?:www\\.)?jeeptopsdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeff Mitchell.me\" f=\"Jeff_Mitchell.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeff Nabers.com (false MCB)\" platform=\"mixedcontent\" f=\"Jeff_Nabers.com-falsemixed.xml\"><securecookie host=\"^\\.jeffnabers\\.com$\" name=\".+\"/><rule from=\"^http://www\\.jeffnabers\\.com/\" to=\"https://www.jeffnabers.com/\"/></ruleset>", "<ruleset name=\"Jeff Nabers.com (partial)\" f=\"Jeff_Nabers.com.xml\"><exclusion pattern=\"^http://www\\.jeffnabers\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeff Reifman.com (partial)\" default_off=\"failed ruleset test\" f=\"Jeff_Reifman.com.xml\"><rule from=\"^http://cloud\\.jeffreifman\\.com/\" to=\"https://d34gmh9gge3473.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jeja.pl \" default_off=\"self-signed\" f=\"Jeja.pl.xml\"><securecookie host=\"^\\.jeja\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jellynote.com\" f=\"Jellynote.com.xml\"><securecookie host=\"^www\\.jellynote\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jenkins-CI.org\" f=\"Jenkins-CI.org.xml\"><securecookie host=\"^(?:ci|issues|svn|update|usage|wiki)?\\.jenkins-ci\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jenner.ac.uk\" default_off=\"missing certificate chain\" f=\"Jenner.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jensge.org\" platform=\"cacert\" f=\"Jensge.org.xml\"><rule from=\"^http://www\\.jensge\\.org/\" to=\"https://jensge.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jepso.com\" f=\"Jepso.com.xml\"><securecookie host=\"^\\.jepso\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JessFraz.com\" f=\"JessFraz.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jesse Ruderma\" f=\"JesseRuderman.xml\"><rule from=\"^http://([^/:@]*)\\.squarefree\\.com/\" to=\"https://$1.squarefree.com/\"/></ruleset>", "<ruleset name=\"Jet2.com\" platform=\"mixedcontent\" f=\"Jet2.com.xml\"><rule from=\"^http://jet2\\.com/\" to=\"https://www.jet2.com/\"/><rule from=\"^http://(intranet|reservations|www)\\.jet2\\.com/\" to=\"https://$1.jet2.com/\"/></ruleset>", "<ruleset name=\"JetBrains.com (false MCB)\" platform=\"mixedcontent\" f=\"JetBrains.com-falsemixed.xml\"><exclusion pattern=\"^http://blogs\\.jetbrains\\.com/+(?!$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blogs\\.jetbrains\\.com/+\" to=\"https://blog.jetbrains.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JetBrains.com (partial)\" f=\"JetBrains.xml\"><exclusion pattern=\"^http://info\\.jetbrains\\.com/+(?!css/|images/|rs/)\"/><exclusion pattern=\"^http://(?:dotnettools|resharper)-support\\.jetbrains\\.com/+(?!favicon\\.ico|images/|system/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(dotnettools|resharper)-support\\.jetbrains\\.com/\" to=\"https://$1.zendesk.com/\"/><rule from=\"^http://info\\.jetbrains\\.com/\" to=\"https://na-lon02.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jethro Carr.com\" f=\"Jethro_Carr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jetico.com\" default_off=\"failed ruleset test\" f=\"Jetico.com.xml\"><securecookie host=\"^\\.?www\\.jetico\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jewel Osco.com\" default_off=\"failed ruleset test\" f=\"Jewel_Osco.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JewishPress.com\" default_off=\"failed ruleset test\" f=\"JewishPress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jezebel.com\" default_off=\"mismatched\" f=\"Jezebel.com.xml\"><securecookie host=\"^(?:.*\\.)?jezebel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JiWire (partial)\" default_off=\"failed ruleset test\" f=\"JiWire.xml\"><securecookie host=\"^v4\\.jiwire\\.com$\" name=\".+\"/><rule from=\"^http://(?:cms\\.|www\\.)?jiwire\\.com/\" to=\"https://www.jiwire.com/\"/><rule from=\"^http://(ads|api|tags|v4|wi-fi)\\.jiwire\\.com/\" to=\"https://$1.jiwire.com/\"/></ruleset>", "<ruleset name=\"jiasule.com\" f=\"Jiasule.com.xml\"><securecookie host=\"^(?:static|www)\\.jiasule\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jiffy Free Score.com\" f=\"Jiffy_Free_Score.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?jiffyfreescore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jifo.co\" f=\"Jifo.co.xml\"><securecookie host=\"^\\.jifo\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jigsaw (partial)\" f=\"Jigsaw.xml\"><securecookie host=\"^(?:www)?\\.jigsaw\\.com$\" name=\".+\"/><rule from=\"^http://((?:about|email|enterprise|static|www)\\.)?jigsaw\\.com/\" to=\"https://$1jigsaw.com/\"/><rule from=\"^http://community\\.jigsaw\\.com/\" to=\"https://jigsaw.i.lithium.com/\"/></ruleset>", "<ruleset name=\"Jim Shaver.net\" f=\"Jim_Shaver.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jim static.com\" f=\"Jim_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimdo.com (partial)\" f=\"Jimdo.xml\"><securecookie host=\"^(?:a|webmail|www51)\\.jimdo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimg.dk\" f=\"Jimg.dk.xml\"><rule from=\"^http://((?:i[123]|www|z)\\.)?jimg\\.dk/\" to=\"https://$1jimg.dk/\"/></ruleset>", "<ruleset name=\"Jingwei.com (partial)\" default_off=\"expired\" f=\"Jingwei.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jino.ru\" f=\"Jino.ru.xml\"><securecookie host=\"^\\.jino\\.ru$\" name=\"^(?:csrftoken|sid)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jinx.com (partial)\" platform=\"mixedcontent\" f=\"Jinx.com.xml\"><exclusion pattern=\"^http://www\\.jinx\\.com/(?!create\\.|design_contest(?:_info)?\\.|log(?:in|out)\\.).+\\.aspx\"/><rule from=\"^http://(www\\.)?jinx\\.com/home\\.aspx($|\\?.*)\" to=\"https://$1jinx.com/$2\"/><rule from=\"^http://(www\\.)?jinx\\.com/\" to=\"https://$1jinx.com/\"/></ruleset>", "<ruleset name=\"Jira.com\" f=\"Jira.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jisc.ac.uk\" f=\"Jisc.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jit.su\" f=\"Jit.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jitbit.com\" f=\"Jitbit.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jitscale.com (false MCB)\" platform=\"mixedcontent\" f=\"Jitscale.com-falsemixed.xml\"><securecookie host=\".*\\.jitscale\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jitscale.com (partial)\" f=\"Jitscale.com.xml\"><rule from=\"^http://cdn3\\.jitscale\\.com/\" to=\"https://d2ve2fyg0zf8xm.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jitsi.org\" f=\"Jitsi.org.xml\"><securecookie host=\"^(?:download\\.)?jitsi\\.org$\" name=\".*\"/><securecookie host=\"^(?:meet)?(?:\\.)?jit\\.si$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jive.com\" default_off=\"missing certificate chain\" f=\"Jive.com.xml\"><rule from=\"^http://(?:www\\.)?(?:get)?jive\\.com/\" to=\"https://jive.com/\"/></ruleset>", "<ruleset name=\"Jive Software.com\" f=\"Jive_Software.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://feeds\\.jivesoftware\\.com/$\" to=\"https://feedburner.google.com/fb/a/home\"/><rule from=\"^http://feeds\\.jivesoftware\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://trust\\.jivesoftware\\.com/[^?]*\" to=\"https://www.jivesoftware.com/trust-security/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jiveon.com\" f=\"Jiveon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jiveon\\.com/+\" to=\"https://login.jiveon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jms1.net\" f=\"Jms1.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoCo Cruise.com\" f=\"JoCo_Cruise.com.xml\"><securecookie host=\"^(?:www\\.)?jococruise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JobMatch (partial)\" f=\"JobMatch.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([^\\.]+)\\.iapplicants\\.com/i(mag|nclud)es/\" to=\"https://$1.iapplicants.com/i$2es/\"/></ruleset>", "<ruleset name=\"jobScore.com (partial)\" f=\"JobScore.xml\"><securecookie host=\"^(?:www\\.)?jobscore\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobscout24\" platform=\"mixedcontent\" f=\"JobScout24.xml\"><rule from=\"^http://(?:www\\.)?jobscout24\\.de/\" to=\"https://www.jobscout24.de/\"/></ruleset>", "<ruleset name=\"JobThread clients\" default_off=\"mismatch\" f=\"JobThread-clients.xml\"><exclusion pattern=\"^http://jobs\\.linux\\.com/(?:image|file|partner)s/\"/><rule from=\"^http://jobs\\.linux\\.com/\" to=\"https://jobs.linux.com/\"/></ruleset>", "<ruleset name=\"JobThread\" f=\"JobThread.xml\"><exclusion pattern=\"^http://static\\.jobthread\\.com/(?!partners/jobthread/images/)\"/><rule from=\"^http://(?:static\\.|(www\\.))?jobthread\\.com/\" to=\"https://$1jobthread.com/\"/></ruleset>", "<ruleset name=\"Job a matic.com\" f=\"Job_a_matic.com.xml\"><securecookie host=\"^\\.jobamatic\\.com$\" name=\"^__qca$\"/><securecookie host=\"^www\\.jobamatic\\.com$\" name=\".*\"/><rule from=\"^http://([\\w-]+\\.)?jobamatic\\.com/\" to=\"https://$1jobamatic.com/\"/></ruleset>", "<ruleset name=\"Jobbik (partial)\" f=\"Jobbik.xml\"><rule from=\"^http://(?:www\\.)?jobbik\\.hu/sites/\" to=\"https://jobbik.hu/sites/\"/></ruleset>", "<ruleset name=\"Jobfinder.dk\" f=\"Jobfinder.dk.xml\"><rule from=\"^http://(www\\.)?jobfinder\\.dk/\" to=\"https://www.jobfinder.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobindex.dk (buggy)\" default_off=\"Certificate for tv.jobindex.dk is only valid for *.23video.com (ssl_error_bad_cert_domain)\" f=\"Jobindex.dk.xml\"><rule from=\"^http://(?:www\\.)?jobindex\\.dk/\" to=\"https://www.jobindex.dk/\"/><rule from=\"^http://tv\\.jobindex\\.dk/\" to=\"https://tv.jobindex.dk/\"/><rule from=\"^http://it\\.jobindex\\.dk/\" to=\"https://it.jobindex.dk/\"/></ruleset>", "<ruleset name=\"Jobs2Web\" default_off=\"failed ruleset test\" f=\"Jobs2Web.xml\"><securecookie host=\"^(?:.*\\.)?jobs2web\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?jobs2web\\.com/\" to=\"https://$1jobs2web.com/\"/></ruleset>", "<ruleset name=\"Jobs at OSU.com\" f=\"Jobs_at_OSU.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jobsatosu\\.com/\" to=\"https://www.jobsatosu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jobsgopublic.com (partial)\" f=\"Jobsgopublic.com.xml\"><rule from=\"^http://(poweredby\\.|www\\.)?jobsgopublic\\.com/(account(?:$|\\?|/)|assets/|icons/|javascripts/|sites/)\" to=\"https://$1jobsgopublic.com/$2\"/></ruleset>", "<ruleset name=\"Jobsite.com\" f=\"Jobsite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobvite (partial)\" f=\"Jobvite.xml\"><exclusion pattern=\"^http://www\\.jobvite\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:.+\\.)?jobvite\\.com$\" name=\".*\"/><rule from=\"^http://((?:careers|demo|hire|hire-stg|recruiting|search|source|source-stg|www|www-stg)\\.)?jobvite\\.com/\" to=\"https://$1jobvite.com/\"/><rule from=\"^http://web\\.jobvite\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-a.marketo.com/\"/></ruleset>", "<ruleset name=\"Jobware.de\" f=\"Jobware.de.xml\"><rule from=\"^http://www\\.jobware\\.de/\" to=\"https://www.jobware.de/\"/></ruleset>", "<ruleset name=\"Jobzonen (partial)\" platform=\"mixedcontent\" f=\"Jobzonen.xml\"><rule from=\"^http://(www\\.)?jobzonen\\.dk/\" to=\"https://www.jobzonen.dk/\"/><rule from=\"^http://arbejdsgiver\\.jobzonen\\.dk/\" to=\"https://arbejdsgiver.jobzonen.dk/\"/></ruleset>", "<ruleset name=\"Jochen-Hoenicke.de\" f=\"Jochen-Hoenicke.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jodel-app.com\" default_off=\"expired certificate\" f=\"Jodel-app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JodoHost (partial)\" f=\"JodoHost.xml\"><securecookie host=\"^(?:www\\.)?support\\.jodohost\\.com$\" name=\".+\"/><securecookie host=\"^lcsrv1\\.myhsphere\\.biz$\" name=\".+\"/><rule from=\"^http://cp\\.gohsphere\\.com/\" to=\"https://cp.gohsphere.com/\"/><rule from=\"^http://(www\\.)?support\\.jodohost\\.com/\" to=\"https://$1support.jodohost.com/\"/><rule from=\"^http://lcsrv1\\.myhsphere\\.biz/\" to=\"https://lcsrv1.myhsphere.biz/\"/></ruleset>", "<ruleset name=\"JoeyH.name\" f=\"JoeyH.name.xml\"><securecookie host=\"^joeyh\\.name$\" name=\".+\"/><rule from=\"^http://joeyh\\.name/\" to=\"https://joeyh.name/\"/></ruleset>", "<ruleset name=\"Jogorama.com.br\" f=\"Jogorama.com.br.xml\"><securecookie host=\"^jogorama\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"johnlewis.ie\" f=\"Johnlewis.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Johns Hopkins.edu (partial)\" f=\"Johns_Hopkins.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!\\.johnshopkins\\.edu$).\" name=\".\"/><rule from=\"^http://www\\.it\\.johnshopkins\\.edu/\" to=\"https://it.johnshopkins.edu/\"/><rule from=\"^http://www\\.johnshopkins\\.edu/.*\" to=\"https://www.jhu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Johnson King\" default_off=\"mismatch\" f=\"Johnson-King.xml\"><securecookie host=\"^(?:.*\\.)?johnsonking\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?johnsonking\\.com/\" to=\"https://www.johnsonking.com/\"/></ruleset>", "<ruleset name=\"Johnson Press (partial)\" default_off=\"failed ruleset test\" f=\"Johnson_Press.xml\"><securecookie host=\"^mobilecontrol\\.jpress\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://secure\\.johnstonpress\\.co\\.uk/\" to=\"https://secure.johnstonpress.co.uk/\"/><rule from=\"^http://remote\\.jpress\\.co\\.uk/\" to=\"https://remote.jpress.co.uk/\"/></ruleset>", "<ruleset name=\"Johoobuy.com\" f=\"Johoobuy.com.xml\"><securecookie host=\"^www\\.johoobuy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?johoobuy\\.com/\" to=\"https://www.johoobuy.com/\"/></ruleset>", "<ruleset name=\"Join.TV\" f=\"Join.TV.xml\"><securecookie host=\"^(?:www)?\\.join\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"join.me (partial)\" f=\"Join.me.xml\"><securecookie host=\"^(?:secure\\.)?join\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoinUs.Today\" f=\"JoinUs.Today.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joinos.com\" default_off=\"failed ruleset test\" f=\"Joinos.com.xml\"><securecookie host=\"^my\\.joinos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joker\" f=\"Joker.xml\"><rule from=\"^http://([^/:@]*\\.)?joker\\.com/\" to=\"https://$1joker.com/\"/></ruleset>", "<ruleset name=\"jolexa.net (CAcert)\" platform=\"cacert\" default_off=\"mismatched\" f=\"Jolexa.net-cacert.xml\"><securecookie host=\"^(?:.*\\.)?jolexa\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jolexa.net (partial)\" f=\"Jolexa.net.xml\"><securecookie host=\"^(?:www\\.)?blog\\.jolexa\\.net$\" name=\".*\"/><rule from=\"^http://www\\.blog\\.jolexa\\.net/\" to=\"https://blog.jolexa.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jolla.com\" f=\"Jolla.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JonDos\" default_off=\"failed ruleset test\" f=\"JonDos.xml\"><securecookie host=\"^(?:.*\\.)?anonym(?:ous-proxy-servers\\.net|-surfen\\.de)$\" name=\".*\"/><rule from=\"^http://(www\\.)?anonym-surfen\\.de/\" to=\"https://$1anonym-surfen.de/\"/><rule from=\"^http://(\\w+\\.)?anonymous-proxy-servers\\.net/\" to=\"https://$1anonymous-proxy-servers.net/\"/><rule from=\"^http://(www\\.)?jondos\\.org/\" to=\"https://$1jondos.org/\"/></ruleset>", "<ruleset name=\"Jonathan Mayer.org\" f=\"Jonathan_Mayer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joomag.com (partial)\" f=\"Joomag.com.xml\"><securecookie host=\"^\\.joomag\\.com$\" name=\".+\"/><rule from=\"^http://(s1\\.|www\\.)?joomag\\.com/\" to=\"https://$1joomag.com/\"/><rule from=\"^http://static\\.joomag\\.com/\" to=\"https://d25ow0ysq5ykrj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"JoomlArt.com (partial)\" f=\"JoomlArt.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?joomlart\\.com/(?!favicon\\.ico|images/|media/|member(?:$|[?/])|modules/|plugins/|t3-assets/|templates/)\"/><rule from=\"^http://(?:asset\\.|(www\\.))?joomlart\\.com/\" to=\"https://$1joomlart.com/\"/></ruleset>", "<ruleset name=\"Joomla.org (partial)\" f=\"Joomla.xml\"><exclusion pattern=\"^http://extensions\\.joomla\\.org/+(?!components/|favicon\\.ico|images/|modules/|templates/)\"/><exclusion pattern=\"^http://ideas\\.joomla\\.org/(?!track\\.gif)\"/><securecookie host=\"(?:community|events|magazine|resources|shop|vel|www)\\.joomla\\.org$\" name=\".+\"/><rule from=\"^http://ideas\\.joomla\\.org/\" to=\"https://joomla.uservoice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoomlaCode.org\" default_off=\"expired, self-signed\" f=\"JoomlaCode.org.xml\"><securecookie host=\"^joomlacode\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?joomlacode\\.org/\" to=\"https://joomlacode.org/\"/></ruleset>", "<ruleset name=\"Joomlancers.com\" default_off=\"expired, self-signed\" f=\"Joomlancers.com.xml\"><securecookie host=\"^www\\.joomlancers\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?joomlancers\\.com/\" to=\"https://www.joomlancers.com/\"/></ruleset>", "<ruleset name=\"joppix.com\" default_off=\"failed ruleset test\" f=\"Joppix.com.xml\"><securecookie host=\"^(?:www\\.)?joppix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Josefsson.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Josefsson.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joseph Rowntree Reform Trust (mismatches)\" default_off=\"mismatch\" f=\"Joseph-Rowntree-Reform-Trust-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?jrrt\\.org\\.uk/sites/\"/><securecookie host=\"^\\.jrrt\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?jrrt\\.org\\.uk/\" to=\"https://jrrt.org.uk/\"/></ruleset>", "<ruleset name=\"Joseph Rowntree Reform Trust (partial)\" f=\"Joseph-Rowntree-Reform-Trust.xml\"><rule from=\"^http://(?:www\\.)?jrrt\\.org\\.uk/sites/\" to=\"https://bigchangeuk.co.uk/sites/\"/></ruleset>", "<ruleset name=\"Josh Begley.com\" f=\"Josh_Begley.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Josh Triplett.org\" f=\"Josh_Triplett.org.xml\"><rule from=\"^http://(?:www\\.)?joshtriplett\\.org/\" to=\"https://joshtriplett.org/\"/></ruleset>", "<ruleset name=\"Joslin Diabetes Center\" platform=\"mixedcontent\" f=\"Joslin-Diabetes-Center.xml\"><rule from=\"^http://(?:www\\.)?joslin\\.org/\" to=\"https://www.joslin.org/\"/></ruleset>", "<ruleset name=\"JotForm\" f=\"JotForm.xml\"><securecookie host=\"^(?:w*\\.)?jotform\\.com$\" name=\".+\"/><rule from=\"^http://max\\.jotfor\\.ms/\" to=\"https://static-interlogyllc.netdna-ssl.com/\"/><rule from=\"^http://(?:www\\.)?jotform\\.com/\" to=\"https://www.jotform.com/\"/><rule from=\"^http://(secure\\.|www\\.)?jotformpro\\.com/\" to=\"https://$1jotformpro.com/\"/></ruleset>", "<ruleset name=\"Jotform.us\" f=\"Jotform.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jottit\" f=\"Jottit.xml\"><rule from=\"^http://(?:www\\.)?jottit\\.com/\" to=\"https://www.jottit.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.jottit\\.com/\" to=\"https://$1.jottit.com/\"/></ruleset>", "<ruleset name=\"Journal-News.net (mismatched)\" default_off=\"mismatched\" f=\"Journal-News.net-problematic.xml\"><securecookie host=\"^mobile\\.journal-news\\.net$\" name=\".+\"/><rule from=\"^http://(cu|mobile)\\.journal-news\\.net/\" to=\"https://$1.journal-news.net/\"/></ruleset>", "<ruleset name=\"Journal-News.net (partial)\" f=\"Journal-News.net.xml\"><securecookie host=\"^www\\.journal-news\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?journal-news\\.net/\" to=\"https://www.journal-news.net/\"/></ruleset>", "<ruleset name=\"Journal of Bodywork and Movement Therapies\" default_off=\"mismatch\" f=\"Journal-of-Bodywork-and-Movement-Therapies.xml\"><securecookie host=\"\\.bodyworkmovementtherapies\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bodyworkmovementtherapies\\.com/\" to=\"https://bodyworkmovementtherapies.com/\"/></ruleset>", "<ruleset name=\"Journal of Neurosurgery (partial)\" f=\"Journal-of-Neurosurgery.xml\"><rule from=\"^http://(?:www\\.)?thejns\\.org/(action/(?:clickThrough|registration)|templates/|userimages/)\" to=\"https://thejns.org/$1\"/></ruleset>", "<ruleset name=\"JournalXtra.com\" f=\"JournalXtra.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Journal of Affective Disorders\" default_off=\"mismatched\" f=\"Journal_of_Affective_Disorders.xml\"><securecookie host=\"^\\.jad-journal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jad-journal\\.com/\" to=\"https://jad-journal.com/\"/></ruleset>", "<ruleset name=\"Journal of Clinical Investigation (partial)\" f=\"Journal_of_Clinical_Investigation.xml\"><securecookie host=\"^\\.jci\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"journalism.co.uk\" f=\"Journalism.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Journalistforbundet.dk\" f=\"Journalistforbundet.dk.xml\"><securecookie host=\"\\.?journalistforbundet\\.dk\" name=\".+\"/><rule from=\"^http://(www\\.)?journalistforbundet\\.dk/\" to=\"https://journalistforbundet.dk/\"/></ruleset>", "<ruleset name=\"Journeyed\" f=\"Journeyed.com.xml\"><rule from=\"^http://(?:www\\.)?journeyed\\.com/\" to=\"https://www.journeyed.com/\"/></ruleset>", "<ruleset name=\"Joyclub.de\" f=\"Joyclub.de.xml\"><rule from=\"^http://(?:www\\.)?joyclub\\.de/\" to=\"https://www.joyclub.de/\"/></ruleset>", "<ruleset name=\"Joyent.com (partial)\" f=\"Joyent.xml\"><exclusion pattern=\"^http://lpage\\.joyent\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?joyent\\.com/\" to=\"https://$1joyent.com/\"/></ruleset>", "<ruleset name=\"Joyent Cloud.com (partial)\" f=\"Joyent_Cloud.com.xml\"><rule from=\"^http://www\\.joyentcloud\\.com/+\" to=\"https://www.joyent.com/\"/><rule from=\"^http://((?:[\\w-]+\\.)?api|my)\\.joyentcloud\\.com/\" to=\"https://$1.joyentcloud.com/\"/></ruleset>", "<ruleset name=\"jpfox.fr (partial)\" f=\"Jpfox.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jpost.com (partial)\" f=\"Jpost.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsDelivr.net\" f=\"JsDelivr.net.xml\"><securecookie host=\"^\\.jsdelivr\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsPerf.com\" f=\"JsPerf.com.xml\"><securecookie host=\"^\\.?jsperf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsUOL.com.br\" f=\"JsUOL.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jtlebi.fr\" f=\"Jtlebi.fr.xml\"><securecookie host=\"^(?:blog\\.|www\\.)?jtlebi\\.fr$\" name=\".+\"/><rule from=\"^http://(?:blog\\.|www\\.)?jtlebi\\.fr/\" to=\"https://blog.jtlebi.fr/\"/></ruleset>", "<ruleset name=\"Jubii.dk (problematic)\" default_off=\"mismatched\" f=\"Jubii.dk-problematic.xml\"><securecookie host=\"^www\\.jubii\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jubii\\.dk/\" to=\"https://www.jubii.dk/\"/></ruleset>", "<ruleset name=\"Jubii.dk (partial)\" f=\"Jubii.dk.xml\"><rule from=\"^http://konto\\.jubii\\.dk/\" to=\"https://konto.jubii.dk/\"/><rule from=\"^http://support\\.jubii\\.dk/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://jubii.zendesk.com/\"/></ruleset>", "<ruleset name=\"Judge.me\" default_off=\"mismatch\" f=\"Judge.me.xml\"><securecookie host=\"^www\\.judge\\.me$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?judge\\.me/\" to=\"https://www.judge.me/\"/></ruleset>", "<ruleset name=\"Judici\" f=\"Judici.xml\"><securecookie host=\"^(?:www\\.)?judici\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Judicial Watch\" f=\"Judicial_Watch.xml\"><securecookie host=\"^\\.judicialwatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Judiciary of England and Wales (partial)\" f=\"Judiciary_of_England_and_Wales.xml\"><securecookie host=\"^www\\.judiciary\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://(ojc|www)\\.judiciary\\.gov\\.uk/\" to=\"https://$1.judiciary.gov.uk/\"/></ruleset>", "<ruleset name=\"Jugendschutzprogramm.de\" f=\"Jugendschutzprogramm.de.xml\"><rule from=\"^http://www\\.jugendschutzprogramm\\.de/\" to=\"https://www.jugendschutzprogramm.de/\"/></ruleset>", "<ruleset name=\"Jugger.ru\" f=\"Jugger.ru.xml\"><securecookie host=\"^(?:www\\.)?jugger\\.ru$\" name=\".+\"/><rule from=\"^http://(s[12]\\.|www\\.)?jugger\\.ru/\" to=\"https://$1jugger.ru/\"/></ruleset>", "<ruleset name=\"Juicer.io (partial)\" f=\"Juicer.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JuicyAds.com (partial)\" f=\"JuicyAds.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JuicyCanvas.com\" f=\"JuicyCanvas.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Juju charms.com\" f=\"Juju_charms.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Julia Reda.eu\" f=\"Julia_Reda.eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jumio\" default_off=\"failed ruleset test\" f=\"Jumio.xml\"><securecookie host=\"^(?:.+\\.)?(?:jumio|netswipe)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:jumio|netswipe)\\.com/\" to=\"https://netswipe.com/\"/><rule from=\"^http://(pay|static)\\.(jumio|netswipe)\\.com/\" to=\"https://$1.$2.com/\"/></ruleset>", "<ruleset name=\"JumpTime.com (partial)\" f=\"JumpTime.com.xml\"><rule from=\"^http://beacon\\.jumptime\\.com/\" to=\"https://d70783jehyk3d.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jumpeye Components.com (partial)\" f=\"Jumpeye_Components.com.xml\"><exclusion pattern=\"^http://www\\.jumpeyecomponents\\.com/+(?!css/|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JumpingJack\" default_off=\"failed ruleset test\" f=\"JumpingJack.xml\"><securecookie host=\"^jumpingjack\\.com$\" name=\".+\"/><rule from=\"^http://images\\.jitsmart\\.com/\" to=\"https://images.jitsmart.com/\"/><rule from=\"^http://(media\\.|www\\.)?jumpingjack\\.com/\" to=\"https://$1jumpingjack.com/\"/></ruleset>", "<ruleset name=\"Jumpline.com (partial)\" f=\"Jumpline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jumptap\" f=\"Jumptap.xml\"><exclusion pattern=\"^http://(?:db02|dine|reporting).jumptap.com\"/><rule from=\"^http://([^@:/]*)\\.jumptap\\.com/\" to=\"https://$1.jumptap.com/\"/></ruleset>", "<ruleset name=\"June oven.com (partial)\" f=\"June_oven.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Junge-Piraten.de\" f=\"Junge-Piraten.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Junglee.com (partial)\" f=\"Junglee.com.xml\"><exclusion pattern=\"^http://www\\.junglee\\.com/+(?!favicon\\.ico|mn/search/uedata/)\"/><securecookie host=\"^\\.junglee\\.com$\" name=\"^cpa-blogs-(?:session-id|session-id-time|ubid-main)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Juniper Research\" default_off=\"failed ruleset test\" f=\"Juniper-Research.xml\"><securecookie host=\"^(?:www\\.)?juniperresearch\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?juniperresearch\\.com/\" to=\"https://$1junipersearch.com/\"/></ruleset>", "<ruleset name=\"Juniper.net (partial)\" f=\"JuniperNetworks.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://juniper\\.net/\" to=\"https://www.juniper.net/\"/><rule from=\"^http://advisory\\.juniper\\.net/.*\" to=\"https://kb.juniper.net/InfoCenter/index?page=content&channel=SECURITY_ADVISORIES\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JunoDownload\" default_off=\"failed ruleset test\" f=\"JunoDownload.xml\"><rule from=\"^http://(?:www\\.)?junodownload\\.com/\" to=\"https://www.junodownload.com/\"/><rule from=\"^http://secure\\.junodownload\\.com/\" to=\"https://secure.junodownload.com/\"/><exclusion pattern=\"^http://www\\.junodownload\\.com/crossdomain\\.xml$\"/><exclusion pattern=\"^http://www\\.junodownload\\.com/api/.+/track/dostream\"/><exclusion pattern=\"^http://(?:www\\.)?junodownload\\.com/plus/\"/><exclusion pattern=\"^http://(?:www\\.)?junodownload\\.com/search/\"/></ruleset>", "<ruleset name=\"JunoRecords\" f=\"JunoRecords.xml\"><exclusion pattern=\"^http://www\\.juno\\.co\\.uk/crossdomain\\.xml$\"/><rule from=\"^http://(www\\.|secure\\.)?juno\\.co\\.uk/\" to=\"https://$1juno.co.uk/\"/><rule from=\"^http://(?:www\\.)?junostatic\\.com/\" to=\"https://static.juno.co.uk/\"/><rule from=\"^http://(?:image|cm)s\\.junostatic\\.com/\" to=\"https://images.juno.co.uk/\"/></ruleset>", "<ruleset name=\"Jupiter Artland.org\" f=\"Jupiter_Artland.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jusek.se\" f=\"Jusek.se.xml\"><rule from=\"^http://jusek\\.se/\" to=\"https://www.jusek.se/\"/><rule from=\"^http://www\\.jusek\\.se/\" to=\"https://www.jusek.se/\"/></ruleset>", "<ruleset name=\"Jussieu.fr (self-signed)\" default_off=\"self-signed\" f=\"Jussieu.fr-problematic.xml\"><rule from=\"^http://distrib-coffee\\.ipsl\\.jussieu\\.fr/\" to=\"https://distrib-coffee.ipsl.jussieu.fr/\"/></ruleset>", "<ruleset name=\"Jussieu.fr (partial)\" default_off=\"failed ruleset test\" f=\"Jussieu.fr.xml\"><rule from=\"^http://forge\\.ipsl\\.jussieu\\.fr/\" to=\"https://forge.ipsl.jussieu.fr/\"/></ruleset>", "<ruleset name=\"Just Develop It (partial)\" default_off=\"failed ruleset test\" f=\"Just-Develop-It.xml\"><exclusion pattern=\"^http://reviews\\.justhost\\.\"/><securecookie host=\"^(?:.*\\.)?intellichat\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?justhost\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?my(?:chatagent|pcbackup)\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?(?:just|zip)cloud\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?intellichat\\.com/\" to=\"https://$1intellchat.com/\"/><rule from=\"^http://(\\w+\\.)?(just|zip)cloud\\.com/\" to=\"https://$1$2cloud.com/\"/><rule from=\"^http://(\\w+\\.)?justhost\\.com/\" to=\"https://$1justhost.com/\"/><rule from=\"^http://(\\w+\\.)?my(chatagent|pcbackup)\\.com/\" to=\"https://$1my$2.com/\"/><rule from=\"^http://mymerchantguard\\.com/\" to=\"https://mymerchantguard.com/\"/></ruleset>", "<ruleset name=\"JustGive\" f=\"JustGive.xml\"><securecookie host=\"^amex\\.justgive\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?justgive\\.org/\" to=\"https://www.justgive.org/\"/><rule from=\"^http://(amex|ido)\\.justgive\\.org/\" to=\"https://$1.justgive.org/\"/></ruleset>", "<ruleset name=\"JustGiving (partial)\" f=\"JustGiving.xml\"><securecookie host=\"^(?:apimanagement|www)?\\.justgiving\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|apimanagement|images|www)\\.)?justgiving\\.com/\" to=\"https://$1justgiving.com/\"/><rule from=\"^http://marketo\\.justgiving\\.com/(?!css/marketo-2\\.css)\" to=\"https://s3-eu-west-1.amazonaws.com/marketo.justgiving.com/\"/><rule from=\"^http://pages\\.justgiving\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-lon02.marketo.com/\"/></ruleset>", "<ruleset name=\"JustPaste.it\" f=\"JustPaste.it.xml\"><securecookie host=\"^justpaste\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustTomatoes.com\" platform=\"mixedcontent\" f=\"JustTomatoes.com.xml\"><rule from=\"^http://(?:www\\.)?justtomatoes\\.com/\" to=\"https://www.justtomatoes.com/\"/></ruleset>", "<ruleset name=\"Just Apple.com (false MCB)\" platform=\"mixedcontent\" f=\"Just_Apple.com.xml\"><securecookie host=\"^\\.justapple\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?justapple\\.com/\" to=\"https://www.justapple.com/\"/></ruleset>", "<ruleset name=\"Just Security.org\" f=\"Just_Security.org.xml\"><rule from=\"^http://justsecurity\\.org/\" to=\"https://www.justsecurity.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Justaguy.pw\" f=\"Justaguy.pw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Justia (partial)\" platform=\"mixedcontent\" f=\"Justia.xml\"><securecookie host=\"^.*\\.justia\\.com$\" name=\".*\"/><rule from=\"^http://((?:accounts|answers|blawgsearch|blawgsfm|daily|dockets|docs|law|lawyers|marketing|supreme|www)\\.)?justia\\.com/\" to=\"https://$1justia.com/\"/><rule from=\"^http://(?:www\\.)?blogs\\.justia\\.com/\" to=\"https://marketing.justia.com/content-lawyer-blogs.html\"/><rule from=\"^http://(clientvideos|profile-images|statecasefiles|static)\\.justia\\.com/\" to=\"https://s3.amazonaws.com/$1.justia.com/\"/></ruleset>", "<ruleset name=\"mail.justice.com\" default_off=\"failed ruleset test\" f=\"JusticeMail.xml\"><securecookie host=\"^(?:.+\\.)?justice\\.com$\" name=\".*\"/><rule from=\"^http://mail\\.justice\\.com/\" to=\"https://mail.justice.com/\"/></ruleset>", "<ruleset name=\"Justice 4 Assange.com\" f=\"Justice_4_Assange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Justmoon.net\" f=\"Justmoon.net.xml\"><rule from=\"^http://(?:www\\.)?justmoon\\.net/\" to=\"https://justmoon.net/\"/></ruleset>", "<ruleset name=\"JWPsrv.com\" f=\"Jwpsrv.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jxself.org\" f=\"Jxself.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jyllands-Posten.dk\" f=\"Jyllands-Posten.dk.xml\"><exclusion pattern=\"^http://jyllands-posten\\.dk/proxy/cdb/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"K2s.cc\" f=\"K2s.cc.xml\"><rule from=\"^http://(?:www\\.)?k2s\\.cc/\" to=\"https://k2s.cc/\"/><rule from=\"^http://(?:www\\.)?keep2share\\.cc/\" to=\"https://k2s.cc/\"/></ruleset>", "<ruleset name=\"KAKAO\" default_off=\"failed ruleset test\" f=\"KAKAO.xml\"><rule from=\"^http://(?:www\\.)?kakao\\.com/\" to=\"https://www.kakao.com/\"/></ruleset>", "<ruleset name=\"KASserver.com\" f=\"KASserver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KAU.se (problematic)\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"KAU.se-problematic.xml\"><securecookie host=\"^\\.narvi\\.sae\\.kau\\.se$\" name=\".+\"/><rule from=\"^http://(itsakhandbok\\.irt|narvi\\.sae)\\.kau\\.se/\" to=\"https://$1.kau.se/\"/></ruleset>", "<ruleset name=\"KAU.se\" f=\"KAU.se.xml\"><securecookie host=\"^(?:cas|\\.film|sp)\\.kau\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kau\\.se/\" to=\"https://www.kau.se/\"/><rule from=\"^http://www\\.bib\\.kau\\.se/(?:\\?.*)?$\" to=\"https://www.kau.se/bibliotek\"/><rule from=\"^http://(cas|film|sycorax\\.(?:sae|web)|sp|www3)\\.kau\\.se/\" to=\"https://$1.kau.se/\"/><rule from=\"^http://www\\.cs\\.kau\\.se/(\\?.*)?$\" to=\"https://www.kau.se/$1\"/><rule from=\"^http://www\\.nxt\\.kau\\.se/[^\\?]*(\\?.*)?$\" to=\"https://www.kau.se/nxt$1\"/></ruleset>", "<ruleset name=\"KBC.com\" default_off=\"failed ruleset test\" f=\"KBC.com.xml\"><rule from=\"^http://(?:www\\.)?kbc\\.com/\" to=\"https://www.kbc.com/\"/></ruleset>", "<ruleset name=\"KBPublisher.com (false MCB)\" platform=\"mixedcontent\" f=\"KBPublisher.com-falsemixed.xml\"><securecookie host=\"^www\\.kbpublisher\\.com$\" name=\".+\"/><rule from=\"^http://www\\.kbpublisher\\.com/(?!captcha\\.php|client/|css/|favicon\\.ico|images/|(?:login|password|signup)(?:$|[?/])|site/)\" to=\"https://www.kbpublisher.com/\"/></ruleset>", "<ruleset name=\"KBPublisher.com (partial)\" f=\"KBPublisher.com.xml\"><exclusion pattern=\"^http://www\\.kbpublisher\\.com/(?!captcha\\.php|client/|css/|favicon\\.ico|images/|(?:login|password|signup)(?:$|[?/])|site/)\"/><securecookie host=\"^\\.kbpublisher\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KB IT.dk\" f=\"KB_IT.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCC.digital\" f=\"KCC.digital.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCC Media Hub.net\" f=\"KCC_Media_Hub.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCVids\" f=\"KCVids.xml\"><securecookie host=\"^\\.?kcvids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KD2.us\" f=\"KD2.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KDAB\" f=\"KDAB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KDE.org (partial)\" f=\"KDE.xml\"><exclusion pattern=\"^http://files\\.kde\\.org/(?:$|.+/$|.+\\.(?:btih|magnet|md5|meta4|metalink|mirrorlist|sha1|sha256|torrent)$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KEMI.se\" platform=\"mixedcontent\" f=\"KEMI.se.xml\"><rule from=\"^http://www\\.kemi\\.se/\" to=\"https://www.kemi.se/\"/><rule from=\"^http://kemi\\.se/\" to=\"https://kemi.se/\"/></ruleset>", "<ruleset name=\"KF Webs.net\" default_off=\"self-signed\" f=\"KF_Webs.net.xml\"><securecookie host=\"^www\\.kfwebs\\.net$\" name=\".+\"/><rule from=\"^http://(?:www2?\\.)?kfwebs\\.net/\" to=\"https://www.kfwebs.net/\"/></ruleset>", "<ruleset name=\"KGNB.am\" default_off=\"failed ruleset test\" f=\"KGNB.am.xml\"><securecookie host=\"^\\.kgnb\\.am$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KHN.nl (partial)\" f=\"KHN.nl.xml\"><securecookie host=\"^ox\\.khn\\.nl$\" name=\".+\"/><rule from=\"^http://ox\\.khn\\.nl/\" to=\"https://ox.khn.nl/\"/></ruleset>", "<ruleset name=\"KHOC.co\" default_off=\"failed ruleset test\" f=\"KHOC.co.xml\"><securecookie host=\"^\\.khoc\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?khoc\\.co/\" to=\"https://www.khoc.co/\"/></ruleset>", "<ruleset name=\"KHub.net\" f=\"KHub.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KI.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"KI.se.xml\"><rule from=\"^http://bibliometrics\\.ki\\.se/\" to=\"https://bibliometrics.ki.se/\"/><rule from=\"^http://cas\\.ki\\.se/\" to=\"https://cas.ki.se/\"/><rule from=\"^http://cwaa\\.ki\\.se/\" to=\"https://cwaa.ki.se/\"/><rule from=\"^http://child3\\.ki\\.se/\" to=\"https://child3.ki.se/\"/><rule from=\"^http://exjobb\\.meb\\.ki\\.se/\" to=\"https://exjobb.meb.ki.se/\"/><rule from=\"^http://fonder\\.ki\\.se/\" to=\"https://fonder.ki.se/\"/><rule from=\"^http://kib\\.ki\\.se/\" to=\"https://kib.ki.se/\"/><rule from=\"^http://metasearch\\.kib\\.ki\\.se/\" to=\"https://metasearch.kib.ki.se/\"/></ruleset>", "<ruleset name=\"KISSinsights.com\" default_off=\"failed ruleset test\" f=\"KISSinsights.xml\"><securecookie host=\"^(?:.*\\.)?kissinsights\\.com$\" name=\".*\"/><rule from=\"^http://([jr])\\.kissinsights\\.com/\" to=\"https://s3.amazonaws.com/$1.kissinsights.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KISSmetrics.com (partial)\" f=\"KISSmetrics.xml\"><securecookie host=\"^.*\\.kissmetrics\\.com$\" name=\".*\"/><rule from=\"^http://scripts\\.kissmetrics\\.com/\" to=\"https://s3.amazonaws.com/scripts.kissmetrics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KIT digital\" default_off=\"failed ruleset test\" f=\"KIT_digital.xml\"><securecookie host=\"^(?:www\\.)?kitd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KIXEYE (partial)\" f=\"KIXEYE.xml\"><rule from=\"^http://cdn\\.casualcollective\\.com/\" to=\"https://s3.amazonaws.com/cdn.casualcollective.com/\"/><rule from=\"^http://(bym-vx4-s|b(?:p|ym)-fb4-s\\.cdn|d[di]-fb-cdn4|gp-fb-cdn4-s|wc-fb4-s(?:\\.cdn)?)\\.kixeye\\.com/\" to=\"https://$1.kixeye.com/\"/></ruleset>", "<ruleset name=\"KK.dk (partial)\" f=\"KK.dk.xml\"><securecookie host=\"(\\.|2200kultur|bibliotek|blaagaarden|borgerservice|dansekapellet|feriecamp|grondalmulticenter|halc|international|karensmindekulturhus|kvarterhuset|kulturhusetislandsbrygge|kulturstationen|medarbejder|pilegaarden|vkc|www)?\\.?kk\\.dk\" name=\".*\"/><rule from=\"^http://(borgerservice\\.|www\\.)?kk\\.dk/\" to=\"https://www.kk.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KKBOX.com\" f=\"KKBOX.com.xml\"><securecookie host=\"^www\\.kkbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KKH.de\" f=\"KKH.de.xml\"><rule from=\"^http://kkh\\.de/\" to=\"https://www.kkh.de/\"/><rule from=\"^https?://(www\\.)?kkh-allianz\\.de/\" to=\"https://www.kkh.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KKH.se\" platform=\"mixedcontent\" f=\"KKH.se.xml\"><rule from=\"^http://kkh\\.se/\" to=\"https://kkh.se/\"/><rule from=\"^http://www\\.kkh\\.se/\" to=\"https://www.kkh.se/\"/></ruleset>", "<ruleset name=\"KLDP.net\" f=\"KLDP.net.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.net/\" to=\"https://$1kldp.net/\"/></ruleset>", "<ruleset name=\"KLDP.org\" f=\"KLDP.org.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.org/\" to=\"https://$1kldp.org/\"/></ruleset>", "<ruleset name=\"KLM\" platform=\"mixedcontent\" f=\"KLM.xml\"><rule from=\"^http://klm\\.com/\" to=\"https://www.klm.com/\"/><rule from=\"^http://(mobile|www)\\.klm\\.com/\" to=\"https://$1.klm.com/\"/></ruleset>", "<ruleset name=\"KMH.se\" platform=\"mixedcontent\" f=\"KMH.se.xml\"><rule from=\"^http://kmh\\.se/\" to=\"https://www.kmh.se/\"/><rule from=\"^http://www\\.kmh\\.se/\" to=\"https://www.kmh.se/\"/></ruleset>", "<ruleset name=\"KMyMoney.org\" f=\"KMyMoney.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KNET.cn (partial)\" f=\"KNET.cn.xml\"><securecookie host=\"^ss\\.knet\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KOMO News (partial)\" default_off=\"failed ruleset test\" f=\"KOMO_News.xml\"><rule from=\"^http://cf\\.komo\\.com/\" to=\"https://d27odwwbded9xq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"KOP11.com\" default_off=\"self-signed\" f=\"KOP11.com.xml\"><rule from=\"^http://(?:www\\.)?kop11\\.com/\" to=\"https://kop11.com/\"/></ruleset>", "<ruleset name=\"KOSMAS.cz\" f=\"KOSMAS.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KPN (expired)\" default_off=\"expired\" f=\"KPN-expired.xml\"><rule from=\"^http://csc\\.hetnet\\.nl/\" to=\"https://csc.hetnet.nl/\"/></ruleset>", "<ruleset name=\"KPN\" f=\"KPN.com.xml\"><securecookie host=\"^.*\\.hetnet\\.nl$\" name=\".*\"/><securecookie host=\"^webmail\\.kpnmail\\.nl$\" name=\".*\"/><rule from=\"^http://netmail\\.hetnet\\.nl/\" to=\"https://netmail.hetnet.nl/\"/><rule from=\"^http://(?:www\\.)?kpn\\.(?:com|nl)/\" to=\"https://www.kpn.com/\"/><rule from=\"^http://home\\.kpn\\.nl/\" to=\"https://home.kpn.nl/\"/><rule from=\"^http://www\\.kpnmail\\.nl/\" to=\"https://www.kpn.nl/\"/><rule from=\"^http://webmail\\.kpnmail\\.nl/\" to=\"https://webmail.kpnmail.nl/\"/></ruleset>", "<ruleset name=\"KPT.ch\" f=\"KPT.ch.xml\"><securecookie host=\"^(?:.*\\.)?kpt\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kpt\\.ch/\" to=\"https://www.kpt.ch/\"/></ruleset>", "<ruleset name=\"KProxy.com\" f=\"KProxy.xml\"><securecookie host=\"^(?:.*\\.)?kproxy\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KQED.org (partial)\" f=\"KQED.org.xml\"><securecookie host=\"^\\.kqed\\.org$\" name=\"^_(?:chartbeat2|_qca|_utm\\w)$\"/><rule from=\"^http://u\\.s\\.kqed\\.org/\" to=\"https://u.s.kqed.net/\"/><rule from=\"^http://www\\.kqed\\.org/\" to=\"https://kqed.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KRL Media.nl\" f=\"KRL_Media.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KSA Glass.com\" default_off=\"502\" f=\"KSA_Glass.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Központi Statisztikai Hivatal\" default_off=\"failed ruleset test\" f=\"KSH.xml\"><rule from=\"^http://(?:www\\.)?ksh\\.hu/\" to=\"https://www.ksh.hu/\"/><rule from=\"^http://(statinfo|elektra)\\.ksh\\.hu/\" to=\"https://$1.ksh.hu/\"/></ruleset>", "<ruleset name=\"KSL\" f=\"KSL.xml\"><securecookie host=\"^\\.ksl\\.com$\" name=\".+\"/><rule from=\"^http://((?:img|local|static|www)\\.)?ksl\\.com/\" to=\"https://$1ksl.com/\"/></ruleset>", "<ruleset name=\"KTH.se\" f=\"KTH.se.xml\"><securecookie host=\"^www\\.kth\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KTk.de\" f=\"KTk.de.xml\"><rule from=\"^http://(?:www\\.)?ktk\\.de/+\" to=\"https://www.kevag-telekom.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KUTV.com\" default_off=\"mismatched\" f=\"KUTV.com.xml\"><rule from=\"^http://(?:www\\.)?kutv\\.com/\" to=\"https://kutv.com/\"/></ruleset>", "<ruleset name=\"KVM-VPS.com\" f=\"KVM-VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KYM-CDN.com (partial)\" default_off=\"mismatched\" f=\"KYM-CDN.com.xml\"><rule from=\"^http://i([0-3])\\.kym-cdn\\.com/\" to=\"https://i$1.kym-cdn.com/\"/></ruleset>", "<ruleset name=\"K P Dyer.com\" f=\"K_P_Dyer.com.xml\"><securecookie host=\"^\\.kpdyer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaazing.com (false MCB)\" platform=\"mixedcontent\" f=\"Kaazing.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaazing.com (partial)\" f=\"Kaazing.com.xml\"><exclusion pattern=\"^http://developer\\.kaazing\\.com/+(?!wordpress/wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kabel Deutschland\" f=\"KabelDeutschland.xml\"><securecookie host=\"^(newsletter\\.|sso\\.|static\\.|www\\.)?kabelmail\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?kabeldeutschland\\.de/\" to=\"https://www.kabeldeutschland.de/\"/><rule from=\"^http://(www\\.)?kabeldeutschland\\.com/\" to=\"https://www.kabeldeutschland.com/\"/><rule from=\"^http://(www\\.)?kabelmail\\.de/\" to=\"https://www.kabelmail.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kabelkiosk.de\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kabelkiosk.de.xml\"><rule from=\"^http://(?:www\\.)?kabelkiosk\\.de/\" to=\"https://www.kabelkiosk.de/\"/></ruleset>", "<ruleset name=\"Kable Media Services (partial)\" default_off=\"failed ruleset test\" f=\"Kable_Media_Services.xml\"><securecookie host=\"^secure2\\.insideknc\\.com$\" name=\".+\"/><rule from=\"^http://secure2\\.insideknc\\.com/\" to=\"https://secure2.insideknc.com/\"/><rule from=\"^http://(?:www\\.)?kable\\.com/\" to=\"https://www.kable.com/\"/></ruleset>", "<ruleset name=\"Kable Packaging and Fulfillment Services\" default_off=\"mismatched\" f=\"Kable_Packaging_and_Fulfillment_Services.xml\"><securecookie host=\"^kablepackaging\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kablepackaging\\.com/\" to=\"https://kablepackaging.com/\"/></ruleset>", "<ruleset name=\"Kachingle\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kachingle.xml\"><securecookie host=\"^(?:.+\\.)?kachingle\\.com$\" name=\".*\"/><rule from=\"^http://kachingle\\.com/\" to=\"https://kachingle.com/\"/><rule from=\"^http://(www|downloads|assets|medallion)\\.kachingle\\.com/\" to=\"https://$1.kachingle.com/\"/></ruleset>", "<ruleset name=\"Kaggle.com\" f=\"Kaggle.com.xml\"><securecookie host=\"^(\\.|\\.?www\\.)?kaggle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kagi.com (partial)\" f=\"Kagi.xml\"><securecookie host=\"^(?:order|pq|secure|shop|shopkeeper|store|suppliersignup|support|www)\\.kagi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KaiRo (partial)\" f=\"KaiRo.xml\"><securecookie host=\"^owncloud\\.kairo\\.at$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kaiseki.me\" f=\"Kaiseki.me.xml\"><securecookie host=\"^(?:www\\.)?kaiseki\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaiser Systeme (partial)\" f=\"Kaiser_Systeme.xml\"><rule from=\"^http://(www\\.)?kaisersysteme\\.com/(.+/image|.+/stylesheet)s/\" to=\"https://$1kaisersysteme.com/$2s/\"/></ruleset>", "<ruleset name=\"Kaiserslautern.de (partial)\" default_off=\"expired\" f=\"Kaiserslautern.de.xml\"><securecookie host=\"^kaiserslautern\\.de$\" name=\".+\"/><rule from=\"^http://(?:(web2\\.)|www\\.)?kaiserslautern\\.de/\" to=\"https://$1kaiserslautern.de/\"/></ruleset>", "<ruleset name=\"Kali.org (partial)\" f=\"Kali_Linux.org.xml\"><securecookie host=\"^forums\\.kali\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kallithea-SCM.org\" f=\"Kallithea-SCM.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kalooga.com (partial)\" f=\"Kalooga.com.xml\"><rule from=\"^http://publishing\\.kalooga\\.com/\" to=\"https://publishing.kalooga.com/\"/></ruleset>", "<ruleset name=\"Kaltura.com (false MCB)\" platform=\"mixedcontent\" f=\"Kaltura.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaltura.com (partial)\" default_off=\"Breaks abc.go.com\" f=\"Kaltura.xml\"><exclusion pattern=\"^http://site\\.kaltura\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://(?:akamai|cdnb?|cdnbakmi)\\.kaltura\\.com/\" to=\"https://www.kaltura.com/\"/><rule from=\"^http://cdnakmi\\.kaltura\\.com/\" to=\"https://cdnsecakmi.kaltura.com/\"/><rule from=\"^http://cdnapi\\.kaltura\\.com/\" to=\"https://cdnapisec.kaltura.com/\"/><rule from=\"^http://site\\.kaltura\\.com/+(?:\\?.*)?$\" to=\"https://corp.marketo.com/\"/><rule from=\"^http://site\\.kaltura\\.com/\" to=\"https://na-sjg.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kameleoon.com\" f=\"Kameleoon.com.xml\"><securecookie host=\"^(?:www)?\\.kameleoon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kammeratadam.dk\" f=\"Kammeratadam.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kampyle (partial)\" platform=\"mixedcontent\" f=\"Kampyle.xml\"><securecookie host=\"^www\\.kampyle\\.com$\" name=\"^FF_\\w+$\"/><rule from=\"^http://kampyle\\.com/\" to=\"https://www.kampyle.com/\"/><rule from=\"^http://www\\.kampyle\\.com/(feedback_form/|images/|login|logos/|min/|static/|test/)\" to=\"https://www.kampyle.com/$1\"/></ruleset>", "<ruleset name=\"Kanbox.com (partial)\" f=\"Kanbox.com.xml\"><securecookie host=\"^kanbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaneva (partial)\" f=\"Kaneva.xml\"><rule from=\"^http://(www\\.)?kaneva\\.com/(css/|images/|jscript/|(?:loginSecure|register/kaneva/registerInfo)\\.aspx)\" to=\"https://$1kaneva.com/$2\"/></ruleset>", "<ruleset name=\"Kangurum\" default_off=\"failed ruleset test\" f=\"Kangurum.xml\"><securecookie host=\"^www\\.kangurum\\.com\\.tr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kangurum\\.com\\.tr/\" to=\"https://www.kangurum.com.tr/\"/></ruleset>", "<ruleset name=\"Kanotix\" default_off=\"self-signed\" f=\"Kanotix.xml\"><securecookie host=\"^(?:.*\\.)?kanotix\\.(?:com|de|net|org)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kanotix\\.(?:com|de|net|org)/\" to=\"https://kanotix.com/\"/></ruleset>", "<ruleset name=\"Kansas.com (partial)\" default_off=\"failed ruleset test\" f=\"Kansas.com.xml\"><securecookie host=\"^customercare\\.kansas\\.com$\" name=\".+\"/><rule from=\"^http://customercare\\.kansas\\.com/\" to=\"https://customercare.kansas.com/\"/></ruleset>", "<ruleset name=\"Kanshoo\" default_off=\"self-signed\" f=\"Kanshoo.xml\"><rule from=\"^http://(?:www\\.)?kenshoo\\.com/\" to=\"https://www.kenshoo.com/\"/></ruleset>", "<ruleset name=\"Kantar Latam Portal\" default_off=\"failed ruleset test\" f=\"Kantar-Latam-Portal.xml\"><securecookie host=\"^.*\\.kantarlatam\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kantarlatam\\.com/\" to=\"https://www.kantarlatam.com/\"/></ruleset>", "<ruleset name=\"Kantar Worldpanel\" default_off=\"expired, self-signed\" f=\"Kantar-Worldpanel.xml\"><rule from=\"^http://(?:www\\.)?kantarworldpanel\\.com/\" to=\"https://www.kantarworldpanel.com/\"/></ruleset>", "<ruleset name=\"Kantara Initiative.org\" f=\"Kantara_Initiative.org.xml\"><securecookie host=\"^(?:idp\\.|www\\.)?kantarainitiative.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kaos.theory\" default_off=\"expired\" f=\"Kaos.theory.xml\"><securecookie host=\"^kaos.to$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kaos\\.to/\" to=\"https://kaos.to/\"/></ruleset>", "<ruleset name=\"Kapiton.se\" f=\"Kapiton.se.xml\"><securecookie host=\"^\\.?kapiton\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaply.com (partial)\" f=\"Kaply.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kapsi.fi (very partial)\" f=\"Kapsi.fi.xml\"><exclusion pattern=\"^http://koti\\.kapsi\\.fi/+~\"/><rule from=\"^http://(?:www\\.)?kapsi\\.fi/\" to=\"https://www.kapsi.fi/\"/><rule from=\"^http://(koti|tuki|blog|forum|admin)\\.kapsi\\.fi/\" to=\"https://$1.kapsi.fi/\"/></ruleset>", "<ruleset name=\"kapsobor.de (partial)\" default_off=\"expired, self-signed\" f=\"Kapsobor.de.xml\"><rule from=\"^http://([\\w\\.]+)\\.kapsobor\\.de/\" to=\"https://$1.kapsobor.de/\"/></ruleset>", "<ruleset name=\"Kapt Cha\" f=\"Kapt-Cha.xml\"><securecookie host=\"^\\.kaptcha\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Karger.com\" f=\"Karger.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://karger\\.com/\" to=\"https://www.karger.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kargo.com\" default_off=\"mismatched\" f=\"Kargo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kariera.gr\" f=\"Kariera.gr.xml\"><securecookie host=\"^(?:.*\\.)?kariera\\.gr$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?kariera\\.gr/\" to=\"https://$1kariera.gr/\"/></ruleset>", "<ruleset name=\"Karlsruhe Institute of Technology (problematic)\" default_off=\"self-signed\" f=\"Karlsruhe_Institute_of_Technology-problematic.xml\"><rule from=\"^http://blog\\.bibliothek\\.kit\\.edu/\" to=\"https://blog.bibliothek.kit.edu/\"/><rule from=\"^http://(?:www\\.)?studiumundbehinderung\\.kit\\.edu/\" to=\"https://studiumundbehinderung.kit.edu/\"/></ruleset>", "<ruleset name=\"Karlsruhe Institute of Technology (partial)\" default_off=\"failed ruleset test\" f=\"Karlsruhe_Institute_of_Technology.xml\"><exclusion pattern=\"^http://blog\\.bibliothek\\.kit\\.edu/+(?!\\w+/wp-(?:content|includes)/)\"/><securecookie host=\"^.+\\.kit\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alumni\\.kit\\.edu/\" to=\"https://www.rsm.kit.edu/\"/><rule from=\"^http://(?:www\\.)?((?:bibliothek|informatik|innovation|lists|pst|ptka|radio|rsm|scc)\\.)?kit\\.edu/\" to=\"https://www.$1kit.edu/\"/><rule from=\"^http://(blog\\.bibliothek|campus|(?:jplag|svn)\\.ipd|intranet|owa|(?:idp|wsm10)\\.scc|(?:ilias\\.)?stadium|www\\.stiftung)\\.kit\\.edu/\" to=\"https://$1.kit.edu/\"/><rule from=\"^http://(?:www\\.)?cs\\.kit\\.edu/+\" to=\"https://www.informatik.kit.edu/\"/><rule from=\"^http://www\\.zib\\.kit\\.edu/(?:.*)\" to=\"https://www.kit.edu/studieren/3052.php\"/><rule from=\"^http://(?:www\\.)?(zvw\\.)?uni-karlsruhe\\.de/\" to=\"https://www.$1uni-karlsruhe.de/\"/><rule from=\"^http://(mensa\\.akk|www\\.ubka)\\.uni-karlsruhe\\.de/\" to=\"https://$1.uni-karlsruhe.de/\"/><rule from=\"^http://www\\.rz\\.uni-karlsruhe\\.de/+\" to=\"https://www.scc.kit.edu/\"/></ruleset>", "<ruleset name=\"Karma.mg (partial)\" f=\"Karma.mg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kart Fighter.com (partial)\" f=\"Kart_Fighter.com.xml\"><securecookie host=\"^(?:files|redbullracingadmin|worldtour)\\.kartfighter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Karwansaray Publishers.com\" f=\"KarwansarayPublishers.xml\"><securecookie host=\"^\\.www\\.karwansaraypublishers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaseya.com\" f=\"Kaseya.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaseya.net (partial)\" f=\"Kaseya.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kasimp3\" default_off=\"self-signed\" f=\"Kasimp3.xml\"><securecookie host=\"^kasimp3\\.co\\.za$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kasimp3\\.co\\.za/\" to=\"https://www.kasimp3.co.za/\"/></ruleset>", "<ruleset name=\"Kaspersky-cyberstat.com\" f=\"Kaspersky-cyberstat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.com (partial)\" f=\"Kaspersky.com.xml\"><exclusion pattern=\"^http://www\\.kaspersky\\.com/+(?!downloads/keys|vpnhelp(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^s_\\w+$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:anti-theft|eugene|my|support|usa|virusdesk)\\.kaspersky\\.com$\" name=\".\"/><rule from=\"^http://www\\.(academy|blog|business|eugene|sas)\\.kaspersky\\.com/\" to=\"https://$1.kaspersky.com/\"/><rule from=\"^http://tr1\\.kaspersky\\.com/\" to=\"https://kaspersky.d2.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.ru (partial)\" f=\"Kaspersky.ru.xml\"><securecookie host=\"^\\.\" name=\"^s_vi$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:newvirus|support|virusdesk)\\.kaspersky\\.ru$\" name=\".\"/><rule from=\"^http://www\\.blog\\.kaspersky\\.ru/\" to=\"https://blog.kaspersky.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.ua (partial)\" f=\"Kaspersky.ua.xml\"><securecookie host=\"^partners\\.kaspersky\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky Club.ru\" f=\"Kaspersky_Club.ru.xml\"><securecookie host=\"^\\.kasperskyclub\\.ru$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^forum\\.kasperskyclub\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky Partners.com\" f=\"Kaspersky_Partners.com.xml\"><securecookie host=\"^www\\.kasperskypartners\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky Partners.ru\" f=\"Kaspersky_Partners.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kasperskycontenthub.com\" f=\"Kasperskycontenthub.com.xml\"><securecookie host=\"^kasperskycontenthub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kat-de-Paris.fr (partial)\" f=\"Kat_de_Paris.xml\"><exclusion pattern=\"^http://kat-de-paris\\.fr/+(?!\\d+-home_default/|favicon\\.ico|modules/|themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kate Heddleston.com\" f=\"Kate_Heddleston.com.xml\"><securecookie host=\"^(?:www\\.)?kateheddleston\\.com$\" name=\"^session$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kates Comment.com\" f=\"Kates_Comment.com.xml\"><securecookie host=\"^(?:.*\\.)?katescomment\\.com$\" name=\".*\"/><rule from=\"^http://cdn\\.katescomment\\.com/\" to=\"https://www.katescomment.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KU Leuven.be (partial)\" f=\"Katholieke-Universiteit-Leuven.xml\"><exclusion pattern=\"^http://(?:www\\.)?esat\\.kuleuven\\.be/+cosic(?!/wp-content/)(?:$|[?/])\"/><exclusion pattern=\"^http://(?:www\\.)?kuleuven\\.be/+wieiswie(?:$|[?/])\"/><securecookie host=\".+\\.kuleuven\\.be$\" name=\".+\"/><rule from=\"^http://alumni\\.kuleuven\\.be/[^?]*\" to=\"https://alum.kuleuven.be/portaal/\"/><rule from=\"^http://kuleuven\\.ezproxy\\.kuleuven\\.be/\" to=\"https://www.kuleuven.ezproxy.kuleuven.be/\"/><rule from=\"^http://services\\.libis\\.kuleuven\\.be/\" to=\"https://services.libis.be/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kathrein\" f=\"Kathrein.xml\"><securecookie host=\"^www\\.kathrein\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kathrein\\.de/\" to=\"https://www.kathrein.de/\"/></ruleset>", "<ruleset name=\"Kattare.com\" platform=\"mixedcontent\" f=\"Kattare.com.xml\"><securecookie host=\"^(?:\\.?www\\.)?kattare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Katylee.com\" f=\"Katylee.com.xml\"><securecookie host=\"^\\.katylee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KatzPorn\" default_off=\"expired, mismatch, self-signed\" f=\"KatzPorn.xml\"><securecookie host=\"^(?:katzporn\\.in|pro-xy\\.com)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?katzporn\\.in/\" to=\"https://katzporn.in/\"/><rule from=\"^http://(?:www\\.)?pro-xy\\.com/\" to=\"https://pro-xy.com/\"/></ruleset>", "<ruleset name=\"Kaufdown.de (partial)\" f=\"Kaufdown.de.xml\"><rule from=\"^http://sueddeutsche\\.kaufdown\\.de/\" to=\"https://sueddeutsche.kaufdown.de/\"/></ruleset>", "<ruleset name=\"Kaufland.cz\" f=\"Kaufland.cz.xml\"><rule from=\"^http://kaufland\\.cz/\" to=\"https://www.kaufland.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kayak\" f=\"Kayak.xml\"><rule from=\"^http://(?:www\\.)?kayak\\.com/\" to=\"https://www.kayak.com/\"/><rule from=\"^http://(?:www\\.)?kayak\\.co\\.uk/\" to=\"https://www.kayak.co.uk/\"/></ruleset>", "<ruleset name=\"Kayako clients\" default_off=\"mismatch\" f=\"Kayako-clients.xml\"><securecookie host=\"^.*\\.helpserve\\.com$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.helpserve\\.com/\" to=\"https://$1.helpserve.com/\"/></ruleset>", "<ruleset name=\"Kayako (partial)\" f=\"Kayako.xml\"><exclusion pattern=\"^http://(?:blog|forge|forums|wiki|www)\\.\"/><securecookie host=\".+\\.kayako\\.com$\" name=\".+\"/><rule from=\"^http://media\\.kayako\\.com/\" to=\"https://d13f94alzxkv7n.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.kayako\\.com/\" to=\"https://$1.kayako.com/\"/></ruleset>", "<ruleset name=\"Kaywa (problematic)\" default_off=\"self-signed\" f=\"Kaywa-problematic.xml\"><rule from=\"^http://photo\\.kaywa\\.(?:biz|com)/\" to=\"https://photo.kaywa.biz/\"/></ruleset>", "<ruleset name=\"Kaywa.com (partial)\" f=\"Kaywa.xml\"><securecookie host=\"^\\w.*\\.kaywa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kb8ojh.net\" default_off=\"failed ruleset test\" f=\"Kb8ojh.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kbia-gmbh.de (partial)\" default_off=\"missing certificate chain\" f=\"Kbia-gmbh.de.xml\"><securecookie host=\"^cloud\\.kbia-gmbh\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kdelive.org\" f=\"Kdelive.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kdenlive.org\" f=\"Kdenlive.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kdoes.nl\" default_off=\"mismatch, self-signed\" f=\"Kdoes.nl.xml\"><rule from=\"^http://(?:www\\.)?kdoes\\.nl/\" to=\"https://kdoes.nl/\"/></ruleset>", "<ruleset name=\"KeePass.info\" default_off=\"mismatched, self-signed\" f=\"KeePass.info.xml\"><rule from=\"^http://(?:www\\.)?keepass\\.info/\" to=\"https://keepass.info/\"/></ruleset>", "<ruleset name=\"Keepassx\" f=\"KeePassX.xml\"><rule from=\"^http://(?:www\\.)?keepassx\\.org/\" to=\"https://www.keepassx.org/\"/></ruleset>", "<ruleset name=\"Keelog.com\" f=\"Keelog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keen.IO (partial)\" f=\"Keen.IO.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keenot.es (partial)\" default_off=\"failed ruleset test\" f=\"Keenot.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keepTempo.com (partial)\" f=\"KeepTempo.com.xml\"><securecookie host=\"^app\\.keeptempo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keep all the things.com\" f=\"Keep_all_the_things.com.xml\"><rule from=\"^http://((?:assets|control|www)\\.)?keepallthethings\\.com/\" to=\"https://$1keepallthethings.com/\"/></ruleset>", "<ruleset name=\"Kei.pl (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Kei.pl-mismatches.xml\"><rule from=\"^http://(default|kreator)\\.kei\\.pl/\" to=\"https://$1.kei.pl/\"/><securecookie host=\"^kreator\\.kei\\.pl$\" name=\".*\"/></ruleset>", "<ruleset name=\"Kei.pl (partial)\" default_off=\"failed ruleset test\" f=\"Kei.pl.xml\"><rule from=\"^http://(www\\.)?kei\\.pl/(favicon\\.ico$|css/|gfx/|swf/)\" to=\"https://www.kei.pl/$2\"/><rule from=\"^http://panel\\.kei\\.pl/\" to=\"https://panel.kei.pl/\"/><securecookie host=\"^panel\\.kei\\.pl$\" name=\".*\"/></ruleset>", "<ruleset name=\"keksbude.net (partial)\" f=\"Keksbude.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kelco Maine.com\" f=\"Kelco_Maine.com.xml\"><securecookie host=\"^(?:www\\.)?kelcomaine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kelley Blue Book Co.\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kelley-Blue-Book.xml\"><securecookie host=\"^(?:.*\\.)?kbb\\.com$\" name=\".*\"/><rule from=\"^http://(s1\\.|www\\.)?kbb\\.com/\" to=\"https://$1kbb.com/\"/><rule from=\"^http://file\\.k(?:bb|elleybluebookimages)\\.com/\" to=\"https://file.kbb.com/\"/></ruleset>", "<ruleset name=\"Kenai.com\" f=\"Kenai.com.xml\"><securecookie host=\"^(?:asset-\\d\\.)?kenai\\.com$\" name=\".+\"/><rule from=\"^http://(asset-\\d\\.|www\\.)?kenai\\.com/\" to=\"https://$1kenai.com/\"/></ruleset>", "<ruleset name=\"Kenengba.com\" f=\"Kenengba.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenexa (mismatches)\" default_off=\"mismatch\" f=\"Kenexa-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.kenexa\\.jobs/\" to=\"https://kenexa.jobs/\"/><rule from=\"^http://www\\.kenexa(governmentsolution|pod)s\\.com/\" to=\"https://kenexa$1s.com/\"/><rule from=\"^http://www\\.khpi\\.com/\" to=\"https://khpi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenexa.com (partial)\" f=\"Kenexa.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenneth.io\" f=\"Kenneth.io.xml\"><securecookie host=\"^\\.kenneth\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kensington.com (partial)\" f=\"Kensington.xml\"><securecookie host=\"(?:www\\.)?eshop\\.kensington\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kent.gov.uk (partial)\" f=\"Kent.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?kent\\.gov\\.uk/+(?!__data/|jobs/jobs-at-kent-county-council$)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://digital\\.kent\\.gov\\.uk/+\" to=\"https://www.youtube.com/KentCountyCouncil\"/><rule from=\"^http://www\\.eis\\.kent\\.gov\\.uk/\" to=\"https://www.eiskent.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kent Backman.com (partial)\" f=\"Kent_Backman.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kentico\" f=\"Kentico.xml\"><securecookie host=\"^.+\\.kentico\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KentuckyOne Health\" f=\"KentuckyOneHealth.org.xml\"><securecookie host=\"^((www)?\\.)?kentuckyonehealth\\.org$\" name=\".+\"/><securecookie host=\"^www\\.jhsmh\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kerbal Space Program.com (partial)\" f=\"Kerbal_Space_Program.xml\"><securecookie host=\"^(?:www\\.)?kerbalspaceprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kernel-Recipes.org\" f=\"Kernel-Recipes.org.xml\"><rule from=\"^http://www\\.kernel-recipes\\.org/\" to=\"https://kernel-recipes.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kernel.org (partial)\" f=\"KernelOrg.xml\"><exclusion pattern=\"^http://(?:ftp|oops|planet|vger|wireless)\\.\"/><securecookie host=\".*\\.kernel\\.org$\" name=\".+\"/><rule from=\"^http://mirrors\\.\\w\\w\\.kernel\\.org/\" to=\"https://mirrors.kernel.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kernel concepts (partial)\" platform=\"cacert\" f=\"Kernel_concepts.xml\"><securecookie host=\"^\\.shop\\.kernelconcepts\\.de$\" name=\".+\"/><rule from=\"^http://shop\\.kernelconcepts\\.de/\" to=\"https://shop.kernelconcepts.de/\"/></ruleset>", "<ruleset name=\"Kernl.us\" f=\"Kernl.us.xml\"><securecookie host=\"^kernl\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ketchum.com (partial)\" f=\"Ketchum.com.xml\"><securecookie host=\"^\\.?facebook\\.ketchum\\.com$\" name=\".+\"/><rule from=\"^http://facebook\\.ketchum\\.com/\" to=\"https://facebook.ketchum.com/\"/></ruleset>", "<ruleset name=\"Kettering.gov.uk (partial)\" f=\"Kettering.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://kettering\\.gov\\.uk/\" to=\"https://www.kettering.gov.uk/\"/><rule from=\"^https?://www\\.kettering\\.gov\\.uk/\" to=\"https://www.kettering.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kevag-Telekom.de\" f=\"Kevag-Telekom.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kevinajacobs.com\" default_off=\"mismatch\" f=\"Kevinajacobs.com.xml\"><rule from=\"^http://(?:www\\.)?kevinajacobs\\.com/\" to=\"https://kevinajacobs.com/\"/></ruleset>", "<ruleset name=\"KeyDrive (mismatches)\" default_off=\"mismatch\" f=\"KeyDrive-mismatches.xml\"><securecookie host=\"^news\\.moniker\\.com$\" name=\".*\"/><rule from=\"^http://news\\.moniker\\.com/\" to=\"https://news.moniker.com/\"/></ruleset>", "<ruleset name=\"KeyDrive (partial)\" f=\"KeyDrive.xml\"><rule from=\"^http://help\\.moniker\\.com/\" to=\"https://support.snapnames.com/\"/><rule from=\"^http://(domainauctions\\.|www\\.)?moniker\\.com/\" to=\"https://$1moniker.com/\"/><rule from=\"^http://(?:moniker\\.|www\\.)?snapnames\\.com/\" to=\"https://moniker.snapnames.com/\"/></ruleset>", "<ruleset name=\"KeyGhost.com (expired)\" default_off=\"expired, md5 signed\" f=\"KeyGhost.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?keyghost\\.com/\" to=\"https://www.keyghost.com/\"/></ruleset>", "<ruleset name=\"KeyGhost.com (partial)\" f=\"KeyGhost.com.xml\"><rule from=\"^http://secure\\.keyghost\\.com/\" to=\"https://secure.keyghost.com/\"/></ruleset>", "<ruleset name=\"Keybase.io\" f=\"Keybase.io.xml\"><rule from=\"^http://(?:www\\.)?keybase\\.io/\" to=\"https://keybase.io/\"/></ruleset>", "<ruleset name=\"Keygens.nl\" default_off=\"missing certificate chain\" f=\"Keygens.nl.xml\"><rule from=\"^http://www\\.keygens\\.nl/\" to=\"https://keygens.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keymile.com (partial)\" f=\"Keymile.com.xml\"><securecookie host=\"^extranet\\.keymile\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?keymile\\.com/(\\?.*)?$\" to=\"https://extranet.keymile.com/en/\"/><rule from=\"^http://(?:www\\.)?keymile\\.com/en/\" to=\"https://extranet.keymile.com/en/\"/><rule from=\"^http://extranet\\.keymile\\.com/\" to=\"https://extranet.keymile.com/\"/></ruleset>", "<ruleset name=\"Keyword Discovery\" default_off=\"mismatched\" f=\"Keyword_Discovery.xml\"><securecookie host=\"^keyworddiscovery\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?keyworddiscovery\\.com/\" to=\"https://keyworddiscovery.com/\"/></ruleset>", "<ruleset name=\"kfs.io\" f=\"Kfs.io.xml\"><rule from=\"^http://i\\.kfs\\.io/\" to=\"https://i.kfs.io/\"/></ruleset>", "<ruleset name=\"Khan Academy\" f=\"Khan-Academy.xml\"><securecookie host=\"^www\\.khanacademy\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?k(asandbox|astatic|hanacademy)\\.org/\" to=\"https://$1k$2.org/\"/></ruleset>", "<ruleset name=\"Khronos Group (partial)\" f=\"Khronos.xml\"><securecookie host=\"^www\\.khronos\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?khronos\\.org/\" to=\"https://www.khronos.org/\"/><rule from=\"^http://\\w\\w\\.khronos\\.org/assets/\" to=\"https://www.khronos.org/assets/\"/></ruleset>", "<ruleset name=\"Kick Ass\" f=\"Kick-Ass.xml\"><securecookie host=\"^\\.?kickassapp\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KickApps (partial)\" default_off=\"failed ruleset test\" f=\"KickApps.xml\"><securecookie host=\"^(?:affiliate|community)\\.kickapps\\.com$\" name=\".+\"/><rule from=\"^http://(affiliate|community)\\.kickapps\\.com/\" to=\"https://$1.kickapps.com/\"/><rule from=\"^http://media\\.kickstatic\\.com/\" to=\"https://media.kickstatic.com/\"/></ruleset>", "<ruleset name=\"KickAssVPS.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"KickAssVPS.com.xml\"><securecookie host=\"^manage\\.kickassvps\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KickNews\" f=\"KickNews.xml\"><securecookie host=\"^(?:.*\\.)?(?:arsenal|kick)news\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?(arsenal|kick)news\\.net/\" to=\"https://$1$2news.net/\"/><rule from=\"^http://(?:www\\.)?kicknews\\.co(?:\\.uk|com)/\" to=\"https://www.kicknews.com/\"/></ruleset>", "<ruleset name=\"KickassTorrents\" f=\"KickassTorrents.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kickflip.io\" f=\"Kickflip.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kickstarter.com (partial)\" f=\"Kickstarter.xml\"><securecookie host=\"^api\\.kickstarter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kicktraq\" f=\"Kicktraq.xml\"><securecookie host=\"^www\\.kicktraq\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KidsHealth/TeensHealth\" f=\"KidsHealth.xml\"><securecookie host=\"^(?:secure02|websrv01)\\.kidshealth\\.org$\" name=\".+\"/><rule from=\"^http://(secure02|websrv01)\\.kidshealth\\.org/\" to=\"https://$1.kidshealth.org/\"/><rule from=\"^http://(?:www\\.)?kidshealth\\.org/\" to=\"https://secure02.kidshealth.org/\"/><rule from=\"^http://(?:www\\.)?teenshealth\\.org/?$\" to=\"https://secure02.kidshealth.org/teen/\"/><rule from=\"^http://(www\\.)?teenshealth\\.org/([^?]+)\" to=\"https://secure02.kidshealth.org/$2\"/></ruleset>", "<ruleset name=\"Kids Foot Locker\" f=\"Kids_Foot_Locker.xml\"><securecookie host=\"^.*\\.kidsfootlocker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kidsfootlocker\\.com/\" to=\"https://www.kidsfootlocker.com/\"/><rule from=\"^http://m\\.kidsfootlocker\\.com/\" to=\"https://m.kidsfootlocker.com/\"/></ruleset>", "<ruleset name=\"Kikatek\" default_off=\"failed ruleset test\" f=\"Kikatek.xml\"><securecookie host=\"^.*\\.kikatek\\.com$\" name=\".*\"/><rule from=\"^http://(?:(?:www)\\.)?kikatek\\.com/\" to=\"https://www.kikatek.com/\"/></ruleset>", "<ruleset name=\"KildareStreet.com\" f=\"KildareStreet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kill Screen.com\" f=\"Kill_Screen.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kilometrikisa.fi\" f=\"Kilometrikisa.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kimberly-Clark (partial)\" default_off=\"failed ruleset test\" f=\"Kimberly-Clark.xml\"><securecookie host=\"^www\\.kimberly-clark\\.com(?:\\.au|\\.cn)?$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kimberly-clark\\.com(\\.au|\\.cn)?/\" to=\"https://www.kimberly-clark.com$1/\"/></ruleset>", "<ruleset name=\"Kimono Labs.com\" f=\"Kimono_Labs.com.xml\"><securecookie host=\"^\\.kimonolabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kimpluscraig.com\" f=\"Kimpluscraig.com.xml\"><securecookie host=\"^\\.kimpluscraig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kimsufi.com\" f=\"Kimsufi.com.xml\"><securecookie host=\"(?:^|\\.)kimsufi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kindful.com (partial)\" f=\"Kindful.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinesis-Ergo.com\" f=\"Kinesis-Ergo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinfolk.com (false MCB)\" platform=\"mixedcontent\" f=\"Kinfolk.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinfolk.com (partial)\" f=\"Kinfolk.com.xml\"><exclusion pattern=\"^http://www\\.kinfolk\\.com/+(?!favicon\\.ico|(?:join|my-account)($|[?/])|wp-content/|wp-includes/)\"/><securecookie host=\"^kinfolk\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"King.com (partial)\" f=\"King.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?king\\.com/(?!(?:login|signup)\\.jsp)\"/><securecookie host=\"^adtrack\\.king\\.com$\" name=\".+\"/><rule from=\"^http://(adtrack\\.|www\\.)?king\\.com/\" to=\"https://$1king.com/\"/><rule from=\"^http://i\\d\\.midasplayer\\.com/\" to=\"https://king.pantherssl.com/\"/></ruleset>", "<ruleset name=\"KingHost (partial)\" default_off=\"failed ruleset test\" f=\"KingHost.xml\"><securecookie host=\"^\\.kinghost\\.com\\.br$\" name=\".+\"/><securecookie host=\"^(?:painel2?|webftp|webmail)\\.kinghost\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?kinghost\\.com\\.br/\" to=\"https://$1kinghost.com.br/\"/><rule from=\"^http://(live|painel2?|web\\d{3}|webftp|webmail)\\.kinghost\\.net/\" to=\"https://$1.kinghost.net/\"/><rule from=\"^http://live\\.kinghost\\.(?:com\\.br|net)/\" to=\"https://live.kinghost.net/\"/></ruleset>", "<ruleset name=\"King's College London (partial)\" default_off=\"failed ruleset test\" f=\"Kings-College-London.xml\"><securecookie host=\"^\\w.*\\.kcl\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kings Road Merch\" f=\"Kings_Road_Merch.xml\"><securecookie host=\"^(?:secure)?\\.kingsroadmerch\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?kingsroadmerch\\.com/\" to=\"https://secure.kingsroadmerch.com/\"/></ruleset>", "<ruleset name=\"Kingston.com (partial)\" f=\"Kingston.com.xml\"><securecookie host=\"^legacy\\.kingston\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinguin.net\" f=\"Kinguin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinja-img.com\" f=\"Kinja-img.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinja.com (problematic)\" default_off=\"mismatched\" f=\"Kinja-problematic.xml\"><securecookie host=\"^\\.kinja\\.com$\" name=\".+\"/><rule from=\"^http://gawker\\.kinja\\.com/\" to=\"https://gawker.com/\"/><rule from=\"^http://([\\w-]+)\\.kinja\\.com/\" to=\"https://$1.kinja.com/\"/></ruleset>", "<ruleset name=\"Kinja-static.com\" f=\"Kinja-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinja.com (partial)\" f=\"Kinja.xml\"><securecookie host=\"^kinja\\.com$\" name=\".+\"/><rule from=\"^http://www\\.kinja\\.com/\" to=\"https://kinja.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KinkLink.me\" default_off=\"failed ruleset test\" f=\"KinkLink.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kink On Tap.com (partial)\" f=\"Kink_On_Tap.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinko.me\" default_off=\"failed ruleset test\" f=\"Kinko.me.xml\"><securecookie host=\"^(?:www)?\\.kinko\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinotehnik\" f=\"Kinotehnik.xml\"><securecookie host=\"^www\\.kinotehnik\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kinotehnik\\.com/\" to=\"https://www.kinotehnik.com/\"/></ruleset>", "<ruleset name=\"Kinsta.com (partial)\" f=\"Kinsta.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kintera Network\" f=\"Kintera-Network.xml\"><rule from=\"^http://(?:www\\.)?kintera\\.(com|org)/\" to=\"https://www.kintera.$1/\"/><rule from=\"^http://(?:[\\w-]+\\.){1,2}kintera\\.org/(?=[^/]+/[^/])\" to=\"https://www.kintera.org/\"/></ruleset>", "<ruleset name=\"Kipoint.it\" f=\"Kipoint.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kirei.se\" f=\"Kirei.se.xml\"><securecookie host=\"^\\.www\\.kirei\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirjoitusalusta\" f=\"Kirjoitusalusta.xml\"><securecookie host=\"^(?:.*\\.)?kirjoitusalusta\\.fi\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirklees.gov.uk (partial)\" f=\"Kirklees.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirkus Reviews.com\" f=\"Kirkus_Reviews.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://kirkusreviews\\.com/\" to=\"https://www.kirkusreviews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirsle.net\" f=\"Kirsle.net.xml\"><securecookie host=\"^(?:www\\.)?kirsle\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kismetwireless.net\" f=\"Kismetwireless.net.xml\"><rule from=\"^http://(?:www\\.)?kismetwireless\\.net/\" to=\"https://kismetwireless.net/\"/></ruleset>", "<ruleset name=\"KissAnime.to\" f=\"KissAnime.to.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kitapyurdu\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kitapyurdu.xml\"><securecookie host=\"^www\\.kitapyurdu\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kitapyurdu\\.com/\" to=\"https://www.kitapyurdu.com/\"/></ruleset>", "<ruleset name=\"Kitchen Riddles.com\" f=\"Kitchen_Riddles.com.xml\"><securecookie host=\"^\\.kitchenriddles\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kitchenriddles\\.com/\" to=\"https://kitchenriddles.com/\"/></ruleset>", "<ruleset name=\"Kite Packaging.co.uk\" f=\"Kite_Packaging.co.uk.xml\"><rule from=\"^http://(www\\.)?kitepackaging\\.co\\.uk/(?=[cC]atapult/|favicon\\.ico|images/|stylesandscripts/)\" to=\"https://$1kitepackaging.co.uk/\"/></ruleset>", "<ruleset name=\"Kitematic.com (partial)\" f=\"Kitematic.com.xml\"><securecookie host=\"^\\.kitematic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kitenet.net (partial)\" f=\"Kitenet.net.xml\"><rule from=\"^http://kitenet\\.net/\" to=\"https://kitenet.net/\"/></ruleset>", "<ruleset name=\"Kiva.org (partial)\" default_off=\"failed ruleset test\" f=\"Kiva.org.xml\"><exclusion pattern=\"^http://(www\\.)?kiva\\.org/$\"/><rule from=\"^http://(www\\.)?kiva\\.org/(?=favicon\\.ico|images/|img/|js/|js-lib/|(?:community/teams/my-teams|help/forgot-password|login|oauth/authorize|profile|register)(?:$|\\?|/)|rgit\\w{40}-\\d/)\" to=\"https://$1.kiva.org/\"/><securecookie host=\"^(?:\\.?pages|zip)\\.kiva\\.org$\" name=\".+\"/><rule from=\"^https?://cms\\.kiva\\.org\\.s3\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/cms.kiva.org.s3.amazonaws.com/\"/><rule from=\"^http://(fellowsblog\\.|pages\\.)kiva\\.org/\" to=\"https://$1kiva.org/\"/><rule from=\"^http://(l3-[12]|level3cdn|zip)\\.kiva\\.org/\" to=\"https://www.kiva.org/\"/><rule from=\"^http://mail\\.kiva\\.org/\" to=\"https://mail.google.com/a/kiva.org\"/><rule from=\"^http://s3(-[12])?\\.kiva\\.org/\" to=\"https://s3.amazonaws.com/s3.kiva.org/\"/></ruleset>", "<ruleset name=\"Kivo.com\" f=\"Kivo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kiwi FM\" default_off=\"mismatch\" f=\"Kiwi-FM.xml\"><rule from=\"^http://(?:www\\.)?wammo\\.co\\.uk/\" to=\"https://www.wammo.co.uk/\"/></ruleset>", "<ruleset name=\"Kiwicon.org\" f=\"Kiwicon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KiwiIRC.com\" f=\"Kiwiirc.com.xml\"><securecookie host=\"^\\.?kiwiirc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kkk.com\" f=\"Kkk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klibert.pl\" f=\"Klibert.pl.xml\"><securecookie host=\"^\\.klibert\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KlimaSchutzPartner Berlin\" f=\"KlimaSchutzPartner-Berlin.xml\"><securecookie host=\"^www\\.klimaschutzpartner-berlin\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?klimaschutzpartner-berlin\\.de/\" to=\"https://www.klimaschutzpartner-berlin.de/\"/></ruleset>", "<ruleset name=\"Klinika.zdravie.sk\" f=\"Klinika.zdravie.sk.xml\"><rule from=\"^http://klinika\\.zdravie\\.sk/\" to=\"https://klinika.zdravie.sk/\"/></ruleset>", "<ruleset name=\"klub.com.pl\" default_off=\"expired, self-signed\" f=\"Klub.com.pl.xml\"><rule from=\"^http://(?:www\\.)?klub\\.com\\.pl/\" to=\"https://klub.com.pl/\"/></ruleset>", "<ruleset name=\"Klubitus.org\" f=\"Klubitus.org.xml\"><securecookie host=\"^klubitus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kmart.com (partial)\" f=\"Kmart.com.xml\"><securecookie host=\"^\\.kmart\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^\\.?(?:playdateplace|stylesipblog)\\.kmart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kmart\\.com/(?=favicon\\.ico|ue/|\\d+/ue/)\" to=\"https://www.kmart.com/\"/><rule from=\"^http://(birthdayclub|c|fashionclub|playdateplace|stylesipblog)\\.kmart\\.com/\" to=\"https://$1.kmart.com/\"/><rule from=\"^http://om\\.kmart\\.com/\" to=\"https://kmart-com.d1.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"KnCMiner.com (partial)\" f=\"KnCMiner.com.xml\"><securecookie host=\"^\\.kncminer\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knab.nl\" f=\"Knab.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knappschaft-Bahn-See.de\" f=\"Knappschaft-Bahn-See.xml\"><rule from=\"^http://kbs\\.de/\" to=\"https://www.kbs.de/\"/><rule from=\"^https?://(www\\.)?knappschaft-bahn-see\\.de/\" to=\"https://www.kbs.de/\"/><rule from=\"^https?://knappschaft\\.de/\" to=\"https://www.knappschaft.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kneon.com (problematic)\" default_off=\"mismatched\" f=\"Kneon.com-problematic.xml\"><securecookie host=\"^\\.kneon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kneon\\.com/\" to=\"https://kneon.com/\"/></ruleset>", "<ruleset name=\"Kneon.com (partial)\" default_off=\"failed ruleset test\" f=\"Kneon.com.xml\"><rule from=\"^http://beta\\.kneon\\.com/\" to=\"https://beta.kneon.com/\"/></ruleset>", "<ruleset name=\"KnewOne.com\" f=\"KnewOne.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KnightSwarm.com (partial)\" f=\"KnightSwarm.xml\"><securecookie host=\"^(?:.*\\.)?knightswarm\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knight Lab.com\" f=\"Knight_Lab.com.xml\"><securecookie host=\"^\\.knightlab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knopper.Net\" default_off=\"self-signed\" f=\"Knopper.net.xml\"><rule from=\"^http://(?:www\\.)?knopper\\.net/\" to=\"https://knopper.net/\"/></ruleset>", "<ruleset name=\"Knot-DNS.cz\" f=\"Knot-DNS.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knowledge Blog.org\" default_off=\"missing certificate chain\" f=\"Knowledge_Blog.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kobo (partial)\" f=\"Kobo.xml\"><exclusion pattern=\"^http://(?:www\\.)?kobobooks\\.com/(?!Etc/frameresize\\.htm)\"/><exclusion pattern=\"^http://(?:securestage[24]|stage[36])\\.kobobooks\\.pt/\"/><securecookie host=\"^\\.(?:ptbr|www)\\.kobo\\.com$\" name=\".+\"/><securecookie host=\"^\\.kobobooks\\.com$\" name=\"^(?:tracking|__utm\\w)$\"/><securecookie host=\"^(?!ptbr\\.|wwwt?\\.)\\w+\\.kobobooks\\.com$\" name=\".+\"/><securecookie host=\"^\\.kobobooks\\.\\w\\w$\" name=\"^tracking$\"/><securecookie host=\"^s(?:ecure(?:stage\\d?|t)|tage[36]?)\\.kobobooks\\.\\w\\w$\" name=\".+\"/><rule from=\"^http://kobo\\.com/\" to=\"https://www.kobo.com/\"/><rule from=\"^http://(assets|ptbr|www)\\.kobo\\.com/\" to=\"https://$1.kobo.com/\"/><rule from=\"^http://((?:akimagest?|assets|ecimagest|merch|(?:ptbr)?secure|securestage\\d?|stage)\\.)?kobobooks\\.com/\" to=\"https://$1kobobooks.com/\"/><rule from=\"^http://(?:ec)?images\\.kobobooks\\.com/\" to=\"https://images.kobobooks.com/\"/><rule from=\"^http://s(ecure(?:stage[2456]?|t)?|tage[36]?)\\.kobobooks\\.(\\w\\w)/\" to=\"https://s$1.kobobooks.$2/\"/><rule from=\"^http://stage2\\.kobobooks\\.(fr|es)/(default\\.aspx)?(\\?.*)?$\" to=\"https://stage2.kobobooks.$1/$2$3\"/></ruleset>", "<ruleset name=\"Kochava.com (partial)\" f=\"Kochava.com.xml\"><securecookie host=\"^(?:www)?\\.kochava\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KodeRoot.net\" f=\"KodeRoot.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kodi.tv (partial)\" f=\"Kodi.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koding\" f=\"Koding.xml\"><securecookie host=\"^(?:.+\\.)?koding\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?koding\\.com/\" to=\"https://$1koding.com/\"/></ruleset>", "<ruleset name=\"Koen.io\" f=\"Koen.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koen Rouwhorst.nl\" f=\"Koen_Rouwhorst.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kohls.com\" default_off=\"failed ruleset test\" f=\"Kohls.xml\"><rule from=\"^http://kohls\\.com/\" to=\"https://www.kohls.com/\"/><rule from=\"^http://www\\.kohls\\.com/\" to=\"https://www.kohls.com/\"/></ruleset>", "<ruleset name=\"Koinify.com\" f=\"Koinify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kokousalusta\" default_off=\"failed ruleset test\" f=\"Kokousalusta.xml\"><securecookie host=\"^(?:www\\.)?kokousalusta\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kolab.org (partial)\" f=\"Kolab.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KolabSys.com\" f=\"KolabSys.com.xml\"><securecookie host=\"^\\.kolabsys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kolab Now.com\" f=\"Kolab_Now.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koldfront.dk\" f=\"Koldfront.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kolektiva.com\" f=\"Kolektiva.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kollegorna.se\" f=\"Kollegorna.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kommaer.dk\" f=\"Kommaer.dk.xml\"><rule from=\"^http://(www\\.)?kommaer\\.dk/\" to=\"https://kommaer.dk/\"/></ruleset>", "<ruleset name=\"Komments.net\" f=\"Komments.net.xml\"><securecookie host=\"^(?:www\\.)?komments\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kommunal.se\" f=\"Kommunal.se.xml\"><rule from=\"^http://kommunal\\.se/\" to=\"https://www.kommunal.se/\"/><rule from=\"^http://www\\.kommunal\\.se/\" to=\"https://www.kommunal.se/\"/></ruleset>", "<ruleset name=\"Komoona.com (partial)\" f=\"Komoona.com.xml\"><exclusion pattern=\"^http://www\\.komoona\\.com/+(?!favicon\\.ico|new/css/|new/images/)\"/><securecookie host=\"^(?:a|stat)\\.komoona\\.com$\" name=\".+\"/><rule from=\"^http://((?:a|admin|stat|www)\\.)?komoona\\.com/\" to=\"https://$1komoona.com/\"/><rule from=\"^http://cdn\\.komoona\\.com/\" to=\"https://dimrh7ecexr02.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Kompany.com\" f=\"Kompany.com.xml\"><securecookie host=\"^www\\.kompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Komplett.no\" f=\"Komplett.xml\"><rule from=\"^http://(?:www\\.)?komplett\\.no/\" to=\"https://www.komplett.no/\"/></ruleset>", "<ruleset name=\"Kabel Rosenheim\" f=\"Komro.net.xml\"><rule from=\"^http://www\\.komro\\.net/\" to=\"https://www.komro.net/\"/></ruleset>", "<ruleset name=\"Konachan.com\" f=\"Konachan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konami-Korea.kr\" default_off=\"failed ruleset test\" f=\"Konami-Korea.kr.xml\"><securecookie host=\"^(?:www\\.)?konami-korea\\.kr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?konami-korea\\.kr/\" to=\"https://www.konami-korea.kr/\"/></ruleset>", "<ruleset name=\"Konami.com\" f=\"Konami.com.xml\"><rule from=\"^http://konami\\.com/\" to=\"https://www.konami.com/\"/><rule from=\"^http://www\\.konami\\.com/\" to=\"https://www.konami.com/\"/></ruleset>", "<ruleset name=\"Kondor.co.uk (partial)\" f=\"Kondor.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KongCDN.com\" f=\"KongCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kongregate.com (partial)\" f=\"Kongregate.com.xml\"><exclusion pattern=\"^http://developers\\.kongregate.com/+(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://www\\.kongregate.com/+(?!favicon\\.ico|forums/\\d+-[\\w-]+|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"konklone.com\" f=\"Konklone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konstfack.se\" platform=\"mixedcontent\" f=\"Konstfack.se.xml\"><rule from=\"^http://konstfack\\.se/\" to=\"https://www.konstfack.se/\"/><rule from=\"^http://www\\.konstfack\\.se/\" to=\"https://www.konstfack.se/\"/></ruleset>", "<ruleset name=\"Kontalk\" f=\"Kontalk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kontera (partial)\" f=\"Kontera.xml\"><securecookie host=\"^(?:\\.?publishers)?\\.kona\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konto API\" f=\"Konto_API.xml\"><securecookie host=\"^(?:www)?\\.kontoapi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kopiosto\" default_off=\"failed ruleset test\" f=\"Kopiosto.xml\"><rule from=\"^http://(?:www\\.)?kopiosto\\.fi/\" to=\"https://www.kopiosto.fi/\"/><rule from=\"^http://serv3\\.kopiosto\\.fi/\" to=\"https://serv3.kopiosto.fi/\"/></ruleset>", "<ruleset name=\"Korbit.co.kr\" f=\"Korbit.co.kr.xml\"><securecookie host=\"^\\.korbit\\.co\\.kr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kore.io\" f=\"Kore.io.xml\"><rule from=\"^http://(?:www\\.)?kore\\.io/\" to=\"https://kore.io/\"/></ruleset>", "<ruleset name=\"KoreLogic.com\" f=\"KoreLogic-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koreatimes\" default_off=\"Certificate expired\" f=\"Koreatimes.co.kr.xml\"><rule from=\"^http://www\\.koreatimes\\.co\\.kr/\" to=\"https://www.koreatimes.co.kr/\"/></ruleset>", "<ruleset name=\"Korn Design\" default_off=\"mismatch\" f=\"Korn-Design.xml\"><rule from=\"^http://(?:www\\.)?korndesign\\.com/\" to=\"https://korndesign.com/\"/></ruleset>", "<ruleset name=\"Kornerstone Admin.com\" default_off=\"failed ruleset test\" f=\"Kornerstone_Admin.com.xml\"><securecookie host=\"^kornerstoneadmin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kornerstoneadmin\\.com/\" to=\"https://kornerstoneadmin.com/\"/></ruleset>", "<ruleset name=\"Korora Project.org\" f=\"Korora_Project.org.xml\"><rule from=\"^http://www\\.kororaproject\\.org/\" to=\"https://kororaproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Korruption.dk\" f=\"Korruption.dk.xml\"><rule from=\"^http://(www\\.)?korruption\\.dk/\" to=\"https://korruption.dk/\"/></ruleset>", "<ruleset name=\"Kosimak.com\" default_off=\"self-signed\" f=\"Kosimak.com.xml\"><securecookie host=\"^www\\.kosimak\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kosimak\\.com/\" to=\"https://www.kosimak.com/\"/></ruleset>", "<ruleset name=\"Kotaku.com\" default_off=\"mismatched\" f=\"Kotaku.com.xml\"><securecookie host=\"^\\.?kotaku\\.com$\" name=\".+\"/><rule from=\"^http://(?:(cache\\.)|www\\.)?kotaku\\.com/\" to=\"https://$1kotaku.com/\"/></ruleset>", "<ruleset name=\"Kotex\" default_off=\"failed ruleset test\" f=\"Kotex.xml\"><rule from=\"^http://(?:www\\.)?kotex\\.com/\" to=\"https://www.kotex.com/\"/><rule from=\"^http://dare\\.kotex\\.com/\" to=\"https://dare.kotex.com/\"/></ruleset>", "<ruleset name=\"Kotte-zeller.de\" f=\"Kotte-zeller.de.xml\"><rule from=\"^http://(?:www\\.)?kotte-zeller\\.de/\" to=\"https://www.kotte-zeller.de/\"/></ruleset>", "<ruleset name=\"Kotulas.com\" f=\"Kotulas.com.xml\"><securecookie host=\"^www\\.kotulas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kotulas\\.com/\" to=\"https://www.kotulas.com/\"/></ruleset>", "<ruleset name=\"Kouio.com\" f=\"Kouio.com.xml\"><securecookie host=\"^kouio\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kouio\\.com/\" to=\"https://kouio.com/\"/></ruleset>", "<ruleset name=\"Koumbit.net\" f=\"Koumbit.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?koumbit\\.net/+\" to=\"https://www.koumbit.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koumbit.org\" f=\"Koumbit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kovidgoyal.net\" default_off=\"self-signed\" f=\"Kovidgoyal.net.xml\"><rule from=\"^http://(?:www\\.)?kovidgoyal\\.net/\" to=\"https://www.kovidgoyal.net/\"/></ruleset>", "<ruleset name=\"Koz.io\" f=\"Koz.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kpopstage.co\" f=\"Kpopstage.co.xml\"><rule from=\"^http://kpopstage\\.co/\" to=\"https://www.attictv.com/\"/></ruleset>", "<ruleset name=\"kr36.co\" f=\"Kr36.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kraken.com\" f=\"Kraken.com.xml\"><securecookie host=\"^\\.kraken\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KralenStart.nl\" f=\"KralenStart.nl.xml\"><securecookie host=\"^\\.kralenstart\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krautchan\" default_off=\"self-signed\" f=\"Krautchan.xml\"><rule from=\"^http://(?:www\\.)?krautchan\\.net/\" to=\"https://krautchan.net/\"/></ruleset>", "<ruleset name=\"kraxel.org\" f=\"Kraxel.org.xml\"><rule from=\"^http://(?:www\\.)?kraxel\\.org/\" to=\"https://www.kraxel.org/\"/></ruleset>", "<ruleset name=\"Kreativ Media (partial)\" f=\"Kreativ_Media.xml\"><securecookie host=\"^secure\\.kreativmedia\\.ch$\" name=\".+\"/><rule from=\"^http://secure\\.kreativmedia\\.ch/\" to=\"https://secure.kreativmedia.ch/\"/></ruleset>", "<ruleset name=\"Kreatív Vonalak\" f=\"Kreativvonalak.xml\"><rule from=\"^http://www\\.kreativvonalak\\.hu/\" to=\"https://www.kreativvonalak.hu/\"/></ruleset>", "<ruleset name=\"Krebs on Security.com (partial, broken MCB)\" platform=\"mixedcontent\" f=\"KrebsOnSecurity.com.xml\"><securecookie host=\"^(?:www\\.)?krebsonsecurity\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krebsdaten.de\" f=\"Krebsdaten.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KriminalVarden.se\" platform=\"mixedcontent\" f=\"Kriminalvarden.se.xml\"><rule from=\"^http://www\\.kriminalvarden\\.se/\" to=\"https://www.kriminalvarden.se/\"/><rule from=\"^http://kriminalvarden\\.se/\" to=\"https://www.kriminalvarden.se/\"/></ruleset>", "<ruleset name=\"Krisostomus\" f=\"Krisostomus.xml\"><securecookie host=\"^m?\\.kriso\\.ee$\" name=\".+\"/><rule from=\"^http://(m\\.|www\\.)?kriso\\.ee/\" to=\"https://$1kriso.ee/\"/><rule from=\"^http://(?:www\\.)?kriso\\.lv/\" to=\"https://www.kriso.lv/\"/><rule from=\"^http://m\\.kriso\\.l(t|v)/\" to=\"https://m.kriso.l$1/\"/></ruleset>", "<ruleset name=\"Krita.org\" f=\"Krita.org.xml\"><securecookie host=\"^krita\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krux Digital.com\" f=\"Krux-Digital.xml\"><securecookie host=\"^dataconsole\\.kruxdigital\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KrxD.net\" f=\"KrxD.net.xml\"><securecookie host=\"^\\.krxd\\.net$\" name=\"(?:_kuid_|ServedBy)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kryo.se (partial)\" default_off=\"expired, self-signed\" f=\"Kryo.se.xml\"><securecookie host=\"^dev\\.kryo\\.se$\" name=\".+\"/><rule from=\"^http://(?:(dev\\.)|www\\.)?kryo\\.se/\" to=\"https://$1kryo.se/\"/><rule from=\"^http://mail\\.kryo\\.se/.*\" to=\"https://mail.google.com/a/kryo.se\"/></ruleset>", "<ruleset name=\"Kryptnostic.com\" f=\"Kryptnostic.com.xml\"><securecookie host=\"^\\.kryptnostic\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.kryptnostic\\.com/\" to=\"https://www.kryptnostic.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptologika.com\" f=\"Kryptologika.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptos.sh\" f=\"Kryptos.sh.xml\"><securecookie host=\"^kryptos\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptosfera.pl\" f=\"Kryptosfera.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptronic (mismatches)\" default_off=\"mismatch\" f=\"Kryptronic-mismatches.xml\"><securecookie host=\"^forum\\.kryptronic\\.com$\" name=\".*\"/><rule from=\"^http://forum\\.kryptronic\\.com/\" to=\"https://forum.kryptronic.com/\"/></ruleset>", "<ruleset name=\"Kryptronic (partial)\" f=\"Kryptronic.xml\"><exclusion pattern=\"^http://(?:forum|wiki)\\.\"/><securecookie host=\"^(?:.*\\.)?kryptronic\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?kryptronic\\.com/\" to=\"https://$1kryptronic.com/\"/></ruleset>", "<ruleset name=\"Krystal.co.uk\" f=\"Krystal_Hosting.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KsięgarniaWarszawa.pl\" f=\"KsiegarniaWarszawa.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ksplice (partial)\" default_off=\"failed ruleset test\" f=\"Ksplice.xml\"><securecookie host=\"^.*\\.ksplice\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kuantokusta.pt\" platform=\"mixedcontent\" default_off=\"mismatch\" f=\"Kuantokusta.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kubieziel.de\" platform=\"cacert\" f=\"Kubieziel.de.xml\"><securecookie host=\"^(?:www\\.)?kubieziel\\.de$$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kubuntu.org (partial)\" f=\"Kubuntu.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bugs\\.kubuntu\\.org/[^?]*\" to=\"https://launchpad.net/distros/ubuntu/+bugs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kubuntu Forums.net\" f=\"Kubuntu_Forums.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kudelski Security.com\" f=\"Kudelski_Security.xml\"><securecookie host=\"^\\.kudelskisecurity\\.com$\" name=\".+\"/><rule from=\"^http://kudelskisecurity\\.com/\" to=\"https://www.kudelskisecurity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kuix.de\" f=\"Kuix.de.xml\"><securecookie host=\"^(?:www\\.)?kuix\\.de$\" name=\".+\"/><rule from=\"^http://sha2\\.kuix\\.de/+(?:\\?.*)?$\" to=\"https://kuix.de/abi90/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kulcs-soft.hu\" f=\"Kulcs-soft.hu.xml\"><rule from=\"^http://(?:www\\.)?kulcs-soft\\.hu/\" to=\"https://www.kulcs-soft.hu/\"/></ruleset>", "<ruleset name=\"KU Leuven.be (false MCB)\" platform=\"mixedcontent\" f=\"Kuleuven.be-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kum.com\" f=\"Kum.com.xml\"><securecookie host=\"^(?:www\\.)?kum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kumu.io (partial)\" f=\"Kumu.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kung Fu Nation.com\" default_off=\"mismatched\" f=\"Kung-Fu-Store.xml\"><securecookie host=\"^www\\.kungfunation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kununu (partial)\" f=\"Kununu.xml\"><rule from=\"^http://(www\\.)?kununu\\.com/(?=(?:bewerten|info|login|meinkununu|register|user/(?:login|logout))(?:$|[?/])|css/|favicon\\.ico|index/captcha/|sc\\.css)\" to=\"https://$1kununu.com/\"/><rule from=\"^http://cf\\.kununu\\.com/\" to=\"https://dt75rt3oyihg4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"kuonamaoni.com\" default_off=\"expired\" f=\"Kuonamaoni.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KuppingerCole.com\" f=\"KuppingerCole.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kura.io\" default_off=\"connection dropped\" f=\"Kura.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kurly.fr\" default_off=\"failed ruleset test\" f=\"Kurly.fr.xml\"><securecookie host=\"^(?:www)?\\.kurly\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kuro5hin.org\" f=\"Kuro5hin.xml\"><rule from=\"^http://kuro5hin\\.org/\" to=\"https://www.kuro5hin.org/\"/><rule from=\"^http://www\\.kuro5hin\\.org/\" to=\"https://www.kuro5hin.org/\"/></ruleset>", "<ruleset name=\"Kursbuero.de (partial)\" f=\"Kursbuero.de.xml\"><rule from=\"^http://medienberufe-sde\\.kursbuero\\.de/\" to=\"https://medienberufe-sde.kursbuero.de/\"/></ruleset>", "<ruleset name=\"Kuruc.info\" f=\"Kuruc.info.xml\"><rule from=\"^http://(m\\.)?(?:kuruc\\.info|w\\.kuruc\\.org)/\" to=\"https://$1kuruc.info/\"/></ruleset>", "<ruleset name=\"Kuther.net\" f=\"Kuther.net.xml\"><rule from=\"^http://(?:www\\.)?kuther\\.net/\" to=\"https://kuther.net/\"/></ruleset>", "<ruleset name=\"Kvack.org\" default_off=\"expired, self-signed\" f=\"Kvack.org.xml\"><rule from=\"^http://(?:www\\.)?kvack\\.org/\" to=\"https://kvack.org/\"/></ruleset>", "<ruleset name=\"KwikSurveys\" f=\"KwikSurveys.xml\"><securecookie host=\"^www\\.kwiksurveys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyani.net\" default_off=\"failed ruleset test\" f=\"Kyani.net.xml\"><securecookie host=\"^\\.kyani\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/\\??$\" to=\"https://eu.kyani.net/public/eu/en/main\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/\\?(.+)\" to=\"https://eu.kyani.net/public/eu/en/main?$1=\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/([^?]+)\\??$\" to=\"https://eu.kyani.net/$1\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/([^?]+\\?.+)\" to=\"https://eu.kyani.net/$1=\"/><rule from=\"^http://eu\\.kyani\\.net/\" to=\"https://eu.kyani.net/\"/></ruleset>", "<ruleset name=\"Kyberia.sk\" f=\"Kyberia.sk.xml\"><rule from=\"^http://(?:www\\.)?kyberia\\.sk/\" to=\"https://kyberia.sk/\"/></ruleset>", "<ruleset name=\"Kyhwana.org\" f=\"Kyhwana.org.xml\"><rule from=\"^http://(?:www\\.)?kyhwana\\.org/\" to=\"https://kyhwana.org/\"/></ruleset>", "<ruleset name=\"Kyiv Post.com\" f=\"Kyiv_Post.com.xml\"><securecookie host=\"^www\\.kyivpost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyle Isom.net\" f=\"Kyle_Isom.net.xml\"><securecookie host=\"^\\.kyleisom\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyn.me\" f=\"Kyn.me.xml\"><rule from=\"^http://www\\.kyn\\.me/.*\" to=\"https://kyn.me/\"/><rule from=\"^http://kyn\\.me/\" to=\"https://kyn.me/\"/></ruleset>", "<ruleset name=\"Kyoto-U.ac.jp (partial)\" f=\"Kyoto-U.ac.jp.xml\"><rule from=\"^http://www\\.cira\\.kyoto-u\\.ac\\.jp/\" to=\"https://www.cira.kyoto-u.ac.jp/\"/></ruleset>", "<ruleset name=\"L-auto-entrepreneur.org\" f=\"L-auto-entrepreneur.org.xml\"><securecookie host=\"^(?:w*\\.)?l-auto-entrepreneur\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"L.de\" f=\"L.de.xml\"><securecookie host=\"^(www\\.)?l\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0cal.com (CAcert)\" platform=\"cacert\" f=\"L0cal.com-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0cal.com (partial)\" f=\"L0cal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0g.us\" f=\"L0g.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Local 20/20\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"L2020.xml\"><rule from=\"^http://(?:www\\.)?l2020\\.org/\" to=\"https://l2020.org/\"/></ruleset>", "<ruleset name=\"L2C\" default_off=\"failed ruleset test\" f=\"L2C.xml\"><securecookie host=\"^(?:www\\.)?l2c\\.co\\.kr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LANsquared\" default_off=\"expired, mismatch\" f=\"LANsquared.xml\"><securecookie host=\"^webmail\\.lansquared\\.com$\" name=\".*\"/><rule from=\"^http://(?:(webmail\\.)|www\\.)?lansquared\\.com/\" to=\"https://$1lansquared.com/\"/></ruleset>", "<ruleset name=\"LBHF.gov.uk (partial)\" f=\"LBHF.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LBL.gov (partial)\" f=\"LBL.gov.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http://wwwdev\\.lbl\\.gov/\" to=\"https://www.lbl.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LCHost\" f=\"LCHost.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEAP.se\" f=\"LEAP.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEGO.com (partial)\" f=\"LEGO.xml\"><exclusion pattern=\"^http://club\\.lego\\.com/(?!en-us/join/magazinesubscription)\"/><exclusion pattern=\"^http://education\\.lego\\.com/(?!\\w\\w-\\w\\w/[\\w-]+/|Design/|WebResource\\.axd)\"/><exclusion pattern=\"^http://shop.lego.com/(?!VIP/modal/vipLearnMoreModal\\.jsp)\"/><securecookie host=\"^(?:aboutus|account2?|services\\.account|assets|rebrick)\\.lego\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LESS\" default_off=\"mismatch\" f=\"LESS.xml\"><rule from=\"^http://(?:www\\.)?lesscss\\.org/\" to=\"https://lesscss.org/\"/></ruleset>", "<ruleset name=\"LEspace client.fr\" f=\"LEspace_client.fr.xml\"><securecookie host=\"^(?:www\\.)?lespaceclient\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LExpress.fr (partial)\" f=\"LExpress.fr.xml\"><securecookie host=\"^\\.boutique\\.lexpress\\.fr$\" name=\".+\"/><rule from=\"^http://(media-|skin-)?boutique\\.lexpress\\.fr/\" to=\"https://$1boutique.lexpress.fr/\"/></ruleset>", "<ruleset name=\"LFAIT.com\" default_off=\"failed ruleset test\" f=\"LFAIT.com.xml\"><securecookie host=\"^lfait\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lfait\\.com/\" to=\"https://lfait.com/\"/></ruleset>", "<ruleset name=\"LFC Hosting\" default_off=\"failed ruleset test\" f=\"LFC-Hosting.xml\"><securecookie host=\"^.+\\.lfchosting\\.com$\" name=\".+\"/><rule from=\"^http://(?:208\\.68\\.106\\.8|webmail\\.lfchosting\\.com)/\" to=\"https://208.68.106.8/\"/><rule from=\"^http://(?:((?:account|cp|demo)\\.)|www\\.)?lfchosting\\.com/\" to=\"https://$1lfchosting.com/\"/></ruleset>", "<ruleset name=\"LFGSS.com\" f=\"LFGSS.com.xml\"><securecookie host=\"^www\\.lfgss\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LF Hair.com (partial)\" f=\"LF_Hair.com.xml\"><securecookie host=\"^\\.www\\.lfhair\\.com$\" name=\"^RefererCookie$\"/><rule from=\"^http://(www\\.)?lfhair\\.com/(?=assets/|cdn-cgi/|favicon\\.ico|html/|xcart/customer/(?:cart|register)\\.php|xcart_images/)\" to=\"https://$1lfhair.com/\"/></ruleset>", "<ruleset name=\"LFov.net\" default_off=\"failed ruleset test\" f=\"LFov.net.xml\"><securecookie host=\"^(?:www\\.)?lfov\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LG.com (partial)\" f=\"LG.com.xml\"><exclusion pattern=\"^http://www(?:stg)?\\.lg\\.com/(?!\\w\\w/(?:css|foresee|images|js)/|favicon\\.ico|lg3-common(?:-v2)?/)\"/><securecookie host=\"^\\.lg\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><securecookie host=\"^admin\\.cms\\.lg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LINBIT (false MCB)\" platform=\"mixedcontent\" f=\"LINBIT.com-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?linbit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LINBIT (partial)\" f=\"LINBIT.xml\"><exclusion pattern=\"^http://(?:www\\.)?linbit\\.com/+(?!components/|favicon\\.ico|images/|libraries/|modules/|plugins/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LINCS.fr\" f=\"LINCS.fr.xml\"><rule from=\"^http://(?:www\\.)?lincs\\.fr/\" to=\"https://www.lincs.fr/\"/></ruleset>", "<ruleset name=\"LINGUIST List (partial)\" f=\"LINGUIST-List.xml\"><securecookie host=\"^linguistlist\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?linguistlist\\.org/\" to=\"https://linguistlist.org/\"/></ruleset>", "<ruleset name=\"LIS.gov\" f=\"LIS.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LIU.se (false MCB)\" platform=\"mixedcontent\" f=\"LIU.se-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www3\\.bibl\\.liu\\.se/\" to=\"https://www2.bibl.liu.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LIU.se (partial)\" f=\"LIU.se.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.moviii\\.isy|moviii)\\.liu\\.se/\" to=\"https://moviii.isy.liu.se/\"/><rule from=\"^http://www\\.vehicular\\.isy\\.liu\\.se/\" to=\"https://www.fs.isy.liu.se/\"/><rule from=\"^http://planet\\.lysator\\.liu\\.se/+\" to=\"https://www.lysator.liu.se/planet/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LI CDN.com (partial)\" f=\"LI_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LKD.org.tr (partial)\" default_off=\"expired, self-signed\" f=\"LKD.org.tr.xml\"><rule from=\"^http://(?:www\\.)?lkd\\.org\\.tr/\" to=\"https://www.lkd.org.tr/\"/></ruleset>", "<ruleset name=\"LKML.org\" f=\"LKML.xml\"><securecookie host=\"^lkml\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LK Mart\" default_off=\"expired\" f=\"LK_Mart.xml\"><securecookie host=\"^\\.lkmart\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lkmart\\.com\\.au/\" to=\"https://www.lkmart.com.au/\"/></ruleset>", "<ruleset name=\"LLS.org (partial)\" f=\"LLS.org.xml\"><securecookie host=\"^(?:community|donate|www)\\.lls\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LLVM.org (partial)\" f=\"LLVM.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?llvm\\.org/+(?!bugs/|svn/)\"/><rule from=\"^http://(?:www\\.)?llvm\\.org/\" to=\"https://llvm.org/\"/></ruleset>", "<ruleset name=\"LM Uni Muenchen\" f=\"LMU-Muenchen.xml\"><securecookie host=\".*\\.uni-muenchen\\.de$\" name=\".+\"/><rule from=\"^http://(cms-static|www\\.en|(?:login|www)\\.portal|www)\\.uni-muenchen\\.de/\" to=\"https://$1.uni-muenchen.de/\"/></ruleset>", "<ruleset name=\"LNTECC.com\" f=\"LNTECC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LONAP\" f=\"LONAP.xml\"><rule from=\"^http://lonap\\.net/\" to=\"https://www.lonap.net/\"/><rule from=\"^http://([^/:@]+)?\\.lonap\\.net/\" to=\"https://$1.lonap.net/\"/></ruleset>", "<ruleset name=\"LPAC.co.uk\" f=\"LPAC.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LPI.org\" f=\"LPI.org.xml\"><securecookie host=\"^cs\\.lpi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LPICE.eu\" platform=\"cacert\" f=\"LPICE.eu.xml\"><securecookie host=\"^www\\.lpice\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LPO.org.uk (partial)\" f=\"LPO.org.uk.xml\"><rule from=\"^http://(www\\.)?lpo\\.org\\.uk/(?=components/|images/|register/create-new-account\\.html|sign-in\\.html|templates/)\" to=\"https://$1lpo.org.uk/\"/></ruleset>", "<ruleset name=\"LSBU.ac.uk (partial)\" f=\"LSBU.ac.uk.xml\"><securecookie host=\"^\\.lsbu\\.ac\\.uk$\" name=\"^(?:III_EXPT_FILE|III_SESSION_ID|SESSION_LANGUAGE)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lsbu\\.ac\\.uk/\" to=\"https://www.lsbu.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LSE.ac.uk (partial)\" f=\"LSE.ac.uk.xml\"><rule from=\"^http://(?:www\\.)?lse\\.ac\\.uk/(?=corporatePromotions/|favicon\\.ico|ImagesForExternalHomepage/|intranet/images/|(?:Script|Web)Resource\\.axd|SiteElements/|v4global/)\" to=\"https://www.lse.ac.uk/\"/></ruleset>", "<ruleset name=\"LSI.com (bad cert)\" default_off=\"Expired certificate\" f=\"LSI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lone Star Overnight\" f=\"LSO.com.xml\"><rule from=\"^http://(?:www\\.)?lso\\.com/\" to=\"https://www.lso.com/\"/></ruleset>", "<ruleset name=\"LS CDN.net\" f=\"LS_CDN.net.xml\"><rule from=\"^http://a\\.lscdn\\.net/\" to=\"https://a0.lscdn.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LTER\" default_off=\"failed ruleset test\" f=\"LTER.xml\"><exclusion pattern=\"^http://intranet2\\.lternet\\.edu/(?!misc/|modules/|sites/|(?:track|us)er(?:$|\\?|/))\"/><securecookie host=\"^metacat\\.lternet\\.edu$\" name=\".+\"/><rule from=\"^http://lternet\\.edu/\" to=\"https://www.lternet.edu/\"/><rule from=\"^http://intranet2?\\.lternet\\.edu/\" to=\"https://intranet2.lternet.edu/\"/><rule from=\"^http://(metacat|www)\\.lternet\\.edu/\" to=\"https://$1.lternet.edu/\"/></ruleset>", "<ruleset name=\"LTH.se (partial)\" f=\"LTH.se.xml\"><rule from=\"^http://lth\\.se/\" to=\"https://www.lth.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LTRADIO.com\" default_off=\"mismatched\" f=\"LTRADIO.com.xml\"><rule from=\"^http://(?:www\\.)?ltradio\\.com/\" to=\"https://www.ltradio.com/\"/></ruleset>", "<ruleset name=\"LTTng.org\" f=\"LTTng_Project.xml\"><securecookie host=\"^(?:bugs)?\\.lttng\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugs|ci|git|lists|www)\\.)?lttng\\.org/\" to=\"https://$1lttng.org/\"/></ruleset>", "<ruleset name=\"LU.se (partial)\" f=\"LU.se.xml\"><rule from=\"^http://(?:lucs\\.ht|(?:www\\.)?lucs)\\.lu\\.se/\" to=\"https://www.lucs.lu.se/\"/><rule from=\"^http://calendar\\.student\\.lu\\.se/.*\" to=\"https://www.google.com/calendar/hosted/student.lu.se\"/><rule from=\"^http://webmail\\.student\\.lu\\.se/.*\" to=\"https://mail.google.com/a/student.lu.se\"/><rule from=\"^http://webmail\\.lu\\.se/\" to=\"https://webmail.lu.se/\"/></ruleset>", "<ruleset name=\"LUGoNS.org\" f=\"LUGoNS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LUU.org.uk\" f=\"LUU.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LUV.asn.au (partial)\" default_off=\"expired, mismatched\" f=\"LUV.asn.au.xml\"><securecookie host=\"^(?:www)?\\.linux\\.org\\.au$\" name=\".+\"/><rule from=\"^http://(?:(wiki\\.)|www\\.)?luv\\.asn\\.au/\" to=\"https://$1luv.asn.au/\"/></ruleset>", "<ruleset name=\"LVOC.org\" default_off=\"missing certificate chain\" f=\"LVOC.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LWN.net\" f=\"LWN.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Quadrature du Net\" f=\"La-Quadrature-du-Net.xml\"><securecookie host=\"^\\.laquadrature\\.net$\" name=\".*\"/><securecookie host=\"^piphone\\.lqdn\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Caixa\" f=\"LaCaixa.xml\"><securecookie host=\"^(?:.*\\.)?lacaixa\\.es$\" name=\".+\"/><rule from=\"^http://lacaixa\\.es/\" to=\"https://www.lacaixa.es/\"/><rule from=\"^http://([^/:@\\.]+)\\.lacaixa\\.es/\" to=\"https://$1.lacaixa.es/\"/></ruleset>", "<ruleset name=\"LaPatilla.com\" default_off=\"failed ruleset test\" f=\"LaPatilla.com.xml\"><securecookie host=\"^(?:www\\.)?lapatilla\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?lapatilla\\.com/\" to=\"https://$1lapatilla.com/\"/><rule from=\"^http://cdn\\.lapatilla\\.com/imagenes\\.lapatilla/\" to=\"https://www.lapatilla.com/\"/></ruleset>", "<ruleset name=\"LaTeX project\" f=\"LaTeX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Cie.com\" f=\"La_Cie.com.xml\"><securecookie host=\"^(?:www)?\\.lacie\\.com$\" name=\".+\"/><rule from=\"^http://lacie\\.com/\" to=\"https://www.lacie.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Crosse Alerts.com\" f=\"La_Crosse_Alerts.com.xml\"><securecookie host=\"^www\\.lacrossealerts\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lacrossealerts\\.com/\" to=\"https://www.lacrossealerts.com/\"/></ruleset>", "<ruleset name=\"La Crosse Technology.com\" f=\"La_Crosse_Technology.com.xml\"><securecookie host=\"^\\.store\\.lacrossetechnology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Naya Chocolate\" f=\"La_Naya_Chocolate.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lab-Nation.com (partial)\" f=\"Lab-Nation.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LabCorp.com\" f=\"LabCorp.xml\"><securecookie host=\"^(?:datalink2|hypersend|www[3-4]?)\\.labcorp\\.com$\" name=\".+\"/><rule from=\"^http://labcorp\\.com/\" to=\"https://www.labcorp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LabCorp solutions.com\" f=\"LabCorp_solutions.com.xml\"><securecookie host=\"^(?:www)?\\.labcorpsolutions\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"labaia.ws (partial)\" default_off=\"failed ruleset test\" f=\"Labaia.xml\"><rule from=\"^http://(\\w+\\.)?labaia\\.ws/\" to=\"https://$1labaia.ws/\"/></ruleset>", "<ruleset name=\"Labels IG.com\" f=\"Labels_IG.com.xml\"><securecookie host=\"^\\.(?:www\\.)?labelsig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Labels by the Sheet.com (partial)\" f=\"Labels_by_the_Sheet.com.xml\"><rule from=\"^http://(www\\.)?labelsbythesheet\\.com/(?=favicon\\.ico|images/|include/)\" to=\"https://$1labelsbythesheet.com/\"/></ruleset>", "<ruleset name=\"Chevronwp7 Labs\" default_off=\"failed ruleset test\" f=\"Labs.Chevronwp7.com.xml\"><rule from=\"^http://labs\\.chevronwp7\\.com/\" to=\"https://labs.chevronwp7.com/\"/><securecookie host=\"^labs\\.chevronwp7\\.com\" name=\".*\"/></ruleset>", "<ruleset name=\"Lady Foot Locker\" f=\"Lady_Foot_Locker.xml\"><securecookie host=\"^.*\\.ladyfootlocker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ladyfootlocker\\.com/\" to=\"https://www.ladyfootlocker.com/\"/><rule from=\"^http://m\\.ladyfootlocker\\.com/\" to=\"https://m.ladyfootlocker.com/\"/></ruleset>", "<ruleset name=\"Laffster\" default_off=\"failed ruleset test\" f=\"Laffster.xml\"><securecookie host=\"^(?:www)?\\.nextstudioapps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nextstudioapps\\.com/\" to=\"https://www.nextstudioapps.com/\"/></ruleset>", "<ruleset name=\"Lagardère Publicité (partial)\" f=\"Lagardere_Publicite.xml\"><rule from=\"^http://fb\\.lagardere-pub\\.com/\" to=\"https://fb.lagardere-pub.com/\"/></ruleset>", "<ruleset name=\"Lagen.nu\" f=\"Lagen.nu.xml\"><rule from=\"^http://(?:www\\.)?lagen\\.nu/\" to=\"https://lagen.nu/\"/></ruleset>", "<ruleset name=\"lainchan.org\" f=\"Lainchan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LakeBTC.com\" f=\"LakeBTC.com.xml\"><securecookie host=\"^(?:www)?\\.lakebtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lakome.com\" default_off=\"521\" f=\"Lakome.com.xml\"><securecookie host=\"^\\.lakome\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lambda-Linux.io\" f=\"Lambda-Linux.io.xml\"><rule from=\"^http://www\\.lambda-linux\\.io/\" to=\"https://lambda-linux.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LambdaTek\" f=\"LambdaTek.xml\"><securecookie host=\"^(?:www\\.)?lambda-tek\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lambdaops.com\" f=\"Lambdaops.com.xml\"><securecookie host=\"^\\.lambdaops\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Land-der-Ideen.de\" f=\"Land-der-Ideen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Land of Bitcoin.com\" f=\"Land_of_Bitcoin.com.xml\"><securecookie host=\"^(?:www)?\\.landofbitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lands End.com\" f=\"Lands_End.com.xml\"><securecookie host=\"^\\.landsend\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?landsend\\.com/\" to=\"https://www.landsend.com/\"/><rule from=\"^http://ocs\\.landsend\\.com/\" to=\"https://ocs.landsend.com/\"/></ruleset>", "<ruleset name=\"Landscape.io (partial)\" default_off=\"failed ruleset test\" f=\"Landscape.io.xml\"><securecookie host=\"^landscape\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Landscape Photography Magazine\" f=\"LandscapePhotographyMagazine.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Landslide.com\" default_off=\"failed ruleset test\" f=\"Landslide.com.xml\"><securecookie host=\"^landslide\\.landslide\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?landslide\\.com/\" to=\"https://www.campaignercrm.com/\"/><rule from=\"^http://landslide\\.landslide\\.com/\" to=\"https://landslide.landslide.com/\"/></ruleset>", "<ruleset name=\"Landure.fr\" f=\"Landure.fr.xml\"><securecookie host=\"^howto\\.landure\\.fr$\" name=\".+\"/><rule from=\"^http://howto\\.landure\\.fr/\" to=\"https://howto.landure.fr/\"/></ruleset>", "<ruleset name=\"Langille.org (partial)\" default_off=\"failed ruleset test\" f=\"Langille.org.xml\"><rule from=\"^http://dan\\.langille\\.org/\" to=\"https://dan.langille.org/\"/></ruleset>", "<ruleset name=\"Language Perfect (partial)\" f=\"Language_Perfect.xml\"><rule from=\"^http://(?:www\\.)?languageperfect\\.co\\.nz/(.+\\.(?:jp|pn))g\" to=\"https://d1qtf3qy24bms5.cloudfront.net/$1g\"/><rule from=\"^http://(?:www\\.)?languageperfect\\.com/(.+\\.(?:jp|pn))g\" to=\"https://d177cien2ijyro.cloudfront.net/$1g\"/></ruleset>", "<ruleset name=\"langui.sh\" f=\"Langui.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lanik.us\" f=\"Lanik.us.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^forums\\.lanik\\.us$\" name=\".+\"/><securecookie host=\"^\\.lanik\\.us$\" name=\"^__cfduid$\"/></ruleset>", "<ruleset name=\"lanistaads.com (partial)\" f=\"Lanistaads.com.xml\"><rule from=\"^http://ads\\.lanistaads\\.com/\" to=\"https://d2tbmvllb55wxq.cloudfront.net/\"/><rule from=\"^http://api\\.lanistaads\\.com/ServeAd\\?AdSize=(\\d+)&SiteID=(\\w+)&Zone=(\\w+)$\" to=\"https://ads.lanistaads.com/$2/$2_$1_$3.html\"/></ruleset>", "<ruleset name=\"LankyLife\" f=\"LankyLife.xml\"><securecookie host=\"^\\.lankylife\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lansforsakringar.se\" platform=\"mixedcontent\" f=\"Lansforsakringar.se.xml\"><rule from=\"^http://www\\.lansforsakringar\\.se/\" to=\"https://www.lansforsakringar.se/\"/><rule from=\"^http://www1\\.lansforsakringar\\.se/\" to=\"https://www1.lansforsakringar.se/\"/><rule from=\"^http://lansforsakringar\\.se/\" to=\"https://www.lansforsakringar.se/\"/></ruleset>", "<ruleset name=\"Lantmateriet.se\" platform=\"mixedcontent\" f=\"Lantmateriet.se.xml\"><rule from=\"^http://www\\.lantmateriet\\.se/\" to=\"https://www.lantmateriet.se/\"/><rule from=\"^http://lantmateriet\\.se/\" to=\"https://www.lantmateriet.se/\"/></ruleset>", "<ruleset name=\"Lanyrd\" f=\"Lanyrd.xml\"><rule from=\"^http://(www\\.)?lanyrd\\.com/s(ignin|tatic/)\" to=\"https://$1lanyrd.com/$2\"/><rule from=\"^http://static\\.lanyrd\\.net/\" to=\"https://s3.amazonaws.com/static.lanyrd.net/\"/></ruleset>", "<ruleset name=\"Laprox Sites\" default_off=\"failed ruleset test\" f=\"Laprox_Sites.xml\"><securecookie host=\"^support\\.laprox.com$\" name=\".+\"/><securecookie host=\"^laproxsites\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?laprox(?:sites)?\\.com/\" to=\"https://laproxsites.com/\"/><rule from=\"^http://support\\.laprox\\.com/\" to=\"https://support.laprox.com/\"/></ruleset>", "<ruleset name=\"Laptop.hu\" default_off=\"failed ruleset test\" f=\"Laptop.hu.xml\"><securecookie host=\"^laptop\\.hu$\" name=\".+\"/><rule from=\"^http://(?:www\\.|regi\\.)?(?:l[ae]ptop(?:online|lap)?|notebook(?:nagy|\\-?kis)ker|onlinenotebook|palmshop)\\.hu/\" to=\"https://laptop.hu/\"/><rule from=\"^http://gfxpro\\.hu/\" to=\"https://gfxpro.hu/\"/></ruleset>", "<ruleset name=\"Laravel-News.com\" f=\"Laravel-News.com.xml\"><securecookie host=\"^www\\.laravel-news\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laravel.com\" f=\"Laravel.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Larry Salibra.com\" f=\"Larry_Salibra.com.xml\"><securecookie host=\"^\\.larrysalibra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Las Vegas Management\" default_off=\"expired\" f=\"Las-Vegas-Management.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Las Vegas Review-Journal (partial)\" default_off=\"failed ruleset test\" f=\"Las_Vegas_Review-Journal.xml\"><securecookie host=\"^\\.reviewjournal\\.com$\" name=\"^UnicaNIODID$\"/><securecookie host=\"^(?:myrjnewsstand|www)\\.reviewjournal\\.com$\" name=\".+\"/><rule from=\"^http://oneday\\.lvrj\\.com/\" to=\"https://oneday.lvrj.com/\"/><rule from=\"^http://(?:www\\.)?reviewjournal\\.com/\" to=\"https://www.reviewjournal.com/\"/><rule from=\"^http://myrjnewsstand\\.reviewjournal\\.com/\" to=\"https://myrjnewsstand.reviewjournal.com/\"/><rule from=\"^http://obits\\.reviewjournal\\.com/(favicon\\.ico|Obituaries/(?:AffiliateAdvertisement\\.axd|AffiliateArtwork\\.axd|_(?:cs|j)s/)|obituaries/lvrj/(?:Images/|ObitsTileCorner\\.axd|scripts/)|sites/)\" to=\"https://www.legacy.com/$1\"/></ruleset>", "<ruleset name=\"lasallehs.net\" f=\"Lasallehs.net.xml\"><securecookie host=\".*\\.lasallehs\\.net\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Last.fm (buggy)\" default_off=\"breaks streaming\" f=\"Last.fm.xml\"><rule from=\"^http://last\\.fm/\" to=\"https://www.last.fm/\"/><rule from=\"^http://www\\.last\\.fm/(?=join|login|settings/lost(?:password|username))\" to=\"https://www.last.fm/\"/><rule from=\"^http://cdn\\.la?st\\.fm/\" to=\"https://www.last.fm/static/\"/></ruleset>", "<ruleset name=\"LastPass.com\" f=\"LastPass.xml\"><securecookie host=\"^(?:.+\\.)?lastpass\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lastlog.de\" f=\"Lastlog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lastminute.com (partial)\" f=\"Lastminute.xml\"><securecookie host=\"^(?:car-hire|\\.www\\.(?:es|fr|it)|holidays|\\.www)?\\.lastminute\\.com$\" name=\".+\"/><rule from=\"^http://(es\\.|fr\\.|it\\.)?lastminute\\.com/\" to=\"https://www.$1lastminute.com/\"/><rule from=\"^http://www\\.carhire\\.lastminute\\.com/+\" to=\"https://car-hire.lastminute.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laughing Squid (partial)\" f=\"Laughing-Squid.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.laughingsquid\\.us/\" to=\"https://laughingsquid.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaunchKit.io (partial)\" f=\"LaunchKit.io.xml\"><securecookie host=\"^launchkit\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaunchRock (partial)\" f=\"LaunchRock.xml\"><exclusion pattern=\"^http://(?:app|hbtrk|hummingbird|support|www)\\.\"/><securecookie host=\"^app\\.launchrock\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.launchrock\\.com/\" to=\"https://launchrock.wpengine.com/\"/><rule from=\"^http://(\\w+)\\.launchrock\\.com/\" to=\"https://$1.launchrock.com/\"/></ruleset>", "<ruleset name=\"Launchpad\" f=\"Launchpad.xml\"><exclusion pattern=\"^http://feeds\\.launchpad\\.net/(?!$)\"/><exclusion pattern=\"^http://ppa\\.launchpad\\.net/\"/><securecookie host=\"^(?:.*\\.)?launchpad\\.net$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?launchpadlibrarian\\.net$\" name=\".+\"/><exclusion pattern=\"^http://blog\\.launchpad\\.net/\"/><exclusion pattern=\"^http://news\\.launchpad\\.net/\"/><rule from=\"^http://bazaar\\.launchpad\\.net/$\" to=\"https://launchpad.net/\"/><rule from=\"^http://feeds\\.launchpad\\.net/$\" to=\"https://help.launchpad.net/Feeds\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laup\" default_off=\"failed ruleset test\" f=\"Laup.xml\"><securecookie host=\"^\\.laup\\.nu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lautre.net admin and webmail area\" default_off=\"failed ruleset test\" f=\"Lautre.net.xml\"><rule from=\"^http://admin\\.lautre\\.net/(admin|rc)/\" to=\"https://admin.lautre.net/$1/\"/></ruleset>", "<ruleset name=\"Lavabit\" default_off=\"revoked\" f=\"Lavabit.xml\"><securecookie host=\"^(?:.+\\.)?lavabit\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavaboom.com\" f=\"Lavaboom.com.xml\"><securecookie host=\"^technical\\.lavaboom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavasoft (broken)\" default_off=\"https gone\" f=\"Lavasoft.com.xml\"><rule from=\"^http://lavasoft\\.com/\" to=\"https://secure.lavasoft.com/\"/><rule from=\"^http://www\\.lavasoft\\.com/\" to=\"https://secure.lavasoft.com/\"/></ruleset>", "<ruleset name=\"Laverna\" f=\"Laverna.xml\"><rule from=\"^http://(?:www\\.)?laverna\\.cc/\" to=\"https://laverna.cc/\"/></ruleset>", "<ruleset name=\"LawGeex.com (partial)\" f=\"LawGeex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Law Business Research CDN (partial)\" f=\"Law_Business_Research_CDN.xml\"><rule from=\"^http://s3\\.lbrcdn\\.net(?:\\.s3-external-3\\.amazonaws\\.com)?/\" to=\"https://s3-eu-west-1.amazonaws.com/s3.lbrcdn.net/\"/></ruleset>", "<ruleset name=\"Law School Admission Council (partial)\" f=\"Law_School_Admission_Council.xml\"><securecookie host=\"^.+\\.lsac\\.org$\" name=\".+\"/><rule from=\"^http://(llm|lsaclookup|os)\\.lsac\\.org/\" to=\"https://$1.lsac.org/\"/></ruleset>", "<ruleset name=\"LawBlog.de\" f=\"Lawblog.de.xml\"><rule from=\"^http://(?:www\\.)?lawblog\\.de/\" to=\"https://www.lawblog.de/\"/></ruleset>", "<ruleset name=\"Lawn & Landscape\" f=\"Lawn_and_Landscape.xml\"><securecookie host=\"^www\\.lawnandlandscape\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lawnandlandscape\\.com/\" to=\"https://www.lawnandlandscape.com/\"/></ruleset>", "<ruleset name=\"LLNL.gov\" f=\"Lawrence-Livermore-National-Laboratory.xml\"><exclusion pattern=\"^http://(?:careers-ext|computation|frontrange|hpcinnovationcenter|rzlc|students)\\.llnl\\.gov/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LayerBNC.org\" f=\"LayerBNC.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Layne Publications\" default_off=\"failed ruleset test\" f=\"Layne_Publications.xml\"><securecookie host=\"^\\.www\\.laynepublications\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LazyCoins.com\" f=\"LazyCoins.com.xml\"><securecookie host=\"^\\.lazycoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lazy Kush\" f=\"Lazy_Kush.xml\"><securecookie host=\"^(?:w*\\.)?lazykush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lb.ca\" f=\"Lb.ca.xml\"><securecookie host=\"^(?:www\\.)?lb\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LboroAcUk\" f=\"LboroAcUk.xml\"><exclusion pattern=\"^http://lumen\\.lboro\\.ac\\.uk/+(?!css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?:alumni|bestmaths|cash-plus|dspace|email(?:admin)?|engskills|epay|lists|luis|lorls|oss|pdwww|wfa)\\.lboro\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(alumni|availability|bestmaths|booklab|campuslife|cash-plus|castrovalva|domains|dspace|easimap|email(?:admin)?|engskills|epay|lists|luis|lorls|lumen|mec|mondas|oss|pdwww|pma|prospectus|rapid|vacancies|webdiss|wfa)\\.lboro\\.ac\\.uk/\" to=\"https://$1.lboro.ac.uk/\"/><rule from=\"^http://(?:mooc|moochost|skaro)\\.lboro\\.ac\\.uk/+\" to=\"https://easimap.lboro.ac.uk/\"/></ruleset>", "<ruleset name=\"ldpreload.com\" f=\"Ldpreload.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le-VPN.com (false MCB)\" platform=\"mixedcontent\" f=\"Le-VPN.com.xml\"><securecookie host=\"^\\.le-vpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeFebvre.org\" f=\"LeFebvre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Loop.org\" platform=\"cacert\" f=\"Le_Loop.org.xml\"><securecookie host=\"^(?:git|links)\\.leloop\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Monde.fr (partial)\" f=\"Le_Monde.fr.xml\"><securecookie host=\"^\\.?(?:abo|boutique|monabo)\\.lemonde\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeadFormix.com\" f=\"LeadFormix.xml\"><securecookie host=\"^www\\.leadformix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeadLander (partial)\" f=\"LeadLander.xml\"><rule from=\"^http://(?:www\\.)?leadlander\\.com/([\\w\\-]+\\.css|images/)\" to=\"https://ssl.leadlander.com/$1\"/><rule from=\"^http://ssl\\.leadlander\\.com/\" to=\"https://ssl.leadlander.com/\"/></ruleset>", "<ruleset name=\"LeadPages.net\" f=\"LeadPages.net.xml\"><securecookie host=\"^my\\.leadpages\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?leadpages\\.net/\" to=\"https://www.leadpages.net/\"/><rule from=\"^http://(blog|lp|marketplace|my|podcast|support)\\.leadpages\\.net/\" to=\"https://$1.leadpages.net/\"/></ruleset>", "<ruleset name=\"LeadSpend.com (partial)\" default_off=\"failed ruleset test\" f=\"LeadSpend.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?leadspend\\.com/(?:blog|images/\\S+\\.[0-9a-zA-Z]{10}\\.png)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lead Forensics.com (partial)\" f=\"Lead_Forensics.com.xml\"><securecookie host=\"^new\\.leadforensics\\.com$\" name=\".+\"/><rule from=\"^http://tracker\\.leadforensics\\.com/\" to=\"https://secure.leadforensics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leader-Manager.com\" default_off=\"failed ruleset test\" f=\"Leader-Manager.com.xml\"><securecookie host=\"^leader-manager\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?leader-manager\\.com/\" to=\"https://leader-manager.com/\"/></ruleset>", "<ruleset name=\"Leader Technologies\" default_off=\"failed ruleset test\" f=\"Leader-Technologies.xml\"><securecookie host=\"^www\\.leadertech\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?leadertech\\.com/\" to=\"https://www.leadertech.com/\"/></ruleset>", "<ruleset name=\"The Leader (partial)\" f=\"Leader.xml\"><rule from=\"^http://(?:www\\.)?leaderlandnews\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.leaderlandnews.com/$1\"/></ruleset>", "<ruleset name=\"Leadnow\" default_off=\"mismatch\" f=\"Leadnow.xml\"><securecookie host=\"^(?:.*\\.)?leadnow\\.ca$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?leadnow\\.ca/\" to=\"https://leadnow.ca/\"/></ruleset>", "<ruleset name=\"Leadwerks.com (partial)\" f=\"Leadwerks.com.xml\"><rule from=\"^http://(www\\.)?leadwerks\\.com/(favicon\\.ico|files/|img/|scripts/|/?werkspace/(?:cache/|cometchat/|index\\.php|/?public/|uploads/))\" to=\"https://$1leadwerks.com/$2\"/></ruleset>", "<ruleset name=\"Leaflet JS.com\" f=\"Leaflet_JS.com.xml\"><rule from=\"^http://cdn\\.leafletjs\\.com/\" to=\"https://d19vzq90twjlae.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Leafly.com (partial)\" f=\"Leafly.com.xml\"><rule from=\"^http://leafly\\.com/\" to=\"https://www.leafly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"League of Legends.com (mismatched)\" default_off=\"mismatched\" f=\"League_of_Legends.com-problematic.xml\"><rule from=\"^http://(gameinfo\\.(?:euw|na)|prized\\.na)\\.leagueoflegends\\.com/\" to=\"https://$1.leagueoflegends.com/\"/></ruleset>", "<ruleset name=\"League of Legends.com (partial)\" f=\"League_of_Legends.com.xml\"><rule from=\"^http://cdn\\.leagueoflegends\\.com/\" to=\"https://dx0wf1fepagqw.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeahScape.com\" f=\"LeahScape.com.xml\"><securecookie host=\"^support\\.leahscape.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leanpub.com (partial)\" f=\"Leanpub.com.xml\"><securecookie host=\"^(?:www\\.)?leanpub\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?leanpub\\.com/\" to=\"https://$1leanpub.com/\"/><rule from=\"^http://samples\\.leanpub\\.com/\" to=\"https://s3.amazonaws.com/samples.leanpub.com/\"/></ruleset>", "<ruleset name=\"Leap Motion\" f=\"Leap_Motion.xml\"><securecookie host=\"^(?:www\\.)?leapmotion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LearnShare.com\" f=\"LearnShare.com.xml\"><securecookie host=\"(?:.+\\.)?learnshare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Learn my way.com\" default_off=\"failed ruleset test\" f=\"Learn_my_way.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LearningCast.jp\" f=\"LearningCast.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Learning Biz Package.com\" default_off=\"failed ruleset test\" f=\"Learning_Biz_Package.com.xml\"><securecookie host=\"^(?:w*\\.)?learningbizpackage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeaseRig.net\" f=\"LeaseRig.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeaseWeb.com (partial)\" f=\"LeaseWeb.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Least Authority.com (partial)\" f=\"Least_Authority.com.xml\"><rule from=\"^http://www\\.leastauthority\\.com/\" to=\"https://leastauthority.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Least Fixed.com\" f=\"Least_Fixed.com.xml\"><rule from=\"^http://(?:www\\.)?leastfixed\\.com/\" to=\"https://leastfixed.com/\"/></ruleset>", "<ruleset name=\"LebLibrary.com\" f=\"LebLibrary.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ledger.co\" f=\"Ledger.co.xml\"><securecookie host=\"^\\.ledger\\.co$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^www\\.ledger\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ledger Wallet.com (partial)\" f=\"Ledger_Wallet.com.xml\"><securecookie host=\"^\\.ledgerwallet\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^www\\.ledgerwallet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ledgerscope\" f=\"Ledgerscope.xml\"><securecookie host=\"^ledgerscope\\.net$\" name=\".+\"/><securecookie host=\"^www\\.ledgerscope\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Leeds.ac.uk-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds Building Society.co.uk (partial)\" f=\"Leeds_Building_Society.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leet Media.com\" default_off=\"failed ruleset test\" f=\"Leet_Media.com.xml\"><securecookie host=\"^(?:w*\\.)?leetmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leetway.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Leetway.com.xml\"><securecookie host=\"^\\.leetway\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Life Extension Magazine\" f=\"Lef.org.xml\"><rule from=\"^http://(?:www\\.)?lef\\.org/\" to=\"https://www.lef.org/\"/></ruleset>", "<ruleset name=\"Legacy.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Legacy.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?legacy\\.com/(?!$|favicon\\.ico|globalscripts/tracking/AIMWrapper\\.js|Images/|(?:[\\w/-]+/)?(?:images/|ObitsTileCorner\\.axd|scripts/|Styles/)|ns/|NS/|OBITUARIES/AffiliateArtwork\\.axd)\"/><exclusion pattern=\"^http://memorialwebsites\\.legacy\\.com/(?!create(?:account|memorial)\\.aspx|images/|styles/)\"/><securecookie host=\"^static\\.legacy\\.com$\" name=\".+\"/><securecookie host=\"^\\.legacyconnect\\.ning\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?legacy\\.com/obituaries/Images/\" to=\"https://$1legacy.com/obituaries/images/\"/><rule from=\"^http://((?:cache|mi|static|memorialwebsites|www)\\.)?legacy\\.com/\" to=\"https://$1legacy.com/\"/><rule from=\"^http://connect\\.legacy\\.com/\" to=\"https://legacyconnect.ning.com/\"/><rule from=\"^http://mi-(cache|static)\\.legacy\\.com/\" to=\"https://$1.legacy.com/\"/></ruleset>", "<ruleset name=\"legacy.vg\" f=\"Legacy.vg.xml\"><securecookie host=\"^www\\.legacy\\.vg$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legal Directories\" f=\"Legal_Directores.xml\"><securecookie host=\"^www\\.legaldirectories\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LegiScan.com\" f=\"LegiScan.com.xml\"><securecookie host=\"^\\.legiscan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"legislationsurveys.com\" default_off=\"failed ruleset test\" f=\"Legislationsurveys.com.xml\"><rule from=\"^http://(?:www\\.)?legislationsurveys\\.com/\" to=\"https://www.legislationsurveys.com/\"/></ruleset>", "<ruleset name=\"LegitScript\" f=\"LegitScript.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legit BS.net\" f=\"Legit_BS.net.xml\"><securecookie host=\"^\\.legitbs\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legolas Media (mismatches)\" default_off=\"mismatch\" f=\"Legolas-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?legolas-media\\.com/\" to=\"https://legolas-media.com/~triathl9/\"/></ruleset>", "<ruleset name=\"Legolas Media (partial)\" f=\"Legolas-Media.xml\"><securecookie host=\"^\\.legolas-media\\.com$\" name=\"^uid$\"/><rule from=\"^http://rt\\.legolas-media\\.com/\" to=\"https://rt.legolas-media.com/\"/></ruleset>", "<ruleset name=\"Legtux (cacert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Legtux.xml\"><securecookie host=\"^(?:faq|www)\\.legtux\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?legtux\\.org/\" to=\"https://www.legtux.org/\"/><rule from=\"^http://(davask|faq)\\.legtux\\.org/\" to=\"https://$1.legtux.org/\"/></ruleset>", "<ruleset name=\"Leia Jung.org\" default_off=\"expired, self-signed\" f=\"Leia_Jung.org.xml\"><rule from=\"^http://(?:www\\.)?leiajung\\.org/\" to=\"https://leiajung.org/\"/></ruleset>", "<ruleset name=\"Leibniz Supercomputing Centre\" f=\"Leibniz_Supercomputing_Centre.xml\"><securecookie host=\"^servicedesk\\.lrz\\.de$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:idportal|servicedesk)\\.lrz\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leicestershire.gov.uk\" default_off=\"mismatched\" f=\"Leicestershire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leicestershire Police\" f=\"LeicestershirePolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leiden Univ.nl (partial)\" f=\"Leiden_Univ.nl.xml\"><exclusion pattern=\"^http://biosyn\\.lic\\.leidenuniv\\.nl/+(?!files/|modules/|sites/)\"/><rule from=\"^http://((?:www\\.)?beeldbank|blackboard|(?:www\\.)?disc|lic|biosyn\\.lic|www\\.math|media|nepo|openaccess|socrates|lcserver\\.strw|studiegids|(?:login\\.)?uaccess|usis|weblog|webmail)\\.leidenuniv\\.nl/\" to=\"https://$1.leidenuniv.nl/\"/><rule from=\"^http://(?:www\\.)?physics\\.leidenuniv\\.nl/\" to=\"https://www.physics.leidenuniv.nl/\"/></ruleset>", "<ruleset name=\"Lektorium.tv\" f=\"Lektorium.tv.xml\"><rule from=\"^http://(?:www\\.)?lektorium\\.tv/\" to=\"https://www.lektorium.tv/\"/></ruleset>", "<ruleset name=\"Lelo.com\" f=\"Lelo.com.xml\"><rule from=\"^http://lelo\\.com/\" to=\"https://lelo.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.lelo\\.com/\" to=\"https://$1.lelo.com/\"/></ruleset>", "<ruleset name=\"Lemde.fr (mixed content)\" platform=\"mixedcontent\" f=\"Lemde.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lendeavor.com\" f=\"Lendeavor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lending Club (partial)\" f=\"Lending-Club.xml\"><securecookie host=\"^www\\.lendingclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lendo.se (partial)\" f=\"Lendo.se.xml\"><securecookie host=\"^\\.lendo\\.se$\" name=\"^tracking_partner$\"/><securecookie host=\"^www\\.lendo\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lendo\\.se/\" to=\"https://www.lendo.se/\"/></ruleset>", "<ruleset name=\"lengow.com\" f=\"Lengow.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lennier.info\" f=\"Lennier.info.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenos Softwarse (partial)\" f=\"Lenos-Software.xml\"><securecookie host=\"^secure\\.lenos\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.lenos\\.com/\" to=\"https://secure.lenos.com/\"/></ruleset>", "<ruleset name=\"Lenovo (partial)\" f=\"Lenovo.xml\"><exclusion pattern=\"^http://www\\.lenovo\\.com/(?:support|training)/\"/><exclusion pattern=\"http://shop\\.lenovo\\.com/\\w\\w/\\w\\w/services-warranty(?:$|\\?|/)\"/><exclusion pattern=\"^http://outlet\\.lenovo\\.com/(?!.+/images/|.+/js/|.+/seutil\\.workflow:LoadCombinedResource|ISS_Static/|SEUILibrary/)\"/><exclusion pattern=\"http://support\\.lenovo\\.com/+(?!(?:App|~)/.+\\.(?:(?:css|png)(?:$|[?/])|ashx\\?w=\\d)|~/media/images/system/icon/rss\\.ashx)\"/><exclusion pattern=\"^http://(?:www\\.)?lenovo\\.co\\.uk/(?!$)\"/><exclusion pattern=\"^http://(?:blog|consumersupport|news|ovp|www\\.partnerinfo|social)\\.lenovo\\.com/\"/><securecookie host=\"\\.lenovo\\.com$\" name=\"VISITORID\"/><securecookie host=\"(?:forums|\\.?support)\\.lenovo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lenovo\\.co\\.uk/$\" to=\"https://www.lenovo.com/uk/en/\"/><rule from=\"^http://(?:www\\.)?lenovo\\.com/depotstatus/?$\" to=\"https://download.lenovo.com/lenovo/content/vru/depotstatus.html\"/><rule from=\"^http://(?:www\\.)?lenovo\\.com/friendsandfamily/?$\" to=\"https://shop.lenovo.com/SEUILibrary/controller/Lenovo:EnterStdAffinity?affinity=lenovofamily&ConfigContext=StdAffinityPortal\"/><rule from=\"^http://(?:(?:www\\.)?lenovo\\.com/link/redirect\\.www\\.lenovo\\.com/)?(?:www\\.)?thinkpad\\.com/.*\" to=\"https://www.lenovo.com/us/en/?cid=SEO-thinkpadcom\"/><rule from=\"^http://lenovo\\.com/\" to=\"https://www.lenovo.com/\"/><rule from=\"^http://forum\\.lenovo\\.com/\" to=\"https://forums.lenovo.com/\"/><rule from=\"^http:///shop\\.lenovo\\.com/us/en/?(?:\\?redir=y&redirsrc=1)?$\" to=\"https://www.lenovo.com/us/en/?redir=y&redirsrc=1\"/><rule from=\"^http://(?:www\\.)?lenovovision\\.com/.*\" to=\"https://www.lenovo.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://www\\.lenovo\\.com/training/\" to=\"http://www.lenovo.com/training/\" downgrade=\"1\"/><rule from=\"^https://(blog|consumersupport|news|ovp|www\\.partnerinfo|social)\\.lenovo\\.com/\" to=\"http://$1.lenovo.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Lenovo Orders.com\" default_off=\"missing certificate chain\" f=\"Lenovo_Orders.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenovo Picks.com\" default_off=\"missing certificate chain\" f=\"Lenovo_Picks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lens.io\" f=\"Lens.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LensRentals.com\" platform=\"mixedcontent\" f=\"LensRentals.xml\"><rule from=\"^http://(?:www\\.)?lensrentals\\.com/\" to=\"https://www.lensrentals.com/\"/></ruleset>", "<ruleset name=\"Leo.org (partial)\" f=\"Leo.org.xml\"><exclusion pattern=\"http://bar\\.leo\\.org/\"/><rule from=\"^http://(?:www\\.)?leo\\.org/\" to=\"https://www.leo.org/\"/><rule from=\"^http://([^/:@]+)\\.leo\\.org/\" to=\"https://$1.leo.org/\"/></ruleset>", "<ruleset name=\"Leroy Farmer City Press (partial)\" f=\"Leroy_Farmer_City_Press.xml\"><rule from=\"^http://(?:www\\.)?leroyfcpress\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.leroyfcpress.com/$1\"/></ruleset>", "<ruleset name=\"LesFurets.com (partial)\" f=\"LesFurets.com.xml\"><rule from=\"^http://cdn\\.lesfurets\\.com/\" to=\"https://d2f59t599bk8ak.cloudfront.net/\"/></ruleset>", "<ruleset name=\"LessThan3\" default_off=\"mismatched\" f=\"LessThan3.xml\"><rule from=\"^http://(?:www\\.)?lessthan3\\.com/\" to=\"https://www.lessthan3.com/\"/><rule from=\"^http://media\\.lessthan3\\.com/\" to=\"https://media.lessthan3.com/\"/></ruleset>", "<ruleset name=\"Lessig 2016.us\" f=\"Lessig_2016.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lessig for president.com\" f=\"Lessig_for_president.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lester Chan.net\" f=\"Lester_Chan.net.xml\"><securecookie host=\"^lesterchan\\.net$\" name=\".+\"/><rule from=\"^http://l(?:c2\\.lcstatic\\.net|esterchan\\.lesterchan\\.netdna-cdn\\.com)/\" to=\"https://lesterchan-lesterchan.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LetsSingIt (partial)\" default_off=\"failed ruleset test\" f=\"LetsSingIt.xml\"><rule from=\"^http://cdn\\.lsistatic\\.com/\" to=\"https://lsi.cachefly.net/\"/></ruleset>", "<ruleset name=\"Lets Encrypt.org\" f=\"Lets_Encrypt.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lets Talk Bitcoin.com\" f=\"Lets_Talk_Bitcoin.com.xml\"><securecookie host=\"^\\.letstalkbitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lettre-de-motivation-facile.com\" f=\"Lettre-de-motivation-facile.com.xml\"><securecookie host=\"^(?:w*\\.)?lettre-de-motivation-facile\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Level 3.com (partial)\" f=\"Level_3.com.xml\"><securecookie host=\"^account\\.level3\\.com$\" name=\".+\"/><rule from=\"^http://account\\.level3\\.com/\" to=\"https://account.level3.com/\"/></ruleset>", "<ruleset name=\"levels.io\" f=\"Levels.io.xml\"><rule from=\"^http://www\\.levels\\.io/\" to=\"https://levels.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lever.co\" f=\"Lever.co.xml\"><securecookie host=\"^jobs\\.lever\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Leveson Inquiry\" default_off=\"failed ruleset test\" f=\"Leveson_Inquiry.xml\"><rule from=\"^http://(?:www\\.)?levesoninquiry\\.org\\.uk/\" to=\"https://www.levesoninquiry.org.uk/\"/></ruleset>", "<ruleset name=\"Levexis (partial)\" f=\"Levexis.xml\"><securecookie host=\"^pfa\\.levexis\\.com$\" name=\".+\"/><rule from=\"^http://pfa\\.levexis\\.com/\" to=\"https://pfa.levexis.com/\"/><rule from=\"^http://(?:res|sec)\\.levexis\\.com/\" to=\"https://sec.levexis.com/\"/></ruleset>", "<ruleset name=\"Leviathan Security.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Leviathan_Security.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leviathan Security.com (partial)\" default_off=\"failed ruleset test\" f=\"Leviathan_Security.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?leviathansecurity\\.com/+blog(?:$|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Levny-hosting.cz\" f=\"Levny-hosting.cz.xml\"><securecookie host=\"^www\\.levny-hosting\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Levo.com\" f=\"Levo.com.xml\"><securecookie host=\"^(?:pages)?\\.levo\\.com$\" name=\".+\"/><rule from=\"^http://levo\\.com/\" to=\"https://www.levo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Levo League.com (partial)\" f=\"Levo_League.com.xml\"><rule from=\"^http://(?:www\\.)?levoleague\\.com/\" to=\"https://www.levo.com/\"/><rule from=\"^http://assets\\.levoleague\\.com/\" to=\"https://d1liz66zbw1f5h.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Levonline.com\" f=\"Levonline.com.xml\"><securecookie host=\"^(?:www\\.)?levonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LewRockwell.com\" f=\"LewRockwell.com.xml\"><securecookie host=\"^(?:beta|www)\\.lewrockwell.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lex Machina.com (partial)\" f=\"Lex_Machina.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lexity.com\" f=\"Lexity.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?lexity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LezloveVideo.com\" f=\"LezloveVideo.com.xml\"><securecookie host=\"^www\\.lezlovevideo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lezlovevideo\\.com/\" to=\"https://www.lezlovevideo.com/\"/></ruleset>", "<ruleset name=\"Lfrs.sl\" f=\"Lfrs.sl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lh.co.th\" default_off=\"failed ruleset test\" f=\"Lh.co.th.xml\"><rule from=\"^http://(?:www\\.)?lh\\.co\\.th/\" to=\"https://www.lh.co.th/\"/></ruleset>", "<ruleset name=\"LiLux.lu\" f=\"LiLux.lu.xml\"><securecookie host=\"^(?:mail|www)\\.lilux\\.lu$\" name=\".+\"/><rule from=\"^http://((?:lists|mail|www)\\.)?lilux\\.lu/\" to=\"https://$1lilux.lu/\"/></ruleset>", "<ruleset name=\"Lib.rus.ec\" f=\"Lib.rus.ec.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibAnswers.com\" f=\"LibAnswers.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibApps.com\" f=\"LibApps.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibCal.com\" f=\"LibCal.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibGuides\" default_off=\"failed ruleset test\" f=\"LibGuides.xml\"><rule from=\"^http://(\\w+\\.)?libguides\\.com/\" to=\"https://$1libguides.com/\"/></ruleset>", "<ruleset name=\"libSDL.org (partial)\" f=\"LibSDL.org.xml\"><securecookie host=\"^(?:\\.bugzilla|forums)\\.libsdl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libav\" f=\"Libav.xml\"><securecookie host=\"^.*\\.libav\\.org$\" name=\".*\"/><rule from=\"^http://((?:bugzilla|fate|git|samples|www)\\.)?libav\\.org/\" to=\"https://$1libav.org/\"/></ruleset>", "<ruleset name=\"Libdems.org.uk (partial)\" f=\"Libdems.org.uk.xml\"><securecookie host=\"^(?:www\\.)?libdems\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?libdems\\.org\\.uk/(app/|favicon\\.ico|make_a_donation\\.aspx|siteFiles/)\" to=\"https://www.libdems.org.uk/$1\"/><rule from=\"^http://pdd\\.libdems\\.org\\.uk/\" to=\"https://pdd.libdems.org.uk/\"/></ruleset>", "<ruleset name=\"libdrc.org\" default_off=\"mismatched\" f=\"Libdrc.org.xml\"><rule from=\"^http://(?:www\\.)?libdrc\\.org/\" to=\"https://libdrc.org/\"/></ruleset>", "<ruleset name=\"Liberal Party of Canada (partial)\" f=\"Liberal.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberal America.org (false MCB)\" platform=\"mixedcontent\" f=\"Liberal_America.org-falsemixed.xml\"><securecookie host=\"^\\.liberalamerica\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?liberalamerica\\.org/\" to=\"https://www.liberalamerica.org/\"/></ruleset>", "<ruleset name=\"Liberal America.org (partial)\" f=\"Liberal_America.org.xml\"><rule from=\"^http://(?:www\\.)?liberalamerica\\.org/(?=wp-content/|wp-includes/)\" to=\"https://www.liberalamerica.org/\"/></ruleset>", "<ruleset name=\"Liberdade.Digital\" f=\"Liberdade.Digital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberian Geek.net\" f=\"Liberian_Geek.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberty.me\" f=\"Liberty.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberty\" f=\"Liberty.xml\"><securecookie host=\"^(?:www\\.)?liberty-human-rights\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberty Flail Mowers.com (partial)\" f=\"Liberty_Flail_Mowers.com.xml\"><rule from=\"^http://(www\\.)?libertyflailmowers\\.com/(?!/*(?:$|\\?))\" to=\"https://$1libertyflailmowers.com/\"/></ruleset>", "<ruleset name=\"Libis.be (partial)\" f=\"Libis.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libraries.io\" f=\"Libraries.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibAnywhere.com\" f=\"LibraryAnywhere.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibraryThing.com\" f=\"LibraryThing.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Library Freedom Project.org\" f=\"Library_Freedom_Project.org.xml\"><securecookie host=\"^\\.libraryfreedomproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Library License.org\" default_off=\"mismatched\" f=\"Library_License.org.xml\"><rule from=\"^http://(?:www\\.)?librarylicense\\.org/\" to=\"https://librarylicense.org/\"/></ruleset>", "<ruleset name=\"Libravatar.org\" f=\"Libravatar.org.xml\"><rule from=\"^http://(www\\.)?libravatar\\.org/\" to=\"https://$1libravatar.org/\"/><rule from=\"^http://(?:sec)?cdn\\.libravatar\\.org/\" to=\"https://seccdn.libravatar.org/\"/></ruleset>", "<ruleset name=\"LibreOffice-from-Collabora.com\" f=\"LibreOffice-from-Collabora.com.xml\"><securecookie host=\"^www\\.libreoffice-from-collabora\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice (mixedcontent)\" platform=\"mixedcontent\" f=\"LibreOffice-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice\" f=\"LibreOffice.xml\"><securecookie host=\"^(?:donate|help|www)\\.libreoffice\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice-Box\" default_off=\"failed ruleset test\" f=\"LibreOfficeBox.xml\"><rule from=\"^http://(?:www\\.)?libreofficebox\\.org/\" to=\"https://www.libreofficebox.org/\"/></ruleset>", "<ruleset name=\"LibrePlanet.org\" f=\"LibrePlanet.org.xml\"><securecookie host=\"^(?:www\\.)?libreplanet\\.org$\" name=\".+\"/><rule from=\"^http://(?:(media\\.)|www\\.)?libreplanet\\.org/\" to=\"https://$1libreplanet.org/\"/></ruleset>", "<ruleset name=\"Libre Graphics World.org (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Libre_Graphics_World.org.xml\"><securecookie host=\"^libregraphicsworld\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?libregraphicsworld\\.org/\" to=\"https://libregraphicsworld.org/\"/></ruleset>", "<ruleset name=\"Libreboot.org\" f=\"Libreboot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libreswan.org\" f=\"Libreswan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libri.de\" f=\"Libri.de.xml\"><securecookie host=\"^www\\.libri\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?libri\\.de/\" to=\"https://www.libri.de/\"/><rule from=\"^http://media\\.libri\\.de/\" to=\"https://media.libri.de/\"/></ruleset>", "<ruleset name=\"LibriVox (partial)\" f=\"LibriVox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libsodium.org (partial)\" f=\"Libsodium.org.xml\"><rule from=\"^http://download\\.libsodium\\.org/\" to=\"https://download.libsodium.org/\"/></ruleset>", "<ruleset name=\"libssh.org (partial)\" f=\"Libssh.org.xml\"><securecookie host=\"^www\\.libssh\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libsyn.com (partial)\" f=\"Libsyn.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(ec|hwcdn)\\.libsyn\\.com/\" to=\"https://secure-$1.libsyn.com/\"/><rule from=\"^http://static\\.libsyn\\.com/\" to=\"https://ssl-static.libsyn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libtoxcore.so (partial)\" f=\"Libtoxcore.so.xml\"><rule from=\"^http://www\\.libtoxcore\\.so/\" to=\"https://libtoxcore.so/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libvirt.org (partial)\" f=\"Libvirt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"license buttons.net\" f=\"License_buttons.net.xml\"><securecookie host=\"^\\.licensebuttons\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lichtblick.de\" f=\"Lichtblick.de.xml\"><rule from=\"^http://(?:www\\.)?lichtblick\\.de/\" to=\"https://www.lichtblick.de/\"/></ruleset>", "<ruleset name=\"Lidé.cz\" f=\"Lide.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lidl (partial)\" default_off=\"failed ruleset test\" f=\"Lidl.xml\"><rule from=\"^http://webforms\\.lidl\\.com/\" to=\"https://webforms.lidl.com/\"/><securecookie host=\"^webforms\\.lidl\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Lifars.com (partial)\" f=\"Lifars.com.xml\"><securecookie host=\"^(?:www\\.)?lifars\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Life in the Fast Lane (partial)\" default_off=\"failed ruleset test\" f=\"Life-in-the-Fast-Lane.xml\"><rule from=\"^http://(?:www\\.)?lifeinthefastlane\\.ca/(favicon\\.ico|wp-content/)\" to=\"https://www.lifeinthefastlane.ca/$1\"/></ruleset>", "<ruleset name=\"LifeReimagined.org\" default_off=\"missing certificate chain\" f=\"LifeReimagined.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifehacker.com\" default_off=\"mismatched\" f=\"Lifehacker.com.xml\"><securecookie host=\"^\\.?lifehacker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifeline Australia\" f=\"Lifeline-Australia.xml\"><securecookie host=\"^www\\.lifeline\\.org\\.au$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)lifeline\\.org\\.au/\" to=\"https://www.lifeline.org.au/\"/></ruleset>", "<ruleset name=\"Liferay.com\" f=\"Liferay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifesaving Resources\" f=\"Lifesaving-Resources.xml\"><securecookie host=\"^\\.lifesaving\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lift conference\" default_off=\"mismatch, self-signed\" f=\"Lift-conference.xml\"><securecookie host=\"^.*\\.liftconference\\.com$\" name=\".*\"/><rule from=\"^http://(?:(videos\\.)|www\\.)?liftconference\\.com/\" to=\"https://$1liftconference.com/\"/></ruleset>", "<ruleset name=\"LiftShare\" f=\"LiftShare.xml\"><securecookie host=\"^(?:.+\\.)?liftshare\\.com$\" name=\".*\"/><rule from=\"^http://liftshare\\.com/\" to=\"https://liftshare.com/\"/><rule from=\"^http://(images|www|scripts)\\.liftshare\\.com/\" to=\"https://$1.liftshare.com/\"/></ruleset>", "<ruleset name=\"Lift Security.io\" f=\"Lift_Security.io.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?liftsecurity\\.io/\" to=\"https://$1liftsecurity.io/\"/></ruleset>", "<ruleset name=\"Liftdna.com (problematic)\" default_off=\"mismatched\" f=\"Liftdna.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?liftdna\\.com/(?!\\w+\\.js|css/|images/|js/)\" to=\"https://www.liftdna.com/\"/></ruleset>", "<ruleset name=\"Liftdna.com (partial)\" f=\"Liftdna.com.xml\"><rule from=\"^http://(hosted|static)\\.liftdna\\.com/\" to=\"https://$1.liftdna.com/\"/><rule from=\"^http://marketing\\.liftdna\\.com/\" to=\"https://www.actonsoftware.com/\"/><rule from=\"^http://reporting\\.liftdna\\.com/(users)?(?:\\?.*)?$\" to=\"https://lift.openx.com/$1\"/><rule from=\"^http://reporting\\.liftdna\\.com/users/([^?]*)(?:$\\?.*)?\" to=\"https://lift.openx.com/users/$1\"/></ruleset>", "<ruleset name=\"Liftware\" f=\"Liftware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ligatus (partial)\" f=\"Ligatus.xml\"><securecookie host=\"^\\.ligatus\\.com$\" name=\"^LIG_Y$\"/><securecookie host=\"^\\.ret01\\.ligatus\\.com$\" name=\".+\"/><rule from=\"^http://(d|ms|ads-(?:de|fr|nl)\\.ret01|x)\\.ligatus\\.com/\" to=\"https://$1.ligatus.com/\"/></ruleset>", "<ruleset name=\"Light-Paint.com\" default_off=\"failed ruleset test\" f=\"Light-Paint.com.xml\"><securecookie host=\"^light-paint\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?light-paint\\.com/\" to=\"https://light-paint.com/\"/><rule from=\"^http://secure\\.light-paint\\.com/\" to=\"https://secure.light-paint.com/\"/></ruleset>", "<ruleset name=\"Light Blue Touchpaper.org\" f=\"Light_Blue_Touchpaper.org.xml\"><rule from=\"^http://lightbluetouchpaper\\.org/\" to=\"https://www.lightbluetouchpaper.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Light the Night.org\" default_off=\"mismatched\" f=\"Light_the_Night.org.xml\"><securecookie host=\"^www\\.lightthenight\\.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lightthenight\\.org/\" to=\"https://www.lightthenight.org/\"/></ruleset>", "<ruleset name=\"Lighthouse app.com (partial)\" f=\"Lighthouse_app.com.xml\"><exclusion pattern=\"^http://help\\.lighthouseapp\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lighttpd.net\" platform=\"cacert\" default_off=\"missing certificate chain\" f=\"Lighttpd.net.xml\"><securecookie host=\".*\\.lighttpd\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lihm.net\" f=\"Lihm.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liikenneturva\" f=\"Liikenneturva.fi.xml\"><securecookie host=\"^(?:www\\.)liikenneturva\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lijit.com\" platform=\"mixedcontent\" f=\"Lijit.com.xml\"><securecookie host=\"^\\.lijit\\.com$\" name=\".+\"/><securecookie host=\"^\\.secure\\.lijit\\.com$\" name=\".+\"/><rule from=\"^http://(ap\\.|ce\\.)?lijit\\.com/\" to=\"https://$1lijit.com/\"/><rule from=\"^http://(?:secure|www)\\.lijit\\.com/\" to=\"https://secure.lijit.com/\"/></ruleset>", "<ruleset name=\"Likes\" f=\"Likes.xml\"><securecookie host=\"^\\.likes\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?likes\\.com/\" to=\"https://$1likes.com/\"/><rule from=\"^http://i\\d\\.likes-media\\.com/\" to=\"https://d1qfo1bk8s78mq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"likeyed.com\" default_off=\"failed ruleset test\" f=\"Likeyed.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liliani\" default_off=\"failed ruleset test\" f=\"Liliani.xml\"><securecookie host=\"^www\\.liliani\\.com\\.br$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?liliani\\.com\\.br/\" to=\"https://www.liliani.com.br/\"/></ruleset>", "<ruleset name=\"lilliputti.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lilliputti.com.xml\"><rule from=\"^http://(?:www\\.)?lilliputti\\.com/\" to=\"https://lilliputti.com/\"/></ruleset>", "<ruleset name=\"limango\" f=\"Limango.xml\"><securecookie host=\"^(?:.*\\.)?limango\\.de$\" name=\".+\"/><rule from=\"^http://(checkout\\.|www\\.)?limango\\.de/\" to=\"https://$1limango.de/\"/><rule from=\"^http://img\\.limango-media\\.de/\" to=\"https://img.limango-media.de/\"/></ruleset>", "<ruleset name=\"LimeService.com\" f=\"LimeService.xml\"><securecookie host=\"^www\\.limeservice\\.com$\" name=\".+\"/><rule from=\"^http://limeservice\\.com/\" to=\"https://www.limeservice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LimeSurvey.org\" f=\"LimeSurvey.xml\"><securecookie host=\"^www\\.limesurvey\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Limelight Networks (partial)\" f=\"Limelight-Networks.xml\"><rule from=\"^http://([\\w\\-]+)\\.hs\\.llnwd\\.net/\" to=\"https://$1.hs.llnwd.net/\"/></ruleset>", "<ruleset name=\"Limited 2 Art.com (partial)\" f=\"Limited_2_Art.com.xml\"><rule from=\"^http://(www\\.)?limited2art\\.com/(?=content/|default\\.asp\\?template=l2art_checkout\\d\\.htm|favicon\\.ico|statics/|templates/)\" to=\"https://$1limited2art.com/\"/></ruleset>", "<ruleset name=\"limun.org\" f=\"Limun.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lin Shung Huang.com\" f=\"Lin_Shung_Huang.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linaro.org (partial)\" default_off=\"webmaster request\" f=\"Linaro.xml\"><securecookie host=\"^\\.linaro\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".+\\.linaro\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincoln.gov.uk (partial)\" f=\"Lincoln.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincolnshire.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Lincolnshire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincolnshire.gov.uk (partial)\" f=\"Lincolnshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lincolnshire\\.gov\\.uk/\" to=\"https://www.lincolnshire.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincs to the Past.com\" default_off=\"missing certificate chain\" f=\"Lincs_to_the_Past.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lindt USA\" platform=\"mixedcontent\" f=\"LindtUSA.xml\"><rule from=\"^http://(?:www\\.)?lindtusa\\.com/\" to=\"https://www.lindtusa.com/\"/></ruleset>", "<ruleset name=\"Lindy.com\" default_off=\"expired\" f=\"Lindy.com.xml\"><securecookie host=\"^www\\.lindy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lindy\\.com/\" to=\"https://www.lindy.com/\"/></ruleset>", "<ruleset name=\"Linear.com (partial)\" f=\"Linear.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?linear\\.com/+(?!assets/|mylinear(?:$|[?/])|_ui/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linear Collider Collaboration\" f=\"Linear_Collider_Collaboration.xml\"><securecookie host=\"^\\.linearcollider\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linerunner (mismatches)\" default_off=\"mismatch\" f=\"Linerunner-mismatches.xml\"><rule from=\"^http://(blog|developer)\\.getcloudapp\\.com/\" to=\"https://$1.getcloudapp.com/\"/></ruleset>", "<ruleset name=\"Linerunner (partial)\" f=\"Linerunner.xml\"><rule from=\"^http://(api\\.|www\\.)?getcloudapp\\.com/\" to=\"https://$1getcloudapp.com/\"/><rule from=\"^http://store\\.getcloudapp\\.com//+([^?]+)\" to=\"https://my.cl.ly/plans/$1\"/><rule from=\"^http://store\\.getcloudapp\\.com//+\\?.*\" to=\"https://my.cl.ly/plans\"/><rule from=\"^http://store\\.getcloudapp\\.com/\" to=\"https://my.cl.ly/plans\"/></ruleset>", "<ruleset name=\"Lingospot.com (partial)\" f=\"Lingospot.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linguee\" default_off=\"failed ruleset test\" f=\"Linguee.xml\"><rule from=\"^http://(?:www\\.)?linguee\\.(com|de)/\" to=\"https://www.linguee.$1/\"/><rule from=\"^http://tool\\.linguee\\.com/\" to=\"https://tool.linguee.com/\"/></ruleset>", "<ruleset name=\"Link+ Catalog\" f=\"Link-Plus-Catalog.xml\"><exclusion pattern=\"^https://csul\\.iii\\.com/search~S0\\?/(?:[^/]+/){3}bibimage(:$|[^a-zA-Z])\"/><rule from=\"^https://csul\\.iii\\.com/(?=search~S0\\?/(?:[^/]+/){3}/bibimage(?:$|[^a-zA-Z]))\" to=\"http://csul.iii.com/\" downgrade=\"1\"/><rule from=\"^http://csul\\.iii\\.com/\" to=\"https://csul.iii.com/\"/></ruleset>", "<ruleset name=\"Linkbucks\" f=\"Linkbucks.xml\"><securecookie host=\"^(?:www\\.)?linkbucks\\.com$\" name=\".+\"/><rule from=\"^http://(?:static\\.|(www\\.))?linkbucks\\.com/\" to=\"https://$1linkbucks.com/\"/></ruleset>", "<ruleset name=\"LinkedIn.com (partial)\" f=\"LinkedIn.xml\"><exclusion pattern=\"^http://ja\\.linkedin\\.com/\"/><securecookie host=\"^(?:\\.ads|aide|a[jy]uda|asistenta|(?:in|ms)\\.bantuan|business|gsk|guida|help|\\w\\w\\.help|\\w\\w-\\w\\w\\.help|hilfe|hj[ae]lp|hjaelp|hulp|linkedinforgood|mobile|pomoc|press|www|yardim)?\\.linkedin\\.com$\" name=\".+\"/><rule from=\"^http://marketing\\.linkedin\\.com/$\" to=\"https://business.linkedin.com/marketing-solutions\"/><rule from=\"^http://sales\\.linkedin\\.com/$\" to=\"https://business.linkedin.com/sales-solutions\"/><rule from=\"^http://((?:\\w\\w|dc\\.ads|[\\w-]+\\.dc\\.ads|imp2\\.ads|aide|a[jy]uda|asistenta|(?:in|ms)\\.bantuan|cms|content|developers?|e|economicgraph|engineering|forms|guida|help|(?:\\w\\w|\\w\\w-\\w\\w)\\.help|help-(?:enterprise|internal|test2?)|hilfe|hj[ae]lp|hjaelp|hulp|lms|(?:dev|dev-signin|sandbox|signin)\\.lms|marketing|napoveda|nonprofits|ourstory|platform|polls|pomoc|press|security|specialedition|talent|tulong|volunteers|www|touch\\.www|yardim)\\.)?linkedin\\.com/\" to=\"https://$1linkedin.com/\"/><rule from=\"^http://(www\\.)?(brand|bringinyourparents|business|certification|commsconnect|financeconnect|gsk|imagine|lifg|linkedinforgood|live|members|mobile|nonprofit|premium|purchasing|salesconnect|smallbusiness|students|studentcareers|university|veterans|volunteer)\\.linkedin\\.com/\" to=\"https://$1$2.linkedin.com/\"/></ruleset>", "<ruleset name=\"Linkomanija\" default_off=\"self-signed\" f=\"Linkomanija.xml\"><rule from=\"^http://(?:www\\.)?linkomanija\\.net/\" to=\"https://www.linkomanija.net/\"/></ruleset>", "<ruleset name=\"LinksAlpha.com (partial)\" f=\"LinksAlpha.com.xml\"><securecookie host=\".+\\.linksalpha\\.com$\" name=\".+\"/><rule from=\"^http://linksalpha\\.com/\" to=\"https://www.linksalpha.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinksFU.com\" default_off=\"mismatched, self-signed\" f=\"LinksFU.com.xml\"><rule from=\"^http://(?:www\\.)?linksfu\\.com/\" to=\"https://linksfu.com/\"/></ruleset>", "<ruleset name=\"Linksmail.de\" f=\"Linksmail.de.xml\"><rule from=\"^http://(?:www\\.)?linksmail\\.de/\" to=\"https://mail.dielinke-sachsen.de/\"/></ruleset>", "<ruleset name=\"linksynergy.com (partial)\" f=\"Linksynergy.com.xml\"><securecookie host=\"^(?:\\.?cli|signup)\\.linksynergy\\.com$\" name=\".+\"/><rule from=\"^http://m\\.www\\.linksynergy\\.com/\" to=\"https://www.linkshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linksys.com (partial)\" f=\"Linksys.xml\"><exclusion pattern=\"^http://www\\.linksys\\.com/+(?!.+\\.(?:jpg|png|svg)(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!www\\.linksys\\.com$)\\w\" name=\".\"/><rule from=\"^http://cache-www\\.linksys\\.com/\" to=\"https://cache-www.linksys.com.s3.amazonaws.com/cache-www.linksys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linksys Smart WiFi.com\" f=\"Linksys_Smart_WiFi.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linksysbycisco.com\" default_off=\"handshake fails\" f=\"Linksysbycisco.com.xml\"><rule from=\"^http://(?:www\\.)?linksysbycisco\\.com/\" to=\"https://www.linksysbycisco.com/\"/></ruleset>", "<ruleset name=\"Linn Records.com (partial)\" f=\"Linn_Records.com.xml\"><rule from=\"^http://(?:www\\.)?linnrecords\\.com/(?=(?:account|forgotten|login)\\.aspx|css/|images/|img/|img\\\\comment\\.gif|js/|linn\\.ico|WebResource\\.axd)\" to=\"https://www.linnrecords.com/\"/><rule from=\"^http://small\\.linncdn\\.com/\" to=\"https://gp1.wac.edgecastcdn.net/0043E0/\"/></ruleset>", "<ruleset name=\"linneanet.fi\" f=\"Linneanet.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linode.com\" f=\"Linode.xml\"><securecookie host=\"^(?:.*\\.)?linode\\.com$\" name=\".+\"/><rule from=\"^http://status\\.linode\\.com/\" to=\"https://linode.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linotype.com (partial)\" f=\"Linotype.com.xml\"><exclusion pattern=\"^http://www\\.linotype\\.com/+(?!(?:account|cart)(?:$|[?/])|css/|favicon\\.ico|gif/|images/|min/|redir/sampler\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linphone\" f=\"Linphone.xml\"><rule from=\"^http://(?:www\\.)?linphone\\.org/\" to=\"https://www.linphone.org/\"/></ruleset>", "<ruleset name=\"linutronix\" f=\"Linutronix.xml\"><securecookie host=\"^(?:.*\\.)?linutronix\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Counter Trac\" default_off=\"Certificate mismatch\" f=\"Linux-Counter-Trac.xml\"><rule from=\"^http://trac\\.linuxcounter\\.net/\" to=\"https://trac.linuxcounter.net/\"/></ruleset>", "<ruleset name=\"Linux Counter\" default_off=\"failed ruleset test\" f=\"Linux-Counter.xml\"><securecookie host=\"^linuxcounter.net$\" name=\".+\"/><rule from=\"^http://counter\\.li\\.org/\" to=\"https://linuxcounter.net/\"/><rule from=\"^http://(www\\.)?linuxcounter\\.net/\" to=\"https://$1linuxcounter.net/\"/></ruleset>", "<ruleset name=\"Linux-Magazin.de (partial)\" default_off=\"failed ruleset test\" f=\"Linux-Magazin-Online.xml\"><exclusion pattern=\"^http://shop.linux-magazin.de/+(?!favicon\\.ico|media/|skin/)\"/><exclusion pattern=\"^http://www\\.linux-magazin\\.de/(?!extension/|var/)\"/><rule from=\"^http://linux-magazin\\.de/\" to=\"https://www.linux-magazin.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Magazine (partial)\" f=\"Linux-Magazine.xml\"><rule from=\"^http://linux-magazine\\.com/\" to=\"https://www.linux-magazine.com/\"/><rule from=\"^http://www\\.linux-magazine\\.com/(design/|extension/|lnmshop/|static/|Subscribe/|var/)\" to=\"https://www.linux-magazine.com/$1\"/></ruleset>", "<ruleset name=\"Linux New Media (mismatches)\" default_off=\"mismatch\" f=\"Linux-New-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?linuxnewmedia\\.de/\" to=\"https://www.linuxnewmedia.de/\"/></ruleset>", "<ruleset name=\"Linux New Media (partial)\" f=\"Linux-New-Media.xml\"><securecookie host=\"^.*\\.linuxnewmedia\\.(?:com|de)$\" name=\".*\"/><rule from=\"^http://rotation\\.linuxnewmedia\\.com/\" to=\"https://rotation.linuxnewmedia.com/\"/><rule from=\"^http://shop\\.linuxnewmedia\\.(com|de)/\" to=\"https://shop.linuxnewmedia.$1/\"/></ruleset>", "<ruleset name=\"Linux Plumbers Conference (partial)\" f=\"Linux-Plumbers-Conference.xml\"><rule from=\"^http://(?:www\\.)?linuxplumbersconf\\.net/\" to=\"https://linuxplumbersconf.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux-Tage.de\" f=\"Linux-Tage.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?linux-tage\\.de/+\" to=\"https://chemnitzer.linux-tage.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux-Tips.org\" f=\"Linux-Tips.org.xml\"><securecookie host=\"^(?:www)?\\.linux-tips\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linux-dev.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Linux-dev.org.xml\"><securecookie host=\"^www\\.linux-dev\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?linux-dev\\.org/\" to=\"https://www.linux-dev.org/\"/></ruleset>", "<ruleset name=\"linux-sunxi.org\" f=\"Linux-sunxi.org.xml\"><securecookie host=\"^(?:linux-)?sunxi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.cn\" f=\"Linux.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.com\" f=\"Linux.com.xml\"><exclusion pattern=\"^http://jobs\\.linux\\.com/+(?!files/|partners/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://jobs\\.linux\\.com/\" to=\"https://www.jobthread.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linux.conf.au\" f=\"Linux.conf.au.xml\"><rule from=\"^http://(?:www\\.)?linux\\.conf\\.au/\" to=\"https://linux.conf.au/\"/></ruleset>", "<ruleset name=\"Linux.lu (partial)\" f=\"Linux.lu.xml\"><rule from=\"^http://(?:www\\.)?linux\\.lu/\" to=\"https://www.lilux.lu/\"/><rule from=\"^http://(www\\.)?udpcast\\.linux\\.lu/\" to=\"https://$1udpcast.linux.lu/\"/></ruleset>", "<ruleset name=\"Linux.org.au (problematic)\" default_off=\"expired, self-signed\" f=\"Linux.org.au-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.org.au\" f=\"Linux.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://linux\\.org\\.au/\" to=\"https://www.linux.org.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.org.ru\" f=\"Linux.org.ru.xml\"><securecookie host=\"^www\\.linux\\.org\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxDays.cz\" f=\"LinuxDays.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxFR.org\" f=\"LinuxFR.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxFound.info\" f=\"LinuxFound.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Foundation.org (partial)\" f=\"LinuxFoundation.xml\"><exclusion pattern=\"^http://collabprojects\\.linuxfoundation\\.org/+(?!sites/)\"/><exclusion pattern=\"^http://events(?:stg)?\\.linuxfoundation\\.org/+(?!sites/)\"/><exclusion pattern=\"^http://www\\.linuxfoundation\\.org/(?!about/join/individual(?:$|[?/])|cas\\?|misc/|sites/|user(?:$|\\?))\"/><securecookie host=\"^(?!collabprojects\\.|events\\.).\" name=\".\"/><rule from=\"^http://go\\.linuxfoundation\\.org/+(?:\\?.*)?$\" to=\"https://www.linuxfoundation.org/\"/><rule from=\"^http://go\\.linuxfoundation\\.org/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux-MIPS.org (partial)\" default_off=\"missing certificate chain\" f=\"LinuxMIPS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxMusicians.com\" f=\"LinuxMusicians.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxQuestions.org (partial)\" f=\"LinuxQuestions.xml\"><securecookie host=\"^www\\.linuxquestions\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?linuxquestions\\.org/\" to=\"https://$1linuxquestions.org/\"/><rule from=\"^http://static\\.linuxquestions\\.org/\" to=\"https://lqo-thequestionsnetw.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"LinuxTV.org\" f=\"LinuxTV.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxTag.org\" platform=\"cacert\" f=\"LinuxTag.org.xml\"><securecookie host=\"^www\\.linuxtag\\.org$\" name=\".+\"/><rule from=\"^http://linuxtag\\.org/\" to=\"https://www.linuxtag.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Academy.com\" f=\"Linux_Academy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Cloud VPS.com\" f=\"Linux_Cloud_VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Containers.org\" f=\"Linux_Containers.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Distro Community.com\" f=\"Linux_Distro_Community.com.xml\"><securecookie host=\"^\\.bbs\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Forums (partial)\" default_off=\"expired\" f=\"Linux_Forums.xml\"><securecookie host=\"^(?:w*\\.)?linuxforums\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Game Publishing (partial)\" default_off=\"failed ruleset test\" f=\"Linux_Game_Publishing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Luddites.com\" f=\"Linux_Luddites.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.linuxluddites\\.com/\" to=\"https://linuxluddites.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Voice.com (partial)\" default_off=\"mismatched, self-signed\" f=\"Linux_Voice.com.xml\"><rule from=\"^http://(?:www\\.)?linuxvoice\\.com/\" to=\"https://www.linuxvoice.com/\"/></ruleset>", "<ruleset name=\"Linux control panel.co.uk\" f=\"Linux_control_panel.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxaria.com\" f=\"Linuxaria.com.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?linuxaria\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?linuxaria\\.com/\" to=\"https://$1linuxaria.com/\"/><rule from=\"^https?://cdn\\.linuxaria\\.com/\" to=\"https://d2lwstdywzrz5c.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Linuaudio.org (partial)\" default_off=\"self-signed\" f=\"Linuxaudio.org.xml\"><securecookie host=\"^\\.linuxaudio\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?linuxaudio\\.org/\" to=\"https://linuxaudio.org/\"/></ruleset>", "<ruleset name=\"linuxhostsupport.com\" f=\"Linuxhostsupport.com.xml\"><securecookie host=\"^linuxhostsupport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxjournal.com\" f=\"Linuxjournal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxlovers.at (false MCB)\" platform=\"mixedcontent\" f=\"Linuxlovers.at-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxlovers.at (partial)\" f=\"Linuxlovers.at.xml\"><exclusion pattern=\"^http://wiki\\.linuxlovers\\.at/+(?!lib/)\"/><securecookie host=\"^git\\.linuxlovers\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxmonk.ch\" f=\"Linuxmonk.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxpl.com (partial)\" f=\"Linuxpl.com.xml\"><securecookie host=\"^(?:(?:support|webftp|www)\\.)?linuxpl\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|support|webftp|www)\\.)?linuxpl\\.com/\" to=\"https://$1linuxpl.com/\"/></ruleset>", "<ruleset name=\"Linuxserver.io\" f=\"Linuxserver.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxslut.net\" default_off=\"failed ruleset test\" f=\"Linuxslut.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxwall.info (partial)\" f=\"Linuxwall.info.xml\"><rule from=\"^http://www\\.linuxwall\\.info/\" to=\"https://linuxwall.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lippincott Williams & Wilkins (partial)\" f=\"Lippincott_Williams_and_Wilkins.xml\"><securecookie host=\"^www\\.lww\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lww\\.com/\" to=\"https://www.lww.com/\"/><rule from=\"^http://journals\\.lww\\.com/(?=_LAYOUTS/|_layouts/|WebResource\\.axd|\\w+/(?:_layouts|PublishingImages|Style\\ Library)/)\" to=\"https://journals.lww.com/\"/></ruleset>", "<ruleset name=\"Lippincott Williams & Wilkins (problematic)\" default_off=\"mismatch\" f=\"Lippincott_Williams_and_Wilkins_problematic.xml\"><securecookie host=\"^images\\.journals\\.lww\\.com$\" name=\".+\"/><rule from=\"^http://images\\.journals\\.lww\\.com/\" to=\"https://images.journals.lww.com/\"/></ruleset>", "<ruleset name=\"Lippupiste Oy\" default_off=\"failed ruleset test\" f=\"Lippupiste_Oy.xml\"><securecookie host=\"^.*\\.lippu\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:eventim|lippu)\\.fi/\" to=\"https://www.lippu.fi/\"/><rule from=\"^http://secure\\.lippu\\.fi/\" to=\"https://secure.lippu.fi/\"/></ruleset>", "<ruleset name=\"Lipreading.org\" f=\"Lipreading.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiqD.net\" f=\"LiqD.net.xml\"><securecookie host=\"^\\.liqd\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liquid Web\" f=\"Liquid-Web.xml\"><securecookie host=\"^(?:.*\\.)?liquidweb\\.com$\" name=\".*\"/><rule from=\"^http://(moya\\.|www\\.)?liquidweb\\.com/\" to=\"https://$1liquidweb.com/\"/><rule from=\"^http://media(?:\\.cdn)?\\.liquidweb\\.com/\" to=\"https://media.liquidweb.com/\"/></ruleset>", "<ruleset name=\"Liquid Light.co.uk\" f=\"Liquid_Light.co.uk.xml\"><securecookie host=\"^www\\.liquidlight\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liquidmatrix.org\" default_off=\"failed ruleset test\" f=\"Liquidmatrix.org.xml\"><securecookie host=\"^\\.liquidmatrix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"list-manage.com\" f=\"List-manage.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.us(\\d+)\\.list-manage\\.com/\" to=\"https://$1.us$2.list-manage.com/\"/></ruleset>", "<ruleset name=\"list-manage2.com\" f=\"List-manage2.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.us(\\d+)\\.list-manage2\\.com/\" to=\"https://$1.us$2.list-manage.com/\"/></ruleset>", "<ruleset name=\"List.ru\" f=\"List.ru.xml\"><rule from=\"^http://(?:\\w\\w\\.){0,4}top\\.list\\.ru/\" to=\"https://top-fwz1.mail.ru/\"/></ruleset>", "<ruleset name=\"Listbox\" f=\"Listbox.xml\"><securecookie host=\"^\\.listbox\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Listener.co.nz\" default_off=\"failed ruleset test\" f=\"Listener.co.nz.xml\"><securecookie host=\"^www\\.listener\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?listener\\.co\\.nz/\" to=\"https://www.listener.co.nz/\"/></ruleset>", "<ruleset name=\"Listener Approved\" default_off=\"failed ruleset test\" f=\"Listener_Approved.xml\"><securecookie host=\"^\\.listenerapproved.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Listonic (partial)\" f=\"Listonic.xml\"><rule from=\"^http://(www\\.)?listonic\\.com/(en-us/WebResource\\.axd|(?:en-us/)?login(?:$|\\?))\" to=\"https://www.listonic.com/$1\"/><rule from=\"^http://static\\.listonic\\.com/contentv2/\" to=\"https://www.listonic.com/Static/\"/></ruleset>", "<ruleset name=\"ListrakBI.com\" f=\"ListrakBI.com.xml\"><securecookie host=\".*\\.listrakbi\\.com$\" name=\".+\"/><rule from=\"^http://((?:a[lt]|s|sca)\\d*|www)\\.listrakbi\\.com/\" to=\"https://$1.listrakbi.com/\"/></ruleset>", "<ruleset name=\"LitHive.com\" f=\"LitHive.com.xml\"><securecookie host=\"^\\.lithive\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://(?:www\\.)?lithive\\.com/\" to=\"https://lithive.com/\"/></ruleset>", "<ruleset name=\"LiteBit.eu\" f=\"LiteBit.eu.xml\"><securecookie host=\"^(?:\\.|www\\.)?litebit\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiteHosting.org (partial)\" default_off=\"connection refused\" f=\"LiteHosting.org.xml\"><rule from=\"^http://(www\\.)?litehosting\\.org/(API/|(?:cart|clientarea|serverstatus)\\.php|images/|sitemap\\.xml|templates/)\" to=\"https://$1litehosting.org/$2\"/></ruleset>", "<ruleset name=\"LiteSpeed Technologies (mismatches)\" default_off=\"mismatched\" f=\"LiteSpeed-Technologies-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?litespeedtech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?litespeedtech\\.com/\" to=\"https://www.litespeedtech.com/\"/></ruleset>", "<ruleset name=\"LiteSpeed Technologies (partial)\" f=\"LiteSpeed-Technologies.xml\"><securecookie host=\"^store\\.litespeedtech\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.litespeedtech\\.com/wp-content/themes/litespeed/litespeed/\" to=\"https://store.litespeedtech.com/store/templates/litespeedv4/images/\"/><rule from=\"^http://store\\.litespeedtech\\.com/\" to=\"https://store.litespeedtech.com/\"/></ruleset>", "<ruleset name=\"LiteTree.com\" default_off=\"failed ruleset test\" f=\"LiteTree.com.xml\"><securecookie host=\"^\\.litetree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"liteaddress.org\" f=\"Liteaddress.org.xml\"><securecookie host=\"^\\.liteaddress\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litecoin.info\" f=\"Litecoin.info.xml\"><securecookie host=\"^\\.?litecoin\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?litecoin\\.info/\" to=\"https://litecoin.info/\"/></ruleset>", "<ruleset name=\"Litecoin.org\" f=\"Litecoin.org.xml\"><securecookie host=\"^\\.litecoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litecoin24.nl\" f=\"Litecoin24.nl.xml\"><securecookie host=\"^(?:\\.|www\\.)?litecoin24\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LitecoinTalk.org\" f=\"LitecoinTalk.org.xml\"><securecookie host=\"^\\.?litecointalk\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litecoinlocal.net\" f=\"Litecoinlocal.net.xml\"><securecookie host=\"^(?:www)?\\.litecoinlocal\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Literature and Latte.com\" f=\"Literature_and_Latte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Literotica.com (partial)\" f=\"Literotica.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lithium clients\" default_off=\"mismatched\" f=\"Lithium-clients.xml\"><exclusion pattern=\"^http://discussions\\.nokia\\.co\\.uk/html/images/\"/><exclusion pattern=\"^http://businessforums\\.verizon\\.net/html/\"/><securecookie host=\"^discussions\\.nokia\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^businessforums\\.verizon\\.net$\" name=\".+\"/><rule from=\"^http://discussions\\.nokia\\.co\\.uk/\" to=\"https://discussions.nokia.co.uk/\"/><rule from=\"^http://businessforums\\.verizon\\.net/\" to=\"https://businessforums.verizon.net/\"/></ruleset>", "<ruleset name=\"Lithium.com (partial)\" f=\"Lithium.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://spark\\.lithium\\.com/[^?]*\" to=\"https://www.lithium.com/lithium-social-media-monitoring\"/><rule from=\"^http://((?:community|\\w+\\.i|lithosphere|www)\\.)?lithium\\.com/\" to=\"https://$1lithium.com/\"/></ruleset>", "<ruleset name=\"Litle.com (partial)\" f=\"Litle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litmus.com\" f=\"Litmus.com.xml\"><rule from=\"^http://((?:api|signup|status|www)\\.)?litmus\\.com/\" to=\"https://$1litmus.com/\"/></ruleset>", "<ruleset name=\"LitmusCDN.com\" f=\"LitmusCDN.com.xml\"><rule from=\"^http://(img|style)\\.litmuscdn\\.com/\" to=\"https://$1.litmuscdn.com/\"/></ruleset>", "<ruleset name=\"Littler.com (partial)\" f=\"Litter.com.xml\"><rule from=\"^http://(?:www\\.)?littler\\.com/(favicon\\.ico|files/|sites/)\" to=\"https://www.littler.com/$1\"/></ruleset>", "<ruleset name=\"Little Hotelier (partial)\" f=\"Little-Hotelier.xml\"><securecookie host=\"^(apac|app|emea)\\.littlehotelier\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"little.my\" f=\"Little.my.xml\"><securecookie host=\"^\\.little\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LittleSis.org\" f=\"LittleSis.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Little CMS.com\" default_off=\"mismatched\" f=\"Little_CMS.com.xml\"><rule from=\"^http://(?:www\\.)?littlecms\\.com/\" to=\"https://www.littlecms.com/\"/></ruleset>", "<ruleset name=\"littlesvr.ca\" default_off=\"self-signed\" f=\"Littlesvr.ca.xml\"><rule from=\"^http://(?:www\\.)?littlesvr\\.ca/\" to=\"https://littlesvr.ca/\"/></ruleset>", "<ruleset name=\"Liv.ac.uk (partial)\" f=\"Liv.ac.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?liv\\.ac\\.uk/+~\"/><rule from=\"^http://(?:www\\.)?liv\\.ac\\.uk/\" to=\"https://www.liv.ac.uk/\"/><rule from=\"^http://(people|staff|student)\\.liv\\.ac\\.uk/\" to=\"https://$1.liv.ac.uk/\"/></ruleset>", "<ruleset name=\"LiveChat Inc.com (partial)\" f=\"Live-Chat.xml\"><exclusion pattern=\"^http://www\\.livechatinc\\.com/(?!signup/|wp-content/)\"/><securecookie host=\".+\\.livechatinc\\.com$\" name=\".*\"/><rule from=\"^http://status\\.livechatinc\\.com/\" to=\"https://livechat.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Nation Entertainment (partial)\" platform=\"mixedcontent\" f=\"Live-Nation.xml\"><securecookie host=\"^(?:.*\\.)?getmein\\.com$\" name=\".+\"/><securecookie host=\"^\\.ticketmaster\\.com$\" name=\"^s_v\\w$\"/><securecookie host=\"^www1?\\.(?:fr\\.|nl\\.)?livenation\\.(?:\\w\\w|co\\.jp|co\\.uk|com\\.au)\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getmein\\.com/\" to=\"https://www.getmein.com/\"/><rule from=\"^http://secure\\.getmein\\.com/\" to=\"https://secure.getmein.com/\"/><rule from=\"^http://(?:www(1)?\\.)?livenation\\.(ae|asia|co\\.jp|co\\.uk|com\\.au|cz|dk|es|fi|fr|hu|it|kr|nl|no|pl|se)/\" to=\"https://www$1.livenation.$2/\"/><rule from=\"^http://(www1\\.)?(fr|nl)\\.livenation\\.be/\" to=\"https://$1$2.livenation.be/\"/><rule from=\"^http://(?:www\\.)?livenation\\.com/(favicon-ln\\.ico|ln/)\" to=\"https://www.livenation.com/$1\"/><rule from=\"^http://ads\\.livenation\\.com/\" to=\"https://de.livenation.com/\"/><rule from=\"^http://concerts\\.livenation\\.com/(?!$|concerts)\" to=\"https://concerts.livenation.com/\"/></ruleset>", "<ruleset name=\"Live.net\" f=\"Live.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live.com\" f=\"Live.xml\"><securecookie host=\"^\\.?(?:account|consent|people\\.directory|(?:login\\.)?domains|login|mail|messenger|postmaster|profile|signup)\\.live\\.com$\" name=\".+\"/><rule from=\"^http://live\\.com/\" to=\"https://www.live.com/\"/><rule from=\"^http://[^@:/.]+\\.([^@:/.]+)\\.mail\\.live\\.com/\" to=\"https://$1.mail.live.com/\"/><rule from=\"^http://sc[34]\\.maps\\.live\\.com/\" to=\"https://sc1.maps.live.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LAdesk.com\" f=\"LiveAgent.xml\"><securecookie host=\"^(?:www\\.)?ladesk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveChat Inc.net\" f=\"LiveChat_Inc.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveCorp.com.au (partial)\" f=\"LiveCorp.xml\"><exclusion pattern=\"^http://www\\.livecorp\\.com\\.au/+(?!App_Themes/|favicon\\.ico|LC/|getmedia/|(?:sp/)?register(?:$|\\?))\"/><rule from=\"^http://livecorp\\.com\\.au/\" to=\"https://www.livecorp.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LI.ru (partial)\" f=\"LiveInternet-falsemixed.xml\"><rule from=\"^http://(?:i\\.|www\\.)?li\\.ru/\" to=\"https://www.liveinternet.ru/\"/></ruleset>", "<ruleset name=\"LiveInternet.ru (partial)\" f=\"LiveInternet.xml\"><securecookie host=\"^(?:g|www)\\.liveinternet\\.ru$\" name=\".+\"/><rule from=\"^http://liveinternet\\.ru/\" to=\"https://www.liveinternet.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveJasmin (partial)\" f=\"LiveJasmin.xml\"><rule from=\"^http://new\\.livejasmin\\.com/en/auth/([\\w\\-]+)($|\\?)\" to=\"https://new.livejasmin.com/en/auth/$1$2\"/><rule from=\"^http://static\\d\\.new\\.livejasmincdn\\.com/\" to=\"https://new.livejasmin.com/\"/></ruleset>", "<ruleset name=\"LiveJournal (buggy)\" default_off=\"breaks for non-logged-in users\" f=\"LiveJournal-problematic.xml\"><rule from=\"^http://(?:www\\.)?livejournal\\.com/\" to=\"https://www.livejournal.com/\"/></ruleset>", "<ruleset name=\"LiveJournal (partial)\" f=\"LiveJournal.xml\"><rule from=\"^http://(www\\.)?livejournal\\.com/(?=(?:changepassword|create|login)\\.html|manage/|shop/)\" to=\"https://$1livejournal.com/\"/><rule from=\"^http://status\\.livejournal\\.com/img/\" to=\"https://s3.amazonaws.com/status-livejournal/img/\"/><rule from=\"^http://(?:l-)stat\\.livejournal\\.com/img/error-pages/(?=bg-error-page\\.jpg|bullet-round-grey\\.gif|frank\\.png|logo-lj\\.png|rule-grey\\.gif)\" to=\"https://s3.amazonaws.com/status-livejournal/img/\"/><rule from=\"^http://(?:l-)?stat\\.livejournal\\.com/\" to=\"https://stat.livejournal.com/\"/></ruleset>", "<ruleset name=\"LiveMeme (partial)\" f=\"LiveMeme.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson.net\" f=\"LivePerson.net.xml\"><securecookie host=\".*\\.liveperson\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson (partial)\" platform=\"mixedcontent\" f=\"LivePerson.xml\"><securecookie host=\"^hc2\\.humanclick\\.com$\" name=\".+\"/><securecookie host=\".*\\.liveperson\\.com$\" name=\".+\"/><rule from=\"^http://liveperson\\.hosted\\.jivesoftware\\.com/\" to=\"https://community.liveperson.net/\"/><rule from=\"^http://liveperson\\.com/\" to=\"https://www.liveperson.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveRail (problematic)\" default_off=\"mismatch\" f=\"LiveRail-problematic.xml\"><rule from=\"^http://(?:cdn-)?static\\.liverail\\.com/\" to=\"https://cdn-static.liverail.com/\"/></ruleset>", "<ruleset name=\"LiveRail.com (partial) \" f=\"LiveRail.xml\"><exclusion pattern=\"^http://lp\\.liverail\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^(?:platform4)?\\.liverail\\.com$\" name=\".+\"/><rule from=\"^http://lp\\.liverail\\.com/\" to=\"https://na-n.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveRamp.com (partial)\" f=\"LiveRamp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveWyer.com\" f=\"LiveWyer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveZilla.net (partial)\" f=\"LiveZilla.net.xml\"><securecookie host=\"^www\\.livezilla\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Business Chat.com\" f=\"Live_Business_Chat.com.xml\"><rule from=\"^http://www\\.livebusinesschat\\.com/\" to=\"https://www.livebusinesschat.com/\"/></ruleset>", "<ruleset name=\"Live Lingua.com\" f=\"Live_Lingua.com.xml\"><securecookie host=\"^www\\.livelingua\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Strong.com (partial)\" platform=\"mixedcontent\" f=\"Live_Strong.com.xml\"><securecookie host=\"^(?:.*\\.)?livestrong\\.org$\" name=\".+\"/><rule from=\"^http://(?:livestrong\\.com|i\\.lsimg\\.net)/\" to=\"https://www.livestrong.com/\"/><rule from=\"^http://www\\.livestrong\\.com/(login/|remind/|register/|shop(?:$|\\?))\" to=\"https://www.livestrong.com/$1\"/></ruleset>", "<ruleset name=\"Live filestore.com\" f=\"Live_filestore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liveclicker.com\" f=\"Liveclicker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liveclicker.net\" f=\"Liveclicker.net.xml\"><rule from=\"^http://ecdn\\.liveclicker\\.net/\" to=\"https://ecdn.liveclicker.net/\"/></ruleset>", "<ruleset name=\"Livecoding.tv (partial)\" f=\"Livecoding.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livefyre (mismatches)\" default_off=\"mismatch\" f=\"Livefyre-mismatches.xml\"><exclusion pattern=\"^http://press\\.livefyre\\.com/$\"/><rule from=\"^http://blog\\.livefyre\\.com/wp-content/\" to=\"https://blog.livefyre.com/wp-content/\"/><rule from=\"^http://press\\.livefyre\\.com/\" to=\"https://press.livefyre.com/\"/></ruleset>", "<ruleset name=\"Livefyre.com (partial)\" f=\"Livefyre.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livefyre (partial)\" default_off=\"Breaks comments\" f=\"Livefyre.xml\"><securecookie host=\"^\\.livefyre\\.co$\" name=\".+\"/><rule from=\"^http://avatars\\.fyre\\.co/\" to=\"https://dpstvy7p9whsy.cloudfront.net/\"/><rule from=\"^http://(?:zor\\.fyre\\.co|(?:www\\.|zor\\.)?livefyre\\.com)/\" to=\"https://d584h2bjreb1u.cloudfront.net/\"/><rule from=\"^http://3d88duefqgf2d7l2p18hja4194m\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://livefyre.wpengine.com/\"/></ruleset>", "<ruleset name=\"Livermore's Centennial Light Live Cam\" default_off=\"expired, self-signed\" f=\"Livermores-Centennial-Light-Live-Cam.xml\"><rule from=\"^http://(?:www\\.)?centennialbulb\\.org/\" to=\"https://centennialbulb.org/\"/></ruleset>", "<ruleset name=\"Liverpool Victoria (partial)\" f=\"Liverpool_Victoria.xml\"><securecookie host=\"^www\\.lv\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lv\\.com/\" to=\"https://www.lv.com/\"/></ruleset>", "<ruleset name=\"livechatserver.com\" f=\"Livestatserver.com.xml\"><rule from=\"^http://(?:noc|ssl|staging|w1)\\.livechatserver\\.com/\" to=\"https://ssl.livechatserver.com/\"/></ruleset>", "<ruleset name=\"Livestock Transport\" default_off=\"failed ruleset test\" f=\"Livestock-Transport.xml\"><securecookie host=\"^(?:www\\.)?livestock-transport\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livestream.com\" f=\"Livestream.xml\"><securecookie host=\"^.*\\.livestream\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livestrong (partial)\" default_off=\"redirect loop\" f=\"Livestrong.xml\"><securecookie host=\"^(?:.*\\.)?livestrong\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivingSocial.co.uk\" f=\"LivingSocial.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivingSocial.com (partial)\" f=\"LivingSocial.xml\"><securecookie host=\"^(?:mailtracker|merchant|pipeline|sherlock|www)?\\.livingsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Living Routes.org (false MCB)\" platform=\"mixedcontent\" f=\"Living_Routes.org.xml\"><securecookie host=\"^(?:www)?\\.livingroutes\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"liwenhaosuper.com\" default_off=\"expired, mismatched, self-signed\" f=\"Liwenhaosuper.com.xml\"><securecookie host=\"^(?:www\\.)?liwenhaosuper\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?liwenhaosuper\\.com/\" to=\"https://liwenhaosuper.com/\"/></ruleset>", "<ruleset name=\"liz denys.com\" f=\"Liz_denys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lizard Wrangler.com (partial)\" f=\"Lizard_Wrangler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LJR\" default_off=\"failed ruleset test\" f=\"Lj.Rossia.Org.xml\"><rule from=\"^http://lj\\.rossia\\.org/\" to=\"https://lj.rossia.org/\"/></ruleset>", "<ruleset name=\"Lloyds TSB Offshore\" default_off=\"failed ruleset test\" f=\"Lloyds_TSB_Offshore.xml\"><securecookie host=\"^www\\.lloydstsb-offshore\\.com$\" name=\".+\"/><rule from=\"^http://online-offshore\\.lloydstsb\\.com/\" to=\"https://online-offshore.lloydstsb.com/\"/><rule from=\"^http://(?:www\\.)?lloydstsb-offshore\\.com/\" to=\"https://www.lloydstsb-offshore.com/\"/></ruleset>", "<ruleset name=\"Lloydsbank.com\" f=\"Lloydsbank.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LmnCDN.com\" f=\"LmnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lnked.In\" f=\"Lnkd.In.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoA.org\" f=\"LoA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoC.gov (partial)\" f=\"LoC.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoadImpact.com\" f=\"LoadImpact.com.xml\"><securecookie host=\"^loadimpact\\.com$\" name=\".+\"/><rule from=\"^http://www\\.loadimpact\\.com/\" to=\"https://loadimpact.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Load Average.org\" f=\"Load_Average.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loan Science\" f=\"Loan_Science.xml\"><securecookie host=\"^\\.loanscience\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?loanscience\\.com/\" to=\"https://www.loanscience.com/\"/></ruleset>", "<ruleset name=\"Loanliner.com\" default_off=\"failed ruleset test\" f=\"Loanliner.com.xml\"><securecookie host=\"^(?:www\\.)?loanliner\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?loanliner\\.com/\" to=\"https://www.loanliner.com/\"/></ruleset>", "<ruleset name=\"Lob.com\" default_off=\"failed ruleset test\" f=\"Lob.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lobste.rs\" f=\"Lobste.rs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Locaid (partial)\" default_off=\"failed ruleset test\" f=\"Locaid.xml\"><securecookie host=\"^instantlocatedemo\\.loc-aid\\.com$\" name=\".+\"/><rule from=\"^http://instantlocatedemo\\.loc-aid\\.com/\" to=\"https://instantlocatedemo.loc-aid.com/\"/></ruleset>", "<ruleset name=\"Local.ch\" f=\"Local.ch.xml\"><securecookie host=\"^\\.local\\.ch$\" name=\"^l(?:ang|cl_session_1_production)$\"/><rule from=\"^http://static\\.blog\\.local\\.ch/\" to=\"https://s3-eu-west-1.amazonaws.com/static.blog.local.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local (partial)\" f=\"Local.xml\"><rule from=\"^http://sifomedia\\.thelocal\\.se/\" to=\"https://oasc16.247realmedia.com/\"/><rule from=\"^http://d\\.thelocal\\.com/\" to=\"https://thelocal-d3.openxenterprise.com/\"/></ruleset>", "<ruleset name=\"LocalEdge (partial)\" platform=\"mixedcontent\" f=\"LocalEdge.xml\"><securecookie host=\"^.*\\.localedge\\.com$\" name=\".*\"/><rule from=\"^http://((?:extranet|sso|static|www)\\.)?localedge\\.com/\" to=\"https://$1localedge.com/\"/><rule from=\"^http://(?:images\\.|www\\.)?talkingphonebook\\.com/\" to=\"https://www.localedge.com/\"/></ruleset>", "<ruleset name=\"Local Media.org\" f=\"Local_Media.org.xml\"><securecookie host=\"^www\\.localmedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"localbitcoins.com\" f=\"Localbitcoins.com.xml\"><securecookie host=\"^(?:w*\\.)?localbitcoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localist.com (partial)\" f=\"Localist.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images-www\\.localist\\.com/\" to=\"https://d3o66cj8sacbos.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Locaweb (partial)\" f=\"Locaweb.xml\"><securecookie host=\"^.+\\.locaweb\\.com\\.br$\" name=\".+\"/><rule from=\"^http://(blog|developer|forum|painel|press|site|statusblog)\\.locaweb\\.com\\.br/\" to=\"https://$1.locaweb.com.br/\"/></ruleset>", "<ruleset name=\"Lockbox.com\" default_off=\"failed ruleset test\" f=\"Lockbox.com.xml\"><rule from=\"^http://(support\\.|www\\.)?lockbox\\.com/\" to=\"https://$1lockbox.com/\"/><rule from=\"^http://client\\.lock-box\\.net/\" to=\"https://client.lock-box.net/\"/></ruleset>", "<ruleset name=\"LockerDome.com\" f=\"LockerDome.com.xml\"><rule from=\"^http://(cdn2?\\.|www\\.)?lockerdome\\.com/\" to=\"https://$1lockerdome.com/\"/></ruleset>", "<ruleset name=\"Lockerz (partial)\" default_off=\"failed ruleset test\" f=\"Lockerz.xml\"><rule from=\"^http://shop\\.lockerz\\.com/\" to=\"https://shop.lockerz.com/\"/><rule from=\"^http://static\\.lockerz\\.com/\" to=\"https://d8o6wu1tc2zf3.cloudfront.net/\"/><rule from=\"^http://support\\.lockerz\\.com/generated/\" to=\"https://generated.zendesk.com/generated/\"/><rule from=\"^http://api\\.plixi\\.com/\" to=\"https://api.plixi.com/\"/></ruleset>", "<ruleset name=\"Loctudy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Loctudy.xml\"><securecookie host=\"^www\\.loctudy\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?loctudy\\.fr/\" to=\"https://www.loctudy.fr/\"/></ruleset>", "<ruleset name=\"LogMe.In (partial)\" f=\"LogMe.In.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn (mismatches)\" default_off=\"mismatched\" f=\"LogMeIn-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn.com (partial)\" f=\"LogMeIn.xml\"><securecookie host=\"^(?:content|\\.?investor|secure)?\\.logmein\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn Inc.com (partial)\" f=\"LogMeIn_Inc.com.xml\"><securecookie host=\"^investor\\.logmeininc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn Rescue.com (partial)\" f=\"LogMeIn_Rescue.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoganCIJ\" f=\"LoganCIJ.com.xml\"><rule from=\"^http://www\\.logancij\\.com/\" to=\"https://logancij.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logentries.com (partial)\" f=\"Logentries.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loggly.com\" f=\"Loggly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"loggn.de\" f=\"Loggn.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogicBox Software\" f=\"LogicBox_Software.xml\"><securecookie host=\".+\\.logicboxsoftware\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?logicboxsoftware\\.com/\" to=\"https://$1logicboxsoftware.com/\"/></ruleset>", "<ruleset name=\"Logika.net\" f=\"Logika.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logilab (self-signed)\" default_off=\"self-signed\" f=\"Logilab-self-signed.xml\"><rule from=\"^http://(?:www\\.)?logilab\\.org/data/\" to=\"https://www.logilab.org/data/\"/></ruleset>", "<ruleset name=\"Logilab (partial)\" f=\"Logilab.xml\"><securecookie host=\"^(?:.*\\.)?logilab\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?logilab\\.fr/data/\" to=\"https://www.logilab.fr/data/\"/><rule from=\"^http://piwik\\.logilab\\.fr/\" to=\"https://piwik.logilab.fr/\"/></ruleset>", "<ruleset name=\"Loginza.ru\" f=\"Loginza.ru.xml\"><securecookie host=\"^(?:www\\.)?loginza\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logitech.com (partial)\" f=\"Logitech.com.xml\"><exclusion pattern=\"^http://(?:origin2\\.|www\\.)?logitech\\.com/+(?!\\w\\w-\\w+(?:$|[?/])||assets/|images/|js/|styles/)\"/><securecookie host=\"^(?:buy|forums|secure)\\.logitech\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:origin2|secure|www)\\.)?logitech\\.com/\" to=\"https://secure.logitech.com/\"/><rule from=\"^http://(alert|buy|forums|register)\\.logitech\\.com/\" to=\"https://$1.logitech.com/\"/></ruleset>", "<ruleset name=\"LogoYes\" f=\"LogoYes.xml\"><securecookie host=\"^logoyes\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?logoyes\\.com/\" to=\"https://logoyes.com/\"/></ruleset>", "<ruleset name=\"Logotype.se\" f=\"Logotype.se.xml\"><securecookie host=\"^logotype\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lohud.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lohud.com.xml\"><securecookie host=\"^(?:www)?\\.lohud\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?lohud\\.com/\" to=\"https://www.lohud.com/\"/></ruleset>", "<ruleset name=\"Lokun.is\" f=\"Lokun.is.xml\"><securecookie host=\"^(?:www\\.)?lokun\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lokus.no\" f=\"Lokus.no.xml\"><securecookie host=\"^www\\.lokus\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lokus\\.no/\" to=\"https://www.lokus.no/\"/></ruleset>", "<ruleset name=\"Lokus.se (partial)\" f=\"Lokus.se.xml\"><securecookie host=\"^\\.lokus\\.se$\" name=\"^(?:NXCLICK2|OAX)\"/><securecookie host=\"^secure\\.lokus\\.se$\" name=\".+\"/><rule from=\"^http://secure\\.lokus\\.se/\" to=\"https://secure.lokus.se/\"/><rule from=\"^http://sifomedia\\.lokus\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"Lolagrove.com\" f=\"Lolagrove.com.xml\"><securecookie host=\"^v3\\.lolagrove\\.com$\" name=\".+\"/><rule from=\"^http://lolagrove\\.com/\" to=\"https://www.lolagrove.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lolnet.org\" platform=\"cacert\" f=\"Lolnet.org.xml\"><rule from=\"^http://lolnet\\.org/\" to=\"https://www.lolnet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lolware.net\" f=\"Lolware.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"londit.com (partial)\" f=\"Londit.com.xml\"><securecookie host=\"^manager\\.londit\\.com$\" name=\".+\"/><rule from=\"^http://manager\\.londit\\.com/\" to=\"https://manager.londit.com/\"/></ruleset>", "<ruleset name=\"London 2012 (mismatches)\" default_off=\"mismatch\" f=\"London-2012-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?londonpreparesseries\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?londonpreparesseries\\.com/\" to=\"https://www.londonpreparesseries.com/\"/></ruleset>", "<ruleset name=\"London 2012\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"London-2012.xml\"><exclusion pattern=\"^http://getset\\.london2012\\.com/(?:(?:cy|en)/(?:home)?)?$\"/><securecookie host=\"^(?:(?:festival|www)?\\.)?london2012\\.com$\" name=\".*\"/><rule from=\"^http://london2012\\.com/\" to=\"https://www.london2012.com/\"/><rule from=\"^http://getset\\.london2012\\.com/\" to=\"https://getset.london2012.com/\"/><rule from=\"^http://www\\.festival\\.london2012\\.com/\" to=\"https://festival.london2002.com/\"/><rule from=\"^http://(shop|www)\\.london2012\\.com/\" to=\"https://$1.london2012.com/\"/><rule from=\"^http://tickets\\.london2012\\.com/\" to=\"https://www.tickets.london2012.com/\"/><rule from=\"^http://www\\.tickets\\.london2012\\.com/member\" to=\"https://www.tickets.london2012.com/member\"/></ruleset>", "<ruleset name=\"London-Nano.com\" f=\"London-Nano.com.xml\"><rule from=\"^http://(?:www\\.)?london-nano\\.com/\" to=\"https://www.london-nano.com/\"/></ruleset>", "<ruleset name=\"London School of Economics (partial)\" f=\"London-School-of-Economics.xml\"><rule from=\"^http://www2\\.lse\\.ac\\.uk/(ImagesForExternalHomepage|SiteElements|v4global)/\" to=\"https://www2.lse.ac.uk/$1/\"/></ruleset>", "<ruleset name=\"London School of Hygiene & Tropical Medicine\" default_off=\"failed ruleset test\" f=\"London-School-of-Hygiene-and-Tropical-Medicine.xml\"><rule from=\"^http://lshtm\\.ac\\.uk/\" to=\"https://www.lshtm.ac.uk/\"/><rule from=\"^http://(www|jobs|intra|blogs|forums)\\.lshtm\\.ac\\.uk/\" to=\"https://$1.lshtm.ac.uk/\"/><exclusion pattern=\"^http://blogs\\.lshtm\\.ac\\.uk/(?:spring|csm|crash3|tbsymposium|bcges|pathways|crises|disabilitycentre|itservices|ucu|ghlc|hme|same|genderviolence)/\"/></ruleset>", "<ruleset name=\"London Stock Exchange.com (partial)\" f=\"London-Stock-Exchange.xml\"><exclusion pattern=\"^http://(?:www\\.)?londonstockexchange\\.com/+(?!exchange/user/|global/|media/)\"/><rule from=\"^http://londonstockexchange\\.com/\" to=\"https://www.londonstockexchange.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London.gov.uk\" f=\"London.gov.uk.xml\"><exclusion pattern=\"^http://talklondon\\.london\\.gov\\.uk/+(?!(?:london-survey|user)(?:$|\\?)|misc/|profiles/|sites/)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat|(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+)$\"/><securecookie host=\"^(?!talklondon\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London Drugs\" f=\"LondonDrugs.com.xml\"><securecookie host=\"^(?:www)?(?:\\.)?londondrugs\\.com$\" name=\".+\"/><securecookie host=\"^(?:www)?(?:\\.)?customworks\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London City Airport\" f=\"London_City_Airport.xml\"><securecookie host=\"^(?:.*\\.)?londoncityairport\\.com$\" name=\".+\"/><rule from=\"^http://londoncityairport\\.com/\" to=\"https://www.londoncityairport.com/\"/><rule from=\"^http://([^/:@]+)?\\.londoncityairport\\.com/\" to=\"https://$1.londoncityairport.com/\"/></ruleset>", "<ruleset name=\"London Hackspace\" f=\"London_Hackspace.xml\"><rule from=\"^http://london\\.hackspace\\.org\\.uk/\" to=\"https://london.hackspace.org.uk/\"/><rule from=\"^http://([^/:@]+)?\\.london\\.hackspace\\.org\\.uk/\" to=\"https://$1.london.hackspace.org.uk/\"/></ruleset>", "<ruleset name=\"London Review of Books (partial)\" f=\"London_Review_of_Books.xml\"><rule from=\"^http://(?:www\\.)?lrb\\.co\\.uk/(activate/?(?:$|\\?)|assets/|Shibboleth\\.sso)\" to=\"https://www.lrb.co.uk/$1\"/><rule from=\"^http://cdn\\.lrb\\.co\\.uk/\" to=\"https://d7mx03fbraf30.cloudfront.net/\"/></ruleset>", "<ruleset name=\"London Sock Company.com\" default_off=\"missing certificate chain\" f=\"London_Sock_Company.com.xml\"><rule from=\"^http://londonsockcompany\\.com/\" to=\"https://www.londonsockcompany.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Londonist.com (partial)\" f=\"Londonist.com.xml\"><securecookie host=\"^\\.londonist\\.com$\" name=\"^__qca$\"/><rule from=\"^http://(www\\.)?londonist\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1londonist.com/\"/><rule from=\"^http://cdn\\.londonist\\.com/\" to=\"https://londonist.wpengine.com/\"/></ruleset>", "<ruleset name=\"Lone Survivor.co.uk\" default_off=\"shows default page\" f=\"Lone-Survivor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lone Sysadmin.net\" f=\"Lone_Sysadmin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lonelyplanet.com\" f=\"Lonelyplanet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LongDate.pl (partial)\" f=\"LongDate.pl.xml\"><securecookie host=\"^(?:www\\.)?longdate\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LongTail (partial)\" f=\"LongTail.xml\"><securecookie host=\"^\\w\\.jwpltx\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.longtailvideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Long Access.com (partial)\" f=\"Long_Access.com.xml\"><securecookie host=\"^www\\.longaccess\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?longaccess\\.com/\" to=\"https://www.longaccess.com/\"/><rule from=\"^http://the\\.longaccess\\.com/(?=assets/|blog/2\\d{3}/\\d\\d/\\d\\d/[\\w-]+/\\w+\\.(?:jpe?|pn)g)\" to=\"https://s3.amazonaws.com/the.longaccess.com/\"/></ruleset>", "<ruleset name=\"Long Now.org (partial)\" f=\"Long_Now.org.xml\"><rule from=\"^http://(?:www\\.)?longnow\\.org/(?=media/|membership(?:$|[?/])|static/)\" to=\"https://longnow.org/\"/></ruleset>", "<ruleset name=\"Longform.org\" f=\"Longform.org.xml\"><securecookie host=\"^\\.longform\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?longform\\.org/\" to=\"https://longform.org/\"/></ruleset>", "<ruleset name=\"Look.co.uk (mixed content)\" platform=\"mixedcontent\" f=\"Look.co.uk-mixed.xml\"><exclusion pattern=\"^http://shop\\.look\\.co\\.uk/(?:[\\w-]+\\.css|favicon\\.ico|images/|javascript/)\"/><rule from=\"^http://shop\\.look\\.co\\.uk/\" to=\"https://shop.look.co.uk/\"/></ruleset>", "<ruleset name=\"Look.co.uk (partial)\" f=\"Look.co.uk.xml\"><exclusion pattern=\"^http://comps\\.look\\.co\\.uk/(?!css/|login/embedded/https/)\"/><exclusion pattern=\"^http://shop\\.look\\.co\\.uk/(?![\\w-]+\\.css|favicon\\.ico|images/|javascript/)\"/><securecookie host=\"^\\.(?:comps\\.)?look\\.co\\.uk$\" name=\"^__utm\\w$\"/><rule from=\"^http://(comps|shop)\\.look\\.co\\.uk/\" to=\"https://$1.look.co.uk/\"/></ruleset>", "<ruleset name=\"Look Dumbass (partial)\" default_off=\"mismatched\" f=\"Look_Dumbass.xml\"><rule from=\"^http://cdn0(0|1)\\.lookdumbass\\.com/\" to=\"https://cdn0$1.lookdumbass.com/\"/></ruleset>", "<ruleset name=\"Look to the Stars.org\" f=\"Look_to_the_Stars.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookback.io\" f=\"Lookback.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LookingGlass.email\" f=\"LookingGlass.email.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Looking Local.gov.uk\" f=\"Looking_Local.xml\"><securecookie host=\"^(?:www\\.)?lookinglocal\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookingglass\" f=\"Lookingglass.xml\"><securecookie host=\"^\\.lgscout\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookout.com\" f=\"Lookout.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"looloo.com\" f=\"Looloo.com.xml\"><securecookie host=\"^\\.?looloo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loomio.org (partial)\" f=\"Loomio.org.xml\"><securecookie host=\"^(?:www)?\\.loomio\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoopFuse (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"LoopFuse.xml\"><exclusion pattern=\"^http://(?:www\\.)?loopfuse\\.net/webrecorder/js/listen\\.js\"/><securecookie host=\"^(?:.*\\.)?loopfuse\\.(?:com|net)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?loopfuse\\.(com|net)/\" to=\"https://www.loopfuse.$1/\"/><rule from=\"^http://(blog|community|help)\\.loopfuse\\.com/\" to=\"https://$1.loopfuse.com/\"/></ruleset>", "<ruleset name=\"LoopPay\" f=\"LoopPay.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://looppay\\.com/\" to=\"https://www.looppay.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loopia\" default_off=\"failed ruleset test\" f=\"Loopia.xml\"><exclusion pattern=\"^http://blogg\\.\"/><securecookie host=\"^(?:.*\\.)?loopia\\.se$\" name=\".*\"/><rule from=\"^http://((static|support|webmail|www)\\.)?loopia\\.se/\" to=\"https://$1loopia.se/\"/><rule from=\"^http://loopiasecure\\.com/\" to=\"https://www.loopia.se/\"/></ruleset>", "<ruleset name=\"Loopia secure.com\" f=\"Loopia_secure.com.xml\"><rule from=\"^http://([\\w-]+)\\.loopiasecure\\.com/\" to=\"https://$1.loopiasecure.com/\"/></ruleset>", "<ruleset name=\"Loopt\" default_off=\"failed ruleset test\" f=\"Loopt.xml\"><rule from=\"^http://(?:www\\.)?loopt\\.com/\" to=\"https://www.loopt.com/\"/></ruleset>", "<ruleset name=\"Lords of the Blog\" default_off=\"self-signed\" f=\"Lords-of-the-Blog.xml\"><securecookie host=\"^lordsoftheblog\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lordsoftheblog\\.net/\" to=\"https://lordsoftheblog.net/\"/></ruleset>", "<ruleset name=\"Lorea\" default_off=\"expired\" f=\"Lorea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lorentz Center.nl\" f=\"Lorentz_Center.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Los Angeles Times (partial)\" f=\"Los_Angeles_Times.xml\"><exclusion pattern=\"^http://(?:www\\.)?latimes\\.com/media/photo/\"/><securecookie host=\"^\\.latimes\\.com$\" name=\"^(?:gpv_p\\w|metrics_id|s_\\w+|tribanalyticscookie)$\"/><securecookie host=\"^.+\\.latimes\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?latimes\\.com/(favicon\\.ico|hive/|images/|includes/|media/|stylesheets/)\" to=\"https://secure.latimes.com/$1\"/><rule from=\"^http://(membership|myaccount2|secure)\\.latimes\\.com/\" to=\"https://$1.latimes.com/\"/><rule from=\"^http://circulars\\.latimes\\.com/(assets/|dist_stage/|favicon\\.ico|images/)\" to=\"https://www.flyertown.ca/$1\"/></ruleset>", "<ruleset name=\"Lotame\" f=\"Lotame.xml\"><securecookie host=\"^(?:ad|bcp|meez|multiply|tags)?\\.crwdcntrl\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lotto.de\" f=\"Lotto.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lotus Cars (mismatches)\" default_off=\"mismatch\" f=\"Lotus-Cars-mismatches.xml\"><rule from=\"^http://(?:www\\.)?lotuscars\\.com/\" to=\"https://lotuscars.com/\"/></ruleset>", "<ruleset name=\"Lotus Cars (partial)\" default_off=\"connection refused\" platform=\"mixedcontent\" f=\"Lotus-Cars.xml\"><rule from=\"^http://(?:www\\.)?lotusoriginals\\.com/\" to=\"https://www.lotusoriginals.com/\"/></ruleset>", "<ruleset name=\"Lotus.com (partial)\" f=\"Lotus.xml\"><exclusion pattern=\"^http://www-10\\.lotus\\.com/ldd/(?:ei|lc|ss|st|nd6|nd8|nd85|mc|protector)forum\\.nsf\"/><securecookie host=\"^(?:greenhouse|www-10)\\.lotus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louder Than War.com\" default_off=\"expired, self-signed\" f=\"Louder_Than_War.com.xml\"><securecookie host=\"^\\.?louderthanwar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?louderthanwar\\.com/\" to=\"https://louderthanwar.com/\"/></ruleset>", "<ruleset name=\"Louhi.net (partial)\" f=\"Louhi.net.xml\"><securecookie host=\"^(?:oma|webmail)\\.louhi\\.fi$\" name=\".+\"/><rule from=\"^http://(oma|webmail|whm\\d\\d)\\.louhi\\.net/\" to=\"https://$1.louhi.net/\"/></ruleset>", "<ruleset name=\"Louis Milan\" default_off=\"failed ruleset test\" f=\"Louis_Milan.xml\"><securecookie host=\"^(?:.*\\.)?louismilan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louise Harrison Couture.com\" f=\"Louise_Harrison_Couture.com.xml\"><securecookie host=\"^(?:w*\\.)?louiseharrisoncouture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louisiana State University (problematic)\" default_off=\"mismatched\" f=\"Louisiana_State_University-problematic.xml\"><securecookie host=\"^my\\.lsu\\.edu$\" name=\".+\"/><rule from=\"^http://my\\.lsu\\.edu/\" to=\"https://my.lsu.edu/\"/></ruleset>", "<ruleset name=\"Louisiana State University (partial)\" default_off=\"failed ruleset test\" f=\"Louisiana_State_University.xml\"><exclusion pattern=\"^http://(?:careercenter|(?:www\\.)?(?:bengalbound|cas|deanofstudents|disability|families|family|fye|greeks|sg|sfmc|studentlife))\\.lsu\\.edu/(?!favicon\\.ico|misc/|sites/)\"/><securecookie host=\"^(?:(?:calendar|mylsu|myproxy|web)\\.apps|\\.complaints|courses|\\.grok|sso\\.paws|photo-management|photos|\\.saa|sites01)\\.lsu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lsu\\.edu/\" to=\"https://www.lsu.edu/\"/><rule from=\"^http://appl0(08|37)(?:\\.ocs)?\\.lsu\\.edu/\" to=\"https://appl0$1.lsu.edu/\"/><rule from=\"^http://((?:calendar|careercenter|mylsu|myproxy|web)\\.apps|courses|(?:connect|moodle2|networking)\\.grok|housing|itservice|sso\\.paws|photo-management|photos|jlee\\.saa|sites01|lsumvs\\.sncc|studlife-web1|piwik\\.uss)\\.lsu\\.edu/\" to=\"https://$1.lsu.edu/\"/><rule from=\"^http://(www\\.)?(as|bengalbound|cas|complaints|deanofstudents|disability|fye|greeks|groksaa|sfmc|studentlife)\\.lsu\\.edu/\" to=\"https://$1$2.lsu.edu/\"/><rule from=\"^http://(?:www\\.)?families\\.lsu\\.edu/\" to=\"https://studlife-web1.lsu.edu/\"/><rule from=\"^http://(?:www\\.)?(family|sg)\\.lsu\\.edu/\" to=\"https://$1.lsu.edu/\"/><rule from=\"^http://(?:www\\.)?tigercard\\.lsu\\.edu/\" to=\"https://as.lsu.edu/tigercard\"/></ruleset>", "<ruleset name=\"Lourdas.name\" f=\"Lourdas.name.xml\"><rule from=\"^http://(?:www\\.)?lourdas\\.name/\" to=\"https://www.lourdas.name/\"/></ruleset>", "<ruleset name=\"LoveFilm\" f=\"LoveFilm.xml\"><securecookie host=\"^\\.lovefilm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lovefilm\\.co\\.uk/\" to=\"https://www.lovefilm.com/\"/><rule from=\"^http://(?:www\\.)?lovefilm\\.(com|de|dk|no|se)/\" to=\"https://www.lovefilm.$1/\"/><rule from=\"^http://static\\.lovefilm\\.(com|de|dk|no|se)/\" to=\"https://static.lovefilm.$1/\"/></ruleset>", "<ruleset name=\"LoveHoney (partial)\" f=\"LoveHoney.xml\"><rule from=\"^http://(?:www\\.)?lovehoney\\.co\\.uk/(help/contact-us|your-account)\" to=\"https://www.lovehoney.co.uk/$1\"/></ruleset>", "<ruleset name=\"LovePlanet.ru (partial)\" f=\"LovePlanet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Love 2D.org\" f=\"Love_2D.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Love Our Local Business\" f=\"Love_Our_Local_Business.xml\"><securecookie host=\"^www\\.loveourlocalbusiness\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?loveourlocalbusiness\\.com/\" to=\"https://www.loveourlocalbusiness.com/\"/></ruleset>", "<ruleset name=\"Lovelens\" f=\"Lovelens.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lovemoney.com (partial)\" platform=\"mixedcontent\" f=\"Lovemoney.xml\"><rule from=\"^http://(?:www\\.)?love(food|money)\\.com/(css|favicon\\.ico|[iI]mages/|login/)\" to=\"https://www.love$1.com/$2\"/><rule from=\"^http://energy\\.lovemoney\\.com/Branding/\" to=\"https://energy.lovemoney.com/Branding/\"/><rule from=\"^http://sanalytics\\.lovemoney\\.com/\" to=\"https://sanalytics.lovemoney.com/\"/></ruleset>", "<ruleset name=\"Loverslab.com\" f=\"Loverslab.com.xml\"><securecookie host=\"^(?:www\\.)?loverslab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lovett Publishing House.com\" default_off=\"failed ruleset test\" f=\"Lovett_Publishing_House.com.xml\"><securecookie host=\"^(?:w*\\.)?lovettpublishinghouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lovtidende.dk\" f=\"Lovtidende.dk.xml\"><securecookie host=\"^www\\.lovtidende\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LowPowerLab.com\" f=\"LowPowerLab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lowes.com (partial)\" f=\"Lowes.com.xml\"><exclusion pattern=\"^http://m\\.lowes\\.com/+(?!favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.lowes\\.com/(?!css/|favicon\\.ico|(?:espot/.+/)?images/|etc/|img_savings/|pdf/|UserAccountLanding(?:$|[?/])|wcstore/|webapp/wcs/stores/servlet/UserRegistrationForm)\"/><securecookie host=\"^(?:lwssvcs|pplwssvcs|ppm|www7)\\.lowes\\.com$\" name=\".+\"/><rule from=\"^http://metrics\\.lowes\\.com/\" to=\"https://lowes.d2.sc.omtrdc.net/\"/><rule from=\"^http://lowes\\.com/\" to=\"https://www.lowes.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lowyat.NET (partial)\" f=\"Lowyat.NET.xml\"><securecookie host=\"^\\.forum\\.lowyat\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loyal Forex\" f=\"Loyal_Forex.xml\"><securecookie host=\"^\\.loyalforex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lp0.eu (CAcert)\" platform=\"cacert\" f=\"Lp0.xml\"><rule from=\"^http://(\\w+\\.)?lp0\\.eu/\" to=\"https://$1lp0.eu/\"/></ruleset>", "<ruleset name=\"Lubin 1982\" default_off=\"mismatch\" f=\"Lubin-1982.xml\"><rule from=\"^http://(?:www\\.)?lubin82\\.pl/\" to=\"https://lubin82.pl/\"/></ruleset>", "<ruleset name=\"Lucaspetter.com\" f=\"Lucaspetter.com.xml\"><securecookie host=\"^(?:www)?(?:\\.)?lucaspetter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucid Reverie\" default_off=\"failed ruleset test\" f=\"Lucid-Reverie.xml\"><securecookie host=\"^lrcd\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lrcd\\.com/\" to=\"https://lrcd.com/\"/></ruleset>", "<ruleset name=\"Lucid Media.com (partial)\" f=\"Lucid_Media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucid Solutions.co.nz\" f=\"Lucid_Solutions.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucidchart.com (partial)\" f=\"Lucidchart.com.xml\"><exclusion pattern=\"^http://support\\.lucidchart\\.com/+(?!favicon\\.ico|generated/|images/|system/)\"/><rule from=\"^http://support\\.lucidchart\\.com/\" to=\"https://lucidchart.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucidpress.com (partial)\" f=\"Lucidpress.com.xml\"><exclusion pattern=\"^http://support\\.lucidpress\\.com/+(?!favicon\\.ico|generated/|images/|system/)\"/><securecookie host=\"^www\\.lucidpress\\.com$\" name=\"^.+\"/><rule from=\"^http://support\\.lucidpress\\.com/\" to=\"https://lucidpress.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucina.net\" f=\"Lucina.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucio's Gold\" default_off=\"failed ruleset test\" f=\"Lucios_Gold.xml\"><securecookie host=\"^(?:www)?\\.luciosgold\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucky2u.net\" default_off=\"mismatched\" f=\"Lucky2u.net.xml\"><rule from=\"^http://(?:www\\.)?lucky2u\\.net/\" to=\"https://lucky2u.net/\"/></ruleset>", "<ruleset name=\"LuckyMarmot.com (partial)\" f=\"LuckyMarmot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuckyShare.net\" f=\"LuckyShare.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ludialudom.sk\" f=\"Ludialudom.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ludios.org\" f=\"Ludios.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ludis Media.com\" default_off=\"404\" f=\"Ludis_Media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lufthansa\" f=\"Lufthansa.xml\"><rule from=\"^http://lufthansa\\.com/\" to=\"https://www.lufthansa.com/\"/><rule from=\"^http://([^/:@]+)?\\.lufthansa\\.com/\" to=\"https://$1.lufthansa.com/\"/></ruleset>", "<ruleset name=\"Luleå Municipality\" f=\"Lulea_Municipality.xml\"><securecookie host=\"^(?:www\\.)?lulea\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luleå University of Technology (partial)\" f=\"Lulea_University_of_Technology.xml\"><securecookie host=\"^weblogon\\.ltu\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ltu\\.se/(cms_fs/|css/|easyrec-web/|(?:Header-LTU-7\\.2502|internt)(?:$|\\?|/)|image/|img/|js/)\" to=\"https://www.ltu.se/$1\"/><rule from=\"^http://weblogon\\.ltu\\.se/\" to=\"https://weblogon.ltu.se/\"/></ruleset>", "<ruleset name=\"Lullabot.com\" f=\"Lullabot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lulu (partial)\" f=\"Lulu.xml\"><rule from=\"^http://(www\\.)?lulu\\.com/(login|register)\\.php\" to=\"https://$1lulu.com/$2.php\"/><rule from=\"^http://static\\.lulu\\.com/\" to=\"https://static.lulu.com/\"/></ruleset>", "<ruleset name=\"LulzBot (partial)\" f=\"LulzBot.xml\"><securecookie host=\"\\.lulzbot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumen\" f=\"Lumen.xml\"><securecookie host=\"(^|\\.)lumendatabase\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumension.com (partial)\" f=\"Lumension.com.xml\"><exclusion pattern=\"^http://leic\\.lumensions\\.com/+(?!css/|images/)\"/><securecookie host=\"^\\.lumension\\.com$\" name=\"^_mkto_trk$\"/><rule from=\"^http://((?:portal|sftp|support|www)\\.)?lumension\\.com/\" to=\"https://$1lumension.com/\"/><rule from=\"^http://blog\\.lumension\\.com/favicon\\.ico\" to=\"https://secure.bluehost.com/~lumensio/blog_prod/favicon.ico\"/><rule from=\"^http://blog\\.lumension\\.com/wp-content/\" to=\"https://secure.bluehost.com/~lumensio/blog_prod/wp-content/\"/><rule from=\"^http://my\\.lumension\\.com/+(?:\\?.*)?$\" to=\"https://www.lumension.com/mylumension/mylumension.aspx\"/><rule from=\"^http://my\\.lumension\\.com/+partner_request_form\\.jsp(?:\\??$|(\\?.+))\" to=\"https://www.lumension.com/Partners/Become-A-Lumension-Partner.aspx$1\"/></ruleset>", "<ruleset name=\"Lumesse.com (partial)\" default_off=\"failed ruleset test\" f=\"Lumesse.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumiblade\" default_off=\"failed ruleset test\" f=\"Lumiblade.xml\"><securecookie host=\"^\\.www\\.lumiblade-shop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumigon.com\" f=\"Lumigon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuminoWorld.com (partial)\" default_off=\"failed ruleset test\" f=\"LuminoWorld.com.xml\"><rule from=\"^http://(www\\.)?luminoworld\\.com/(images/|Portals/|scripts/|show(?:Category|Product)Image\\.aspx)\" to=\"https://$1luminoworld.com/$2\"/></ruleset>", "<ruleset name=\"Lumo\" f=\"Lumo.xml\"><securecookie host=\"^lumo\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumosity (partial)\" f=\"Lumosity.xml\"><rule from=\"^http://(www\\.)?lumosity\\.com/((?:contact/billing|gift|login|sign_up)(?:$|[\\?/])|compiled/|favicon\\.ico|images/|stylesheets/)\" to=\"https://$1lumosity.com/$2\"/><rule from=\"^http://static(?:\\.sl)?\\.lumosity\\.com/\" to=\"https://www.lumosity.com/\"/></ruleset>", "<ruleset name=\"Lumovies.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lumovies.com.xml\"><securecookie host=\"^www\\.lumovies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luna Nivius\" default_off=\"failed ruleset test\" f=\"Luna-Nivius.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lunarline.com\" f=\"Lunarline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lundi.am\" f=\"Lundi.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lurkmore.to\" f=\"Lurkmore.to.xml\"><securecookie host=\"^\\.?lurkmo(?:\\.re|re\\.[st]o)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lurkmore\\.to/\" to=\"https://lurkmore.to/\"/><rule from=\"^http://(www\\.)?lurkmo(\\.re|re\\.so)/\" to=\"https://$1lurkmo$2/\"/></ruleset>", "<ruleset name=\"Luvit.io\" f=\"Luvit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuxSci\" platform=\"mixedcontent\" f=\"LuxSci.xml\"><rule from=\"^http://(?:www\\.)?luxhv\\.com/\" to=\"https://luxsci.com/extranet/hvmain.html\"/><rule from=\"^http://(?:(securesend\\.|webmail\\.|xpress\\.)|www\\.)?luxsci\\.com/\" to=\"https://$1luxsci.com/\"/><rule from=\"^http://(?:www\\.)?luxsci\\.mobi/\" to=\"https://luxsci.mobi/\"/></ruleset>", "<ruleset name=\"Luxomo.com\" default_off=\"failed ruleset test\" f=\"Luxomo.com.xml\"><securecookie host=\"^\\.www\\.luxomo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luxury Custom Wheels\" f=\"Luxury_Custom_Wheels.xml\"><securecookie host=\"^(?:.*\\.)?luxurycustomwheels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luxury Replica\" default_off=\"failed ruleset test\" f=\"Luxury_Replica.xml\"><securecookie host=\"^\\.luxuryreplica.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LxCenter (partial)\" default_off=\"self-signed\" f=\"LxCenter.xml\"><rule from=\"^http://(?:www\\.)?lxcenter\\.org/\" to=\"https://lxcenter.org/\"/></ruleset>", "<ruleset name=\"Lyft\" default_off=\"mismatched\" f=\"Lyft.xml\"><securecookie host=\"^lyft\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lyft\\.me/\" to=\"https://lyft.me/\"/></ruleset>", "<ruleset name=\"Lynch Interactive.com\" default_off=\"failed ruleset test\" f=\"Lynch_Interactive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lynda.com (partial)\" platform=\"mixedcontent\" f=\"Lynda.com.xml\"><exclusion pattern=\"^http://www\\.lynda\\.com/+(?!(?:plans/renewal/select|promo/activatekey|registration/account)(?:$|[?/])|user/login/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lynku.com (partial)\" f=\"Lynku.com.xml\"><rule from=\"^http://images\\.lynku\\.com/\" to=\"https://shop.look.co.uk/\"/></ruleset>", "<ruleset name=\"Lynxtech\" default_off=\"expired, self-signed\" f=\"Lynxtech.xml\"><rule from=\"^http://(?:www\\.)?lynxtech\\.no/\" to=\"https://lynxtech.no/\"/></ruleset>", "<ruleset name=\"Lyris (mismatches)\" default_off=\"mismatch\" f=\"Lyris-mismatches.xml\"><rule from=\"^http://landing\\.lyris\\.com/\" to=\"https://landing.lyris.com/\"/></ruleset>", "<ruleset name=\"Lyris (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lyris.xml\"><securecookie host=\"^(?:.*\\.)?lyris\\.com$\" name=\".*\"/><rule from=\"^http://clicktracks\\.com/\" to=\"https://www.clicktracks.com/\"/><rule from=\"^http://(stats1|www)\\.clicktracks\\.com/\" to=\"https://$1.clicktracks.com/\"/><rule from=\"^http://lyris\\.com/\" to=\"https://www.lyris.com/\"/><rule from=\"^http://(landing|www)\\.lyris\\.com/\" to=\"https://$1.lyris.com/\"/><rule from=\"^http://(?:www\\.)?lyrishq\\.com/\" to=\"https://www.lyris.com/blog\"/></ruleset>", "<ruleset name=\"Lyrk.de\" f=\"Lyrk.de.xml\"><securecookie host=\"^geodienste\\.lyrk\\.de$\" name=\".+\"/><rule from=\"^http://(?:(geodienste\\.)|www\\.)?lyrk\\.de/\" to=\"https://$1lyrk.de/\"/></ruleset>", "<ruleset name=\"M-VG.de\" f=\"M-VG.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M-W.co.uk (false MCB)\" platform=\"mixedcontent\" f=\"M-W.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M&T Bank (partial)\" f=\"M-and-T_Bank.xml\"><securecookie host=\"^onlinebanking\\.mandtbank\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.mtb\\.com$\" name=\".+\"/><rule from=\"^http://onlinebanking\\.mandtbank\\.com/\" to=\"https://onlinebanking.mandtbank.com/\"/><rule from=\"^http://(?:www\\.)?mtb\\.com/\" to=\"https://www.mtb.com/\"/><rule from=\"^http://(applynow|services|webmail)\\.mtb\\.com/\" to=\"https://$1.mtb.com/\"/><rule from=\"^http://mandtbank\\.spatialpoint\\.com/\" to=\"https://mandtbank.spatialpoint.com/\"/></ruleset>", "<ruleset name=\"M-net Telekommunikations GmbH\" default_off=\"broken\" f=\"M-net.de.xml\"><rule from=\"^http://www\\.m\\-net\\.de/\" to=\"https://www.m-net.de/\"/></ruleset>", "<ruleset name=\"m-pathy (partial)\" f=\"M-pathy.xml\"><rule from=\"^http://(?:www\\.)?m-pathy\\.com/(css/|favicon\\.ico|images/|questionnaire/|sf/|user/)\" to=\"https://www.m-pathy.com/$1\"/><rule from=\"^http://cdn\\.m-pathy\\.com/\" to=\"https://cdn.m-pathy.com/\"/></ruleset>", "<ruleset name=\"m-privacy\" f=\"M-privacy.xml\"><securecookie host=\"^(?:rsbac|www)\\.m-privacy\\.de$\" name=\".*\"/><rule from=\"^http://((?:git|rsbac|www)\\.)?m-privacy\\.de/\" to=\"https://$1m-privacy.de/\"/></ruleset>", "<ruleset name=\"M01.eu\" f=\"M01.eu.xml\"><securecookie host=\"^(?:me\\.)?m01\\.eu$\" name=\".+\"/><rule from=\"^http://(?:(me\\.)|www\\.)?m01\\.eu/\" to=\"https://$1m01.eu/\"/></ruleset>", "<ruleset name=\"M2fjob.com\" default_off=\"Breaks login functionality\" f=\"M2fjob.com.xml\"><rule from=\"^http://(?:www\\.)?m2fjob\\.com/\" to=\"https://www.m2fjob.com/\"/></ruleset>", "<ruleset name=\"M2pub.com\" f=\"M2pub.com.xml\"><rule from=\"^http://creative\\.m2pub\\.com/\" to=\"https://d3vg9hiogk70qz.cloudfront.net/\"/><rule from=\"^http://s\\.m2pub\\.com/\" to=\"https://ads.adk2.com/\"/></ruleset>", "<ruleset name=\"M3Server.com (partial)\" f=\"M3Server.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M3xs.net\" f=\"M3xs.net.xml\"><securecookie host=\"^my\\.m3xs\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M6R.com\" f=\"M6R.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"m6r.eu\" f=\"M6r.eu.xml\"><securecookie host=\"^\\.m6r\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M86security\" f=\"M86security.xml\"><rule from=\"^http://(?:www\\.)?m86security\\.com/\" to=\"https://www.m86security.com/\"/></ruleset>", "<ruleset name=\"Massachusetts General Hospital OCD & Related Disorders Program\" f=\"MA-General-Hospital-OCD.xml\"><rule from=\"^http://(?:www\\.)?mghocd\\.org/\" to=\"https://mghocd.org/\"/></ruleset>", "<ruleset name=\"MAAWG\" default_off=\"failed ruleset test\" f=\"MAAWG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAC Paper.com (partial)\" f=\"MAC_Paper.com.xml\"><securecookie host=\"^secure\\.macpaper\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?macpaper\\.com/\" to=\"https://secure.macpaper.com/\"/></ruleset>", "<ruleset name=\"MADD California\" f=\"MADD-California.xml\"><rule from=\"^http://(?:www\\.)?maddcalifornia\\.org/\" to=\"https://www.maddcalifornia.org/\"/></ruleset>", "<ruleset name=\"MAGIX-Online.com (partial)\" f=\"MAGIX-Online.com.xml\"><exclusion pattern=\"^http://www\\.magix-online\\.com/+(?!themes/|uploads/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAGIX.info\" f=\"MAGIX.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAGIX.com (partial)\" f=\"MAGIX.xml\"><exclusion pattern=\"^http://magazine\\.magix\\.com/+(?!\\w\\w/+wp-content/)\"/><exclusion pattern=\"^http://(?:www\\.)?magix\\.com/+(?!clear\\.gif|fileadmin/|typo3temp/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAH.se\" platform=\"mixedcontent\" f=\"MAH.se.xml\"><rule from=\"^http://mah\\.se/\" to=\"https://www.mah.se/\"/><rule from=\"^http://www\\.mah\\.se/\" to=\"https://www.mah.se/\"/></ruleset>", "<ruleset name=\"MAPS\" platform=\"mixedcontent\" f=\"MAPS.xml\"><rule from=\"^http://(www\\.)?maps\\.org/\" to=\"https://$1maps.org/\"/><rule from=\"^http://store\\.maps\\.org/\" to=\"https://store.maps.org/\"/></ruleset>", "<ruleset name=\"MARC.info\" f=\"MARC.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MARE-system.de\" f=\"MARE-system.de.xml\"><rule from=\"^http://mare-system\\.de/\" to=\"https://www.mare-system.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MARSocial.com\" f=\"MARSocial.com.xml\"><securecookie host=\"^\\.?marsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MASSPIRG\" default_off=\"mismatched\" f=\"MASSPIRG.xml\"><rule from=\"^http://(?:www\\.)?masspirg\\.org/\" to=\"https://masspirg.org/\"/></ruleset>", "<ruleset name=\"MASSPIRG Education Fund\" default_off=\"mismatched\" f=\"MASSPIRG_Education_Fund.xml\"><rule from=\"^http://(?:www\\.)?masspirgedfund\\.org/\" to=\"https://masspirgedfund.org/\"/></ruleset>", "<ruleset name=\"MASSPIRG Students\" default_off=\"mismatched\" f=\"MASSPIRG_Students.xml\"><rule from=\"^http://(?:www\\.)?masspirgstudents\\.org/\" to=\"https://masspirgstudents.org/\"/></ruleset>", "<ruleset name=\"MAXROAM (partial)\" f=\"MAXROAM.xml\"><rule from=\"^http://(www\\.)?maxroam\\.com/(App_Themes/|images/|shared/|Shop/OnePageCheckout\\.aspx)\" to=\"https://$1maxroam.com/$2\"/><rule from=\"^http://hostels\\.maxroam\\.com/(App_Themes/|css/|favicon\\.ico|images/|shared/|Shop/Checkout\\.aspx)\" to=\"https://hostels.maxroam.com/$1\"/></ruleset>", "<ruleset name=\"MAZDA Web Members\" f=\"MAZDA_Web_Members.xml\"><rule from=\"^http://www\\.m-wm\\.com/\" to=\"https://www.m-wm.com/\"/></ruleset>", "<ruleset name=\"MA Legislature.gov\" f=\"MA_Legislature.gov.xml\"><rule from=\"^http://www\\.malegislature\\.gov/\" to=\"https://malegislature.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MB Detox\" f=\"MB-Detox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBSportsWeb (partial)\" f=\"MBSportsWeb.xml\"><securecookie host=\"^\\.mbsportsweb\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?mbsportsweb\\.c(?:a|om)/\" to=\"https://$1mbsportsweb.com/\"/></ruleset>", "<ruleset name=\"mBank (partial)\" f=\"MBank.xml\"><securecookie host=\"^(?:cz|sk)\\.mbank\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBnet.fi (partial)\" f=\"MBnet.xml\"><exclusion pattern=\"^http://www\\.mbnet\\.fi/+(?!images/)\"/><securecookie host=\"^(?:mbi|webmail)\\.mbnet\\.fi$\" name=\".+\"/><rule from=\"^http://mbnet\\.fi/\" to=\"https://www.mbnet.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBusa.com\" f=\"MBusa.com.xml\"><securecookie host=\"^(?:stage|www)?\\.mbusa\\.com$\" name=\".+\"/><rule from=\"^http://mbusa\\.com/\" to=\"https://www.mbusa.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBuy.com (partial)\" f=\"MBuy.com.xml\"><securecookie host=\"^app\\.mbuy\\.com$\" name=\".+\"/><rule from=\"^http://app\\.mbuy\\.com/\" to=\"https://app.mbuy.com/\"/></ruleset>", "<ruleset name=\"MCA-Marines.org\" f=\"MCA-Marines.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maine Civil Liberties Union\" default_off=\"failed ruleset test\" f=\"MCLU.xml\"><rule from=\"^http://(?:www\\.)?mclu\\.org/\" to=\"https://www.mclu.org/\"/></ruleset>", "<ruleset name=\"MCM Electronics.com (partial)\" f=\"MCM_Electronics.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mcmelectronics\\.com/(?!(?:basket|FreeShipping)\\.aspx|browse/|css/|favicon\\.ico|images/|login/|rss/|scripts/|services/|WebResource\\.axd)\"/><securecookie host=\"^\\.mcmelectronics\\.com$\" name=\"^(?:gpv_p\\w|s_\\w\\w)$\"/><rule from=\"^http://(?:www\\.)?mcmelectronics\\.com/\" to=\"https://www.mcmelectronics.com/\"/></ruleset>", "<ruleset name=\"MCPmag.com\" f=\"MCPmag.com.xml\"><securecookie host=\"^mcpmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MDC US.com\" f=\"MDC_US.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MDGx.com\" default_off=\"mismatched\" f=\"MDGx.com.xml\"><rule from=\"^http://(?:www\\.)?mdgx\\.com/\" to=\"https://mdgx.com/\"/></ruleset>", "<ruleset name=\"MDH.se\" platform=\"mixedcontent\" f=\"MDH.se.xml\"><rule from=\"^http://mdh\\.se/\" to=\"https://www.mdh.se/\"/><rule from=\"^http://www\\.mdh\\.se/\" to=\"https://www.mdh.se/\"/></ruleset>", "<ruleset name=\"MDNX (partial)\" f=\"MDNX.xml\"><rule from=\"^http://(\\w+)\\.stcllctrs\\.com/\" to=\"https://$1.stcllctrs.com/\"/></ruleset>", "<ruleset name=\"MDTS\" f=\"MDTS.xml\"><securecookie host=\"^mdts\\.uk\\.com$\" name=\".*\"/><rule from=\"^http://mdts\\.uk\\.com/\" to=\"https://mdts.uk.com/\"/></ruleset>", "<ruleset name=\"ME.com\" f=\"ME.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MEBank\" f=\"MEBank.xml\"><rule from=\"^http://mebank\\.com\\.au/\" to=\"https://www.mebank.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MESO-Rx\" f=\"MESO-Rx.xml\"><securecookie host=\"^(?:.*\\.)?thinksteroids\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.thinksteroids\\.com/\" to=\"https://d1uxx6tvzy89fj.cloudfront.net/\"/><rule from=\"^http://cdn-ru\\.thinksteroids\\.com/\" to=\"https://ru.thinksteroids.com/\"/><rule from=\"^http://js-fr\\.thinksteroids\\.com/\" to=\"https://fr.thinksteroids.com/\"/><rule from=\"^http://static\\.thinksteroids\\.com/\" to=\"https://thinksteroids.com/forum/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MFi.re\" default_off=\"failed ruleset test\" f=\"MFi.re.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MGID.com (partial)\" f=\"MGID.com.xml\"><exclusion pattern=\"^http://imgn\\.dt00\\.\"/><securecookie host=\"^admin4\\.dt07\\.net$\" name=\".+\"/><securecookie host=\"^(?:dashboard|my)?\\.mgid\\.com$\" name=\".+\"/><rule from=\"^http://(imgn?|jsc|oth)\\.(?:dt0[07]\\.net|mgid\\.com)/\" to=\"https://$1.mgid.com/\"/><rule from=\"^http://admin(4)?\\.dt07\\.net/\" to=\"https://admin$1.dt07.net/\"/><rule from=\"^http://((?:dashboard|freelance|my|usr|www)\\.)?mgid\\.com/\" to=\"https://$1mgid.com/\"/></ruleset>", "<ruleset name=\"MI5.gov.uk\" f=\"MI5.xml\"><rule from=\"^http://www\\.mi5\\.gov\\.uk/\" to=\"https://www.mi5.gov.uk/\"/></ruleset>", "<ruleset name=\"MI6.ua\" default_off=\"connection refused\" f=\"MI6.ua.xml\"><securecookie host=\"^(?:www.)?mi6\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M.I.C. Gadget (partial)\" f=\"MIC-Gadget.xml\"><securecookie host=\"^\\.store\\.micgadget\\.com$\" name=\".+\"/><rule from=\"^http://images\\.micgadget\\.com/\" to=\"https://s3.amazonaws.com/images.micgadget.com/\"/><rule from=\"^http://store\\.micgadget\\.com/\" to=\"https://store.micgadget.com/\"/></ruleset>", "<ruleset name=\"MIMS (partial)\" platform=\"mixedcontent\" f=\"MIMS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIN_Commsy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MIN-Commsy.xml\"><rule from=\"^http://(?:www\\.)?mincommsy\\.uni-hamburg\\.de/\" to=\"https://www.mincommsy.uni-hamburg.de/\"/></ruleset>", "<ruleset name=\"MIPS Technologies\" default_off=\"failed ruleset test\" f=\"MIPS-Technologies.xml\"><securecookie host=\"^(?:.*\\.)?mips\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mIRC (partial)\" f=\"MIRC.xml\"><rule from=\"^http://(www\\.)?mirc\\.com/(imag|styl)es/\" to=\"https://$1mirc.com/$2es/\"/></ruleset>", "<ruleset name=\"Massachusetts Institute of Technology (problematic)\" default_off=\"expired, mismatched, missing certificate chain, self-signed\" f=\"MIT-mismatches.xml\"><exclusion pattern=\"^http://people\\.mit\\.edu/(?:$|\\?)\"/><exclusion pattern=\"^http://tmg-tracker\\.media\\.mit\\.edu/(?!$|\\?)\"/><exclusion pattern=\"^http://techtime\\.mit\\.edu/(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://advancedligo\\.mit\\.edu/\" to=\"https://www.advancedligo.mit.edu/\"/><rule from=\"^http://techtime\\.mit\\.edu/(?:$|\\?.*)\" to=\"https://calendar.mit.edu/techtime/index.shtml\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIT.edu (false MCB)\" platform=\"mixedcontent\" f=\"MIT.edu-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIT.edu (partial)\" f=\"MIT.xml\"><exclusion pattern=\"^http://calendars\\.mit\\.edu/+(?:$|\\?)\"/><securecookie host=\"^(?!calendars\\.mit\\.edu$)\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http://csail\\.mit\\.edu/\" to=\"https://www.csail.mit.edu/\"/><rule from=\"^http://people\\.csail\\.mit\\.edu/+(?:\\?.*)?$\" to=\"https://www.csail.mit.edu/peoplesearch\"/><rule from=\"^http://eecscal\\.mit\\.edu/.*\" to=\"https://calendars.mit.edu/eecs\"/><rule from=\"^http://cdn\\.executive\\.mit\\.edu/\" to=\"https://d3f3qxt87iw6id.cloudfront.net/\"/><rule from=\"^http://ideabank\\.mit\\.edu/\" to=\"https://future.mit.edu/\"/><rule from=\"^http://www\\.mitpress\\.mit\\.edu/\" to=\"https://mitpress.mit.edu/\"/><rule from=\"^http://media\\.mit\\.edu/\" to=\"https://www.media.mit.edu/\"/><rule from=\"^http://scripts\\.mit\\.edu:444/\" to=\"https://scripts.mit.edu:444/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIT Press Journals.org (partial)\" f=\"MIT_Press_Journals.org.xml\"><rule from=\"^http://(?:www\\.)?mitpressjournals\\.org/(?=(?:entityImage|na101|sda|templates|userimages)/|action/(?:registration|showLogin)$)\" to=\"https://www.mitpressjournals.org/\"/></ruleset>", "<ruleset name=\"MIUN.se\" f=\"MIUN.se.xml\"><rule from=\"^http://miun\\.se/\" to=\"https://www.miun.se/\"/><rule from=\"^http://www\\.miun\\.se/\" to=\"https://www.miun.se/\"/><rule from=\"^http://portal\\.miun\\.se/\" to=\"https://portal.miun.se/\"/></ruleset>", "<ruleset name=\"MIX-Computer.de\" f=\"MIX-Computer.de.xml\"><rule from=\"^http://(?:www\\.)?mix-computer\\.de/\" to=\"https://www.mix-computer.de/\"/></ruleset>", "<ruleset name=\"MJG International\" default_off=\"failed ruleset test\" f=\"MJG_International.xml\"><securecookie host=\"^(?:www\\.)?mjg\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MKK.com.tr\" f=\"MKK.com.tr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MKS Software.com\" f=\"MKS_Software.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?mkssoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ML314.com\" f=\"ML314.com.xml\"><securecookie host=\"^www\\.ml314\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLP Forums\" f=\"MLP_Forums.xml\"><securecookie host=\"^\\.mlpforums\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?mlpforums\\.com/(\\?.*)?$\" to=\"https://$1mlpforums.com/index.php$2\"/><rule from=\"^http://(www\\.)?mlpforums\\.com/\" to=\"https://$1mlpforums.com/\"/><rule from=\"^http://s\\.mlpforums\\.com/\" to=\"https://mlpforums-feld0.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"MLPchan.net\" f=\"MLPchan.net.xml\"><securecookie host=\"^\\.mlpchan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLSec Project.org (partial)\" f=\"MLSec_Project.org.xml\"><securecookie host=\"^(?:www)?\\.mlsecproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLive.com (partial)\" f=\"MLive.com.xml\"><exclusion pattern=\"^http://businessfinder\\.mlive\\.com/+(?!favicon\\.ico)\"/><securecookie host=\"^members\\.mlive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLno6.com\" default_off=\"failed ruleset test\" f=\"MLno6.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MMAHQ\" f=\"MMAHQ.xml\"><securecookie host=\"^(?:www)?\\.mmahq\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mmahq\\.com/\" to=\"https://www.mmahq.com/\"/></ruleset>", "<ruleset name=\"MMOGA\" f=\"MMOGA.xml\"><securecookie host=\"^\\.mmoga\\.(?:com|de)$\" name=\".+\"/><rule from=\"^http://(blog\\.|www\\.)?mmoga\\.(com|de)/\" to=\"https://$1mmoga.$2/\"/></ruleset>", "<ruleset name=\"MMO Culture\" f=\"MMO_Culture.xml\"><securecookie host=\"^\\.mmoculture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MMonit.com\" f=\"MMonit.com.xml\"><securecookie host=\"^mmonit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mmonit\\.com/\" to=\"https://mmonit.com/\"/></ruleset>", "<ruleset name=\"MND CDN.com\" f=\"MND_CDN.com.xml\"><rule from=\"^http://a\\d\\.mndcdn\\.com/\" to=\"https://d20tdhwx2i89n1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MNGinteractive.com\" f=\"MNGinteractive.com.xml\"><rule from=\"^http://(?:secure\\.)?extras\\.mnginteractive\\.com/\" to=\"https://secure.extras.mnginteractive.com/\"/></ruleset>", "<ruleset name=\"MNN.com (partial)\" f=\"MNN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOBIUS\" default_off=\"expired\" f=\"MOBIUS.xml\"><rule from=\"^http://(?:www\\.)?mobiusconsortium\\.org/\" to=\"https://mobiusconsortium.org/\"/></ruleset>", "<ruleset name=\"MOBIUS Catalog\" f=\"MOBIUS_Catalog.xml\"><securecookie host=\"^\\.?searchmobius\\.org$\" name=\".+\"/><rule from=\"^http://searchmobius\\.org/\" to=\"https://searchmobius.org/\"/></ruleset>", "<ruleset name=\"MODX (partial)\" platform=\"mixedcontent\" f=\"MODX.xml\"><exclusion pattern=\"^http://services\\.modx\\.com/(?!stylesheets/|user(?:$|\\?|/))\"/><rule from=\"^http?://(?:pta|services)\\.modx\\.com/\" to=\"https://services.modx.com/$1\"/></ruleset>", "<ruleset name=\"MODX Cloud\" f=\"MODX_Cloud.xml\"><rule from=\"^http://(?:www\\.)?modxcloud\\.com/\" to=\"https://modxcloud.com/\"/></ruleset>", "<ruleset name=\"MOG (mismatches)\" default_off=\"mismatch\" f=\"MOG-mismatches.xml\"><securecookie host=\"^blog\\.mog\\.com$\" name=\".*\"/><rule from=\"^http://blog\\.mog\\.com/\" to=\"https://blog.mog.com/\"/></ruleset>", "<ruleset name=\"MOG\" f=\"MOG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOLPay\" f=\"MOLPay.xml\"><securecookie host=\"^(www\\.)?onlinepayment\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOOC-List.com (false MCB)\" platform=\"mixedcontent\" f=\"MOOC-List.com-falsemixed.xml\"><securecookie host=\"^\\.mooc-list\\.com$\" name=\".+\"/><rule from=\"^http://www\\.mooc-list\\.com/(?!favicon\\.ico|sites/)\" to=\"https://www.mooc-list.com/\"/></ruleset>", "<ruleset name=\"MOOC-List.com (partial)\" f=\"MOOC-List.com.xml\"><exclusion pattern=\"^http://www\\.mooc-list.com/(?!favicon\\.ico|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOSIS.com\" f=\"MOSIS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MP3Skull\" f=\"MP3Skull.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mp3skull\\.is/\" to=\"https://mp3skull.wtf/\"/><rule from=\"^http://(?:www\\.)?mp3skull\\.wtf/\" to=\"https://mp3skull.wtf/\"/></ruleset>", "<ruleset name=\"MPG.de\" default_off=\"failed ruleset test\" f=\"MPG.de.xml\"><securecookie host=\"^www\\.(?:cbs\\.)?mpg\\.de$\" name=\".+\"/><rule from=\"^http://((?:www\\.cbs|(?:www\\.)?dsb|www)\\.)?mpg\\.de/\" to=\"https://$1mpg.de/\"/></ruleset>", "<ruleset name=\"MPI web.org (partial)\" f=\"MPI_web.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?mpiweb\\.org/+(?![aA]pp_[mM]aster/|favicon\\.ico|Libraries/|Scripts/|SignIn\\.aspx|sitefinity(?:$|[?/]))\"/><exclusion pattern=\"^http://m\\.mpiweb\\.org/+(?!Content/)\"/><rule from=\"^http://((?:m|sts|www)\\.)?mpiweb\\.org/\" to=\"https://$1mpiweb.org/\"/></ruleset>", "<ruleset name=\"MPNewMedia\" f=\"MPNewMedia.xml\"><rule from=\"^http://www1\\.mpnrs\\.com/\" to=\"https://www1.mpnrs.com/\"/></ruleset>", "<ruleset name=\"MP Bio.com\" f=\"MP_Bio.com.xml\"><securecookie host=\"^\\.mpbio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPlayer\" f=\"MPlayer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPort.ua\" default_off=\"connection refused\" f=\"MPort.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MRMCD.net\" f=\"MRMCD.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MR PORTER\" f=\"MR_PORTER.xml\"><securecookie host=\"^\\.?www\\.mrporter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mrporter\\.com/\" to=\"https://www.mrporter.com/\"/><rule from=\"^http://(cache|www-lt)\\.mrporter\\.com/\" to=\"https://$1.mrporter.com/\"/></ruleset>", "<ruleset name=\"MSDN.com (partial)\" f=\"MSDN.xml\"><exclusion pattern=\"^http://public\\.create\\.msdn\\.com/(?!assets/)\"/><securecookie host=\"^.+\\.msdn\\.com$\" name=\".+\"/><rule from=\"^http://i1\\.blogs\\.msdn\\.com/\" to=\"https://blogs.msdn.com/\"/><rule from=\"^http://public\\.create\\.msdn\\.com/\" to=\"https://www.create.msdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSF.org.uk (partial)\" f=\"MSF.org.uk.xml\"><exclusion pattern=\"^http://www\\.msf\\.org\\.uk/+(?!favicon\\.ico|sites/)\"/><rule from=\"^http://(?:cdn\\.)?msf\\.org\\.uk/\" to=\"https://www.msf.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSFN\" default_off=\"expired, mismatch, self-signed\" f=\"MSFN.xml\"><securecookie host=\"^\\.msfn\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?msfn\\.org/\" to=\"https://www.msfn.org/\"/></ruleset>", "<ruleset name=\"MSI-Shop.de\" default_off=\"shows another domain\" f=\"MSI-Shop.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSI.com (partial)\" f=\"MSI.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.gaming\\.msi\\.com$\" name=\".\"/><rule from=\"^http://dragoonarmy\\.msi\\.com/$\" to=\"https://gaming.msi.com/\"/><rule from=\"^http://support\\.msi\\.com/[^?]*\" to=\"https://register.msi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSI Computer.com (partial)\" f=\"MSI_Computer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSN (mismatches)\" default_off=\"expired, mismatch\" f=\"MSN-mismatches.xml\"><exclusion pattern=\"^http://www\\.msnbc\\.msn\\.com/id/\"/><rule from=\"^http://(?:www\\.)?msnbc\\.msn\\.com/\" to=\"https://msnbc.msn.com/\"/><rule from=\"^http://(behindthewall|bodyodd|bottomline|cartoonblog|cosmiclog|ed|dailynightly|entertainment|firstread|hardballblog|insidedateline|itineraries|maddowblog|mojoe|openchannel|overheadbin|photoblog|presspass|redtape|scoop|thelastword|(?:animaltracks|bites|celebrate|digitallife|lifeinc|moms|rockcenter|scoop|theclicker|thelook|today(?:entertainment|health|hiringourheroes|onthetrail|travel)|windsorknot)\\.today|travelkit|usnews(?:first)?|vitals|world(?:blog|news|newsfirst))\\.msnbc\\.msn\\.com/\" to=\"https://$1.msnbc.msn.com/\"/><rule from=\"^http://(economywatch|marketday|nbcpolitics)(?:\\.today)?\\.msnbc\\.msn\\.com/\" to=\"https://$1.msnbc.msn.com/\"/><rule from=\"^http://fieldnotes\\.msnbc\\.msn\\.com/\" to=\"https://usnews.msnbc.msn.com/\"/><rule from=\"^http://allday(?:\\.today)\\.msnbc\\.com/\" to=\"https://allday.today.msnbc.com/\"/><rule from=\"^http://(?:www\\.)?today\\.msnbc\\.msn\\.com/\" to=\"https://today.msnbc.msn.com/\"/><rule from=\"^http://(msndata\\.jp|my|eb\\.my|realestate|wonderwall)\\.msn\\.com/\" to=\"https://$1.msn.com/\"/><rule from=\"^http://img1\\.video\\.s-msn\\.com/\" to=\"https://img1.video.s-msn.com/\"/></ruleset>", "<ruleset name=\"MSN.co.jp (partial)\" f=\"MSN.co.jp.xml\"><securecookie host=\"^\\.msn\\.co\\.jp$\" name=\"^MUID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSN.com (partial)\" f=\"MSN.xml\"><securecookie host=\"^\\.msn\\.com$\" name=\"^(?:MUID|s_\\w+)$\"/><securecookie host=\"^(?:\\.c|now|preview|\\.bat\\.r)\\.msn\\.com$\" name=\".\"/><rule from=\"^http://c\\.(?:jp|sg)\\.msn\\.com/\" to=\"https://c.msn.co.jp/\"/><rule from=\"^http://h\\.msn\\.com/\" to=\"https://h.live.com/\"/><rule from=\"^http://imgs1-video\\.msn\\.com/\" to=\"https://imgs1-video.ssl.catalog.video.msn.com/\"/><rule from=\"^http://static\\.stratosphere\\.msn\\.com/\" to=\"https://az29590.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSNBC.com (partial)\" f=\"MSNBC.com.xml\"><exclusion pattern=\"^http://www\\.msnbc\\.com/+(?!favicon\\.ico|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MT-CDN.net\" f=\"MT-CDN.net.xml\"><rule from=\"^http://(?:origin|s\\d)\\.mt-cdn\\.net/\" to=\"https://mediatemple.net/\"/></ruleset>", "<ruleset name=\"Music Teachers' Association of California\" default_off=\"failed ruleset test\" f=\"MTAC.xml\"><rule from=\"^http://(?:www\\.)?mtac\\.org/\" to=\"https://www.mtac.org/\"/></ruleset>", "<ruleset name=\"MTNA\" default_off=\"mismatch\" f=\"MTNA-mismatches.xml\"><rule from=\"^http://(?:www\\.)?mtna(certification)?\\.org/\" to=\"https://www.mtna$1.org/\"/></ruleset>", "<ruleset name=\"MTNA (partial)\" f=\"MTNA.xml\"><rule from=\"^http://members\\.mtna\\.org/\" to=\"https://members.mtna.org/\"/><rule from=\"^http://(www\\.)?mtnafoundation\\.org/\" to=\"https://$1mtnafoundation.org/\"/></ruleset>", "<ruleset name=\"MTU.edu\" f=\"MTU.edu.xml\"><rule from=\"^http://(?:www\\.)?mtu\\.edu/\" to=\"https://www.mtu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTVN images.com (partial)\" default_off=\"mismatched\" f=\"MTVN-images.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTailor.com\" f=\"MTailor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTurk.com\" f=\"MTurk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mturk\\.com/\" to=\"https://www.mtur.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MVG-mobil.de\" f=\"MVG-mobil.de.xml\"><securecookie host=\"^www\\.mvg-mobil\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mvg-mobile\\.de/\" to=\"https://www.mvg-mobile.de/\"/></ruleset>", "<ruleset name=\"MVP National Title\" f=\"MVP_National_Title.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MVPs.org (partial)\" f=\"MVPs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MWR InfoSecurity.com\" f=\"MWR_InfoSecurity.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MXGM.org\" f=\"MXGM.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?mxgm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MXGuarddog (partial)\" f=\"MXGuarddog.xml\"><exclusion pattern=\"^http://(?:www\\.)?mxguarddog\\.com/faq(?:$|[/\\.\\?])\"/><securecookie host=\"^(?:www\\.)?mxguarddog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MXToolBox.com (partial)\" f=\"MXToolBox.xml\"><securecookie host=\"^(?:www\\.)?mxtoolbox\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MX Cursos.com\" f=\"MX_Cursos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MYEDDEBT.com\" default_off=\"failed ruleset test\" f=\"MYEDDEBT.com.xml\"><securecookie host=\"(?:^|\\.)myeddebt\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)myeddebt\\.com/\" to=\"https://www.myeddebt.com/\"/></ruleset>", "<ruleset name=\"MYOB.com\" f=\"MYOB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ma.ttias.be\" f=\"Ma.ttias.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaaS360.com (partial)\" f=\"MaaS360.com.xml\"><securecookie host=\"^(?:de|portal|trials|www)?\\.maas360\\.com$\" name=\".+\"/><rule from=\"^http://((?:portal|maasters|trials|www2?)\\.)?maas360\\.com/\" to=\"https://$1maas360.com/\"/><rule from=\"^http://content\\.maas360\\.com/\" to=\"https://content.fiberlink.com/\"/><rule from=\"^http://links\\.maas360\\.com/demoRequest\\?(?=.+=)\" to=\"https://trials.maas360.com/forms/register_service_m.php?I=INFO_REQUEST_DEMO&\"/><rule from=\"^http://links\\.maas360\\.com/demoRequest/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php?I=INFO_REQUEST_DEMO\"/><rule from=\"^http://links\\.maas360\\.com/getStartedNow\\?(?=.+=)\" to=\"https://trials.maas360.com/forms/register_service_m.php?A=YouTube&O=SM&\"/><rule from=\"^http://links\\.maas360\\.com/getStartedNow/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php?A=YouTube&O=SM\"/><rule from=\"^http://links\\.maas360\\.com/legal\\?(?=.+=)\" to=\"https://www.maas360.com/about/privacy-and-legal/?\"/><rule from=\"^http://links\\.maas360\\.com/legal/*$\" to=\"https://www.maas360.com/about/privacy-and-legal/\"/><rule from=\"^http://links\\.maas360\\.com/(?:mdm_glossary|trialGeneric)\\?(?=.+=)\" to=\"https://trials.maas360.com/forms/register_service_m.php?\"/><rule from=\"^http://links\\.maas360\\.com/(?:mdm_glossary|trialGeneric)/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php\"/><rule from=\"^http://links\\.maas360\\.com/mobileAppManagement\\?(?=.+=)\" to=\"https://www.maas360.com/products/mobile-application-management?\"/><rule from=\"^http://links\\.maas360\\.com/mobileAppManagement/*$\" to=\"https://www.maas360.com/products/mobile-application-management\"/><rule from=\"^http://links\\.maas360\\.com/webinars(?:/+|\\?.*)?$\" to=\"https://maasters.maas360.com/forum/?forum=all&value=webinar&type=1&include=4&search=1\"/></ruleset>", "<ruleset name=\"MacFound.org (partial)\" f=\"MacArthur_Foundation.xml\"><securecookie host=\".+\\.macfound\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacKeeper.com\" f=\"MacKeeper.com.xml\"><securecookie host=\"^\\.\" name=\"^lang$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacOSForge.org\" f=\"MacOSForge.org.xml\"><rule from=\"^http://macosforge\\.org/\" to=\"https://www.macosforge.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacPorts.org\" f=\"MacPorts.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacRuby\" default_off=\"failed ruleset test\" f=\"MacRuby.org.xml\"><rule from=\"^http://(?:www\\.)?macruby\\.org/\" to=\"https://www.macruby.org/\"/><securecookie host=\"^(?:www)?\\.macruby\\.org\" name=\".*\"/></ruleset>", "<ruleset name=\"Macworld.com.au\" default_off=\"self-signed\" f=\"MacWorld.com.au.xml\"><securecookie host=\"^www\\.macworld\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?macworld\\.com\\.au/\" to=\"https://www.macworld.com.au/\"/></ruleset>", "<ruleset name=\"MacWorld.com (partial)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"MacWorld.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacaInfo.org\" default_off=\"mismatch\" f=\"MacaInfo.org.xml\"><securecookie host=\"^\\.macainfo\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?macainfo\\.org/\" to=\"https://www.macainfo.org/\"/></ruleset>", "<ruleset name=\"Macfarlane Packaging.com\" default_off=\"failed ruleset test\" f=\"Macfarlane_Packaging.com.xml\"><securecookie host=\"^(?:[.w]*\\.)?macfarlanepackaging\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?macfarlanepackaging\\.com/\" to=\"https://www.macfarlanepackaging.com/\"/></ruleset>", "<ruleset name=\"Macgamestore.com\" f=\"Macgamestore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mach Comedy Fest.co.uk\" default_off=\"self-signed\" f=\"Mach_Comedy_Fest.co.uk.xml\"><rule from=\"^http://(?:www\\.)?machcomedyfest\\.co\\.uk/\" to=\"https://machcomedyfest.co.uk/\"/></ruleset>", "<ruleset name=\"Machine Guns Vegas.com\" f=\"Machine_Guns_Vegas.com.xml\"><securecookie host=\"^\\.machinegunsvegas\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Machines Like Us\" f=\"Machines_Like_Us.xml\"><rule from=\"^http://(?:www\\.)?machineslikeus\\.com/\" to=\"https://machineslikeus.com/\"/></ruleset>", "<ruleset name=\"Macmillan (partial)\" default_off=\"self-signed\" f=\"Macmillan.xml\"><rule from=\"^http://(?:www\\.)?tor\\.com/images/\" to=\"https://www.tor.com/images/\"/></ruleset>", "<ruleset name=\"Macmillan Dictionary.com\" f=\"Macmillan_Dictionary.com.xml\"><securecookie host=\"^www\\.macmillandictionary\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?macmillandictionary\\.com/\" to=\"https://www.macmillandictionary.com/\"/></ruleset>", "<ruleset name=\"Macromedia.com\" f=\"Macromedia.com.xml\"><rule from=\"^http://macromedia\\.com/\" to=\"https://www.macromedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Macular.org\" f=\"Macular.org.xml\"><rule from=\"^http://(?:www\\.)?macular\\.org/\" to=\"https://www.macular.org/\"/></ruleset>", "<ruleset name=\"Mad Mimi.com (partial)\" f=\"Mad_Mimi.com.xml\"><securecookie host=\"^(?:api|billing)?\\.madmimi\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|billing|go|www)\\.)?madmimi\\.com/\" to=\"https://$1madmimi.com/\"/></ruleset>", "<ruleset name=\"madboa.com\" f=\"Madboa.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Made In a Free World.com (false MCB)\" platform=\"mixedcontent\" f=\"Made_In_a_Free_World.com.xml\"><securecookie host=\"^\\.madeinafreeworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Made with Code.com\" f=\"Made_with_Code.com.xml\"><rule from=\"^http://madewithcode\\.com/\" to=\"https://www.madewithcode.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Madetech.com\" f=\"Madetech.com.xml\"><securecookie host=\"^(?:www)?\\.madetech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MadgexJB.com\" f=\"MadgexJB.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Madison Logic (partial)\" f=\"Madison-Logic.xml\"><securecookie host=\"^\\.madisonlogic\\.com$\" name=\"^__(?:utm\\w|zlcid)$\"/><rule from=\"^http://(?:www\\.)?dinclinx\\.com/\" to=\"https://clk.madisonlogic.com/\"/><rule from=\"^http://www\\.madisonlogic\\.com/images/(arrow|bg|headBg|linkbutton_background|mainNav)\\.gif$\" to=\"https://www.madisonlogic.com/images/$2.gif\"/><rule from=\"^http://(blog|clk|js-agent|jsc|st)\\.madisonlogic\\.com/\" to=\"https://$1.madisonlogic.com/\"/></ruleset>", "<ruleset name=\"Madstein.at\" f=\"Madstein.at.xml\"><rule from=\"^http://(?:www\\.)?madstein\\.at/\" to=\"https://secure.madstein.at/\"/></ruleset>", "<ruleset name=\"Mael Soucaze.com\" f=\"Mael_Soucaze.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maemo.org (partial)\" f=\"Maemo.xml\"><exclusion pattern=\"^http://(?:www\\.)?maemo\\.org/(?!(?:midcom-)?static/)\"/><rule from=\"^http://www\\.maemo\\.org/\" to=\"https://maemo.org/\"/><rule from=\"^http://static\\.maemo\\.org/\" to=\"https://maemo.org/midcom-static/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magazin.io\" f=\"Magazin.io.xml\"><rule from=\"^http://www\\.magazin\\.io/\" to=\"https://magazin.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magazinesdirect.com\" default_off=\"failed ruleset test\" f=\"Magazinesdirect.com.xml\"><securecookie host=\"^www\\.magazinesdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mageia.org\" f=\"Mageia.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://svn\\.mageia\\.org/\" to=\"https://svnweb.mageia.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magellan Models.com (false MCB)\" platform=\"mixedcontent\" f=\"Magellan_Models.com.xml\"><securecookie host=\"^(?:www)?\\.magellanmodels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento.co.uk (partial)\" default_off=\"mismatched\" f=\"Magento.co.uk.xml\"><exclusion pattern=\"^http://go\\.magento\\.co\\.uk/(?!ee/sso/|skin/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento.com (partial)\" f=\"Magento.xml\"><rule from=\"^http://www\\.magento\\.com/\" to=\"https://magento.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento Commerce.com (buggy)\" default_off=\"breaks downloads\" f=\"Magento_Commerce.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?magentocommerce\\.com/download\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento Go images\" f=\"Magento_Go_images.xml\"><rule from=\"^http://(\\w+\\.)?img\\.gostorego\\.com/\" to=\"https://$1img.gostorego.com/\"/></ruleset>", "<ruleset name=\"Magentohotel.dk (partial)\" default_off=\"self-signed\" f=\"Magentohotel.dk.xml\"><securecookie host=\"^prod6\\.magentohotel\\.dk$\" name=\".+\"/><rule from=\"^http://prod6\\.magentohotel\\.dk/\" to=\"https://prod6.magentohotel.dk/\"/></ruleset>", "<ruleset name=\"Magic.fr\" f=\"Magic.fr.xml\"><securecookie host=\"^(?:www\\.)?magic\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magic Affiliate plugin.com\" f=\"Magic_Affiliate_plugin.com.xml\"><securecookie host=\"^(?:w*\\.)?magicaffiliateplugin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magic Members.com\" f=\"Magic_Members.com.xml\"><securecookie host=\"^(?:w*\\.)?magicmembers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MagicalButter (partial)\" f=\"MagicalButter.xml\"><securecookie host=\"^(store\\.)?magicalbutter\\.com$\" name=\".+\"/><rule from=\"^http://www\\.magicalbutter\\.com(\\.au)?/\" to=\"https://magicalbutter.com$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magictouch.com\" default_off=\"mismatched\" f=\"Magictouch.com.xml\"><rule from=\"^http://(?:www\\.)?magictouch\\.com/\" to=\"https://magictouch.com/\"/></ruleset>", "<ruleset name=\"Magnatune (partial)\" platform=\"mixedcontent\" f=\"Magnatune.xml\"><securecookie host=\"^(?:.*\\.)magnatune\\.com$\" name=\".*\"/><rule from=\"^http://(?:he3\\.|(www\\.))?magnatune\\.com/\" to=\"https://$1magnatune.com/\"/></ruleset>", "<ruleset name=\"Magnet.ie\" f=\"Magnet.ie.xml\"><securecookie host=\"^(?:www)?\\.magnet\\.ie$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magnetise Media.com (partial)\" f=\"Magnetise_Media.com.xml\"><securecookie host=\"^(?:adcentre|console)\\.magnetisemedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magserv.com\" f=\"Magserv.com.xml\"><rule from=\"^http://([\\w-]+\\.)?magserv\\.com/\" to=\"https://$1magserv.com/\"/></ruleset>", "<ruleset name=\"Magyar Telekom (partial)\" f=\"Magyar_Telekom.xml\"><rule from=\"^http://(www|pool)\\.telekom\\.hu/\" to=\"https://$1.telekom.hu/\"/></ruleset>", "<ruleset name=\"Mahan Consulting\" default_off=\"expired\" f=\"Mahan-Consulting.xml\"><rule from=\"^http://(?:www\\.)?consultmahan\\.com/\" to=\"https://consultmahan.com/\"/></ruleset>", "<ruleset name=\"Mahomet Citizen (partial)\" f=\"Mahomet_Citizen.xml\"><rule from=\"^http://(?:www\\.)?mcitizen\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.mcitizen.com/$1\"/></ruleset>", "<ruleset name=\"Mahones Home Decor\" default_off=\"failed ruleset test\" f=\"Mahones_Home_Decor.xml\"><securecookie host=\"^(?:.*\\.)?mahoneshomedecor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maidsafe.org\" f=\"Maidsafe.org.xml\"><securecookie host=\"^www\\.maidsafe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maidstone.gov.uk (partial)\" f=\"Maidstone.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.maidstone\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://maidstone.objective.co.uk/portal\"/><rule from=\"^http://consult\\.maidstone\\.gov\\.uk/\" to=\"https://maidstone.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail-Archive.com\" f=\"Mail-archive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mail-tester.com\" f=\"Mail-tester.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.be\" f=\"Mail.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.com\" f=\"Mail.com.xml\"><securecookie host=\".*\\.mail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mail.de\" f=\"Mail.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.ru (partial)\" f=\"Mail.ru.xml\"><exclusion pattern=\"^http://go\\.mail\\.ru/+(?!favicon\\.ico|static/)\"/><exclusion pattern=\"^http://ad\\.mail\\.ru/crossdomain.xml\"/><securecookie host=\"^\\.mail\\.ru$\" name=\"^(?:FTID|VID|searchuid)$\"/><securecookie host=\"^(?:1link|allods|\\.bb|cfire|\\.dn|hi-tech|\\.jd|parapa|pw)\\.mail\\.ru$\" name=\".+\"/><rule from=\"^http://blogs\\.mail\\.ru/.*\" to=\"https://my.mail.ru/\"/><rule from=\"^http://cdn\\.connect\\.mail\\.ru/\" to=\"https://connect.mail.ru/\"/><rule from=\"^http://content\\.foto\\.mail\\.ru/\" to=\"https://content.foto.my.mail.ru/\"/><rule from=\"^http://stat\\.my\\.mail\\.ru/\" to=\"https://my.mail.ru/\"/><rule from=\"^http://img\\.pre\\.realty\\.mail\\.ru/\" to=\"https://img.realty.mail.ru/\"/><rule from=\"^http://(?:\\w\\w\\.){4}top\\.mail\\.ru/\" to=\"https://top-fwz1.mail.ru/\"/><rule from=\"^http://wap\\.mail\\.ru/[^?]*\" to=\"https://tel.mail.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailChimp (mismatches)\" default_off=\"mismatch\" f=\"MailChimp-mismatches.xml\"><securecookie host=\"^status\\.mailchimp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailChimp (partial)\" f=\"MailChimp.xml\"><exclusion pattern=\"^http://mailchimp\\.com/+(?!(?:blog|login|signup)(?:$|[?/])|assets/)\"/><securecookie host=\"^.+\\.mailchimp\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:\\w+\\.)?admin|blog|cdn-images|connect|gallery|login|sfbloghost|www)\\.)?mailchimp\\.com/\" to=\"https://$1mailchimp.com/\"/><rule from=\"^http://downloads\\.mailchimp\\.com/\" to=\"https://d1zgderxoe1a.cloudfront.net/\"/><rule from=\"^http://experts\\.mailchimp\\.com/\" to=\"https://mc-experts.herokuapp.com/\"/><rule from=\"^http://static\\.mailchimp\\.com/\" to=\"https://dbfv8p2wljo34.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MailLift.com\" f=\"MailLift.com.xml\"><securecookie host=\"^maillift\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailNull.com\" default_off=\"missing certificate chain\" f=\"MailNull.com.xml\"><rule from=\"^http://www\\.mailnull\\.com/\" to=\"https://mailnull.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailPoet.com\" f=\"MailPoet.com.xml\"><securecookie host=\"^support\\.mailpoet\\.com$\" name=\".+\"/><rule from=\"^http://mailpoet\\.com/\" to=\"https://www.mailpoet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail in a Box.email\" f=\"Mail_in_a_Box.email.xml\"><securecookie host=\"^discourse\\.mailinabox\\.email$\" name=\".+\"/><rule from=\"^http://www\\.mailinabox\\.email/\" to=\"https://box.occams.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailbox.org\" f=\"Mailbox.org.xml\"><securecookie host=\"^mailbox\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailerlite.com\" f=\"Mailerlite.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?$|cf_clearance|mailerlite:language)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailgun.com (partial)\" f=\"Mailgun.com.xml\"><securecookie host=\"^mailgun\\.com$\" name=\".+\"/><rule from=\"^http://status\\.mailgun\\.com/\" to=\"https://mailgun.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailgun.net (mismatched)\" default_off=\"mismatched\" f=\"Mailgun.net-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailgun.net (partial)\" f=\"Mailgun.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailigen.com (partial)\" f=\"Mailigen.xml\"><securecookie host=\".+\\.mailigen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailinator.com\" f=\"Mailinator.com.xml\"><securecookie host=\"^(?:www\\.)?mailinator\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?mailinator\\.com/\" to=\"https://$1mailinator.com/\"/><rule from=\"^http://([\\w-]+)\\.mailinator\\.com/\" to=\"https://www.mailinator.com/inbox.jsp?to=$1\"/></ruleset>", "<ruleset name=\"Mailoo.org\" f=\"Mailoo.xml\"><rule from=\"^http://mailoo\\.org/\" to=\"https://www.mailoo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailout Interactive.com (partial)\" f=\"Mailout_Interactive.com.xml\"><securecookie host=\"^(?:www\\.)?mailoutinteractive\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mailoutinteractive\\.com/\" to=\"https://mailoutinteractive.com/\"/></ruleset>", "<ruleset name=\"Mailpile.is\" f=\"Mailpile.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mailstation.de\" f=\"Mailstation.de.xml\"><rule from=\"^http://(?:galileo\\.|www\\.)?mailstation\\.de/\" to=\"https://galileo.mailstation.de/\"/></ruleset>", "<ruleset name=\"Mailvelope (partial)\" f=\"Mailvelope.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"main-host.de\" default_off=\"failed ruleset test\" f=\"Main-host.de.xml\"><rule from=\"^http://(?:www\\.)?main-host\\.de/\" to=\"https://www.main-host.de/\"/><rule from=\"^http://kunden\\.main-host\\.de/\" to=\"https://kunden.main-host.de/\"/></ruleset>", "<ruleset name=\"Maine.gov (partial)\" f=\"Maine.gov.xml\"><exclusion pattern=\"^http://www1\\.maine\\.gov/governor/lepage/(?!css/|images/)\"/><rule from=\"^http://legislature\\.maine\\.gov/\" to=\"https://mainelegislature.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maine Legislature.org\" f=\"Maine_Legislature.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.mainelegislature\\.org/\" to=\"https://mainelegislature.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mainline Hobby.net\" f=\"Mainline_Hobby.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mainstrat.com\" f=\"Mainstrat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majestic-12 (partial)\" f=\"Majestic-12.xml\"><rule from=\"^http://(www\\.)?majestic12\\.co\\.uk/\" to=\"https://$1majestic12.co.uk/\"/><rule from=\"^http://majesticseo\\.com/\" to=\"https://www.majesticseo.com/\"/><rule from=\"^http://www\\.majesticseo\\.com/(account|static)/\" to=\"https://www.majesticseo.com/$1/\"/></ruleset>", "<ruleset name=\"Major Designs Doll Fashions\" default_off=\"failed ruleset test\" f=\"Major-Designs-Doll-Fashions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"major.io\" f=\"Major.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru (false MCB)\" platform=\"mixedcontent\" f=\"Majordomo.ru-falsemixed.xml\"><securecookie host=\"^book\\.majordomo\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru (partial)\" f=\"Majordomo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Make-A-Wish Foundation of Michigan\" default_off=\"failed ruleset test\" f=\"Make-A-Wish-Foundation-MI.xml\"><rule from=\"^http://(?:www\\.)?wishmich\\.org/\" to=\"https://www.wishmich.org/\"/></ruleset>", "<ruleset name=\"Make Projects.org\" f=\"Make-Projects.xml\"><rule from=\"^http://guide-images\\.makeprojects\\.org/\" to=\"https://d1c7nyv5gwvh6t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Make My Trip\" platform=\"mixedcontent\" f=\"MakeMyTrip.xml\"><rule from=\"^http://makemytrip\\.com/\" to=\"https://www.makemytrip.com/\"/><rule from=\"^http://(cheapfaresindia|image4|image5|m|railtourism|support|us|www)\\.makemytrip\\.com/\" to=\"https://$1.makemytrip.com/\"/></ruleset>", "<ruleset name=\"MakeShop.jp (partial)\" f=\"MakeShop.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MakeUseOf (partial)\" f=\"MakeUseOf.xml\"><rule from=\"^http://(www\\.)?makeuseof\\.com/(favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1makeuseof.com/$2\"/><rule from=\"^http://(?:cdn\\.makeuseof|main\\.makeuseoflimited\\.netdna-cdn)\\.com/\" to=\"https://makeuseof.com/\"/></ruleset>", "<ruleset name=\"make Loveland.com\" f=\"Make_Loveland.com.xml\"><securecookie host=\"^\\.makeloveland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Make Tech Easier.com\" f=\"Make_Tech_Easier.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Make a Gif.com (false MCB)\" platform=\"mixedcontent\" f=\"Make_a_Gif.com-falsemixed.xml\"><securecookie host=\"^\\.makeagif\\.com$\" name=\".+\"/><rule from=\"^http://makeagif\\.com/\" to=\"https://makeagif.com/\"/></ruleset>", "<ruleset name=\"Make a Gif.com (partial)\" f=\"Make_a_Gif.com.xml\"><exclusion pattern=\"^http://makeagif\\.com/+(?!css/|favicon\\.ico|js/|s/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maker.tv\" default_off=\"breaks videos\" f=\"Maker.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maker Shed\" default_off=\"failed ruleset test\" f=\"Maker_Shed.xml\"><securecookie host=\"^(?:www\\.)?makershed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makerble\" f=\"Makerble.xml\"><rule from=\"^http://makerble\\.com/\" to=\"https://www.makerble.com/\"/><rule from=\"^http://([^/:@]+)\\.makerble\\.com/\" to=\"https://$1.makerble.com/\"/></ruleset>", "<ruleset name=\"Makerbot\" f=\"Makerbot.xml\"><securecookie host=\"^(?:accounts|\\.digitalstore|\\.store)?\\.makerbot\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|digitalstore|www)\\.)?makerbot\\.com/\" to=\"https://$1makerbot.com/\"/><rule from=\"^http://(?:www\\.)?store\\.makerbot\\.com/\" to=\"https://store.makerbot.com/\"/></ruleset>", "<ruleset name=\"Makes.org\" f=\"Makes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makewebeasy.com\" default_off=\"connection refused\" f=\"Makewebeasy.com.xml\"><rule from=\"^http://(?:www\\.)?makewebeasy\\.com/\" to=\"https://www.makewebeasy.com/\"/></ruleset>", "<ruleset name=\"Makezine.com (partial)\" f=\"Makezine.com.xml\"><securecookie host=\"^\\.makezine\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MakiBox\" default_off=\"failed ruleset test\" f=\"MakiBox.xml\"><securecookie host=\"^(?:www\\.)?makibox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makrotex.hu\" default_off=\"missing certificate chain\" f=\"Makrotex.hu.xml\"><securecookie host=\"^\\.makrotex\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malcontents Gambit.com\" default_off=\"mismatched\" f=\"Malcontents_Gambit.com.xml\"><securecookie host=\"^(?:www\\.)?malcontentsgambit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?malcontentsgambit\\.com/\" to=\"https://www.malcontentsgambit.com/\"/></ruleset>", "<ruleset name=\"Malcovery.com (partial)\" f=\"Malcovery.com.xml\"><securecookie host=\"^(?:blog|www)\\.malcovery\\.com$\" name=\".+\"/><rule from=\"^http://malcovery\\.com/\" to=\"https://www.malcovery.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maliit.org (partial)\" f=\"Maliit.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?maliit\\.org/+(?!\\?)\"/><securecookie host=\"^wiki\\.maliit\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:wiki\\.)?maliit\\.org/\" to=\"https://wiki.maliit.org/\"/></ruleset>", "<ruleset name=\"maltris.org\" f=\"Maltris.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.maltris\\.org/\" to=\"https://maltris.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malvern Diabetic Foot.org\" default_off=\"failed ruleset test\" f=\"Malvern_Diabetic_Foot.org.xml\"><securecookie host=\"^www\\.malverndiabeticfoot\\.org$\" name=\".+\"/><rule from=\"^http://www\\.malverndiabeticfoot\\.org/\" to=\"https://www.malverndiabeticfoot.org/\"/></ruleset>", "<ruleset name=\"malware-research.org\" f=\"Malware-research.org.xml\"><securecookie host=\"^\\.malware-research\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MalwareTech.net\" f=\"MalwareTech.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malware Tracker.com (partial)\" f=\"Malware_Tracker.com.xml\"><rule from=\"^http://(app\\.|www\\.)?malwaretracker\\.com/\" to=\"https://$1malwaretracker.com/\"/><rule from=\"^http://(?:www\\.)?malware-tracker\\.com/\" to=\"https://www.malware-tracker.com/\"/></ruleset>", "<ruleset name=\"Malwarebytes (partial)\" f=\"Malwarebytes.xml\"><securecookie host=\"^(?:helpdesk|\\.?store)?\\.malwarebytes\\.org$\" name=\".+\"/><rule from=\"^http://static-cdn\\.malwarebytes\\.org/\" to=\"https://static.malwarebytes.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwaredomainlist.com\" f=\"Malwaredomainlist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwr.com (partial)\" f=\"Malwr.com.xml\"><rule from=\"^http://malwr\\.com/\" to=\"https://malwr.com/\"/></ruleset>", "<ruleset name=\"Mamba.ru (partial)\" f=\"Mamba.xml\"><rule from=\"^http://(?:www\\.)?corp\\.mamba\\.ru/+\" to=\"https://corp.wamba.com/ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mammut\" f=\"Mammut.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManISec\" default_off=\"expired, self-signed\" f=\"ManISec.xml\"><rule from=\"^http://(?:www\\.)?manisec\\.com/\" to=\"https://www.manisec.com/\"/></ruleset>", "<ruleset name=\"Man Group\" f=\"Man_Group.xml\"><securecookie host=\"^(?:.*\\.)?man\\.com$\" name=\".+\"/><rule from=\"^http://man\\.com/\" to=\"https://www.man.com/\"/><rule from=\"^http://([^/:@]+)?\\.man\\.com/\" to=\"https://$1.man.com/\"/></ruleset>", "<ruleset name=\"Man in the Mirror.org\" f=\"Man_in_the_Mirror.org.xml\"><securecookie host=\"^(?:w*\\.)?maninthemirror\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManaBalss.lv\" f=\"ManaBalss.lv.xml\"><rule from=\"^http://(?:www\\.)?manabalss\\.lv/\" to=\"https://manabalss.lv/\"/></ruleset>", "<ruleset name=\"manage.cm\" f=\"Manage.cm.xml\"><securecookie host=\"^\\.manage\\.cm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManageEngine.jp\" f=\"ManageEngine.jp.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://manageengine\\.jp/\" to=\"https://www.manageengine.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManageEngine.com (partial)\" f=\"ManageEngine.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManageWP.org\" f=\"ManageWP.org.xml\"><securecookie host=\"^\\.managewp\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Managed Forex Program.com (false MCB)\" platform=\"mixedcontent\" f=\"Managed_Forex_Program.com.xml\"><securecookie host=\"^(?:www\\.)?managedforexprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manasource.org\" default_off=\"mismatched\" f=\"Manasource.org.xml\"><rule from=\"^http://(?:www\\.)?manasource\\.org/\" to=\"https://www.manasource.org/\"/></ruleset>", "<ruleset name=\"Manchester.gov.uk (partial)\" f=\"Manchester.gov.uk.xml\"><exclusion pattern=\"http://open\\.manchester\\.gov\\.uk/+(?!favicon\\.ico|open(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!open\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?manchester\\.gov\\.uk/\" to=\"https://cms.manchester.gov.uk/\"/><rule from=\"^http://b3\\.manchester\\.gov\\.uk/\" to=\"https://www.b3.manchester.gov.uk/\"/><rule from=\"^http://consult\\.manchester\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://manchester.objective.co.uk/portal\"/><rule from=\"^http://consult\\.manchester\\.gov\\.uk/\" to=\"https://manchester.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marks & Spencer\" platform=\"mixedcontent\" f=\"MandS.xml\"><securecookie host=\"^(?:.*\\.)?marksandspencer\\.com$\" name=\".+\"/><rule from=\"^http://(?:www(7|10|11)?\\.)?marksandspencer\\.com/\" to=\"https://www$1.marksandspencer.com/\"/><rule from=\"^http://(asset[12]|help|m|plana)\\.marksandspencer\\.com/\" to=\"https://$1.marksandspencer.com/\"/></ruleset>", "<ruleset name=\"Mandrillapp.com\" f=\"Mandrillapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mandriva.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mandriva.com-falsemixed.xml\"><rule from=\"^http://(blog|forum)\\.mandriva\\.com/(?!cron\\.php|favicon\\.ico|style\\.php|\\w\\w/(?:styles|wp-content)/)\" to=\"https://$1.mandriva.com/\"/></ruleset>", "<ruleset name=\"Mandriva.com\" default_off=\"failed ruleset test\" f=\"Mandriva.com.xml\"><exclusion pattern=\"^http://(?:blog|forum)\\.mandriva\\.com/(?!cron\\.php|favicon\\.ico|style\\.php|\\w\\w/(?:styles|wp-content)/)\"/><securecookie host=\".+\\.mandriva\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|expert|forum|git|lists|my|qa|serviceplace|svn|webapps|www2?)\\.)?mandriva\\.com/\" to=\"https://$1mandriva.com/\"/><rule from=\"^http://store\\.mandriva\\.com/[^?]*\" to=\"https://serviceplace.mandriva.com/\"/></ruleset>", "<ruleset name=\"Manga (partial)\" f=\"Manga.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mangaupdates.com\" f=\"Mangaupdates.com.xml\"><rule from=\"^http://(?:www\\.)?mangaupdates\\.com/\" to=\"https://www.mangaupdates.com/\"/></ruleset>", "<ruleset name=\"Mango (partial)\" f=\"Mango.xml\"><securecookie host=\"^s(?:hop|ssl)\\.mango\\.com$\" name=\".+\"/><rule from=\"^http://s(hop|sl)\\.mango\\.com/\" to=\"https://s$1.mango.com/\"/></ruleset>", "<ruleset name=\"Mango Languages.com\" f=\"Mango_Languages.com.xml\"><securecookie host=\"^org\\.mangolanguages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manhattan-Institute.org\" default_off=\"missing certificate chain\" f=\"Manhattan-Institute.xml\"><rule from=\"^http://manhattan-institute\\.org/\" to=\"https://www.manhattan-institute.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manhattanite\" f=\"Manhattanite.xml\"><securecookie host=\"^\\.www\\.shopmanhattanite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manhattanville College (partial)\" f=\"Manhattanville_College.xml\"><exclusion pattern=\"^http://(?:www\\.)?mville\\.edu/(?!/?images/|favicon\\.ico|modules/|plugins/|templates/)\"/><securecookie host=\"^(?:community|selfservice)\\.mville\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manila Principles.org\" f=\"Manila_Principles.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manitu.de\" f=\"Manitu.de.xml\"><rule from=\"^http://(status\\.|www\\.)?manitu\\.de/\" to=\"https://$1manitu.de/\"/><rule from=\"^http://(?:www\\.)?manitu\\.net/\" to=\"https://www.manitu.net/\"/></ruleset>", "<ruleset name=\"Manjaro.org (partial)\" f=\"Manjaro.org.xml\"><securecookie host=\"^(?:de|forum)\\.manjaro\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mankier.com\" f=\"Mankier.com.xml\"><securecookie host=\"^\\.mankier\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manta (partial)\" default_off=\"failed ruleset test\" f=\"Manta.xml\"><securecookie host=\"^w*\\.manta\\.com$\" name=\".+\"/><rule from=\"^http://(?:llnw\\.|(www\\.))?manta\\.com/\" to=\"https://$1manta.com/\"/><rule from=\"^http://m\\d\\.manta-r1\\.com/\" to=\"https://www.mata.com/\"/></ruleset>", "<ruleset name=\"Manticore (partial)\" f=\"Manticore.xml\"><securecookie host=\"^stats\\.manticoretechnology\\.com$\" name=\".*\"/><rule from=\"^http://(?:app|purl)\\.manticoretechnology\\.com/\" to=\"https://app.manticoretechnology.com/\"/><rule from=\"^http://stats\\.manticoretechnology\\.com/\" to=\"https://stats.manticoretechnology.com/\"/></ruleset>", "<ruleset name=\"Mantis Ad Network.com (partial)\" f=\"Mantis_Ad_Network.com.xml\"><securecookie host=\"^\\.mantisadnetwork\\.com$\" name=\"^uuid$\"/><securecookie host=\"^admin\\.mantisadnetwork\\.com$\" name=\".+\"/><rule from=\"^http://status\\.mantisadnetwork\\.com/\" to=\"https://mantisadnetwork.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mantor.org\" f=\"Mantor.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManuFrog Webbhotell (partial)\" platform=\"mixedcontent\" f=\"ManuFrog-Webbhotell.xml\"><securecookie host=\"^webmail\\.manufrog\\.com$\" name=\".*\"/><rule from=\"^http://((?:manu\\d\\d?|webmail|www)\\.)?manufrog\\.com/\" to=\"https://$1manufrog.com/\"/></ruleset>", "<ruleset name=\"Manutan.fr\" f=\"Manutan.fr.xml\"><securecookie host=\"^www\\.manutan\\.fr$\" name=\".+\"/><rule from=\"^http://manutan\\.fr/\" to=\"https://www.manutan.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manx Computer Bureau\" f=\"Manx_Computer_Bureau.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManyVids.com (partial)\" f=\"ManyVids.com.xml\"><securecookie host=\"^(?:www)?\\.manyvids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MapBox.com\" f=\"MapBox.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://support\\.mapbox\\.com/.*\" to=\"https://www.mapbox.com/help/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MapLight\" default_off=\"expired\" f=\"MapLight.xml\"><rule from=\"^http://(?:www\\.)?maplight\\.org/\" to=\"https://maplight.org/\"/></ruleset>", "<ruleset name=\"MapQuest (questionable)\" default_off=\"reported broken\" f=\"MapQuest.xml\"><rule from=\"^http://(?:www\\.)?mapquest\\.com/\" to=\"https://www.mapquest.com/\"/><rule from=\"^http://developer\\.mapquest\\.com/\" to=\"https://developer.mapquest.com/\"/><rule from=\"^http://(?:www\\.)?mapquestapi\\.com/\" to=\"https://www.mapquestapi.com/\"/><rule from=\"^http://(?:www\\.)?mapquesthelp\\.com/\" to=\"https://www.mapquesthelp.com/\"/></ruleset>", "<ruleset name=\"Mapillary.com\" f=\"Mapillary.com.xml\"><rule from=\"^http://mapillary\\.com/\" to=\"https://www.mapillary.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maplesoft.com\" f=\"Maplesoft.com.xml\"><rule from=\"^http://(?:www\\.)?maplesoft\\.com/\" to=\"https://www.maplesoft.com/\"/></ruleset>", "<ruleset name=\"Mapped in Israel.com\" f=\"Mapped_in_Israel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapping media freedom.org\" f=\"Mapping_Media_Freedom.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.mappingmediafreedom\\.org/\" to=\"https://mappingmediafreedom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapraider.com (partial)\" f=\"Mapraider.com.xml\"><rule from=\"^http://(www\\.)?mapraider\\.com/+(login|register)(?=$|\\?)\" to=\"https://$1mapraider.com/$2/\"/><rule from=\"^http://(www\\.)?mapraider\\.com/(?=_css/|_images/|_js/|login/|register/)\" to=\"https://$1mapraider.com/\"/><rule from=\"^http://static\\.mapraider\\.com/\" to=\"https://www.mapraider.com/\"/></ruleset>", "<ruleset name=\"Maps.me\" f=\"Maps.me.xml\"><securecookie host=\"^(www\\.)?maps\\.me\" name=\".+\"/><rule from=\"^http://fb\\.maps\\.me/\" to=\"https://www.facebook.com/MapsWithMe/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapy.cz\" f=\"Mapy.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapzen.com\" f=\"Mapzen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marathon Bet.com (partial)\" platform=\"mixedcontent\" f=\"Marathon_Bet.com.xml\"><securecookie host=\"^(?:www)?\\.marathonbet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marathonbet\\.com/\" to=\"https://www.marathonbet.com/\"/><rule from=\"^http://static\\.marathonbet\\.com/\" to=\"https://static.marathonbet.com/\"/></ruleset>", "<ruleset name=\"Marc-Stevens.nl\" f=\"Marc-Stevens.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marc Rogers.org\" f=\"Marc_Rogers.org.xml\"><securecookie host=\"^\\.marcrogers\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"marcan.st\" f=\"Marcan.st.xml\"><rule from=\"^http://(www\\.)?marcan(\\.st|soft\\.com)/\" to=\"https://$1marcan$2/\"/></ruleset>", "<ruleset name=\"March for Babies.org (partial)\" f=\"March_for_Babies.org.xml\"><securecookie host=\"^(?:www)?\\.marchforbabies\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marchforbabies\\.org/\" to=\"https://www.marchforbabies.org/\"/><rule from=\"^http://m\\.marchforbabies\\.org/\" to=\"https://m.marchforbabies.org/\"/></ruleset>", "<ruleset name=\"Marchex (partial)\" default_off=\"failed ruleset test\" f=\"Marchex.xml\"><exclusion pattern=\"^http://www\\.industrybrains\\.com/(?:$|\\?)\"/><securecookie host=\"^www\\.industrybrains\\.com$\" name=\".+\"/><securecookie host=\"^ppc\\.adhere\\.marchex\\.com$\" name=\".+\"/><securecookie host=\"^(?:dcm|www)\\.marchex\\.com$\" name=\".+\"/><rule from=\"^http://c\\.enhance\\.com/\" to=\"https://c.enhance.com/\"/><rule from=\"^http://(?:www\\.)?industrybrains\\.com/\" to=\"https://www.industrybrains.com/\"/><rule from=\"^http://(image|jlink|shlink)s\\.industrybrains\\.com/\" to=\"https://$1s.industrybrains.com/\"/><rule from=\"^http://((?:dcm|ppc\\.adhere|www)\\.)?marchex\\.com/\" to=\"https://$1marchex.com/\"/><rule from=\"^http://(?:www\\.)?voicestar\\.com/[^?]*\" to=\"https://www.marchex.com/call-tracking/analytics/\"/></ruleset>", "<ruleset name=\"Marhab (partial)\" f=\"Marhab.xml\"><securecookie host=\"^fb1\\.marhab\\.com$\" name=\".+\"/><rule from=\"^http://(cdn4|fb1|static)\\.marhab\\.com/\" to=\"https://$1.marhab.com/\"/></ruleset>", "<ruleset name=\"Marhaba Brighton\" default_off=\"failed ruleset test\" f=\"Marhaba_Brighton.xml\"><securecookie host=\"^\\.marhababrighton\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MariaDB.com (partial)\" f=\"MariaDB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MariaDB.org\" f=\"MariaDB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maricopa Community Colleges (self-signed)\" default_off=\"expired, mismatch, self-signed\" f=\"Maricopa-Community-Colleges-self-signed.xml\"><securecookie host=\"^webcal\\.maricopa\\.edu$\" name=\".*\"/><rule from=\"^http://((?:www\\.mcli|web1)\\.dist|my|webcal)\\.maricopa\\.edu/\" to=\"https://$1.maricopa.edu/\"/></ruleset>", "<ruleset name=\"Maricopa Community Colleges (partial)\" f=\"Maricopa-Community-Colleges.xml\"><securecookie host=\"^ecourses\\.maricopa\\.edu$\" name=\".*\"/><securecookie host=\"^\\.sis\\.maricopa\\.edu$\" name=\"^PSJSESSIONID$\"/><rule from=\"^http://(?:www\\.)?maricopa\\.edu/\" to=\"https://www.maricopa.edu/\"/><rule from=\"^http://(ecourses|eims|google|memo[23]?|student\\.sis)\\.maricopa\\.edu/\" to=\"https://$1.maricopa.edu/\"/></ruleset>", "<ruleset name=\"Marie Isabelle & Associates\" default_off=\"mismatch\" f=\"Marie-Isabelle-and-Associates.xml\"><rule from=\"^http://(?:www\\.)?mi-ms\\.com/$\" to=\"https://mi-ms.com/~mimscom/atemporium.html\"/><rule from=\"^http://(?:www\\.)?mi-ms\\.com/\" to=\"https://mi-ms.com/~mimscom/\"/></ruleset>", "<ruleset name=\"Marie Stopes International Australia\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Marie-Stopes-Intl-Australia.xml\"><securecookie host=\"^(?:giveto|www)\\.mariestopes\\.org\\.au$\" name=\".+\"/><rule from=\"^http://giveto\\.mariestopes\\.org\\.au/\" to=\"https://giveto.mariestopes.org.au/\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/donate\\.html($|#|\\?)\" to=\"https://giveto.mariestopes.org.au/$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/sex-appeal\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/how-we-help$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/Film-Night-Amelia\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/how-you-can-help/campaigns-and-appeals/film-nights$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/abortion-aid\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/news-room/international-programs/media-releases/item/389-abortion-aid-why-is-rudd-the-last-man-standing$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/Country-Programs\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/how-we-help/where-we-work$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/contact-us\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/contact-us$2\"/><rule from=\"^http://(?:www\\.)?mariestopes\\.org\\.au/\" to=\"https://www.mariestopes.org.au/\"/></ruleset>", "<ruleset name=\"Marie Claire.co.uk (partial)\" f=\"Marie_Claire.co.uk.xml\"><rule from=\"^http://(?:www\\.)?marieclaire\\.co\\.uk/(css/|favicon\\.ico|images/|js/)\" to=\"https://marieclaire.ipcmediasecure.com/$1\"/></ruleset>", "<ruleset name=\"Marijauana Majority\" f=\"Marijuana_Majority.xml\"><securecookie host=\"^\\.marijuanamajority\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarinSm.com (partial)\" f=\"MarinSm.com.xml\"><securecookie host=\"^\\.marinsm\\.com$\" name=\"^_msuuid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marin Software (problematic)\" default_off=\"mismatched\" f=\"Marin_Software-problematic.xml\"><rule from=\"^http://(?:www\\.)?marinsoftware\\.de/\" to=\"https://www.marinsoftware.de/\"/></ruleset>", "<ruleset name=\"Marin Software.com (partial)\" f=\"Marin_Software.xml\"><securecookie host=\"^(?:app|lvw4|pro|rt)\\.marinsoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marine Depot.com (partial)\" f=\"Marine_Depot.com.xml\"><rule from=\"^http://(?:www\\.)?marinedepot\\.com/(?=App_Themes/|favicon\\.ico)\" to=\"https://www.marinedepot.com/\"/><rule from=\"^http://shop\\.marinedepot\\.com/\" to=\"https://shop.marinedepot.com/\"/></ruleset>", "<ruleset name=\"Marine Shop.net\" f=\"Marine_Shop.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarinellaRose.com\" default_off=\"failed ruleset test\" f=\"MarinellaRose.com.xml\"><securecookie host=\"^(?:w*\\.)?(?:bellareed|marinellarose)\\.com\" name=\".+\"/><rule from=\"^http://(www\\.)?(bellareed|marinellarose)\\.com/\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"The Marion Star\" default_off=\"failed ruleset test\" f=\"Marion_Star.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?marionstar\\.com/\" to=\"https://www.marionstar.com/\"/></ruleset>", "<ruleset name=\"Mark Meyer Photography\" default_off=\"mismatch\" f=\"Mark-Meyer-Photography.xml\"><securecookie host=\"^www\\.photo-mark\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?photo-mark\\.com/\" to=\"https://www.photo-mark.com/\"/></ruleset>", "<ruleset name=\"Mark Monitor\" f=\"Mark-Monitor.xml\"><securecookie host=\"^corp\\.markmonitor\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?markmonitor\\.com/\" to=\"https://www.markmonitor.com/\"/><rule from=\"^http://corp\\.markmonitor\\.com/\" to=\"https://corp.markmonitor.com/\"/></ruleset>", "<ruleset name=\"MarkMail\" default_off=\"mismatched, self-signed\" f=\"MarkMail.xml\"><rule from=\"^http://(?:www\\.)?markmail\\.biz/\" to=\"https://markmail.biz/\"/></ruleset>", "<ruleset name=\"MarkRuler (partial)\" f=\"MarkRuler.xml\"><securecookie host=\"^(?:.*\\.)?conversionruler\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?conversionruler\\.com/\" to=\"https://$1conversionruler.com/\"/></ruleset>", "<ruleset name=\"Mark NG.co.uk\" f=\"Mark_NG.co.uk.xml\"><securecookie host=\"^(?:www)?\\.markng\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Markee Dragon\" default_off=\"failed ruleset test\" f=\"Markee_Dragon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarketGid.com (partial)\" f=\"MarketGid.com.xml\"><securecookie host=\"^(?:\\.www)?\\.marketgid\\.com$\" name=\"^httpsReferer$\"/><securecookie host=\"^(?:dashboard|tools)\\.marketgid\\.com$\" name=\".+\"/><rule from=\"^http://(a|dashboard|my|tools|usr)\\.marketgid\\.com/\" to=\"https://$1.marketgid.com/\"/></ruleset>", "<ruleset name=\"MarketPress.com\" f=\"MarketPress.com.xml\"><securecookie host=\"^\\.?marketpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Market Dojo\" f=\"Market_Dojo.xml\"><securecookie host=\"^(?:.*\\.)?marketdojo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketing G2\" f=\"Marketing_G2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketing Matters\" f=\"Marketing_Matters.xml\"><securecookie host=\"^(?:www\\.)?meeting-reg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketing Research.org (partial)\" default_off=\"mismatched\" f=\"Marketing_Research.org.xml\"><securecookie host=\"^\\.marketingresearch\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marketingresearch\\.org/\" to=\"https://www.marketingresearch.org/\"/></ruleset>", "<ruleset name=\"Marketingoops.com\" f=\"Marketingoops.com.xml\"><rule from=\"^http://(?:www\\.)?marketingoops\\.com/\" to=\"https://www.marketingoops.com/\"/></ruleset>", "<ruleset name=\"Marketo.net\" f=\"Marketo.net.xml\"><securecookie host=\".*\\.marketo\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marketo\\.net/\" to=\"https://www.marketo.com/\"/><rule from=\"^http://app\\.marketo\\.net/\" to=\"https://app-a.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketo.com (partial)\" f=\"Marketo.xml\"><securecookie host=\".\" name=\"^(?!rememberUserId$).+\"/><rule from=\"^http://pages2\\.marketo\\.com/+(?:\\?.*)?$\" to=\"https://www.marketo.com/\"/><rule from=\"^http://pages2\\.marketo\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-abk.marketo.com/\"/><rule from=\"^http://((?:app|app-\\w+|b2c-mlm|community|fr|launchpoint|micro|na-\\w+|nation|(?:app-)?www\\.nation|summit|support|www)\\.)?marketo\\.com/\" to=\"https://$1marketo.com/\"/></ruleset>", "<ruleset name=\"Marketplace.org (problematic)\" default_off=\"cert mismatches\" f=\"Marketplace.org-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?marketplace\\.org/(?:favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^origin-www\\.marketplace\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?marketplace\\.org/\" to=\"https://origin-www.marketplace.org/\"/></ruleset>", "<ruleset name=\"Marketplace.org (partial)\" f=\"Marketplace.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?marketplace\\.org/(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^\\.marketplace\\.org$\" name=\"^WT_FPC$\"/><rule from=\"^http://thenumbers\\.marketplace\\.org/\" to=\"https://markets.financialcontent.com/\"/><rule from=\"^http://tracker\\.financialcontent\\.com/\" to=\"https://tracker.financialcontent.com/\"/></ruleset>", "<ruleset name=\"Marketplace Used (partial)\" f=\"Marketplace_Used.xml\"><rule from=\"^http://(www\\.)?marketplace-used\\.com/(addons/|geo_templates/|index\\.php\\?a=10|user_images/)\" to=\"https://$1marketplace-used.com/$2\"/></ruleset>", "<ruleset name=\"marketstudio.net\" f=\"Marketstudio.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketwatch.com\" platform=\"mixedcontent\" f=\"Marketwatch.com.xml\"><securecookie host=\"^\\.marketwatch\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?marketwatch\\.com/\" to=\"https://secure.marketwatch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketwire\" default_off=\"failed ruleset test\" f=\"Marketwire.com.xml\"><rule from=\"^http://(?:www\\.)?marketwire\\.com/\" to=\"https://marketwire.com/\"/><rule from=\"^http://media\\.marketwire\\.com/\" to=\"https://media.marketwire.com/\"/></ruleset>", "<ruleset name=\"Markit (partial)\" f=\"Markit.xml\"><securecookie host=\"^.*\\.markit\\.com$\" name=\".+\"/><rule from=\"^http://markit\\.com/\" to=\"https://www.markit.com/\"/><rule from=\"^http://(web\\.apps|www)\\.markit\\.com/\" to=\"https://$1.markit.com/\"/><rule from=\"^http://(?:www\\.)?feedback\\.markit\\.com/dashboard/(?:\\w+\\.(?:cs|j)s|org/)\" to=\"https://www.clicktools.com/dashboard/$1\"/></ruleset>", "<ruleset name=\"Markit On Demand\" f=\"Markit_On_Demand.xml\"><securecookie host=\"^(?:www\\.)?wallst\\.com$\" name=\".+\"/><securecookie host=\".*\\.wsod\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn\\.markit|media\\.scottrade|www)\\.)?wallst\\.com/\" to=\"https://$1wallst.com/\"/><rule from=\"^http://([\\w-]+)\\.wsod\\.com/\" to=\"https://$1.wsod.com/\"/><rule from=\"^http://(ad|media)\\.wsodcdn\\.com/\" to=\"https://$1.wsodcdn.com/\"/></ruleset>", "<ruleset name=\"markonefoods.com\" default_off=\"handshake fails\" f=\"Markonefoods.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?markonefoods\\.com/\" to=\"https://markonefoods.com/\"/></ruleset>", "<ruleset name=\"Markup\" default_off=\"mismatch\" f=\"Markup.xml\"><rule from=\"^http://(?:www\\.)?markup\\.io/\" to=\"https://markup.io/\"/></ruleset>", "<ruleset name=\"marmotte.net (partial)\" platform=\"cacert\" f=\"Marmotte.net.xml\"><securecookie host=\"^mail\\.marmotte\\.net$\" name=\".+\"/><rule from=\"^http://marmotte\\.net/\" to=\"https://www.marmotte.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarsHut.net\" default_off=\"failed ruleset test\" f=\"MarsHut.net.xml\"><rule from=\"^http://(www\\.)?marsnet\\.net/\" to=\"https://$1marshut.net/\"/></ruleset>", "<ruleset name=\"Mars One (partial)\" f=\"Mars_One.xml\"><rule from=\"^http://cdn\\.mars-one\\.com/\" to=\"https://d1qhvyunt8f5y3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Marsupi.org (partial)\" default_off=\"self-signed\" f=\"Marsupi.org.xml\"><securecookie host=\"^\\.(?:www\\.)?marsupi\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marsupi\\.org/\" to=\"https://marsupi.org/\"/></ruleset>", "<ruleset name=\"Martha Stewart (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Martha-Stewart-mismatches.xml\"><securecookie host=\"^\\.community\\.wholeliving\\.com$\" name=\".*\"/><rule from=\"^http://shop\\.marthastewart\\.com/\" to=\"https://shop.marthastewart.com/\"/><rule from=\"^http://community\\.wholeliving\\.com/\" to=\"https://community.wholeliving.com/\"/><rule from=\"^http://wholelivingdaily\\.wholeliving\\.com/\" to=\"https://wholelivingdaily.wholeliving.com/\"/></ruleset>", "<ruleset name=\"Martha Stewart (partial)\" f=\"Martha-Stewart.xml\"><securecookie host=\"^my\\.marthastewart(?:weddings)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?marthastewart(?:weddings)?\\.com/images//?\" to=\"https://images.marthastewart.com/images/\"/><rule from=\"^http://images\\.(?:marthastewart(?:weddings)?|wholeliving)\\.com/\" to=\"https://images.marthastewart.com/\"/><rule from=\"^http://my\\.(marthastewart(?:weddings)?|wholeliving)\\.com/\" to=\"https://my.$1.com/\"/><rule from=\"^http://metric\\.marthastewart\\.com/\" to=\"https://marthacom-marthacomglobal.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Martin Eve.com\" f=\"Martin_Eve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piware.de (partial)\" f=\"Martin_Pitt.xml\"><rule from=\"^http://mh21\\.piware\\.de/\" to=\"https://mh21.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Martus\" f=\"Martus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marum.de\" f=\"Marum.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel.com (false MCB)\" platform=\"mixedcontent\" f=\"Marvel.com-falsemixed.xml\"><rule from=\"^http://marvel\\.com:81/\" to=\"https://marvel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel.com (partial)\" f=\"Marvel.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?marvel\\.com(?::81/|/+universe(?:$|[?/]))\"/><exclusion pattern=\"^http://marvel\\.com/universe3zx/index\\.php\"/><exclusion pattern=\"^http://secure\\.marvel\\.com/(?:\\?.*)?$\"/><exclusion pattern=\"^http://subscriptions\\.marvel\\.com/(?!$|css/|i/|images/|(?:login|store/shippingr)\\.asp|script/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel Heroes.com (partial)\" f=\"Marvel_Heroes.com.xml\"><securecookie host=\"^(?:login|\\.store)\\.marvelheroes\\.com$\" name=\".+\"/><rule from=\"^http://((?:forums|login|store|www)\\.)?marvelheroes\\.com/\" to=\"https://$1marvelheroes.com/\"/></ruleset>", "<ruleset name=\"Marvel Store.com\" f=\"Marvel_Store.xml\"><exclusion pattern=\"^http://www\\.marvelstore\\.com/(?!marvel/store/(?:DSIAjaxOrderItemAdd|DSIProcessWidget)(?:$|\\?)|static/)\"/><securecookie host=\"^\\.marvelstore\\.com$\" name=\"s_(?:per|ses)s$\"/><rule from=\"^http://cdn\\.static1\\.marvelstore\\.com/static/\\?\\?css/\" to=\"https://static1.marvelstore.com/static/??css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvell\" f=\"Marvell.xml\"><securecookie host=\"^origin-www\\.marvell\\.com$\" name=\".*\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?marvell\\.com/\" to=\"https://origin-www.marvell.com/\"/><rule from=\"^http://extranet\\.marvell\\.com/\" to=\"https://extranet.marvell.com/\"/></ruleset>", "<ruleset name=\"Marxists Internet Archive \" f=\"Marxists.xml\"><rule from=\"^http://(?:www\\.)?marxists\\.org/\" to=\"https://www.marxists.org/\"/><rule from=\"^http://(?:www\\.)?marx\\.org/\" to=\"https://www.marxists.org/\"/></ruleset>", "<ruleset name=\"Maryland Shooters\" default_off=\"failed ruleset test\" f=\"Maryland_Shooters.xml\"><securecookie host=\"^(?:www\\.)?mdshooters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashape.com (partial)\" f=\"Mashape.com.xml\"><securecookie host=\"^(?:id|www)\\.mashape\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashery clients\" default_off=\"failed ruleset test\" f=\"Mashery-clients.xml\"><rule from=\"^http://dev(?:eloper\\.netflix\\.|\\.pipl\\.com)/public/Mashery/\" to=\"https://secure.mashery.com/public/Mashery/\"/></ruleset>", "<ruleset name=\"Mashery.com (partial)\" f=\"Mashery.xml\"><exclusion pattern=\"^http://(?:dev|developer|support)\\.mashery\\.com/(?!files/|public/)\"/><securecookie host=\"^(?:secure|visit)\\.mashery\\.com$\" name=\".*\"/><rule from=\"^http://mashery\\.com/\" to=\"https://www.mashery.com/\"/><rule from=\"^http://content\\.developer\\.mashery\\.com/\" to=\"https://s3.amazonaws.com/content.developer.mashery.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MassLive.com (partial)\" f=\"MassLive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mass Relevance\" f=\"Mass_Relevance.xml\"><rule from=\"^http://(api\\.|secure-up\\.)?massrelevance\\.com/\" to=\"https://$1massrelevance.com/\"/><rule from=\"^http://up\\.massrelevance\\.com/\" to=\"https://d1rts87l9itzp2.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?tweetriver\\.com/\" to=\"https://tweetriver.com/\"/><rule from=\"^http://proxy\\.tweetriver\\.com/\" to=\"https://proxy.tweetriver.com/\"/></ruleset>", "<ruleset name=\"Massage Magazine\" platform=\"mixedcontent\" f=\"MassageMagazine.xml\"><securecookie host=\"^(?:.*\\.)?massagemag\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?massagemag\\.com/\" to=\"https://www.massagemag.com/\"/></ruleset>", "<ruleset name=\"Massdrop.com\" f=\"Massdrop.com.xml\"><securecookie host=\"^www\\.massdrop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Massrel.io\" f=\"Massrel.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterCard\" default_off=\"failed ruleset test\" f=\"MasterCard.xml\"><securecookie host=\"^.*\\.mastercard\\.com$\" name=\".+\"/><securecookie host=\"^www\\.securecode\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mastercard\\.com/\" to=\"https://www.mastercard.com/\"/><rule from=\"^http://newsroom\\.mastercard\\.com/\" to=\"https://newsroom.mastercard.com/\"/><rule from=\"^http://smetrics\\.mastercardintl\\.com/\" to=\"https://smetrics.mastercardintl.com/\"/><rule from=\"^http://(?:www\\.)?securecode\\.com/\" to=\"https://www.securecode.com/\"/></ruleset>", "<ruleset name=\"MasterChan.org\" f=\"MasterChan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterNet\" f=\"MasterNet.xml\"><securecookie host=\"^(?:www)?\\.masternet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterXchange.com\" f=\"MasterXchange.com.xml\"><securecookie host=\"^(?:www\\.)?masterxchange.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Master Spas WI.com\" f=\"Master_Spas_WI.com.xml\"><securecookie host=\"^\\.?masterspaswi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastering Emacs.org\" f=\"Mastering_Emacs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastermind\" default_off=\"failed ruleset test\" f=\"Mastermind.xml\"><securecookie host=\"^www\\.mastermindpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Masterminds Digital.com (partial)\" f=\"Masterminds_Digital.com.xml\"><securecookie host=\"^(?:emailmarketing\\.|support\\.)?mastermindsdigital\\.com$\" name=\".+\"/><rule from=\"^http://www\\.mastermindsdigital\\.com/\" to=\"https://mastermindsdigital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastozytose-Schweiz.org\" f=\"Mastozytose-Schweiz.org.xml\"><securecookie host=\"^\\.?mastozytose-schweiz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Masty.nl\" f=\"Masty.nl.xml\"><securecookie host=\"^\\.masty\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matalan.co.uk (partial)\" f=\"Matalan.co.uk.xml\"><exclusion pattern=\"^http://www\\.matalan\\.co\\.uk/+(?!asset/|favicon\\.ico)\"/><rule from=\"^http://(?:www\\.)?matalan\\.co\\.uk/\" to=\"https://www.matalan.co.uk/\"/></ruleset>", "<ruleset name=\"Matatall.com (partial)\" f=\"Matatall.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Match.com (partial)\" f=\"Match.com.xml\"><securecookie host=\"^secure2\\.intl\\.match\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Materiel.net (partial)\" f=\"Materiel.net.xml\"><exclusion pattern=\"^http://www\\.materiel\\.net/+(?!assets/|css/|favicon\\.ico|images/|pm/client/(?:login|register|sendpass)\\.html)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MathWorks.com\" f=\"MathWorks.com.xml\"><rule from=\"^http://(?:www\\.)?mathworks\\.com/\" to=\"https://www.mathworks.com/\"/></ruleset>", "<ruleset name=\"Mathbuntu.org\" default_off=\"expired\" f=\"Mathbuntu.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mathias-Kettner.de\" f=\"Mathias-Kettner.de.xml\"><rule from=\"^http://(?:www\\.)?mathias-kettner\\.de/\" to=\"https://mathias-kettner.de/\"/></ruleset>", "<ruleset name=\"Mathias Bynens.be\" f=\"Mathias_Bynens.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mathjobs.org\" f=\"Mathjobs.org.xml\"><rule from=\"^http://(www\\.)?mathjobs\\.org/\" to=\"https://www.mathjobs.org/\"/></ruleset>", "<ruleset name=\"Mathtag.com\" f=\"Mathtag.com.xml\"><securecookie host=\"^\\.mathtag\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matilda Jane Clothing.com\" f=\"Matilda_Jane_Clothing.com.xml\"><securecookie host=\"^\\.matildajaneclothing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matilda Jane Platinum.com\" f=\"Matilda_Jane_Platinum.com.xml\"><securecookie host=\"^\\.?matildajaneplatinum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matkahuolto\" default_off=\"failed ruleset test\" f=\"Matkahuolto.xml\"><securecookie host=\"^www\\.matkahuolto\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?matkahuolto\\.info/\" to=\"https://www.matkahuolto.info/\"/></ruleset>", "<ruleset name=\"Matomy Media\" default_off=\"expired\" f=\"Matomy-Media.xml\"><rule from=\"^http://(?:www\\.)?matomymedia\\.com/\" to=\"https://www.matomymedia.com/\"/></ruleset>", "<ruleset name=\"Matomy Market\" f=\"Matomy_Market.xml\"><securecookie host=\"^\\.?network\\.adsmarket\\.com$\" name=\".+\"/><rule from=\"^http://network\\.adsmarket\\.com/\" to=\"https://network.adsmarket.com/\"/></ruleset>", "<ruleset name=\"Matrix.org\" f=\"Matrix.org.xml\"><securecookie host=\"^(www\\.)?matrix\\.org$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:www\\.)?matrix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matrix Group\" f=\"Matrix_Group.xml\"><securecookie host=\"^www\\.matrixgroup\\.net$\" name=\".+\"/><rule from=\"^http://matrixgroup\\.net/.*\" to=\"https://www.matrixgroup.net/\"/><rule from=\"^http://(clients|www)\\.matrixgroup\\.net/\" to=\"https://$1.matrixgroup.net/\"/></ruleset>", "<ruleset name=\"Matrox (partial)\" f=\"Matrox.xml\"><rule from=\"^http://(www\\.)?matrox\\.com/video/media/\" to=\"https://$1matrox.com/video/media/\"/></ruleset>", "<ruleset name=\"Matt Drollette\" f=\"Matt_Drollette.xml\"><securecookie host=\"^\\.drollette\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matt Wilcox.net\" f=\"Matt_Wilcox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matthew Petroff\" default_off=\"self-signed\" f=\"Matthew_Petroff.xml\"><securecookie host=\"^www\\.mpetroff\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mpetroff\\.net/\" to=\"https://www.mpetroff.net/\"/></ruleset>", "<ruleset name=\"Matthews Marking.com (partial)\" f=\"Matthews_Marking.com.xml\"><rule from=\"^http://(www\\.)?matthewsmarking\\.com/(?=css/|distributors(?:$|[?/])|favicon\\.ico|images/|images_old/|wp-content/|wp-includes/)\" to=\"https://$1matthewsmarking.com/\"/></ruleset>", "<ruleset name=\"MauivaAirCruise.com (partial)\" f=\"MauivaAirCruise.com.xml\"><rule from=\"^http://(www\\.)?mauivaaircruise\\.com/(misc|modules|profiles|sites)/\" to=\"https://$1mauivaaircruise.com/$2/\"/></ruleset>", "<ruleset name=\"Mauras.ch (partial)\" f=\"Mauras.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maurus.net\" f=\"Maurus.net.xml\"><securecookie host=\"^maurus\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?maurus\\.net/\" to=\"https://maurus.net/\"/></ruleset>", "<ruleset name=\"Maven.co (partial)\" f=\"Maven.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?maven\\.co/(?!signup(?:$|[?/])|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maven.org (partial)\" f=\"Maven.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Max Planck Institute for Software Systems\" default_off=\"self-signed\" f=\"Max-Planck-Institute-for-Software-Systems.xml\"><rule from=\"^http://(?:www\\.)?mpi-soft\\.mpg\\.de/\" to=\"https://www.mpi-soft.mpg.de/\"/><rule from=\"^http://((?:adresearch|broadband|bftsim|bgp|bugassist|ceal|cloud|concurrency|courses|dependability|friendlist-manager|imprs|mg|monarch|peerreview|peerspective|popl|psn|robust-fpga|satellitelab|simna2011|socialnetworks|twitter|wiki|www)\\.)?mpi-sws\\.org/\" to=\"https://$1mpi-sws.org/\"/></ruleset>", "<ruleset name=\"Max Hamburgare\" f=\"Max.se.xml\"><rule from=\"^http://(?:www\\.)?max\\.se/\" to=\"https://www.max.se/\"/></ruleset>", "<ruleset name=\"MaxCDN.com (partial)\" f=\"MaxCDN.com.xml\"><securecookie host=\"^\\.(?:[\\w-]\\.)?maxcdn\\.com$\" name=\"^optimizely\\w+$\"/><securecookie host=\"^secure(?:-cdn)?\\.maxcdn\\.com$\" name=\".+\"/><rule from=\"^http://maxcdn\\.com/\" to=\"https://www.maxcdn.com/\"/><rule from=\"^http://blog\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/blog/\"/><rule from=\"^http://support\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/one/\"/><rule from=\"^http://status\\.maxcdn\\.com/\" to=\"https://maxcdn.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaxServ.com\" f=\"MaxServ.com.xml\"><securecookie host=\"^www\\.maxserv\\.com$\" name=\".+\"/><rule from=\"^http://maxserv\\.com/\" to=\"https://www.maxserv.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaxSpeed CDN.com\" f=\"MaxSpeed_CDN.com.xml\"><securecookie host=\"^\\.maxspeedcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Max Kitap.com\" default_off=\"failed ruleset test\" f=\"Max_Kitap.com.xml\"><securecookie host=\"^(?:www)?\\.maxkitap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxim-IC.com\" f=\"Maxim-IC.com.xml\"><rule from=\"^http://maxim-ic\\.com/\" to=\"https://www.maxim-ic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxim Integrated.com (partial)\" f=\"Maxim_Integrated.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaxMind (partial)\" f=\"Maxmind.xml\"><securecookie host=\"^www\\.maxmind\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxymiser (partial)\" f=\"Maxymiser.xml\"><securecookie host=\"^.*\\.maxymiser\\.com$\" name=\".+\"/><rule from=\"^http://(cg-global\\.|hub\\.|www\\.)?maxymiser\\.com/\" to=\"https://$1maxymiser.com/\"/><rule from=\"^http://service\\.maxymiser\\.net/\" to=\"https://service.maxymiser.net/\"/></ruleset>", "<ruleset name=\"May First.org (mismatches)\" default_off=\"mismatch\" f=\"MayFirstPeopleLink-mismatches.xml\"><securecookie host=\"^didier\\.mayfirst\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"May First.org (partial)\" f=\"MayFirstPeopleLink.xml\"><securecookie host=\"^(?:.*\\.)?mayfirst\\.org$\" name=\".*\"/><rule from=\"^http://www\\.mayfirst\\.org/\" to=\"https://mayfirst.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MayFlower Software (mismatches)\" default_off=\"mismatch\" f=\"MayFlower-Software-mismatches.xml\"><rule from=\"^http://(?:www\\.)?justfordomino\\.com/\" to=\"https://justfordomino.com/\"/></ruleset>", "<ruleset name=\"MayFlower Software (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MayFlower-Software.xml\"><rule from=\"^http://(?:www\\.)?maysoft\\.com/\" to=\"https://maysoft.com/\"/><rule from=\"^http://(?:www\\.)?notesappstore\\.com/\" to=\"https://www.notesappstore.com/\"/></ruleset>", "<ruleset name=\"Maybe Maimed.com (partial)\" f=\"Maybe_Maimed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mayday.us\" f=\"Mayday.us.xml\"><securecookie host=\"^\\.mayday\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maymay.net\" f=\"Maymay.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mayo Clinic (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mayo-Clinic.xml\"><securecookie host=\"^(?:.*\\.)?mayoclinic\\.(?:com|org)$\" name=\".+\"/><rule from=\"^http://mayoclinic\\.com/\" to=\"https://www.mayoclinic.com/\"/><rule from=\"^http://(healthletter|(?:book)?store|www)\\.mayoclinic\\.com/\" to=\"https://$1.mayoclinic.com/\"/><rule from=\"^http://(www\\.)?mayoclinic\\.org/\" to=\"https://$1mayoclinic.org/\"/></ruleset>", "<ruleset name=\"MazaCoin.org\" f=\"MazaCoin.org.xml\"><securecookie host=\"^(?:www\\.)?mazacoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mazacha.in\" f=\"Mazacha.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mbed.org\" f=\"Mbed.org.xml\"><securecookie host=\"^mbed\\.org$\" name=\".+\"/><rule from=\"^http://www\\.mbed\\.org/+\" to=\"https://mbed.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mbl.is (partial)\" f=\"Mbl.is.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?mbl\\.is/\" to=\"https://secure.mbl.is/\"/><rule from=\"^http://mbl\\.teljari\\.is/\" to=\"https://secure.teljari.is/\"/></ruleset>", "<ruleset name=\"Mbnet.pt\" f=\"Mbnet.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mbsy.co\" f=\"Mbsy.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McAfee MX Logic\" f=\"McAfee-MX-Logic.xml\"><securecookie host=\"^(?:.*\\.)?mxlogic\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mxlogic\\.com/\" to=\"https://www.mxlogic.com/\"/><rule from=\"^http://([^\\.]\\.)?(console|portal)\\.mxlogic\\.com/\" to=\"https://$1$2.mxlogic.com/\"/></ruleset>", "<ruleset name=\"McAfee.com (partial)\" f=\"McAfee.xml\"><exclusion pattern=\"^http://service\\.mcafee\\.com/(?!CSS/|css/|images/|locale/|(?:Script|Web)Resource\\.axd)\"/><exclusion pattern=\"^http://www\\.mcafee\\.com/+(?!favicon\\.ico|img/|static/|\\w\\w/img/)\"/><securecookie host=\".+\\.mcafee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McAffee Mobile Security\" f=\"McAfee_Mobile_Security.xml\"><securecookie host=\"^www\\.mcafeemobilesecurity\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mcafeemobilesecurity\\.com/\" to=\"https://www.mcafeemobilesecurity.com/\"/></ruleset>", "<ruleset name=\"McAfee SECURE.com\" f=\"McAfee_SECURE.xml\"><securecookie host=\"^(?:www\\.)?mcafeesecure\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McClatchy.com (partial)\" default_off=\"failed ruleset test\" f=\"McClatchy.com.xml\"><securecookie host=\"^subscriberservices\\.mcclatchy\\.com$\" name=\".+\"/><rule from=\"^http://subscriberservices\\.mcclatchy\\.com/\" to=\"https://subscriberservices.mcclatchy.com/\"/></ruleset>", "<ruleset name=\"McClatchy Interactive.com (partial)\" default_off=\"failed ruleset test\" f=\"McClatchy_Interactive.com.xml\"><rule from=\"^http://media\\.mcclatchyinteractive\\.com/\" to=\"https://media.mcclatchyinteractive.com/\"/></ruleset>", "<ruleset name=\"McDelivery Malaysia\" f=\"McDelivery-Malaysia.xml\"><securecookie host=\"^(www\\.)?mcdelivery\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McEvoy Group (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"McEvoy-Group.xml\"><securecookie host=\"^(?:.*\\.)?chroniclebooks.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McGrhill Warez\" default_off=\"expired, mismatch, self-signed\" f=\"McGrhill-Warez.xml\"><securecookie host=\"^www\\.mcgrhill-warez\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?speeddl\\.com/\" to=\"https://speeddl.com/\"/><rule from=\"^http://(?:www\\.)?mcgrhill-warez\\.com/\" to=\"https://www.mcgrhill-warez.com/\"/></ruleset>", "<ruleset name=\"McMaster University\" f=\"McMaster_University.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McWhirter.com.au\" f=\"McWhirter.com.au.xml\"><rule from=\"^http://(?:www\\.)?mcwhirter\\.com\\.au/\" to=\"https://mcwhirter.com.au/\"/></ruleset>", "<ruleset name=\"mcdee.com.au\" f=\"Mcdee.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mci.edu\" f=\"Mci.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mci4me.at\" f=\"Mci4me.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mcssl.com\" default_off=\"failed ruleset test\" f=\"Mcssl.com.xml\"><securecookie host=\"^www\\.mcssl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mcssl\\.com/\" to=\"https://www.mcssl.com/\"/></ruleset>", "<ruleset name=\"mcxNOW.com\" default_off=\"connection refused\" f=\"McxNOW.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mdgms.com\" f=\"Mdgms.com.xml\"><securecookie host=\"^gateway\\.mdgms\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.mdgms\\.com/\" to=\"https://$1.mdgms.com/\"/></ruleset>", "<ruleset name=\"mdosche.de\" f=\"Mdosch.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.mdosche\\.de/\" to=\"https://mdosche.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"meCoffee.nl\" f=\"MeCoffee.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeXBT.com\" f=\"MeXBT.com.xml\"><securecookie host=\"\\.mexbt\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mean Stinks\" default_off=\"failed ruleset test\" f=\"Mean_Stinks.xml\"><securecookie host=\"^\\.meanstinks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meat and Livestock Australia\" f=\"MeatandLivestockAustralia.xml\"><rule from=\"^http://(?:www\\.)?mla\\.com\\.au/\" to=\"https://www.mla.com.au/\"/></ruleset>", "<ruleset name=\"MechBunny.com\" default_off=\"needs clearnet testing\" f=\"MechBunny.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mechon-Mamre.org\" default_off=\"expired, self-signed\" f=\"Mechon-Mamre.org.xml\"><rule from=\"^http://(?:www\\.)?mechon-mamre\\.org/\" to=\"https://mechon-mamre.org/\"/></ruleset>", "<ruleset name=\"medConfidential.org\" f=\"MedConfidential.org.xml\"><securecookie host=\"^\\.medconfidential\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medwatch (mixed content)\" platform=\"mixedcontent\" f=\"MedWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"medarbejdersignatur.dk\" f=\"Medarbejdersignatur.dk.xml\"><rule from=\"^http://medarbejdersignatur\\.dk/\" to=\"https://www.medarbejdersignatur.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mederra Group (partial)\" f=\"Mederra-Group.xml\"><securecookie host=\"^www\\.digipaper\\.fi$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digipaper\\.fi/\" to=\"https://www.digipaper.fi/\"/></ruleset>", "<ruleset name=\"Medgadget\" default_off=\"failed ruleset test\" f=\"Medgadget.xml\"><rule from=\"^http://(www\\.)?medgadget\\.com/\" to=\"https://$1medgadget.com/\"/><rule from=\"^http://cdn\\.medgadget\\.com/\" to=\"https://dsuktxmmtzwrn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MediPreis.de\" f=\"MediPreis.de.xml\"><securecookie host=\"^www\\.medipreis\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediStack.com\" f=\"MediStack.com.xml\"><securecookie host=\"^\\.medistack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Media Democracy Fund\" default_off=\"mismatch\" f=\"Media-Democracy-Fund.xml\"><rule from=\"^http://(?:www\\.)?mediademocracyfund\\.org/\" to=\"https://mediademocracyfund.org/\"/></ruleset>", "<ruleset name=\"Media-Proweb.de (partial)\" default_off=\"expired\" f=\"Media-Proweb.de.xml\"><securecookie host=\"^www\\.media-proweb\\.de$\" name=\"^PIWIK_SESSID$\"/><rule from=\"^http://(?:www\\.)?media-proweb\\.de/(?=favicon\\.ico|public/|statistik(?:$|[?/]))\" to=\"https://www.media-proweb.de/\"/></ruleset>", "<ruleset name=\"Media Storehouse (partial)\" default_off=\"failed ruleset test\" f=\"Media-Storehouse.xml\"><securecookie host=\"^secure\\.mediastorehouse\\.com$\" name=\".*\"/><rule from=\"^http://(?:static|www)\\.mediastorehouse\\.com/\" to=\"https://secure.mediastorehouse.com/\"/><rule from=\"^http://(?:www\\.)?mediastorehouse\\.net/\" to=\"https://secure.mediastorehouse.com/\"/></ruleset>", "<ruleset name=\"media-clic.com\" f=\"Media-clic.com.xml\"><securecookie host=\"^pub9\\.media-clic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"media.net (partial)\" f=\"Media.net.xml\"><securecookie host=\"^\\.media\\.net$\" name=\"^(?:__utm\\w|wooTracker)$\"/><securecookie host=\"^\\.www\\.media\\.net$\" name=\"^(?:__ar_v4|_te_)$\"/><rule from=\"^http://cdn\\.media\\.net/\" to=\"https://mycdn-a.akamaihd.net/\"/><rule from=\"^http://(?:contextual|qsearch)\\.media\\.net/\" to=\"https://qsearch-a.akamaihd.net/\"/><rule from=\"^http://static\\.media\\.net/\" to=\"https://log-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"media6degrees (partial)\" f=\"Media6degrees.xml\"><securecookie host=\"^\\.media6degrees\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?m(?:6d|edia6degrees)\\.com/\" to=\"https://m6d.wpengine.com/\"/><rule from=\"^http://(?:action|secure)\\.media6degrees\\.com/\" to=\"https://secure.media6degrees.com/\"/></ruleset>", "<ruleset name=\"MediaEd.org\" f=\"MediaEd.org.xml\"><securecookie host=\"^www\\.mediaed\\.org$\" name=\".+\"/><rule from=\"^http://mediaed\\.org/\" to=\"https://www.mediaed.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaFire (buggy)\" default_off=\"https://www.eff.org/r.2arJ\" f=\"MediaFire.xml\"><rule from=\"^http://(?:www\\.)?mediafire\\.com/(?=blank\\.html|images/|js/|s(?:elect_account_type|sl_login)\\.php)\" to=\"https://www.mediafire.com/\"/><rule from=\"^http://(?:orig-|static)?cdn\\.mediafire\\.com/\" to=\"https://origin-cdn.mediafire.com/\"/><rule from=\"^http://(download\\d+|cdnssl)\\.mediafire\\.com/\" to=\"https://$1.mediafire.com/\"/></ruleset>", "<ruleset name=\"MediaGoblin.org\" default_off=\"expired, self-signed\" f=\"MediaGoblin.org.xml\"><securecookie host=\"^(?:issues|wiki)\\.mediagoblin\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mediagoblin\\.org/\" to=\"https://www.mediagoblin.org/\"/><rule from=\"^http://(docs|issues|wiki)\\.mediagoblin\\.org/\" to=\"https://$1.mediagoblin.org/\"/></ruleset>", "<ruleset name=\"MediaHub (partial)\" f=\"MediaHub.xml\"><rule from=\"^http://mail\\.mediahub\\.com/(?:.*)\" to=\"https://mail.google.com/a/mediahub.com\"/><rule from=\"^http://my\\.mediahub\\.com/\" to=\"https://my.mediahub.com/\"/></ruleset>", "<ruleset name=\"MediaInfo\" f=\"MediaInfo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaLayer.com (mismatches)\" default_off=\"Certificate mismatch\" f=\"MediaLayer.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?medialayer\\.com/\" to=\"https://www.medialayer.com/\"/></ruleset>", "<ruleset name=\"MediaLayer.com (partial)\" default_off=\"failed ruleset test\" f=\"MediaLayer.com.xml\"><rule from=\"^http://(clients|support)\\.medialayer\\.com/\" to=\"https://$1.medialayer.com/\"/><rule from=\"^http://(?:www\\.)?medialayer\\.net/\" to=\"https://www.medialayer.net/\"/></ruleset>", "<ruleset name=\"MediaMath.com\" f=\"MediaMath.xml\"><securecookie host=\"^(?:.*\\.)?mediamath\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaMatters.org (partial)\" f=\"MediaMatters.org.xml\"><exclusion pattern=\"^http://mediamatters\\.org/static/stylesheets/\"/><rule from=\"^http://(?:www\\.)?mediamatters\\.org/static/\" to=\"https://dnqv4na4axyak.cloudfront.net/static/\"/><rule from=\"^http://cloudfront\\.mediamatters\\.org/\" to=\"https://dnqv4na4axyak.cloudfront.net/\"/><rule from=\"^http://s3\\.mediamatters\\.org/\" to=\"https://s3.amazonaws.com/s3.mediamatters.org/\"/></ruleset>", "<ruleset name=\"MediaMind (partial)\" f=\"MediaMind.xml\"><securecookie host=\"^(?:creativezone|platform)\\.mediamind\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eyeblasterwiz\\.com/\" to=\"https://www.eyeblasterwiz.com/\"/><rule from=\"^http://(creativezone|demo|origin\\.demo|platform|sandbox)\\.mediamind\\.com/\" to=\"https://$1.mediamind.com/\"/><rule from=\"^http://a\\.pgtb\\.me/\" to=\"https://a.pgtb.me/\"/></ruleset>", "<ruleset name=\"MediaNet\" f=\"MediaNet.xml\"><securecookie host=\"^www\\.mndigital\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaNews Group (partial)\" default_off=\"failed ruleset test\" f=\"MediaNews-Group.xml\"><rule from=\"^http://weather\\.mercurynews\\.com/\" to=\"https://www.weatherunderground.com/\"/></ruleset>", "<ruleset name=\"MediaPost (partial)\" f=\"MediaPost.xml\"><rule from=\"^http://(www\\.)?mediapost\\.com/(favicon\\.ico|register(?:/?$|\\?))\" to=\"https://$1mediapost.com/$2\"/><rule from=\"^http://media\\.mediapost\\.com/\" to=\"https://s3.amazonaws.com/media.mediapost.com/\"/></ruleset>", "<ruleset name=\"MediaSpan (partial)\" default_off=\"failed ruleset test\" f=\"MediaSpan.xml\"><securecookie host=\"^(?:.+\\.)?mediaspanonline\\.com$\" name=\".+\"/><rule from=\"^http://(assets\\.|www\\.)?(?:fimc\\.net|mediaspanonline\\.com)/\" to=\"https://$1mediaspanonline.com/\"/></ruleset>", "<ruleset name=\"MediaTakeOut.com\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"MediaTakeOut.com.xml\"><rule from=\"^http://(?:i2\\.|www\\.)?mediatakeout\\.com/\" to=\"https://mediatakeout.com/\"/></ruleset>", "<ruleset name=\"Media Temple.net (partial)\" f=\"MediaTemple.xml\"><exclusion pattern=\"^http://mediatemple\\.net/blog(?:$|[?/])\"/><securecookie host=\".*\\.mediatemple\\.net$\" name=\".+\"/><rule from=\"^http://status\\.mediatemple\\.net/\" to=\"https://mtmediatemple.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaWatch (mixed content)\" platform=\"mixedcontent\" f=\"MediaWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaWorks (partial)\" f=\"MediaWorks.xml\"><securecookie host=\"^(?:cdn|static)\\.mediaworks\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(cdn|static)\\.mediaworks\\.co\\.nz/\" to=\"https://$1.mediaworks.co.nz/\"/></ruleset>", "<ruleset name=\"Media Factory\" f=\"Media_Factory.xml\"><securecookie host=\"^(?:www\\.)?mediafactory\\.fm$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?mediafactory\\.fm/\" to=\"https://$1mediafactory.fm/\"/></ruleset>", "<ruleset name=\"Mediabistro.com\" f=\"Mediabistro.xml\"><securecookie host=\"^(?:.*\\.)?mediabistro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediacru.sh\" default_off=\"mismatched, self-signed\" f=\"Mediacru.sh.xml\"><securecookie host=\"^mediacru\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediaite (partial)\" default_off=\"mismatch\" f=\"Mediaite.xml\"><rule from=\"^http://(media|videos)\\.mediaite\\.com/\" to=\"https://$1.mediaite.com/\"/></ruleset>", "<ruleset name=\"Medialand.ru (partial)\" f=\"Medialand.ru.xml\"><securecookie host=\"^mediamir\\.medialand\\.ru$\" name=\".+\"/><rule from=\"^http://mediamir\\.medialand\\.ru/\" to=\"https://mediamir.medialand.ru/\"/></ruleset>", "<ruleset name=\"Medialinx Academy.de (partial)\" f=\"Medialinx-Academy.de.xml\"><rule from=\"^http://(?:www\\.)?medialinx-academy\\.de/sites/\" to=\"https://www.medialinx-academy.de/sites/\"/></ruleset>", "<ruleset name=\"Medialoot.com\" f=\"Medialoot.com.xml\"><securecookie host=\"^\\.?medialoot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediamarkt.se\" f=\"Mediamarkt.se.xml\"><rule from=\"^http://(?:www\\.)?mediamarkt\\.se/\" to=\"https://www.mediamarkt.se/\"/></ruleset>", "<ruleset name=\"Médiamétrie-eStat (partial)\" f=\"Mediametrie-eStat.xml\"><securecookie host=\"\\.estat\\.com$\" name=\".*\"/><rule from=\"^http://(prof|w)\\.estat\\.com/\" to=\"https://$1.estat.com/\"/></ruleset>", "<ruleset name=\"Median.hu (partial)\" f=\"Median.xml\"><securecookie host=\"^audit\\.median\\.hu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medianova.com (partial)\" f=\"Medianova.com.xml\"><securecookie host=\"^(?:cdn|oyy)\\.medianova\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediant\" f=\"Mediant.xml\"><securecookie host=\"^(?:w*\\.)?mandiant\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediapart.fr\" f=\"Mediapart.fr.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^mediapart\\.fr$\" name=\".+\"/></ruleset>", "<ruleset name=\"Mediaquest Corp.com\" f=\"Mediaquest_Corp.com.xml\"><securecookie host=\"^(?:www)?\\.mediaquestcorp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediate.com\" platform=\"mixedcontent\" f=\"Mediate.com.xml\"><securecookie host=\"^(?:.*\\.)mediate\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mediate\\.com/\" to=\"https://www.mediate.com/\"/></ruleset>", "<ruleset name=\"Mediaxus.com\" f=\"Mediaxus.com.xml\"><securecookie host=\"^\\.mediaxus\\.com4\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medibank Health Solutions\" f=\"MedibankHealthSolutions.xml\"><rule from=\"^http://(?:www\\.)?medibankhealth\\.com\\.au/\" to=\"https://www.medibankhealth.com.au/\"/></ruleset>", "<ruleset name=\"MedicAlert.org (partial)\" f=\"MedicAlert.xml\"><exclusion pattern=\"^http://www\\.medicalert\\.org/+(?!misc/|sites/|user(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medical Express\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Medical_Express.xml\"><rule from=\"^http://(www\\.)?medicalxpress\\.com/\" to=\"https://$1medicalxpress.com/\"/><rule from=\"^http://m\\.ph-cdn\\.com/tmpl/\" to=\"https://medicalxpress.com/tmpl/\"/></ruleset>", "<ruleset name=\"Medical Jane\" default_off=\"failed ruleset test\" f=\"Medical_Jane.xml\"><securecookie host=\"^\\.medicaljane\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medical Treatments Management\" default_off=\"failed ruleset test\" f=\"Medical_Treatments_Management.xml\"><securecookie host=\"^(?:.*\\.)?m(?:edical-treatments-management|tmweb)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?m(?:edical-treatments-management|tmweb)\\.com/\" to=\"https://$1medical-treatments-management.com/\"/><rule from=\"^http://(www\\.)?mtmweb\\.biz/\" to=\"https://$1mtmweb.biz/\"/></ruleset>", "<ruleset name=\"Medici-manager.com\" default_off=\"failed ruleset test\" f=\"Medici-manager.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediciGlobal.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MediciGlobal.com-falsemixed.xml\"><securecookie host=\"^mediciglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediciGlobal.com (partial)\" f=\"MediciGlobal.com.xml\"><exclusion pattern=\"^http://mediciglobal\\.com/+(?!css/|favicon\\.ico|images/|js/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MedicineNet.com (broken)\" default_off=\"Bad redirects\" f=\"MedicineNet.com.xml\"><exclusion pattern=\"^http://images\\.medicinenet\\.com/css/\"/><exclusion pattern=\"^http://(?:www\\.)?medicinenet\\.com/(?!images/)\"/><rule from=\"^http://(?:images\\.|(www\\.))?medicinenet\\.com/\" to=\"https://$1medicinenet.com/\"/></ruleset>", "<ruleset name=\"MedicinesComplete.com\" f=\"MedicinesComplete.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediekompaniet.com (partial)\" f=\"Mediekompaniet.com.xml\"><rule from=\"^http://nysk\\.mediekompaniet\\.com/\" to=\"https://nysk.mediekompaniet.com/\"/></ruleset>", "<ruleset name=\"Medienstiftung-hsh.de\" f=\"Medienstiftung-hsh.de.xml\"><securecookie host=\"^(www\\.)?medienstiftung-hsh\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medikamente-Per-Klick\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Medikamente-Per-Klick.xml\"><rule from=\"^http://(?:www\\.|shop\\.)?medikamente-per-klick\\.de/\" to=\"https://www.medikamente-per-klick.de/\"/><rule from=\"^http://(?:www\\.)?kosmetik-per-klick\\.de/\" to=\"https://www.kosmetik-per-klick.de/\"/><rule from=\"^http://(?:www\\.)?ernaehrung-per-klick\\.de/\" to=\"https://www.ernaehrung-per-klick.de/\"/></ruleset>", "<ruleset name=\"Medium.com\" f=\"Medium.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medius Corp.com (partial)\" default_off=\"failed ruleset test\" f=\"Medius_Corp.com.xml\"><rule from=\"^http://services-sj\\.mediuscorp\\.com/\" to=\"https://services-sj.mediuscorp.com/\"/></ruleset>", "<ruleset name=\"Medius Viewer.com\" default_off=\"failed ruleset test\" f=\"Medius_Viewer.com.xml\"><rule from=\"^http://services-sj\\.mediusviewer\\.com/\" to=\"https://services-sj.mediuscorp.com/\"/></ruleset>", "<ruleset name=\"medleyads.com\" f=\"Medleyads.com.xml\"><securecookie host=\"^\\.medleyads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"medocmall.co.uk\" f=\"Medocmall.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medscape (partial)\" f=\"Medscape.xml\"><securecookie host=\"^(?:login|profreg)\\.medscape\\.com$\" name=\".*\"/><rule from=\"^http://images\\.medscape\\.com/\" to=\"https://img.medscape.com/\"/><rule from=\"^http://(img|login|profreg)\\.medscape\\.com/\" to=\"https://$1.medscape.com/\"/></ruleset>", "<ruleset name=\"Medstop.se (partial)\" f=\"Medstop.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?medstop\\.se/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?medstop\\.se/\" to=\"https://kronansapotek.se/\"/></ruleset>", "<ruleset name=\"Meduza.io\" f=\"Meduza.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meebey.net\" f=\"Meebey.net.xml\"><securecookie host=\"^www\\.meebey\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meebey\\.net/\" to=\"https://www.meebey.net/\"/></ruleset>", "<ruleset name=\"Meebo\" default_off=\"failed ruleset test\" f=\"Meebo.xml\"><securecookie host=\"^\\.meebo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meebo\\.com/\" to=\"https://www.meebo.com/\"/><rule from=\"^http://(cim|dashboard)\\.meebo\\.com/\" to=\"https://$1.meebo.com/\"/></ruleset>", "<ruleset name=\"Meego\" default_off=\"failed ruleset test\" f=\"Meego.xml\"><securecookie host=\"^\\.meego\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meet.fm\" f=\"Meet.fm.xml\"><securecookie host=\"^\\.meet\\.fm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeetBSD.com\" f=\"MeetBSD.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeetInLeeds\" f=\"MeetInLeeds.xml\"><rule from=\"^http://(?:www\\.)?meetinleeds\\.co\\.uk/\" to=\"https://www.meetinleeds.co.uk/\"/></ruleset>", "<ruleset name=\"MeetMe\" f=\"MeetMe.xml\"><securecookie host=\"^m?\\.meetme\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|blinddate|canvas|causes|cpa|feed|friends|games|help|home|live|m|match|messages|nerve|photos|platform|profile|ssl|vip|www)\\.)?meetme\\.com/\" to=\"https://$1meetme.com/\"/><rule from=\"^http://en\\.mtmei18n\\.com/\" to=\"https://en.mtmei18n.com/\"/></ruleset>", "<ruleset name=\"MeetMe Corp\" default_off=\"mismatched\" f=\"MeetMe_Corp.xml\"><rule from=\"^http://(?:www\\.)?meetmecorp\\.com/\" to=\"https://www.meetmecorp.com/\"/></ruleset>", "<ruleset name=\"Meetey.com\" default_off=\"failed ruleset test\" f=\"Meetey.com.xml\"><securecookie host=\"^(?:w*\\.)?meetey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetic (problematic)\" default_off=\"mismatched\" f=\"Meetic-problematic.xml\"><exclusion pattern=\"^http://stda\\.ilius\\.net/(?!css/(?!components/core/forgot\\.css))\"/><rule from=\"^http://(k|stda)\\.ilius\\.net/\" to=\"https://$1.ilius.net/\"/><rule from=\"^http://p(?:ictures\\.meetic\\.com|hotos\\.meetic\\.fr)/\" to=\"https://photos.meetic.fr/\"/><rule from=\"^http://statics\\.meetic-affinity\\.com/\" to=\"https://statics.meetic-affinity.com/\"/></ruleset>", "<ruleset name=\"Meetic.pt\" f=\"Meetic.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetic (partial)\" f=\"Meetic.xml\"><securecookie host=\"^tk\\.ilius\\.net$\" name=\".+\"/><rule from=\"^http://stda\\.ilius\\.net/\" to=\"https://iliusstda-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetings.io (partial)\" f=\"Meetings.io.xml\"><securecookie host=\"^(?:w*\\.)?meetings\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetrics\" f=\"Meetrics.xml\"><rule from=\"^http://(s\\d+)\\.research\\.de\\.com/\" to=\"https://$1.research.de.com/\"/><rule from=\"^http://((dc\\d+\\.)?s\\d+)\\.meetrics\\.net/\" to=\"https://$1.meetrics.net/\"/><rule from=\"^http://(s\\d+)\\.mxcdn\\.net/\" to=\"https://$1.mxcdn.net/\"/></ruleset>", "<ruleset name=\"Meetup (partial)\" f=\"Meetup.xml\"><securecookie host=\"^\\.meetup\\.com$\" name=\"^MEETUP_(?:AFFIL|TRACK)$\"/><rule from=\"^http://(www\\.)?meetup\\.com/(?=favicon\\.ico)\" to=\"https://$1meetup.com/\"/><rule from=\"^http://(?:secure|static[12])\\.meetup\\.com/\" to=\"https://secure.meetup.com/\"/></ruleset>", "<ruleset name=\"MegWorld\" f=\"MegWorld.xml\"><securecookie host=\"^pump\\.megworld\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:(pump\\.|webchat\\.)|www\\.)?megworld\\.co\\.uk/\" to=\"https://$1megworld.co.uk/\"/></ruleset>", "<ruleset name=\"Mega.com (problematic)\" default_off=\"mismatched\" f=\"Mega.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?mega\\.com/\" to=\"https://mega.com/\"/></ruleset>", "<ruleset name=\"Mega.com (partial)\" f=\"Mega.com.xml\"><securecookie host=\"^community\\.mega\\.com$\" name=\".+\"/><rule from=\"^http://community\\.mega\\.com/\" to=\"https://community.mega.com/\"/></ruleset>", "<ruleset name=\"Mega\" f=\"Mega.xml\"><securecookie host=\"^mega\\.(co\\.)?nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaBigPower.com\" f=\"MegaBigPower.com.xml\"><securecookie host=\"^(?:www\\.)?megabigpower\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaFiles.se\" default_off=\"self-signed\" f=\"MegaFiles.se.xml\"><securecookie host=\"^\\.megafiles\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?megafiles\\.se/\" to=\"https://megafiles.se/\"/></ruleset>", "<ruleset name=\"MegaFon (partial)\" f=\"MegaFon.xml\"><securecookie host=\"^.+\\.megafon\\.ru$\" name=\".+\"/><rule from=\"^http://megafon\\.ru/\" to=\"https://www.megafon.ru/\"/><rule from=\"^http://(cdnmf11|corp|english|m|sg|static\\d|www)\\.megafon\\.ru/\" to=\"https://$1.megafon.ru/\"/></ruleset>", "<ruleset name=\"MegaGlest.org (false MCB)\" platform=\"mixedcontent\" f=\"MegaGlest.org-falsemixed.xml\"><securecookie host=\"^megaglest\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?megaglest\\.org/\" to=\"https://megaglest.org/\"/></ruleset>", "<ruleset name=\"MegaGlest.org (partial)\" f=\"MegaGlest.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?megaglest\\.org/+(?!megaglest\\.ico|tmp/|uploads/)\"/><rule from=\"^http://(?:(docs\\.|forum\\.)|www\\.)?megaglest\\.org/\" to=\"https://$1megaglest.org/\"/><rule from=\"^http://faq\\.megaglest\\.org/\" to=\"https://docs.megaglest.org/MG/FAQ\"/><rule from=\"^http://readme\\.megaglest\\.org/\" to=\"https://raw.github.com/MegaGlest/megaglest-source/master/docs/README.txt\"/><rule from=\"^http://wiki\\.megaglest\\.org/\" to=\"https://docs.megaglest.org/MG\"/></ruleset>", "<ruleset name=\"MegaPath.com (partial)\" f=\"MegaPath.xml\"><exclusion pattern=\"^http://voice\\.megapath\\.com/(?!Login/)\"/><exclusion pattern=\"^http://vp1-voiceportal\\.megapath\\.com/(?!Login/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?:events|my|www)\\.megapath\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaPath Wholesale.com (partial)\" f=\"MegaPath_Wholesale.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaShare.im\" f=\"MegaShare.im.xml\"><securecookie host=\"^\\.megashare\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaStock.ru (partial)\" default_off=\"self-signed\" f=\"MegaStock.xml\"><rule from=\"^http://(?:www\\.)?megastock\\.ru/(css/|[Dd]oc/|icon.ashx|Images/|img/|scripts/|WebResource\\.axd)\" to=\"https://www.megastock.ru/$1\"/></ruleset>", "<ruleset name=\"Mega Youtube Views\" default_off=\"failed ruleset test\" f=\"Mega_Youtube_Views.xml\"><securecookie host=\"^(?:www\\.)?megayoutubeviews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegiTeam.pl (false MCB)\" platform=\"mixedcontent\" f=\"MegiTeam.pl.xml\"><securecookie host=\"^www\\.megiteam\\.pl$\" name=\".+\"/><rule from=\"^http://megiteam\\.pl/\" to=\"https://www.megiteam.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mehring.com\" default_off=\"needs clearnet testing\" f=\"Mehring.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meinfernbus.de (partial)\" f=\"MeinFernbus.xml\"><exclusion pattern=\"^http://meinfernbus\\.de/(((kundenservice|ueber-uns|presse|staedte)/)|((agb|datenschutz|impressum|nutzungsbedingungen)\\.html)|seitenuebersicht)\"/><exclusion pattern=\"^http://meinfernbus\\.de/en(?!/rebooking)\"/><rule from=\"^http://(?:www\\.)?meinfernbus\\.de/\" to=\"https://meinfernbus.de/\"/></ruleset>", "<ruleset name=\"meinVZ\" default_off=\"Certificate mismatch\" f=\"MeinVZ.xml\"><rule from=\"^http://www\\.meinvz\\.net/\" to=\"https://www.meinvz.net/\"/></ruleset>", "<ruleset name=\"Mekanist\" f=\"Mekanist.xml\"><securecookie host=\"^www\\.mekanist\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mekanist\\.net/\" to=\"https://www.mekanist.net/\"/></ruleset>", "<ruleset name=\"Meldium.com\" f=\"Meldium.com.xml\"><rule from=\"^http://meldium\\.com/\" to=\"https://www.meldium.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mellanox (problematic)\" default_off=\"expired, self-signed\" f=\"Mellanox-problematic.xml\"><exclusion pattern=\"^http://calc\\.mellanox\\.com/(?:$|\\?)\"/><securecookie host=\"^calc\\.mellanox\\.com$\" name=\".*\"/><rule from=\"^http://calc\\.mellanox\\.com/\" to=\"https://calc.mellanox.com/\"/></ruleset>", "<ruleset name=\"Mellanox (partial)\" f=\"Mellanox.xml\"><securecookie host=\"^(?:(?:www\\.)?partners\\.|www\\.)?mellanox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mellanox\\.com/\" to=\"https://www.mellanox.com/\"/><rule from=\"^http://calc\\.mellanox\\.com/(?:\\?.*)?$\" to=\"https://www.mellanox.com/\"/><rule from=\"^http://(www\\.)?partners\\.mellanox\\.com/\" to=\"https://$1partners.mellanox.com/\"/></ruleset>", "<ruleset name=\"Meltin.net (partial)\" f=\"Meltin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meltwater News\" f=\"Meltwater-News.xml\"><securecookie host=\"^(?:.*\\.)?meltwaternews\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MemberCentral\" f=\"MemberCentral.xml\"><securecookie host=\"^(?:www\\.)?membercentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MemberClicks.com (partial)\" f=\"MemberClicks.com.xml\"><rule from=\"^http://(data|help)\\.memberclicks\\.com/\" to=\"https://$1.memberclicks.com/\"/></ruleset>", "<ruleset name=\"MemberClicks.net\" f=\"MemberClicks.net.xml\"><securecookie host=\"^[\\w-]+\\.memberclicks\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?memberclicks\\.net/\" to=\"https://$1memberclicks.net/\"/></ruleset>", "<ruleset name=\"Memberful.com\" f=\"Memberful.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Membership Rewards.com\" f=\"Membership_Rewards.com.xml\"><securecookie host=\"^www\\.membershiprewards\\.com$\" name=\".+\"/><rule from=\"^http://membershiprewards\\.com/\" to=\"https://www.membershiprewards.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meme Center (partial)\" f=\"Meme_Center.xml\"><securecookie host=\"^\\.memecenter\\.com$\" name=\".+\"/><rule from=\"^http://(global3|scdn)\\.memecdn\\.com/\" to=\"https://$1.memecdn.com/\"/><rule from=\"^http://((?:ovh|red|rn|www|yntmeme)\\.)?memecenter\\.com/\" to=\"https://$1memecenter.com/\"/></ruleset>", "<ruleset name=\"Memorial University\" f=\"Memorial-University.xml\"><securecookie host=\"^online\\.mun\\.ca$\" name=\".+\"/><rule from=\"^http://www\\.([\\w.-]+)?mun\\.ca/\" to=\"https://www.$1mun.ca/\"/><rule from=\"^http://online\\.mun\\.ca/\" to=\"https://online.mun.ca/\"/><rule from=\"^http://([\\w.-]+)?delts\\.mun\\.ca/\" to=\"https://$1delts.mun.ca/\"/></ruleset>", "<ruleset name=\"Memory Alpha\" default_off=\"mismatch\" f=\"Memory-Alpha.xml\"><securecookie host=\"^(?:en)?\\.memory-alpha\\.org$\" name=\".*\"/><rule from=\"^http://en\\.memory-alpha\\.org/\" to=\"https://en.memory-alpha.org/\"/></ruleset>", "<ruleset name=\"Memorydealers\" platform=\"mixedcontent\" f=\"Memorydealers.xml\"><securecookie host=\"^\\.memorydealers\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MemphisCourtside.com\" default_off=\"expired, self-signed\" f=\"MemphisCourtside.xml\"><securecookie host=\"^memphiscourtside.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?memphiscourtside\\.com/\" to=\"https://memphiscourtside.com/\"/></ruleset>", "<ruleset name=\"Memrise.com (partial)\" f=\"Memrise.xml\"><exclusion pattern=\"^http://www\\.memrise\\.com/+(?!$|\\?|(?:join|login)(?:$|[?/]))\"/><securecookie host=\"^\\.memrise\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://(?:media|static)\\.memrise\\.com/\" to=\"https://d107cgb5lgj7br.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Memset.com\" f=\"Memset.xml\"><securecookie host=\"^(?:.*\\.)?memset\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?memset\\.com/\" to=\"https://$1memset.com/\"/></ruleset>", "<ruleset name=\"Mencap.org.uk\" default_off=\"needs clearnet testing\" f=\"Mencap.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mendeley.com (partial)\" f=\"Mendeley.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mendiant.com (partial)\" f=\"Mendiant.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?mandiant\\.com$\" name=\".+\"/><rule from=\"^http://(forums\\.|www\\.)?mandiant\\.com/\" to=\"https://$1mandiant.com/\"/><rule from=\"^http://images\\.connect\\.mandiant\\.com/\" to=\"https://secure.eloqua.com/\"/></ruleset>", "<ruleset name=\"Meningitus Trust (partial)\" f=\"Meningitis_Trust.xml\"><rule from=\"^http://www\\.meningitis-trust\\.org/(blocks/|concrete/|favicon\\.ico|files/|packages/|themes/)\" to=\"https://www.meningitis-trust.org/$1\"/></ruleset>", "<ruleset name=\"Mensaplan.de\" f=\"Mensaplan.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Menshealth.de\" platform=\"mixedcontent\" f=\"Menshealth.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mental health services in Australia\" f=\"MentalHealthServicesinAustralia.xml\"><rule from=\"^http://(?:www\\.)?mhsa\\.aihw\\.gov\\.au/\" to=\"https://mhsa.aihw.gov.au/\"/></ruleset>", "<ruleset name=\"Mentalhealth.asn.au\" f=\"Mentalhealth.asn.au.xml\"><rule from=\"^http://(www\\.)?mentalhealth\\.asn\\.au/\" to=\"https://www.mentalhealth.asn.au/\"/></ruleset>", "<ruleset name=\"Mentor Graphics (partial)\" f=\"Mentor-Graphics.xml\"><securecookie host=\"^\\.store1\\.mentor\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?codesourcery\\.com/\" to=\"https://www.mentor.com/embedded-software/codesourcery\"/><rule from=\"^http://mentor\\.com/\" to=\"https://www.mentor.com/\"/><rule from=\"^http://(accounts|store1?|supportnet)\\.mentor\\.com/\" to=\"https://$1.mentor.com/\"/><rule from=\"^http://cache\\.mentor\\.com/\" to=\"https://d30fqqf2omcq1k.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mentoring Central\" default_off=\"failed ruleset test\" f=\"Mentoring_Central.xml\"><securecookie host=\"^(?:.*\\.)?mentoringcentral\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MEPhI.ru (mismatched)\" default_off=\"mismatched\" f=\"Mephi.ru-problematic.xml\"><securecookie host=\"^voip\\.mephi\\.ru$\" name=\".+\"/><rule from=\"^http://voip\\.mephi\\.ru/\" to=\"https://voip.mephi.ru/\"/></ruleset>", "<ruleset name=\"MEPhI.ru (partial)\" f=\"Mephi.ru.xml\"><securecookie host=\"^(?:oir|ut|\\.mail\\.ut)\\.mephi\\.ru$\" name=\".+\"/><rule from=\"^http://(ca|eis|oir|ut|mail\\.ut)\\.mephi\\.ru/\" to=\"https://$1.mephi.ru/\"/></ruleset>", "<ruleset name=\"Mequoda.com (partial)\" f=\"Mequoda.com.xml\"><securecookie host=\"^www\\.mequoda\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mequoda\\.com/\" to=\"https://www.mequoda.com/\"/></ruleset>", "<ruleset name=\"Mer Project (partial)\" f=\"Mer-Project.xml\"><rule from=\"^http://bugs\\.merproject\\.org/\" to=\"https://bugs.merproject.org/\"/></ruleset>", "<ruleset name=\"mer.io\" f=\"Mer.io.xml\"><securecookie host=\"^(?:w*\\.)?mer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mer Project.org (partial)\" f=\"Mer_Project.org.xml\"><securecookie host=\"^(?:bugs|build|wiki)\\.merproject\\.org$\" name=\".+\"/><rule from=\"^http://(bugs|build|wiki)\\.merproject\\.org/\" to=\"https://$1.merproject.org/\"/><rule from=\"^http://review\\.merproject\\.org/(?:\\?.*)?$\" to=\"https://code.google.com/p/gerrit/\"/></ruleset>", "<ruleset name=\"Meraki\" f=\"Meraki.xml\"><securecookie host=\".*\\.meraki\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merca2.0\" default_off=\"self-signed\" f=\"Merca20.xml\"><securecookie host=\"^www\\.merca20\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?merca20\\.com/\" to=\"https://www.merca20.com/\"/></ruleset>", "<ruleset name=\"Mercado Bitcoin.net\" f=\"Mercado_Bitcoin.net.xml\"><securecookie host=\"^(?:www\\.)?mercadobitcoin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercatus Center\" default_off=\"expired, self-signed\" f=\"Mercatus-Center.xml\"><rule from=\"^http://(?:www\\.)?mercatus\\.org/sites/\" to=\"https://mercatus.org/sites/\"/></ruleset>", "<ruleset name=\"MerchDirect (partial)\" f=\"MerchDirect.xml\"><rule from=\"^http://(?:www\\.)?merchdirect\\.com/($|\\?|home(?:$|\\?|/)|stores/(?:account_login\\.php|images/|skins/))\" to=\"https://www.merchdirect.com/$1\"/></ruleset>", "<ruleset name=\"Merchant City Music (partial)\" f=\"Merchant_City_Music.xml\"><rule from=\"^http://(?:www\\.)?guitar\\.co\\.uk/(asset|image|stylesheet)s/\" to=\"https://www.guitar.co.uk/$1s/\"/></ruleset>", "<ruleset name=\"merchantquest.net\" f=\"Merchantquest.net.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\".+\\.merchantquest\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.merchantquest\\.net/\" to=\"https://$1.merchantquest.net/\"/></ruleset>", "<ruleset name=\"Mercurial SCM\" f=\"Mercurial_SCM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercury News.com (partial)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"Mercury_News.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mercurynews\\.com/(?:\\w+/ci_\\d+(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?mercurynews\\.com/\" to=\"https://secure.www.mercurynews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercury News\" f=\"Mercury_News.xml\"><securecookie host=\"^(?:.*\\.)?mmedia\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercy Ships (partial)\" f=\"Mercy_Ships.xml\"><securecookie host=\"^(?:w*\\.)?mercyships\\.org$\" name=\".+\"/><rule from=\"^http://www\\.mercyships\\.org\\.s3-us-west-1\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/www.mercyships.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MereThis.com\" default_off=\"failed ruleset test\" f=\"MereThis.com.xml\"><securecookie host=\"^(?:cdn-www\\.|www\\.)?merethis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meritrust CU.org\" f=\"Meritrust_CU.org.xml\"><securecookie host=\"^(?:www)?\\.meritrustcu\\org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meritrustcu\\.org/\" to=\"https://www.meritrustcu.org/\"/><rule from=\"^http://xenapp\\.meritrustcu\\.org/\" to=\"https://xenapp.meritrustcu.org/\"/></ruleset>", "<ruleset name=\"Merlinux\" default_off=\"self-signed\" f=\"Merlinux.xml\"><securecookie host=\"^(?:.*\\.)?pypy\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?merlinux\\.eu/\" to=\"https://merlinux.eu/\"/><rule from=\"^http://(?:www\\.)?pypy\\.org/\" to=\"https://pypy.org/\"/><rule from=\"^http://bugs\\.pypy\\.org/\" to=\"https://bugs.pypy.org/\"/></ruleset>", "<ruleset name=\"Mersenne.org\" default_off=\"self-signed\" f=\"Mersenne.org.xml\"><securecookie host=\"^\\.mersenne\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mersenne\\.org/\" to=\"https://www.mersenne.org/\"/></ruleset>", "<ruleset name=\"Merton.gov.uk (partial)\" f=\"Merton.gov.uk.xml\"><exclusion pattern=\"http://fsd\\.merton\\.gov\\.uk/+(?!kb5/merton/directory/(?:assets/|(?:contact|register|sign_in)\\.page))\"/><exclusion pattern=\"http://www.merton.gov.uk/(?:$|\\?)\"/><securecookie host=\"^(?!fsd\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http://merton\\.gov\\.uk/\" to=\"https://www.merton.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mesamatrix.net\" f=\"Mesamatrix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mesh Internet (partial)\" f=\"Mesh-Internet.xml\"><securecookie host=\"^\\w+\\.mesh-internet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(my|secure)\\.mesh-internet\\.co\\.uk/\" to=\"https://$1.mesh-internet.co.uk/\"/></ruleset>", "<ruleset name=\"Mesosphere.com\" f=\"Mesosphere.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"messagingengine.com\" f=\"Messagingengine.com.xml\"><rule from=\"^http://(?:www\\.)?messagingengine\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://www.fastmail.com/$1\"/><rule from=\"^http://mail\\.messagingengine\\.com/\" to=\"https://mail.messagingengine.com/\"/></ruleset>", "<ruleset name=\"Messenger.com\" f=\"Messenger.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Messer Financial\" f=\"Messer_Financial.xml\"><securecookie host=\"^(?:.*\\.)?messerfinancial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Met-Art.com (partial)\" platform=\"mixedcontent\" f=\"Met-Art.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Met Office\" default_off=\"mismatch\" f=\"Met-Office.xml\"><rule from=\"^http://(?:www\\.)?metoffice\\.gov\\.uk/\" to=\"https://www.metoffice.gov.uk/\"/></ruleset>", "<ruleset name=\"MetArt Network.com (partial)\" f=\"MetArt_Network.com.xml\"><securecookie host=\"^(?:account|billing)\\.metartnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MetaCPAN.org\" f=\"MetaCPAN.xml\"><securecookie host=\"^(?:.*\\.)?metacpan\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MetaGer.de\" f=\"MetaGer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metapress (partial)\" f=\"MetaPress.com.xml\"><securecookie host=\"^s(?:hibboleth|pringerlink3)\\.metapress\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?metapress\\.com/(account/|dynamic-file\\.axd|identities/(?:help|me)/|images/|personalization/)\" to=\"https://www.metapress.com/$1\"/><rule from=\"^http://ons\\.metapress\\.com/(dynamic-file\\.axd|identities(?:$|[\\?/])|images/)\" to=\"https://ons.metapress.com/$1\"/><rule from=\"^http://(psycontent|shibboleth|springerlink3)\\.metapress\\.com/\" to=\"https://$1.metapress.com/\"/></ruleset>", "<ruleset name=\"MetaPress (partial)\" default_off=\"failed ruleset test\" f=\"MetaPress.org.xml\"><rule from=\"^http://(www\\.)?metapress\\.org/(dynamic-file\\.axd|images/)\" to=\"https://www.metapress.org/$2\"/></ruleset>", "<ruleset name=\"MetaProducts.com\" f=\"MetaProducts.com.xml\"><securecookie host=\"^(?:www\\.)?metaproducts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metaboli.co.uk\" default_off=\"missing certificate chain\" f=\"Metaboli.co.uk.xml\"><securecookie host=\"^\\.?www\\.metaboli\\.co\\.uk$\" name=\"\"/><rule from=\"^http://metaboli\\.co\\.uk/\" to=\"https://www.metaboli.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metaboli.fr (partial)\" f=\"Metaboli.fr.xml\"><rule from=\"^http://img\\.metaboli\\.fr/\" to=\"https://d10svsm0gnverk.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Metabunk.org\" f=\"Metabunk.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metal-Detector-Town.com\" f=\"Metal-Detector-Town.com.xml\"><securecookie host=\"^\\.(?:www\\.)?metal-detector-town\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metalab.at\" f=\"Metalab.at.xml\"><securecookie host=\"^metalab\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metallica.com (partial)\" f=\"Metallica.xml\"><securecookie host=\"^(?:w*\\.)?metallica\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metalyzer.com\" f=\"Metalyzer.com.xml\"><securecookie host=\"^\\.metalyzer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metanet.ch (partial)\" f=\"Metanet.ch.xml\"><securecookie host=\"^www\\.metanet\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metasploit.com\" f=\"Metasploit.xml\"><securecookie host=\"^\\.metasploit\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^dev\\.metasploit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeteoNews (partial)\" f=\"MeteoNews.xml\"><rule from=\"^http://(js|static-media)\\.meteonews\\.net/\" to=\"https://$1.meteonews.net/\"/></ruleset>", "<ruleset name=\"Meteoprog.kz\" f=\"Meteoprog.kz.xml\"><securecookie host=\"^www\\.meteoprog\\.kz$\" name=\".+\"/><rule from=\"^http://meteoprog\\.kz/\" to=\"https://www.meteoprog.kz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meteor.com\" f=\"Meteor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeteorHacks.com\" f=\"MeteorHacks.com.xml\"><securecookie host=\"^\\.meteorhacks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Method Acting Strasberg.com\" f=\"Method_Acting_Strasberg.com.xml\"><securecookie host=\"^(?:w*\\.)?methodactingstrasberg.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metin2.co.nz\" f=\"Metin2.co.nz.xml\"><securecookie host=\"^\\.?metin2\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metooo.io\" f=\"Metooo.io.xml\"><securecookie host=\"^\\.\" name=\"^PHPSESSID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metrics34.com (partial)\" f=\"Metrics34.com.xml\"><rule from=\"^http://ctrack\\.metrics34\\.com/\" to=\"https://ctrack.metrics34.com/\"/></ruleset>", "<ruleset name=\"Metrix.net\" default_off=\"mismatched\" f=\"Metrix.xml\"><securecookie host=\"^(?:www)?\\.metrix\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metro.co.uk\" default_off=\"failed ruleset test\" f=\"Metro.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metro (partial)\" default_off=\"akamai certificate\" f=\"Metro.xml\"><rule from=\"^http://(f|img|s)\\.metro\\.co\\.uk/\" to=\"https://$1.metro.co.uk/\"/></ruleset>", "<ruleset name=\"MetroLyrics (partial)\" default_off=\"mismatch\" f=\"MetroLyrics.xml\"><rule from=\"^http://netstorage\\.metrolyrics\\.com/\" to=\"https://netstorage.metrolyrics.com/\"/></ruleset>", "<ruleset name=\"Metro Ethernet Forum.com (partial)\" f=\"Metro_Ethernet_Forum.com.xml\"><securecookie host=\"^(?:.*\\.)?metroethernetforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metropolia University of Applied Sciences\" f=\"Metropolia.fi.xml\"><rule from=\"^http://(moodle|metropooli)\\.metropolia\\.fi/\" to=\"https://$1.metropolia.fi/\"/></ruleset>", "<ruleset name=\"Metro Transit\" f=\"Metrotransit.org.xml\"><rule from=\"^http://(?:www\\.)?metrotransit\\.org/\" to=\"https://www.metrotransit.org/\"/></ruleset>", "<ruleset name=\"Mew\" default_off=\"failed ruleset test\" f=\"Mew.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mexicoleaks.mx\" f=\"Mexicoleaks.mx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeynConnect\" f=\"MeynConnect.xml\"><securecookie host=\"^www\\.meynconnect\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meynconnect\\.com/\" to=\"https://www.meynconnect.com/\"/></ruleset>", "<ruleset name=\"Mg2 mobile.com\" f=\"Mg2_mobile.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mh21.de (partial)\" f=\"Mh21.de.xml\"><rule from=\"^http://www\\.mh21\\.de/\" to=\"https://mh21.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyHeritage Cache\" f=\"Mhcache.com.xml\"><securecookie host=\"^(www\\.|d\\.)?mhcache.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mi4urinsk.ru\" default_off=\"self-signed\" f=\"Mi4urinsk.ru.xml\"><rule from=\"^http://(?:www\\.)?mi4urinsk\\.ru/\" to=\"https://mi4urinsk.ru/\"/></ruleset>", "<ruleset name=\"miApple.me (partial)\" f=\"MiApple.me.xml\"><securecookie host=\"^miapple\\.me$\" name=\".+\"/><rule from=\"^http://www\\.miapple\\.me/\" to=\"https://miapple.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miTLS.org\" default_off=\"missing certificate chain\" f=\"MiTLS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mi file.cn (partial)\" f=\"Mi_file.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miamire.com (partial)\" f=\"Miamire.com.xml\"><rule from=\"^http://(www\\.)?miamire\\.com/(?=(?:[pP]ortal/)?[aA]pp_[tT]hemes/|docs/|favicon\\.ico|images/|js/|portal/(?:Authentication/SAML/)?Login\\.aspx|(?:portal/)?Script(?:Resource|Web)\\.axd|Telerik\\.Web\\.UI\\.WebResource\\.axd|Widgets/)\" to=\"https://$1miamire.com/\"/></ruleset>", "<ruleset name=\"miaozhen.com\" f=\"Miaozhen.com.xml\"><rule from=\"^http://collect\\.cn\\.miaozhen\\.com/\" to=\"https://collect.cn.miaozhen.com/\"/></ruleset>", "<ruleset name=\"Mibbit.com\" f=\"Mibbit.xml\"><securecookie host=\"^(?:.*\\.)?mibbit.com$\" name=\".+\"/><rule from=\"^http://((?:chat|(?:02|client0\\d)\\.chat|search|widget(?:0\\d|manager)?|wiki|www)\\.)?mibbit\\.com/\" to=\"https://$1mibbit.com/\"/></ruleset>", "<ruleset name=\"Mibew.org\" f=\"Mibew.org.xml\"><securecookie host=\"^(?:\\.|\\.www\\.)?mibew\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micah F Lee.com\" f=\"Micah_F_Lee.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michael W Lucas.com\" f=\"Michael_W_Lucas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michal Hrušecký\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Michal_Hrusecky.xml\"><rule from=\"^http://(?:www\\.)?hrusecky\\.net/\" to=\"https://www.hrusecky.net/\"/><rule from=\"^http://michal\\.hrusecky\\.net/\" to=\"https://michal.hrusecky.net/\"/></ruleset>", "<ruleset name=\"Michelle Bridges 12 Week Body Transformation (partial)\" f=\"Michelle-Bridges-12-Week-Body-Transformation.xml\"><exclusion pattern=\"^http://(?:www\\.)?12wbt\\.com/(?!assets/|(?:login|sign-up)(?:$|[\\?/]))\"/><exclusion pattern=\"^http://shop\\.12wbt\\.com/(?!assets/|spree/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michigan Campus Compact\" default_off=\"mismatched\" f=\"Michigan_Campus_Compact.xml\"><securecookie host=\"^micampuscompact\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?micampuscompact\\.org/\" to=\"https://micampuscompact.org/\"/></ruleset>", "<ruleset name=\"Michigan Nonprofit Association (partial)\" f=\"Michigan_Nonprofit_Association.xml\"><securecookie host=\"^(?:www\\.)?mnaonline\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?mnaonline\\.org/\" to=\"https://$1mnaonline.org/\"/><rule from=\"^http://mnaadmin\\.mnaonline\\.org/(cmi|CMI)mages/\" to=\"https://www.mnaonline.org/$1mages/\"/></ruleset>", "<ruleset name=\"MicroAd.jp\" f=\"MicroAd.jp.xml\"><securecookie host=\"^\\.(?:send\\.)?microad\\.jp$\" name=\".+\"/><rule from=\"^http://((?:d-track\\.)?send\\.|www\\.)?microad\\.jp/\" to=\"https://$1microad.jp/\"/><rule from=\"^http://d-cache\\.microad\\.jp/\" to=\"https://d-track.send.microad.jp/\"/></ruleset>", "<ruleset name=\"MicroSTER.pl\" default_off=\"self-signed\" f=\"MicroSTER.pl.xml\"><securecookie host=\"^www\\.microster\\.pl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?microster\\.pl/\" to=\"https://www.microster.pl/\"/></ruleset>", "<ruleset name=\"Micro Focus.com (partial)\" default_off=\"failed ruleset test\" f=\"Micro_Focus.com.xml\"><securecookie host=\"^www\\.microfocus\\.com$\" name=\".+\"/><rule from=\"^http://microfocus\\.com/\" to=\"https://www.microfocus.com/\"/><rule from=\"^http://images\\.online\\.microfocus\\.com/\" to=\"https://secure.eloqua.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micro Polia.com (partial)\" platform=\"cacert\" f=\"Micro_Polia.xml\"><securecookie host=\"^idp\\.micropolia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micro Python.org (partial)\" f=\"Micro_Python.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"microblink.com\" f=\"Microblink.com.xml\"><securecookie host=\"^\\.microblink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microca.st\" default_off=\"failed ruleset test\" f=\"Microca.st.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microchip.com\" f=\"Microchip.com.xml\"><rule from=\"^http://(?:www\\.)?microchip\\.com/\" to=\"https://www.microchip.com/\"/></ruleset>", "<ruleset name=\"Microchip Direct.com\" f=\"Microchip_Direct.com.xml\"><securecookie host=\"^www\\.microchipdirect\\.com$$\" name=\".+\"/><rule from=\"^http://microchipdirect\\.com/.*\" to=\"https://www.microchipdirect.com/\"/><rule from=\"^http://www\\.microchipdirect\\.com/\" to=\"https://www.microchipdirect.com/\"/></ruleset>", "<ruleset name=\"microcorruption.com\" f=\"Microcorruption.com.xml\"><securecookie host=\"^(?:www\\.)?microcorruption\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microgaming\" f=\"Microgaming.xml\"><securecookie host=\"^www\\.tickerassist\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://www\\.tickerassist\\.co\\.uk/\" to=\"https://www.tickerassist.co.uk/\"/></ruleset>", "<ruleset name=\"Micron (partial)\" f=\"Micron.xml\"><rule from=\"^http://(www\\.)?micron\\.com/(~|my|ui)/\" to=\"https://$1micron.com/$2/\"/></ruleset>", "<ruleset name=\"MicropartsUSA\" default_off=\"failed ruleset test\" f=\"MicropartsUSA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsec\" f=\"Microsec.xml\"><rule from=\"^http://([^@:/]*)\\.microsec\\.hu/\" to=\"https://$1.microsec.hu/\"/></ruleset>", "<ruleset name=\"Atdmt.com\" f=\"Microsoft-Atlas.xml\"><exclusion pattern=\"^http://view\\.atdmt\\.com/action/windows_downloads_Upgrade\"/><securecookie host=\"\" name=\".\"/><rule from=\"^http://cdn\\.atdmt\\.com/\" to=\"https://atlasdmt.vo.msecnd.net/\"/><rule from=\"^http://exch-eu\\.atdmt\\.com/\" to=\"https://view.atdmt.com/\"/><rule from=\"^http://h\\.atdmt\\.com/\" to=\"https://h.bing.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft (mixed content)\" platform=\"mixedcontent\" f=\"Microsoft-mixedcontent.xml\"><exclusion pattern=\"^http://blogs\\.msdn\\.com/.*\\?Redirected=true\"/><rule from=\"^http://blogs\\.msdn\\.com/(.*(?:\\.aspx|\\.xml|/))?$\" to=\"https://blogs.msdn.com/$1?Redirected=true\"/></ruleset>", "<ruleset name=\"Microsoft.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Microsoft.com-falsemixed.xml\"><securecookie host=\"^onlinehelp\\.microsoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft.com (untrusted root)\" default_off=\"expired, mismatched, untrusted root\" f=\"Microsoft.com-problematic.xml\"><rule from=\"^http://(?:(?:[45]\\.)?windows)?update\\.microsoft\\.com/\" to=\"https://www.update.microsoft.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft.com (partial)\" f=\"Microsoft.xml\"><exclusion pattern=\"^http://www\\.microsoft\\.com/en-us/software-recovery\"/><exclusion pattern=\"^http://answers\\.microsoft\\.com/(?!\\w\\w-\\w\\w/\\w+/forum/[\\w-]+/[\\w-]+/|static/)\"/><exclusion pattern=\"^http://learning\\.microsoft\\.com/+(?!Resources/)\"/><exclusion pattern=\"^http://search\\.microsoft\\.com/(?!global/oneMscomSettings/|shared/)\"/><exclusion pattern=\"^http://careers\\.microsoft\\.com/careers/\\w\\w/\\w\\w/\"/><exclusion pattern=\"^http://snackbox\\.microsoft\\.com/(?!$|\\?)\"/><exclusion pattern=\"^http://tag\\.microsoft\\.com/+(?![Aa]pp_[Tt]hemes/|favicon\\.ico|Images/|[Ll]ibraries/|[Ww]eb[Rr]esource\\.axd)\"/><exclusion pattern=\"http://social\\.technet\\.microsoft\\.com/+wiki(?!/CustomWidgets/|/themes/|/Utility/)\"/><exclusion pattern=\"^http://go\\.microsoft\\.com/fwlink/\\?LinkID=219472&clcid=0x409$\"/><securecookie host=\"^\\.microsoft\\.com$\" name=\"^(?:A|GsfxStatsLog|MC1|MS0|OnlineTrackingV2\\.0|R|RioTracking\\..+|s_.+)$\"/><securecookie host=\"^(?:account|advertising|advertise\\.bingads|choice|commerce|connect|curah|ieonline|m|mbs|msdn|(?:\\.?apisandbox|lab|visualstudiogallery)\\.msdn|mspartner|(?:logobuilder|mspartnerlp)\\.mspartner|\\.?news|\\.?office|office(?:15client|2010|preview|redir)|training\\.partner|corp\\.sts|\\.?support|support2|sxp|gallery\\.technet|\\.?www)\\.microsoft\\.com$\" name=\".+\"/><securecookie host=\"^social\\.technet\\.microsoft\\.com$\" name=\"^CSExtendedAnalytics(?:Session)?$\"/><rule from=\"^http://(?:s(?:cache|earch|pcache)\\.)?microsoft\\.com/\" to=\"https://www.microsoft.com/\"/><rule from=\"^http://feedback\\.adcenter\\.microsoft\\.com/.*\" to=\"https://bingads.uservoice.com/\"/><rule from=\"^http://fp\\.advertising\\.microsoft\\.com/\" to=\"https://advertising.microsoft.com/\"/><rule from=\"^http://i\\d?\\.(answers|msdn|social|technet)\\.microsoft\\.com/\" to=\"https://$1.microsoft.com/\"/><rule from=\"^http://wscont\\d\\.apps\\.microsoft\\.com/\" to=\"https://wscont.apps.microsoft.com/\"/><rule from=\"^http://i\\d\\.connect\\.microsoft\\.com/\" to=\"https://services.connect.microsoft.com/\"/><rule from=\"^http://events\\.microsoft\\.com/.*\" to=\"https://msevents.microsoft.com/cui/default.aspx?culture=en-US&community=1\"/><rule from=\"^http://go2\\.microsoft\\.com/\" to=\"https://go.microsoft.com/\"/><rule from=\"^http://i\\d\\.microsoft\\.com/\" to=\"https://i.microsoft.com/\"/><rule from=\"^http://i\\d\\.(code\\.msdn|gallery\\.technet)\\.microsoft\\.com/\" to=\"https://i1.$1.s-msft.com/\"/><rule from=\"^http://office365\\.microsoft\\.com/.*\" to=\"https://www.microsoft.com/en-us/office365/\"/><rule from=\"^http://snackbox\\.microsoft\\.com/.*\" to=\"https://learning.microsoft.com/\"/><rule from=\"^http://img3\\.store\\.microsoft\\.com/\" to=\"https://msstore.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Online-p.com\" f=\"Microsoft_Online-p.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Online-p.net (partial)\" f=\"Microsoft_Online-p.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Online.com\" f=\"Microsoft_Online_Services.xml\"><securecookie host=\"^(?:\\.?login|loginex|portal)\\.microsoftonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Store (partial)\" f=\"Microsoft_Store.xml\"><exclusion pattern=\"^http://(?:www\\.)?microsoftstore\\.com/(?!DRHM|sstore(?:$|[?/]))\"/><rule from=\"^http://microsoftstore\\.com/\" to=\"https://www.microsoftstore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Studios.com\" f=\"Microsoft_Studios.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.microsoftstudios\\.com/\" to=\"https://microsoftstudios.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Ventures.com\" f=\"Microsoft_Ventures.com.xml\"><securecookie host=\"^\\.www\\.microsoftventures\\.com$\" name=\".+\"/><rule from=\"^http://microsoftventures\\.com/\" to=\"https://www.microsoftventures.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microtech (partial)\" platform=\"mixedcontent\" f=\"Microtech.xml\"><securecookie host=\"^(?:.*\\.)?mtgsy\\.com$\" name=\".*\"/><rule from=\"^http://my\\.cloudfloordns\\.com/\" to=\"https://www.mtgsy.net/myaccount.php\"/><rule from=\"^http://(?:images\\d\\.|www\\.)mtgsy\\.net/\" to=\"https://www.mtgsy.net/\"/></ruleset>", "<ruleset name=\"Microtronix (partial)\" f=\"Microtronix.xml\"><rule from=\"^http://clients\\.microtronix-tech\\.com/((?:affiliates|clientarea|contact|pwreset|register|submitticket)\\.php|(?:imag|includ|templat)es/)\" to=\"https://clients.microtronix-tech.com/$1\"/></ruleset>", "<ruleset name=\"Midas Green Tech.com (false MCB)\" platform=\"mixedcontent\" f=\"Midas_Green_Tech.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?midasgreentech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midas Green Tech.com (partial)\" f=\"Midas_Green_Tech.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?midasgreentech\\.com/+(?!data/|favicon\\.ico|images/|plugins/|theme/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Middle East Monitor.com\" f=\"Middle_East_Monitor.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midlothian.gov.uk (partial)\" f=\"Midlothian.gov.uk.xml\"><securecookie host=\"^(?!\\.modlothian\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midnight Commander\" default_off=\"failed ruleset test\" f=\"Midnight-Commander.xml\"><securecookie host=\"^(?:www\\.)?midnight-commander\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midphase (partial)\" f=\"Midphase.xml\"><securecookie host=\"^www\\.midphase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mietek.io\" f=\"Mietek.io.xml\"><rule from=\"^http://(?:(bashmenot\\.|cannot\\.)|www\\.)?mietek\\.io/\" to=\"https://$1mietek.io/\"/></ruleset>", "<ruleset name=\"mightyupload.com\" f=\"Mightyupload.com.xml\"><securecookie host=\"^\\.?mightyupload\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mijn D66.nl\" f=\"Mijn_D66.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mikaela.info\" f=\"Mikaela.info.xml\"><securecookie host=\"^(?:.*\\.)?mikaela\\.info\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike Ash.com\" f=\"Mike_Ash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike Conley.ca\" default_off=\"expired\" f=\"Mike_Conley.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike Masin.com\" f=\"Mike_Masin.xml\"><rule from=\"^http://(?:www\\.)?mikemasin\\.com/[^?]*\" to=\"https://medium.com/@mikemasin\"/></ruleset>", "<ruleset name=\"Mikel Olasagasti Uranga (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Mikel-Olasagasti-Uranga.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mikle.com (partial)\" f=\"Mikle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MikroTik.com (partial)\" f=\"MikroTik.com.xml\"><exclusion pattern=\"^http://www\\.mikrotik\\.com/+(?!client(?:$|[?/])|css/|favicon\\.ico|img/)\"/><rule from=\"^http://download2\\.mikrotik\\.com/\" to=\"https://d355q2xs8kb5oj.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mikrocontroller.net\" f=\"Mikrocontroller.net.xml\"><rule from=\"^http://(?:www\\.)?mikrocontroller\\.net/\" to=\"https://www.mikrocontroller.net/\"/></ruleset>", "<ruleset name=\"MilbenCheck.at\" f=\"MilbenCheck.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"milchkind.net\" default_off=\"expired, self-signed\" f=\"Milchkind.net.xml\"><securecookie host=\"^zwischenwelt\\.milchkind\\.net$\" name=\".*\"/><rule from=\"^http://zwischenwelt\\.milchkind\\.net/\" to=\"https://zwischenwelt.milchkind.net/\"/></ruleset>", "<ruleset name=\"MileIQ.com (partial)\" f=\"MileIQ.com.xml\"><securecookie host=\"^\\.dashboard\\.mileiq\\.com$\" name=\".+\"/><rule from=\"^http://mileiq\\.com/+\" to=\"https://www.mileiq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milepoint.com\" f=\"Milepoint.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miles-and-more.com\" f=\"Miles-and-more.xml\"><securecookie host=\"^(?:.*\\.)?miles-and-more.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?miles-and-more\\.com/\" to=\"https://www.miles-and-more.com/\"/><rule from=\"^http://meilenrechner\\.de/\" to=\"https://www.meilenrechner.de/\"/><rule from=\"^http://([^/:@]+)?\\.meilenrechner\\.de/\" to=\"https://$1.meilenrechner.de/\"/><rule from=\"^http://miles-and-more-kreditkarte\\.com/\" to=\"https://www.miles-and-more-kreditkarte.com/\"/><rule from=\"^http://([^/:@]+)?\\.miles-and-more-kreditkarte\\.com/\" to=\"https://$1.miles-and-more-kreditkarte.com/\"/></ruleset>", "<ruleset name=\"Military Super\" f=\"MilitarySuper.xml\"><rule from=\"^http://(?:www\\.)?militarysuper\\.gov\\.au/\" to=\"https://www.militarysuper.gov.au/\"/></ruleset>", "<ruleset name=\"MilkAndMore\" f=\"MilkAndMore.xml\"><securecookie host=\"^(?:[^@:/]+\\.)?milkandmore\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?milkandmore\\.co\\.uk/\" to=\"https://www.milkandmore.co.uk/\"/></ruleset>", "<ruleset name=\"Millennium Seating (partial)\" f=\"Millennium_Seating.xml\"><rule from=\"^http://(www\\.)?millenniumseating\\.com/(buttons/|favicon\\.ico|images/|[sS]tore/(?:i/|inc/|login\\.aspx|[tT]emplates/))\" to=\"https://$1millenniumseating.com/$2\"/><rule from=\"^http://static\\.millenniumseating\\.com/\" to=\"https://d2oplcg29czvvo.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Millward Brown\" f=\"Millward-Brown.xml\"><securecookie host=\"^www\\.millwardbrown\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?millwardbrown\\.com/\" to=\"https://www.millwardbrown.com/\"/></ruleset>", "<ruleset name=\"milodev.com\" default_off=\"failed ruleset test\" f=\"Milodev.com.xml\"><securecookie host=\"^\\.milodev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milonic (partial)\" default_off=\"failed ruleset test\" f=\"Milonic.xml\"><rule from=\"^http://(www\\.)?milonic\\.com/(cbuy\\.php(?:$|\\?)|images/|templates/)\" to=\"https://$1milonic.com/$2\"/></ruleset>", "<ruleset name=\"Milton-Keynes.gov.uk (partial)\" f=\"Milton-Keynes.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milwaukee Makerspace\" default_off=\"self-signed\" f=\"Milwaukee-Makerspace.xml\"><securecookie host=\"^milwaukeemakerspace\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?milwaukeemakerspace\\.org/\" to=\"https://milwaukeemakerspace.org/\"/></ruleset>", "<ruleset name=\"MinFil.org\" f=\"MinFil.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minacs.com\" f=\"Minacs.com.xml\"><securecookie host=\"^clientchat\\.minacs\\.com$\" name=\".+\"/><rule from=\"^http://clientchat\\.minacs\\.com/\" to=\"https://clientchat.minacs.com/\"/></ruleset>", "<ruleset name=\"Minalyzer.com (partial)\" f=\"Minalyzer.com.xml\"><rule from=\"^http://images\\.minalyzer\\.com/\" to=\"https://s3.amazonaws.com/images.minalyzer.com/\"/></ruleset>", "<ruleset name=\"Minaterm.com\" default_off=\"missing certificate chain\" f=\"Minaterm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mind.org.uk (partial)\" f=\"Mind.xml\"><exclusion pattern=\"^http://shop\\.mind\\.org\\.uk/+(?!assets/|favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://www\\.mind\\.org\\.uk/+(?!assets/|favicon\\.ico|images/|javascripts/|login(?:$|\\?|/)|shop/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindModeling.org\" f=\"MindModeling.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.com\" f=\"MindTouch.com.xml\"><securecookie host=\"^\\.mindtouch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.us\" f=\"MindTouch.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mind Tools.com\" f=\"Mind_Tools.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mindhealthconnect\" f=\"Mindhealthconnect.xml\"><rule from=\"^http://(?:www\\.)?mindhealthconnect\\.org\\.au/\" to=\"https://www.mindhealthconnect.org.au/\"/></ruleset>", "<ruleset name=\"mindrot.org (partial)\" f=\"Mindrot.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mindshare Technologies\" f=\"Mindshare-Technologies.xml\"><securecookie host=\"^(?:www\\.)?mshare\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mshare\\.net/\" to=\"https://www.mshare.net/\"/></ruleset>", "<ruleset name=\"Minecraft\" f=\"Minecraft.xml\"><securecookie host=\"^www\\.minecraft\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?minecraft\\.net/\" to=\"https://www.minecraft.net/\"/></ruleset>", "<ruleset name=\"Minecraft Server Lijst.NL\" f=\"Minecraft_Server_Lijst.NL.xml\"><securecookie host=\"^\\.?minecraftserverlijst\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minetest.ru (partial)\" f=\"Minetest.ru.xml\"><securecookie host=\"^minetest\\.ru$\" name=\".+\"/><rule from=\"^http://minetest\\.ru/\" to=\"https://minetest.ru/\"/></ruleset>", "<ruleset name=\"MiniJuegos gratis.com (partial)\" f=\"MiniJuegos_gratis.com.xml\"><rule from=\"^http://(?:ssl|www)\\.minijuegosgratis\\.com/\" to=\"https://$1.minijuegosgratis.com/\"/></ruleset>", "<ruleset name=\"miniLock.io\" f=\"MiniLock.io.xml\"><securecookie host=\"^\\.minilock\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MiniMundos online.com\" f=\"MiniMundos_online.com.xml\"><rule from=\"^http://content\\.minimundosonline\\.com/\" to=\"https://s3.amazonaws.com/content.minimundosonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miniand Tech (partial)\" f=\"Miniand-Tech.xml\"><securecookie host=\"^(?:www)?\\.miniand\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miniatur Wunderland\" platform=\"mixedcontent\" f=\"Miniatur-Wunderland.xml\"><rule from=\"^http://(?:www\\.)?miniatur-wunderland\\.de/\" to=\"https://www.miniatur-wunderland.de/\"/></ruleset>", "<ruleset name=\"Miniclip CDN.com\" default_off=\"Breaks functionality\" f=\"Miniclip_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minijob-Zentrale.de\" f=\"Minijob-zentrale.de.xml\"><rule from=\"^https?://(?:www\\.)?minijob-zentrale\\.de/\" to=\"https://www.minijob-zentrale.de/\"/></ruleset>", "<ruleset name=\"Mining.Bitcoin.cz\" f=\"Mining.Bitcoin.cz.xml\"><rule from=\"^http://beta\\.mining\\.bitcoin\\.cz/\" to=\"https://mining.bitcoin.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ministerialtidende.dk\" f=\"Ministerialtidende.dk.xml\"><securecookie host=\"^www\\.ministerialtidende\\.dk$\" name=\".+\"/><rule from=\"^http://ministerialtidende\\.dk/\" to=\"https://www.ministerialtidende.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ministry of Justice\" f=\"Ministry_of_Justice.xml\"><securecookie host=\"^\\.www\\.justice\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minix3.org\" default_off=\"mismatched\" f=\"Minix3.org.xml\"><rule from=\"^http://(?:www\\.)?minix3\\.org/\" to=\"https://www.minix3.org/\"/></ruleset>", "<ruleset name=\"Minnesota Public Radio (partial)\" f=\"Minnesota-Public-Radio.xml\"><securecookie host=\"^\\.publicradio\\.org$\" name=\"^WT_FPC$\"/><securecookie host=\"^\\.contribute\\.publicradio\\.org$\" name=\".+\"/><rule from=\"^http://(contribute|www)\\.publicradio\\.org/\" to=\"https://$1.publicradio.org/\"/><rule from=\"^http://minnesota\\.publicradio\\.org/www_publicradio/\" to=\"https://www.publicradio.org/www_publicradio/\"/></ruleset>", "<ruleset name=\"MinoHubs.com\" f=\"MinoHubs.com.xml\"><rule from=\"^http://minohubs\\.com/\" to=\"https://www.minohubs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mint.ca (partial)\" f=\"Mint.ca.xml\"><exclusion pattern=\"^http://www\\.mint\\.ca/(?!store/template/default/(?:image|cs)s/|registration/)\"/><rule from=\"^http://mint\\.ca/\" to=\"https://www.mint.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mint\" platform=\"mixedcontent\" f=\"Mint.xml\"><rule from=\"^http://(?:www\\.)?mint\\.com/\" to=\"https://www.mint.com/\"/></ruleset>", "<ruleset name=\"MintGuide.org (partial)\" f=\"MintGuide.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minted (partial)\" f=\"Minted.xml\"><rule from=\"^http://(?:www\\.)?minted\\.com/(__\\w+__/|(?:forgot|login|register)(?:$|\\?)|modules/|static/|themes/)\" to=\"https://www.minted.com/$1\"/><rule from=\"^http://cdn[012]\\.(?:minted\\.com|live1\\.mintedcdn\\.net)/\" to=\"https://www.minted.com/\"/><rule from=\"^http://cdn3\\.minted\\.com/\" to=\"https://d2bhls43bg90ow.cloudfront.net/\"/><rule from=\"^http://cdn4\\.minted\\.com/\" to=\"https://d27r269iws82ha.cloudfront.net/\"/><rule from=\"^http://cdn5\\.minted\\.com/\" to=\"https://dyx88w6kx3fik.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Minus.com (mismatches)\" default_off=\"mismatched\" f=\"Minus.com-mismatches.xml\"><securecookie host=\"^\\.?feedback\\.minus\\.com$\" name=\".+\"/><rule from=\"^http://feedback\\.minus\\.com/\" to=\"https://feedback.minus.com/\"/></ruleset>", "<ruleset name=\"Minus.com (partial)\" platform=\"mixedcontent\" f=\"Minus.com.xml\"><exclusion pattern=\"^http://(?:blog|feedback)\\.\"/><securecookie host=\"^\\.?minus\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?min(?:\\.us|us\\.com)/\" to=\"https://$1minus.com/\"/></ruleset>", "<ruleset name=\"MirBSD.org\" f=\"MirBSD.xml\"><rule from=\"^http://mirbsd\\.org/\" to=\"https://www.mirbsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirage.io\" f=\"Mirage.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirakar.com\" default_off=\"failed ruleset test\" f=\"Mirakar.com.xml\"><rule from=\"^http://(?:www\\.)?mirakar\\.com/\" to=\"https://www.mirakar.com/\"/></ruleset>", "<ruleset name=\"Miramax.com\" default_off=\"failed ruleset test\" f=\"Miramax.com.xml\"><securecookie host=\"^(?:www\\.)?miramax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miranda IM (partial)\" f=\"Miranda-IM.xml\"><securecookie host=\"^.*\\.miranda-im\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?miranda-im\\.org/wp-content/themes/miranda/images/\" to=\"https://addons.miranda-im.org/images/\"/><rule from=\"^http://addons\\.miranda-im\\.org/\" to=\"https://addons.miranda-im.org/\"/></ruleset>", "<ruleset name=\"Mirantis.com\" f=\"Mirantis.com.xml\"><securecookie host=\"^training\\.mirantis\\.com$\" name=\".+\"/><rule from=\"^http://((?:software|training|www)\\.)?mirantis\\.com/\" to=\"https://$1mirantis.com/\"/></ruleset>", "<ruleset name=\"miretail.com\" f=\"Miretail.com.xml\"><rule from=\"^http://images\\.miretail\\.com/\" to=\"https://images.miretail.com/\"/></ruleset>", "<ruleset name=\"Mirror Bingo.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mirror_Bingo.com-falsemixed.xml\"><securecookie host=\"^\\.mirrorbingo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirror Bingo.com (partial)\" f=\"Mirror_Bingo.com.xml\"><exclusion pattern=\"^http://(?:games\\.|www\\.)?mirrorbingo\\.com/+(?!favicon\\.ico|getcss/|html/|image/|library/|mirror-theme/)\"/><rule from=\"^http://cache(games|www)\\.mirrorbingo\\.com/+(?!(?!getcss/bingo\\.css|html/css/main\\.css|html/portlet/journal_content/css/main\\.css).+\\.css(?:$|\\?))\" to=\"https://$1.mirrorbingo.com/\"/><rule from=\"^http://(games\\.|www\\.)?mirrorbingo\\.com/\" to=\"https://$1mirrorbingo.com/\"/></ruleset>", "<ruleset name=\"Mirror Image Internet (partial)\" f=\"Mirror_Image_Internet.xml\"><rule from=\"^http://(\\w+)\\.service\\.mirror-image\\.net/\" to=\"https://$1.service.mirror-image.net/\"/></ruleset>", "<ruleset name=\"Mirror Reader Offers.co.uk\" f=\"Mirror_Reader_Offers.co.uk.xml\"><securecookie host=\"^www\\.mirrorreaderoffers\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mirrorreaderoffers\\.co\\.uk/\" to=\"https://www.mirrorreaderoffers.co.uk/\"/></ruleset>", "<ruleset name=\"Mirrorservice.org\" f=\"Mirrorservice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mirt.net\" default_off=\"self-signed\" f=\"Mirt.net.xml\"><rule from=\"^http://(?:www\\.)?mirt\\.net/\" to=\"https://www.mirt.net/\"/></ruleset>", "<ruleset name=\"Misadventures with Andi (problematic)\" default_off=\"expired, self-signed\" f=\"Misadventures_with_Andi-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?misadventureswithandi.com/(?:\\?drawer-css=|favicon\\.ico|wp-content/)\"/><rule from=\"^http://(?:www\\.)?misadventureswithandi\\.com/\" to=\"https://misadventureswithandi.com/\"/></ruleset>", "<ruleset name=\"Misadventures with Andi (partial)\" f=\"Misadventures_with_Andi.xml\"><exclusion pattern=\"^http://(?:www\\.)?misadventureswithandi.com/(?!\\?drawer-css=|favicon\\.ico|wp-content/)\"/><rule from=\"^http://(?:www\\.)?misadventureswithandi\\.com/\" to=\"https://www.misadventureswithandi.com/\"/></ruleset>", "<ruleset name=\"Misco.co.uk (partial)\" f=\"Misco.co.uk.xml\"><securecookie host=\"^\\.misco\\.co\\.uk$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?misco\\.co\\.uk/(?=[aA]ccount/|(?:Basket|Order)(?:$|[?/])|bundles/|Content/|favicon\\.ico|[iI]mages/|Scripts/)\" to=\"https://www.misco.co.uk/\"/></ruleset>", "<ruleset name=\"Mises.org\" f=\"Mises.org.xml\"><exclusion pattern=\"^http://mises\\.org/store/\"/><securecookie host=\"^\\.?mises\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mispy.me\" f=\"Mispy.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Missing Link Electronics.com\" f=\"Missing_Link_Electronics.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mit-dem-rad-zur-arbeit.de\" f=\"Mit-dem-rad-zur-arbeit.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mitmproxy.org\" f=\"Mitmproxy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mito.hu (partial)\" f=\"Mito.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mitre.org (partial)\" f=\"Mitre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mitro.co\" f=\"Mitro.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mitsubishi.com\" f=\"Mitsubishi.com.xml\"><rule from=\"^http://(?:www\\.)?mitsubishi\\.com/\" to=\"https://www.mitsubishi.com/\"/></ruleset>", "<ruleset name=\"MivaCentral\" f=\"MivaCentral.xml\"><securecookie host=\"^www\\.mivacentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mivacentral\\.com/\" to=\"https://www.mivacentral.com/\"/></ruleset>", "<ruleset name=\"Miva Merchant\" default_off=\"failed ruleset test\" f=\"Miva_Merchant.xml\"><securecookie host=\"^www\\.mivamerchant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MixBit.com\" f=\"MixBit.com.xml\"><securecookie host=\"^\\.mixbit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mixcloud.com (partial)\" f=\"Mixcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance|csrftoken|s)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mixér.cz\" f=\"Mixer.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mixi (partial)\" f=\"Mixi.xml\"><exclusion pattern=\"^http://mixi\\.jp/+(?!$|\\?|appli_|comm/|favicon\\.ico|photo/)\"/><rule from=\"^http://(?:www\\.)?mixi\\.(co\\.)?jp/\" to=\"https://mixi.$1jp/\"/><rule from=\"^http://(plugins|static)\\.mixi\\.jp/\" to=\"https://$1.mixi.jp/\"/><rule from=\"^http://img\\.mixi\\.net/\" to=\"https://img.mixi.net/\"/></ruleset>", "<ruleset name=\"Mixpanel.com\" f=\"Mixpanel.xml\"><securecookie host=\"^(?:.*\\.)?mixpanel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MixtapeLeak\" default_off=\"refused\" f=\"MixtapeLeak.xml\"><securecookie host=\"^\\.?mixtapeleak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mixx.com\" default_off=\"failed ruleset test\" f=\"Mixx.com.xml\"><rule from=\"^http://mixx\\.com/\" to=\"https://mixx.com/\"/><rule from=\"^http://www\\.mixx\\.com/\" to=\"https://www.mixx.com/\"/></ruleset>", "<ruleset name=\"Mixxx.org\" default_off=\"failed ruleset test\" f=\"Mixxx.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?mixxx\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mjam\" f=\"Mjam.xml\"><rule from=\"^http://(?:www\\.)?mjam\\.net/\" to=\"https://www.mjam.net/\"/></ruleset>", "<ruleset name=\"Mjanja.ch\" f=\"Mjanja.ch.xml\"><rule from=\"^http://www\\.mjanja\\.ch/\" to=\"https://mjanja.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mkateb.com\" default_off=\"plaintext reply\" f=\"Mkateb.com.xml\"><securecookie host=\"^\\.mkateb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mktoresp.com\" f=\"Mktoresp.com.xml\"><securecookie host=\".+\\.mktoresp\\.com$\" name=\".+\"/><rule from=\"^http://(\\d{3}-\\w{3}-\\d{3})\\.mktoresp\\.com/\" to=\"https://$1.mktoresp.com/\"/></ruleset>", "<ruleset name=\"mmixr.com\" default_off=\"failed ruleset test\" f=\"Mmixr.com.xml\"><securecookie host=\"^\\.mmixr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mmixr\\.com/\" to=\"https://www.mmixr.com/\"/><rule from=\"^http://app\\.mmixr\\.com/\" to=\"https://app.mmixr.com/\"/></ruleset>", "<ruleset name=\"mmstat.com\" f=\"Mmstat.com.xml\"><securecookie host=\"^\\.mmstat\\.com$\" name=\"^(?:atpsida|cna|sca)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MnCDN.com\" f=\"MnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mnot.net\" f=\"Mnot.net.xml\"><rule from=\"^http://mnot\\.net/\" to=\"https://www.mnot.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoAF.org (expired)\" default_off=\"expired\" f=\"MoAF.org-problematic.xml\"><securecookie host=\"^www\\.moaf\\.org$\" name=\".+\"/><rule from=\"^http://moaf\\.org/\" to=\"https://www.moaf.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoAF.org (partial)\" f=\"MoAF.org.xml\"><securecookie host=\"^\\.?shop\\.moaf\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moana Surfrider (partial)\" f=\"Moana_Surfrider.xml\"><rule from=\"^http://(?:www\\.)?moana-surfrider\\.com/images/\" to=\"https://www.moana-surfrider.com/images/\"/></ruleset>", "<ruleset name=\"moar.so\" f=\"Moar.so.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moat.com\" f=\"Moat.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moat ads.com (partial)\" f=\"Moat_ads.com.xml\"><exclusion pattern=\"^http://(?!(?:dbg\\d+|v\\d+|www)\\.moatads\\.com/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?moatads\\.com/\" to=\"https://www.moat.com/\"/><exclusion pattern=\"^http://(?:www\\.)?moatads\\.com/(?!$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moava\" f=\"Moava.xml\"><securecookie host=\"^.*\\.moava\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobStac (partial)\" f=\"MobStac.xml\"><rule from=\"^http://(www\\.)?mobstac\\.com/a/(login|password/reset)(/)?\" to=\"https://$1mobstac.com/a/login$2$3\"/><rule from=\"^http://cdn\\.mobstac\\.com/\" to=\"https://d9ic2hg1x4ep8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mobclix.com (partial)\" default_off=\"expired\" f=\"Mobclix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobiGum.com\" f=\"MobiGum.com.xml\"><securecookie host=\"^\\.mobigum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobiHand clients\" default_off=\"failed ruleset test\" f=\"MobiHand-clients.xml\"><rule from=\"^http://store\\.androidguys\\.com/common_files/\" to=\"https://www.mobihand.com/common_files/\"/></ruleset>", "<ruleset name=\"MobiHand\" default_off=\"failed ruleset test\" f=\"MobiHand.xml\"><securecookie host=\"^(?:www\\.)?mobi(?:hand|reach)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mobihand\\.com/\" to=\"https://www.mobihand.com/\"/><rule from=\"^http://(www\\.)?mobireach\\.com/\" to=\"https://$1mobireach.com/\"/></ruleset>", "<ruleset name=\"Mobify.me\" f=\"Mobify.me.xml\"><rule from=\"^http://(?:www\\.)?mobify\\.me/+\" to=\"https://mobify.com/\"/><rule from=\"^http://community\\.mobify\\.me/[^?]*\" to=\"https://support.mobify.com/\"/></ruleset>", "<ruleset name=\"Mobify.net\" f=\"Mobify.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobify.com (partial)\" f=\"Mobify.xml\"><securecookie host=\".*\\.mobify\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobile01.com\" f=\"Mobile01.com.xml\"><exclusion pattern=\"^http://www\\.mobile01\\.com/(?!login\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobileCore.com\" f=\"MobileCore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobilePay.dk\" f=\"MobilePay.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobileRead (partial)\" default_off=\"failed ruleset test\" f=\"MobileRead.xml\"><securecookie host=\"^dev.mobileread.com$\" name=\".+\"/><rule from=\"^http://dev\\.mobileread\\.com/\" to=\"https://dev.mobileread.com/\"/></ruleset>", "<ruleset name=\"Mobile Asia Expo (partial)\" f=\"Mobile_Asia_Expo.xml\"><rule from=\"^http://content\\.mobileasiaexpo\\.com/\" to=\"https://d1cu38qo94v965.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mobile Enterprise 360.com\" default_off=\"expired, mismatched, self-signed\" f=\"Mobile_Enterprise_360.com.xml\"><securecookie host=\"^(?:www)?\\.mobileenterprise360\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mobileenterprise360\\.com/\" to=\"https://www.mobileenterprise360.com/\"/></ruleset>", "<ruleset name=\"Mobile Nations (partial)\" f=\"Mobile_Nations.xml\"><exclusion pattern=\"^http://shop\\.mobilenations\\.com/+(?!images/|store_images/|v3_templates/)\"/><rule from=\"^http://(passport|shop)\\.mobilenations\\.com/\" to=\"https://$1.mobilenations.com/\"/><rule from=\"^http://(?:cdn\\.passport|passport-cdn)\\.mobilenations\\.com/\" to=\"https://passport-cdn.mobilenations.com/\"/></ruleset>", "<ruleset name=\"Mobile Vikings (partial)\" f=\"Mobile_Vikings.xml\"><securecookie host=\"^(?:www\\.)?mobilevikings\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobilepki.org\" f=\"Mobilepki.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobio INsider\" f=\"Mobio_INsider.xml\"><securecookie host=\"^(?:w*\\.)?(?:stage-)?mobioinsider\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobygames.com\" f=\"MobyGames.xml\"><securecookie host=\"^\\.mobygames\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobypicture\" f=\"Mobypicture.xml\"><rule from=\"^http://(?:\\w+\\.)?media\\.mobyhub\\.com/\" to=\"https://d1u33j8blhxgzy.cloudfront.net/\"/><rule from=\"^http://((?:www\\.)?api\\.|www\\.)?mobypicture\\.com/\" to=\"https://$1mobypicture.com/\"/><rule from=\"^http://secure\\.mobypicture\\.com/\" to=\"https://www.mobypicture.com/\"/><rule from=\"^http://(?:a\\d\\.)?img\\.mobypicture\\.com/\" to=\"https://d2d8v8ddwfpkhk.cloudfront.net/\"/><rule from=\"^http://layout\\.mobypicture\\.com/\" to=\"https://dq8u4hkdxtrwa.cloudfront.net/\"/><rule from=\"^http://static\\.mobypicture\\.com/\" to=\"https://d3l076gtvxuom7.cloudfront.net/\"/><rule from=\"^http://vid\\.mobypicture\\.com/\" to=\"https://dxujr96dorra9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MochaHost\" platform=\"mixedcontent\" f=\"MochaHost.xml\"><securecookie host=\"^(?:www\\.)?mochahost\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mochajs.org\" f=\"Mochajs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mochimedia (partial)\" f=\"Mochimedia.xml\"><exclusion pattern=\"^http://(?:games|wiki)\\.mochimedia\\.com/\"/><rule from=\"^http://([^@:/]*)\\.mochimedia\\.com/\" to=\"https://$1.mochimedia.com/\"/></ruleset>", "<ruleset name=\"mochtu.de\" f=\"Mochtu.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.mochtu\\.de/\" to=\"https://mochtu.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ModCloth.com (partial)\" f=\"ModCloth.com.xml\"><securecookie host=\"^\\.modcloth\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?modcloth\\.com/(?=favicon\\.ico|customers/(?:account|login)s/create\\.json|personalization\\.json|storefront/(?:latest/(?:\\w+_image_url|header_links)|modal_windows/sign_in_or_join)(?:$|[?/]))\" to=\"https://www.modcloth.com/\"/><rule from=\"^http://cdn0\\.modcloth\\.com/\" to=\"https://cdn0.modcloth.com/\"/><rule from=\"^http://(cdn1\\d|productshots\\d)\\.modcloth\\.net/\" to=\"https://$1.modcloth.net/\"/></ruleset>", "<ruleset name=\"ModMyPi\" f=\"ModMyPi.xml\"><securecookie host=\"^\\.?www\\.modmypi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ModMyi.com\" f=\"ModMyi.xml\"><securecookie host=\"^\\.?modmyi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ModSecurity.org\" f=\"ModSecurity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mod DB.com (partial)\" f=\"Mod_DB.com.xml\"><rule from=\"^http://s(?:ecure|tatic)\\.moddb\\.com/\" to=\"https://secure.moddb.com/\"/></ruleset>", "<ruleset name=\"Model Mayhem (problematic)\" default_off=\"mismatched\" f=\"Model_Mayhem-problematic.xml\"><rule from=\"^http://photos\\.modelmayhem\\.com/\" to=\"https://photos.modelmayhem.com/\"/></ruleset>", "<ruleset name=\"Model Mayhem (partial)\" platform=\"mixedcontent\" f=\"Model_Mayhem.xml\"><securecookie host=\"^.*\\.modelmayhem\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?modelmayhem\\.com/\" to=\"https://secure.modelmayhem.com/\"/></ruleset>", "<ruleset name=\"Model View Culture.com\" f=\"Model_View_Culture.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"modern.IE\" f=\"Modern.IE.xml\"><securecookie host=\"^(?:\\.devchannel|\\.?remote|\\.status|\\.www)?\\.modern\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modern Crypto.org\" f=\"Modern_Crypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modern Giver\" default_off=\"failed ruleset test\" f=\"Modern_Giver.xml\"><securecookie host=\"^\\.moderngiver\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?moderngiver\\.com/\" to=\"https://moderngiver.com/\"/><rule from=\"^http://(?:www\\.)?simplegiver\\.com/\" to=\"https://www.moderngiver.com/\"/></ruleset>", "<ruleset name=\"Modernpgp.org\" f=\"Modernpgp.org.xml\"><securecookie host=\"^(www\\.)?modernpgp\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modernrepo.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Modernrepo.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modernrepo.com (partial)\" default_off=\"failed ruleset test\" f=\"Modernrepo.com.xml\"><securecookie host=\"^dev\\.modernrepo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modernus\" f=\"Modernus.xml\"><rule from=\"^http://login\\.modernus\\.is/\" to=\"https://login.modernus.is/\"/><rule from=\"^http://secure\\.teljari\\.is/\" to=\"https://secure.teljari.is/\"/></ruleset>", "<ruleset name=\"Modlife\" default_off=\"failed ruleset test\" f=\"Modlife.xml\"><rule from=\"^http://(?:www\\.)?modlife\\.com/\" to=\"https://modlife.com/\"/><rule from=\"^http://images\\.modlife\\.com/\" to=\"https://d1gy20lpqgjyb5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Modulus.io (partial)\" f=\"Modulus.io.xml\"><securecookie host=\"^\\.modulus\\.io$\" name=\"^modulus\\.sid$\"/><rule from=\"^http://www\\.modulus\\.io/\" to=\"https://modulus.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moechel.com\" f=\"Moechel.com.xml\"><securecookie host=\"^moechel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moelleken.org\" f=\"Moelleken.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moevideo\" f=\"Moevideo.xml\"><securecookie host=\"^(?:www\\.)?moevideo\\.net$\" name=\".+\"/><exclusion pattern=\"^http://(?:www\\.)?moevideo\\.net/geocode\\.php(?:\\?|$)\"/><exclusion pattern=\"^http://(?:www\\.)?moevideo\\.net/(?:crossdomain\\.xml|geocode\\.php)(?:\\?|$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mofobian.com (partial)\" f=\"Mofobian.com.xml\"><rule from=\"^http://(?:www\\.)?mofobian\\.com/(favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~mofobian/$1\"/></ruleset>", "<ruleset name=\"Moikrug.ru (partial)\" f=\"Moikrug.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?moikrug\\.ru/\" to=\"https://$1moikrug.ru/\"/></ruleset>", "<ruleset name=\"MoinMoin\" f=\"MoinMoin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moja.tatrabanka.sk\" f=\"Moja.tatrabanka.sk.xml\"><rule from=\"^http://moja\\.tatrabanka\\.sk/\" to=\"https://moja.tatrabanka.sk/\"/></ruleset>", "<ruleset name=\"Mojandroid.sk\" f=\"Mojandroid.sk.xml\"><rule from=\"^http://(?:www\\.)?mojandroid\\.sk/\" to=\"https://www.mojandroid.sk/\"/></ruleset>", "<ruleset name=\"mojeID.cz\" f=\"MojeID.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mollom.com\" default_off=\"failed ruleset test\" f=\"Mollom.xml\"><securecookie host=\"^\\.mollom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MomentusMedia.com\" f=\"MomentusMedia.xml\"><securecookie host=\"^(?:.+\\.)?momentusmedia\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?momentusmedia\\.com/\" to=\"https://secure.momentusmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mommys Little Sunshine.com (partial)\" f=\"Mommys_Little_Sunshine.com.xml\"><rule from=\"^http://(www\\.)?mommyslittlesunshine\\.com/(?=favicon\\.ico|images/|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1mommyslittlesunshine.com/\"/></ruleset>", "<ruleset name=\"Monarch.co.uk\" platform=\"mixedcontent\" f=\"Monarch.co.uk.xml\"><rule from=\"^http://(?:www\\.)?monarch\\.co\\.uk/\" to=\"https://www.monarch.co.uk/\"/></ruleset>", "<ruleset name=\"Monash.edu (partial)\" f=\"Monash.edu.xml\"><exclusion pattern=\"^http://www\\.monash\\.edu/(?:$|\\?)\"/><securecookie host=\"^community\\.monash\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MondeDiplo.com\" f=\"MondeDiplo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mondemp3.com\" default_off=\"failed ruleset test\" f=\"Mondemp3.com.xml\"><securecookie host=\"^\\.mondemp3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mondo 2000\" default_off=\"mismatch\" f=\"Mondo-2000.xml\"><rule from=\"^http://(?:www\\.)?mondo2000\\.net/\" to=\"https://mondo2000.net/\"/></ruleset>", "<ruleset name=\"Monetate (partial)\" f=\"Monetate.xml\"><securecookie host=\"^.+\\.monetate\\.net$\" name=\".+\"/><rule from=\"^http://(b|d|e|f)\\.monetate\\.net/\" to=\"https://s$1.monetate.net/\"/><rule from=\"^http://(marketer|sb|sd|se|sf)\\.monetate\\.net/\" to=\"https://$1.monetate.net/\"/></ruleset>", "<ruleset name=\"Money.pl (false MCB)\" platform=\"mixedcontent\" f=\"Money.pl-falsemixed.xml\"><securecookie host=\".\\.money\\.pl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money.pl (partial)\" f=\"Money.pl.xml\"><exclusion pattern=\"^http://direct\\.money\\.pl/+(?![do]/)\"/><exclusion pattern=\"^http://(?:fundusze-(?:emerytal|inwestycyj)ne|karty-kredytowe|kredyty-(?:gotowk|mieszkaniosamochod|samochod)owe|lokaty-bankowe)\\.money\\.pl/(?![ijs]/)\"/><securecookie host=\"^\\.\" name=\"^usertrack$\"/><securecookie host=\"^\\.direct\\.\" name=\"^directtrack$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money Advice Service (UK)\" f=\"Money_Advice_Service_UK.xml\"><rule from=\"^http://moneyadviceservice\\.org\\.uk/\" to=\"https://www.moneyadviceservice.org.uk/\"/><rule from=\"^http://([^/:@]+)?\\.moneyadviceservice\\.org\\.uk/\" to=\"https://$1.moneyadviceservice.org.uk/\"/></ruleset>", "<ruleset name=\"Money Saving Expert.com (partial)\" f=\"Money_Saving_Expert.com.xml\"><rule from=\"^http://images\\d?\\.moneysavingexpert\\.com/\" to=\"https://c95735.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://static\\d?\\.moneysavingexpert\\.com/\" to=\"https://c950035.ssl.cf3.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Moneybookers\" f=\"Moneybookers.xml\"><securecookie host=\"^(?:.*\\.)?moneybookers\\.com$\" name=\".+\"/><rule from=\"^http://i(1|2)\\.mbsvr\\.net/\" to=\"https://i$1.mbsvr.net/\"/><rule from=\"^http://(www\\.)?moneybookers\\.com/\" to=\"https://$1moneybookers.com/\"/></ruleset>", "<ruleset name=\"Mongabay.com (mismatches)\" default_off=\"mismatch\" f=\"Mongabay.com-problematic.xml\"><rule from=\"^http://travel\\.mongabay\\.com/\" to=\"https://travel.mongabay.com/\"/></ruleset>", "<ruleset name=\"Mongabay.com (partial)\" f=\"Mongabay.com.xml\"><securecookie host=\"^(?:news|supporter)\\.mongabay\\.com$\" name=\".+\"/><rule from=\"^http://(news|supporter)\\.mongabay\\.com/\" to=\"https://$1.mongabay.com/\"/><rule from=\"^http://www\\.supporter\\.mongabay\\.com/(?:\\?.*)?$\" to=\"https://news.mongabay.com/\"/></ruleset>", "<ruleset name=\"MongoDB.com (partial)\" f=\"MongoDB.com.xml\"><securecookie host=\"^(?:education|university)\\.mongodb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mongoDB.org (partial)\" f=\"MongoDB.org.xml\"><securecookie host=\"^(?:jira|www)\\.mongodb\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"monitis.com (partial)\" default_off=\"failed ruleset test\" f=\"Monitis.com.xml\"><securecookie host=\"^(?:dashboard|portal|www)\\.monitis\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?monitis\\.com/\" to=\"https://www.monitis.com/\"/><rule from=\"^http://(dashboard|portal)\\.monitis\\.com/\" to=\"https://$1.monitis.com/\"/></ruleset>", "<ruleset name=\"Monitoring-Plugins.org\" f=\"Monitoring-Plugins.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MonkeyGuts.com\" default_off=\"expired\" f=\"MonkeyGuts.com.xml\"><securecookie host=\"^monkeyguts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monkeybrains.net\" f=\"Monkeybrains.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monkey’s Audio\" default_off=\"mismatch\" f=\"Monkeys-Audio.xml\"><rule from=\"^http://(?:www\\.)?ashlands\\.net/\" to=\"https://ashlands.net/~monkeys6/\"/><rule from=\"^http://audio\\.ashlands\\.net/\" to=\"https://audio.ashlands.net/~monkeys6/monkeysaudio/\"/><rule from=\"^http://(?:www\\.)monkeysaudio\\.com/\" to=\"https://audio.ashlands.net/~monkeys6/monkeysaudio/\"/></ruleset>", "<ruleset name=\"Monmouthshire.gov.uk (partial)\" f=\"Monmouthshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_icl_current_language$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monoprice\" f=\"Monoprice.xml\"><securecookie host=\"^(?:www)?\\.monoprice\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?monoprice\\.com/\" to=\"https://www.monoprice.com/\"/><rule from=\"^http://images\\.monoprice\\.com/\" to=\"https://images.monoprice.com/\"/></ruleset>", "<ruleset name=\"Monotype Imaging.com (partial)\" f=\"Monotype-Imaging.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monsoon (partial)\" f=\"Monsoon.xml\"><rule from=\"^http://media\\.monsoon\\.co\\.uk/\" to=\"https://uk.monsoon.co.uk/\"/><rule from=\"^http://uk\\.monsoon\\.co\\.uk/(medias/|monsoon/|registerSession\\.gif|static/)\" to=\"https://uk.monsoon.co.uk/$1\"/></ruleset>", "<ruleset name=\"Monster.com (partial)\" f=\"Monster.xml\"><exclusion pattern=\"^http://hiring\\.(?:[\\w-]+\\.)?monster\\.com/(?!$|\\?|favicon\\.ico|images/|(?:Script|Web)Resource\\.axd|login\\.aspx|[sS]ervices/|SharedUI/)\"/><securecookie host=\"^\\.monster\\.com$\" name=\"^(?:OAX|v1st|WT_FPC)$\"/><securecookie host=\"^(?:cookie|login|oas)\\.monster\\.com$\" name=\".+\"/><rule from=\"^http://media\\.monster\\.com/\" to=\"https://securemedia.newjobs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MonsterDivx.com (partial)\" f=\"MonsterDivx.com.xml\"><securecookie host=\"^monsterdivx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monster WoW\" f=\"Monster_WoW.xml\"><securecookie host=\"^(?:.*\\.)?monster-wow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monterey Bay Aquarium\" default_off=\"failed ruleset test\" f=\"Monterey_Bay_Aquarium.xml\"><securecookie host=\"^www\\.montereybayaquarium\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monthly Review.org\" f=\"Monthly_Review.org.xml\"><securecookie host=\"^monthlyreview\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monty Program.com\" f=\"Monty_Program.xml\"><rule from=\"^http://(?:www\\.)?montyprogram\\.com/+\" to=\"https://mariadb.com/\"/><rule from=\"^http://blog\\.montyprogram\\.com/+\" to=\"https://mariadb.com/blog/\"/></ruleset>", "<ruleset name=\"MoodSmith.com\" f=\"MoodSmith.com.xml\"><securecookie host=\"^(?:w*\\.)?moodsmith\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mood Disorders.ca\" f=\"Mood_Disorders.ca.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.com\" f=\"Moodle.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.net (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Moodle.net-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.net (partial)\" f=\"Moodle.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.org (partial)\" f=\"Moodle.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mookie1.com\" f=\"Mookie1.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moon-ray.com (partial)\" f=\"Moon-ray.com.xml\"><exclusion pattern=\"^http://(?:forms\\.|www\\.)?moon-ray\\.com/+(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoonPig\" default_off=\"failed ruleset test\" f=\"MoonPig.xml\"><securecookie host=\"^(?:.+\\.)?moonpig\\.com(?:\\.au)?$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?moonpig\\.com/\" to=\"https://moonpig.com/\"/><rule from=\"^http://(?:www\\.)?moonpig\\.com\\.au/\" to=\"https://www.moonpig.com.au/\"/></ruleset>", "<ruleset name=\"Moonfruit.com (partial)\" f=\"Moonfruit.com.xml\"><rule from=\"^http://(?:www\\.)?moonfruit\\.com/\" to=\"https://www.moonfruit.com/\"/><rule from=\"^http://secure\\.moonfruit\\.com/\" to=\"https://secure.moonfruit.com/\"/></ruleset>", "<ruleset name=\"Mooshi.com.au (partial)\" f=\"Mooshi.com.au.xml\"><rule from=\"^http://(www\\.)?mooshi\\.com\\.au/(\\?ai1ec_render_css=|(?:my-account|pay)(?:$|\\?|/)|wp-content/)\" to=\"https://$1mooshi.com.au/$1\"/></ruleset>", "<ruleset name=\"Moot.it\" f=\"Moot.it.xml\"><securecookie host=\"^moot\\.it$\" name=\".+\"/><rule from=\"^http://(?:(api\\.)|www\\.)?moot\\.it/\" to=\"https://$1moot.it/\"/><rule from=\"^http://(?:cd|origi)n\\.moot\\.it/\" to=\"https://cdn.moot.it/\"/></ruleset>", "<ruleset name=\"Moovweb (partial)\" f=\"Moovweb.xml\"><securecookie host=\"^(?:help)?\\.moovweb\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?moovweb\\.com/\" to=\"https://www.moovweb.com/\"/><rule from=\"^http://(console|help)\\.moovweb\\.com/\" to=\"https://$1.moovweb.com/\"/><rule from=\"^http://(assets|cloud)\\.moovweb\\.net/\" to=\"https://$1.moovweb.net/\"/></ruleset>", "<ruleset name=\"Mopidy.com (partial)\" f=\"Mopidy.com.xml\"><securecookie host=\"^\\.mopidy\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"More-IP-event.net\" f=\"More-IP-event.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"more-onion.com\" f=\"More-onion.com.xml\"><securecookie host=\"^\\.more-onion.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"More Than Two.com\" f=\"More_Than_Two.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moreal.co\" f=\"Moreal.co.xml\"><securecookie host=\"^(?:crypteia|www)?\\.moreal\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moreinterop.com\" default_off=\"connection dropped\" f=\"Moreinterop.com.xml\"><rule from=\"^http://moreinterop\\.com/\" to=\"https://www.moreinterop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morello.se\" default_off=\"failed ruleset test\" f=\"Morello.se.xml\"><securecookie host=\"^\\.morello\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moreover Technologies (partial)\" f=\"Moreover-Technologies.xml\"><securecookie host=\"^newsdesk4\\.moreover\\.com$\" name=\".+\"/><rule from=\"^http://(c|newsdesk4)\\.moreover\\.com/\" to=\"https://$1.moreover.com/\"/></ruleset>", "<ruleset name=\"Morgenweb.de\" f=\"Morgenweb.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mork.no\" default_off=\"403\" f=\"Mork.xml\"><rule from=\"^http://(?:www\\.)?mork\\.no/\" to=\"https://www.mork.no/\"/></ruleset>", "<ruleset name=\"Mork Namnelag\" default_off=\"self-signed\" f=\"Mork_Namnelag.xml\"><rule from=\"^http://(?:www\\.)?mork\\.no/\" to=\"https://www.mork.no/\"/></ruleset>", "<ruleset name=\"Morning Star Online.co.uk\" f=\"Morning_Star_Online.co.uk.xml\"><securecookie host=\"^(?:\\.|www\\.)?morningstaronline\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morningstar.co.uk (partial)\" f=\"Morningstar.co.uk.xml\"><rule from=\"^http://(?:www\\.)?morningstar\\.co\\.uk/(?=.+/css/|favicon\\.ico|includes/|static/)\" to=\"https://www.morningstar.co.uk/\"/></ruleset>", "<ruleset name=\"Morningstar (partial)\" f=\"Morningstar.xml\"><securecookie host=\"^corporate\\.morningstar\\.com$\" name=\".+\"/><rule from=\"^http://(corporate|media|video)\\.morningstar\\.com/\" to=\"https://$1.morningstar.com/\"/></ruleset>", "<ruleset name=\"Moroccan Bazaar\" f=\"Moroccan-Bazaar.xml\"><securecookie host=\"^(?:.*\\.)?moroccanbazaar\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morphis.com\" f=\"Morphis.com.xml\"><rule from=\"^http://www\\.morphis\\.com/\" to=\"https://morphis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morpho.hu\" default_off=\"expired, missing certificate chain\" f=\"Morpho.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.morpho\\.hu/\" to=\"https://morpho.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morrisons-Corporate.com\" default_off=\"mismatched\" f=\"Morrisons-Corporate.com.xml\"><securecookie host=\"^www\\.morrisons-corporate\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?morrisons-corporate\\.com/\" to=\"https://www.morrisons-corporate.com/\"/></ruleset>", "<ruleset name=\"Morrisons\" default_off=\"failed ruleset test\" f=\"Morrisons.xml\"><securecookie host=\"^(?:\\.?groceries|\\.?your)?\\.morrisons\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?morrisons\\.co\\.uk/\" to=\"https://your.morrisons.com/\"/><rule from=\"^http://(admin|groceries|your)\\.morrisons\\.co(?:\\.uk|m)/\" to=\"https://$1.morrisons.com/\"/><rule from=\"^http://(www\\.)?morrisons\\.com/\" to=\"https://$1morrisons.com/\"/></ruleset>", "<ruleset name=\"Morrisons Cellar.com\" default_off=\"failed ruleset test\" f=\"Morrisons_Cellar.com.xml\"><securecookie host=\"^www\\.morrisonscellar\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?morrisonscellar\\.com/+(?:\\?(.+))?$\" to=\"https://$1morrisonscellar.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=10701&$2\"/><rule from=\"^http://(www\\.)?morrisonscellar\\.com/+(?:\\?)?$\" to=\"https://$1morrisonscellar.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=10701\"/><rule from=\"^http://(img\\.|www\\.)?morrisonscellar\\.com/\" to=\"https://$1morrisonscellar.com/\"/></ruleset>", "<ruleset name=\"Mosaic Science.com (partial)\" f=\"Mosaic_Science.com.xml\"><rule from=\"^http://(?:www\\.)?mosaicscience\\.com/(?=sites/)\" to=\"https://mosaicscience.com/\"/></ruleset>", "<ruleset name=\"Mosso.com (partial)\" f=\"Mosso.com.xml\"><exclusion pattern=\"^http://cdn\\.cloudfiles\\.mosso\\.com/(?!\\w+/)\"/><rule from=\"^http://cdn\\.cloudfiles\\.mosso\\.com/(\\w+)/\" to=\"https://$1.ssl.cf0.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Motesplatsen.se\" f=\"Motesplatsen.se.xml\"><rule from=\"^http://www\\.motesplatsen\\.se/\" to=\"https://www.motesplatsen.se/\"/></ruleset>", "<ruleset name=\"MotherJones.com (partial)\" f=\"MotherJones.com.xml\"><rule from=\"^http://(www\\.)?motherjones\\.com/(files|misc|sites|transition)/\" to=\"https://$1motherjones.com/$2/\"/><rule from=\"^http://(?:(assets)|mj(cdn))\\.motherjones\\.com/\" to=\"https://mj$1$2.s3.amazonaws.com/\"/><rule from=\"^http://oascentral\\.motherjones\\.com/\" to=\"https://oasc11a.247realmedia.com/\"/><rule from=\"^http://secure\\.motherjones\\.com/\" to=\"https://secure.motherjones.com/\"/></ruleset>", "<ruleset name=\"Motherboard.tv\" f=\"Motherboard.tv.xml\"><rule from=\"^http://(?:www\\.)?motherboard\\.tv/\" to=\"https://motherboard.vice.com/\"/><rule from=\"^http://assets\\.motherboard\\.tv/\" to=\"https://dz6snzmhpcl6f.cloudfront.net/\"/><rule from=\"^http://assets2\\.motherboard\\.tv/\" to=\"https://d7qfuicnb8zug.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Motherless media (partial)\" default_off=\"Certificate mismatch\" f=\"Motherless-media.xml\"><rule from=\"^http://(?:www\\.)?motherlessmedia\\.com/\" to=\"https://motherlessmedia.com/\"/><rule from=\"^http://(avatars|thumbs)\\.motherlessmedia\\.com/\" to=\"https://$1.motherlessmedia.com/\"/></ruleset>", "<ruleset name=\"Motherless (partial)\" f=\"Motherless.xml\"><rule from=\"^http://(?:www\\.)?motherless\\.com/(favicon\\.ico|images/|login|scripts/|styles/)\" to=\"https://motherless.com/$1\"/></ruleset>", "<ruleset name=\"Motherpipe.co.uk\" f=\"Motherpipe.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Motherpipe.com (partial)\" f=\"Motherpipe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Motigo (partial)\" default_off=\"expired\" f=\"Motigo.xml\"><rule from=\"^http://(?:www\\.)?motigo\\.com/(cs|image)s/\" to=\"https://motigo.com/$1s/\"/></ruleset>", "<ruleset name=\"The Motley Fool (partial)\" default_off=\"breaks images\" f=\"Motley-Fool.xml\"><exclusion pattern=\"^http://wiki\\.fool\\.com/+(?!wiki/(?:extension|skin)s/)\"/><securecookie host=\"\\.foolcdn\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^s\\.foolcdn\\.com$\" name=\".+\"/><rule from=\"^http://fool\\.com/\" to=\"https://www.fool.com/\"/><rule from=\"^http://www\\.fool\\.co(m|m\\.au|\\.uk)/(ads/|author/|Foolwatch/|help/|img/|Landing/|marketing/|PopUps/|press/|Scripts/|secure/|shop/|tracking/)\" to=\"https://www.fool.co$1/$2\"/><rule from=\"^http://boards\\.fool\\.com/(Css/|\\w+\\.aspx$)\" to=\"https://boards.fool.com/$1\"/><rule from=\"^http://caps\\.fool\\.com/(Blogs|Ticker/)\" to=\"https://caps.fool.com/$1\"/><rule from=\"^http://my\\.fool\\.com/\" to=\"https://my.fool.com/\"/><rule from=\"^http://[gs]\\.fool(?:cdn)?\\.co(m|m\\.au|\\.uk)/\" to=\"https://s.foolcdn.co$1/\"/><rule from=\"^http://wiki\\.fool\\.com/\" to=\"https://wiki.fool.com/\"/></ruleset>", "<ruleset name=\"Moto-G.com\" default_off=\"failed ruleset test\" f=\"Moto-G.com.xml\"><rule from=\"^http://(?:www\\.)?moto-g\\.com/\" to=\"https://www.moto-g.com/\"/></ruleset>", "<ruleset name=\"Motorola (partial)\" f=\"Motorola.xml\"><exclusion pattern=\"^http://(?:www\\.)?motorola\\.com/(?:Business|staticfiles)/\"/><securecookie host=\"^(?:globalrepairtools|mediacenter|membership)\\.motorola\\.com$\" name=\".+\"/><securecookie host=\"^mediacenter\\.motorolasolutions\\.com$\" name=\".+\"/><rule from=\"^http://motorolasolutions\\.com/\" to=\"https://www.motorolasolutions.com/\"/><rule from=\"^http://motorola\\.com/\" to=\"https://www.motorola.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^http://(?:www\\.)?motorolasolutions\\.com/web/\" to=\"https://www.motorolasolutions.com/web/\"/></ruleset>", "<ruleset name=\"Motorola Trade Up\" default_off=\"failed ruleset test\" f=\"Motorola_Trade_Up.xml\"><securecookie host=\"^\\.mototradeup\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mototradeup\\.com/\" to=\"https://www.mototradeup.com/\"/></ruleset>", "<ruleset name=\"Motricity (partial)\" default_off=\"failed ruleset test\" f=\"Motricity.xml\"><rule from=\"^http://(alltel\\.web|webshared)\\.mcore\\.com/\" to=\"https://$1.mcore.com/\"/></ruleset>", "<ruleset name=\"Mount Sinai.org\" f=\"Mount_Sinai.org.xml\"><securecookie host=\"^(?:(?:mychart|philanthropy|www)\\.)?mountsinai\\.org$\" name=\".+\"/><rule from=\"^http://((?:mychart|philanthropy|www)\\.)?mountsinai\\.org/\" to=\"https://$1mountsinai.org/\"/></ruleset>", "<ruleset name=\"MountainCode.eu\" f=\"MountainCode.eu.xml\"><securecookie host=\"^\\.mountaincode\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mountain Reservations (partial)\" default_off=\"mismatched\" f=\"Mountain_Reservations.xml\"><securecookie host=\"^www\\.mountainreservations\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mountainreservations\\.com/\" to=\"https://www.mountainreservations.com/\"/></ruleset>", "<ruleset name=\"Mountspace.com\" default_off=\"failed ruleset test\" f=\"Mountspace.com.xml\"><rule from=\"^http://(?:www\\.)?mountspace\\.com/\" to=\"https://www.mountspace.com/\"/></ruleset>", "<ruleset name=\"Mountyhall\" default_off=\"self-signed\" f=\"Mountyhall.com.xml\"><rule from=\"^http://games\\.mountyhall\\.com/\" to=\"https://games.mountyhall.com/\"/></ruleset>", "<ruleset name=\"Mouse Blocker.com\" f=\"Mouse_Blocker.com.xml\"><securecookie host=\"^(?:w*\\.)?mouseblocker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mouseflow\" f=\"Mouseflow.xml\"><rule from=\"^http://de\\.mouseflow\\.com/\" to=\"https://mouseflow.de/\"/><rule from=\"^http://nl\\.mouseflow\\.com/\" to=\"https://mouseflow.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mousematrix.com\" default_off=\"expired\" f=\"Mousematrix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mov.ad\" f=\"Mov.ad.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MovableType.org\" f=\"MovableType.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movable Ink.com (partial)\" f=\"Movable_Ink.com.xml\"><exclusion pattern=\"^http://info\\.movableink\\.com/+(?!$|\\?|css/)\"/><securecookie host=\"^movableink\\.com$\" name=\".+\"/><rule from=\"^http://info\\.movableink\\.com/(?=/*css/)\" to=\"https://go.pardot.com/\"/><rule from=\"^http://info\\.movableink\\.com/.*\" to=\"https://movableink.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movable Type.com\" f=\"Movable_Type.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoveOn.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MoveOn.org-falsemixed.xml\"><securecookie host=\"^petitions\\.moveon\\.org$\" name=\".+\"/><securecookie host=\"^\\.signon\\.org$\" name=\".+\"/><rule from=\"^http://petitions\\.moveon\\.org/\" to=\"https://petitions.moveon.org/\"/><rule from=\"^http://(www\\.)?signon\\.org/\" to=\"https://$1signon.org/\"/></ruleset>", "<ruleset name=\"MoveOn\" default_off=\"failed ruleset test\" f=\"MoveOn.xml\"><rule from=\"^http://(?:www\\.)?moveon\\.org/([a-z0-9]+)$\" to=\"https://www.moveon.org/$1/\"/><rule from=\"^http://(pol|civic|civ)\\.moveon\\.org/([a-z0-9]+)$\" to=\"https://$1.moveon.org/$2/\"/><rule from=\"^https?://civic\\.moveon\\.org/([a-z0-9]+){1}/{2,}\" to=\"https://civic.moveon.org/$1/\"/><rule from=\"^http://(?:www\\.)?moveon\\.org/r\\?\" to=\"https://www.moveon.org/r/?\"/><rule from=\"^http://(?:www\\.)?moveon\\.org/((?:[^a-z0-9]+)|(?:[a-z0-9]{2,}\\?)|(?:[a-qs-z0-9]\\?)|(?:[a-z0-9]+[^a-z0-9?]+)){1}\" to=\"https://www.moveon.org/$1\"/><rule from=\"^http://(pol|civ)\\.moveon\\.org/([^a-z0-9]+|(?:[a-z0-9]+[^a-z0-9]+)|$){1}\" to=\"https://$1.moveon.org/$2\"/><rule from=\"^http://civic\\.moveon\\.org/((?:[^a-z0-9]+)|(?:[a-z0-9]+[^a-z0-9/]+)|(?:[a-z0-9]+/(?:$|[^/]+))|$){1}\" to=\"https://civic.moveon.org/$1\"/><rule from=\"^https?://static\\.petitions\\.moveon\\.org/\" to=\"https://d83190g0d3lhr.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?moveonpac\\.org/\" to=\"https://www.moveonpac.org/\"/></ruleset>", "<ruleset name=\"Movelia.es\" f=\"Movelia.xml\"><rule from=\"^http://movelia\\.es/\" to=\"https://www.movelia.es/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moverall\" f=\"Moverall.com.xml\"><rule from=\"^http://(www\\.)?moverall\\.com/\" to=\"https://www.moverall.com/\"/><rule from=\"^http://az698912\\.vo\\.msecnd\\.net/\" to=\"https://az698912.vo.msecnd.net/\"/><rule from=\"^http://cdn\\.moverall\\.com/\" to=\"https://az698912.vo.msecnd.net/\"/></ruleset>", "<ruleset name=\"Movian.tv\" f=\"Movian.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movie2k.tv\" f=\"Movie2k.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movie4k.to\" f=\"Movie4k.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MovieMaps.org\" f=\"MovieMaps.org.xml\"><securecookie host=\"^moviemaps\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MovieTH.com\" f=\"MovieTH.com.xml\"><securecookie host=\"^\\.movieth\\.com$\" name=\".+\"/><rule from=\"^http://(sexy\\.|www2?\\.)?movieth\\.com/\" to=\"https://$1movieth.com/\"/></ruleset>", "<ruleset name=\"MovieTickets.com\" f=\"MovieTickets.com.xml\"><securecookie host=\"^(?:www\\.)?movietickets\\.com$\" name=\".+\"/><securecookie host=\"^\\.movietickets\\.com$\" name=\"^s_\\w\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moviease.com\" default_off=\"failed ruleset test\" f=\"Moviease.com.xml\"><securecookie host=\"^(?:w*\\.)?moviease\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moviefone.com\" default_off=\"redirects to http\" f=\"Moviefone.xml\"><exclusion pattern=\"^http://www\\.moviefone\\.com/(?:$|cache/)\"/><rule from=\"^http://(?:www\\.blogsmithmedia\\.com/)?(?:www\\.)?moviefone\\.com/\" to=\"https://www.moviefone.com/\"/></ruleset>", "<ruleset name=\"movienewsletters.net\" f=\"Movienewsletters.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movieposter.com\" f=\"Movieposter.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movim\" default_off=\"mismatched, self-signed\" f=\"Movim.xml\"><securecookie host=\"^wiki\\.movim\\.eu$\" name=\".+\"/><rule from=\"^http://(?:((?:blog|planet|pod|wiki)\\.)|www\\.)?movim\\.eu/\" to=\"https://$1movim.eu/\"/></ruleset>", "<ruleset name=\"Moxie Soft.com\" default_off=\"failed ruleset test\" f=\"Moxie_Soft.com.xml\"><securecookie host=\"^(?:www\\.)?(?:gomoxie|moxiesoft)\\.com$\" name=\".+\"/><securecookie host=\"^support\\.gomoxie\\.com$\" name=\"^$\"/><rule from=\"^http://(support\\.|www\\.)?gomoxie\\.com/\" to=\"https://$1gomoxie.com/\"/><rule from=\"^http://(www\\.)?moxiesoft\\.com/\" to=\"https://$1moxiesoft.com/\"/><rule from=\"^http://resources\\.moxiesoft\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjg.marketo.com/\"/></ruleset>", "<ruleset name=\"Mozdev (mismatches)\" default_off=\"mismatch\" f=\"Mozdev-mismatches.xml\"><exclusion pattern=\"^http://(?:bugzilla\\.|hg\\.|www\\.)?mozdev\\.org/\"/><securecookie host=\"^.*\\.mozdev\\.org$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.mozdev\\.org/\" to=\"https://$1.mozdev.org/\"/></ruleset>", "<ruleset name=\"Mozdev (expired cert)\" default_off=\"cert expired\" f=\"Mozdev.xml\"><securecookie host=\"^(?:.*\\.)?mozdev\\.org$\" name=\".*\"/><rule from=\"^http://(hg\\.|svn\\.|www\\.)?mozdev\\.org/\" to=\"https://$1mozdev.org/\"/><rule from=\"^http://bugzilla\\.mozdev\\.org/+\" to=\"https://www.mozdev.org/bugs/\"/></ruleset>", "<ruleset name=\"Mozdev Group.com (partial)\" f=\"Mozdev_Group.com.xml\"><securecookie host=\"^(?:air|emory|fresenius|ipcache|measurement|okcd|vantage)\\.mozdevgroup\\.com$\" name=\".+\"/><rule from=\"^http://((?:air|emory|fresenius|ipcache|measurement|okcd|vantage|www)\\.)?mozdevgroup\\.com/\" to=\"https://$1mozdevgroup.com/\"/></ruleset>", "<ruleset name=\"Mozest\" default_off=\"expired\" f=\"Mozest.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla-Community.org\" f=\"Mozilla-Community.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla-Russia.org (partial)\" f=\"Mozilla-Russia.org.xml\"><securecookie host=\"^(?:bugzilla|forum)\\.mozilla-russia\\.org$\" name=\".+\"/><rule from=\"^http://(?:(bugzilla\\.|forum\\.)|www\\.)?mozilla-russia\\.org/\" to=\"https://$1mozilla-russia.org/\"/></ruleset>", "<ruleset name=\"Mozilla (self-signed)\" default_off=\"mismatched\" f=\"Mozilla-self-signed.xml\"><rule from=\"^http://krakenbenchmark\\.mozilla\\.org/\" to=\"https://krakenbenchmark.mozilla.org/\"/></ruleset>", "<ruleset name=\"Mozilla.com.tw (partial)\" f=\"Mozilla.com.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.com (partial)\" f=\"Mozilla.com.xml\"><exclusion pattern=\"^http://(?:www\\.authstage|fxfeeds|identity|.+\\.malware-error|www-trunk\\.stage)\\.mozilla\\.com/\"/><exclusion pattern=\"^http://(?:[\\w.-]+\\.)?phish-report\\.mozilla\\.com/\"/><securecookie host=\".*\\.mozilla\\.com$\" name=\".+\"/><rule from=\"^http://labs\\.mozilla\\.com/+\" to=\"https://mozillalabs.com/\"/><rule from=\"^http://status\\.mozilla\\.com/+\" to=\"https://status.mozilla.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.jp (partial)\" f=\"Mozilla.jp.xml\"><securecookie host=\"^(?:addons|secure)\\.mozilla\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.net (partial)\" f=\"Mozilla.net.xml\"><exclusion pattern=\"^http://(?:cdn|getpersonas-cdn|hardhat)\\.mozilla\\.net/\"/><rule from=\"^http://download\\.cdn\\.mozilla\\.net/\" to=\"https://ftp.mozilla.org/\"/><rule from=\"^http://www\\.mozilla\\.net/\" to=\"https://www.mozilla.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.org\" f=\"Mozilla.xml\"><exclusion pattern=\"^http://(?:europe|bonsai|browserquest|trychooser\\.pub\\.build|(?!image)\\w+\\.e|graphs|krakenbenchmark|mig|releases|sfx-images|alerts\\.telemetry|w(?:ebsite|ww)-archive)\\.mozilla\\.org/\"/><securecookie host=\".*\\.mozilla\\.org$\" name=\".+\"/><rule from=\"^http://affiliates-cdn\\.mozilla\\.org/\" to=\"https://affiliates.mozilla.org/\"/><rule from=\"^http://labs\\.mozilla\\.org/+\" to=\"https://mozillalabs.com/\"/><rule from=\"^http://talkback-public\\.mozilla\\.org/\" to=\"https://crash-stats.mozilla.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla Demos.org\" f=\"Mozilla_Demos.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla Ignite.org (partial)\" default_off=\"failed ruleset test\" f=\"Mozilla_Ignite.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla Labs.com (partial)\" f=\"Mozilla_Labs.com.xml\"><exclusion pattern=\"^http://(?:bespin|bespinplugins|jetpackgallery)\\.mozillalabs\\.com/\"/><securecookie host=\"^mozillalabs\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?mozillalabs\\.com/\" to=\"https://$1mozillalabs.com/\"/></ruleset>", "<ruleset name=\"Mozilla Messaging.com (partial)\" f=\"Mozilla_Messaging.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Persona.org\" f=\"Mozilla_Persona.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmaker.org\" f=\"Mozilla_Webmaker.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozillians.org\" f=\"Mozillians.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozo.com.au (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mozo.com.au-falsemixed.xml\"><rule from=\"^http://(www\\.mozo\\.co|(?:www\\.)?mozo\\.com\\.au)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"Mozo.com.au (partial)\" f=\"Mozo.com.au.xml\"><rule from=\"^http://(www\\.mozo\\.co|(?:www\\.)?mozo\\.com\\.au)/(?=favicon\\.ico|images/|mozo_favicon\\.ico)\" to=\"https://$1/\"/><rule from=\"^http://mozo4-assets\\.mozo\\.co/\" to=\"https://d2z6hwhdmvwrl2.cloudfront.net/\"/><rule from=\"^http://news-assets\\.mozo\\.com\\.au/\" to=\"https://d3ce7u6cfep64i.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mozy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mozy.xml\"><securecookie host=\"^(?:.+\\.)?mozy\\.com$\" name=\".*\"/><securecookie host=\"^(?:.+\\.)?mozy\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mozy\\.com/\" to=\"https://mozy.com/\"/><rule from=\"^http://(?:www\\.)?mozy\\.co\\.uk/\" to=\"https://mozy.co.uk/\"/></ruleset>", "<ruleset name=\"Mp3-Juices.com\" f=\"Mp3-Juices.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.mp3-juices\\.com/\" to=\"https://mp3-juices.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mpagano.com\" default_off=\"mismatched, self-signed\" f=\"Mpagano.com.xml\"><rule from=\"^http://(?:www\\.)?mpagano\\.com/\" to=\"https://www.mpagano.com/\"/></ruleset>", "<ruleset name=\"mpornpass.com (partial)\" default_off=\"expired\" f=\"Mpornpass.com.xml\"><securecookie host=\"\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mpv.io\" f=\"Mpv.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mpx\" platform=\"mixedcontent\" f=\"Mpx.xml\"><rule from=\"^http://(?:www\\.)?mpx\\.no/\" to=\"https://www.mpx.no/\"/></ruleset>", "<ruleset name=\"Mr File.me\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Mr_File.me.xml\"><securecookie host=\"^\\.mrfile\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mr cote.info\" f=\"Mr_cote.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mradx.net\" f=\"Mradx.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mrs. McNasty's\" default_off=\"failed ruleset test\" f=\"Mrs_McNastys.xml\"><securecookie host=\"^(?:.*\\.)?mrsmcnastys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"msecnd.net (partial)\" f=\"Msecnd.net.xml\"><exclusion pattern=\"^http://(?:az(?!83882\\.|94986\\.|623152\\.)\\d+|msnchansea|msrvideo)\\.vo\\.msecnd\\.net/\"/><rule from=\"^http://(\\w+)\\.vo\\.msecnd\\.net/\" to=\"https://$1.vo.msecnd.net/\"/></ruleset>", "<ruleset name=\"Mstar.com (partial)\" default_off=\"failed ruleset test\" f=\"Mstar.com.xml\"><rule from=\"^http://euim\\.mstar\\.com/\" to=\"https://euim.mstar.com/\"/></ruleset>", "<ruleset name=\"Mt.Gox\" f=\"MtGox.xml\"><securecookie host=\"^(?:.*\\.)?mtgox\\.com$\" name=\".+\"/><rule from=\"^http://((?:bitcoind|data|m|support|www|yubikey)\\.)?mtgox\\.com/\" to=\"https://$1mtgox.com/\"/></ruleset>", "<ruleset name=\"mtSystems.ch\" f=\"MtSystems.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtekk.us\" f=\"Mtekk.us.xml\"><securecookie host=\"^(?:www\\.)?mtekk\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mthode.org\" f=\"Mthode.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtstatic.com\" f=\"Mtstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muckrock\" f=\"Muckrock.xml\"><securecookie host=\"^www\\.muckrock\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mudgum.net\" f=\"Mudgum.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muenchen.de\" f=\"Muenchen.de.xml\"><rule from=\"^http://www\\.muenchen\\.de/\" to=\"https://www.muenchen.de/\"/></ruleset>", "<ruleset name=\"Muenchen.tv\" f=\"Muenchen.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mufin.com\" f=\"Mufin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MugenMonkey.com\" default_off=\"failed ruleset test\" f=\"MugenMonkey.com.xml\"><securecookie host=\"^\\.?mugenmonkey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MujBiz.cz\" default_off=\"mismatched\" f=\"MujBiz.cz.xml\"><securecookie host=\"^www\\.mujbiz\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mujbiz\\.cz/\" to=\"https://www.mujbiz.cz/\"/></ruleset>", "<ruleset name=\"MuleSoft.com (partial)\" f=\"MuleSoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mullberry\" default_off=\"expired, mismatch, self-signed\" f=\"Mullberry.xml\"><securecookie host=\"^trac\\.mulberrymail\\.com$\" name=\".*\"/><rule from=\"^http://(?:(trac\\.)|www\\.)?mulberrymail\\.com/\" to=\"https://$1mulberrymail.com/\"/></ruleset>", "<ruleset name=\"Mullet.se\" f=\"Mullet.se.xml\"><rule from=\"^http://www\\.mullet\\.se/\" to=\"https://www.mullet.se/\"/><rule from=\"^http://mullet\\.se/\" to=\"https://mullet.se/\"/></ruleset>", "<ruleset name=\"Mullvad.net\" f=\"Mullvad.net.xml\"><securecookie host=\"^(?:www\\.)?mullvad\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MultiBit.org (partial)\" f=\"MultiBit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MultiSeek.net\" f=\"MultiSeek.xml\"><rule from=\"^http://www\\.multiseek\\.net/\" to=\"https://multiseek.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MultiSoft (partial)\" f=\"MultiSoft.xml\"><rule from=\"^http://(www\\.)?multisoft\\.com/([aA]pp_[tT]hemes/|jssrc/|moduleskins/|[mM]ulti[sS]oft[cC]orporation/|[rR]ad[sS]kins/|[sS]kinning/|[wW]eb[rR]esource\\.axd)\" to=\"https://$1multisoft.com/$2\"/></ruleset>", "<ruleset name=\"MultiVPN.biz (partial)\" f=\"MultiVPN.xml\"><securecookie host=\"^cabinet\\.multi-vpn\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Multicast Media\" default_off=\"failed ruleset test\" f=\"Multicast_Media.xml\"><securecookie host=\"^vidego\\.multicastmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?multicastmedia\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.kitd.com/multicast/$1\"/><rule from=\"^http://(static\\.|vidego\\.)?multicastmedia\\.com/\" to=\"https://$1multicastmedia.com/\"/></ruleset>", "<ruleset name=\"Multicore-DevCon.com\" default_off=\"failed ruleset test\" f=\"Multicore-DevCon.com.xml\"><securecookie host=\"^(?:www\\.)?multicore-devcon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Multiply (partial)\" f=\"Multiply.xml\"><securecookie host=\"^\\.multiply\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mumble.info\" f=\"Mumble.info.xml\"><securecookie host=\"^(www\\.|wiki\\.|forums\\.)?mumble\\.info\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mumzworld.com\" default_off=\"failed ruleset test\" f=\"Mumzworld.com.xml\"><securecookie host=\"^\\.mumzworld\\.com$\" name=\".+\"/><rule from=\"^http://(?:media\\.|(www\\.))?mumzworld\\.com/\" to=\"https://$1mumzworld.com/\"/></ruleset>", "<ruleset name=\"Muni.cz (partial)\" f=\"Muni.cz.xml\"><exclusion pattern=\"^http://isc\\.muni\\.cz/+(?!\\w+\\.css|favicon\\.(?:ico|png)|images/)\"/><exclusion pattern=\"^http://(?:www\\.)?kite\\.muni\\.cz/+(?!css/|favicon\\.ico|img/|online-application/public/login(?:$|[?/]))\"/><securecookie host=\"^(?:czs|(?:www\\.)?em2il|inet\\.dis\\.ics|inet|is|isois\\.ois|www\\.online|intranet\\.skm|www)\\.muni\\.cz$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?em2il|ezdroje|fadmin\\.fi|(?:(?:dior|inet\\.dis|idp2|marach|webserver|www)\\.)?ics|inet|isc?|(?:www\\.)?kite|knihovna|knihovna-tst|library|mailman|isois\\.ois|intranet\\.skm|www)\\.)?muni\\.cz/\" to=\"https://$1muni.cz/\"/><rule from=\"^http://(?:www\\.)?(cz|oi)s\\.muni\\.cz/\" to=\"https://$1s.muni.cz/\"/><rule from=\"^http://discovery\\.muni\\.cz/+([^?]).*\" to=\"https://search.ebscohost.com/login.aspx?authtype=cookie,ip,guest&profile=eds&groupid=infolib&custid=s8431878$1\"/><rule from=\"^http://(?:www\\.)?(fi|online|skm)\\.muni\\.cz/\" to=\"https://www.$1.muni.cz/\"/><rule from=\"^http://scb\\.ics\\.muni\\.cz/[^?]*\" to=\"https://www.cerit.cz/cs/cerit-sc/\"/><rule from=\"^http://(?:www\\.)?info\\.muni\\.cz/+\" to=\"https://www.online.muni.cz/\"/></ruleset>", "<ruleset name=\"Municode.com\" f=\"Municode.com.xml\"><securecookie host=\"^\\.?www\\.municode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Munzinger.de\" f=\"Munzinger.de.xml\"><securecookie host=\"^www\\.munzinger\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?munzinger\\.de/\" to=\"https://www.munzinger.de/\"/></ruleset>", "<ruleset name=\"Musalbas.com\" f=\"Musalbas.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.musalbas\\.com/\" to=\"https://musalbas.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muscle and Strength.com\" f=\"Muscle_and_Strength.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muse.mu (partial)\" f=\"Muse.mu.xml\"><exclusion pattern=\"^http://(?:www\\.)?muse\\.mu/+(?!(?:_handlers|_iiwm|_popup|_static|_widgets|ugc_1)/|(?:Script|Web)Resource\\.axd(?:$|\\?))\"/><rule from=\"^http://(?:www\\.)?muse\\.mu/\" to=\"https://muse-cdn.warnerartists.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muselive.com (partial)\" f=\"Muselive.com.xml\"><securecookie host=\"^community\\.muselive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuseoDelPrado.es\" f=\"Museodelprado.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Museter.com (self-signed)\" default_off=\"self-signed\" f=\"Museter.com-problematic.xml\"><rule from=\"^http://streams\\.museter\\.com:2199/\" to=\"https://streams.museter.com:2199/\"/></ruleset>", "<ruleset name=\"Museter.com (partial)\" f=\"Museter.com.xml\"><securecookie host=\"^client\\.museter\\.com$\" name=\".+\"/><rule from=\"^http://client\\.museter\\.com/\" to=\"https://client.museter.com/\"/></ruleset>", "<ruleset name=\"Museum of Science (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Museum_of_Science-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?mos\\.org/sites/dev-elvis\\.mos\\.org/themes/.*\\.(?:jp|pn)g$\"/><rule from=\"^http://(?:www\\.)?mos\\.org/\" to=\"https://mos.org/\"/></ruleset>", "<ruleset name=\"Museum of Science (partial)\" f=\"Museum_of_Science.xml\"><exclusion pattern=\"http://legacy\\.mos\\.org/(?!media/)\"/><securecookie host=\"^\\.mos\\.org$\" name=\"^MOS_store$\"/><rule from=\"^http://(?:www\\.)?mos\\.org/sites/dev-elvis\\.mos\\.org/themes/(.*)\\.(jp|pn)g$\" to=\"https://store.mos.org/common/themes/$1.$2g\"/><rule from=\"^http://(legacy|store)\\.mos\\.org/\" to=\"https://$1.mos.org/\"/></ruleset>", "<ruleset name=\"Music Week\" f=\"Music-Week.xml\"><securecookie host=\"^www\\.musicweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?musicweek\\.com/\" to=\"https://www.musicweek.com/\"/></ruleset>", "<ruleset name=\"MusicBrainz.org (partial)\" f=\"MusicBrainz.xml\"><securecookie host=\"^(?:.*\\.)?musicbrainz\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musician's Friend (partial)\" f=\"Musicians_Friend.xml\"><securecookie host=\"^origin-static\\.musiciansfriend\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?musiciansfriend\\.com/(checkout|mediaCenter/feeds/)\" to=\"https://www.musiciansfriend.com/$1\"/><rule from=\"^http://(origin-)?static\\.musiciansfriend\\.com/\" to=\"https://$1static.musiciansfriend.com/\"/></ruleset>", "<ruleset name=\"Musicmetric.com (partial)\" f=\"Musicmetric.xml\"><securecookie host=\".+\\.musicmetric\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musicnotes.com (partial)\" f=\"Musicnotes.xml\"><securecookie host=\"^(?:origin-www|stage|www)?\\.musicnotes\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?musicnotes\\.com/\" to=\"https://www.musicnotes.com/\"/><rule from=\"^http://(help|origin-www|sheetmusic|stage|tx)\\.musicnotes\\.com/\" to=\"https://$1.musicnotes.com/\"/></ruleset>", "<ruleset name=\"Musikerforbundet.se\" platform=\"mixedcontent\" f=\"Musikerforbundet.se.xml\"><rule from=\"^http://musikerforbundet\\.se/\" to=\"https://www.musikerforbundet.se/\"/><rule from=\"^http://www\\.musikerforbundet\\.se/\" to=\"https://www.musikerforbundet.se/\"/></ruleset>", "<ruleset name=\"Musikskole-tilmelding.dk\" f=\"Musikskole-tilmelding.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musixmatch.com\" f=\"Musixmatch.com.xml\"><securecookie host=\".*\\.musixmatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"musl-libc.org (partial)\" default_off=\"self-signed\" f=\"Musl-libc.org.xml\"><securecookie host=\"^wiki\\.musl-libc\\.org$\" name=\".+\"/><rule from=\"^http://wiki\\.musl-libc\\.org/\" to=\"https://wiki.musl-libc.org/\"/></ruleset>", "<ruleset name=\"Musopen (partial)\" f=\"Musopen.xml\"><securecookie host=\"^musopen\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?musopen\\.org/\" to=\"https://musopen.org/\"/></ruleset>", "<ruleset name=\"muspy\" f=\"Muspy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mutantbrains.com (partial)\" default_off=\"self-signed\" f=\"Mutantbrains.com.xml\"><rule from=\"^http://piwik\\.mutantbrains\\.com/\" to=\"https://piwik.mutantbrains.com/\"/></ruleset>", "<ruleset name=\"Mutelight.org\" f=\"Mutelight.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mutt (partial)\" default_off=\"self-signed\" f=\"Mutt.xml\"><securecookie host=\"^dev\\.mutt\\.org$\" name=\".*\"/><rule from=\"^http://bugs\\.mutt\\.org/\" to=\"https://dev.mutt.org/trac/\"/><rule from=\"^http://dev\\.mutt\\.org/\" to=\"https://dev.mutt.org/\"/></ruleset>", "<ruleset name=\"Mutterschaftsgeld.de\" f=\"Mutterschaftsgeld.de.xml\"><rule from=\"^https?://(?:www\\.)?mutterschaftsgeld\\.de/\" to=\"https://www.mutterschaftsgeld.de/\"/></ruleset>", "<ruleset name=\"Muttscomics.com\" default_off=\"failed ruleset test\" f=\"Muttscomics.com.xml\"><securecookie host=\"^\\.muttscomics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MutualArt.com\" default_off=\"failed ruleset test\" f=\"MutualArt.com.xml\"><securecookie host=\"^www\\.mutualart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mutualart\\.com/\" to=\"https://www.mutualart.com/\"/></ruleset>", "<ruleset name=\"Mutual of America.com\" f=\"Mutual_of_America.xml\"><securecookie host=\".+\\.mutualofamerica\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muusikoiden.net\" f=\"Muusikoiden.net.xml\"><securecookie host=\"^muusikoiden\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muut.com\" f=\"Muut.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mwave Australia (partial)\" f=\"Mwave.xml\"><rule from=\"^http://(?:www\\.)?mwave\\.com\\.au/((?:businesscorp|checkout|help|myaccount|privacy-policy|terms-and-conditions)(?:$|\\?|/)|catalog/emailsubscribe|[cC]ontent/|favicon\\.ico|images/|[sS]ecure/)\" to=\"https://www.mwave.com.au/$1\"/></ruleset>", "<ruleset name=\"mwellner.de (false MCB)\" platform=\"mixedcontent\" f=\"Mwellner.de.xml\"><securecookie host=\"^(?:www\\.)?mwellner\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mwop.net\" f=\"Mwop.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MxmCDN.net\" f=\"MxmCDN.net.xml\"><securecookie host=\"^\\.mxmcdn\\.net$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mxpnl.com\" f=\"Mxpnl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mxptint.net\" f=\"Mxptint.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My-files.de\" default_off=\"failed ruleset test\" f=\"My-Files.xml\"><rule from=\"^http://w01\\.my-files\\.de/\" to=\"https://w01.my-files.de/\"/></ruleset>", "<ruleset name=\"My.com (partial)\" f=\"My.com.xml\"><securecookie host=\"^(.*\\.)?my\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyBB Central\" f=\"MyBB_Central.xml\"><securecookie host=\"^\\.mybbcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyBenefits CalWIN\" default_off=\"failed ruleset test\" f=\"MyBenefits-CalWIN.xml\"><securecookie host=\"^www\\.mybenefitscalwin\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mybenefitscalwin\\.(?:com|net|org)/\" to=\"https://www.mybenefitscalwin.org/\"/></ruleset>", "<ruleset name=\"MyBetter.com\" default_off=\"failed ruleset test\" f=\"MyBetter.com.xml\"><securecookie host=\"^server2\\.mybetter\\.com$\" name=\".+\"/><rule from=\"^http://(server2\\.|www\\.)?mybetter\\.com/\" to=\"https://$1mybetter.com/\"/><rule from=\"^http://server2\\.mybetter\\.com:2222/\" to=\"https://server2.mybetter.com:2222/\"/></ruleset>", "<ruleset name=\"MyBuys (partial)\" f=\"MyBuys.xml\"><securecookie host=\".*\\.mybuys\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:bi5|portal|t|w)\\.p|www)\\.)?mybuys\\.com/\" to=\"https://$1mybuys.com/\"/><rule from=\"^http://www2\\.mybuys\\.com/(?=css/|js/|images/|rs/)\" to=\"https://na-sjh.marketo.com/\"/></ruleset>", "<ruleset name=\"MyCalendar\" f=\"MyCalendar.xml\"><rule from=\"^http://(?:www\\.)?mycalendarbook\\.com/\" to=\"https://mycalendarbook.com/\"/></ruleset>", "<ruleset name=\"MyCanvas.com (false MCB)\" platform=\"mixedcontent\" f=\"MyCanvas.com-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?mycanvas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mycanvas\\.com/\" to=\"https://secure.mycanvas.com/\"/></ruleset>", "<ruleset name=\"MyCanvas.com (partial)\" f=\"MyCanvas.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mycanvas\\.com/+(?!App_Themes/|favicon\\.ico)\"/><rule from=\"^http://(?:secure\\.|www\\.)?mycanvas\\.com/\" to=\"https://secure.mycanvas.com/\"/></ruleset>", "<ruleset name=\"MyCharity.ie\" f=\"MyCharity.ie.xml\"><rule from=\"^http://(?:www\\.)?mycharity\\.ie/\" to=\"https://www.mycharity.ie/\"/></ruleset>", "<ruleset name=\"MyChart\" platform=\"mixedcontent\" f=\"MyChart.xml\"><securecookie host=\"^(?:.*\\.)?viewmychart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?viewmychart\\.com/\" to=\"https://www.viewmychart.com/\"/></ruleset>", "<ruleset name=\"MyCommerce.com\" f=\"MyCommerce.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyComputer.com\" f=\"MyComputer.com.xml\"><rule from=\"^http://(?:www\\.)?mycomputer\\.com/\" to=\"https://www.mycomputer.com/\"/><rule from=\"^http://watchdog\\.mycomputer\\.com/\" to=\"https://watchdog.mycomputer.com/\"/></ruleset>", "<ruleset name=\"MyEdAccount.Com\" default_off=\"failed ruleset test\" f=\"MyEdAccount.Com.xml\"><securecookie host=\"(?:^|\\.)myedaccount\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)myedaccount\\.com/\" to=\"https://www.myedaccount.com/\"/></ruleset>", "<ruleset name=\"MyFBO\" f=\"MyFBO.com.xml\"><securecookie host=\"^(?:.*\\.)?myfbo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFitnessPal\" default_off=\"failed ruleset test\" f=\"MyFitnessPal.xml\"><securecookie host=\"^www\\.myfitnesspal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFonts.com (partial)\" f=\"MyFonts.com.xml\"><securecookie host=\"^www\\.myfonts\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.myfonts\\.com/\" to=\"https://cdn.myfonts.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFonts.net\" f=\"MyFonts.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFreeCopyright.com (problematic)\" default_off=\"expired\" f=\"MyFreeCopyright.com-problematic.xml\"><securecookie host=\"^myfreecopyright\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myfreecopyright\\.com/\" to=\"https://myfreecopyright.com/\"/></ruleset>", "<ruleset name=\"MyFreeCopyright.com (partial)\" f=\"MyFreeCopyright.com.xml\"><rule from=\"^http://storage\\.myfreecopyright\\.com/\" to=\"https://myfreecopyright.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"MyGNU.de\" default_off=\"expired\" f=\"MyGNU.de.xml\"><securecookie host=\"^www\\.mygnu\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyGurlFund\" f=\"MyGirlFund.xml\"><securecookie host=\"^\\.mygirlfund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyInteriorDecorator.com\" default_off=\"failed ruleset test\" f=\"MyInteriorDecorator.com.xml\"><securecookie host=\"^(?:w*\\.)?myinteriordecorator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyKolab.com\" f=\"MyKolab.com.xml\"><securecookie host=\"^(?:cockpit)?\\.mykolab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyLeague\" f=\"MyLeague.xml\"><securecookie host=\"^\\.myleague\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myleague\\.com/\" to=\"https://www.myleague.com/\"/></ruleset>", "<ruleset name=\"myLifetime.com (partial)\" f=\"MyLifetime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyLikes\" default_off=\"failed ruleset test\" f=\"MyLikes.xml\"><securecookie host=\"^\\.longurl\\.it$\" name=\".+\"/><securecookie host=\"^(?:ads\\.|www\\.)?mylikes\\.com$\" name=\".+\"/><rule from=\"^http://(clnk\\.me|longurl\\.it)/\" to=\"https://$1/\"/><rule from=\"^http://mlv-cdn\\.com/\" to=\"https://mylikes.com/\"/><rule from=\"^http://w\\.mlv-cdn\\.com/\" to=\"https://d1t8hc7w4sf1nn.cloudfront.net/\"/><rule from=\"^http://(ads\\.|www\\.)?mylikes\\.com/\" to=\"https://$1mylikes.com/\"/></ruleset>", "<ruleset name=\"myLoc.de\" f=\"MyLoc.de.xml\"><securecookie host=\"^www\\.myloc\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyMoustache.net\" f=\"MyMoustache.net.xml\"><securecookie host=\"^.*\\.mymoustache\\.net$\" name=\".+\"/><rule from=\"^http://mymoustache\\.net/\" to=\"https://www.mymoustache.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myNXT.info\" f=\"MyNXT.info.xml\"><securecookie host=\"^(?:\\.|www\\.)?mynxt\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyOpenID (buggy)\" default_off=\"https://www.eff.org/r.1apH\" f=\"MyOpenID.xml\"><exclusion pattern=\"http://www\\.myopenid\\.com/server\"/><rule from=\"^http://(?:www\\.)?myopenid\\.com/\" to=\"https://myopenid.com/\"/></ruleset>", "<ruleset name=\"myPass.de (partial)\" f=\"MyPass.de.xml\"><exclusion pattern=\"^http://secure\\.mypass\\.de/$\"/><securecookie host=\"^secure\\.mypass\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyPlayDirect\" f=\"MyPlayDirect.xml\"><securecookie host=\"^(?:.+\\.)?myplaydirect\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?myplaydirect\\.com/\" to=\"https://www.myplaydirect.com/\"/></ruleset>", "<ruleset name=\"MyPoints\" f=\"MyPoints.xml\"><rule from=\"^http://(?:www\\.)?mypoints\\.com/\" to=\"https://www.mypoints.com/\"/></ruleset>", "<ruleset name=\"myPortal.im\" default_off=\"failed ruleset test\" f=\"MyPortal.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyPreferences.com (partial)\" f=\"MyPreferences.com.xml\"><securecookie host=\"^pc2\\.mypreferences\\.com$\" name=\".+\"/><rule from=\"^http://pc2\\.mypreferences\\.com/\" to=\"https://pc2.mypreferences.com/\"/></ruleset>", "<ruleset name=\"myRA.gov\" f=\"MyRA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myResumeAgent.com (partial)\" f=\"MyResumeAgent.com.xml\"><securecookie host=\"^(?:www)?\\.myresumeagent\\.com$\" name=\".*\"/><rule from=\"^http://myresumeagent\\.com/\" to=\"https://www.myresumeagent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MySQL\" f=\"MySQL.xml\"><exclusion pattern=\"^http://downloads\\.mysql\\.com/[^\\n]\"/><securecookie host=\"^\\.mysql\\.\\w{2,3}$\" name=\"^MySQL_S$\"/><rule from=\"^http://downloads\\.mysql\\.com/$\" to=\"https://dev.mysql.com/downloads/\"/><rule from=\"^http://forge\\.mysql\\.com/\" to=\"https://www.mysql.com/\"/><rule from=\"^http://wb\\.mysql\\.com/\" to=\"https://www.mysql.com/products/workbench/\"/><rule from=\"^http://mysql\\.(\\w\\w)/\" to=\"https://www.mysql.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyScienceWork.com\" f=\"MyScienceWork.com.xml\"><securecookie host=\"^(?:www\\.)?\\.mysciencework\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyScore180.com\" default_off=\"failed ruleset test\" f=\"MyScore180.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?myscore180\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mySecureConnect\" f=\"MySecureConnect.com.xml\"><securecookie host=\"^(?:order\\.|www\\.)?mysecureconnect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mySkreen.com (partial)\" f=\"MySkreen.com.xml\"><rule from=\"^http://medias\\.myskreen\\.com/\" to=\"https://medias.myskreen.com/\"/></ruleset>", "<ruleset name=\"mySociety.co.uk\" f=\"MySociety.co.uk.xml\"><securecookie host=\"^(?:www\\.)?mysociety\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mySociety.org\" f=\"MySociety.org.xml\"><securecookie host=\"^www\\.mysociety\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myStockOptions.com\" default_off=\"failed ruleset test\" f=\"MyStockOptions.com.xml\"><securecookie host=\"^(?:www)?\\.mystockoptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mystockoptions\\.com/\" to=\"https://www.mystockoptions.com/\"/></ruleset>", "<ruleset name=\"mySweetIQ.com\" default_off=\"failed ruleset test\" f=\"MySweetIQ.com.xml\"><securecookie host=\"^mysweetiq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyTUM.de\" f=\"MyTUM.de.xml\"><securecookie host=\"portal.mytum\\.de$\" name=\".*\"/><rule from=\"^http://portal\\.mytum\\.de/\" to=\"https://portal.mytum.de/\"/></ruleset>", "<ruleset name=\"myTemp.email (partial)\" f=\"MyTemp.email.xml\"><securecookie host=\"^\\.?mytemp\\.email$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyTextGraphics.com (partial)\" f=\"MyTextGraphics.com.xml\"><rule from=\"^http://img(?:\\d|10)\\.mytextgraphics\\.com/\" to=\"https://d7gjtd9kdx0w5.cloudfront.net/\"/><rule from=\"^http://img(?:1[1-9]|20)\\.mytextgraphics\\.com/\" to=\"https://d1qy5u3l21z5db.cloudfront.net/\"/><rule from=\"^http://img(?:2[1-9]|30)\\.mytextgraphics\\.com/\" to=\"https://d2y5xryjzuetvr.cloudfront.net/\"/><rule from=\"^http://img702\\.mytextgraphics\\.com/\" to=\"https://d2cmody3lz4pfa.cloudfront.net/\"/><rule from=\"^http://img-s3-01\\.mytextgraphics\\.com/\" to=\"https://dn7bb6u52b8om.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MyTime.com\" f=\"MyTime.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyUHC\" f=\"MyUHC.xml\"><rule from=\"^http://(?:www\\.)?myuhc\\.com/\" to=\"https://www.myuhc.com/\"/></ruleset>", "<ruleset name=\"MyUS.com (partial)\" f=\"MyUS.com.xml\"><rule from=\"^http://(account)?myus\\.com/\" to=\"https://$1myus.com/\"/><rule from=\"^http://www\\.myus\\.com/([aA]pp_[tT]hemes/|CMSPages/|en/(?:blog|customer-reviews|global-commerce|home|my-account|news-press|our-services|our-story|personal-shopper|price-register|register|ship-globally|shop-smarter|top-usa-stores|whichmembership|why-myus)/|favicon\\.ico|MyUs/)\" to=\"https://www.myus.com/$1\"/><rule from=\"^http://www\\.myus\\.com/en/login$\" to=\"https://www.myus.com/en/login/\"/></ruleset>", "<ruleset name=\"myVPS.jp\" f=\"MyVPS.jp.xml\"><securecookie host=\"^cp(?:-hv)?\\.myvps\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyVarian.com\" f=\"MyVarian.com.xml\"><securecookie host=\"^\\.myvarian\\.com$\" name=\".+\"/><rule from=\"^http://myvarian\\.com/\" to=\"https://www.myvarian.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyWOT (problematic)\" default_off=\"breaks MyWOT extension\" f=\"MyWOT-problematic.xml\"><rule from=\"^http://api\\.mywot\\.com/\" to=\"https://api.mywot.com/\"/></ruleset>", "<ruleset name=\"MyWOT (partial)\" f=\"MyWOT.xml\"><securecookie host=\"^(?:search\\.|www\\.)?mywot\\.com\" name=\".*\"/><securecookie host=\"^\\.mywot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyWell-Being.com\" default_off=\"failed ruleset test\" f=\"MyWell-Being.com.xml\"><rule from=\"^http://(?:www\\.)?mywell-being\\.com/\" to=\"https://www.mywell-being.com/\"/></ruleset>", "<ruleset name=\"My Aloe Cleanse.com\" default_off=\"failed ruleset test\" f=\"My_Aloe_Cleanse.com.xml\"><securecookie host=\"^\\.(?:myaloe|trypto)cleanse\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(myaloe|trypto)cleanse\\.com/\" to=\"https://$1$2cleanse.com/\"/></ruleset>", "<ruleset name=\"my Bluemix.net\" f=\"My_Bluemix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Care In Birmingham.org.uk\" f=\"My_Care_In_Birmingham.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Datapipe.com\" f=\"My_Datapipe.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Datapipe.net\" f=\"My_Datapipe.net.xml\"><rule from=\"^http://(?:www\\.)?mydatapipe\\.net/\" to=\"https://www.mydatapipe.com/\"/></ruleset>", "<ruleset name=\"My Healthcare Contacts\" f=\"My_Healthcare_Contacts.xml\"><securecookie host=\"^kontakt\\.minavardkontakter\\.se$\" name=\".+\"/><rule from=\"^http://(?:kontakt\\.|www\\.)?minavardkontakter\\.se/\" to=\"https://minavardkontakter.se/\"/></ruleset>", "<ruleset name=\"My IP.ms\" f=\"My_IP.ms.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my IT Works Events.com\" default_off=\"mismatched\" f=\"My_IT_Works_Events.com.xml\"><securecookie host=\"^(?:w*\\.)?myitworksevents\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My IU.org\" f=\"My_IU.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my InMon.com\" f=\"My_InMon.com.xml\"><securecookie host=\"^\\.www\\.myinmon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myinmon\\.com/\" to=\"https://www.myinmon.com/\"/></ruleset>", "<ruleset name=\"My LiveChat\" f=\"My_LiveChat.xml\"><securecookie host=\"^\\.mylivechat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Media Magnet\" default_off=\"expired, self-signed\" f=\"My_Media_Magnet.xml\"><securecookie host=\"^mymediamagnet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mymediamagnet\\.com/\" to=\"https://mymediamagnet.com/\"/></ruleset>", "<ruleset name=\"My OptPlus secure.com\" default_off=\"failed ruleset test\" f=\"My_OptPlus_secure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My OptimizerPlus.com\" f=\"My_OptimizerPlus.com.xml\"><securecookie host=\"^www\\.myoptimizerplus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Portable World.com\" f=\"My_Portable_World.com.xml\"><securecookie host=\"^\\.?myportableworld\\.com$\" name=\".+\"/><rule from=\"^http://myportableworld\\.com/\" to=\"https://www.myportableworld.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Radio Creative\" f=\"My_Radio_Creative.xml\"><securecookie host=\"^\\.myradiocreative\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Shadow.com\" f=\"My_Shadow.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Shazam.com\" default_off=\"missing certificate chain\" f=\"My_Shazam.com.xml\"><securecookie host=\"^myshazam\\.com$\" name=\".+\"/><rule from=\"^http://www\\.myshazam\\.com/\" to=\"https://www.shazam.com/\"/><rule from=\"^http://myshazam\\.com/\" to=\"https://myshazam.com/\"/></ruleset>", "<ruleset name=\"My SlideRule.com\" f=\"My_SlideRule.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?mysliderule\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Sullivan News.com (partial)\" f=\"My_Sullivan_News.com.xml\"><rule from=\"^http://(?:www\\.)?mysullivannews\\.com/(?=wp-content/|wp-includes/)\" to=\"https://secure.hostmonster.com/~mysulliv/\"/></ruleset>", "<ruleset name=\"My Virtual Paper (partial)\" f=\"My_Virtual_Paper.xml\"><securecookie host=\"^secure\\.admin\\.myvirtualpaper\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.admin\\.myvirtualpaper\\.com/\" to=\"https://secure.admin.myvirtualpaper.com/\"/></ruleset>", "<ruleset name=\"My Year Book (partial)\" default_off=\"failed ruleset test\" f=\"My_Year_Book.xml\"><rule from=\"^http://live\\.assets\\.mybcdna\\.com/\" to=\"https://live.assets.mybcdna.com/\"/><rule from=\"^http://(assets|content1)\\.myyearbook\\.com/\" to=\"https://$1.myyearbook.com/\"/></ruleset>", "<ruleset name=\"my phone.coop\" f=\"My_phone.coop.xml\"><rule from=\"^http://myphone\\.coop/+([^?]*).*\" to=\"https://www.thephone.coop/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mybb.com\" f=\"Mybb.com.xml\"><securecookie host=\"^(www\\.|blog\\.|mods\\.)?mybb\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mycdn.me\" f=\"Mycdn.me.xml\"><rule from=\"^http://gic7\\.mycdn\\.me/\" to=\"https://groupava1.mycdn.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Cliplister.com\" f=\"Mycliplister.com.xml\"><rule from=\"^http://mycliplister\\.com/\" to=\"https://mycliplister.com/\"/></ruleset>", "<ruleset name=\"myconan.net\" f=\"Myconan.net.xml\"><rule from=\"^http://(?:www\\.)?myconan\\.net/\" to=\"https://myconan.net/\"/><rule from=\"^http://blog\\.myconan\\.net/\" to=\"https://blog.myconan.net/\"/></ruleset>", "<ruleset name=\"Mycotopia.net\" f=\"Mycotopia.net.xml\"><securecookie host=\"^mycotopia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mycotopia\\.net/\" to=\"https://mycotopia.net/\"/></ruleset>", "<ruleset name=\"Mydigipass.com\" f=\"Mydigipass.com.xml\"><securecookie host=\"^(\\w+\\.)?mydigipass\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mydrive\" f=\"Mydrive.xml\"><securecookie host=\"^(?:.*\\.)?mydrive\\.ch$\" name=\".*\"/><rule from=\"^http://(www|static|webdav)\\.?mydrive\\.ch/\" to=\"https://$1.mydrive.ch/\"/></ruleset>", "<ruleset name=\"myfolder (partial)\" f=\"Myfolder.xml\"><securecookie host=\"^(?:www\\.)?myfolder\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myftp.utechsoft.com\" f=\"Myftp.utechsoft.com.xml\"><rule from=\"^http://(?:www\\.)?myftp\\.utechsoft\\.com/\" to=\"https://myftp.utechsoft.com/\"/></ruleset>", "<ruleset name=\"Mygoya.de\" default_off=\"connection refused\" f=\"Mygoya.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myhappyoffice.com\" default_off=\"Some parts of the sites don't work\" f=\"Myhappyoffice.com.xml\"><rule from=\"^http://(?:www\\.)?myhappyoffice\\.com/\" to=\"https://www.myhappyoffice.com/\"/></ruleset>", "<ruleset name=\"MyHeritage\" platform=\"mixedcontent\" f=\"Myheritage.xml\"><exclusion pattern=\"^http://(blog|helpcenter)\\.myheritage\\.(com\\.br|co\\.il|no|nl|de|dk|se|fr|fi|es|pl)\"/><securecookie host=\"^(?!blog|helpcenter)(\\w*\\.)?myheritage\\.(com\\.br|co\\.il|com|no|nl|de|dk|se|fr|fi|es|pl)\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyHeritageImages.com\" f=\"Myheritageimages.com.xml\"><securecookie host=\"^(www\\.)?myheritageimages.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myinterfase.com\" f=\"Myinterfase.com.xml\"><securecookie host=\"^(?:www\\.)?myinterfase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myitcv.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"Myitcv.org.uk.xml\"><securecookie host=\"^(?:www\\.)?myitcv\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myitcv\\.org\\.uk/\" to=\"https://www.myitcv.org.uk/\"/></ruleset>", "<ruleset name=\"myjobscotland.gov.uk (partial)\" f=\"Myjobscotland.gov.uk.xml\"><exclusion pattern=\"^http://old\\.myjobscotland\\.gov\\.uk/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mylevel3.net\" f=\"Mylevel3.net.xml\"><securecookie host=\"^mylevel3\\.net$\" name=\".+\"/><rule from=\"^http://mylevel3\\.net/\" to=\"https://mylevel3.net/\"/></ruleset>", "<ruleset name=\"Mynaweb.com (partial)\" f=\"Mynaweb.com.xml\"><securecookie host=\"^mynaweb\\.com$\" name=\".+\"/><rule from=\"^http://(api\\.|www\\.)?mynaweb\\.com/\" to=\"https://$1mynaweb.com/\"/><rule from=\"^http://cdn\\.mynaweb\\.com/\" to=\"https://ddnxkh4q55q4m.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mynewsdesk.com (partial)\" f=\"Mynewsdesk.com.xml\"><securecookie host=\"^\\.mynewsdesk.com$\" name=\".+\"/><rule from=\"^http://get\\.mynewsdesk\\.com/(?=assets/|favicon\\.ico)\" to=\"https://get-mynewsdesk.herokuapp.com/\"/><rule from=\"^http://((?:insight|publish|www)\\.)?mynewsdesk\\.com/\" to=\"https://$1mynewsdesk.com/\"/></ruleset>", "<ruleset name=\"myregisteredsite.com\" f=\"Myregisteredsite.com.xml\"><securecookie host=\"^.+\\.myregisteredsite\\.com$\" name=\".+\"/><rule from=\"^http://(iscorecard|\\d+\\.sites)\\.myregisteredsite\\.com/\" to=\"https://$1.myregisteredsite.com/\"/></ruleset>", "<ruleset name=\"Myricom.com\" f=\"Myricom.com.xml\"><securecookie host=\"^(?:www\\.)?myricom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyrtleBeachShows.com (partial)\" default_off=\"failed ruleset test\" f=\"MyrtleBeachShows.com.xml\"><securecookie host=\"^secure\\.myrtlebeachshows\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.myrtlebeachshows\\.com/\" to=\"https://secure.myrtlebeachshows.com/\"/></ruleset>", "<ruleset name=\"Mysitemyway\" default_off=\"failed ruleset test\" f=\"Mysitemyway.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mysn.de\" f=\"Mysn.de.xml\"><rule from=\"^http://(?:www\\.)?mysn\\.de/\" to=\"https://www.mysn.de/\"/></ruleset>", "<ruleset name=\"Myspace.com\" f=\"Myspace.xml\"><securecookie host=\"^\\.myspace\\.com$\" name=\".*\"/><rule from=\"^http://(b\\d+\\.|www\\.)?myspace\\.com/\" to=\"https://$1myspace.com/\"/></ruleset>", "<ruleset name=\"Myspace CDN.com\" f=\"Myspace_CDN.com.xml\"><rule from=\"^http://a(\\d)\\.ec-images\\.myspacecdn\\.com/\" to=\"https://a$1-images.myspacecdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MythTV.org\" f=\"MythTV.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mythic Beasts\" f=\"Mythic-Beasts.xml\"><securecookie host=\"^\\w+\\.mythic-beasts\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mythical Creatures List\" default_off=\"expired, self-signed\" f=\"Mythical_Creatures_List.xml\"><rule from=\"^http://(?:www\\.)?mythicalcreatureslist\\.com/\" to=\"https://mythicalcreatureslist.com/\"/></ruleset>", "<ruleset name=\"mzstatic.com (partial)\" f=\"Mzstatic.com.xml\"><rule from=\"^http://(?:www\\.)?mzstatic\\.com/\" to=\"https://www.apple.com/\"/><rule from=\"^http://a(\\d)\\.mzstatic\\.com/\" to=\"https://s$1.mzstatic.com/\"/><rule from=\"^http://r\\.mzstatic\\.com/\" to=\"https://s.mzstatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-2.org\" f=\"N-2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-ERGIE Aktiengesellschaft\" f=\"N-ERGIE.xml\"><rule from=\"^http://www\\.n-ergie\\.de/\" to=\"https://www.n-ergie.de/\"/></ruleset>", "<ruleset name=\"N-JOY.de\" f=\"N-JOY.de.xml\"><securecookie host=\"^(www\\.)?n-joy\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-Kesteven.gov.uk (partial)\" f=\"N-Kesteven.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-Somerset.gov.uk\" f=\"N-Somerset.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://n-somerset\\.gov\\.uk/\" to=\"https://www.n-somerset.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-able.com (partial)\" f=\"N-able.com.xml\"><securecookie host=\"^secure\\.n-able\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.n-able\\.com/\" to=\"https://secure.n-able.com/\"/></ruleset>", "<ruleset name=\"n.runs\" default_off=\"failed ruleset test\" f=\"N.runs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n0where.org\" f=\"N0where.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP\" f=\"NAACP.xml\"><securecookie host=\"^\\.?donate\\.naacp\\.org$\" name=\".+\"/><rule from=\"^http://(?:donate\\.|www\\.)?naacp\\.org/\" to=\"https://donate.naacp.org/\"/></ruleset>", "<ruleset name=\"NAACP Company Store\" default_off=\"failed ruleset test\" f=\"NAACP_Company_Store.xml\"><securecookie host=\"^(?:www\\.)?naacpcompanystore\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP Image Awards\" default_off=\"failed ruleset test\" f=\"NAACP_Image_Awards.xml\"><rule from=\"^http://www\\.naacpimageawards\\.net/\" to=\"https://www.naacpimageawards.net/\"/></ruleset>", "<ruleset name=\"NAB.org\" f=\"NAB.org.xml\"><securecookie host=\"^www\\.nab\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nab\\.org/\" to=\"https://www.nab.org/\"/></ruleset>", "<ruleset name=\"National Australia Bank\" f=\"NAB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NACL.org\" f=\"NACL.org.xml\"><securecookie host=\"^(?:www\\.)?nacdl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NADAguides\" default_off=\"failed ruleset test\" f=\"NADAguides.xml\"><securecookie host=\"^.*\\.nadaguides(?:store)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nadaguides(store)?\\.com/\" to=\"https://www.nadaguides$1.com/\"/><rule from=\"^http://images(?:-ssl)?\\.nadaguides\\.com/\" to=\"https://images-ssl.nadaguides.com/\"/></ruleset>", "<ruleset name=\"NASA.gov (false MCB)\" platform=\"mixedcontent\" f=\"NASA.gov-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mars\\.nasa\\.gov/\" to=\"https://mars.jpl.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASA.gov (partial)\" f=\"NASA.gov.xml\"><exclusion pattern=\"^http://reverb\\.echo\\.nasa\\.gov/+(?!reverb/(?:(?:orders|shopping_cart)(?:$|[?/])|assets/))\"/><exclusion pattern=\"^http://mars(?:\\.jpl)?\\.nasa\\.gov/+(?!favicon\\.ico|images/|layout/)\"/><exclusion pattern=\"^http://rosetta\\.jpl\\.nasa\\.gov/+(?!favicon\\.ico|modules/|sites/)\"/><exclusion pattern=\"^http://smap\\.jpl\\.nasa\\.gov/+(?!assets/|system/)\"/><securecookie host=\"^(?!reverb\\.echo\\.|smap\\.jpl\\.).\" name=\".\"/><rule from=\"^http://www\\.data\\.nasa\\.gov/\" to=\"https://data.nasa.gov/\"/><rule from=\"^http://heasarc\\.nasa\\.gov/\" to=\"https://heasarc.gsfc.nasa.gov/\"/><rule from=\"^http://marsstaticcdn\\.jpl\\.nasa\\.gov/\" to=\"https://d3r05mwudimf00.cloudfront.net/\"/><rule from=\"^http://metrics\\.jpl\\.nasa\\.gov/\" to=\"https://jpl-nasa-gov.122.2o7.net/\"/><rule from=\"^http://sse\\.jpl\\.nasa\\.gov/\" to=\"https://solarsystem.nasa.gov/\"/><rule from=\"^http://mars\\.nasa\\.gov/\" to=\"https://mars.jpl.nasa.gov/\"/><rule from=\"^http://nccs\\.nasa\\.gov/\" to=\"https://www.nccs.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASASpaceFlight.com (partial)\" f=\"NASASpaceFlight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASDAQ (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NASDAQ.xml\"><securecookie host=\"^(?:secure\\.|www\\.)?directorsdesk\\.com$\" name=\".+\"/><securecookie host=\"^community\\.nasdaq\\.com$\" name=\".+\"/><securecookie host=\"^corporateintelligence\\.nasdaqomx\\.com$\" name=\".+\"/><securecookie host=\"^dialogue\\.openboard\\.info$\" name=\".+\"/><rule from=\"^http://secure\\.directorsdesk\\.com/\" to=\"https://secure.directorsdesk.com/\"/><rule from=\"^http://community\\.nasdaq\\.com/\" to=\"https://community.nasdaq.com/\"/><rule from=\"^http://(corporateintelligence|listingcenter)\\.nasdaqomx\\.com/\" to=\"https://$1.nasdaqomx.com/\"/><rule from=\"^http://dialogue\\.openboard\\.info/\" to=\"https://dialogue.openboard.info/\"/></ruleset>", "<ruleset name=\"NAVTEQ (problematic)\" default_off=\"mismatched\" f=\"NAVTEQ-problematic.xml\"><rule from=\"^http://corporate\\.navteq\\.com/\" to=\"https://corporate.navteq.com/\"/></ruleset>", "<ruleset name=\"NAVTEQ (partial)\" default_off=\"failed ruleset test\" f=\"NAVTEQ.xml\"><securecookie host=\"^mapreporter\\.navteq\\.com$\" name=\".+\"/><rule from=\"^http://(?:www(?:2-test)?\\.)?navteq\\.com/\" to=\"https://www.navteq.com/\"/><rule from=\"^http://(?:css\\.)?mapreporter\\.navteq\\.com/\" to=\"https://mapreporter.navteq.com/\"/><rule from=\"^http://(?:www\\.)?navteqmedia\\.com/\" to=\"https://primeplace.nokia.com/\"/></ruleset>", "<ruleset name=\"NBC News (partial)\" default_off=\"mismatch\" f=\"NBC-News.xml\"><rule from=\"^http://(?:www\\.)?nbcnews\\.com/\" to=\"https://www.nbcnews.com/\"/><rule from=\"^http://(cosmiclog|redtape)\\.nbcnews\\.com/\" to=\"https://$1.nbcnews.com/\"/></ruleset>", "<ruleset name=\"NBCUniversal Media (partial)\" f=\"NBCUniversal_Media.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nbcudigitaladops\\.com/\" to=\"https://www.nbcudigitaladops.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NBN Co.com.au\" default_off=\"failed ruleset test\" f=\"NBN_Co.com.au.xml\"><securecookie host=\"^(?:www\\d?)?\\.nbnco\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:www1?\\.)?nbnco\\.com\\.au/\" to=\"https://www1.nbnco.com.au/\"/><rule from=\"^http://(autodiscover|exch-cas-[12]|outlook\\d?|www2)\\.nbnco\\.com\\.au/\" to=\"https://$1.nbnco.com.au/\"/></ruleset>", "<ruleset name=\"Notebooks Wie Neu\" f=\"NBWN.xml\"><rule from=\"^http://(?:www\\.)?nbwn\\.de/\" to=\"https://www.nbwn.de/\"/></ruleset>", "<ruleset name=\"NC.me\" f=\"NC.me.xml\"><rule from=\"^http://nc\\.me/\" to=\"https://www.nc.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCC Group.com\" f=\"NCC_Group.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCC Group.trust\" f=\"NCC_Group.trust.xml\"><securecookie host=\"^(?:www\\.)?nccgroup\\.trust$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCC Group Domain Services.com\" f=\"NCC_Group_Domain_Services.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCISF.org\" f=\"NCISF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCJS.gov\" f=\"NCJRS.gov.xml\"><securecookie host=\"^(?:puborder\\.|www\\.)?ncjrs\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCL.ac.uk (partial)\" f=\"NCL.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCRIC\" f=\"NCRIC.xml\"><securecookie host=\"^ncric\\.org$\" name=\".+\"/><rule from=\"^http://ncric\\.org/\" to=\"https://ncric.org/\"/><rule from=\"^http://www\\.ncric\\.org/.*\" to=\"https://ncric.org/\"/></ruleset>", "<ruleset name=\"NCSC.nl\" f=\"NCSC.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCSI.com\" f=\"NCSI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCTA.com\" f=\"NCTA.com.xml\"><rule from=\"^http://(?:www\\.)?ncta\\.com/\" to=\"https://www.ncta.com/\"/></ruleset>", "<ruleset name=\"NCWIT.org\" f=\"NCWIT.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NC Bar.org\" f=\"NC_Bar.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?ncbar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCsoft.com\" default_off=\"failed ruleset test\" f=\"NCsoft.com.xml\"><rule from=\"^http://((?:help|secure|static|us|www)\\.)?ncsoft\\.com/\" to=\"https://$1ncsoft.com/\"/></ruleset>", "<ruleset name=\"NDCHost.com\" f=\"NDCHost.com.xml\"><securecookie host=\"^(?:customer|helpdesk|www)\\.ndchost\\.com$\" name=\".+\"/><rule from=\"^http://((?:customer|helpdesk|www)\\.)?ndchost\\.com/\" to=\"https://$1ndchost.com/\"/></ruleset>", "<ruleset name=\"NDI.org\" f=\"NDI.org.xml\"><rule from=\"^http://(?:www\\.)?ndi\\.org/\" to=\"https://www.ndi.org/\"/><rule from=\"^http://(contribute|idp|portal)\\.ndi\\.org/\" to=\"https://$1.ndi.org/\"/></ruleset>", "<ruleset name=\"NDN media services.com\" f=\"NDN_media_services.com.xml\"><rule from=\"^http://vault\\.studio\\.ndnmediaservices\\.com/\" to=\"https://dithr9x6satds.cloudfront.net/\"/></ruleset>", "<ruleset name=\"NEC Display.com (partial)\" f=\"NEC_Display.com.xml\"><securecookie host=\"^partners\\.necdisplay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?necdisplay\\.com/(?=App_Themes/|favicon\\.ico|flash/assets/(?:image|j)s/|(?:Script|Web)Resource\\.axd|NECHandler\\.ashx|Scripts/|Services/|ShoppingCart/Cart\\.aspx|sifr/|style-css/|style-images/)\" to=\"https://www.necdisplay.com/\"/><rule from=\"^http://partners\\.necdisplay\\.com/\" to=\"https://partners.necdisplay.com/\"/></ruleset>", "<ruleset name=\"NEDCC.org\" f=\"NEDCC.org.xml\"><rule from=\"^http://(?:www\\.)?nedcc\\.org/\" to=\"https://www.nedcc.org/\"/></ruleset>", "<ruleset name=\"NEK Vapor.com\" f=\"NEK_Vapor.com.xml\"><securecookie host=\"^\\.nekvapor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NEO Direct\" default_off=\"failed ruleset test\" f=\"NEO-Direct.xml\"><securecookie host=\"^www\\.neo-direct\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?neo-direct\\.com/\" to=\"https://www.neo-direct.com/\"/></ruleset>", "<ruleset name=\"NEOS.eu (partial)\" f=\"NEOS.eu.xml\"><securecookie host=\"^(?:.*\\.)?neos\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NESEA\" default_off=\"http redirect\" f=\"NESEA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NESL.edu\" default_off=\"failed ruleset test\" f=\"NESL.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NEU.edu (partial)\" f=\"NEU.edu.xml\"><securecookie host=\"^(?:laweval|myneu|prod-web)\\.neu\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Next INpact.com (partial)\" f=\"NEXTINpact.com.xml\"><securecookie host=\"^compte\\.nextinpact\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NElhage.com\" f=\"NElhage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFrance (partial)\" f=\"NFrance.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFsec.pl\" f=\"NFsec.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NGP VAN\" f=\"NGP_VAN.xml\"><rule from=\"^http://(?:www\\.)?ngpvan\\.com/\" to=\"https://ngpvan.ngpvanhost.com/\"/><rule from=\"^http://(\\w+)\\.ngpvanhost\\.com/\" to=\"https://$1.ngpvanhost.com/\"/></ruleset>", "<ruleset name=\"NHM.ac.uk (partial)\" f=\"NHM.ac.uk.xml\"><securecookie host=\"^wpymedia\\.nhm\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHN Corporation\" default_off=\"failed ruleset test\" f=\"NHN-Corporation.xml\"><securecookie host=\"^www\\.nhncorp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nhn(?:corp)?\\.com/\" to=\"https://www.nhncorp.com/\"/></ruleset>", "<ruleset name=\"NHN Next.org\" f=\"NHN_Next.org.xml\"><rule from=\"^http://(?:www\\.)?nhnnext\\.org/\" to=\"https://www.nhnnext.org/\"/></ruleset>", "<ruleset name=\"NHS Direct (partial)\" default_off=\"failed ruleset test\" f=\"NHS-Direct.xml\"><rule from=\"^http://nhsdirect\\.nhs\\.uk/\" to=\"https://www.nhsdirect.nhs.uk/\"/><rule from=\"^http://(mobile|www)\\.nhsdirect\\.nhs\\.uk/(CheckSymptoms/|fc\\.axd|images/|sitecore/|(?:\\w+/)*~/)\" to=\"https://$1.nhsdirect.nhs.uk/$1\"/></ruleset>", "<ruleset name=\"NHS.uk (false MCB)\" platform=\"mixedcontent\" f=\"NHS.uk-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHS.uk (partial)\" f=\"NHS.xml\"><exclusion pattern=\"http://(?:www\\.)?bhamcommunity\\.nhs\\.uk/+(?![Ee]asy[Ss]ite[Ww]eb/)\"/><exclusion pattern=\"^http://(?:www\\.)?nhs\\.uk/+(?!(?:10-minute-shake-up|change4life-beta/campaigns/sugar-smart/home|[Ss]ervice-[Ss]earch/performance/search|start4life/signups/new)(?:$|\\?)|Personalisation/(?:Login|Registration|ResetPassword)\\.aspx|[Ss]ervice-[Ss]earch/[Cc]ontent/(?:css|img)/|css/|img/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!(?:www\\.)?bhamcommunity\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http://nhs\\.uk/\" to=\"https://www.nhs.uk/\"/><rule from=\"^http://(elft|healthcareers|healthiernorthwestlondon|healthystart|neas)\\.nhs\\.uk/\" to=\"https://www.$1.nhs.uk/\"/><rule from=\"^http://www\\.nhscareers\\.nhs\\.uk/.*\" to=\"https://www.healthcareers.nhs.uk/\"/><rule from=\"^http://www\\.n(ice|oo)\\.nhs\\.uk/+\" to=\"https://www.n$1.org.uk/\"/><rule from=\"^http://helpdesk\\.pcc\\.nhs\\.uk/.*\" to=\"https://helpdesk.pcc-cic.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHS ePortfolios.org (partial)\" f=\"NHS_ePortfolios.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.nhseportfolios\\.org$\" name=\".\"/><rule from=\"^http://nhseportfolios\\.org/\" to=\"https://www.nhseportfolios.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIAP-CCEVS.org\" f=\"NIAP-CCEVS.org.xml\"><securecookie host=\"^www\\.niap-ccevs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIBC Direct.nl\" f=\"NIBC_Direct.nl.xml\"><securecookie host=\".+\\.nibcdirect\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nibcdirect\\.nl/\" to=\"https://www.nibcdirect.nl/\"/><rule from=\"^http://s(ervice|paren)\\.nibcdirect\\.nl/\" to=\"https://s$1.nibcdirect.nl/\"/></ruleset>", "<ruleset name=\"NIC.Ar\" f=\"NIC.Ar.xml\"><securecookie host=\"^nic\\.ar$\" name=\".+\"/><rule from=\"^http://www\\.nic\\.ar/\" to=\"https://nic.ar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIC.ad.jp\" f=\"NIC.ad.jp.xml\"><rule from=\"^http://(?:www\\.)?nic\\.ad\\.jp/\" to=\"https://www.nic.ad.jp/\"/></ruleset>", "<ruleset name=\"NIC.br (partial)\" f=\"NIC.br.xml\"><securecookie host=\"^(?:eventos|gter|www\\.gter)\\.nic\\.br$\" name=\".+\"/><rule from=\"^http://((?:eventos|gter|www\\.gter|www)\\.)?nic\\.br/\" to=\"https://$1nic.br/\"/></ruleset>", "<ruleset name=\"NIC.ch\" f=\"NIC.ch.xml\"><securecookie host=\"^www\\.nic\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nic\\.ch/\" to=\"https://www.nic.ch/\"/></ruleset>", "<ruleset name=\"NICE.org.uk (partial)\" f=\"NICE.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nice\\.org\\.uk/\" to=\"https://www.nice.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NICTA.com.au (expired)\" default_off=\"expired\" f=\"NICTA.com.au-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NICTA (partial)\" f=\"NICTA.xml\"><rule from=\"^http://((?:owa|ssrg|webmail|www)\\.)?nicta\\.com\\.au/\" to=\"https://$1nicta.com.au/\"/></ruleset>", "<ruleset name=\"NIFC.gov (partial)\" default_off=\"missing certificate chain\" f=\"NIFC.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nifc\\.gov/\" to=\"https://www.nifc.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIFTY (buggy)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/7107\" f=\"NIFTY.xml\"><exclusion pattern=\"^http://www\\.nifty\\.com/(?:\\w+$|[^fi]|f[^/]+\\.\\w+$|i[^m].*/|\\w{1,5}/|\\w{7,}/)\"/><exclusion pattern=\"^http://(?:btm|clip)\\.\"/><securecookie host=\"^.*\\.nifty\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nifty\\.com/(favicon\\.ico|images/)\" to=\"https://www.nifty.com/$1\"/><rule from=\"^http://([\\w\\-]+)\\.nifty\\.com/\" to=\"https://$1.nifty.com/\"/></ruleset>", "<ruleset name=\"NIH.gov (false MCB)\" platform=\"mixedcontent\" f=\"NIH.gov-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NII.ac.jp (mixed content)\" platform=\"mixedcontent\" f=\"NII.ac.jp-mixedcontent.xml\"><securecookie host=\"^www\\.nii\\.ac\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NII.ac.jp (partial)\" f=\"NII.ac.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIIF Intézet (partial)\" f=\"NIIF.xml\"><rule from=\"^http://www\\.hboneplus\\.hu/\" to=\"https://www.hboneplus.hu/\"/><rule from=\"^http://([^@:/]*)\\.niif\\.hu/\" to=\"https://$1.niif.hu/\"/></ruleset>", "<ruleset name=\"NIPS.cc (partial)\" f=\"NIPS.cc.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.nips\\.cc/\" to=\"https://nips.cc/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NJ.com (partial)\" f=\"NJ.com.xml\"><rule from=\"^http://findnsave\\.nj\\.com/(?=static/)\" to=\"https://njcom.findnsave.com/\"/><rule from=\"^http://signup\\.nj\\.com/\" to=\"https://signup.nj.com/\"/></ruleset>", "<ruleset name=\"NJIT.edu (partial)\" f=\"NJIT.edu.xml\"><exclusion pattern=\"^http://(?:www\\.)?njit\\.edu/+(?!.+\\.(?:css|jpg|gif|ico|png)(?:$|\\?)|calendar(?:$|\\?)|cp/login\\.php|uws/feeds/thumb\\.php|uws/ldapimage\\.php)\"/><exclusion pattern=\"^http://r25livepr1\\.njit\\.edu/+(?!.+\\.jpg(?:$|\\?))\"/><exclusion pattern=\"^http://cp4\\.njit\\.edu/+(?!favicon\\.ico|misc/|cp/content/|cps/images/|custom/|site/)\"/><securecookie host=\"^(?:directory|njit-connect)\\.njit\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?njit\\.edu/\" to=\"https://www.njit.edu/\"/><rule from=\"^http://(courseschedules|cp4|directory|ist|njit-connect|r25livepr1|webmail)\\.njit\\.edu/\" to=\"https://$1.njit.edu/\"/><rule from=\"^http://mail\\.g\\.njit\\.edu/.*\" to=\"https://mail.google.com/a/njit.edu\"/><rule from=\"^http://my\\.njit\\.edu/[^?]*\" to=\"https://www.njit.edu/cp/login.php\"/></ruleset>", "<ruleset name=\"NJ Edge.Net (partial)\" f=\"NJ_Edge.Net.xml\"><rule from=\"^http://(federation|lists)\\.njedge\\.net/\" to=\"https://$1.njedge.net/\"/></ruleset>", "<ruleset name=\"NK News.org (partial)\" platform=\"mixedcontent\" f=\"NK_News.org.xml\"><securecookie host=\"^(?:\\.|shop\\.|www\\.)?nknews\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDA.nl (partial)\" f=\"NL-Politiek.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLG.org\" f=\"NLG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLLGG.nl\" f=\"NLLGG.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLUUG.nl (partial)\" f=\"NLUUG.nl.xml\"><rule from=\"^http://(?:www\\.)?nluug\\.nl/\" to=\"https://www.nluug.nl/\"/></ruleset>", "<ruleset name=\"nLayer Communications (partial)\" default_off=\"failed ruleset test\" f=\"NLayer-Communications.xml\"><rule from=\"^http://(?:www\\.)?nlayer\\.net/\" to=\"https://nlayer.cachefly.net/\"/></ruleset>", "<ruleset name=\"NLnet Labs CACert\" platform=\"cacert\" f=\"NLnet-Labs-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLnet Labs\" f=\"NLnet-Labs.xml\"><securecookie host=\"^wiki\\.opendnssec\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NMU\" f=\"NMU.xml\"><securecookie host=\"^(?:.*\\.)?nmugroup\\.com$\" name=\".+\"/><rule from=\"^http://((?:mail|portal|webmail|www)\\.)?nmugroup\\.com/\" to=\"https://$1nmugroup.com/\"/></ruleset>", "<ruleset name=\"NNM-Club\" f=\"NNM-Club.xml\"><securecookie host=\"^(?:.*\\.)?nnm-club\\.me$\" name=\".+\"/><rule from=\"^http://(?:[\\w\\W]+\\.)?nnm-club\\.me/\" to=\"https://nnm-club.me/\"/></ruleset>", "<ruleset name=\"NOO.org.uk\" f=\"NOO.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://noo\\.org\\.uk/\" to=\"https://www.noo.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NOS (partial)\" f=\"NOS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPAC.com\" default_off=\"missing certificate chain\" f=\"NPAC.com.xml\"><securecookie host=\"^www\\.npac\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPD Group\" f=\"NPD_Group.xml\"><securecookie host=\"^.+\\.npd\\.com$\" name=\".+\"/><rule from=\"^http://(autodiscover\\.|webmail\\.|www0?\\.)?npd\\.com/\" to=\"https://$1npd.com/\"/><rule from=\"^http://(www\\.)?npdgroup\\.com/\" to=\"https://$1npdgroup.com/\"/></ruleset>", "<ruleset name=\"NPI.org.uk\" default_off=\"expired, mismatched, self-signed\" f=\"NPI.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPO.nl (partial)\" f=\"NPO.nl.xml\"><securecookie host=\"^(?:help|mijn)\\.npo\\.nl$\" name=\".+\"/><rule from=\"^http://(help|mijn|assets\\.www)\\.npo\\.nl/\" to=\"https://$1.npo.nl/\"/></ruleset>", "<ruleset name=\"NPR.org (partial)\" default_off=\"failed ruleset test\" f=\"NPR.org.xml\"><securecookie host=\"^support\\.kunc\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kunk\\.org/\" to=\"https://kunc.drupal.publicbroadcasting.net/\"/><rule from=\"^http://support\\.kunc\\.org/\" to=\"https://support.kunc.org/\"/><rule from=\"^http://help\\.npr\\.org/$\" to=\"https://www.fuzeqna.com/npr/consumer/search.asp\"/><rule from=\"^http://help\\.npr\\.org/npr/\" to=\"https://www.fuzeqna.com/npr/\"/><rule from=\"^http://shop\\.npr\\.org/\" to=\"https://shop.npr.org/\"/></ruleset>", "<ruleset name=\"NPTEd.org\" f=\"NPTEd.org.xml\"><rule from=\"^http://www\\.npted\\.org/\" to=\"https://www.npted.org/\"/></ruleset>", "<ruleset name=\"nPario (partial)\" f=\"NPario.xml\"><securecookie host=\"^\\.?audiencediscovery\\.npario\\.com$\" name=\".+\"/><securecookie host=\"^\\.npario-inc\\.net$\" name=\"^(?:andata|C\\d{3}_seg|npidl?|npst)$\"/><rule from=\"^http://audiencediscovery\\.npario\\.com/\" to=\"https://audiencediscovery.npario.com/\"/><rule from=\"^http://eu\\.npario-inc\\.net/\" to=\"https://eu.npario-inc.net/\"/></ruleset>", "<ruleset name=\"NR-assets.net\" f=\"NR-assets.net.xml\"><rule from=\"^http://storefront\\.nr-assets\\.net/\" to=\"https://storefront.nr-assets.net/\"/></ruleset>", "<ruleset name=\"NR-data.net\" f=\"NR-data.net.xml\"><securecookie host=\"^bam\\.nr-data\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRAO.edu (partial)\" f=\"NRAO.edu.xml\"><securecookie host=\"^(?:bugs|www)?\\.nrao\\.edu$\" name=\".+\"/><rule from=\"^http://((?:svn\\.aoc|archive|blogs|bugs|svn\\.cv|www\\.cv|inside|my|public|safe|science|search|staff|www)\\.)?nrao\\.edu/\" to=\"https://$1nrao.edu/\"/><rule from=\"^http://rsync\\.aoc\\.nrao\\.edu/+\" to=\"https://svn.aoc.nrao.edu/\"/><rule from=\"^http://www\\.vla\\.nrao\\.edu/genpub/tours(?=$|\\?)\" to=\"https://public.nrao.edu/tours/visitvla\"/></ruleset>", "<ruleset name=\"NRC\" f=\"NRC.xml\"><exclusion pattern=\"^http://www\\.nrc\\.nl/next/\"/><securecookie host=\"^\\.nrc\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRKbeta.no\" f=\"NRKbeta.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSRC.org\" f=\"NSRC.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSS Labs.com\" f=\"NSS_Labs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTC Hosting\" platform=\"mixedcontent\" f=\"NTC-Hosting.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTI.org (partial)\" f=\"NTI.org.xml\"><rule from=\"^http://(?:www\\.)?nti\\.org/(?=get-involved(?:$|[?/])|media/|static/)\" to=\"https://www.nti.org/\"/></ruleset>", "<ruleset name=\"nTLDStats.com\" f=\"NTLDStats.com.xml\"><securecookie host=\"^(?:x)?\\.ntldstats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTNU.edu\" f=\"NTNU.edu.xml\"><rule from=\"^http://ntnu\\.edu/\" to=\"https://www.ntnu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTNU.no\" f=\"NTNU.no.xml\"><rule from=\"^http://ntnu\\.no/\" to=\"https://www.ntnu.no/\"/><rule from=\"^http://idi\\.ntnu\\.no/\" to=\"https://www.idi.ntnu.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTP.org (partial)\" platform=\"cacert\" f=\"NTP.org.xml\"><securecookie host=\"^(?:support|lists)\\.ntp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTT.com\" f=\"NTT.com.xml\"><securecookie host=\"^(?:support|www)\\.ntt\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ntt\\.com/\" to=\"https://www.ntt.com/\"/><rule from=\"^http://support\\.ntt\\.com/\" to=\"https://support.ntt.com/\"/></ruleset>", "<ruleset name=\"NTTCom\" default_off=\"failed ruleset test\" f=\"NTTCom.xml\"><securecookie host=\"^www\\.nttcoms\\.com$\" name=\".+\"/><rule from=\"^http://www\\.digitalforest\\.co\\.jp/\" to=\"https://www.digitalforest.co.jp/\"/><rule from=\"^http://(?:www\\.)?nttcoms\\.com/\" to=\"https://www.nttcoms.com/\"/><rule from=\"^http://www01\\.tracer\\.jp/\" to=\"https://www01.tracer.jp/\"/></ruleset>", "<ruleset name=\"Nttdocomo.com\" default_off=\"400\" f=\"NTTDocomo.com.xml\"><rule from=\"^http://nttdocomo\\.com/\" to=\"https://www.nttdocomo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTT Docomo.co.jp\" f=\"NTT_Docomo.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU.edu.tw (false MCB)\" platform=\"mixedcontent\" f=\"NTU.edu.tw-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU.edu.tw (partial)\" f=\"NTU.edu.tw.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.wmail1\\.cc\\.ntu\\.edu\\.tw$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU\" platform=\"mixedcontent\" f=\"NTU.xml\"><rule from=\"^http://(?:www\\.)?ntu\\.ac\\.uk/\" to=\"https://www.ntu.ac.uk/\"/><rule from=\"^http://(?:www\\.)?ntualumni\\.org\\.uk/\" to=\"https://www.ntualumni.org.uk/\"/></ruleset>", "<ruleset name=\"NTVB Media (partial)\" f=\"NTVB-Media.xml\"><securecookie host=\".*\\.iwantmytvmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTVSpor\" platform=\"mixedcontent\" f=\"NTVSpor.xml\"><securecookie host=\"^(?:www\\.)?ntvspor\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ntvspor\\.net/\" to=\"https://www.ntvspor.net/\"/></ruleset>", "<ruleset name=\"NTpandp.com\" f=\"NTpandp.com.xml\"><securecookie host=\"^(?:w*\\.)?ntpandp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NURD.space\" f=\"NURD.space.xml\"><exclusion pattern=\"^http://(?:www\\.)?nurd\\.space/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?nurd\\.space/.*\" to=\"https://nurdspace.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NURDspace.nl (partial)\" f=\"NURDspace.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NUUG.no (false MCB)\" platform=\"cacert mixedcontent\" f=\"NUUG.no-falsemixed.xml\"><rule from=\"^http://memberdb\\.nuug\\.no/(?=favicon\\.ico|/*global\\.css)\" to=\"https://memberdb.nuug.no/\"/></ruleset>", "<ruleset name=\"NUUG.no (problematic)\" default_off=\"mismatched\" platform=\"cacert\" f=\"NUUG.no-problematic.xml\"><rule from=\"^http://(planet|wiki)\\.nuug\\.no/\" to=\"https://$1.nuug.no/\"/></ruleset>", "<ruleset name=\"NUUG.no (partial)\" platform=\"cacert\" f=\"NUUG.no.xml\"><exclusion pattern=\"^http://memberdb\\.nuug\\.no/+(?!favicon\\.ico|global\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NV Energy.com\" f=\"NV_Energy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia (mismatches)\" default_off=\"mismatched\" f=\"NVidia-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.co.uk (partial)\" f=\"NVidia.co.uk.xml\"><rule from=\"^http://nvidia\\.co\\.uk/\" to=\"https://www.nvidia.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.eu (partial)\" f=\"NVidia.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.com (partial)\" f=\"NVidia.xml\"><exclusion pattern=\"^http://store\\.nvidia\\.com/(?!DRHM/|store\\?Action=(?:DisplayEditProfilePage|DisplayHelpPage)(?:$|&)|sstore\\?)\"/><exclusion pattern=\"^http://www\\.nvidia\\.com/(download|content)/\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+_\\d+|s_\\w+|visid_incap_\\d+)$\"/><securecookie host=\"^(?!shop\\.)\\w\" name=\".\"/><rule from=\"^http://nvidia\\.com/\" to=\"https://www.nvidia.com/\"/><rule from=\"^http://careers\\.nvidia\\.com/.*\" to=\"https://www.nvidia.com/object/careers.html\"/><rule from=\"^http://forums\\.nvidia\\.com/\" to=\"https://forums.geforce.com/\"/><rule from=\"^http://(?:ns)?omniture\\.nvidia\\.com/\" to=\"https://nvidia.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NVisium.com\" f=\"NVisium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NXTblocks.info\" f=\"NXTblocks.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NY Tech Meetup (partial)\" default_off=\"mismatch\" f=\"NY-Tech-Meetup.xml\"><rule from=\"^http://(?:www\\.)?nytm\\.org/made/\" to=\"https://nytm.org/made/\"/></ruleset>", "<ruleset name=\"NYCLA.org\" f=\"NYCLA.org.xml\"><securecookie host=\"^(?:www\\.)?nycla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYDailyNews (false MCB)\" platform=\"mixedcontent\" f=\"NYDailyNews.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYDailyNews (partial)\" default_off=\"failed ruleset test\" f=\"NYDailyNews.xml\"><exclusion pattern=\"^http://classifieds\\.nydailynews\\.com/+(?!resource/)\"/><exclusion pattern=\"^http://www\\.nydailynews\\.com/+(?!cmlink/|nydn/|polopoly_fs/)\"/><securecookie host=\"^[^@:/]*\\.nydailynews\\.com$\" name=\".+\"/><rule from=\"^http://(?:assets|static\\d|www)\\.nydailynews\\.com/\" to=\"https://www.nydailynews.com/\"/><rule from=\"^http://(classifiedads|homedelivery|webport1?)\\.nydailynews\\.com(:8443)?/\" to=\"https://$1.nydailynews.com$2/\"/><rule from=\"^http://classifieds\\.nydailynews\\.com/resource/\" to=\"https://casmp.adperfect.com/resource/\"/></ruleset>", "<ruleset name=\"NYI.net (false MCB)\" platform=\"mixedcontent\" f=\"NYI.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYI.net (partial)\" f=\"NYI.net.xml\"><exclusion pattern=\"^http://webmail\\.nyi\\.net/+(?!webmailimages/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYK Europe.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NYK_Europe.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?nykeurope\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?nykeurope\\.com/(?!favicon\\.ico|images/|media/|modules/|templates/)\" to=\"https://$1nykeurope.com/\"/></ruleset>", "<ruleset name=\"NYK Europe.com (partial)\" f=\"NYK_Europe.com.xml\"><rule from=\"^http://(www\\.)?nykeurope\\.com/(?=favicon\\.ico|images/|media/|modules/|templates/)\" to=\"https://$1nykeurope.com/\"/></ruleset>", "<ruleset name=\"NYSE Euronext\" default_off=\"failed ruleset test\" f=\"NYSE_Euronext.xml\"><securecookie host=\"^(?:bonds|connect|etp|euconsumer|europeanequities|exchanges|globalderivatives|indices|markets|nyse|nysetechnologies|usequities|www)\\.nyx\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nyx\\.com/\" to=\"https://www.nyx.com/\"/><rule from=\"^http://(bonds|connect|corporate|etp|euconsumer|europeanequities|exchanges|globalderivatives|indices|markets|nyse|nysetechnologies|usequities)\\.nyx\\.com/\" to=\"https://$1.nyx.com/\"/></ruleset>", "<ruleset name=\"NYT.com (partial)\" default_off=\"needs testing\" f=\"NYT.com.xml\"><rule from=\"^http://(?:www\\.)?nyt\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://a1\\.nyt\\.com/\" to=\"https://assets-origin.nytimes.com/\"/><rule from=\"^http://(?:css|i1|static01)\\.nyt\\.com/\" to=\"https://static.nytimes.com/\"/><rule from=\"^http://js\\.nyt\\.com/\" to=\"https://www.nytimes.com/\"/></ruleset>", "<ruleset name=\"NYT Co.com (partial)\" f=\"NYT_Co.com.xml\"><securecookie host=\"^\\.nytco\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT eXaminer.com\" f=\"NYT_eXaminer.com.xml\"><securecookie host=\"^(?:www)?\\.nytexaminer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYTimes.com (needs ruleset tests)\" default_off=\"Needs ruleset tests\" f=\"NYTimes.xml\"><exclusion pattern=\"^http://www\\.nytimes\\.com/+(?!adx/|favicon\\.ico|(?:books|membercenter|store)(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:www\\.)?nytimes\\.com/svc/community/V3/requestHandler\"/><exclusion pattern=\"^http://.+\\.blogs\\.nytimes\\.com/(?!favicon\\.ico)\"/><exclusion pattern=\"^http://graphics8\\.nytimes\\.com/bi/js/tagx/tagx\\.js\"/><exclusion pattern=\"^http://graphics8\\.nytimes\\.com/packages/flash/multimedia/\"/><exclusion pattern=\"^http://jobmarket\\.nytimes\\.com/(?!adx/|images/)\"/><exclusion pattern=\"^http://travel\\.nytimes\\.com/(?!\\d{4}/\\d\\d/\\d\\d/|adx/|js/)\"/><securecookie host=\"^\\.nytimes\\.com$\" name=\"^(?:___utm\\w+|adxc\\w|_chartbeat2|incap_ses_\\d+_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:homedelivery|markets\\.on|wt\\.o)\\.nytimes\\.com$\" name=\".\"/><rule from=\"^http://\\w+\\.blogs\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://(?:graphics\\d?|json8)\\.nytimes\\.com/\" to=\"https://static.nytimes.com/\"/><rule from=\"^http://pimage\\.timespeople\\.nytimes\\.com/\" to=\"https://s3.amazonaws.com/pimage.timespeople.nytimes.com/\"/><rule from=\"^http://travel\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://www\\.nytimes\\.com/svc/community/V3/requestHandler(?=$|\\?)\" to=\"http://www.nytimes.com/svc/community/V3/requestHandler\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"NY Times at Home.com\" f=\"NYTimes_at_Home.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZBIndex\" f=\"NZBIndex.xml\"><securecookie host=\"^(?:www\\.)?nzbindex\\.com$\" name=\".*\"/><rule from=\"^http://www\\.nzbindex\\.nl/\" to=\"https://www.nzbindex.com/\"/><rule from=\"^http://nzbindex\\.nl/\" to=\"https://nzbindex.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nzbmatrix\" default_off=\"failed ruleset test\" f=\"NZBMatrix.xml\"><securecookie host=\"^(?:. .)nzbmatrix\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nzbmatrix\\.com/\" to=\"https://nzbmatrix.com/\"/><rule from=\"^http://(search|static)\\.nzbmatrix\\.com/\" to=\"https://$1.nzbmatrix.com/\"/></ruleset>", "<ruleset name=\"NZ Herald.co.nz (problematic)\" default_off=\"mismatched\" f=\"NZ_Herald.co.nz-problematic.xml\"><securecookie host=\"^www\\.nzherald\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nzherald\\.co\\.nz/\" to=\"https://www.nzherald.co.nz/\"/></ruleset>", "<ruleset name=\"Na VUT.cz\" f=\"Na_VUT.cz.xml\"><securecookie host=\"^(?:www\\.)?navut\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nabers.com (partial)\" f=\"Nabers.com.xml\"><exclusion pattern=\"^http://www\\.nabers\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.nabers\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nadim.computer\" f=\"Nadim.computer.xml\"><securecookie host=\"^\\.nadim\\.computer$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nadir.org (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Nadir.org.xml\"><securecookie host=\"^(?:23b|wiki)\\.nadir\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nadir\\.org/\" to=\"https://www.nadir.org/\"/><rule from=\"^http://(23b|code|deb|webschleuder|wiki)\\.nadir\\.org/\" to=\"https://$1.nadir.org/\"/><rule from=\"^http://schleuder2?\\.nadir\\.org/\" to=\"https://schleuder2.nadir.org/\"/></ruleset>", "<ruleset name=\"Nagano.cz\" default_off=\"expired, mismatch, self-signed\" f=\"Nagano.cz.xml\"><rule from=\"^http://(?:www\\.)?nagano\\.cz/\" to=\"https://nagano.cz/\"/><rule from=\"^http://([^w]\\w*|w[^w]\\w*)\\.nagano\\.cz/\" to=\"https://$1.nagano.cz/\"/></ruleset>", "<ruleset name=\"Nagra.com\" f=\"Nagra.com.xml\"><rule from=\"^http://(?:www\\.)?nagra\\.com/\" to=\"https://www.nagra.com/\"/><rule from=\"^http://(careers|www2014)\\.nagra\\.com/\" to=\"https://$1.nagra.com/\"/></ruleset>", "<ruleset name=\"naiadsystems.com (partial)\" f=\"Naiadsystems.com.xml\"><securecookie host=\"^\\.naiadsystems\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naiin.com\" f=\"Naiin.com.xml\"><rule from=\"^http://(?:www\\.)?naiin\\.com/\" to=\"https://www.naiin.com/\"/></ruleset>", "<ruleset name=\"Naked citizens.eu\" default_off=\"expired\" f=\"Naked_citizens.xml\"><securecookie host=\"^(?:www\\.)?nakedcitizens\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Näkövammaisten keskusliitto\" default_off=\"failed ruleset test\" f=\"Nakovammaisten-Keskusliitto.xml\"><securecookie host=\"^www\\.nkl\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nkl\\.fi/\" to=\"https://www.nkl.fi/\"/></ruleset>", "<ruleset name=\"Name.com\" f=\"Name.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameBright.com\" f=\"NameBright.com.xml\"><securecookie host=\"^(?:www\\.)?namebright\\.com$\" name=\"^v$\"/><securecookie host=\"^\\.namebright\\.com$\" name=\"^(?:NBSession|icart)$\"/><securecookie host=\"^(?:\\.|www\\.)?namebright\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameBright static.com\" f=\"NameBright_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameCentr.al\" f=\"NameCentr.al.xml\"><securecookie host=\"^\\.namecentr(?:\\.al|al\\.com)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?namecentr(\\.al|al\\.com)/\" to=\"https://namecentr$1/\"/></ruleset>", "<ruleset name=\"NameCheap.com\" f=\"NameCheap.xml\"><securecookie host=\"^(?:\\.community|support|\\.?www|manage\\.www)\\.namecheap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameID.org\" f=\"NameID.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameMedia (partial)\" f=\"NameMedia.xml\"><securecookie host=\"^partners\\.smartname\\.com$\" name=\".*\"/><rule from=\"^http://(?:origin-)?images\\.sitesense-oo\\.com/\" to=\"https://origin-images.sitesense-oo.com/\"/><rule from=\"^http://partners\\.smartname\\.com/\" to=\"https://partners.smartname.com/\"/></ruleset>", "<ruleset name=\"NamePros.com\" f=\"NamePros.com.xml\"><securecookie host=\"^\\.namepros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameSpace.us\" default_off=\"expired\" f=\"NameSpace.us.xml\"><securecookie host=\"^(?:www\\.)?namespace\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Namecoin.info\" f=\"Namecoin.info.xml\"><securecookie host=\"^wiki\\.namecoin\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"namei.org (partial)\" default_off=\"mismatched, self-signed\" f=\"Namei.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Names.co.uk\" f=\"Names.xml\"><securecookie host=\"^(?:.*\\.)?names\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nametiles.co\" f=\"Nametiles.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nancys Gone Green.com\" f=\"Nancys_Gone_Green.com.xml\"><securecookie host=\"^(?:www)?\\.nancysgonegreen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nandos.com (partial)\" f=\"Nandos.com.xml\"><rule from=\"^http://(?:www\\.)?nandos\\.com/(?=faq(?:$|[?/])|favicon\\.ico|sites/)\" to=\"https://www.nandos.com/\"/></ruleset>", "<ruleset name=\"Nanigans.com (partial)\" f=\"Nanigans.xml\"><securecookie host=\"^lp\\.nanigans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NanoHUB\" f=\"NanoHUB.xml\"><rule from=\"^http://(?:www\\.)?nanohub\\.org/\" to=\"https://nanohub.org/\"/></ruleset>", "<ruleset name=\"nanorep.com (false MCB)\" platform=\"mixedcontent\" f=\"Nanorep.com-falsemixed.xml\"><securecookie host=\"^\\.support\\.nanorep\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nanorep.com (partial)\" f=\"Nanorep.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU.edu.sg (partial)\" default_off=\"failed ruleset test\" f=\"Nanyang-Technological-University.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naples News.com (partial)\" f=\"Naples_News.com.xml\"><securecookie host=\"^(?:login)?\\.naplesnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Napoleon Makeup Academy.com\" f=\"Napoleon_Makeup_Academy.com.xml\"><securecookie host=\"^\\.napoleonmakeupacademy\\.com(?:\\.au)?$\" name=\".+\"/><rule from=\"^http://(www\\.)?napoleonmakeupacademy\\.com(\\.au)?/\" to=\"https://$1napoleonmakeupacademy.com$2/\"/></ruleset>", "<ruleset name=\"Naromax\" default_off=\"failed ruleset test\" f=\"Naromax.xml\"><securecookie host=\"^(?:w*\\.)?naromax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nartac.com\" f=\"Nartac.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nasjonal Sikkerhetsmyndighet (NSM) (partial)\" f=\"Nasjonal_Sikkerhetsmyndighet.xml\"><exclusion pattern=\"^http://blogg?\\.nsm\\.stat\\.no/\"/><securecookie host=\"^(?:.*\\.)?nsm\\.stat\\.no$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?nsm\\.stat\\.no/\" to=\"https://$1nsm.stat.no/\"/></ruleset>", "<ruleset name=\"Nasuni.com (partial)\" f=\"Nasuni.com.xml\"><rule from=\"^http://(www\\.)?nasuni\\.com/(account|evaluate|fonts/|img/|writable/)\" to=\"https://www.nasuni.com/$2\"/><rule from=\"^http://account\\.nasuni\\.com/\" to=\"https://account.nasuni.com/\"/><securecookie host=\"^account\\.nasuni\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"nat.ms\" f=\"Nat.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NatMonitor.com\" default_off=\"expired, self-signed\" f=\"NatMonitor.com.xml\"><securecookie host=\"^natmonitor\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?natmonitor\\.com/\" to=\"https://natmonitor.com/\"/></ruleset>", "<ruleset name=\"NationBuilder.com (partial)\" f=\"NationBuilder.xml\"><exclusion pattern=\"^http://status\\.nationbuilder\\.com/\"/><exclusion pattern=\"^http://nationbuilder\\.com/+(?!assets/|(?:create|login)(?:$|\\?)|themes/)\"/><securecookie host=\"^\\.nationbuilder\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^3dna\\.nationbuilder\\.com$\" name=\".+\"/><rule from=\"^http://www\\.nationbuilder\\.com/\" to=\"https://nationbuilder.com/\"/><rule from=\"^http://([\\w-]+\\.)?nationbuilder\\.com/\" to=\"https://$1nationbuilder.com/\"/></ruleset>", "<ruleset name=\"NationStates.net\" f=\"NationStates.net.xml\"><securecookie host=\"^\\.(?:forum\\.)?nationstates\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The National Academies (partial)\" platform=\"mixedcontent\" f=\"National-Academies.xml\"><securecookie host=\"^www[78]\\.nationalacademies\\.org$\" name=\".+\"/><rule from=\"^http://www(7|8)\\.nationalacademies\\.org/\" to=\"https://www$1.nationalacademies.org/\"/></ruleset>", "<ruleset name=\"National Arbitration Forum (partial)\" f=\"National-Arbitration-Forum.xml\"><securecookie host=\"^secure\\.arb-forum\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.arb-forum\\.com/\" to=\"https://secure.arb-forum.com/\"/></ruleset>", "<ruleset name=\"National Association of Theatre Owners (partial)\" default_off=\"mismatch\" f=\"National-Association-of-Theatre-Owners.xml\"><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/blog(?:/?$|/(?:\\d{4}|about|author|category|comments|disclaimer|feed|tag)/)\"/><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/images/(?:\\w+\\.(?:gif|jpg))$\"/><exclusion pattern=\"^http://(?:www\\.)?natoonline\\.org/infocus/(?:\\d\\d\\w+|infocusimages)/\"/><rule from=\"^http://(?:www\\.)?natoonline\\.org/(?:~natoonli/)?\" to=\"https://natoonline.org/~natoonli/\"/><rule from=\"^https://(?:www\\.)?natoonline\\.org/(?:~natoonli/)?images/(\\w+\\.(gif|jpg))$\" to=\"http://natoonline.org/images/$1\" downgrade=\"1\"/><rule from=\"^https://(?:www\\.)?natoonline\\.org/~natoonli/infocus/(\\d\\d\\w+)/\" to=\"http://natoonline.org/infocus/$1/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"National Broadcasting Company\" default_off=\"mismatch\" f=\"National-Broadcasting-Company.xml\"><securecookie host=\"^(?:www)?\\.nbc\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nbc\\.com/\" to=\"https://www.nbc.com/\"/></ruleset>", "<ruleset name=\"National Defense Industrial Association (partial)\" f=\"National-Defense-Industrial-Association.xml\"><rule from=\"^http://(www\\.)?n(ationaldefensemagazine|dia)\\.org/(_layouts/|banman/|Divisions/|favicon\\.ico|flash/|images/|(Publishing|SiteCollection)Images/|Style%20Library/|WebResource\\.axd)\" to=\"https://$1n$2.org/$3\"/></ruleset>", "<ruleset name=\"National Express (partial)\" default_off=\"failed ruleset test\" f=\"National-Express.xml\"><securecookie host=\"^(?:coach|help)\\.nationalexpress\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?nationalexpress\\.com/(coach_(?:cs|im)s|im)/\" to=\"https://$1nationalexpress.com/$2/\"/><rule from=\"^http://(coach|help)\\.nationalexpress\\.com/\" to=\"https://$1.nationalexpress.com/\"/><rule from=\"^http://(www\\.)?nationalexpress\\.jobs/\" to=\"https://$1nationalexpress.jobs/\"/></ruleset>", "<ruleset name=\"NIST.gov (partial)\" f=\"National-Institute-of-Standards-and-Technology.xml\"><exclusion pattern=\"^http://web\\.nvd\\.nist\\.gov/$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIH.gov (partial)\" f=\"National-Institutes-of-Health.xml\"><exclusion pattern=\"^http://catalog\\.nhlbi\\.nih\\.gov/+(?!catalog/a4j/s/|favicon\\.ico|pubstatic/|static_includes/|webstatic/)\"/><securecookie host=\"^\\.\" name=\"^s_vi\"/><securecookie host=\"^(?!catalog\\.nhlbi\\.)\\w\" name=\".\"/><rule from=\"^http://((?:nia|niehs|nlm|training)\\.)?nih\\.gov/\" to=\"https://www.$1nih.gov/\"/><rule from=\"^http://www\\.(ncats|lhncbc\\.nlm|sis\\.nlm)\\.nih\\.gov/\" to=\"https://$1.nih.gov/\"/><rule from=\"^http://www\\.dtp\\.nci\\.nih\\.gov/+\" to=\"https://dtp.cancer.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Optical Astronomy Observatory (partial)\" f=\"National-Optical-Astronomy-Observatory.xml\"><rule from=\"^http://(?:www\\.)?noao\\.edu/\" to=\"https://www.noao.edu/\"/></ruleset>", "<ruleset name=\"National Press Photographers Association\" f=\"National-Press-Photographers-Assoc.xml\"><rule from=\"^http://(?:www\\.)?nppa\\.org/\" to=\"https://www.nppa.org/\"/></ruleset>", "<ruleset name=\"National Rail Enquiries (mismatches)\" default_off=\"mismatch\" f=\"National-Rail-Enquiries-mismatches.xml\"><securecookie host=\"^\\.hotels\\.nationalrail\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://hotels\\.nationalrail\\.co\\.uk/\" to=\"https://hotels.nationalrail.co.uk/\"/></ruleset>", "<ruleset name=\"National Rail Enquiries (partial)\" f=\"National-Rail-Enquiries.xml\"><exclusion pattern=\"^http://ojp\\.nationalrail\\.co\\.uk/service/\"/><rule from=\"^http://(?:www\\.)?nationalrail\\.co\\.uk/images/\" to=\"https://ojp.nationalrail.co.uk/redesign/default/images/\"/><rule from=\"^http://img\\.nationalrail\\.co\\.uk/\" to=\"https://d7cizd44vlm94.cloudfront.net/\"/><rule from=\"^http://js\\.nationalrail\\.co\\.uk/\" to=\"https://d2uncb19xzxhzx.cloudfront.net/\"/><rule from=\"^http://ojp\\.nationalrail\\.co\\.uk/\" to=\"https://ojp.nationalrail.co.uk/\"/></ruleset>", "<ruleset name=\"National Renewable Energy Laboratory (partial)\" f=\"National-Renewable-Energy-Laboratory.xml\"><rule from=\"^http://(www\\.)?nrel\\.gov/(?:((?:news/features/|sustainable_nrel/)?images)1?|((?:data/pix/)?includes|includes_tableless))/\" to=\"https://$1nrel.gov/$2$3/\"/><rule from=\"^http://rredc\\.nrel\\.gov/gifs/\" to=\"https://rredc.nrel.gov/gifs/\"/></ruleset>", "<ruleset name=\"National Research Council Canada\" default_off=\"failed ruleset test\" f=\"National-Research-Council-Canada.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Retail Federation (partial)\" platform=\"mixedcontent\" f=\"National-Retail-Federation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSF.gov (partial)\" f=\"National-Science-Foundation.xml\"><exclusion pattern=\"^http://www\\.nsf\\.gov/(?:$|\\?|awardsearch|index\\.jsp|statistics)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(fastlane|fldemo)\\.nsf\\.gov/\" to=\"https://www.$1.nsf.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Security Agency\" platform=\"mixedcontent\" f=\"National-Security-Agency.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Snow and Ice Data Center\" f=\"National-Snow-and-Ice-Data-Center.xml\"><rule from=\"^http://(?:((?:staging\\.)?extranet\\.|(?:integration\\.|qa\\.|staging\\.)?igloo\\.|integration\\.|monitor\\.|qa\\.|staging\\.)|www\\.)?nsidc\\.org/\" to=\"https://$1nsidc.org/\"/></ruleset>", "<ruleset name=\"National University of Ireland (mismatches)\" default_off=\"self-signed\" f=\"National-University-of-Ireland-mismatches.xml\"><rule from=\"^http://www\\.library\\.nuigalway\\.ie/\" to=\"https://www.library.nuigalway.ie/\"/></ruleset>", "<ruleset name=\"National University of Ireland (partial)\" f=\"National-University-of-Ireland.xml\"><securecookie host=\"^(?:www\\.)?deri\\.ie$\" name=\".*\"/><rule from=\"^http://nuigalway\\.ie/\" to=\"https://www.nuigalway.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Archives.gov.uk (partial)\" f=\"NationalArchivesGovUK.xml\"><exclusion pattern=\"^http://discovery\\.nationalarchives\\.gov\\.uk/+(?!Content/compiled-css/|Content/[Ii]mages/|SearchUI/Content/|favicon\\.ico|register$|sign-in$)\"/><securecookie host=\".\\.nationalarchives\\.gov\\.uk$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Capital Authority\" f=\"NationalCapitalAuthority.xml\"><rule from=\"^http://(?:www\\.)?nationalcapital\\.gov\\.au/\" to=\"https://www.nationalcapital.gov.au/\"/></ruleset>", "<ruleset name=\"National E-Health Transition Authority\" f=\"NationalE-HealthTransitionAuthority.xml\"><rule from=\"^http://(?:www\\.)?nehta\\.gov\\.au/\" to=\"https://www.nehta.gov.au/\"/></ruleset>", "<ruleset name=\"National Ethics Application Form\" f=\"NationalEthicsApplicationForm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Health and Medical Research Council\" f=\"NationalHealthandMedicalResearchCouncil.xml\"><rule from=\"^http://(?:www\\.)?nhmrc\\.gov\\.au/\" to=\"https://www.nhmrc.gov.au/\"/></ruleset>", "<ruleset name=\"National Library of Australia\" f=\"NationalLibraryofAustralia.xml\"><rule from=\"^http://(?:www\\.)?nla\\.gov\\.au/\" to=\"https://www.nla.gov.au/\"/></ruleset>", "<ruleset name=\"NationalLottery\" f=\"NationalLottery.xml\"><securecookie host=\"^(?:.+\\.)?national-lottery\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?national-lottery\\.co\\.uk/\" to=\"https://www.national-lottery.co.uk/\"/></ruleset>", "<ruleset name=\"Portrait.gov.au (partial)\" f=\"NationalPortraitGallery.xml\"><exclusion pattern=\"^http://(?:www\\.)?portrait\\.gov\\.au/+(?!css/|favicon\\.ico|files/|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NationalReview.com (partial)\" default_off=\"failed ruleset test\" f=\"NationalReview.com.xml\"><rule from=\"^http://(nr-media-01|www2)\\.nationalreview\\.com/\" to=\"https://$1.nationalreview.com/\"/><rule from=\"^http://(www\\.)?nationalreview\\.com/(images|sites)/\" to=\"https://www.nationalreview.com/$2/\"/></ruleset>", "<ruleset name=\"Pro Choice.org (partial)\" f=\"National_Abortion_Federation.xml\"><exclusion pattern=\"^http://prochoice\\.org/+(?!wp-content/)\"/><securecookie host=\"^\\.prochoice\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Academy of Engineering\" f=\"National_Academy_of_Engineering.xml\"><securecookie host=\"^(?:.*\\.)?nae\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nae\\.edu/\" to=\"https://www.nae.edu/\"/></ruleset>", "<ruleset name=\"National Archives.gov.uk (problematic)\" default_off=\"expired, untrusted root\" f=\"National_Archives.gov.uk-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Bureau of Economic Research\" f=\"National_Bureau_of_Economic_Research.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Consumer Protection Week\" f=\"National_Consumer_Protection_Week.xml\"><rule from=\"^http://((?:military\\.)?ncpw|protecciondelconsumidor)\\.gov/\" to=\"https://www.$1.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Geographic.com (mismatched)\" default_off=\"mismatched\" f=\"National_Geographic.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Geographic (partial)\" default_off=\"failed ruleset test\" f=\"National_Geographic.xml\"><exclusion pattern=\"^http://m?shop\\.nationalgeographic\\.com/(?!css/|favicon\\.ico|html/|images/|javascript/|ngs/(?:m/)?myaccount/login\\.jsp|omniture/|pwr/)\"/><securecookie host=\"^\\.nationalgeographic\\.com$\" name=\"^(?:gpv_p\\d+|s_\\w+|__utm)\\w$\"/><securecookie host=\"^donate\\.nationalgeographic\\.com$\" name=\".+\"/><rule from=\"^https?://(?:www\\.)?nationalgeographic\\.com/($|\\?|leaderboard/quiz/)\" to=\"https://www-s.nationalgeographic.com/$1\"/><rule from=\"^http://(channel|donate|genographic|media-(?:channel|members|mmdb|yourshot)|members|metrics|mmdb|m?shop|(?:stage\\.)?natgeotv|www-s)\\.nationalgeographic\\.com/\" to=\"https://$1.nationalgeographic.com/\"/><rule from=\"^http://metric\\.nationalgeographic\\.com/\" to=\"https://nationalgeographic-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"National Grid (partial)\" f=\"National_Grid.xml\"><rule from=\"^http://nationalgrid\\.com/\" to=\"https://www.nationalgrid.com/\"/><rule from=\"^http://beforeyoudig\\.nationalgrid\\.com/\" to=\"https://www.beforeyoudig.nationalgrid.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Institute for Social Media\" f=\"National_Institute_for_Social_Media.xml\"><securecookie host=\"^(?:w*\\.)?nismonline\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NOAA.gov (partial)\" f=\"National_Oceanic_and_Atmospheric_Administration.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ncdc\\.noaa\\.gov/\" to=\"https://www.ncdc.noaa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Park Service (partial)\" f=\"National_Park_Service.xml\"><securecookie host=\"^.+\\.nps\\.gov$\" name=\".+\"/><rule from=\"^http://(irma|science\\.nature|ncptt|npssa|parkplanning|pepc|zionpermits)\\.nps\\.gov/\" to=\"https://$1.nps.gov/\"/></ruleset>", "<ruleset name=\"National Priorities.org\" f=\"National_Priorities.org.xml\"><rule from=\"^http://((?:media|static|www)\\.)?nationalpriorities\\.org/\" to=\"https://$1nationalpriorities.org/\"/></ruleset>", "<ruleset name=\"National Transport Safety Board\" default_off=\"failed ruleset test\" f=\"National_Transport_Safety_Board.xml\"><rule from=\"^http://(?:www\\.)?ntsb\\.gov/\" to=\"https://www.ntsb.gov/\"/></ruleset>", "<ruleset name=\"National Travel Health Network and Centre (NaTHNaC)\" f=\"National_Travel_Health_Network_and_Centre.xml\"><rule from=\"^http://nathnac\\.org/\" to=\"https://www.nathnac.org/\"/><rule from=\"^http://([^/:@]+)?\\.nathnac\\.org/\" to=\"https://$1.nathnac.org/\"/></ruleset>", "<ruleset name=\"National Wildlife Foundation (partial)\" default_off=\"failed ruleset test\" f=\"National_Wildlife_Foundation.xml\"><securecookie host=\"^www\\.nwf\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nwf\\.org/\" to=\"https://www.nwf.org/\"/><rule from=\"^http://online\\.nwf\\.org/(?!site/PageServer)\" to=\"https://online.nwf.org/\"/></ruleset>", "<ruleset name=\"Nationale-IT-Security-Monitor.nl\" default_off=\"self-signed\" f=\"Nationale-IT-Security-Monitor.nl.xml\"><rule from=\"^http://(?:www\\.)?nationale-it-security-monitor\\.nl/\" to=\"https://nationale-it-security-monitor.nl/\"/></ruleset>", "<ruleset name=\"nationalserviceresources.org\" default_off=\"failed ruleset test\" f=\"Nationalserviceresources.org.xml\"><rule from=\"^http://(?:www\\.)?(americorpsconnect|nationalserviceresources)\\.org/\" to=\"https://www.$1.org/\"/></ruleset>", "<ruleset name=\"Nationwide Building Society (partial)\" default_off=\"failed ruleset test\" f=\"Nationwide.xml\"><securecookie host=\"^olb2\\.nationet\\.com$\" name=\".+\"/><securecookie host=\"^\\.nationwide\\.co\\.uk$\" name=\"^s_\\w\\w$\"/><securecookie host=\"^(?:\\.?onlinebanking|savings|securemail)\\.nationwide\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.nationwide-jobs\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://olb2\\.nationet\\.com/\" to=\"https://olb2.nationet.com/\"/><rule from=\"^http://metrics\\.nationwide\\.co\\.uk/\" to=\"https://nationwide-co-uk.d2.sc.omtrdc.net/\"/><rule from=\"^http://(onlinebanking|savings|securemail)\\.nationwide\\.co\\.uk/\" to=\"https://$1.nationwide.co.uk/\"/><rule from=\"^http://(?:www\\.)?nationwide-jobs\\.co\\.uk/\" to=\"https://www.nationwide-jobs.co.uk/\"/><rule from=\"^http://olb\\.nationwide(international\\.com|uk\\.ie)/\" to=\"https://olb.nationwide$1/\"/></ruleset>", "<ruleset name=\"Nativo.net (partial)\" f=\"Nativo.net.xml\"><securecookie host=\"^(?:admin|beta)\\.nativo\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?nativo\\.net/\" to=\"https://$1nativo.net/\"/><rule from=\"^http://(admin|beta)\\.nativo\\.net/\" to=\"https://$1.nativo.net/\"/></ruleset>", "<ruleset name=\"National American Arab Nursing Association\" default_off=\"failed ruleset test\" f=\"Natl-American-Arab-Nursing-Assn.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://www\\.)n-aana\\.org/\" to=\"https://n-aana.org/\"/></ruleset>", "<ruleset name=\"National Children's Leukemia Foundation\" default_off=\"failed ruleset test\" f=\"Natl-Childrens-Leukemia-Foundation.xml\"><rule from=\"^http://(?:www\\.)?leukemiafoundation\\.org/\" to=\"https://www.leukemiafoundation.org/\"/></ruleset>", "<ruleset name=\"National Eating Disorders Association\" f=\"Natl-Eating-Disorders-Assoc.xml\"><exclusion pattern=\"^http://(?:www.)?nationaleatingdisorders\\.org/photo-gallery/\"/><exclusion pattern=\"^http://(?:www.)?nationaleatingdisorders\\.org/cmtadmin/\"/><rule from=\"^(?:http://(?:www\\.)?|https://)nationaleatingdisorders\\.org/\" to=\"https://www.nationaleatingdisorders.org/\"/></ruleset>", "<ruleset name=\"National Federation of the Blind (partial)\" f=\"Natl-Federation-of-the-Blind.xml\"><rule from=\"^http://(?:www\\.)?nfb\\.org/\" to=\"https://nfb.org/\"/></ruleset>", "<ruleset name=\"National Suicide Prevention Lifeline\" platform=\"mixedcontent\" f=\"Natl-Suicide-Prevention-Lifeline.xml\"><rule from=\"^http://(?:www\\.)?suicidepreventionlifeline\\.org/\" to=\"https://www.suicidepreventionlifeline.org/\"/></ruleset>", "<ruleset name=\"National Vulvodynia Association\" f=\"Natl-Vulvodynia-Association.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://)nva\\.org/\" to=\"https://www.nva.org/\"/></ruleset>", "<ruleset name=\"Nattstad.se\" platform=\"mixedcontent\" f=\"Nattstad.se.xml\"><rule from=\"^http://www\\.nattstad\\.se/\" to=\"https://www.nattstad.se/\"/><rule from=\"^http://nattstad\\.se/\" to=\"https://www.nattstad.se/\"/></ruleset>", "<ruleset name=\"Natural Environment Research Council (partial)\" default_off=\"failed ruleset test\" f=\"Natural-Environment-Research-Council.xml\"><securecookie host=\"^hds\\.nerc\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://hds\\.nerc\\.ac\\.uk/\" to=\"https://hds.nerc.ac.uk/\"/></ruleset>", "<ruleset name=\"Natural Message.com\" f=\"Natural_Message.com.xml\"><rule from=\"^http://www\\.naturalmessage\\.com/\" to=\"https://naturalmessage.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Natural Resources.Wales\" f=\"Natural_Resources.Wales.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Natural Skin Shop\" f=\"Natural_Skin_Shop.xml\"><securecookie host=\"^.*\\.naturalskinshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nature (partial)\" f=\"Nature.xml\"><securecookie host=\"^secure\\.nature\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nature\\.com/(cimages/|common/|favicon\\.ico|info/|myaccount|(?:view/(?:\\w+/)?)?(?:imag|styl)es/)\" to=\"https://secure.nature.com/$1\"/><rule from=\"^http://s(ecure|tatus)\\.nature\\.com/\" to=\"https://s$1.nature.com/\"/></ruleset>", "<ruleset name=\"Nature Shop (partial)\" f=\"Nature_Shop.xml\"><rule from=\"^http://(www\\.)?natureshop\\.com/(cart/|Content/|s/|secure/|Support/index|upload/)\" to=\"https://$1natureshop.com/$2\"/></ruleset>", "<ruleset name=\"Naturvardsverket.se\" f=\"Naturvardsverket.se.xml\"><rule from=\"^http://www\\.naturvardsverket\\.se/\" to=\"https://www.naturvardsverket.se/\"/><rule from=\"^http://naturvardsverket\\.se/\" to=\"https://naturvardsverket.se/\"/></ruleset>", "<ruleset name=\"Naughty Dog\" default_off=\"failed ruleset test\" f=\"Naughty_Dog.xml\"><securecookie host=\"^(?:w*\\.)?naughtydog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naughty Show Reviews.com (partial)\" default_off=\"broken\" f=\"Naughty_Show_Reviews.com.xml\"><securecookie host=\"^\\.naughtyshowreviews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naukri\" f=\"Naukri.xml\"><rule from=\"^http://login\\.naukri\\.com/\" to=\"https://login.naukri.com/\"/></ruleset>", "<ruleset name=\"Nautil.us (partial)\" f=\"Nautil.us.xml\"><rule from=\"^http://shop\\.nautil\\.us/\" to=\"https://shop.nautil.us/\"/><rule from=\"^http://static\\.nautil\\.us/\" to=\"https://d3chnh8fr629l6.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Naver.com (partial)\" f=\"Naver.com.xml\"><exclusion pattern=\"^http://crossmedia\\.naver\\.com/+(?!css/|favicon\\.ico|renewal_\\d+/)\"/><exclusion pattern=\"^http://help\\.checkout\\.naver\\.com/+(?!fpsfiles/|static/)\"/><exclusion pattern=\"^http://partners\\.naver\\.com/+(?!css/|img/)\"/><exclusion pattern=\"^http://ips\\.storefarm\\.naver\\.com/+(?!css/)\"/><securecookie host=\"^(?:(?:admin\\.|order\\.)?checkout|sell\\.storefarm)\\.naver\\.com$\" name=\".+\"/><rule from=\"^http://(calendar|(?:(?:admin|help|order)\\.)?checkout|crossmedia|happybean|help|(?:m\\.)?mail[12]?|ssl\\.mileage|nid|static\\.nid|partners|img\\.searchad|sell\\.shop|(?:ips|sell)\\.storefarm|submit)\\.naver\\.com/\" to=\"https://$1.naver.com/\"/><rule from=\"^http://(?:ssl\\.)?mileage\\.naver\\.com/\" to=\"https://ssl.mileage.naver.com/\"/></ruleset>", "<ruleset name=\"Naver.net (partial)\" f=\"Naver.net.xml\"><rule from=\"^http://img\\.calendar\\.naver\\.net/\" to=\"https://img.calendar.naver.net/\"/><rule from=\"^http://(static\\.checkout|static\\.mileage)\\.naver\\.net/\" to=\"https://ssl.pstatic.net/$1/\"/></ruleset>", "<ruleset name=\"Naver Corp.com\" f=\"Naver_Corp.com.xml\"><rule from=\"^http://(?:www\\.)?navercorp\\.com/\" to=\"https://www.navercorp.com/\"/></ruleset>", "<ruleset name=\"Navigant Research.com (partial)\" f=\"Navigant_Research.com.xml\"><rule from=\"^http://(www\\.)?navigantresearch\\.com/(?=favicon\\.ico|wordpress/wp-content/|wordpress/wp-login\\.php|wp-assets/|wp-content/)\" to=\"https://$1navigantresearch.com/\"/></ruleset>", "<ruleset name=\"Nawaat\" f=\"Nawaat.xml\"><securecookie host=\"^nawaat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naytev.com (partial)\" f=\"Naytev.com.xml\"><rule from=\"^http://naytev\\.com/\" to=\"https://www.naytev.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nazwa.pl (partial)\" f=\"Nazwa.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ncloud.dk\" default_off=\"failed ruleset test\" f=\"Ncloud.dk.xml\"><rule from=\"^http://partner\\.ncloud\\.dk/\" to=\"https://partner.ncloud.dk/\"/></ruleset>", "<ruleset name=\"Ndr.de\" f=\"Ndr.de.xml\"><securecookie host=\"^(www\\.|static\\.|hbbtv\\.|ard\\.|daserste\\.)?ndr\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neal Poole\" f=\"Neal_Poole.xml\"><rule from=\"^http://(?:www\\.)?nealpoole\\.com/\" to=\"https://nealpoole.com/\"/></ruleset>", "<ruleset name=\"Nearbuysystems.com\" f=\"Nearbuysystems.com.xml\"><securecookie host=\"^luneta\\.nearbuysystems\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NearlyFreeSpeech.NET\" f=\"NearlyFreeSpeech.NET.xml\"><securecookie host=\"^\\.members\\.nearlyfreespeech\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeatoShop.com\" f=\"NeatoShop.xml\"><securecookie host=\"^\\.neatoshop\\.com$\" name=\".*\"/><rule from=\"^http://(?:static\\.|(www\\.))?neatoshop\\.com/\" to=\"https://$1neatoshop.com/\"/></ruleset>", "<ruleset name=\"Neave.tv\" default_off=\"redirects to http\" f=\"Neave.tv.xml\"><securecookie host=\"^\\.neave\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebelwelt.net\" f=\"Nebelwelt.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neběží.cz\" f=\"Nebezi.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebula\" f=\"Nebula.xml\"><securecookie host=\"^(?:www)?\\.nebula\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Necessary and Proportionate.org\" f=\"Necessary_and_Proportionate.org.xml\"><rule from=\"^http://(\\w\\w\\.|www\\.)?necessaryandproportionate\\.(net|org)/\" to=\"https://$1necessaryandproportionate.$2/\"/></ruleset>", "<ruleset name=\"Neck2Neck\" f=\"Neck2Neck.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northeast Credit Union\" platform=\"mixedcontent\" f=\"Necuhb.xml\"><rule from=\"^http://([^/:@]*)\\.necuhb\\.org/\" to=\"https://$1.necuhb.org/\"/><rule from=\"^https://(www\\.)?necu\\.org/\" to=\"https://$1necu.org/\"/></ruleset>", "<ruleset name=\"NedLinux.com\" f=\"NedLinux.com.xml\"><rule from=\"^http://(?:www\\.)?nccc\\.nl/\" to=\"https://www.nccc.nl/\"/><rule from=\"^http://(?:www\\.)?nedlinux\\.com/\" to=\"https://nedlinux.com/\"/><rule from=\"^http://webmail\\.nedlinux\\.com/\" to=\"https://webmail.nedlinux.com/\"/><securecookie host=\"^www\\.nccc\\.nl$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?nedlinux\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"NL Overheid\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Nederland.xml\"><rule from=\"^http://(?:www\\.)?([\\w-]+)\\.nl/\" to=\"https://www.$1.nl/\"/></ruleset>", "<ruleset name=\"NeedMoreHits.com\" default_off=\"mismatched\" f=\"NeedMoreHits.com.xml\"><securecookie host=\"^www\\.needmorehits\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?needmorehits\\.com/\" to=\"https://www.needmorehits.com/\"/></ruleset>", "<ruleset name=\"Neelwafurat.com\" platform=\"mixedcontent\" f=\"Neelwafurat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NegativeSum.net\" default_off=\"expired\" f=\"NegativeSum.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NegotiatingSalary.com\" default_off=\"failed ruleset test\" f=\"NegotiatingSalary.com.xml\"><securecookie host=\"^\\.negotiatingsalary.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neko.im\" f=\"Neko.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelly.com\" default_off=\"failed ruleset test\" f=\"Nelly.com.xml\"><rule from=\"^http://www\\.nelly\\.com/\" to=\"https://nelly.com/\"/><rule from=\"^http://nelly\\.com/\" to=\"https://nelly.com/\"/></ruleset>", "<ruleset name=\"Nelonen.fi (mixed videos)\" platform=\"mixedcontent\" f=\"Nelonen.fi-mixedvideo.xml\"><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/(?:crossdomain\\.xml|utils/video_config/geoblock\\.php)\"/><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/utils/virheenmaaritys/(?:\\w+\\.jpg|css/|img/|js/|save\\.php)\"/><securecookie host=\"^www\\.nelonen\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelonen.fi (partial)\" platform=\"mixedcontent\" f=\"Nelonen.fi.xml\"><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/crossdomain\\.xml\"/><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/utils/(?!virheenmaaritys/(?:\\w+\\.jpg|css/|img/|js/|save\\.php))\"/><securecookie host=\"^\\.nelonen\\.fi$\" name=\"^(?:adptset|enzgd|evid1st|evid(?:_ref|_set)?|__utm\\w)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelonmedia.fi (partial)\" f=\"Nelonenmedia.fi.xml\"><exclusion pattern=\"^http://sso\\.nelonenmedia\\.fi/logout(?:$|[?/])\"/><securecookie host=\"^crossbow\\.nelonenmedia\\.fi$\" name=\".+\"/><rule from=\"^http://(crossbow|sso)\\.nelonenmedia\\.fi/\" to=\"https://$1.nelonenmedia.fi/\"/></ruleset>", "<ruleset name=\"NemID.nu\" f=\"NemID.xml\"><securecookie host=\"^(?:www)?\\.nemid\\.nu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NemLog-in.dk\" f=\"NemLog-in.dk.xml\"><securecookie host=\"^nemlog-in\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nemertes.com\" f=\"Nemertes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neo-interactive.hu\" default_off=\"failed ruleset test\" f=\"Neo-interactive.hu.xml\"><securecookie host=\"neo-interactive\\.hu$\" name=\".+\"/><rule from=\"^http://([^@:/]*)(\\.?)neo-interactive\\.hu/\" to=\"https://$1$2neo-interactive.hu/\"/></ruleset>", "<ruleset name=\"Neo900.org (partial)\" f=\"Neo900.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoBux.com (partial)\" f=\"NeoBux.com.xml\"><exclusion pattern=\"^http://www\\.neobux\\.com/+(?!favicon\\.ico|m/(?:l|r|rpp|run)(?:$|[?/]))\"/><securecookie host=\"^\\.neobux\\.com$\" name=\"^incap_ses_[\\d_]+$\"/><securecookie host=\"^www\\.neobux\\.com$\" name=\"^___utm\\w+$\"/><rule from=\"^http://(img\\.|www\\.)?neobux\\.com/\" to=\"https://$1neobux.com/\"/><rule from=\"^http://cache1\\.neodevlda\\.netdna-cdn\\.com/\" to=\"https://cache1-neodevlda.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"NeoCities.org\" f=\"NeoCities.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoDrive.co\" default_off=\"expired\" f=\"NeoDrive.co.xml\"><rule from=\"^http://www\\.neodrive\\.co/\" to=\"https://neodrive.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoOffice.org (partial)\" f=\"NeoOffice.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?neooffice\\.org/(?!default\\.css|favicon\\.png|images/|neojava/\\w\\w/(?:contact|download|(?:old)?langpackdownload|mirrors)\\.php)\"/><exclusion pattern=\"^http://neowiki\\.neooffice\\.org/(?!index\\.php/Special:Userlogin|skins/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoSmart.net\" f=\"NeoSmart.com.xml\"><securecookie host=\"^\\.?(?:secure\\.)?neosmart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?neosmart\\.net/\" to=\"https://neosmart.net/\"/><rule from=\"^http://secure\\.neosmart\\.net/\" to=\"https://secure.neosmart.net/\"/></ruleset>", "<ruleset name=\"Neobits (partial)\" f=\"Neobits.xml\"><rule from=\"^http://(www\\.)?neobits\\.com/(css|images|img)/\" to=\"https://$1neobits.com/$1/\"/></ruleset>", "<ruleset name=\"neobookings\" f=\"Neobookings.xml\"><rule from=\"^http://((?:admin|secure|webservices|www)\\.)?neobookings\\.com/\" to=\"https://$1neobookings.com/\"/><rule from=\"^http://demo\\.neobookings\\.com/\" to=\"https://secure.neobookings.com/es/step-1\"/></ruleset>", "<ruleset name=\"neomailbox\" f=\"Neomailbox.xml\"><securecookie host=\"^(?:w*\\.)?neomailbox\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?neomailbox\\.(com|net)/\" to=\"https://$1neomailbox.$2/\"/></ruleset>", "<ruleset name=\"NeonMob.com\" f=\"NeonMob.com.xml\"><securecookie host=\"^(?:www)?\\.neonmob\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?neonmob\\.com/\" to=\"https://www.neonmob.com/\"/></ruleset>", "<ruleset name=\"Neos.io (partial)\" f=\"Neos.io.xml\"><securecookie host=\"\\.neos\\.io$\" name=\"^(?:__cfduid|cf_clearance)\"/><securecookie host=\"discuss\\.neos\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neoseeker\" f=\"Neoseeker.xml\"><securecookie host=\"^\\.neoseeker\\.com$\" name=\".+\"/><rule from=\"^http://i(?:mg)?\\.neoseeker\\.com/\" to=\"https://img.neoseeker.com/\"/><rule from=\"^http://cdn\\.staticneo\\.com/\" to=\"https://cdn.staticneo.com/\"/><rule from=\"^http://(\\w+\\.)?neoseeker\\.com/\" to=\"https://$1neoseeker.com/\"/></ruleset>", "<ruleset name=\"Neowin.net (partial)\" f=\"Neowin.net.xml\"><rule from=\"^http://(?:www\\.)?neowin\\.net/(?=css/|favicon\\.ico|forum(?:$|[?/])|images/|js/)\" to=\"https://www.neowin.net/\"/></ruleset>", "<ruleset name=\"nerdpol.ch\" f=\"Nerdpol.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerds Nook.com\" f=\"Nerds_Nook.com.xml\"><securecookie host=\"^\\.nerdsnook\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerf NOW\" f=\"Nerf_NOW.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nero.com (partial)\" f=\"Nero.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nervous.io\" f=\"Nervous.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nervous Systems.org\" f=\"Nervous_Systems.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nessus.org (partial)\" f=\"Nessus.org.xml\"><securecookie host=\"^discussions\\.nessus\\.org$\" name=\".+\"/><rule from=\"^http://discussions\\.nessus\\.org/\" to=\"https://discussions.nessus.org/\"/></ruleset>", "<ruleset name=\"Nest.com\" f=\"Nest.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nesterov.pw\" f=\"Nesterov.pw.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nestlé (partial)\" f=\"Nestle.xml\"><exclusion pattern=\"^http://(?:www\\.)?nestle\\.com/(?![aA]sset-library/|skin-engine-shared/|staticlocal/)\"/><securecookie host=\"^hosting\\.nestle\\.com$\" name=\".+\"/><rule from=\"^http://((?:eur-tools|hosting|www)\\.)?nestle\\.com/\" to=\"https://$1nestle.com/\"/><rule from=\"^http://(?:www\\.)?nestle\\.de/(_layouts/|DownloadPDF\\.ashx|Helper/|MetaNavigation/|Style Library/)\" to=\"https://www.nestle.de/$1\"/></ruleset>", "<ruleset name=\"Nestle Purina Careers.com\" f=\"Nestle_Purina_Careers.com.xml\"><securecookie host=\"^(?:www)?\\.nestlepurinacareers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nestlé Schöller (partial)\" f=\"Nestle_Scholler.xml\"><rule from=\"^http://(?:www\\.)?schoeller\\.de/(NR|schoeller/Images)/\" to=\"https://www.schoeller.de/$1/\"/></ruleset>", "<ruleset name=\"Net-A-Porter.com (partial)\" f=\"Net-A-Porter.com.xml\"><securecookie host=\".*\\.net-a-porter\\.com$\" name=\".+\"/><rule from=\"^http://net-a-porter\\.com/\" to=\"https://www.net-a-porter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Applications.com (partial)\" f=\"Net-Applications.xml\"><securecookie host=\".*\\.netapplications\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Backup.com\" f=\"Net-Backup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Communities (partial)\" default_off=\"failed ruleset test\" f=\"Net-Communities.xml\"><rule from=\"^http://cdn\\.itproportal\\.com/\" to=\"https://itpp.s3.amazonaws.com/\"/><rule from=\"^http://ad\\.netcommunities\\.com/\" to=\"https://id.adnxs.com/\"/></ruleset>", "<ruleset name=\"Net Competition.org\" default_off=\"mismatched, self-signed\" f=\"Net-Competition.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P3P Wiz.com\" default_off=\"missing certificate chain\" f=\"Net-Dynamics.xml\"><securecookie host=\"^(?:.*\\.)?p3pwiz.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Housting.de (partial)\" f=\"Net-Housting.de.xml\"><securecookie host=\"^(?:www\\.)?net-housting\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:net-)?housting\\.de/\" to=\"https://$1net-housting.de/\"/></ruleset>", "<ruleset name=\"Net-Mobile.com (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Net-Mobile.com.xml\"><securecookie host=\"^www\\.net-mobile\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Results (partial)\" f=\"Net-Results.xml\"><securecookie host=\"^\\.net-results\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:apps|\\.?secure)\\.net-results\\.com$\" name=\".+\"/><rule from=\"^http://(sc\\.)?cdnma\\.com/\" to=\"https://$1cdnma.com/\"/><rule from=\"^http://(apps|secure)\\.net-results\\.com/\" to=\"https://$1.net-results.com/\"/><rule from=\"^http://nr7\\.us/\" to=\"https://nr7.us/\"/></ruleset>", "<ruleset name=\"Net-Safe\" f=\"Net-Safe.xml\"><securecookie host=\"^\\.net-safe\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"net-security.org\" default_off=\"broken\" f=\"Net-security.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetApp.com (mismatches)\" default_off=\"mismatched\" f=\"NetApp-mismatches.xml\"><securecookie host=\"^\\.netapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetApp.com (partial)\" f=\"NetApp.xml\"><securecookie host=\"^\\.netapp\\.com$\" name=\"^VISITORID$\"/><securecookie host=\"^\\w+\\.netapp\\.com$\" name=\".+\"/><rule from=\"^http://netapp\\.com/\" to=\"https://www.netapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetBSD.org (partial)\" f=\"NetBSD.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetBeans.org (partial)\" f=\"NetBeans.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.netbeans\\.org/\" to=\"https://netbeans.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetBet\" f=\"NetBet.xml\"><securecookie host=\"^betnet\\.fr$\" name=\".+\"/><securecookie host=\"^www\\.betnet\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetClean.com (partial)\" f=\"NetClean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetCologne.de (partial)\" f=\"NetCologne.xml\"><securecookie host=\"^tracking\\.netcologne\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetEase.com\" f=\"NetEase.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netFORUMpro.com\" default_off=\"failed ruleset test\" f=\"NetFORUMpro.com.xml\"><securecookie host=\"^(?:prous01\\.|www\\.)?netforumpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetFronts (mismatches)\" default_off=\"mismatch\" f=\"NetFronts-mismatches.xml\"><securecookie host=\"^.*\\.netfronts\\.com$\" name=\".*\"/><rule from=\"^http://(?:(support\\.)|www\\.)?netfronts\\.com/\" to=\"https://$1netfronts.com/\"/></ruleset>", "<ruleset name=\"NetFronts (partial)\" default_off=\"failed ruleset test\" f=\"NetFronts.xml\"><securecookie host=\"^order\\.hosting-advantage\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?hosting-advantage\\.com/\" to=\"https://$1hosting-advantage.com/\"/></ruleset>", "<ruleset name=\"NetGo.hu\" f=\"NetGo.hu.xml\"><securecookie host=\"^www\\.netgo\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.netgo\\.hu/\" to=\"https://www.netgo.hu/\"/></ruleset>", "<ruleset name=\"NetIQ.com (partial)\" f=\"NetIQ.xml\"><securecookie host=\"^(?:www)?\\.netiq\\.com$\" name=\".+\"/><rule from=\"^http://netiq\\.com/\" to=\"https://www.netiq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetLib.re\" f=\"NetLib.re.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetLock (partial)\" f=\"NetLock.xml\"><rule from=\"^http://(www\\.)?netlock\\.hu/(\\S+)\" to=\"https://$1netlock.hu/$2\"/></ruleset>", "<ruleset name=\"NetMarketShare.com\" f=\"NetMarketShare.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetMediaEurope\" default_off=\"expired, mismatch\" f=\"NetMediaEurope.xml\"><securecookie host=\"^quiz\\.itespresso\\.fr$\" name=\".*\"/><securecookie host=\"^resourcecentre\\.techweekeurope\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(itespresso|silicon|theinquirer)\\.fr/(favicon\\.ico|wp-(?:content|includes)/)\" to=\"https://$1.fr/$2\"/><rule from=\"^http://quiz\\.itespresso\\.fr/\" to=\"https://quiz.itespresso.fr/\"/><rule from=\"^http://(?:www\\.)?netmediaeurope\\.co\\.uk/\" to=\"https://www.netmediaeurope.co.uk/\"/><rule from=\"^http://(?:www\\.)?netmediaeurope\\.fr/\" to=\"https://netmediaeurope.fr/\"/><rule from=\"^http://resourcecentre\\.techweekeurope\\.co\\.uk/\" to=\"https://resourcecentre.techweekeurope.co.uk/\"/><rule from=\"^http://(?:www\\.)?techweekeurope\\.fr/\" to=\"https://techweekeurope.fr/\"/></ruleset>", "<ruleset name=\"NetMile.co.jp\" default_off=\"failed ruleset test\" f=\"NetMile.co.jp.xml\"><securecookie host=\"^www\\.netmile\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.netmile\\.co\\.jp/\" to=\"https://www.netmile.co.jp/\"/></ruleset>", "<ruleset name=\"NetNewsCheck.com (partial)\" f=\"NetNewsCheck.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?netnewscheck\\.com/+(?!images/|resource/)\"/><rule from=\"^http://netnewscheck\\.com/\" to=\"https://www.netnewscheck.com/\"/><rule from=\"^http://assets\\.netnewscheck\\.com/\" to=\"https://secure.newscheckmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetNow.co (false MCB)\" f=\"NetNow.co-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?netnow\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetNow.co (partial)\" f=\"NetNow.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?netnow\\.co/+(?!favicon\\.ico|wp-content/|wp-login\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netPR (partial)\" f=\"NetPR.xml\"><securecookie host=\"^secure\\.netpr\\.pl$\" name=\".*\"/><rule from=\"^http://secure\\.netpr\\.pl/\" to=\"https://secure.netpr.pl/\"/></ruleset>", "<ruleset name=\"NetPivotal\" default_off=\"failed ruleset test\" f=\"NetPivotal.xml\"><securecookie host=\"^www\\.netpivotal\\.(?:co\\.uk|com|eu)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netpivotal\\.(co\\.uk|com|eu)/\" to=\"https://www.netpivotal.$1/\"/><rule from=\"^http://alpha\\.netpivotal\\.com/\" to=\"https://alpha.netpivotal.com/\"/></ruleset>", "<ruleset name=\"NetS.ec\" f=\"NetS.ec.xml\"><securecookie host=\"^\\.nets\\.ec$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetSPI.com\" f=\"NetSPI.com.xml\"><securecookie host=\"^(?:www\\.)?netspi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetSeer\" f=\"NetSeer.xml\"><securecookie host=\"^\\.netseer\\.com$\" name=\"^netseer_v3_(?:gp|vi)$\"/><securecookie host=\"^pixel\\.netseer\\.com$\" name=\".+\"/><rule from=\"^http://(cmi|pixel)\\.netseer\\.com/\" to=\"https://$1.netseer.com/\"/><rule from=\"^http://(?:cl|contextlinks|leadback|media|staging)\\.netseer\\.com/\" to=\"https://leadback.netseer.com/\"/></ruleset>", "<ruleset name=\"NetShelter (partial)\" f=\"NetShelter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetSuite.com (partial)\" f=\"NetSuite.com.xml\"><securecookie host=\"^\\.?(?:checkout|forms|system)\\.netsuite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetWorks Group.com\" f=\"NetWorks_Group.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ookla\" default_off=\"mismatched\" f=\"Net_Index.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?netindex\\.com/\" to=\"https://netindex.com/\"/></ruleset>", "<ruleset name=\"Net Mobile\" f=\"Net_Mobile.xml\"><rule from=\"^http://ssl\\.net-m\\.net/\" to=\"https://ssl.net-m.net/\"/></ruleset>", "<ruleset name=\"Net Mundial.net\" default_off=\"failed ruleset test\" f=\"Net_Mundial.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Nanny\" f=\"Net_Nanny.xml\"><securecookie host=\"^(?:www\\.)?netnanny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Semi.com\" default_off=\"404\" f=\"Net_Semi.xml\"><securecookie host=\"^\\.?netsemi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netsemi\\.com/\" to=\"https://netsemi.com/\"/></ruleset>", "<ruleset name=\"netbank.de\" f=\"Netbank.de.xml\"><securecookie host=\"^(?:www\\.)?netbank\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netbeat.de\" f=\"Netbeat-Webmail.xml\"><securecookie host=\"^(?:www\\.)?netbeat\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netcloude.cz\" f=\"Netcloude.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netcraft.com (partial)\" f=\"Netcraft.com.xml\"><rule from=\"^http://uptime\\.netcraft\\.com/(?=css/|images/|js/)\" to=\"https://d2ybgbvpmfimch.cloudfront.net/\"/></ruleset>", "<ruleset name=\"netdev01.org\" default_off=\"expired\" f=\"Netdev01.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netdialog.se (partial)\" f=\"Netdialog.se.xml\"><rule from=\"^http://s3\\.netdialog\\.se/\" to=\"https://s3-eu-west-1.amazonaws.com/s3.netdialog.se/\"/></ruleset>", "<ruleset name=\"Netdna-ssl.com (CDN)\" f=\"Netdna-ssl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netdoktor.se (false MCB)\" platform=\"mixedcontent\" f=\"Netdoktor.se.xml\"><securecookie host=\"^(?:www\\.)?netdoktor\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netelligent.ca (partial)\" f=\"Netelligent.xml\"><securecookie host=\"^(?:\\w+\\.)?netelligent\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netfilter.org (partial)\" platform=\"cacert\" f=\"Netfilter.org.xml\"><exclusion pattern=\"^http://patchwork\\.netfilter\\.org/+(?!$|\\?)\"/><securecookie host=\".+\\.netfilter\\.org$\" name=\".+\"/><rule from=\"^http://patchwork\\.netfilter\\.org/.*\" to=\"https://patchwork.ozlabs.org/project/netfilter-devel/list/\"/><rule from=\"^http://(?:svn|vishnu)\\.netfilter\\.org/\" to=\"https://bugzilla.netfilter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netfirms\" f=\"Netfirms.xml\"><securecookie host=\"^\\.netfirms\\.com$\" name=\".*\"/><rule from=\"^http://(images\\.|secure\\.|www2?\\.)?netfirms\\.com/\" to=\"https://$1netfirms.com/\"/></ruleset>", "<ruleset name=\"netflame.cc\" f=\"Netflame.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netflix.com (buggy)\" default_off=\"various things break\" f=\"Netflix.com-problematic.xml\"><exclusion pattern=\"^http://(?:blog|ca|developer|ir|techblog|ukirelandblog)\\.netflix\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netflix.com (partial)\" default_off=\"Breaks site\" f=\"Netflix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetflixCanada\" default_off=\"Certificate mismatch\" f=\"NetflixCanada.xml\"><rule from=\"^http://([^/:@]*)\\.movies\\.netflix\\.com/\" to=\"https://$1.movies.netflix.com/\"/></ruleset>", "<ruleset name=\"Netgate.com\" f=\"Netgate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netgear (partial)\" f=\"Netgear.xml\"><securecookie host=\"^my\\.netgear\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?netgear\\.com/css/img/(?:(backgrounds/(?:body|nav)_bg\\.jpg)|logos/(logo-netgear\\.gif))\" to=\"https://my.netgear.com/myNETGEAR/includes/images/$1$2\"/><rule from=\"^http://my\\.netgear\\.com/\" to=\"https://my.netgear.com/\"/></ruleset>", "<ruleset name=\"Netgroup.dk\" f=\"Netgroup.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netguava (partial)\" f=\"Netguava.xml\"><rule from=\"^http://(www\\.)?netguava\\.com/(app/|contact(?:$|\\?)|c[ms]s/|favicon\\.ico|images/|js/|scripts/)\" to=\"https://$1netguava.com/$2\"/></ruleset>", "<ruleset name=\"Nether\" f=\"Nether.xml\"><securecookie host=\"^puck\\.nether\\.net$\" name=\".*\"/><rule from=\"^http://puck\\.nether\\.net/\" to=\"https://puck.nether.net/\"/></ruleset>", "<ruleset name=\"Netim.com\" f=\"Netim.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netistrar.com (expired)\" default_off=\"expired\" f=\"Netistrar.com-problematic.xml\"><securecookie host=\"^www\\.netistrar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netistrar.com (partial)\" f=\"Netistrar.com.xml\"><securecookie host=\"^secure\\.netistrar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netlify.com\" f=\"Netlify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netline.com (partial)\" f=\"Netline.com.xml\"><rule from=\"^http://my\\.netline\\.com/\" to=\"https://my.netline.com/\"/><rule from=\"^http://ox-d\\.netline\\.com/w/1\\.0/afr\\?cc=1&auid=(\\d+)&cb=\" to=\"https://u.openx.net/w/1.0/sc?r=https%3A%2F%2Fox-d.netline.com%2Fw%2F1.0%2Fafr%3Fcc%3D1%26auid%3D$1%26cb%3D\"/></ruleset>", "<ruleset name=\"Netload\" f=\"Netload.xml\"><securecookie host=\"^(?:w*\\.)?netload\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netmarble (partial)\" f=\"Netmarble.xml\"><securecookie host=\"^(?:auth|www)\\.netmarble\\.com$\" name=\".+\"/><rule from=\"^http://netmarble\\.com/\" to=\"https://www.netmarble.com/\"/><rule from=\"^http://(auth|n?bill|s?img|member|www)\\.netmarble\\.com/\" to=\"https://$1.netmarble.com/\"/><rule from=\"^http://img\\.cdn\\.global\\.netmarble\\.com/\" to=\"https://simg.netmarble.com/\"/></ruleset>", "<ruleset name=\"netmeister.org\" f=\"Netmeister.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netnea.com\" f=\"Netnea.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netnod.se\" f=\"Netnod.se.xml\"><securecookie host=\"^(?:www)?\\.netnod.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netnod\\.se/\" to=\"https://www.netnod.se/\"/></ruleset>", "<ruleset name=\"Netpol.org\" f=\"Netpol.org.xml\"><securecookie host=\"^(?:www\\.)?netpol\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nets-DanID.dk\" f=\"Nets-DanID.xml\"><securecookie host=\"^www\\.nets-danid\\.dk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netscape.com\" f=\"Netscape.com.xml\"><rule from=\"^http://(?:home\\.|www\\.)?netscape\\.com/\" to=\"https://netscape.aol.com/\"/><rule from=\"^http://(?:web)?mail\\.netscape\\.com/\" to=\"https://my.screenname.aol.com/_cqr/login/login.psp?sitedomain=sns.webmail.aol.com\"/></ruleset>", "<ruleset name=\"netsekure.org\" default_off=\"failed ruleset test\" f=\"Netsekure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netsparker.com\" f=\"Netsparker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netswarm.net\" default_off=\"self-signed\" f=\"Netswarm.net.xml\"><rule from=\"^http://(?:www\\.)?netswarm\\.net/\" to=\"https://www.netswarm.net/\"/></ruleset>", "<ruleset name=\"Nettica\" f=\"Nettica.xml\"><rule from=\"^http://(?:www\\.)?nettica\\.com/\" to=\"https://www.nettica.com/\"/></ruleset>", "<ruleset name=\"Nettitude.co.uk\" f=\"Nettitude.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nettitude.com\" f=\"Nettitude.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netveano\" default_off=\"expired, self-signed\" f=\"Netveano.xml\"><rule from=\"^http://(?:www\\.)?netveano\\.com/\" to=\"https://netveano.com/\"/></ruleset>", "<ruleset name=\"Netverify\" f=\"Netverify.xml\"><securecookie host=\"^(?:pay\\.)?netverify\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netvibes.com\" f=\"Netvibes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netviewer.com\" f=\"Netviewer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netways.de\" f=\"Netways.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jobs\\.netways\\.de/[^?]*\" to=\"https://www.netways.de/ueber_netways/arbeiten_bei_netways/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Network Depot (partial)\" f=\"Network-Depot.xml\"><securecookie host=\"^.+\\.networkdepot\\.com$\" name=\".+\"/><rule from=\"^http://(onestepahead|support|tips)\\.networkdepot\\.com/\" to=\"https://$1.networkdepot.com/\"/></ruleset>", "<ruleset name=\"Network Redux\" default_off=\"broken\" f=\"Network-Redux.xml\"><rule from=\"^http://(?:www\\.)?networkredux\\.com/\" to=\"https://networkredux.com/\"/></ruleset>", "<ruleset name=\"Network Science Center blog\" default_off=\"mismatch\" f=\"Network-Science-Center-blog.xml\"><rule from=\"^http://(?:blog\\.|www\\.)?netsciwestpoint\\.org/\" to=\"https://blog.netsciwestpoint.org/\"/></ruleset>", "<ruleset name=\"Network Solutions (false MCB)\" platform=\"mixedcontent\" f=\"Network-Solutions.xml\"><securecookie host=\"^\\.networksolutions\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.networksolutions\\.com$\" name=\".*\"/><rule from=\"^http://(?:cms\\.|www\\.)?networksolutions\\.com(:443)?/\" to=\"https://www.networksolutions.com$1/\"/><rule from=\"^http://(about|seal)\\.networksolutions\\.com/\" to=\"https://$1.networksolutions.com/\"/><rule from=\"^http://amp\\.networksolutions\\.com/$\" to=\"https://www.networksolutions.com/\"/><rule from=\"^http://amp\\.networksolutions\\.com/landing\\?code=(\\w+)$\" to=\"https://www.networksolutions.com/affiliates/select-unknown.jsp?siteid=100&channelid=$1\"/></ruleset>", "<ruleset name=\"Network for Good.org\" f=\"Network-for-Good.xml\"><exclusion pattern=\"^http://www1\\.\"/><securecookie host=\"^\\w+\\.networkforgood\\.org$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?networkforgood\\.org/\" to=\"https://$1networkforgood.org/\"/></ruleset>", "<ruleset name=\"network23.org\" f=\"Network23.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.network23\\.org/\" to=\"https://network23.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetworkWorld (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"NetworkWorld-mismatches.xml\"><rule from=\"^http://events\\.networkworld\\.com/\" to=\"https://events.networkworld.com/\"/></ruleset>", "<ruleset name=\"NetworkWorld (partial)\" default_off=\"failed ruleset test\" f=\"NetworkWorld.xml\"><securecookie host=\"^(?:.*\\.)?(?:networkworld|subscribenww)\\.com$\" name=\".+\"/><rule from=\"^http://(?:edge\\.|www\\.)?networkworld\\.com/\" to=\"https://www.networkworld.com/\"/><rule from=\"^http://m\\.networkworld\\.com/(mobify|static)/\" to=\"https://networkworld.mobify.com/$1/\"/><rule from=\"^http://(www\\.)?subscribenww\\.com/\" to=\"https://$1subscribenww.com/\"/></ruleset>", "<ruleset name=\"Network Advertising.org\" f=\"Network_Advertising_Initiative.xml\"><securecookie host=\"^(?:w*\\.)?networkadvertising\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Network Computing\" default_off=\"mismatched, self-signed\" f=\"Network_Computing.xml\"><securecookie host=\"^(?:www)?\\.networkcomputing\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?networkcomputing\\.com/\" to=\"https://www.networkcomputing.com/\"/></ruleset>", "<ruleset name=\"Network Maker (partial)\" f=\"Network_Maker.xml\"><securecookie host=\"^signup\\.network-maker\\.com$\" name=\".+\"/><rule from=\"^http://signup\\.network-maker\\.com/\" to=\"https://signup.network-maker.com/\"/></ruleset>", "<ruleset name=\"Network Time Foundation.org (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Network_Time_Foundation.org.xml\"><securecookie host=\"^rt\\.nwtime\\.org$\" name=\".+\"/><rule from=\"^http://((?:ic|imap|shop|www)\\.)?networktimefoundation\\.org/\" to=\"https://$1networktimefoundation.org/\"/><rule from=\"^http://((?:ic|lists|rt|www)\\.)?nwtime\\.org/\" to=\"https://$1nwtime.org/\"/></ruleset>", "<ruleset name=\"NetworkedBlogs\" f=\"NetworkedBlogs.xml\"><securecookie host=\"^www\\.networkedblogs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?networkedblogs\\.com/\" to=\"https://www.networkedblogs.com/\"/><rule from=\"^http://nwidget\\.networkedblogs\\.com/getnetworkwidget\" to=\"https://www.networkedblogs.com/getnetworkwidget\"/><exclusion pattern=\"^http://networkedblogs\\.com/\\w{5}$\"/></ruleset>", "<ruleset name=\"networkhm.com\" f=\"Networkhm.com.xml\"><rule from=\"^http://ads\\.networkhm\\.com/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"Networking4all.com\" f=\"Networking4all.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netzfreiheit.org\" f=\"Netzfreiheit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netzguerilla.net\" f=\"Netzguerilla.net.xml\"><rule from=\"^http://(?:(lists\\.|webmail\\.)|www\\.)?netzguerilla\\.net/\" to=\"https://$1netzguerilla.net/\"/></ruleset>", "<ruleset name=\"Netzob.org (partial)\" f=\"Netzob.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netzpolitik.org\" f=\"Netzpolitik.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"die netztaucher (partial)\" f=\"Netztaucher.xml\"><securecookie host=\"^(?:(?:www\\.)?kundenserver42|stu)\\.kundenserver42\\.de$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?kundenserver42|stu)\\.kundenserver42\\.de/\" to=\"https://$1.kundenserver42.de/\"/></ruleset>", "<ruleset name=\"Neustar.biz (partial)\" f=\"NeuStar.xml\"><securecookie host=\"^(?:(?:hello|leap|registry|siteprotect|\\w+\\.wpm|www)\\.)?neustar\\.biz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neudesic Media Group (partial)\" default_off=\"failed ruleset test\" f=\"Neudesic-Media-Group.xml\"><securecookie host=\"^(?:.*\\.)?ads\\.neudesicmediagroup\\.com$\" name=\".*\"/><rule from=\"^http://ads\\.neudesicmediagroup\\.com/\" to=\"https://ads.neudesicmediagroup.com/\"/></ruleset>", "<ruleset name=\"Neustar.com\" default_off=\"failed ruleset test\" f=\"Neustar.com.xml\"><securecookie host=\"^payment\\.neustar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?neustar\\.com/\" to=\"https://www.neustar.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neustar Localeze.biz\" f=\"Neustar_Localeze.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neuweb.biz\" f=\"Neuweb.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeverDDoS.com\" f=\"NeverDDoS.com.xml\"><securecookie host=\"^(?:w*\\.)?neverddos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nevill Holt Opera\" default_off=\"failed ruleset test\" f=\"Nevill_Holt_Opera.xml\"><securecookie host=\"^w*\\.nevillholtopera\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nevillholtopera\\.net/\" to=\"https://www.nevillholtopera.net/\"/></ruleset>", "<ruleset name=\"Nevistas Health.com\" default_off=\"failed ruleset test\" f=\"Nevistas_Health.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Dream Network\" f=\"New-Dream-Network.xml\"><rule from=\"^http://(?:(secure\\.)|www\\.)?newdream\\.net/\" to=\"https://$1newdream.net/\"/></ruleset>", "<ruleset name=\"New Matilda.com\" f=\"New-Matilda.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Moon Girls Online\" default_off=\"failed ruleset test\" f=\"New-Moon-Girls-Online.xml\"><rule from=\"^http://(?:www\\.)?newmoon\\.com/\" to=\"https://www.newmoon.com/\"/></ruleset>", "<ruleset name=\"New Relic.com\" f=\"New-Relic.xml\"><exclusion pattern=\"^http://get\\.newrelic\\.com\"/><securecookie host=\"^(?:.*\\.)?newrelic\\.com$\" name=\".+\"/><rule from=\"^http://blog-assets\\.newrelic\\.com/\" to=\"https://blog.newrelic.com/\"/><rule from=\"^http://([\\w-]+\\.)?newrelic\\.com/\" to=\"https://$1newrelic.com/\"/></ruleset>", "<ruleset name=\"NYC.gov (partial)\" f=\"New-York-City.xml\"><exclusion pattern=\"^http://(?:www\\.)?nyc\\.gov/(?!$|portal/(?:apps/threeoneone/site_launch/(?:css|img)|css|images)/)\"/><exclusion pattern=\"http://www1\\.nyc.gov/+(?!assets/(?:home/css/(?:includ|modul|pag)es|home/images/global|olr/css/|olr/images/content)/)\"/><securecookie host=\"^(?:a127-ess|comptroller)\\.nyc\\.gov$\" name=\".\"/><rule from=\"^http://www\\.comptroller\\.nyc\\.gov/\" to=\"https://comptroller.nyc.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYU.edu (mismatches)\" default_off=\"mismatch\" f=\"New-York-University-mismatches.xml\"><rule from=\"^http://events\\.nyu\\.edu/\" to=\"https://events.nyu.edu/\"/></ruleset>", "<ruleset name=\"NYU.edu (partial)\" platform=\"mixedcontent\" f=\"New-York-University.xml\"><exclusion pattern=\"^http://engineering\\.nyu\\.edu/+(?!crissp/(?:module|site|theme)s/|favicon\\.ico|files/|sites/)\"/><securecookie host=\"^\\w+[\\w.]+\\.nyu\\.edu$\" name=\".*\"/><rule from=\"^http://(www\\.)?nyu\\.edu/\" to=\"https://$1nyu.edu/\"/><rule from=\"^http://(?:www\\.)?bookstores\\.nyu\\.edu/\" to=\"https://www.bookstores.nyu.edu/\"/><rule from=\"^http://admissions\\.nyu\\.edu/\" to=\"https://www.nyu.edu/admissions/undergraduate-admissions.html\"/><rule from=\"^http://(?:www\\.)?(cims|cs|g4li|home|math|mrl|steinhardt)\\.nyu\\.edu/\" to=\"https://$1.nyu.edu/\"/><rule from=\"^http://(vlg\\.cs|engineering|its\\.law|(?:(?:arch|getit|login)\\.)?library|login|(?:frms\\.|orientation\\.)?nursing|admin\\.portal|shibboleth|sis|start|steinhardt|(?:testhome|web)\\.home\\.syr|wikis)\\.nyu\\.edu/\" to=\"https://$1.nyu.edu/\"/></ruleset>", "<ruleset name=\"new-nations.net\" default_off=\"self-signed\" f=\"New-nations.net.xml\"><rule from=\"^http://(?:www\\.)?new-nations\\.net/\" to=\"https://new-nations.net/\"/></ruleset>", "<ruleset name=\"NewIT\" f=\"NewIT.xml\"><securecookie host=\"^(?:.+\\.)?newit\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?newit\\.co\\.uk/\" to=\"https://newit.co.uk/\"/></ruleset>", "<ruleset name=\"NewInt.org (partial)\" f=\"NewInt.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|_gat?|cf_clearance)$\"/><securecookie host=\"^\\.?shop\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewScientist.com (partial)\" f=\"NewScientist.com.xml\"><securecookie host=\"^\\.newscientist\\.com$\" name=\"^(?:__qca|incap_ses_\\d+_\\d+|s_\\w+|nlbi_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:jobs|recruiters|subscribe|www)\\.newscientist\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewScientist Subscriptions.com\" f=\"NewScientist_Subscriptions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewYorkVocalCoaching\" f=\"NewYorkVocalCoaching.xml\"><securecookie host=\"^(?:www\\.|\\.)?newyorkvocalcoaching\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.|\\.)?voiceteachertraining\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.|\\.)?voicelessonstotheworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New America.org\" f=\"New_America.org.xml\"><rule from=\"^http://newamerica\\.org/\" to=\"https://www.newamerica.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Climate for Peace.org\" f=\"New_Climate_for_Peace.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New England Journal of Medicine (problematic)\" default_off=\"mismatched\" f=\"New_England_Journal_of_Medicine-problematic.xml\"><rule from=\"^http://cdn\\.nejm\\.org/(?!5\\.0/)\" to=\"https://cdn.nejm.org/\"/></ruleset>", "<ruleset name=\"New England Journal of Medicine (partial)\" f=\"New_England_Journal_of_Medicine.xml\"><securecookie host=\"^cdf\\.nejm\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nejm\\.org/(action/s(?:howCDFLogin|so)|favicon\\.ico|na101/|sda/)\" to=\"https://www.nejm.org/$1\"/><rule from=\"^http://cdf\\.nejm\\.org/\" to=\"https://cdf.nejm.org/\"/><rule from=\"^http://cdn\\.nejm\\.org/5\\.0/\" to=\"https://cdf.nejm.org/files/\"/></ruleset>", "<ruleset name=\"New Flag\" f=\"New_Flag.xml\"><securecookie host=\"^\\.mynewflag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHCLU.org (partial)\" default_off=\"self-signed\" f=\"New_Hampshire_Civil_Liberties_Union.xml\"><securecookie host=\"^remote\\.nhclu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Look (partial)\" f=\"New_Look.xml\"><rule from=\"^http://(?:www\\.)?newlook\\.com/(css|images|MEDIA_\\w+|secure)/\" to=\"https://www.newlook.com/$1/\"/></ruleset>", "<ruleset name=\"New Republic.com (problematic)\" default_off=\"mismatched\" f=\"New_Republic.com-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Republic.com (partial)\" f=\"New_Republic.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Statesman.com (problematic)\" default_off=\"mismatched\" f=\"New_Statesman.com-problematic.xml\"><securecookie host=\"^\\.newstatesman\\.com$\" name=\"^__utm\\w+$\"/><securecookie host=\"^www\\.newstatesman\\.com$\" name=\".+\"/><rule from=\"^http://newstatesman\\.com/\" to=\"https://www.newstatesman.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Statesman.com (partial)\" f=\"New_Statesman.com.xml\"><securecookie host=\"^\\.newstatesman\\.com$\" name=\"^__utm\\w+$\"/><securecookie host=\"^subscribe\\.newstatesman\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New York Needs You.com\" f=\"New_York_Needs_You.com.xml\"><securecookie host=\"^www\\.newyorkneedsyou\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New York Times.com\" f=\"New_York_Times.com.xml\"><rule from=\"^http://(?:www\\.)?newyorktimes\\.com/\" to=\"https://www.nytimes.com/\"/></ruleset>", "<ruleset name=\"NZ Herald.co.nz (partial)\" f=\"New_Zealand_Herald.xml\"><securecookie host=\"^\\.nzherald\\.co\\.nz$\" name=\"^s_\\w+$\"/><securecookie host=\"^.+\\.nzherald\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newcastle.gov.uk (partial)\" f=\"Newcastle.gov.uk.xml\"><exclusion pattern=\"http://buslanepayments\\.newcastle\\.gov\\.uk/$\"/><securecookie host=\"^(?!\\.newcastle\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://newcastle\\.gov\\.uk/\" to=\"https://www.newcastle.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newegg (partial, broken)\" default_off=\"breaks shopping cart\" f=\"Newegg.xml\"><exclusion pattern=\"^http://(?:images10\\.newegg|c1\\.neweggimages)\\.com/WebResource/Themes/2005/Nest/\\w+.html(?:$|\\?)\"/><securecookie host=\"^content\\.newegg\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:images10|ssl-images)\\.newegg|c1\\.neweggimages)\\.com/\" to=\"https://ssl-images.newegg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newgrounds (partial, broken)\" default_off=\"reported broken\" f=\"Newgrounds.xml\"><rule from=\"^http://(?:www\\.)?newgrounds\\.com/\" to=\"https://www.newgrounds.com/\"/></ruleset>", "<ruleset name=\"newjobs.com\" f=\"Newjobs.com.xml\"><rule from=\"^http://media\\.newjobs\\.com/\" to=\"https://securemedia.newjobs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newport Motorsports\" default_off=\"failed ruleset test\" f=\"Newport_Motorsports.xml\"><securecookie host=\"^(?:.*\\.)?newportmotorsports\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Corporation (mismatches)\" default_off=\"mismatch\" f=\"News-Corporation-mismatches.xml\"><exclusion pattern=\"^http://ureport\\.foxnews\\.com/services/\"/><exclusion pattern=\"^http://charts\\.smartmoney\\.com/gifbuilder/\"/><securecookie host=\"^ureport\\.foxnews\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?wsjpro\\.com$\" name=\".*\"/><rule from=\"^http://404\\.foxnews\\.com\\.edgesuite\\.net/\" to=\"https://404.foxnews.com.edgesuite.net/\"/><rule from=\"^http://(?:www\\.)?dowjones\\.com/(carousel_files|(?:chart/)?css|factiva|images)/\" to=\"https://wsjpro.com/$1/\"/><rule from=\"^http://(?:www\\.)?dowjones\\.com/\" to=\"https://www.dowjones.com/\"/><rule from=\"^http://ureport\\.foxnews\\.com/\" to=\"https://ureport.foxnews.com/\"/><rule from=\"^http://(?:www\\.)?myfoxdetroit\\.com/\" to=\"https://www.myfoxdetroit.com/\"/><rule from=\"^http://charts\\.smartmoney\\.com/\" to=\"https://charts.smartmoney.com/\"/><rule from=\"^http://(?:www\\.)?wsjpro\\.com/\" to=\"https://wsjpro.com/\"/></ruleset>", "<ruleset name=\"News Corporation (partial)\" default_off=\"failed ruleset test\" f=\"News-Corporation.xml\"><exclusion pattern=\"^http://barrons\\.wsj\\.net/css/barronsDependencies/\"/><exclusion pattern=\"^http://si?\\.wsj\\.net/\"/><securecookie host=\"^.*\\.factiva\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.nypost\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.smartmoney\\.com$\" name=\".*\"/><securecookie host=\"^(?:classifieds|customerceter)\\.wsj\\.com$\" name=\".*\"/><securecookie host=\"^services\\.wsje?\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?wsj(?:eurosubs|safehouse)\\.com$\" name=\".*\"/><rule from=\"^http://om\\.dowjoneson\\.com/\" to=\"https://djglobal.122.2o7.net/\"/><rule from=\"^http://djrc\\.portal\\.dowjones\\.com/\" to=\"https://djrc.portal.dowjones.com/\"/><rule from=\"^http://(www\\.)?efinancialnews\\.com/(about-us/tour/|css/|img/|js/|login/|forgot-password|register)\" to=\"https://$1efinancialnews.com/$2\"/><rule from=\"^http://factiva\\.com/\" to=\"https://www.factiva.com/\"/><rule from=\"^http://(customer|global|www)\\.factiva\\.com/\" to=\"https://$1.factiva.com/\"/><rule from=\"^http://(?:www\\.)?fins\\.com/Finance/(cs|Image)s/\" to=\"https://www.fins.com/Finance/$1s/\"/><rule from=\"^http://secure\\.nypost\\.com/\" to=\"https://secure.nypost.com/\"/><rule from=\"^http://j(?:tools|secure)?\\.smartmoney\\.com/\" to=\"https://jsecure.smartmoney.com/\"/><rule from=\"^http://(?:classifieds|customercenter)\\.wsj\\.com/\" to=\"https://buy.wsj.com/\"/><rule from=\"^http://id\\.wsj\\.com/\" to=\"https://id.wsj.com/\"/><rule from=\"^http://services\\.wsj(e)?\\.com/\" to=\"https://services.wsj$1.com/\"/><rule from=\"^http://(www\\.)?wsjeuropesubs\\.com/\" to=\"https://$1wsjeuropesubs.com/\"/><rule from=\"^http://(?:www\\.)?wsjsafehouse\\.com/\" to=\"https://www.wsjsafehouse.com/\"/></ruleset>", "<ruleset name=\"The News-Gazette (partial)\" f=\"News-Gazette.xml\"><rule from=\"^http://(?:assets\\.|static\\.|www\\.)?news-gazette\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.news-gazette.com/$1\"/><rule from=\"^http://digital\\.news-gazette\\.com/(misc|sites)/\" to=\"https://digital.news-gazette.com/$1/\"/></ruleset>", "<ruleset name=\"News Registry (partial)\" default_off=\"failed ruleset test\" f=\"News-Registry.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News.dk\" default_off=\"mismatched\" f=\"News.dk.xml\"><rule from=\"^http://news\\.dk/\" to=\"https://news.dk/\"/><rule from=\"^http://www\\.news\\.dk/.*\" to=\"https://news.dk/\"/></ruleset>", "<ruleset name=\"news9daily.org\" f=\"News9daily.org.xml\"><securecookie host=\"^(?:w*\\.)?news9daily\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsBlur\" f=\"NewsBlur.xml\"><exclusion pattern=\"^http://blog\\.newsblur\\.com/\"/><rule from=\"^http://(icons|pages)\\.newsblur\\.com/\" to=\"https://s3.amazonaws.com/$1.newsblur.com/\"/><rule from=\"^http://newsblur\\.com/\" to=\"https://www.newsblur.com/\"/><rule from=\"^http://([^/:@.]*)\\.newsblur\\.com/\" to=\"https://$1.newsblur.com/\"/><rule from=\"^https://popular\\.global\\.newsblur\\.com/\" to=\"http://popular.global.newsblur.com/\" downgrade=\"1\"/><securecookie host=\"^(?:www)?\\.newsblur\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"NewsCred.com (partial)\" f=\"NewsCred.com.xml\"><rule from=\"^http://static\\.cms\\.newscred\\.com/\" to=\"https://d35o6c6ifjoa8g.cloudfront.net/\"/><rule from=\"^http://(newsdaily\\.cms|images)\\.newscred\\.com/\" to=\"https://$1.newscred.com/\"/><rule from=\"^http://daylifeimages\\.newscred\\.com/\" to=\"https://ds9y5y40x6zaj.cloudfront.net/\"/><rule from=\"^http://info\\.newscred\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjn.marketo.com/\"/></ruleset>", "<ruleset name=\"NewsDaily.com\" f=\"NewsDaily.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsGator\" default_off=\"failed ruleset test\" f=\"NewsGator.xml\"><securecookie host=\"^www\\.newsgator\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?newsgator\\.com/\" to=\"https://www.newsgator.com/\"/></ruleset>", "<ruleset name=\"NewsLook (partial)\" f=\"NewsLook.xml\"><rule from=\"^http://(www\\.)?newslook\\.com/assets/\" to=\"https://$1newslook.com/assets/\"/><rule from=\"^http://cdn\\.newslook\\.com/\" to=\"https://d2nj14si6cadzm.cloudfront.net/\"/><rule from=\"^http://img[0-3]\\.newslook\\.com/\" to=\"https://d24y7pjjfar7k.cloudfront.net/\"/><rule from=\"^http://sta[0-3]\\.newslook\\.com/\" to=\"https://d24lblqer3jbtz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"NewsNow (partial)\" f=\"NewsNow.xml\"><securecookie host=\"^delivery\\.ad\\.newsnow\\.net$\" name=\".+\"/><rule from=\"^http://delivery\\.ad\\.newsnow\\.net/\" to=\"https://delivery.ad.newsnow.net/\"/></ruleset>", "<ruleset name=\"NewsWhip.com (mismatched)\" default_off=\"mismatched\" f=\"NewsWhip-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsWhip.com (partial)\" f=\"NewsWhip.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Challenge.org\" f=\"News_Challenge.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Distribution Network (partial)\" f=\"News_Distribution_Network.xml\"><securecookie host=\"^mail(?:fire)?\\.newsinc\\.com$\" name=\".+\"/><rule from=\"^http://(assets|landing|widget)\\.newsinc\\.com/\" to=\"https://s3.amazonaws.com/$1.newsinc.com/\"/><rule from=\"^http://autodiscover\\.newsinc\\.com/\" to=\"https://autodiscover-s.outlook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The News Funnel (partial)\" f=\"News_Funnel.xml\"><rule from=\"^http://(www\\.)?thenewsfunnel\\.com/(modules/|(?:register-tnf|user/register)(?:$|\\?|/)|sites/)\" to=\"https://$1thenewsfunnel.com/$2\"/></ruleset>", "<ruleset name=\"News Limited (problematic)\" default_off=\"Akamai\" f=\"News_Limited-problematic.xml\"><rule from=\"^http://(player|static)\\.video\\.news\\.com\\.au/\" to=\"https://$1.video.news.com.au/\"/></ruleset>", "<ruleset name=\"News Limited (partial)\" f=\"News_Limited.xml\"><securecookie host=\"^myaccount\\.news\\.com\\.au$\" name=\".+\"/><rule from=\"^http://connect\\.news\\.com\\.au/\" to=\"https://newsportal.pureprofile.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Review.com (partial)\" f=\"News_Review.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newscheckmedia.com\" f=\"Newscheckmedia.com.xml\"><rule from=\"^http://assets\\.newscheckmedia\\.com/\" to=\"https://secure.newscheckmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newsday.com (partial)\" f=\"Newsday.com.xml\"><rule from=\"^http://(?:www\\.)?newsday\\.com/\" to=\"https://www.newsday.com/\"/><rule from=\"^http://long-island\\.newsday\\.com/\" to=\"https://long-island.newsday.com/\"/></ruleset>", "<ruleset name=\"Newsmax.com (partial)\" f=\"Newsmax.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://newsmax\\.com/\" to=\"https://www.newsmax.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newsmax Health.com\" f=\"Newsmax_Health.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://newsmaxhealth\\.com/\" to=\"https://www.newsmaxhealth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newsnet5.com (partial)\" f=\"Newsnet5.com.xml\"><rule from=\"^http://contests\\.newsnet5\\.com/shared/\" to=\"https://newsnet5.upickem.net/shared/\"/></ruleset>", "<ruleset name=\"NewspaperDirect (mismatches)\" default_off=\"mismatch\" f=\"NewspaperDirect-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?pressdisplay/viewer\\.aspx\"/><rule from=\"^http://(?:www\\.)?pressreader\\.com/\" to=\"https://pressreader.com/\"/><rule from=\"^http://cache2?-s(cripts|style)s\\.pressdisplay\\.com/\" to=\"https://cache-s$1s.pressdisplay.com/\"/></ruleset>", "<ruleset name=\"NewspaperDirect (partial)\" f=\"NewspaperDirect.xml\"><securecookie host=\"^(?:www\\.)?newspaperdirect\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newstral.com (partial)\" f=\"Newstral.com.xml\"><securecookie host=\"\\.?newstral\\.com\" name=\".*\"/><rule from=\"^http://www\\.newstral\\.com/\" to=\"https://newstral.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newsvine.com (partial)\" default_off=\"Needs ruleset tests\" f=\"Newsvine.com.xml\"><exclusion pattern=\"^http://onesearch4-2\\.newsvine\\.com/+(?!_vine/)\"/><exclusion pattern=\"^http://(?:www\\.)?polls\\.newsvine\\.com/(?!_static/|_vine/)\"/><exclusion pattern=\"^http://www\\.newsvine\\.com/(?!_static/|_vine/)\"/><rule from=\"^http://cdn\\.bonosrama\\.newsvine\\.com/\" to=\"https://bonosrama.newsvine.com/\"/><rule from=\"^http://(?:www\\.cdn|i)\\.newsvine\\.com/\" to=\"https://www.newsvine.com/\"/><rule from=\"^http://(?:www\\.)?polls\\.newsvine\\.com/\" to=\"https://www.newsvine.com/\"/><rule from=\"^http://m\\.static\\.newsvine\\.com/\" to=\"https://m.newsvine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newtention.net\" f=\"Newtention.net.xml\"><securecookie host=\"^\\.newtention\\.net$\" name=\".+\"/><rule from=\"^http://(ads|www)\\.newtention\\.net/\" to=\"https://$1.newtention.net/\"/></ruleset>", "<ruleset name=\"Newyorkcasual.com\" f=\"Newyorkcasual.com.xml\"><securecookie host=\"^\\.newyorkcasual\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?newyorkcasual\\.com/\" to=\"https://www.newyorkcasual.com/\"/></ruleset>", "<ruleset name=\"Newzbin\" default_off=\"failed ruleset test\" f=\"Newzbin.xml\"><rule from=\"^http://(?:www\\.)?newzbin(?:\\.com|2\\.es)/?\" to=\"https://www.newzbin2.es/\"/><rule from=\"^http://docs\\.newzbin2\\.es/?\" to=\"https://docs.newzbin2.es/\"/></ruleset>", "<ruleset name=\"newzsec.com\" f=\"Newzsec.com.xml\"><securecookie host=\"^newzsec\\.com$\" name=\".+\"/><rule from=\"^http://www\\.newzsec\\.com/\" to=\"https://newzsec.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nex.sx\" f=\"Nex.sx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nexac.com (partial)\" f=\"Nexac.com.xml\"><securecookie host=\"^\\.nexac\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nexac\\.com/+(?:alpha(?:/|/index\\.html)?|index\\.html)?(?:\\?.*)?$\" to=\"https://www.datalogix.com/index.php?id=19\"/><rule from=\"^http://([efhpr])\\.nexac\\.com/\" to=\"https://$1.nexac.com/\"/></ruleset>", "<ruleset name=\"Nexaway (partial)\" f=\"Nexaway.xml\"><rule from=\"^http://(www\\.)?nexaway\\.com/\" to=\"https://$1nexaway.com/\"/></ruleset>", "<ruleset name=\"Nexcess.net (partial)\" f=\"Nexcess.xml\"><securecookie host=\".*\\.nexcess\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nexcess CDN.net\" f=\"Nexcess_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Next Update (partial)\" f=\"Next-Update.xml\"><exclusion pattern=\"^http://(?:journal|status)\\.\"/><rule from=\"^http://(\\w+\\.)?sifterapp\\.com/\" to=\"https://$1sifterapp.com/\"/></ruleset>", "<ruleset name=\"Next\" default_off=\"Breaks cart\" f=\"Next.xml\"><securecookie host=\"^(?:.+\\.)?next\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?next\\.co\\.uk/\" to=\"https://www.next.co.uk/\"/></ruleset>", "<ruleset name=\"NextBus\" f=\"NextBus.xml\"><rule from=\"^http://(?:www\\.)?nextbus\\.com/\" to=\"https://www.nextbus.com/\"/></ruleset>", "<ruleset name=\"NextRegister.com\" default_off=\"mismatched\" f=\"NextRegister.com.xml\"><rule from=\"^http://(?:www\\.)?nextregister\\.com/\" to=\"https://nextregister.com/\"/></ruleset>", "<ruleset name=\"Nextag (self-signed)\" default_off=\"self-signed\" f=\"Nextag-self-signed.xml\"><exclusion pattern=\"^http://nextagnews\\.nextag\\.com/\\d{4}/\\d\\d/\\d\\d/\"/><rule from=\"^http://nextagnews\\.nextag\\.com/\" to=\"https://nextagnews.nextag.com/\"/><rule from=\"^https://nextagnews\\.nextag\\.com/(\\d{4}/\\d\\d/\\d\\d/)\" to=\"http://nextagnews.nextag.com/$1\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"Nextag (partial)\" f=\"Nextag.xml\"><securecookie host=\"^.*\\.nextag\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nextag\\.(ca|com|de|fr|it)/\" to=\"https://www.nextag.$1/\"/><rule from=\"^http://img(?:srv)?\\.nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/><rule from=\"^http://(merchants|stores|travel)\\.nextag\\.com/\" to=\"https://$1.nextag.com/\"/><rule from=\"^http://tickets\\.nextag\\.com/la/\" to=\"https://www.fansnap.com/la/\"/><rule from=\"^http://www42\\.nextag\\.com/\" to=\"https://www.nextag.com/\"/><rule from=\"^http://img\\d\\d\\.static-nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/></ruleset>", "<ruleset name=\"Nextbit.com\" f=\"Nextbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nexternal clients\" default_off=\"mismatch\" f=\"Nexternal-clients.xml\"><rule from=\"^http://(?:shop\\.blazingthyme\\.com|appmarket\\.nexternal\\.net)/Net/StoreFront/\" to=\"https://maxcdn.nexternal.com/Net/StoreFront/\"/></ruleset>", "<ruleset name=\"Nexternal\" f=\"Nexternal.xml\"><securecookie host=\"^.*\\.nexternal\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nexternal\\.com/\" to=\"https://www.nexternal.com/\"/><rule from=\"^http://(max)?cdn\\.nexternal\\.com/\" to=\"https://$1cdn.nexternal.com/\"/></ruleset>", "<ruleset name=\"Nextgen-Gallery.com (partial)\" f=\"Nextgen-Gallery.com.xml\"><exclusion pattern=\"^http://www\\.nextgen-gallery\\.com/+(?!(?:account|checkout|checkout-plus|help)(?:$|[?/])|favicon\\.ico|no-access/|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Next Gen Auto Parts.com (partial)\" f=\"Nextgen_Auto_Parts.com.xml\"><rule from=\"^http://(www\\.)?nextgenautoparts\\.com/(?=favicon\\.ico|files/|images/|Portals/(?:\\d+/portal\\.css|\\d+/theme\\d/|_default/)|scripts/)\" to=\"https://$1nextgenautoparts.com/\"/></ruleset>", "<ruleset name=\"Nextiva\" f=\"Nextiva.xml\"><securecookie host=\"^\\.nextiva\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nextpowerup.com\" f=\"Nextpowerup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ng-book.com\" f=\"Ng-book.com.xml\"><securecookie host=\"^\\.ng-book\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ngage ICS (partial)\" f=\"Ngage_ICS.xml\"><securecookie host=\"^messenger\\.ngageics\\.com$\" name=\".+\"/><rule from=\"^http://messenger\\.ngageics\\.com/\" to=\"https://messenger.ngageics.com/\"/><rule from=\"^http://secure\\.ngagelive\\.com/\" to=\"https://secure.ngagelive.com/\"/></ruleset>", "<ruleset name=\"nghttp2.org\" f=\"Nghttp2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nginx.org (partial)\" f=\"Nginx.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ngrok.com\" f=\"Ngrok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ngx.cc\" f=\"Ngx.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nhat tao.com\" f=\"Nhat_tao.com.xml\"><securecookie host=\"^\\.nhattao\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiKec Solutions\" default_off=\"mismatched\" f=\"NiKec_Solutions.xml\"><securecookie host=\"^nikecsolutions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nikecsolutions\\.com/\" to=\"https://nikecsolutions.com/\"/></ruleset>", "<ruleset name=\"CZ.NIC\" f=\"Nic.cz.xml\"><securecookie host=\"^(?:(?:www|labs|git|blog)?\\.)?nic\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NicAc\" f=\"NicAc.xml\"><securecookie host=\"^(?:.+\\.)?nic\\.ac$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nic\\.ac/\" to=\"https://www.nic.ac/\"/></ruleset>", "<ruleset name=\"NicIo\" platform=\"mixedcontent\" f=\"NicIo.xml\"><securecookie host=\"^(?:.+\\.)?nic\\.io$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nic\\.io/\" to=\"https://www.nic.io/\"/></ruleset>", "<ruleset name=\"NiceHash.com\" f=\"NiceHash.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?nicehash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiceKicks.com (partial)\" f=\"NiceKicks.com.xml\"><rule from=\"^http://\\d\\.nicekicks\\.com/\" to=\"https://d34jsf1j24280j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Nice 'n' Naughty\" f=\"Nice_n_Naughty.xml\"><securecookie host=\"^\\.www\\.nicennaughty\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nicereply\" f=\"Nicereply.com.xml\"><securecookie host=\"^(www\\.)?nicereply\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nicholas Ranallo (partial)\" f=\"Nicholas_Ranallo.xml\"><rule from=\"^http://(?:www\\.)?ranallolawoffice\\.com/(?:favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~ranallol/$1\"/></ruleset>", "<ruleset name=\"Nicky Hager (partial)\" f=\"Nicky_Hager.xml\"><rule from=\"^http://(?:www\\.)?nickyhager\\.info/wp-content/\" to=\"https://secure.bluehost.com/~nickyhag/wp-content/\"/></ruleset>", "<ruleset name=\"Nicotine Anonymous\" f=\"Nicotine-Anonymous.xml\"><securecookie host=\"^(?:w*\\.)?nicotine-anonymous\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nicovideo.jp (partial)\" f=\"Nicovideo.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"niden.net\" f=\"Niden.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nie-wieder-VDS.de\" f=\"Nie-wieder-VDS.de.xml\"><securecookie host=\"^nie-wieder-vds\\.de$\" name=\".+\"/><rule from=\"^http://www\\.nie-wieder-vds\\.de/\" to=\"https://nie-wieder-vds.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nieman.de\" f=\"Nieman.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nieuwsblad.be (mismatches)\" default_off=\"cert warning\" f=\"Nieuwsblad.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NightDev.com\" f=\"NightDev.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NightLove\" default_off=\"failed ruleset test\" f=\"NightLove.xml\"><securecookie host=\"^\\.nightlove\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nightcode.info\" default_off=\"failed ruleset test\" f=\"Nightcode.info.xml\"><rule from=\"^http://nightcode\\.info/\" to=\"https://nightcode.info/\"/></ruleset>", "<ruleset name=\"Nightweb.net\" default_off=\"failed ruleset test\" f=\"Nightweb.net.xml\"><rule from=\"^http://nightweb\\.net/\" to=\"https://nightweb.net/\"/></ruleset>", "<ruleset name=\"Nijyuyon-Bimuunzu\" f=\"Nijyuyon-Bimuunzu.xml\"><rule from=\"^http://(?:www\\.)?e-nls\\.com/\" to=\"https://www.e-nls.com/\"/><rule from=\"^http://img\\.e-nls\\.com/\" to=\"https://img.e-nls.com/\"/></ruleset>", "<ruleset name=\"Nik Cub.com\" f=\"Nik_Cub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nik Software (partial)\" f=\"Nik_Software.xml\"><securecookie host=\"^shop\\.niksoftware\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.niksoftware\\.com/\" to=\"https://shop.niksoftware.com/\"/></ruleset>", "<ruleset name=\"Nike.com (partial)\" f=\"Nike.com.xml\"><securecookie host=\"^\\.nike\\.com$\" name=\"^(?:AnalysisUserId|ResonanceSegment|RES_TRACKINGID|s_\\w+|utag_main)$\"/><securecookie host=\"^(?:help-[\\w-]+|secure-store)\\.nike\\.com$\" name=\".+\"/><rule from=\"^http://nike\\.com/\" to=\"https://www.nike.com/\"/><rule from=\"^http://modus\\.nike\\.com/\" to=\"https://nike-com.112.2o7.net/\"/><rule from=\"^http://nikeplus\\.nike\\.com/\" to=\"https://secure-nikeplus.nike.com/\"/><rule from=\"^http://store\\.nike\\.com/\" to=\"https://secure-store.nike.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nikhef.nl\" f=\"Nikhef.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nikon-Lenswear.com (false MCB)\" platform=\"mixedcontent\" f=\"Nikon-Lenswear.com.xml\"><securecookie host=\"^nikon-lenswear\\.com$\" name=\".+\"/><rule from=\"^http://www\\.nikon-lenswear\\.com/\" to=\"https://nikon-lenswear.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nikos Dano.com\" f=\"Nikos_Dano.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nildram.net\" default_off=\"expired\" f=\"Nildram.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nileshgr.com\" f=\"Nileshgr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nimbledeals.com\" f=\"Nimbledeals.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nimbus Hosting (partial)\" f=\"Nimbus_Hosting.xml\"><exclusion pattern=\"^http://youraccount\\.nimbushosting\\.co\\.uk/index\\.php\"/><securecookie host=\"^www\\.nimbushosting\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nimbushosting\\.co\\.uk/\" to=\"https://www.nimbushosting.co.uk/\"/><rule from=\"^http://youraccount\\.nimbushosting\\.co\\.uk/\" to=\"https://youtaccount.nimbushosting.co.uk/\"/></ruleset>", "<ruleset name=\"Nimenhuuto.com\" f=\"Nimenhuuto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nimzone.com\" default_off=\"mismatch\" f=\"Nimzone.com.xml\"><rule from=\"^http://server1\\.nimzone\\.com/\" to=\"https://server1.nimzone.com/\"/></ruleset>", "<ruleset name=\"nine-2-one\" default_off=\"failed ruleset test\" f=\"Nine-2-one.xml\"><securecookie host=\"^(?:www\\.)?nine-2-one\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nine\" f=\"Nine.xml\"><securecookie host=\"^\\.?webmail\\.nine\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nines.nl\" f=\"Nines.nl.xml\"><securecookie host=\"^www\\.nines\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ning (false MCB)\" platform=\"mixedcontent\" f=\"Ning-falsemixed.xml\"><exclusion pattern=\"^http://creators\\.ning\\.com/(?:activity/|(?:[\\w-]+/)?(?:cs|image)s/|favicon\\.ico)\"/><exclusion pattern=\"^http://makemodules\\.ning\\.com/(?:activity/|colorbox/|(?:[\\w-]+/)?(?:css|error|images)/|favicon\\.ico|js/|xn/)\"/><rule from=\"^http://(creator|makemodule)s\\.ning\\.com/\" to=\"https://$1s.ning.com/\"/></ruleset>", "<ruleset name=\"Ning (partial)\" f=\"Ning.xml\"><exclusion pattern=\"^http://creators\\.ning\\.com/(?!activity/|(?:[\\w-]+/)?(?:cs|image)s/|favicon\\.ico)\"/><exclusion pattern=\"^http://makemodules\\.ning\\.com/(?!activity/|colorbox/|(?:[\\w-]+/)?(?:css|error|images)/|favicon\\.ico|js/|xn/)\"/><securecookie host=\".*\\.ning\\.com$\" name=\".+\"/><rule from=\"^http://((?:about|build|creators|developer|go|help|makemodules|socialnetworkmain|uk|www)\\.)?ning\\.com/\" to=\"https://$1ning.com/\"/><rule from=\"^http://static\\.ning\\.com/([^/]+)/\" to=\"https://$1.ning.com/xn_resources/\"/></ruleset>", "<ruleset name=\"Ninite.com\" f=\"Ninite.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nintendo.com (partial) \" default_off=\"failed ruleset test\" f=\"Nintendo.com.xml\"><securecookie host=\"^.*\\.nintendo\\.com$\" name=\".+\"/><rule from=\"^http://((?:club|happyholidays|iwataasks|share|smetrics|store|www)\\.)?nintendo\\.com/\" to=\"https://$1nintendo.com/\"/><rule from=\"^http://support\\.nintento\\.com/(?:\\?.*)?$\" to=\"https://www.nintendo.com/consumer/assets/region_select.jsp\"/></ruleset>", "<ruleset name=\"Nintendo.de\" f=\"Nintendo.de.xml\"><rule from=\"^http://nintendo\\.de/\" to=\"https://www.nintendo.de/\"/><securecookie host=\"(?:www|jobs)\\.nintendo\\.de\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nintendo World Report\" f=\"Nintendo_World_Report.xml\"><securecookie host=\"^(?:www\\.)?nintendoworldreport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NinthDecimal.com\" f=\"NinthDecimal.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance|ndat)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ninux.org (partial)\" default_off=\"self-signed\" f=\"Ninux.org.xml\"><rule from=\"^http://svn\\.ninux\\.org/\" to=\"https://svn.ninux.org/\"/><securecookie host=\"^svn\\.ninux\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"nisit69.com\" default_off=\"failed ruleset test\" f=\"Nisit69.com.xml\"><securecookie host=\"^(?:w*\\.)?nisit69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Niskanen Center.org\" f=\"Niskanen_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiteFlirt.com (partial)\" f=\"NiteFlirt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiteTimeToys.com\" f=\"NiteTimeToys.com.xml\"><securecookie host=\"^(?:affiliates|\\.www)?\\.nitetimetoys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nitro.dk (partial)\" default_off=\"self-signed\" f=\"Nitro.dk.xml\"><securecookie host=\"^webmail\\.nitro\\.dk$\" name=\".*\"/><rule from=\"^http://webmail\\.nitro\\.dk/\" to=\"https://webmail.nitro.dk/\"/></ruleset>", "<ruleset name=\"NitroSell.com (partial)\" f=\"NitroSell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nitro Cloud.com\" default_off=\"failed ruleset test\" f=\"Nitro_Cloud.com.xml\"><securecookie host=\"^\\.nitrocloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nitrokey.com\" f=\"Nitrokey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NixOS.org\" f=\"NixOS.org.xml\"><rule from=\"^http://www\\.nixos\\.org/\" to=\"https://nixos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nixsrv.com\" f=\"Nixsrv.com.xml\"><securecookie host=\"^\\.nixsrv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nlgcdn.com\" f=\"Nlgcdn.com.xml\"><rule from=\"^http://nlgcdn\\.com/\" to=\"https://nlgcdn.com/\"/></ruleset>", "<ruleset name=\"Nmap.org\" f=\"Nmap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nnetworks\" f=\"Nnetworks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Deep Packet Inspection campaign\" f=\"No-DPI-campaign.xml\"><securecookie host=\"^(?:www\\.)?nodpi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"noHold (partial)\" f=\"NoHold.xml\"><rule from=\"^http://sw\\.nohold\\.net/\" to=\"https://sw.nohold.net/\"/></ruleset>", "<ruleset name=\"NoMachine.com\" f=\"NoMachine.com.xml\"><securecookie host=\"^www\\.nomachine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nomachine\\.com/\" to=\"https://www.nomachine.com/\"/></ruleset>", "<ruleset name=\"NoScript.net\" f=\"NoScript.net.xml\"><securecookie host=\"^noscript\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoTex\" f=\"NoTex.xml\"><securecookie host=\"^\\.?notex\\.ch$\" name=\".+\"/><rule from=\"^http://notex\\.ch/\" to=\"https://notex.ch/\"/></ruleset>", "<ruleset name=\"NoVA Infosec.com\" f=\"NoVA_Infosec.xml\"><securecookie host=\"^\\.novainfosec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No 1366.org\" f=\"No_1366.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Bitcoin License.org\" f=\"No_Bitcoin_License.org.xml\"><securecookie host=\"^\\.nobitcoinlicense\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Hats.ca\" f=\"No_Hats.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No IP.com\" f=\"No_IP.com.xml\"><securecookie host=\"^(?:www)?\\.noip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Starch Press (partial)\" f=\"No_Starch_Press.xml\"><securecookie host=\"^\\.nostarch\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(www\\.)?nostarch\\.com/(?=(?:about|catalog|media|writeforus)\\.htm|cart(?:$|[?/])|downloads/|favicon\\.ico|images/|misc/|modules/|sites/)\" to=\"https://$1nostarch.com/\"/><rule from=\"^http://mail\\.nostarch\\.com/(?=$|\\?)\" to=\"https://mail.google.com/a/nostarch.com\"/><rule from=\"^http://media\\.nostarch\\.com/\" to=\"https://d19tnq0ilrg6a.cloudfront.net/\"/></ruleset>", "<ruleset name=\"no added sugar\" f=\"No_added_sugar.xml\"><securecookie host=\"^\\.noaddedsugar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NobleHour.com\" f=\"NobleHour.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nocdirect.com\" f=\"Nocdirect.com.xml\"><securecookie host=\"^(?:ninja|radium)\\.nocdirect\\.com$\" name=\".+\"/><rule from=\"^http://(ninja|radium)\\.nocdirect\\.com/\" to=\"https://$1.nocdirect.com/\"/></ruleset>", "<ruleset name=\"NodeJS Modules.org\" default_off=\"expired, missing certificate chain\" f=\"NodeJS_Modules.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NodeServ.com\" f=\"NodeServ.com.xml\"><securecookie host=\"^(?:billing|manage)\\.nodeserv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NodeSource.com\" f=\"NodeSource.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Node Security.io\" f=\"Node_Security.io.xml\"><rule from=\"^http://(?:www\\.)?nodesecurity\\.io/\" to=\"https://nodesecurity.io/\"/></ruleset>", "<ruleset name=\"Nodejitsu.com\" f=\"Nodejitsu.com.xml\"><securecookie host=\"^\\.nodejitsu\\.com$\" name=\".\"/><rule from=\"^http://www\\.(blog|legal|versions)\\.nodejitsu\\.com/\" to=\"https://$1.nodejitsu.com/\"/><rule from=\"^http://status\\.nodejitsu\\.com/\" to=\"https://nodejitsu.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nodejs.org (partial)\" f=\"Nodejs.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.nodejs\\.org/[^?]*\" to=\"https://nodejs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nodes.dk\" f=\"Nodes.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noelia\" f=\"Noelia.xml\"><securecookie host=\"^noelia\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noembed.com\" f=\"Noembed.com.xml\"><securecookie host=\"^\\.noembed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noisebridge.net\" f=\"Noisebridge.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noiseless Vault.org\" default_off=\"failed ruleset test\" f=\"Noiseless_Vault.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noisey.com\" f=\"Noisey.com.xml\"><rule from=\"^http://(?:www\\.)?noisey\\.com/\" to=\"https://noisey.vice.com/\"/><rule from=\"^http://assets\\.noisey\\.com/\" to=\"https://d2d9cnk8doncvf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Nokia (partial)\" default_off=\"failed ruleset test\" f=\"Nokia.xml\"><exclusion pattern=\"^http://www\\.developer\\.nokia\\.com/(?:$|De(?:sign|velop|vices)/|Distribute/|info/)\"/><securecookie host=\"^(?:.*\\.)?nokia\\.(?:com|co\\.uk|de|fr)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nokia\\.ca/\" to=\"https://www.nokia.com/ca-en/\"/><rule from=\"^http://(?:www\\.)?nokia\\.(co\\.uk|de|fr)/\" to=\"https://www.nokia.$1/\"/><rule from=\"^http://advertising\\.nokia\\.com/\" to=\"https://primeplace.nokia.com/\"/><rule from=\"^http://((?:account|(?:(?:analytics|projects|sso|www)\\.)?developer|discussions\\.europe|[ir](?:\\.prod)?|maps\\.nlp|api\\.maps|\\d\\.maps\\.nlp|primeplace|www)\\.)?nokia\\.com/\" to=\"https://$1nokia.com/\"/><rule from=\"^http://developer\\.nokia\\.com/\" to=\"https://qt-project.org/\"/><rule from=\"^http://(?:www\\.)?maps\\.nokia\\.com/+\" to=\"https://here.com/\"/><rule from=\"^http://qt\\.nokia\\.com/\" to=\"https://qt.digia.com/\"/><rule from=\"^http://(?:blog|labs)\\.qt\\.nokia\\.com/\" to=\"https://blog.qt.digia.com/\"/><rule from=\"^http://discussions\\.nokia\\.co\\.uk/html/images/\" to=\"https://discussions.europe.nokia.com/html/images/\"/><rule from=\"^http://(?:www\\.)?nokiausa\\.com/\" to=\"https://www.nokiausa.com/\"/></ruleset>", "<ruleset name=\"Nokia Siemens Networks (partial)\" f=\"Nokia_Siemens_Networks.xml\"><securecookie host=\"^\\.nokiasiemensnetworks\\.com$\" name=\"^(?:s_\\w{1,3}|__utm)\\w$\"/><securecookie host=\"^(?:supplier)?\\.portal\\.nokiasiemensnetworks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nokiasiemensnetworks\\.com/(?=jwbox/|sites/)\" to=\"https://www.nokiasiemensnetworks.com/\"/><rule from=\"^http://(blogs|industryanalyst|(?:online|supplier)\\.portal)\\.nokiasiemensnetworks\\.com/\" to=\"https://$1.nokiasiemensnetworks.com/\"/><rule from=\"^http://(www\\.)?nsn\\.com/(?=jwbox/|sites/)\" to=\"https://$1nsn.com/\"/></ruleset>", "<ruleset name=\"Nomadesk (partial)\" default_off=\"failed ruleset test\" f=\"Nomadesk.xml\"><securecookie host=\"^secure\\.nomadesk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mynomadesk\\.com/\" to=\"https://mynomadesk.com/\"/><rule from=\"^http://(?:www\\.)?nomadesk\\.com/\" to=\"https://www.nomadesk.com/\"/><rule from=\"^http://secure\\.nomadesk\\.com/\" to=\"https://secure.nomadesk.com/\"/></ruleset>", "<ruleset name=\"Nomensa.com (partial)\" f=\"Nomensa.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nomovok.com (partial)\" f=\"Nomovok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nomura Research Institute\" default_off=\"failed ruleset test\" f=\"Nomura_Research_Institute.xml\"><rule from=\"^http://www\\.nri\\.co\\.jp/\" to=\"https://www.nri.co.jp/\"/></ruleset>", "<ruleset name=\"Non Profit Soapbox.com (partial)\" f=\"Non_Profit_Soapbox.com.xml\"><securecookie host=\"^\\w+\\.secure\\.nonprofitsoapbox\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.secure\\.nonprofitsoapbox\\.com/\" to=\"https://$1.secure.nonprofitsoapbox.com/\"/></ruleset>", "<ruleset name=\"Noncombatant.org\" f=\"Noncombatant.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nonexiste.net (partial)\" f=\"Nonexiste.net.xml\"><rule from=\"^http://(?:www\\.)?images\\.nonexiste\\.net/\" to=\"https://images.nonexiste.net/\"/></ruleset>", "<ruleset name=\"NooElec.com\" f=\"NooElec.com.xml\"><securecookie host=\"^\\.(?:www\\.)?nooelec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordea\" f=\"Nordea.xml\"><rule from=\"^http://(?:www\\.)?nordea\\.(com|dk|ee|fi|lv|no|se)/\" to=\"https://www.nordea.$1/\"/></ruleset>", "<ruleset name=\"Norden.org\" f=\"Norden.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NordicHardware (mismatches)\" default_off=\"Certificate mismatch\" platform=\"mixedcontent\" f=\"NordicHardware-mismatches.xml\"><rule from=\"^http://images\\.nordichardware\\.com/\" to=\"https://images.nordichardware.com/\"/></ruleset>", "<ruleset name=\"NordicHardware\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NordicHardware.xml\"><securecookie host=\"^www\\.nordichardware\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nhw\\.se/\" to=\"https://www.nordichardware.se/\"/><rule from=\"^http://(www\\.)?nordichardware\\.(com|se)/\" to=\"https://www.nordichardware.$2/\"/></ruleset>", "<ruleset name=\"Nordic Academy.no (partial)\" default_off=\"failed ruleset test\" f=\"Nordic_Academy.no.xml\"><securecookie host=\"^vpn\\.nordicacademy\\.no$\" name=\".+\"/><rule from=\"^http://vpn\\.nordicacademy\\.no/\" to=\"https://vpn.nordicacademy.no/\"/></ruleset>", "<ruleset name=\"Nordic Hosting.com\" f=\"Nordic_Hosting.com.xml\"><securecookie host=\"^www\\.nordichosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordic Semiconductor\" f=\"Nordic_Semiconductor.xml\"><securecookie host=\"^www\\.nordicsemi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nordicsemi\\.com/\" to=\"https://www.nordicsemi.com/\"/></ruleset>", "<ruleset name=\"NordkappNett.no\" f=\"NordkappNett.no.xml\"><securecookie host=\"^(?:www\\.)?nordkappnett\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nordkapp\\.net/\" to=\"https://nordkappnett.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordnet.se\" platform=\"mixedcontent\" f=\"Nordnet.se.xml\"><rule from=\"^http://www\\.nordnet\\.se/\" to=\"https://www.nordnet.se/\"/><rule from=\"^http://nordnet\\.se/\" to=\"https://www.nordnet.se/\"/></ruleset>", "<ruleset name=\"Nordstrom Rack.com\" f=\"Nordstrom_Rack.com.xml\"><rule from=\"^http://nordstromrack\\.com/\" to=\"https://www.nordstromrack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordu.net\" f=\"Nordu.net.xml\"><rule from=\"^http://www\\.nordu\\.net/\" to=\"https://www.nordu.net/\"/><rule from=\"^http://nordu\\.net/\" to=\"https://www.nordu.net/\"/></ruleset>", "<ruleset name=\"Nordvpn.com\" f=\"Nordvpn.com.xml\"><securecookie host=\"^(?:www\\.)?nordvpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norid.no\" f=\"Norid.no.xml\"><rule from=\"^http://(?:www\\.)?norid\\.no/\" to=\"https://www.norid.no/\"/><rule from=\"^http://pid\\.norid\\.no/\" to=\"https://pid.norid.no/\"/></ruleset>", "<ruleset name=\"noris.net\" platform=\"mixedcontent\" f=\"Noris.org.xml\"><rule from=\"^http://(?:((?:mail|monitor|service)\\.)|www\\.)?noris\\.net/\" to=\"https://$1noris.net/\"/></ruleset>", "<ruleset name=\"normalesup.org (partial)\" f=\"Normalesup.org.xml\"><rule from=\"^http://www\\.normalesup\\.org/\" to=\"https://www.normalesup.org/\"/></ruleset>", "<ruleset name=\"Norman.com (problematic)\" default_off=\"mismatched\" f=\"Norman.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norman.com (partial)\" f=\"Norman.com.xml\"><securecookie host=\"^(?:www\\.)?norman\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Normation.com\" f=\"Normation.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norrgruppen.se (partial)\" f=\"Norrgruppen.se.xml\"><securecookie host=\"^\\.norrgruppen\\.se$\" name=\"^(?:NXCLICK2|OAX)$\"/><rule from=\"^http://sifomedia\\.norrgruppen\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"NANOG.org (partial)\" f=\"North-American-Network-Operators-Group.xml\"><exclusion pattern=\"^http://bcop\\.nanog\\.org/+(?!images/|skins/)\"/><rule from=\"^http://mailtest\\.nanog\\.org/\" to=\"https://mailman.nanog.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCSU.edu (problematic)\" default_off=\"missing certificate chain\" f=\"North-Carolina-State-University-problematic.xml\"><rule from=\"^http://(?:www\\.cs|csc)\\.ncsu\\.edu/\" to=\"https://www.csc.ncsu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCSU.edu (partial)\" f=\"North-Carolina-State-University.xml\"><exclusion pattern=\"^http://libraryh3lp\\.com/(?:chat/|follow/)\"/><securecookie host=\"^libraryh3lp\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?ncsu\\.edu$\" name=\".*\"/><rule from=\"^http://gmail\\.ncsu\\.edu/[^?]*\" to=\"https://mail.google.com/a/ncsu.edu\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North-Herts.gov.uk (partial)\" f=\"North-Herts.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NorthClicks\" default_off=\"failed ruleset test\" f=\"NorthClicks.xml\"><securecookie host=\"^(?:www)?\\.northclicks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?northclicks\\.com/\" to=\"https://www.northclicks.com/\"/></ruleset>", "<ruleset name=\"North Devon Theatres.org.uk\" default_off=\"expired, self-signed\" f=\"North_Devon_Theatres.org.uk.xml\"><securecookie host=\"^northdevontheatres\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?northdevontheatres\\.org\\.uk/\" to=\"https://northdevontheatres.org.uk/\"/></ruleset>", "<ruleset name=\"North Korea Tech.org\" f=\"North_Korea_Tech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Norfolk.org\" f=\"North_Norfolk.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://northnorfolk\\.org/\" to=\"https://www.northnorfolk.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Warks.gov.uk\" f=\"North_Warks.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northeastern.edu (partial)\" f=\"Northeastern.edu.xml\"><securecookie host=\"^(?:calendar|laweval|www)\\.northeastern\\.edu$\" name=\".+\"/><rule from=\"^http://northeastern\\.edu/\" to=\"https://www.northeastern.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northern-Indymedia.org (partial)\" default_off=\"expired\" platform=\"cacert\" f=\"Northern-Indymedia.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northern Tool.com (partial)\" f=\"Northern_Tool.com.xml\"><securecookie host=\"^m\\.northerntool\\.com$\" name=\".+\"/><rule from=\"^http://(?:northerntool\\.ugc\\.bazaarvoice|(?:answer|review)s\\.northerntool)\\.com/\" to=\"https://northerntool.ugc.bazaarvoice.com/\"/><rule from=\"^http://(?:www\\.)?northerntool\\.com/(?=css/|favicon\\.ico|images/|s(?:hop|tores)(?:$|[?/])|wcsstore/)\" to=\"https://www.northerntool.com/\"/><rule from=\"^http://m\\.northerntool\\.com/\" to=\"https://m.northerntool.com/\"/></ruleset>", "<ruleset name=\"Northpole.fi\" default_off=\"failed ruleset test\" f=\"Northpole.fi.xml\"><securecookie host=\"^(?:.*\\.)northpole\\.fi$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?northpole\\.fi/\" to=\"https://northpole.fi/\"/></ruleset>", "<ruleset name=\"Northwest Swim Shop\" f=\"Northwest_Swim_Shop.xml\"><rule from=\"^http://(?:www\\.)?nwswimshop\\.com/\" to=\"https://nwswimshop.myshopify.com/\"/></ruleset>", "<ruleset name=\"Northwestern.edu (partial)\" f=\"Northwestern_University.xml\"><exclusion pattern=\"^http://www\\.library\\.northwestern\\.edu/(?!misc/|modules/|sites/)\"/><securecookie host=\"^(?:blog\\.nuamps\\.at|autodiscover|bfmf|carlsmith|mail\\.(?:chicago|evanston)|(?:www\\.)?collaborate(?:\\.qatar)?|courses|cscdc|(?:validate|websso)\\.it|blogs\\.kellogg|(?:www\\.)?law|mail|chitrec\\.nubic|nuhr|blog\\.oncofertility|umail|blog\\.undergradresearch|blog\\.womenshealth)\\.northwestern\\.edu$\" name=\".+\"/><securecookie host=\"^\\.undergradresearch\\.northwestern\\.edu$\" name=\"^SESS\\w{32}$\"/><rule from=\"^http://((?:blog\\.nuamps|websecurity)\\.at|autodiscover|bfmf|carlsmith|mail\\.(?:chicago|evanston)|(?:www\\.)?collaborate|courses|directory|blog\\.ipd|(?:fed|validate|websso)\\.it|(?:careerspace\\.|www\\.)?law|www\\.library|mail|(?:www\\.)?math|chitrec\\.nubic|nuhr|blog\\.oncofertility|(?:autodiscover|(?:www\\.)?collaborate|mail|webmail)\\.qatar|(?:www\\.)?research|blog\\.scienceinsociety|(?:www\\.)?scs|tss|umail|blog\\.undergradresearch|(?:blog\\.)?womenshealth)\\.northwestern\\.edu/\" to=\"https://$1.northwestern.edu/\"/><rule from=\"^http://(?:www\\.)?(cafe|ses|undergradresearch)\\.northwestern\\.edu/\" to=\"https://$1.northwestern.edu/\"/><rule from=\"^http://u\\.northwestern\\.edu/\" to=\"https://mail.google.com/a/u.northwestern.edu/\"/><rule from=\"^http://(?:www\\.)?wcas\\.northwestern\\.edu/\" to=\"https://www.wcas.northwestern.edu/\"/></ruleset>", "<ruleset name=\"Norton (partial)\" f=\"Norton.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://arabic\\.norton\\.com/.*\" to=\"https://uk.norton.com/\"/><rule from=\"^http://asia\\.norton\\.com/.*\" to=\"https://sg.norton.com/\"/><rule from=\"^http://lu\\.norton\\.com/.*\" to=\"https://fr.norton.com/\"/><rule from=\"^http://store\\.norton\\.com/+(.*)\\.html\" to=\"https://buy.norton.com/en-us/$1\"/><rule from=\"^http://store\\.norton\\.com/[^?]*\" to=\"https://buy.norton.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norton Online Backup\" f=\"Norton_Online_Backup.xml\"><securecookie host=\"^.+\\.backup\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?backup\\.com/\" to=\"https://www.backup.com/\"/><rule from=\"^http://(?:secure-)?assets\\.backup\\.com/\" to=\"https://secure-assets.backup.com/\"/><rule from=\"^http://(centurylink|delldatasafe|[dn]obu|nis|nobu-nis|vipprotection)\\.backup\\.com/\" to=\"https://$1.backup.com/\"/></ruleset>", "<ruleset name=\"Norwalk Reflector (partial)\" f=\"Norwalk_Reflector.xml\"><rule from=\"^http://(?:www\\.)?norwalkreflector\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.norwalkreflector.com/$1\"/></ruleset>", "<ruleset name=\"Norwegian.com\" platform=\"mixedcontent\" f=\"Norwegian.com.xml\"><rule from=\"^http://www\\.norwegian\\.com/\" to=\"https://www.norwegian.com/\"/><rule from=\"^http://norwegian\\.com/\" to=\"https://www.norwegian.com/\"/></ruleset>", "<ruleset name=\"NorwegianClass101.com\" f=\"NorwegianClass101.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://norwegianclass101\\.com/\" to=\"https://www.norwegianclass101.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"norx.io\" f=\"Norx.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nos-oignons.net\" f=\"Nos-oignons.net.xml\"><rule from=\"^http://(?:www\\.)?nos-oignons\\.(?:fr|org)/\" to=\"https://nos-oignons.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nos.pt\" f=\"Nos.pt.xml\"><rule from=\"^http://(?:www\\.)?nos\\.pt/\" to=\"https://www.nos.pt/\"/></ruleset>", "<ruleset name=\"not-your-server.de (partial)\" f=\"Not-your-server.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NotABug.org\" f=\"NotABug.org.xml\"><securecookie host=\"^(?:www\\.)?notabug\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Alone.gov\" f=\"Not_Alone.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Enough Shaders.com\" default_off=\"failed ruleset test\" f=\"Not_Enough_Shaders.com.xml\"><securecookie host=\"^(?:www\\.)?notenoughshaders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Even Past.org\" f=\"Not_Even_Past.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Without a Warrant.com\" default_off=\"expired\" f=\"Not_Without_a_Warrant.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NotaNet.com.br\" f=\"NotaNet.com.br.xml\"><rule from=\"^http://(?:www\\.)?notanet\\.com\\.br/\" to=\"https://www.notanet.com.br/\"/></ruleset>", "<ruleset name=\"Notacon.org\" default_off=\"failed ruleset test\" f=\"Notacon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoteFly\" f=\"NoteFly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Notebook Italia\" default_off=\"expired, self-signed\" f=\"Notebook_Italia.xml\"><securecookie host=\"^notebookitalia\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?notebookitalia\\.it/\" to=\"https://notebookitalia.it/\"/></ruleset>", "<ruleset name=\"Notebooksbilliger.de\" f=\"Notebooksbilliger.xml\"><rule from=\"^http://(blog|img|www)\\.notebooksbilliger\\.de/\" to=\"https://$1.notebooksbilliger.de/\"/></ruleset>", "<ruleset name=\"Noted Code.com\" f=\"Noted_Code.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Notepad++\" f=\"Notepad++.xml\"><securecookie host=\"^notepad-plus-plus\\.org$\" name=\".+\"/><rule from=\"^http://www\\.notepad-plus-plus\\.org/\" to=\"https://notepad-plus-plus.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nothing.ch\" f=\"Nothing.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nottingham.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Nottingham.ac.uk-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NottinghamAC\" f=\"NottinghamAC.xml\"><securecookie host=\"^(?:.+\\.)?nottingham\\.ac\\.uk$\" name=\".\"/><rule from=\"^http://ssbcpib01\\.nottingham\\.ac\\.uk/\" to=\"https://www.cpib.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"novartisart.com\" default_off=\"expired\" f=\"Novartisart.com.xml\"><rule from=\"^http://(?:www\\.)?novartisart\\.com/\" to=\"https://novartisart.com/\"/></ruleset>", "<ruleset name=\"Novell.com (partial)\" default_off=\"failed ruleset test\" f=\"Novell.xml\"><securecookie host=\"^\\.novell\\.com$\" name=\"^bb_(?:sessionhash|lastactivity|lastvisit)$\"/><securecookie host=\"^(?:shop|(?:c2c\\.|eservice\\.)?websupport|wiki|www)\\.novell\\.com$\" name=\".+\"/><rule from=\"^http://novell\\.com/\" to=\"https://www.novell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NovoEd.com\" f=\"NovoEd.com.xml\"><securecookie host=\"^novoed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Novosoft.net\" f=\"Novosoft.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NowSecure.com\" f=\"NowSecure.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nowness.com\" f=\"Nowness.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nowness\\.com/\" to=\"https://www.nowness.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nowy BIP\" default_off=\"mismatched\" f=\"Nowy_BIP.xml\"><securecookie host=\"^\\.nowybip\\.pl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nowybip\\.pl/\" to=\"https://nowybip.pl/\"/></ruleset>", "<ruleset name=\"np-Edv.at (partial)\" f=\"Np-Edv.at.xml\"><rule from=\"^http://(hosting|it|kawas|mail|stats|wiki)\\.np-edv\\.at/\" to=\"https://$1.np-edv.at/\"/></ruleset>", "<ruleset name=\"nplusonemag.com (partial)\" f=\"Nplusonemag.com.xml\"><securecookie host=\"^(?:www\\.)?nplusonemag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npm.im\" default_off=\"expired\" f=\"Npm.im.xml\"><rule from=\"^http://(?:www\\.)?npm\\.im/\" to=\"https://www.npm.im/\"/></ruleset>", "<ruleset name=\"npm js.com\" f=\"Npm_js.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npm js.org (partial)\" f=\"Npm_js.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.npmjs\\.org/\" to=\"https://npmjs.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npmawesome.com (false MCB)\" platform=\"mixedcontent\" f=\"Npmawesome.com-falsemixed.xml\"><rule from=\"^http://npmawesome\\.com/\" to=\"https://npmawesome.com/\"/></ruleset>", "<ruleset name=\"npmawesome.com (partial)\" f=\"Npmawesome.com.xml\"><exclusion pattern=\"^http://npawesome\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.npmawesome\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npower (partial)\" f=\"Npower.xml\"><rule from=\"^http://(?:www\\.)?npower\\.com/(Medium-)?Business/(.+)/(?:index\\.htm)?\" to=\"https://www.npower.com/$1Business/$2/\"/><rule from=\"^http://(?:www\\.)?npower\\.com/([aA]t_[hH]ome/[aA]pplications/|favicon\\.ico|idc/groups/wcms_|In_Business/)\" to=\"https://www.npower.com/$1\"/></ruleset>", "<ruleset name=\"nqsb.io\" f=\"Nqsb.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nrelate (partial)\" f=\"Nrelate.xml\"><securecookie host=\"^partners\\.nrelate\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nrelate\\.com/wp-content/uploads/2010/10/favicon\\.ico\" to=\"https://partners.nrelate.com/wp-content/themes/partners-main/images/favicon.ico\"/><rule from=\"^http://(?:www\\.)?nrelate\\.com/wp-content/uploads/2012/01/nrelate\\.png\" to=\"https://partners.nrelate.com/wp-content/themes/partners-main/images/logo2.png\"/><rule from=\"^http://partners\\.nrelate\\.com/\" to=\"https://partners.nrelate.com/\"/></ruleset>", "<ruleset name=\"NRK.no (partial)\" f=\"Nrk.no.xml\"><exclusion pattern=\"^http://(?:www\\.)?nrk\\.no/+(?!03030(?:$|[?/])|serum/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsa-observer.net\" default_off=\"failed ruleset test\" f=\"Nsa-observer.net.xml\"><rule from=\"^http://(?:www\\.)?nsa-observer\\.net/\" to=\"https://www.nsa-observer.net/\"/></ruleset>", "<ruleset name=\"Nserver.Ru\" f=\"Nserver.Ru.xml\"><securecookie host=\"^\\.gpt\\.nserver\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsfwcorp.com (partial)\" f=\"Nsfwcorp.com.xml\"><securecookie host=\"^www\\.nsfwcorp\\.com$\" name=\".+\"/><rule from=\"^http://nsfwcorp\\.com/\" to=\"https://www.nsfwcorp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsimg.net\" f=\"Nsimg.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsnam.org (partial)\" f=\"Nsnam.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsupdate.info\" f=\"Nsupdate.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntacdn1.net\" f=\"Ntacdn1.net.xml\"><securecookie host=\"^\\.ntacdn1\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntk.me\" f=\"Ntk.me.xml\"><securecookie host=\"^\\.ntk\\.me$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntmx.de\" f=\"Ntmx.de.xml\"><rule from=\"^http://www\\.ntmx\\.de/\" to=\"https://ntmx.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntop.org (false MCB)\" platform=\"mixedcontent\" f=\"Ntop.org.xml\"><rule from=\"^http://(?:svn\\.|www\\.)?ntop\\.org/\" to=\"https://svn.ntop.org/\"/><rule from=\"^https://www\\.ntop\\.org/\" to=\"https://svn.ntop.org/\"/></ruleset>", "<ruleset name=\"Nttxstore\" f=\"Nttxstore.xml\"><rule from=\"^http://(?:www\\.)?nttxstore\\.jp/\" to=\"https://nttxstore.jp/\"/></ruleset>", "<ruleset name=\"ntv.io (partial)\" f=\"Ntv.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntwk45.com\" f=\"Ntwk45.xml\"><rule from=\"^http://(\\w+)\\.ntwk45\\.com/\" to=\"https://$1.ntwk45.com/\"/></ruleset>", "<ruleset name=\"NuBlue\" f=\"NuBlue.xml\"><securecookie host=\"^\\.nublue\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuBits.com\" f=\"NuButs.com.xml\"><securecookie host=\"^(?:discuss)?\\.nubits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuGet (partial)\" f=\"NuGet.xml\"><securecookie host=\"^\\.docs\\.nuget\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuStarz.com (false MCB)\" platform=\"mixedcontent\" f=\"NuStarz.com-falsemixed.xml\"><securecookie host=\"^\\.nustarz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuStarz.com (partial)\" default_off=\"failed ruleset test\" f=\"NuStarz.com.xml\"><securecookie host=\"^customz\\.nustarz\\.com$\" name=\".+\"/><rule from=\"^http://customz\\.nustarz\\.com/\" to=\"https://customz.nustarz.com/\"/></ruleset>", "<ruleset name=\"Nu Image Medical (partial)\" f=\"Nu_Image_Medical.xml\"><rule from=\"^http://(www\\.)?nuimagemedical\\.com/(order-hgh(?:$|\\?|/)|wp-content/)\" to=\"https://$1nuimagemedical.com/$2\"/></ruleset>", "<ruleset name=\"Nuand.com\" f=\"Nuand.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuclear Blast (partial)\" f=\"Nuclear-Blast.xml\"><rule from=\"^http://(?:www\\.)?nuclearblast\\.de/(css|en/(?:data|shop/(?:order|registration)|system)|images|static)/\" to=\"https://www.nuclearblast.de/$1/\"/></ruleset>", "<ruleset name=\"NuclearCat.com\" f=\"NuclearCat.com.xml\"><rule from=\"^http://www\\.nuclearcat\\.com/\" to=\"https://nuclearcat.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nudevista.com (partial)\" default_off=\"mismatched\" f=\"Nudevista.com.xml\"><rule from=\"^http://a9[789]\\.nudevista\\.com/\" to=\"https://a97-nudevista.clients.cdn13.com/\"/></ruleset>", "<ruleset name=\"NuevaSync (partial)\" platform=\"mixedcontent\" f=\"NuevaSync.xml\"><rule from=\"^http://(?:www\\.)?nuevasync\\.com/\" to=\"https://www.nuevasync.com/\"/></ruleset>", "<ruleset name=\"nugg.ad\" f=\"Nugg.ad.xml\"><securecookie host=\"^\\.nuggad\\.net$\" name=\"^d$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nulab-Inc.com\" f=\"Nulab-Inc.com.xml\"><rule from=\"^http://(?:(developer\\.)|www\\.)?nulab-inc\\.com/\" to=\"https://$1nulab-inc.com/\"/></ruleset>", "<ruleset name=\"NullRefer.com (false MCB)\" platform=\"mixedcontent\" f=\"NullRefer.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nullday.de\" f=\"Nullday.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Numa.paris (partial)\" f=\"Numa.paris.xml\"><securecookie host=\"^www\\.numa\\.paris$\" name=\".+\"/><rule from=\"^http://numa\\.paris/\" to=\"https://www.numa.paris/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Numato.com (partial)\" f=\"Numato.com.xml\"><rule from=\"^http://(www\\.)?numato\\.com/(?=[\\w-]+\\.(?:gif|jpg|png)|cart/checkout(?:$|\\?.*|/\\??$)|misc/|sites/)\" to=\"https://$1numato.com/\"/></ruleset>", "<ruleset name=\"NRO.net\" f=\"Number-Resource-Organization.xml\"><securecookie host=\"^(?:.*\\.)nro\\.net$\" name=\".*\"/><rule from=\"^http://nro\\.net/\" to=\"https://www.nro.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NumbersUSA\" f=\"NumbersUSA.xml\"><securecookie host=\"^\\.numbersusa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Numergy.com\" f=\"Numergy.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^https://login\\.numergy\\.com:80/\" to=\"https://login.numergy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"numsys.eu\" default_off=\"mismatched\" f=\"Numsys.eu.xml\"><securecookie host=\"^numsys\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?numsys\\.eu/\" to=\"https://numsys.eu/\"/></ruleset>", "<ruleset name=\"Nurago\" f=\"Nurago.xml\"><rule from=\"^http://sensic\\.net/\" to=\"https://www.sensic.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nuseek.com (partial)\" default_off=\"Akamai certificate\" f=\"Nuseek.com.xml\"><rule from=\"^http://i\\.nuseek\\.com/\" to=\"https://i.nuseek.com/\"/></ruleset>", "<ruleset name=\"NutriCentre\" f=\"NutriCentre.xml\"><securecookie host=\"^(?:.*\\.)?nutricentre\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nutricentre\\.com/\" to=\"https://www.nutricentre.com/\"/></ruleset>", "<ruleset name=\"Nutrition.gov\" f=\"Nutrition.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nutritiondata.self.com\" f=\"Nutritiondata.self.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuuvem.com\" f=\"Nuuvem.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuwear\" f=\"Nuwear.xml\"><securecookie host=\"^(?:w*\\.)?nuwear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nuxx.net\" f=\"Nuxx.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nventio.com\" default_off=\"failed ruleset test\" f=\"Nventio.com.xml\"><securecookie host=\"^\\.?nventio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NwProgressive.org (partial)\" f=\"NwProgressive.org.xml\"><securecookie host=\"^(?:www\\.)?nwprogressive\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NxJimg.com\" f=\"NxJimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nxt Forum.org\" f=\"Nxt_Forum.org.xml\"><securecookie host=\"^nxtforum\\.org$\" name=\".+\"/><rule from=\"^http://www\\.nxtforum\\.org/+\" to=\"https://nxtforum.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nxtck.com\" f=\"Nxtck.com.xml\"><securecookie host=\"^nxtck\\.com$\" name=\".+\"/><rule from=\"^http://nxtck\\.com/\" to=\"https://nxtck.com/\"/></ruleset>", "<ruleset name=\"Nxtgn.org\" f=\"Nxtgn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.eu\" f=\"Nyaa.eu.xml\"><securecookie host=\"^\\.nyaa\\.eu$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.se (partial)\" f=\"Nyaa.se.xml\"><securecookie host=\"^\\.nyaa\\.se$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nylas.com (partial)\" f=\"Nylas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nymity.ch (partial)\" f=\"Nymity.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyx.cz\" f=\"Nyx.cz.xml\"><rule from=\"^http://(?:www\\.)?nyx\\.cz/\" to=\"https://www.nyx.cz/\"/></ruleset>", "<ruleset name=\"Nzbplanet.net\" f=\"Nzbplanet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o0bc.com\" f=\"O0bc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o2 online.de (partial)\" f=\"O2_online.de.xml\"><securecookie host=\"^(?:.*\\.)?o2online\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?o2online\\.de/\" to=\"https://www.o2online.de/\"/><rule from=\"^http://(cct2?|dsl|email|hilfe|login|portal|track)\\.o2online\\.de/\" to=\"https://$1.o2online.de/\"/><rule from=\"^http://mobilefun\\.o2online\\.de/\" to=\"https://o2-liv.mondiamedia.com/\"/></ruleset>", "<ruleset name=\"OAG.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"OAG.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OAG (partial)\" f=\"OAG.xml\"><exclusion pattern=\"^http://(?:www\\.)?oag\\.com/+(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^tppro\\.oag\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OASIS Open.org (false MCB)\" platform=\"mixedcontent\" f=\"OASIS_Open.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OASIS Open.org (partial)\" f=\"OASIS_Open.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OAuth\" default_off=\"mismatch\" f=\"OAuth.xml\"><rule from=\"^http://(?:www\\.)?oauth\\.net/\" to=\"https://oauth.net/\"/></ruleset>", "<ruleset name=\"OBLIC.com\" f=\"OBLIC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OBS project.com\" f=\"OBS_project.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OC-static.com\" f=\"OC-static.com.xml\"><securecookie host=\"^\\.oc-static\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCCRP.org\" default_off=\"failed ruleset test\" f=\"OCCRP.org.xml\"><securecookie host=\"^(?:www\\.)?occrp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCaml.org (partial)\" f=\"OCaml.xml\"><rule from=\"^http://www\\.ocaml\\.org/\" to=\"https://ocaml.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCamlCore.org (partial)\" f=\"OCamlCore.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCharles.org.uk\" f=\"OCharles.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OD.org\" f=\"OD.org.xml\"><securecookie host=\"^shared\\.od\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ODMWheels\" default_off=\"failed ruleset test\" f=\"ODMWheels.xml\"><securecookie host=\"^(?:.*\\.)?odmwheels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OECD\" f=\"OECD.xml\"><rule from=\"^http://www\\.oecd\\.org/\" to=\"https://www.oecd.org/\"/></ruleset>", "<ruleset name=\"OECD iLibrary (partial)\" default_off=\"expired, mismatched\" f=\"OECD_iLibrary.xml\"><rule from=\"^http://www\\.oecd-?ilibrary\\.org/(cs|image)s/\" to=\"https://www.oecd-ilibrary.org/$1s/\"/></ruleset>", "<ruleset name=\"OEIS.org\" f=\"OEIS.org.xml\"><rule from=\"^http://(?:www\\.)?oeis\\.org/\" to=\"https://oeis.org/\"/></ruleset>", "<ruleset name=\"OFB (partial)\" default_off=\"failed ruleset test\" f=\"OFB.xml\"><securecookie host=\"^ofb\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ofb\\.net/\" to=\"https://ofb.net/\"/><rule from=\"^http://mail\\.ofb\\.net/\" to=\"https://ofb.net:441/squirrelmail-apache2/\"/></ruleset>", "<ruleset name=\"OFFLINE.ee (partial)\" default_off=\"expired, self-signed\" f=\"OFFLINE.ee.xml\"><securecookie host=\"^mail\\.offline\\.ee$\" name=\".+\"/><rule from=\"^http://mail\\.offline\\.ee/\" to=\"https://mail.offline.ee/\"/></ruleset>", "<ruleset name=\"OFTC.net\" f=\"OFTC.net.xml\"><rule from=\"^http://oftc\\.net/\" to=\"https://www.oftc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OH-Tech.org\" f=\"OH-Tech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OHM2013.org\" default_off=\"expired\" f=\"OHM2013.org.xml\"><rule from=\"^http://(?:www\\.)?ohm2013\\.org/\" to=\"https://ohm2013.org/\"/></ruleset>", "<ruleset name=\"O’Heffernan\" f=\"OHeffernan.xml\"><rule from=\"^http://(?:www\\.)?inchinashop\\.com/\" to=\"https://pingplanet.squarespace.com/\"/></ruleset>", "<ruleset name=\"OK.de\" f=\"OK.de.xml\"><securecookie host=\"^(?:www\\.)?ok\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ok\\.de/\" to=\"https://www.ok.de/\"/></ruleset>", "<ruleset name=\"OKCoin.cn\" f=\"OKCoin.cn.xml\"><securecookie host=\"^www\\.okcoin\\.cn$\" name=\".+\"/><rule from=\"^http://okcoin\\.cn/\" to=\"https://www.okcoin.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKCoin.com\" f=\"OKCoin.com.xml\"><securecookie host=\"^(?:www)?\\.okcoin\\.com$\" name=\".+\"/><rule from=\"^http://okcoin\\.com/\" to=\"https://www.okcoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKPAY.com\" f=\"OKPAY.com.xml\"><securecookie host=\"^(?:support|www)\\.okpay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?okpay\\.com/\" to=\"https://www.okpay.com/\"/><rule from=\"^http://support\\.okpay\\.com/\" to=\"https://support.okay.com/\"/></ruleset>", "<ruleset name=\"OLMN.org\" default_off=\"failed ruleset test\" f=\"OLMN.org.xml\"><securecookie host=\"^www\\.olmn\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?olmn\\.org/\" to=\"https://www.olmn.org/\"/></ruleset>", "<ruleset name=\"OLPC (partial)\" f=\"OLPC.xml\"><rule from=\"^http://dev\\.laptop\\.org/\" to=\"https://dev.laptop.org/\"/><securecookie host=\"^dev\\.laptop\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"OLX.com.br (partial)\" f=\"OLX.com.br.xml\"><securecookie host=\"^\\.olx\\.com\\.br$\" name=\"^(?:customer_chat|md|sq|s)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMG! Ubuntu! (partial)\" default_off=\"failed ruleset test\" f=\"OMG-Ubuntu.xml\"><rule from=\"^http://cloudfront\\.omgubuntu\\.co\\.uk/\" to=\"https://omgubuntu.s3-eu-west-1.amazonaws.com/\"/></ruleset>", "<ruleset name=\"OMG uk.com\" f=\"OMG_uk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.omguk\\.com/.*\" to=\"https://www.optimisemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMICRON (partial)\" f=\"OMICRON.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMNeTpp.org\" f=\"OMNeTpp.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMS Vermarktungs GmbH\" f=\"OMS.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ON24 (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"ON24-mismatches.xml\"><rule from=\"^http://communication\\.on24\\.com/\" to=\"https://communication.on24.com/\"/></ruleset>", "<ruleset name=\"ON24.com (partial)\" f=\"ON24.xml\"><securecookie host=\"^(?:event\\.|eventprd10b\\.|www\\.)?on24\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?on24\\.com/\" to=\"https://www.on24.com/\"/><rule from=\"^http://(event|eventprd10b|w)\\.on24\\.com/\" to=\"https://$1.on24.com/\"/></ruleset>", "<ruleset name=\"ONE.org\" f=\"ONE.org.xml\"><securecookie host=\"^one\\.actionkit\\.com\" name=\".+\"/><rule from=\"^http://(www\\.)?one\\.org/\" to=\"https://$1one.org/\"/><rule from=\"^http://(?:one\\.actionkit\\.com|give\\.one\\.org)/\" to=\"https://one.actionkit.com/\"/></ruleset>", "<ruleset name=\"ONEadmin.cz (partial)\" f=\"ONEadmin.xml\"><securecookie host=\"^www\\.oneadmin\\.cz$\" name=\".+\"/><rule from=\"^http://oneadmin\\.cz/[^?]*\" to=\"https://www.oneadmin.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEbit.cz\" f=\"ONEbit.xml\"><securecookie host=\"^w(?:ebmail|ww)\\.onebit\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEhelp\" f=\"ONEhelp.xml\"><securecookie host=\"^www\\.onehelp\\.cz$\" name=\".+\"/><rule from=\"^http://onehelp\\.cz/(?:\\?.*)?$\" to=\"https://www.onehelp.cz/onebit/\"/><rule from=\"^http://onehelp\\.cz/onebit/(?:\\?.*)?$\" to=\"https://www.onehelp.cz/\"/><rule from=\"^http://www\\.onehelp\\.cz/\" to=\"https://www.onehelp.cz/\"/></ruleset>", "<ruleset name=\"ONEnews\" default_off=\"mismatched\" f=\"ONEnews.xml\"><rule from=\"^http://onenews\\.cz/[^\\?](\\?.*)\" to=\"https://www.onenews.cz/$1\"/><rule from=\"^http://www\\.onenews\\.cz/\" to=\"https://www.onenews.cz/\"/></ruleset>", "<ruleset name=\"ONEserver.cz\" f=\"ONEserver.cz.xml\"><rule from=\"^http://oneserver\\.cz/\" to=\"https://www.oneserver.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEsite (partial)\" f=\"ONEsite.xml\"><securecookie host=\"^\\.admin\\.onesite\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.onesite\\.com/\" to=\"https://admin.onesite.com/\"/><rule from=\"^http://(?:fast1|images)\\.onesite\\.com/\" to=\"https://images.onesite.com/\"/></ruleset>", "<ruleset name=\"ONEsolution.cz\" f=\"ONEsolution.xml\"><securecookie host=\"^www\\.onesolution\\.cz$\" name=\".+\"/><rule from=\"^http://onesolution\\.cz/\" to=\"https://www.onesolution.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEweb (partial)\" f=\"ONEweb.xml\"><securecookie host=\"^www\\.oneweb\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oneweb\\.cz/\" to=\"https://www.oneweb.cz/\"/></ruleset>", "<ruleset name=\"ONOS Project.org (partial)\" f=\"ONOS_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONOrobot.org\" f=\"ONOrobot.org.xml\"><securecookie host=\"^\\.onorobot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OODA.com\" f=\"OODA.com.xml\"><rule from=\"^http://(?:www\\.)?ooda\\.com/\" to=\"https://www.ooda.com/\"/></ruleset>", "<ruleset name=\"OODA Loop.com\" f=\"OODA_Loop.com.xml\"><securecookie host=\"^www\\.oodaloop\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oodaloop\\.com/\" to=\"https://www.oodaloop.com/\"/></ruleset>", "<ruleset name=\"OPCW.org\" f=\"OPCW.org.xml\"><rule from=\"^http://opcw\\.org/\" to=\"https://www.opcw.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OPM.gov\" f=\"OPM.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://servicesonline\\.opm\\.gov/\" to=\"https://www.servicesonline.opm.gov/\"/><rule from=\"^http://www\\.leadership\\.opm\\.gov/\" to=\"https://leadership.opm.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OPML (partial)\" f=\"OPML.xml\"><rule from=\"^http://static\\.opml\\.org/\" to=\"https://s3.amazonaws.com/static.opml.org/\"/></ruleset>", "<ruleset name=\"OPNsense.org\" f=\"OPNsense.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OPSWAT.com\" f=\"OPSWAT.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORA\" f=\"ORA.xml\"><securecookie host=\"^\\.orafarm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORB-International.com\" f=\"ORB-International.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"O’Reilly Media (mismatches)\" default_off=\"mismatched\" f=\"OReilly-Media-mismatches.xml\"><rule from=\"^http://akamaicovers\\.oreilly\\.com/\" to=\"https://akamaicovers.oreilly.com/\"/></ruleset>", "<ruleset name=\"O’Reilly Media (partial)\" f=\"OReilly-Media.xml\"><exclusion pattern=\"^http://examples\\.oreilly\\.com/+(?!$)\"/><exclusion pattern=\"^http://shop\\.oreilly\\.com/(?!images/|includes/|mod/|text/)\"/><rule from=\"^http://(examples|members|shop)\\.oreilly\\.com/\" to=\"https://$1.oreilly.com/\"/><rule from=\"^http://cdn\\.oreillystatic\\.com/\" to=\"https://cdn.oreillystatic.com/\"/></ruleset>", "<ruleset name=\"OS.uk\" f=\"OS.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OS3.nl\" f=\"OS3.nl.xml\"><securecookie host=\"^(?:www\\.)?os3\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSADL.org\" f=\"OSADL.org.xml\"><securecookie host=\"^\\.osadl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSDC.com.au\" f=\"OSDC.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?osdc\\.com\\.au/+\" to=\"https://2015.osdc.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSDV.org (problematic)\" default_off=\"mismatched\" f=\"OSDV.org-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?osdv\\.org/wp-(?:content|includes)/\"/><rule from=\"^http://(?:www\\.)?osdv\\.org/\" to=\"https://www.osdv.org/\"/></ruleset>", "<ruleset name=\"OSDV.org (partial)\" f=\"OSDV.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?osdv\\.org/(?!wp-content/|wp-includes/)\"/><securecookie host=\"^\\.osdv\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?osdv\\.org/\" to=\"https://wordpress2.trustthevote.org/\"/></ruleset>", "<ruleset name=\"OSDir.com\" f=\"OSDir.com.xml\"><securecookie host=\"^\\.osdir\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSGeo.org (partial)\" f=\"OSGeo.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?osgeo\\.org/+(?!favicon\\.ico|files/|images/|misc/|modules/|sites/)\"/><securecookie host=\"^\\.fdo\\.osgeo\\.org$\" name=\".\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://osgeo4w\\.osgeo\\.org/[^?]*\" to=\"https://trac.osgeo.org/osgeo4w/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US OSHA.gov\" f=\"OSHA.gov.xml\"><rule from=\"^http://(?:www\\.)?osha\\.gov/\" to=\"https://www.osha.gov/\"/></ruleset>", "<ruleset name=\"OSI Codes\" f=\"OSI_Codes.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStreetMap Foundation\" f=\"OSM_Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSM Group\" f=\"OSM_Group.xml\"><securecookie host=\"^www\\.osmglobal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?osmglobal\\.com/\" to=\"https://www.osmglobal.com/\"/></ruleset>", "<ruleset name=\"OSR Foundation.org (expired)\" default_off=\"expired\" f=\"OSR_Foundation.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSU.edu (false MCB)\" platform=\"mixedcontent\" f=\"OSU.edu-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(fod|investments|ppcw|tobaccofree|trustees)\\.osu\\.edu/\" to=\"https://$1.osu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSUMC.edu (partial)\" f=\"OSUMC.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSVDB.org (partial)\" f=\"OSVDB.org.xml\"><securecookie host=\"^\\.osvdb\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http://(www\\.)?osvdb\\.org/account/?(?:\\?.*)$\" to=\"https://$1osvdb.org/account/login\"/><rule from=\"^http://(www\\.)?osvdb\\.org/(account/(?:login|signup)(?:$|\\?)|images/|javascripts/|stylesheets/)\" to=\"https://$1osvdb.org/$2\"/></ruleset>", "<ruleset name=\"O.S. Systems (partial)\" f=\"OS_Systems.xml\"><securecookie host=\"^projetos\\.ossystems\\.com\\.br$\" name=\".+\"/><rule from=\"^http://projetos\\.ossystems\\.com\\.br/\" to=\"https://projetos.ossystems.com.br/\"/></ruleset>", "<ruleset name=\"OSwatch.net\" f=\"OSwatch.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTAlliance.org\" f=\"OTAlliance.org.xml\"><rule from=\"^http://(?:www\\.)?otalliance\\.org/\" to=\"https://otalliance.org/\"/></ruleset>", "<ruleset name=\"OTR.im (partial)\" f=\"OTR.im.xml\"><securecookie host=\"^bugs\\.otr\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTR.to\" f=\"OTR.to.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OU.edu (partial)\" f=\"OU.edu.xml\"><securecookie host=\"^(?:account|hr|apps\\.hr|janux|ozone)\\.ou\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ou\\.edu/\" to=\"https://www.ou.edu/\"/><rule from=\"^http://(account|benefitsenrollment|checksheets|financialaid|forms|apps\\.hr|janux|jobs|learn|market|ozone|platform)\\.ou\\.edu/\" to=\"https://$1.ou.edu/\"/><rule from=\"^http://(?:www\\.)?hr\\.ou\\.edu/\" to=\"https://hr.ou.edu/\"/></ruleset>", "<ruleset name=\"OUYA (partial)\" f=\"OUYA.xml\"><exclusion pattern=\"^http://(?:www\\.)?ouya\\.tv/(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^devs\\.ouya\\.tv$\" name=\".+\"/><rule from=\"^http://(devs\\.|www\\.)?ouya\\.tv/\" to=\"https://$1ouya.tv/\"/><rule from=\"^http://shop\\.ouya\\.tv/\" to=\"https://ouya.myshopify.com/\"/></ruleset>", "<ruleset name=\"OVH.biz\" f=\"OVH.biz.xml\"><securecookie host=\"^(?:www\\.)?ovh\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVH.us\" f=\"OVH.us.xml\"><securecookie host=\"^forum\\.ovh\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ovh\\.us/+\" to=\"https://www.ovh.com/us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVH Telecom.fr\" f=\"OVH_Telecom.fr.xml\"><securecookie host=\"^(?:www\\.)?ovhtelecom\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVPN.se\" f=\"OVPN.se.xml\"><securecookie host=\"^(?:www\\.)?ovpn\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oVPN.to (partial)\" f=\"OVPN.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.ovpn\\.to$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.ovpn\\.to/\" to=\"https://$1.ovpn.to/\"/></ruleset>", "<ruleset name=\"oVirt.org\" f=\"OVirt.org.xml\"><securecookie host=\"^www\\.ovirt\\.org$\" name=\".+\"/><rule from=\"^http://ovirt\\.org/\" to=\"https://www.ovirt.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OWASP.org\" f=\"OWASP.xml\"><securecookie host=\"^(?:www\\.)?owasp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"O SysAdmin.net (partial)\" f=\"O_SysAdmin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORNL.gov (partial)\" f=\"Oak-Ridge-National-Laboratory.xml\"><rule from=\"^http://olcf\\.ornl\\.gov/\" to=\"https://www.olcf.ornl.gov/\"/><rule from=\"^http://sustainability-ornl\\.org/\" to=\"https://sustainability-ornl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oaklandish\" f=\"Oaklandish.xml\"><securecookie host=\"^\\.oaklandish\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ObDev.at\" f=\"ObDev.at.xml\"><securecookie host=\"^(?:.+\\.)?obdev\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Obedovat.sk\" default_off=\"failed ruleset test\" f=\"Obedovat.sk.xml\"><rule from=\"^http://(?:www\\.)?obedovat\\.sk/\" to=\"https://www.obedovat.sk/\"/></ruleset>", "<ruleset name=\"Oberheide.org\" default_off=\"missing certificate chain\" f=\"Oberheide.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oberlin College (partial)\" default_off=\"failed ruleset test\" f=\"Oberlin_College.xml\"><securecookie host=\"^.+\\.oberlin\\.edu$\" name=\".+\"/><rule from=\"^http://(blackboard|classifieds|new|oncampus(?:\\.csr)?)\\.oberlin\\.edu/\" to=\"https://$1.oberlin.edu/\"/><rule from=\"^http://(?:occs\\.|www\\.)?cs\\.oberlin\\.edu/\" to=\"https://occs.cs.oberlin.edu/\"/></ruleset>", "<ruleset name=\"Obermassing.at\" f=\"Obermassing.at.xml\"><rule from=\"^http://(?:www\\.)?obermassing\\.at/\" to=\"https://www.obermassing.at/\"/></ruleset>", "<ruleset name=\"Object Management Group (partial)\" f=\"Object-Management-Group.xml\"><rule from=\"^http://secure\\.omg\\.org/\" to=\"https://secure.omg.org/\"/></ruleset>", "<ruleset name=\"Object Security\" default_off=\"mismatched\" f=\"Object_Security.xml\"><rule from=\"^http://(?:www\\.)?objectsecurity\\.com/\" to=\"https://objectsecurity.com/\"/></ruleset>", "<ruleset name=\"Objectif-Securite.ch\" f=\"Objectif-Securite.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Objective-See.com\" f=\"Objective-See.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oblivia.vc\" f=\"Oblivia.vc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"obnox.de (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Obnox.de.xml\"><rule from=\"^http://blog\\.obnox\\.de/\" to=\"https://blog.obnox.de/\"/></ruleset>", "<ruleset name=\"Observium.org (partial)\" f=\"Observium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"obsoleet.org\" default_off=\"expired\" platform=\"cacert\" f=\"Obsoleet.org.xml\"><rule from=\"^http://(?:www\\.)?obsoleet\\.org/\" to=\"https://obsoleet.org/\"/></ruleset>", "<ruleset name=\"Occupy Corporatism.com\" f=\"Occupy_Corporatism.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Occupywallst.org\" f=\"Occupywallst.org.xml\"><rule from=\"^http://(?:www\\.)?occupywallst\\.org/\" to=\"https://occupywallst.org/\"/></ruleset>", "<ruleset name=\"Ocelot.li\" f=\"Ocelot.li.xml\"><securecookie host=\"^\\.ocelot\\.li$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oclaserver.com\" default_off=\"failed ruleset test\" f=\"Oclaserver.com.xml\"><rule from=\"^http://oclaserver\\.com/\" to=\"https://www.onclickads.net/\"/><rule from=\"^http://go\\.oclaserver\\.com/\" to=\"https://go.oclaserver.com/\"/></ruleset>", "<ruleset name=\"ocrete.ca\" f=\"Ocrete.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ocron USA.net\" default_off=\"mismatched\" f=\"Ocron_USA.net.xml\"><securecookie host=\"^ocronusa\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ocronusa\\.net/\" to=\"https://ocronusa.net/\"/></ruleset>", "<ruleset name=\"Octopart.com\" f=\"Octopart.com.xml\"><securecookie host=\"^\\.?octopart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octopoos.com\" f=\"Octopoos.com.xml\"><securecookie host=\"^www\\.octopoos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octopuce.fr\" f=\"Octopuce.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octorate\" f=\"Octorate.xml\"><securecookie host=\"^(www\\.)?octorate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octoshape\" f=\"Octoshape.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octostatic.com\" f=\"Octostatic.com.xml\"><securecookie host=\"^\\.octostatic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oculu.com (partial)\" f=\"Oculu.com.xml\"><securecookie host=\"^(?:www\\.)?oculu\\.com$\" name=\".+\"/><rule from=\"^http://(?:(www\\.)|zinc\\.)?oculu\\.com/\" to=\"https://$1oculu.com/\"/></ruleset>", "<ruleset name=\"Oculus.com\" f=\"Oculus.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oculus VR\" f=\"Oculus_VR.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:answers|forums|storystudio|www1)\\.oculusvr\\.com/+\" to=\"https://www.oculus.com/\"/><rule from=\"^http://static\\.oculusvr\\.com/\" to=\"https://d11g5bl75h7gks.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oderland.se\" default_off=\"failed ruleset test\" f=\"Oderland.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"odesk.by\" f=\"Odesk.by.xml\"><securecookie host=\"^odesk\\.by$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?odesk\\.by/\" to=\"https://odesk.by/\"/></ruleset>", "<ruleset name=\"Odevzdej.cz\" f=\"Odevzdej.cz.xml\"><securecookie host=\"^odevzdej\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?odevzdej\\.cz/\" to=\"https://odevzdej.cz/\"/></ruleset>", "<ruleset name=\"Odnoklassniki.ru (partial)\" f=\"Odnoklassniki.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?odnoklassniki\\.ru/(?!dk\\?st\\.cmd=updateAuthCode)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Odoo.com (partial)\" f=\"Odoo.com.xml\"><securecookie host=\"^(?:demo1|master|www)\\.odoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oe24.at\" default_off=\"mismatch, self-signed\" f=\"Oe24.xml\"><securecookie host=\"^(?:.*\\.)?(?:oe24|wetter)\\.at$\" name=\".*\"/><rule from=\"^http://oe24\\.at/\" to=\"https://www.oe24.at/\"/><rule from=\"^http://(\\w+)\\.oe24\\.at/\" to=\"https://$1.oe24.at/\"/><rule from=\"^http://images\\d\\d\\.oe24\\.at/\" to=\"https://images01.oe24.at/\"/><rule from=\"^http://spunq\\.oe24\\.strgstatic\\.com/\" to=\"https://spunq.oe24.strgstatic.com/\"/><rule from=\"^http://wetter\\.at/\" to=\"https://www.wetter.at/\"/><rule from=\"^http://(\\w+)\\.wetter\\.at/\" to=\"https://$1.wetter.at/\"/></ruleset>", "<ruleset name=\"Oeffentliche-it.de\" f=\"Oeffentliche-it.de.xml\"><rule from=\"^http://(?:www\\.)?oeffentliche-it\\.de/\" to=\"https://www.oeffentliche-it.de/\"/></ruleset>", "<ruleset name=\"Oeffentliche.de\" f=\"Oeffentliche.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oeticket (partial)\" f=\"Oeticket.xml\"><rule from=\"^http://(?:www\\.)?oeticket\\.com/de/(my_account|sign-in)/\" to=\"https://www.oeticket.com/de/$1/\"/></ruleset>", "<ruleset name=\"Ofcom.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"Ofcom.org.uk-falsemixed.xml\"><securecookie host=\"^(?:licensing|styles)\\.ofcom\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(licensing|styles)\\.ofcom\\.org\\.uk/\" to=\"https://$1.ofcom.org.uk/\"/></ruleset>", "<ruleset name=\"Ofcom.org.uk (partial)\" f=\"Ofcom.org.uk.xml\"><exclusion pattern=\"^http://stakeholders\\.ofcom\\.org\\.uk/(?!tell-us/contact-the-webmaster(?:$|\\?))\"/><exclusion pattern=\"^http://(?:licensing|styles)\\.ofcom\\.org\\.uk/+(?!favicon\\.ico|html5/|images/|styles/)\"/><rule from=\"^http://(licensing|stakeholders|styles)\\.ofcom\\.org\\.uk/\" to=\"https://$1.ofcom.org.uk/\"/></ruleset>", "<ruleset name=\"Off-the-Record Messaging\" f=\"Off-the-Record_Messaging.xml\"><rule from=\"^http://otr\\.cypherpunks\\.ca/\" to=\"https://otr.cypherpunks.ca/\"/></ruleset>", "<ruleset name=\"Offcloud.com\" f=\"Offcloud.com.xml\"><securecookie host=\"^(www\\.)?offcloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offensive-Security.com\" f=\"Offensive-Security.com.xml\"><securecookie host=\"^\\.offensive-security\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^forums\\.offensive-security\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offensive Bits.com\" f=\"Offensive_Bits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"offermatica.com\" f=\"Offermatica.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offerpop.com\" f=\"Offerpop.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.offerpop\\.com/\" to=\"https://d3nxc88n0lpo37.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offers CDN.net\" f=\"Offers_CDN.net.xml\"><rule from=\"^http://assets\\.offerscdn\\.net/\" to=\"https://assets.offerscdn.net/\"/><rule from=\"^http://0\\.i\\.offerscdn\\.net/\" to=\"https://d3uc8eo6m5ta05.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Office of the Commissioner of Lobbying of Canada\" f=\"Office-of-the-Commissioner-of-Lobbying-of-Canada.xml\"><securecookie host=\"^ocl-cal\\.gc\\.ca$\" name=\".*\"/><rule from=\"^http://ocl-cal\\.gc\\.ca/\" to=\"https://ocl-cal.gc.ca/eic/site/012.nsf/Intro\"/><rule from=\"^http://ocl-cal\\.gc\\.ca/\" to=\"https://ocl-cal.gc.ca/\"/></ruleset>", "<ruleset name=\"Office.co.uk (partial)\" f=\"Office.co.uk.xml\"><exclusion pattern=\"^http://m\\.office\\.co\\.uk/+(?!assets/|favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.office\\.co\\.uk/+(?!assets/|favicon\\.ico|img/|images/|javascript/|scripts/|office/styles/|styles/|view/secured/)\"/><rule from=\"^http://office\\.co\\.uk/\" to=\"https://www.office.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Office.com\" f=\"Office.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.dev\\.office\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Office.net\" f=\"Office.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Office365.com (partial)\" f=\"Office365.com.xml\"><exclusion pattern=\"^http://community\\.office365\\.com/+(?![Tt]hemes/|cfs-filesystemfile\\.ashx/|favicon\\.ico|resized-image\\.ashx/)\"/><securecookie host=\"^(?:www\\.)?office365\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OfficeLeaks.com (partial)\" f=\"OfficeLeaks.com.xml\"><rule from=\"^http://secure\\.officeleaks\\.com/\" to=\"https://secure.officeleaks.com/\"/></ruleset>", "<ruleset name=\"Office Depot (partial)\" f=\"Office_Depot.xml\"><securecookie host=\"^www18\\.officedepot\\.com$\" name=\".+\"/><rule from=\"^http://s(?:ecure|tatic)\\.www\\.odcdn\\.com/\" to=\"https://secure.www.odcdn.com/\"/><rule from=\"^http://(?:www\\.)?officedepot\\.com/(account/|cart/checkout\\.do|favicon\\.ico|images/|links/(?!links)|orderhistory(?:$|\\?|/))\" to=\"https://www.officedepot.com/$1\"/><rule from=\"^http://storelocator\\.officedepot\\.com/(images|javascript)/\" to=\"https://hosted.where2getit.com/officedepot/$1/\"/><rule from=\"^http://storelocator\\.officedepot\\.com/w2gi/images/\" to=\"https://hosted.where2getit.com/w2gi/images/\"/><rule from=\"^http://www18\\.officedepot\\.com/\" to=\"https://www18.officedepot.com/\"/></ruleset>", "<ruleset name=\"Office of National Assessments\" default_off=\"failed ruleset test\" f=\"OfficeofNationalAssessments.xml\"><rule from=\"^http://(?:www\\.)?ona\\.gov\\.au/\" to=\"https://www.ona.gov.au/\"/></ruleset>", "<ruleset name=\"Office of Parliamentary Counsel\" f=\"OfficeofParliamentaryCounsel.xml\"><rule from=\"^http://(?:www\\.)?opc\\.gov\\.au/\" to=\"https://www.opc.gov.au/\"/></ruleset>", "<ruleset name=\"Office of the Migration Agents Registration Authority\" f=\"OfficeoftheMigrationAgentsRegistrationAuthority.xml\"><rule from=\"^http://(?:www\\.)?mara\\.gov\\.au/\" to=\"https://www.mara.gov.au/\"/></ruleset>", "<ruleset name=\"Officer Down Memorial Page (partial)\" f=\"Officer_Down_Memorial_Page.xml\"><securecookie host=\"^(?:www)?\\.odmp\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?odmp\\.org/\" to=\"https://$1odmp.org/\"/><rule from=\"^http://store\\.odmp\\.org/lib/\" to=\"https://lib.store.yahoo.net/lib/\"/></ruleset>", "<ruleset name=\"Officersforbundet.se\" f=\"Officersforbundet.se.xml\"><rule from=\"^http://officersforbundet\\.se/\" to=\"https://www.officersforbundet.se/\"/><rule from=\"^http://www\\.officersforbundet\\.se/\" to=\"https://www.officersforbundet.se/\"/></ruleset>", "<ruleset name=\"Officeworks.com.au\" f=\"Officeworks.xml\"><securecookie host=\"^(?:www\\.)?officeworks.com.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?officeworks\\.com\\.au/\" to=\"https://www.officeworks.com.au/\"/></ruleset>", "<ruleset name=\"Officiel-des-Vacances.com (false MCB)\" platform=\"mixedcontent\" f=\"Officiel-des-Vacances.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.officiel-des-vacances\\.com/\" to=\"https://www.officiel-des-vacances.com/sites/default/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"offlinemode.org\" f=\"Offlinemode.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"offog.org\" default_off=\"self-signed\" f=\"Offog.org.xml\"><rule from=\"^http://(?:www\\.)?offog\\.org/\" to=\"https://offog.org/\"/></ruleset>", "<ruleset name=\"Ogone.com (partial)\" f=\"Ogone.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oh So Cool.org\" f=\"Oh-So-Cool.xml\"><rule from=\"^http://www\\.ohsocool\\.org/\" to=\"https://ohsocool.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio-State.edu (problematic)\" default_off=\"mismatched, self-signed\" f=\"Ohio-State-University-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSU.edu (partial)\" f=\"Ohio-State-University.xml\"><exclusion pattern=\"^http://research\\.bpcrc\\.osu\\.edu/+(?!assets/|data/)\"/><exclusion pattern=\"^http://cartoons\\.osu\\.edu/+(?!wp-content/)\"/><exclusion pattern=\"^http://wexnermedical\\.osu\\.edu/+(?!_Images/|stylesbundle(?:$|[?/])|~/)\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><securecookie host=\"^(?!(?:research\\.bpcrc|cartoons|wexnermedical)\\.)\\w\" name=\".\"/><securecookie host=\"^\\.blogs\\.nursing\\.\" name=\".\"/><rule from=\"^http://www\\.(ada|advancement|artsandsciences|asc|box|bprc|brand|buckeyemail|buckeyevoices|car|carmen|cgs|changingclimate|classes|code|courses|cse|degreeaudit|dentistry|dimauro|disabilitystudies|ece|eleave|ercnsm|fml|fye|hhg|housing|marionlibrary|mooculus|my|news|oaa|oesar|ohiounion|offcampus|online|osumarion|osutravel|physics|president|recsports|registrar|researchnews|rf|shakespeare|slfacilities|slts|smileexperts|ssc|studentlife|tco|ucat|undergraduateresearch|yp4h)\\.osu\\.edu/\" to=\"https://$1.osu.edu/\"/><rule from=\"^http://autodiscover\\.osu\\.edu/+\" to=\"https://email.osu.edu/\"/><rule from=\"^http://food\\.osu\\.edu/\" to=\"https://dining.osu.edu/\"/><rule from=\"^http://gradadmissions\\.osu\\.edu/+(?:\\?.*)?$\" to=\"https://gpadmissions.osu.edu/\"/><rule from=\"^http://gradadmissions\\.osu\\.edu/\" to=\"https://gpadmissions.osu.edu/\"/><rule from=\"^http://(?:www\\.)?gradsch\\.osu\\.edu/\" to=\"https://www.gradsch.ohio-state.edu/\"/><rule from=\"^http://itunes\\.osu\\.edu/[^?]*\" to=\"https://odee.osu.edu/itunes-u\"/><rule from=\"^http://jobs\\.osu\\.edu/\" to=\"https://hr.osu.edu/jobs\"/><rule from=\"^http://lt\\.osu\\.edu/[^?]*\" to=\"https://ocio.osu.edu/elearning\"/><rule from=\"^http://mybenefitsplan\\.osu\\.edu/.*\" to=\"https://hr.osu.edu/oe\"/><rule from=\"^http://osucentralreceiving\\.osu\\.edu/+(?:\\?.*)?$\" to=\"https://osu.sclintra.com/Enterprise/SCLIntraOmni/etix7f/search\"/><rule from=\"^http://osucentralreceiving\\.osu\\.edu/\" to=\"https://osu.sclintra.edu/\"/><rule from=\"^http://streaming\\.osu\\.edu/\" to=\"https://streamwww.classroom.ohio-state.edu/\"/><rule from=\"^http://wiredout\\.osu\\.edu/.*\" to=\"https://techhub.osu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio-State.edu (partial)\" f=\"Ohio-State.edu.xml\"><exclusion pattern=\"http://panopto\\.con\\.ohio-state\\.edu/+(?!Panopto/Cache/|Panopto/Pages/Viewer\\.aspx)\"/><exclusion pattern=\"^http://www\\.ohio-state\\.edu/(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^(?!panopto\\.)\\w\" name=\".\"/><securecookie host=\"^\\.intranet\\.\" name=\".\"/><rule from=\"^http://proxy\\.lib\\.ohio-state\\.edu/\" to=\"https://login.proxy.lib.ohio-state.edu/\"/><rule from=\"^http://my\\.newark\\.ohio-state\\.edu:444/\" to=\"https://my.newark.ohio-state.edu:444/\"/><rule from=\"^http://newman\\.uts\\.ohio-state\\.edu/\" to=\"https://upem.it.ohio-state.edu/\"/><rule from=\"^http://www\\.ohio-state\\.edu/\" to=\"https://www.osu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OhioLINK.edu (partial)\" f=\"OhioLINK.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://proxy\\.ohiolink\\.edu:9099/\" to=\"https://proxy.ohiolink.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio Bar.org\" f=\"Ohio_Bar.org.xml\"><securecookie host=\"^connect\\.ohiobar\\.org$\" name=\".+\"/><rule from=\"^http://ohiobar\\.org/\" to=\"https://www.ohiobar.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio State Alumni.org (partial)\" f=\"Ohio_State_Alumni.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ohiostatealumni\\.org/(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?ohiostatealumni\\.org/\" to=\"https://www.osu.edu/alumni/\"/></ruleset>", "<ruleset name=\"Ohling.com\" default_off=\"failed ruleset test\" f=\"Ohling.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohloh\" f=\"Ohloh.xml\"><securecookie host=\"^(?:.+\\.)?ohloh\\.(?:net|com|org)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ohloh\\.(?:net|com|org)/\" to=\"https://www.ohloh.net/\"/><rule from=\"^http://meta\\.ohloh\\.net/\" to=\"https://meta.ohloh.net/\"/></ruleset>", "<ruleset name=\"Ohnward.com (partial)\" f=\"Ohnward.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ojrq.net\" f=\"Ojrq.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ok.ru (partial)\" platform=\"mixedcontent\" f=\"Ok.ru.xml\"><securecookie host=\"^v\\.ok\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkC CDN.com\" default_off=\"breaks images on the OKC blog\" f=\"OkCDN.com.xml\"><securecookie host=\"^\\.okccdn\\.com$\" name=\".+\"/><rule from=\"^http://akincludes\\.okccdn\\.com/\" to=\"https://www.okcupid.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkCimg.com (partial)\" f=\"OkCimg.com.xml\"><exclusion pattern=\"^http://cdn\\.okcimg\\.com/(?!media/)\"/><securecookie host=\"^\\.okcimg\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.okcimg\\.com/\" to=\"https://www.okcupid.com/flat/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkCupid.com (partial)\" default_off=\"Redirects to HTTP\" f=\"OkCupid.xml\"><exclusion pattern=\"^http://blog\\.okcupid\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.okcupid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"okTurtles.com\" f=\"OkTurtles.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.okturtles\\.com/\" to=\"https://okturtles.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"okTurtles.org\" f=\"OkTurtles.org.xml\"><rule from=\"^http://(?:www\\.)?okturtles\\.org/\" to=\"https://okturtles.com/\"/></ruleset>", "<ruleset name=\"Okopnik.com\" default_off=\"connection refused\" f=\"Okopnik.xml\"><rule from=\"^http://(?:www\\.)?okopnik\\.com/\" to=\"https://okopnik.com/\"/></ruleset>", "<ruleset name=\"Okta.com (partial)\" f=\"Okta.com.xml\"><securecookie host=\"^(?:advent-hub|community|support|www)\\.okta\\.com$\" name=\".+\"/><rule from=\"^http://okta\\.com/\" to=\"https://www.okta.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oktatási Hivatal\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oktatas.hu.xml\"><rule from=\"^http://(?:www\\.)?(oktatas|kir)\\.hu/\" to=\"https://www.$1.hu/\"/></ruleset>", "<ruleset name=\"Okura.nl\" f=\"Okura.nl.xml\"><securecookie host=\"^www\\.okura\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olark.com (partial)\" f=\"Olark.xml\"><securecookie host=\"^(?:.+\\.)?olark\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets|chat2?|dyn|static|\\w+-async|testcdn|www)\\.)?olark\\.com/\" to=\"https://$1olark.com/\"/></ruleset>", "<ruleset name=\"Old Pirate Bay.org\" f=\"Old_Pirate_Bay.org.xml\"><securecookie host=\"^\\.oldpiratebay\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http://oldpiratebay\\.org/\" to=\"https://www.oldpiratebay.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olimex.com\" f=\"Olimex.com.xml\"><securecookie host=\"^www\\.olimex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olioboard.com\" f=\"Olioboard.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ology.com (problematic)\" default_off=\"mismatched\" f=\"Ology.com-problematic.xml\"><securecookie host=\"^\\.ology\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ology\\.com/\" to=\"https://www.ology.com/\"/></ruleset>", "<ruleset name=\"Ology.com (partial)\" f=\"Ology.com.xml\"><rule from=\"^http://cdn\\.ology\\.com/\" to=\"https://d2hddv4f3m6vd2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Olvi.fi\" f=\"Olvi.fi.xml\"><rule from=\"^http://olvi\\.fi/\" to=\"https://www.olvi.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"omNovia Technologies\" f=\"OmNovia-Technologies.xml\"><securecookie host=\"^(?:.*\\.)omnovia\\.com$\" name=\".*\"/><rule from=\"^http://omnovia\\.com/\" to=\"https://www.omnovia.com/\"/><rule from=\"^http://([\\w\\-]+)\\.omnovia\\.com/\" to=\"https://$1.omnovia.com/\"/></ruleset>", "<ruleset name=\"OmakaseWeb.com\" f=\"OmakaseWeb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omar and Will.com\" default_off=\"expired\" f=\"Omar_and_Will.com.xml\"><rule from=\"^http://(?:www\\.)?omarandwill\\.com/\" to=\"https://omarandwill.com/\"/></ruleset>", "<ruleset name=\"Omaze.com (partial)\" f=\"Omaze.com.xml\"><rule from=\"^http://(www\\.)?omaze\\.com/(?=favicon\\.ico|wp-content/|wp-includes)\" to=\"https://$1omaze.com/\"/></ruleset>", "<ruleset name=\"Omaze.info\" f=\"Omaze.info.xml\"><securecookie host=\"^\\.omaze\\.info$\" name=\"^__cfduid$\"/><rule from=\"^http://(\\d\\.)?omaze\\.info/\" to=\"https://$1omaze.info/\"/></ruleset>", "<ruleset name=\"Omeda (partial)\" f=\"Omeda.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.omeda\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.omeda\\.com/\" to=\"https://$1.omeda.com/\"/></ruleset>", "<ruleset name=\"omegaUp.com (partial)\" f=\"OmegaUp.com.xml\"><securecookie host=\"^(?:www\\.)?omegaup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omni Group.com (partial)\" f=\"OmniGroup.com.xml\"><securecookie host=\"^(?:store|www)\\.omnigroup\\.com$\" name=\".+\"/><rule from=\"^http://omnigroup\\.com/+\" to=\"https://www.omnigroup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniTI.com (false MCB)\" platform=\"mixedcontent\" f=\"OmniTI.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniTI.com (partial)\" f=\"OmniTI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniTI.net\" f=\"OmniTI.net.xml\"><securecookie host=\"^s\\.omniti\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniUpdate.com\" f=\"OmniUpdate.com.xml\"><securecookie host=\"^www\\.omniupdate\\.com$\" name=\".+\"/><rule from=\"^http://((?:apps|commons|support|www)\\.)?omniupdate\\.com/\" to=\"https://$1omniupdate.com/\"/></ruleset>", "<ruleset name=\"Omniref.com\" default_off=\"failed ruleset test\" f=\"Omniref.com.xml\"><securecookie host=\"^www\\.omniref\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omnirom.org\" f=\"Omnirom.org.xml\"><rule from=\"^http://(?:www\\.)?omnirom\\.org/\" to=\"https://omnirom.org/\"/></ruleset>", "<ruleset name=\"Omnitec\" default_off=\"failed ruleset test\" f=\"Omnitec.xml\"><securecookie host=\"^(?:.*\\.)?omnitec\\.com$\" name=\".*\"/><rule from=\"^http://omnitec\\.com/\" to=\"https://www.omnitec.com/\"/><rule from=\"^http://(\\w+)\\.omnitec\\.com/\" to=\"https://$1.omnitec.com/\"/></ruleset>", "<ruleset name=\"Omnitec Inc.com\" f=\"Omnitec_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omniture-static.com\" f=\"Omniture-static.com.xml\"><rule from=\"^http://www\\.omniture-static\\.com/\" to=\"https://www.omniture-static.com/\"/></ruleset>", "<ruleset name=\"Omniture.com\" f=\"Omniture.com.xml\"><securecookie host=\"^(?:.*\\.)?omniture\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omron.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Omron.com.xml\"><rule from=\"^http://(?:www\\.)?omron\\.com/\" to=\"https://www.omron.com/\"/></ruleset>", "<ruleset name=\"omtrdc.net\" f=\"Omtrdc.net.xml\"><securecookie host=\"^(?:.*\\.)?omtrdc\\.net$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.(\\w+)\\.d([1-3])\\.sc\\.omtrdc\\.net/\" to=\"https://$1-$2.d$3.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On-Disk.com\" default_off=\"failed ruleset test\" f=\"On-Disk.com.xml\"><securecookie host=\"^\\.on-disk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?on-disk\\.com/\" to=\"https://on-disk.com/\"/></ruleset>", "<ruleset name=\"on-web.fr\" default_off=\"failed ruleset test\" f=\"On-web.fr.xml\"><securecookie host=\".+\\.on-web\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?on-web\\.fr/\" to=\"https://www.planet-work.com/\"/><rule from=\"^http://([\\w-]+)\\.on-web\\.fr/\" to=\"https://$1.on-web.fr/\"/></ruleset>", "<ruleset name=\"OnApp.com\" f=\"OnApp.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnBeing.org\" default_off=\"failed ruleset test\" f=\"OnBeing.org.xml\"><rule from=\"^http://(?:ssl\\.|www\\.)?onbeing\\.org/\" to=\"https://ssl.onbeing.org/\"/></ruleset>", "<ruleset name=\"OnGuard Online\" f=\"OnGuard_Online.xml\"><rule from=\"^http://(?:www\\.)?(alertaenlinea|onguardonline)\\.gov/\" to=\"https://www.$1.gov/\"/></ruleset>", "<ruleset name=\"onJive.com\" f=\"OnJive.com.xml\"><securecookie host=\"^www\\.onjive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnLive.com (partial)\" default_off=\"failed ruleset test\" f=\"OnLive.com.xml\"><rule from=\"^http://((?:games|support|www)\\.)?onlive\\.com/\" to=\"https://$1onlive.com/\"/></ruleset>", "<ruleset name=\"OnScroll.com (partial)\" f=\"OnScroll.com.xml\"><rule from=\"^http://cdn\\.onscroll\\.com/\" to=\"https://do4jjo8w6mmm0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"OnSecure\" f=\"OnSecure.xml\"><rule from=\"^http://(?:www\\.)?onsecure\\.gov\\.au/\" to=\"https://www.onsecure.gov.au/\"/></ruleset>", "<ruleset name=\"OnSugar\" f=\"OnSugar.xml\"><exclusion pattern=\"^http://www\\.onsugar\\.com/(?:$|\\?)\"/><securecookie host=\"^.*\\.onsugar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?onsugar\\.com/\" to=\"https://secure.onsugar.com/\"/><rule from=\"^http://media(?:\\d|[12]\\d|3[1-5])?\\.onsugar\\.com/\" to=\"https://sugarinc-a.akamaihd.net/\"/><rule from=\"^http://(?:secure\\.|www\\.)?(dev[123567]|local)\\.onsugar\\.com/\" to=\"https://secure.$1.onsugar.com/\"/><rule from=\"^http://(www\\.)?secure\\.onsugar\\.com/\" to=\"https://$1secure.onsugar.com/\"/><rule from=\"^http://(?:www\\.)?shopsense\\.onsugar\\.com/\" to=\"https://shopsense.shopstyle.com/\"/></ruleset>", "<ruleset name=\"OnSwitch IT.ca\" f=\"OnSwitch_IT.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On Landscape.co.uk\" f=\"On_Landscape.co.uk.xml\"><securecookie host=\"^(?:\\.|www\\.)?onlandscape\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On the Media.org\" default_off=\"mismatched\" f=\"On_the_Media.org.xml\"><securecookie host=\"^\\.onthemedia\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On the Wire.io\" f=\"On_the_Wire.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onamae-server.com (partial)\" f=\"Onamae-server.com.xml\"><securecookie host=\"^\\.(?:www\\.)?onamae-server\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onamae.com (partial)\" f=\"Onamae.com.xml\"><exclusion pattern=\"http://www\\.onamae\\.com/+(?!common/|dd_menu/|favicon\\.ico|images/|navi(?:$|[?/]))\"/><securecookie host=\"^www\\.onamae\\.com$\" name=\"^adsense$\"/><securecookie host=\"^help\\.onamae\\.com$\" name=\".+\"/><rule from=\"^http://((?:help|jp|www)\\.)?onamae\\.com/\" to=\"https://$1onamae.com/\"/></ruleset>", "<ruleset name=\"Onarbor.com\" f=\"Onarbor.com.xml\"><securecookie host=\"^(?:www\\.)?onarbor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnboardKit.com\" f=\"OnboardKit.com.xml\"><securecookie host=\"^onboardkit\\.com$\" name=\".+\"/><rule from=\"^http://www\\.onboardkit\\.com/\" to=\"https://onboardkit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onclickads.net (partial)\" f=\"Onclickads.net.xml\"><securecookie host=\"^onclickads\\.net$\" name=\".+\"/><rule from=\"^http://onclickads\\.net/\" to=\"https://onclickads.net/\"/></ruleset>", "<ruleset name=\"OndaRossa.info\" platform=\"cacert\" f=\"Ondarossa.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Good Driver\" default_off=\"failed ruleset test\" f=\"One-Good-Driver.xml\"><securecookie host=\"^www\\.onegooddriver\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?onegooddriver\\.com/\" to=\"https://www.onegooddriver.com/\"/></ruleset>", "<ruleset name=\"One-Tab.com\" f=\"One-Tab.com.xml\"><securecookie host=\"^\\.one-tab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"one.com\" f=\"One.com.xml\"><rule from=\"^http://(?:www\\.)?one\\.com/\" to=\"https://www.one.com/\"/></ruleset>", "<ruleset name=\"One2Buy (partial)\" f=\"One2Buy.xml\"><rule from=\"^http://(www\\.)?one2buy\\.com/(media|skin)/\" to=\"https://$1one2buy.com/$2/\"/></ruleset>", "<ruleset name=\"OneCloudSecurity.com\" default_off=\"failed ruleset test\" f=\"OneCloudSecurity.com.xml\"><securecookie host=\"^(?:w*\\.)?onecloudsecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneDrive.com\" f=\"OneDrive.com.xml\"><securecookie host=\"^(?:\\.?blog|\\.dev)\\.onedrive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneExchange\" f=\"OneExchange.xml\"><securecookie host=\"(^|([\\w-]*)\\.)oneexchange\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneHockey.com\" f=\"OneHockey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onehub.com\" f=\"OneHub.xml\"><rule from=\"^http://(?:www\\.)?onehub\\.com/\" to=\"https://onehub.com/\"/></ruleset>", "<ruleset name=\"OneLogin.com (partial)\" f=\"OneLogin.com.xml\"><securecookie host=\"^(?:www)?\\.onelogin\\.com$\" name=\".+\"/><rule from=\"^http://support\\.onelogin\\.com/.*\" to=\"https://onelogin.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneName.com\" f=\"OneName.com.xml\"><securecookie host=\"^(?:www\\.)?onename\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneName.io\" f=\"OneName.io.xml\"><securecookie host=\"^\\.onename\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oneNetworkDirect\" f=\"OneNetworkDirect.xml\"><securecookie host=\"^(?:aff)?\\.onenetworkdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneNote.com (partial)\" f=\"OneNote.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneNote.net\" f=\"OneNote.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnePlus.net\" f=\"OnePlus.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneScreen (partial)\" default_off=\"mismatch\" f=\"OneScreen.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?onescreen\\.com/wp-content/\" to=\"https://www.onescreen.com/wp-content/\"/><rule from=\"^http://images\\.1sfx\\.net/\" to=\"https://images.1sfx.net/\"/></ruleset>", "<ruleset name=\"OneSignal.com\" f=\"OneSignal.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneStat.com (partial)\" f=\"OneStat.xml\"><securecookie host=\"^(?:www\\.)?stat\\.onestat\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneTaste.us (partial)\" f=\"OneTaste.us.xml\"><exclusion pattern=\"^http://onetaste\\.us/+(?!favicon\\.ico|om-essentials(?:$|[?/])|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?onetaste\\.us/\" to=\"https://onetaste.us/\"/></ruleset>", "<ruleset name=\"One Eyed Man.net\" f=\"One_Eyed_Man.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Green Planet.org\" default_off=\"failed ruleset test\" f=\"One_Green_Planet.org.xml\"><securecookie host=\"^\\.onegreenplanet\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?onegreenplanet\\.org/\" to=\"https://$1onegreenplanet.org/\"/><rule from=\"^http://cdn\\.onegreenplanet\\.org/\" to=\"https://www.onegreenplanet.org/\"/></ruleset>", "<ruleset name=\"One Health Talk.org (partial)\" default_off=\"failed ruleset test\" f=\"One_Health_Talk.org.xml\"><rule from=\"^http://(www\\.)?onehealthtalk\\.org/(1/(?:assets|cache|css|includes|js)/|favicon\\.ico|images/|_Incapsula_Resource(?:$|\\?)|member(?:$|[?/]))\" to=\"https://$1onehealthtalk.org/$2\"/></ruleset>", "<ruleset name=\"One Man Can\" f=\"One_Man_Can.xml\"><securecookie host=\"^(?:\\.?www\\.)?\\.onemancan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Month.com (partial)\" f=\"One_Month.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Time Secret.com (partial)\" f=\"One_Time_Secret.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One in 3 Campaign\" f=\"One_in_3_Campaign.xml\"><rule from=\"^http://(?:www\\.)?1in3campaign\\.org/\" to=\"https://onein3.wpengine.com/\"/></ruleset>", "<ruleset name=\"onebillion.org.uk\" f=\"Onebillion.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onebitbug.me\" f=\"Onebitbug.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onefeed.co.uk (partial)\" f=\"Onefeed.co.uk.xml\"><rule from=\"^http://tracking\\.onefeed\\.co\\.uk/\" to=\"https://tracking.onefeed.co.uk/\"/></ruleset>", "<ruleset name=\"Onepager (partial)\" f=\"Onepager.xml\"><rule from=\"^http://(www\\.)?onepagerapp\\.com/(assets/|errors/|signin(?:$|\\?|/))\" to=\"https://$1onepagerapp.com/$2\"/></ruleset>", "<ruleset name=\"onestore.ms\" f=\"Onestore.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onfleet.com (partial)\" f=\"Onfleet.com.xml\"><securecookie host=\"^\\.onfleet\\.com$\" name=\".+\"/><rule from=\"^http://status\\.onfleet\\.com/\" to=\"https://onfleet.statuspage.io/\"/><rule from=\"^http://www\\.onfleet\\.com/\" to=\"https://onfleet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onforb.es (partial)\" f=\"Onforb.es.xml\"><exclusion pattern=\"^http://onforb\\.es/$\"/><rule from=\"^http://onforb\\.es/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"onion.to\" f=\"Onion.to.xml\"><rule from=\"^http://(\\w+\\.)?onion\\.to/\" to=\"https://$1onion.to/\"/></ruleset>", "<ruleset name=\"The Onion (partial)\" f=\"Onion.xml\"><securecookie host=\"^store\\.theonion\\.com$\" name=\".+\"/><rule from=\"^http://store\\.theonion\\.com/\" to=\"https://store.theonion.com/\"/></ruleset>", "<ruleset name=\"OnionCat.org\" default_off=\"missing certificate chain\" f=\"OnionCat.org.xml\"><rule from=\"^http://onioncat\\.org/\" to=\"https://www.onioncat.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnionShare.org\" f=\"OnionShare.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnionTip.com\" f=\"OnionTip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online-Mahnantrag.de\" f=\"Online-Mahnantrag.de.xml\"><rule from=\"^http://online-mahnantrag\\.de/\" to=\"https://www.online-mahnantrag.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online Register\" f=\"Online-Register.xml\"><securecookie host=\"^www\\.onlineregister\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?onlineregister\\.com/\" to=\"https://www.onlineregister.com/\"/></ruleset>", "<ruleset name=\"online-convert.com (partial)\" f=\"Online-convert.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?online-convert\\.com/(?!favicon\\.ico|login|password-recovery|register)\"/><exclusion pattern=\"^http://(?:archive|audio|document|ebook|hash|image|video)\\.online-convert\\.com/(?!favicon\\.ico)\"/><rule from=\"^http://((?:archive|audio|document|ebook|hash|image|static|video|www)\\.)?online-convert\\.com/\" to=\"https://$1online-convert.com/\"/></ruleset>", "<ruleset name=\"online-go.com\" f=\"Online-go.com.xml\"><rule from=\"^http://(?:www\\.)?online-go\\.com/\" to=\"https://online-go.com/\"/></ruleset>", "<ruleset name=\"online-metrix.net\" f=\"Online-metrix.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online.net (partial)\" f=\"Online.net.xml\"><securecookie host=\"^(?:console|status)\\.online\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online.nl\" f=\"Online.nl.xml\"><rule from=\"^http://(?:www\\.)?online\\.nl/\" to=\"https://www.online.nl/\"/><rule from=\"^http://registratie\\.online\\.nl/\" to=\"https://registratie.online.nl/\"/></ruleset>", "<ruleset name=\"Online2pdf.com\" f=\"Online2pdf.com.xml\"><securecookie host=\"^(s1\\.)?online2pdf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnlineSBI.com\" f=\"OnlineSBI.com.xml\"><securecookie host=\"^\\.onlinesbi\\.com$\" name=\".+\"/><rule from=\"^http://onlinesbi\\.com/\" to=\"https://www.onlinesbi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnlineShoes.com\" f=\"OnlineShoes.com.xml\"><securecookie host=\"^(?:static|www)\\.onlineshoes\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?onlineshoes\\.com/\" to=\"https://www.onlineshoes.com/\"/><rule from=\"^http://static\\.onlineshoes\\.com/\" to=\"https://static.onlineshoes.com/\"/></ruleset>", "<ruleset name=\"Online Censorship.org\" f=\"Online_Censorship.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online EMR\" f=\"Online_EMR.xml\"><securecookie host=\"^\\.online-emr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online Registration Center.com\" f=\"Online_Registration_Center.com.xml\"><securecookie host=\"^www\\.onlineregistrationcenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?onlineregistrationcenter\\.com/\" to=\"https://www.onlineregistrationcenter.com/\"/></ruleset>", "<ruleset name=\"Online Threat Alerts.com\" f=\"Online_Threat_Alerts.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online Wellness Association\" f=\"Online_Wellness_Association.xml\"><securecookie host=\"^(?:w*\\.)?onlinewellnessassociation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onlinecreditcenter6.com\" f=\"Onlinecreditcenter6.com.xml\"><rule from=\"^http://www(2)?\\.onlinecreditcenter6\\.com/\" to=\"https://www$1.onlinecreditcenter6.com/\"/></ruleset>", "<ruleset name=\"Onlychange.com\" default_off=\"self-signed\" f=\"Onlychange.com.xml\"><rule from=\"^http://(?:www\\.)?onlychange\\.com/\" to=\"https://onlychange.com/\"/></ruleset>", "<ruleset name=\"Ono\" f=\"Ono.xml\"><securecookie host=\"^www\\.ono\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ono\\.es/\" to=\"https://www.ono.es/\"/></ruleset>", "<ruleset name=\"onpatient.com\" f=\"Onpatient.com.xml\"><securecookie host=\"^\\.onpatient\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onsalesit.com\" f=\"Onsalesit.com.xml\"><securecookie host=\"^(?:www)?\\.onsalesit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onstream Media (partial)\" default_off=\"mismatch\" f=\"Onstream-Media.xml\"><rule from=\"^http://sas-origin\\.onstreammedia\\.com/\" to=\"https://sas-origin.onstreammedia.com/\"/></ruleset>", "<ruleset name=\"Onstream secure.com\" f=\"Onstream_secure.com.xml\"><rule from=\"^http://([\\w-]+)\\.onstreamsecure\\.com/\" to=\"https://$1.onstreamsecure.com/\"/></ruleset>", "<ruleset name=\"Onswipe\" f=\"Onswipe.xml\"><rule from=\"^http://static\\.onswipe\\.com/synapse/\" to=\"https://s3.amazonaws.com/cdn.onswipe.com/synapse/\"/><rule from=\"^http://(cdn|plug)\\.onswipe\\.com/\" to=\"https://s3.amazonaws.com/$1.onswipe.com/\"/></ruleset>", "<ruleset name=\"Ontario Lung Association\" platform=\"mixedcontent\" f=\"Ontario-Lung-Assoc.xml\"><rule from=\"^http://(?:www\\.)?on\\.lung\\.ca/\" to=\"https://www.on.lung.ca/\"/></ruleset>", "<ruleset name=\"Ontario Minor Hockey Association\" default_off=\"failed ruleset test\" f=\"Ontario_Minor_Hockey_Association.xml\"><securecookie host=\"^(?:w*\\.)?omha\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onthe.io\" f=\"Onthe.io.xml\"><securecookie host=\"(?:.+\\.)?onthe\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ontology.co\" f=\"Ontology.co.xml\"><securecookie host=\"^\\.ontology\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnTrac\" f=\"Ontrac.com.xml\"><rule from=\"^http://(?:www\\.)?ontrac\\.com/\" to=\"https://www.ontrac.com/\"/></ruleset>", "<ruleset name=\"OO-Software.com\" f=\"Oo-software.com.xml\"><securecookie host=\"^(www\\.|shop\\.|blog\\.|partners\\.)?oo-software\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ookla (mismatches)\" default_off=\"mismatch\" f=\"Ookla-mismatches.xml\"><rule from=\"^http://(cdn\\.)?ads\\.ookla\\.com/\" to=\"https://$1ads.ookla.com/\"/><rule from=\"^http://(?:cdn\\.|www\\.)?pingtest\\.net/\" to=\"https://pingtest.net/\"/></ruleset>", "<ruleset name=\"Ookla (partial)\" f=\"Ookla.xml\"><securecookie host=\"^.*\\.ookla\\.com$\" name=\".*\"/><rule from=\"^http://ookla\\.com/\" to=\"https://www.ookla.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OomphMe\" default_off=\"connection refused\" f=\"Oomphme.xml\"><rule from=\"^http://(?:www\\.)?oomphme\\.com/\" to=\"https://www.oomphme.com/\"/></ruleset>", "<ruleset name=\"Oops.org\" f=\"Oops.org.xml\"><rule from=\"^http://([\\w-]+\\.)?oops\\.org/\" to=\"https://$1oops.org/\"/></ruleset>", "<ruleset name=\"ooshirts.com (partial)\" f=\"Ooshirts.com.xml\"><rule from=\"^http://(www\\.|i[12]\\.)?ooshirts\\.com/(css|images)/\" to=\"https://www.ooshirts.com/$2/\"/></ruleset>", "<ruleset name=\"Ooyala (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"Ooyala-mismatches.xml\"><rule from=\"^http://(support|videomind)\\.ooyala\\.com/\" to=\"https://$1.ooyala.com/\"/><rule from=\"^http://(?:www\\.)?ooyala\\.jp/\" to=\"https://www.ooyala.jp/\"/></ruleset>", "<ruleset name=\"Ooyala.com (partial)\" platform=\"mixedcontent\" f=\"Ooyala.xml\"><exclusion pattern=\"crossdomain\\.xml$\"/><securecookie host=\"^(?:.*\\.)?ooyala\\.com$\" name=\".+\"/><rule from=\"^http://ooyala\\.com/\" to=\"https://www.ooyala.com/\"/><rule from=\"^http://(?:ak\\.)?c\\.ooyala\\.com/\" to=\"https://ak-c.ooyala.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"op-co.de\" platform=\"cacert\" f=\"Op-co.de.xml\"><rule from=\"^http://www\\.op-co\\.de/\" to=\"https://op-co.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Op5.com\" f=\"Op5.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opa (partial)\" default_off=\"failed ruleset test\" f=\"Opa.xml\"><securecookie host=\"^(?:www.)?opalang\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opal Card\" f=\"Opal.xml\"><rule from=\"^http://(www\\.)?opal\\.com\\.au/\" to=\"https://www.opal.com.au/\"/></ruleset>", "<ruleset name=\"Open Clipart.org\" f=\"Open-Clipart-Library.xml\"><securecookie host=\"^\\.openclipart\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Invention Network.com\" f=\"Open-Invention-Network.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open MPI\" f=\"Open-MPI.xml\"><rule from=\"^http://(?:www\\.)?open-mpi\\.org/\" to=\"https://www.open-mpi.org/\"/></ruleset>", "<ruleset name=\"Open-Mesh.com\" f=\"Open-Mesh.xml\"><securecookie host=\"^\\.www\\.open-mesh\\.com$\" name=\".+\"/><rule from=\"^http://dashboard\\.open-mesh\\.com/\" to=\"https://cloudtrax.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORCID.org (partial)\" f=\"Open-Researcher-and-Contributor-ID.xml\"><exclusion pattern=\"^http://orcid\\.org/+(?!misc/|(?:register|reset-password|signin)(?:$|[?/])|sites/|static/)\"/><securecookie host=\"^(?:about|members|www)\\.orcid\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Society Foundations\" default_off=\"mismatch\" f=\"Open-Society-Foundations.xml\"><rule from=\"^http://(?:www\\.)?soros\\.org/\" to=\"https://www.soros.org/\"/></ruleset>", "<ruleset name=\"OSEC.pl\" f=\"Open-Source-Education-Center.xml\"><securecookie host=\"^\\.osec\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSR Foundation.org (partial)\" f=\"Open-Source-Robotics-Foundation.xml\"><securecookie host=\"^events\\.osrfoundation\\.org$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open WebMail\" default_off=\"self-signed\" f=\"Open-WebMail.xml\"><rule from=\"^http://(?:www\\.)?openwebmail\\.org/\" to=\"https://openwebmail.org/\"/></ruleset>", "<ruleset name=\"Open.com.au\" f=\"Open.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAFS.org (partial)\" f=\"OpenAFS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAI.com\" f=\"OpenAI.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAdultDirectory.com (partial)\" default_off=\"failed ruleset test\" f=\"OpenAdultDirectory.com.xml\"><rule from=\"^http://(www\\.)?openadultdirectory\\.com/(banner-img/|favicon\\.ico|oad_html/images/)\" to=\"https://$1openadultdirectory.com/$2\"/></ruleset>", "<ruleset name=\"OpenAthens (partial)\" f=\"OpenAthens.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBSD.org (partial)\" default_off=\"connection refusd\" f=\"OpenBSD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBSD Europe\" f=\"OpenBSDEurope.com.xml\"><rule from=\"^http://(?:shop\\.)?openbsdeurope\\.com/\" to=\"https://shop.openbsdeurope.com/\"/></ruleset>", "<ruleset name=\"OpenBSD Store.com\" f=\"OpenBSD_Store.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBenchmarking.org\" f=\"OpenBenchmarking.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBitTorrent.com\" f=\"OpenBitTorrent.com.xml\"><rule from=\"^http://www\\.openbittorrent\\.com/\" to=\"https://openbittorrent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBlox\" f=\"OpenBlox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCPU.org\" f=\"OpenCPU.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCSW.org (partial)\" f=\"OpenCSW.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCart.com (partial)\" f=\"OpenCart.com.xml\"><securecookie host=\"^\\.opencart\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.?www\\.opencart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenClassrooms.com\" f=\"OpenClassrooms.xml\"><securecookie host=\"^(?:\\.|www\\.)?openclassrooms\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenContrail.org (partial)\" f=\"OpenContrail.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCores.org (partial)\" default_off=\"expired\" f=\"OpenCores.xml\"><securecookie host=\"^opencores\\.org$\" name=\".+\"/><rule from=\"^http://www\\.opencores\\.org/\" to=\"https://opencores.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCorporates.com (partial)\" f=\"OpenCorporates.com.xml\"><securecookie host=\"^(?:www\\.)?opencorporates\\.com$\" name=\".+\"/><securecookie host=\"^\\.opencorporates\\.com$\" name=\"^_openc_turbot_session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenDNS (partial)\" f=\"OpenDNS.xml\"><rule from=\"^http://cdn-blog\\.opendns\\.com/\" to=\"https://d1c21ex135qvy3.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenDZ\" default_off=\"self-signed\" f=\"OpenDZ.xml\"><securecookie host=\"^opendz\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?opendz\\.org/\" to=\"https://opendz.org/\"/></ruleset>", "<ruleset name=\"OpenDaylight.org (partial)\" f=\"OpenDaylight.xml\"><exclusion pattern=\"^http://www\\.opendaylight\\.org/+(?!misc/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenEZX.org (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"OpenEZX.org.xml\"><rule from=\"^http://svn\\.openezx\\.(?:com|net|org)/\" to=\"https://svn.openezx.org/\"/></ruleset>", "<ruleset name=\"OpenF2.org (partial)\" f=\"OpenF2.org.xml\"><securecookie host=\"^developer\\.openf2\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?openf2\\.org$\" name=\".+\"/><rule from=\"^http://www\\.openf2\\.com/\" to=\"https://www.openf2.org/\"/><rule from=\"^http://developer\\.openf2\\.com/\" to=\"https://developer.openf2.com/\"/><rule from=\"^http://((?:cdn|developer(?:\\.[bl]tc)?|services|www)\\.)?openf2\\.org/\" to=\"https://$1openf2.org/\"/></ruleset>", "<ruleset name=\"OpenFabrics.org (partial)\" f=\"OpenFabrics-Alliance.xml\"><securecookie host=\"^(?:www\\.)?openfabrics\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenFoundry.org\" f=\"OpenFoundry.org.xml\"><securecookie host=\"^www\\.openfoundry\\.org$\" name=\".+\"/><rule from=\"^http://openfoundry\\.org/.*\" to=\"https://www.openfoundry.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenGL.org\" f=\"OpenGL.xml\"><securecookie host=\"^(?:www\\.)?opengl\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openHPI.de\" f=\"OpenHPI.xml\"><securecookie host=\"^(?:blog\\.|www\\.)?openhpi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenHatch.org (problematic)\" default_off=\"mismatched\" f=\"OpenHatch.org-problematic.xml\"><securecookie host=\"^forum\\.openhatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenHatch.org (partial)\" default_off=\"failed ruleset test\" f=\"OpenHatch.org.xml\"><securecookie host=\"^\\.?openhatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenID.net\" f=\"OpenID.xml\"><securecookie host=\"^openid\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenIDEO.com (partial)\" default_off=\"mismatched\" f=\"OpenIDEO.com.xml\"><securecookie host=\"^www\\.openideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenIT\" f=\"OpenIT.xml\"><securecookie host=\"^www\\.openit\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?openit\\.de/\" to=\"https://www.openit.de/\"/></ruleset>", "<ruleset name=\"OpenITC.co.uk (partial)\" f=\"OpenITC.co.uk.xml\"><securecookie host=\"^forums\\.openitc\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenITP.org (partial)\" f=\"OpenITP.org.xml\"><securecookie host=\"^(?:.+\\.)?openitp\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenLDAP.org\" default_off=\"expired, self-signed\" f=\"OpenLDAP.org.xml\"><rule from=\"^http://(?:www\\.)?openldap\\.org/\" to=\"https://www.openldap.org/\"/></ruleset>", "<ruleset name=\"OpenLeaks\" default_off=\"shows default page\" f=\"OpenLeaks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenLinksys.info\" f=\"OpenLinksys.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMPT\" f=\"OpenMPT.xml\"><rule from=\"^http://(www\\.)?openmpt\\.org/\" to=\"https://openmpt.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMRS.org (mismatched)\" default_off=\"mismatched\" f=\"OpenMRS.org-problematic.xml\"><securecookie host=\"^(?:events\\.)?openmrs\\.org$\" name=\".+\"/><rule from=\"^http://www\\.openmrs\\.org/\" to=\"https://openmrs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMRS.org (partial)\" f=\"OpenMRS.xml\"><securecookie host=\"^(?:ci|id|talk|wiki)\\.openmrs\\.org$\" name=\".+\"/><rule from=\"^http://answers\\.openmrs\\.org/[^?]*\" to=\"https://wiki.openmrs.org/display/ask/Home\"/><rule from=\"^http://ask\\.openmrs\\.org/([^?]*)(?:\\?.*)?\" to=\"https://wiki.openmrs.org/display/ask$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMW.org\" f=\"OpenMW.xml\"><securecookie host=\"^(?:.*\\.)?openmw\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMailBox.org\" f=\"OpenMailBox.org.xml\"><securecookie host=\"^www\\.openmailbox\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMandriva.org\" platform=\"cacert\" f=\"OpenMandriva.xml\"><securecookie host=\"^(?:\\.?blog|doc|\\.ftp|issues|\\.?wiki|\\.www)?\\.openmandriva\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMarket.org\" default_off=\"expired, mismatched, self-signed\" f=\"OpenMarket.org.xml\"><securecookie host=\"^www\\.openmarket\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMedia.ca\" f=\"OpenMedia.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMedia.org\" f=\"OpenMedia.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMedia now.net\" f=\"OpenMedia_now.net.xml\"><rule from=\"^http://(?:www\\.)?openmedianow\\.net/+\" to=\"https://openmedia.org/\"/></ruleset>", "<ruleset name=\"OpenNET.ru (partial)\" f=\"OpenNET.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenNet.net (partial)\" f=\"OpenNet.net.xml\"><securecookie host=\"^\\.opennet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenNews.org (partial)\" f=\"OpenNews.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PGP RU.com\" f=\"OpenPGP-in-Russia.xml\"><securecookie host=\"^(?:www\\.)?pgpru\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenPGPjs.org\" default_off=\"mismatched, self-signed\" f=\"OpenPGPjs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openpetition.de\" f=\"OpenPetition.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenRCE.org\" default_off=\"expired, missing certificate chain\" f=\"OpenRCE.xml\"><securecookie host=\"^www\\.openrce\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenSC-Project.org\" default_off=\"missing certificate chain\" f=\"OpenSC-Project.xml\"><securecookie host=\"^(?:www\\.)?opensc-project\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenSRS.com (partial)\" f=\"OpenSRS.com.xml\"><exclusion pattern=\"^http://www\\.opensrs\\.com/blog[\\w/-]*/$\"/><securecookie host=\"^(?:signup\\.)?opensrs\\.com$\" name=\".+\"/><rule from=\"^http://(?:(signup\\.)|www\\.)?opensrs\\.(?:com|net)/\" to=\"https://$1opensrs.com/\"/><rule from=\"^http://rr-n1-tor\\.opensrs\\.net/\" to=\"https://rr-n1-tor.opensrs.net/\"/></ruleset>", "<ruleset name=\"OpenSSL.org (partial)\" f=\"OpenSSL.xml\"><securecookie host=\"^rt\\.openssl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openSUSE.org (partial)\" f=\"OpenSUSE.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://opensuse\\.org/\" to=\"https://www.opensuse.org/\"/><rule from=\"^http://(\\w\\w|activedoc|beans|bugs|bugzilla|build|connect|count(?:down|er)|doc|features|forums|lizards|news|openqa|shop|software|static|wiki|www)\\.opensuse\\.org/\" to=\"https://$1.opensuse.org/\"/></ruleset>", "<ruleset name=\"OpenSVC.com (partial)\" f=\"OpenSVC.xml\"><securecookie host=\"^\\w+\\.opensvc\\.com$\" name=\".*\"/><rule from=\"^http://opensvc\\.com/\" to=\"https://www.opensvc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenShift.com\" f=\"OpenShift.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenSignal.com\" f=\"OpenSignal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStack.org (partial)\" f=\"OpenStack.xml\"><securecookie host=\"^(?:(?:ask|wiki|www)\\.)?openstack\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStat.net\" f=\"OpenStat.net.xml\"><securecookie host=\"^\\.openstat\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStat.ru (partial)\" f=\"OpenStat.ru.xml\"><securecookie host=\"^\\.openstat\\.ru$\" name=\".+\"/><rule from=\"^http://openstat\\.ru/\" to=\"https://www.openstat.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStreetMap.de\" f=\"OpenStreetMap.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStreetMap.org\" f=\"OpenStreetMap.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://shop\\.openstreetmap\\.org/.*\" to=\"https://wiki.openstreetmap.org/wiki/Merchandise\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTPX.org\" f=\"OpenTPX.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTTD (expired)\" default_off=\"expired\" f=\"OpenTTD-expired.xml\"><securecookie host=\"^wiki\\.openttdcoop\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTTD (partial)\" platform=\"mixedcontent\" f=\"OpenTTD.xml\"><exclusion pattern=\"^http://(?:devs|media)\\.openttd\\.org/\"/><securecookie host=\"^secure\\.openttd\\.org$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?openttdcoop\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?openttd\\.org/\" to=\"https://$1openttd.org/\"/><rule from=\"^http://((?:blog|dev|paste|www)\\.)?openttdcoop\\.org/\" to=\"https://$1openttdcoop.org/\"/></ruleset>", "<ruleset name=\"OpenTechFund\" f=\"OpenTechFund.xml\"><securecookie host=\"^\\.opentechfund\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?opentechfund\\.com/\" to=\"https://www.opentechfund.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenText (partial)\" f=\"OpenText.xml\"><exclusion pattern=\"^http://mimage\\.opentext\\.com/alt_content/binary/ot/newmedia/ot_html5/ot_slider/(?:ot_banner_system/default/rs-default|preview-assets/css/smoothness/jquery-ui-1\\.8\\.22\\.custom)\\.css\"/><securecookie host=\"^www\\.opentext\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTok.com (partial)\" f=\"OpenTok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Open University (buggy)\" default_off=\"https://www.eff.org/r.5E5\" f=\"OpenUniversity.xml\"><rule from=\"^http://([^@:/]+)\\.open\\.ac\\.uk/\" to=\"https://$1.open.ac.uk/\"/><rule from=\"^http://www\\.openuniversity\\.ac\\.uk/\" to=\"https://www.open.ac.uk/\"/><rule from=\"^http://www\\.ouw\\.co\\.uk/\" to=\"https://www.ouw.co.uk/\"/><rule from=\"^http://www\\.ousa\\.org\\.uk/\" to=\"https://www.ousa.org.uk/\"/></ruleset>", "<ruleset name=\"OpenUserJS.org\" f=\"OpenUserJS.org.xml\"><securecookie host=\"^openuserjs\\.org$\" name=\".+\"/><rule from=\"^http://www\\.openuserjs\\.org/\" to=\"https://openuserjs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVAS.org (partial)\" f=\"OpenVAS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVPN.net\" f=\"OpenVPN.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVZ.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"OpenVZ.org-falsemixed.xml\"><securecookie host=\"^\\.forum\\.openvz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVZ.org (partial)\" f=\"OpenVZ.org.xml\"><exclusion pattern=\"^http://static\\.openvz\\.org/+(?:$|\\?|supported_by_parallels_88x31\\.gif)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenWRT.org (partial)\" f=\"OpenWRT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.net (partial)\" f=\"OpenX.net.xml\"><securecookie host=\"^(?:us-ads)?\\.openx\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.org (partial)\" default_off=\"mismatched\" f=\"OpenX.org.xml\"><securecookie host=\"^adserver\\.openx\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.com (partial)\" f=\"OpenX.xml\"><securecookie host=\"^(?:i-cdn|lift|sso|d\\.tradex)?\\.openx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenXMPP.com\" f=\"OpenXMPP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX Enterprise.com\" f=\"OpenX_Enterprise.com.xml\"><securecookie host=\"^\\w+-d\\.openxenterprise\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)-d\\.openxenterprise\\.com/\" to=\"https://$1-d.openxenterprise.com/\"/></ruleset>", "<ruleset name=\"OpenX ad exchange.com\" f=\"OpenX_ad_exchange.com.xml\"><securecookie host=\"^ox-d\\.openxadexchange\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Access Button.org\" f=\"Open_Access_Button.org.xml\"><securecookie host=\"^(?:www\\.)?openaccessbutton\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Archives.org\" f=\"Open_Archives.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Badges.org (partial)\" f=\"Open_Badges.xml\"><securecookie host=\".+\\.openbadges\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Book Publishers.com (false MCB)\" platform=\"mixedcontent\" f=\"Open_Book_Publishers.com.xml\"><securecookie host=\"^www\\.openbookpublishers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Containers.org\" f=\"Open_Containers.org.xml\"><securecookie host=\"^\\.(?:www\\.)?opencontainers\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Crypto Audit.org\" f=\"Open_Crypto_Audit.org.xml\"><securecookie host=\"^\\.opencryptoaudit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Culture.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Open_Culture.com-problematic.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Culture.com (partial)\" f=\"Open_Culture.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ODir.org\" default_off=\"plaintext reply\" f=\"Open_Directory.xml\"><securecookie host=\"^\\.odir\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Door.com\" f=\"Open_Door.com.xml\"><securecookie host=\".*\\.opendoor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Doors.org\" f=\"Open_Doors.org.xml\"><securecookie host=\"^www\\.opendoors\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Farm Game.com\" default_off=\"expired\" f=\"Open_Farm_Game.xml\"><securecookie host=\"^openfarmgame\\.com$\" name=\".+\"/><rule from=\"^http://www\\.openfarmgame\\.com/\" to=\"https://openfarmgame.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Garden.com (mismatched)\" default_off=\"mismatched\" f=\"Open_Garden.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Hub.net (false MCB)\" platform=\"mixedcontent\" f=\"Open_Hub.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Hub.net (partial)\" f=\"Open_Hub.net.xml\"><exclusion pattern=\"^http://blog\\.openhub\\.net/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:code\\.|www\\.)?openhub\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Hunt.co\" f=\"Open_Hunt.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open InfoSec Foundation.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Open_InfoSec_Foundation.org-problematic.xml\"><securecookie host=\"^(?:www\\.)?openinfosecfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open InfoSec Foundation.org (partial)\" f=\"Open_InfoSec_Foundation.org.xml\"><securecookie host=\"^redmine\\.openinfosecfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKFn.org (partial)\" f=\"Open_Knowledge_Foundation.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.okfn\\.org/\" to=\"https://okfn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Library.org\" f=\"Open_Library.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Listings.co\" f=\"Open_Listings.co.xml\"><securecookie host=\"^www\\.openlistings\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open-Mesh.org\" platform=\"cacert\" f=\"Open_Mesh.xml\"><securecookie host=\"^www\\.open-mesh\\.org$\" name=\".+\"/><rule from=\"^http://open-mesh\\.org/\" to=\"https://www.open-mesh.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Microscopy.org (partial)\" f=\"Open_Microscopy.org.xml\"><rule from=\"^http://openmicroscopy\\.org/\" to=\"https://www.openmicroscopy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Objects.com (partial)\" f=\"Open_Objects.com.xml\"><exclusion pattern=\"^http://search3\\.openobjects\\.com/+(?!cdn/|kb5/\\d+/directory/assets/|mediamanager/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Rights Group.org\" f=\"Open_Rights_Group.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Source.org (problematic)\" default_off=\"missing certificate chain\" f=\"Open_Source.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Source.org (partial)\" f=\"Open_Source.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Source Hacker.com\" f=\"Open_Source_Hacker.com.xml\"><securecookie host=\"^\\.opensourcehacker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Virtualization Alliance.org\" f=\"Open_Virtualization_Alliance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Web.or.kr\" f=\"Open_Web.or.kr.xml\"><securecookie host=\"^(?:www\\.)?openweb\\.or\\.kr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Wireless.org\" f=\"Open_Wireless_Movement.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openas.org\" f=\"Openas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openbaar Ministerie (partial)\" f=\"Openbaar_Ministerie.xml\"><rule from=\"^http://(www\\.)?om\\.nl/(\\?xdl=|publish|views)/\" to=\"https://$1om.nl/$2/\"/></ruleset>", "<ruleset name=\"openDemocracy.net\" f=\"Opendemocracy.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?opendemocracy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenfMRI.org\" f=\"OpenfMRI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openfiler.com\" default_off=\"failed ruleset test\" f=\"Openfiler.xml\"><securecookie host=\"^.*\\.openfiler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Garden.com (partial)\" f=\"Opengarden.com.xml\"><rule from=\"^http://www\\.opengarden\\.com/\" to=\"https://opengarden.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openhost\" f=\"Openhost.xml\"><securecookie host=\"^hspc\\.openhost\\.net\\.nz$\" name=\".*\"/><securecookie host=\"^support\\.openhost\\.co\\.nz$\" name=\".*\"/><securecookie host=\"^store\\.openhost\\.net\\.nz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mycp\\.co\\.nz/\" to=\"https://hspc.openhost.net.nz/sign_in.php\"/><rule from=\"^http://support\\.webhost\\.co\\.nz/\" to=\"https://support.webhost.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openingscience.org\" default_off=\"mismatched, self-signed\" f=\"Openingscience.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openkeychain.org\" f=\"Openkeychain.org.xml\"><securecookie host=\"^(www\\.)?openkeychain\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openmoko.org\" default_off=\"expired\" f=\"Openmoko.xml\"><securecookie host=\"^wiki\\.openmoko\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?openmoko\\.org/\" to=\"https://wiki.openmoko.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openpgpkey.info\" f=\"Openpgpkey.info.xml\"><securecookie host=\"^(www\\.)?openpgpkey\\.info\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenPrinting.org (partial)\" f=\"Openprinting.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openreach.co.uk\" f=\"Openreach.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://openreach\\.co\\.uk/\" to=\"https://www.openreach.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openresty.org\" f=\"Openresty.org.xml\"><securecookie host=\"^(www\\.|qa\\.)?openresty\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opensource.com\" f=\"Opensource.com.xml\"><securecookie host=\"^\\.opensource\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openstreetmap.fr\" f=\"Openstreetmap.fr.xml\"><securecookie host=\"^(www\\.|umap\\.|trac\\.|listes\\.|forum\\.|adherents\\.|export\\.|bano\\.|cadastre\\.|osm13\\.|suivi\\.|munin\\.|nomino\\.)?openstreetmap\\.fr\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openswan.org\" f=\"Openswan.xml\"><securecookie host=\"^www\\.openswan\\.org$\" name=\".+\"/><rule from=\"^http://openswan\\.org/\" to=\"https://www.openswan.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opentabs.net\" default_off=\"mismatch\" f=\"Opentabs.net.xml\"><rule from=\"^http://(?:www\\.)?opentabs\\.net/\" to=\"https://opentabs.net/\"/></ruleset>", "<ruleset name=\"Opentrackers.org\" f=\"Opentrackers.org.xml\"><securecookie host=\"^\\.opentrackers\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opentransfer.com\" f=\"Opentransfer.com.xml\"><securecookie host=\"^\\.webmail\\.opentransfer\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?opentransfer\\.com/+\" to=\"https://www.ecommerce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opera (partial)\" f=\"Opera.xml\"><exclusion pattern=\"^http://apps\\.opera\\.com/+(?!$|\\?)\"/><securecookie host=\"^(?:addons|bugs|idp|mail|\\.micropage|ssl)\\.opera\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Operating Systems.io\" default_off=\"connection dropped\" f=\"Operating_Systems.io.xml\"><securecookie host=\"^\\.operatingsystems\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Operation Fabulous\" default_off=\"failed ruleset test\" f=\"Operation-Fabulous.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ophan.co.uk (partial)\" f=\"Ophan.co.uk.xml\"><rule from=\"^http://s\\.ophan\\.co\\.uk/\" to=\"https://d2n6o0n31iqeta.cloudfront.net/\"/></ruleset>", "<ruleset name=\"OpinionLab.com (partial)\" f=\"OpinionLab.xml\"><exclusion pattern=\"^http://www\\.opinionlab\\.com/+(?!images/|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opinionmeter (partial)\" f=\"Opinionmeter.xml\"><rule from=\"^http://opinionmeter\\.com/(cdn-cgi|wp-content)/\" to=\"https://opinionmeter.com/$1/\"/><rule from=\"^http://www\\.opinionmeter\\.com/OVM2($|\\?|/)\" to=\"https://www.opinionmeter.com/OVM2$1\"/></ruleset>", "<ruleset name=\"Opintoluotsi\" default_off=\"failed ruleset test\" f=\"Opintoluotsi.xml\"><securecookie host=\"^(?:www\\.)?opintoluotsi\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opkode.com (partial)\" f=\"Opkode.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oplata.info\" f=\"Oplata.info.xml\"><securecookie host=\"^www\\.oplata\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oplata\\.info/\" to=\"https://www.oplata.info/\"/></ruleset>", "<ruleset name=\"Oppelt.com\" f=\"Oppelt.com.xml\"><securecookie host=\"^piwik\\.oppelt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oppo.com (partial)\" default_off=\"failed ruleset test\" f=\"Oppo.com.xml\"><securecookie host=\"^en\\.oppo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oppo\\.com/+$\" to=\"https://en.oppo.com/\"/><rule from=\"^http://(account|en)\\.oppo\\.com/\" to=\"https://$1.oppo.com/\"/></ruleset>", "<ruleset name=\"Opscode.com (partial)\" f=\"Opscode.com.xml\"><rule from=\"^http://((?:manage|learnchef|tickets|wiki|www)\\.)?opscode\\.com/\" to=\"https://$1opscode.com/\"/></ruleset>", "<ruleset name=\"Opsmate\" f=\"Opsmate.xml\"><rule from=\"^http://opsmate\\.com/\" to=\"https://opsmate.com/\"/><rule from=\"^http://www\\.opsmate\\.com/\" to=\"https://www.opsmate.com/\"/></ruleset>", "<ruleset name=\"OptMD.com (partial)\" f=\"OptMD.com.xml\"><rule from=\"^http://cdn-sec\\.optmd\\.com/\" to=\"https://cdn-sec.optmd.com/\"/></ruleset>", "<ruleset name=\"OptOutPrescreen.com\" f=\"OptOutPrescreen.com.xml\"><securecookie host=\"^www\\.optoutprescreen\\.com$\" name=\".+\"/><rule from=\"^http://optoutprescreen\\.com/\" to=\"https://www.optoutprescreen.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optagelse.dk\" f=\"Optagelse.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optical Society of America (partial)\" default_off=\"failed ruleset test\" f=\"Optical-Society-of-America.xml\"><exclusion pattern=\"^http://www\\.osa\\.org/(?:en-us|video_library)/\"/><securecookie host=\"^www\\.opticsinfobase\\.org$\" name=\".*\"/><securecookie host=\"^.*\\.osa\\.org$\" name=\".*\"/><rule from=\"^http://o(pticsinfobase|sa)\\.org/\" to=\"https://www.o$1.org/\"/><rule from=\"^http://www\\.opticsinfobase\\.org/\" to=\"https://www.opticsinfobase.org/\"/><rule from=\"^http://(account|eweb2|www)\\.osa\\.org/\" to=\"https://$1.osa.org/\"/></ruleset>", "<ruleset name=\"Optify\" default_off=\"failed ruleset test\" f=\"Optify.xml\"><securecookie host=\"^service\\.optify\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optimal Payments (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Optimal-Payments.xml\"><securecookie host=\"^(?:.*\\.)?neteller\\.com$\" name=\".*\"/><rule from=\"^http://(help\\.|member\\.|merchant\\.|www\\.)?neteller\\.com/\" to=\"https://$1neteller.com/\"/><rule from=\"^http://(?:(www\\.)?neteller-group|optimalpayments)\\.com/\" to=\"https://www.optimalpayments.com/\"/><rule from=\"^http://www\\.optimalpayments\\.com/wp-content/\" to=\"https://www.optimalpayments.com/wp-content/\"/></ruleset>", "<ruleset name=\"Optimise.com.br\" f=\"Optimise.com.br.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://optimise\\.com\\.br/\" to=\"https://www.optimise.com.br/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optimise Media.com\" f=\"Optimise_Media.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"optimize-it (partial)\" default_off=\"failed ruleset test\" f=\"Optimize-it.xml\"><rule from=\"^http://realperson300\\.net/\" to=\"https://realperson300.net/\"/></ruleset>", "<ruleset name=\"OptimizeGoogle\" default_off=\"Certificate mismatch\" f=\"OptimizeGoogle.xml\"><rule from=\"^http://(?:www\\.)?optimizegoogle\\.com/\" to=\"https://www.optimizegoogle.com/\"/></ruleset>", "<ruleset name=\"Optimizely\" f=\"Optimizely.xml\"><securecookie host=\"^(?:.*\\.)?optimizely\\.com$\" name=\".*\"/><rule from=\"^http://optimizely\\.com/\" to=\"https://www.optimizely.com/\"/><rule from=\"^http://(cdn\\d?|\\d+\\.log|log3|www)\\.optimizely\\.com/\" to=\"https://$1.optimizely.com/\"/><rule from=\"^http://support\\.optimizely\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-2.tenderapp.com/$1/\"/></ruleset>", "<ruleset name=\"Optimost (partial) \" f=\"Optimost.xml\"><rule from=\"^http://(?:es|by\\.essl)\\.optimost\\.com/\" to=\"https://by.essl.optimost.com/\"/></ruleset>", "<ruleset name=\"OptionBit\" f=\"OptionBit.xml\"><securecookie host=\"^(?:w*\\.)?optionbit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OptionsAnimal.com\" f=\"OptionsAnimal.com.xml\"><securecookie host=\"^\\.optionsanimal\\.com$\" name=\".+\"/><rule from=\"^http://optionsanimal\\.com/\" to=\"https://optionsanimal.com/\"/><rule from=\"^http://(?:fast|www)\\.optionsanimal\\.com/\" to=\"https://www.optionsanimal.com/\"/></ruleset>", "<ruleset name=\"optorb.com\" f=\"Optorb.com.xml\"><securecookie host=\"^\\.optorb\\.com$\" name=\".+\"/><rule from=\"^http://u\\.optorb\\.com/\" to=\"https://u.optorb.com/\"/></ruleset>", "<ruleset name=\"Opus-codec.org\" f=\"Opus-codec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"orWall.org\" f=\"OrWall.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oracle-Base.com\" f=\"Oracle-Base.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oracle (mismatches)\" default_off=\"mismatch\" f=\"Oracle-mismatches.xml\"><securecookie host=\"^\\.forge\\.mysql\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.mysql\\.com/\" to=\"https://$1.mysql.com/\"/><rule from=\"^http://events\\.oracle\\.com/\" to=\"https://events.oracle.com/\"/><rule from=\"^http://(?:www\\.)?planetnetbeans\\.org/\" to=\"https://planetnetbeans.org/\"/></ruleset>", "<ruleset name=\"Oracle (partial)\" f=\"Oracle.xml\"><exclusion pattern=\"^http://www\\.oracle(?:img)?\\.com/(?!(?:\\w+/)?assets/|\\w+/[^/]+\\.(?:css|gif|jpg|js|png)$|(?:communities|corporate/careers|javaone|marketingcloud|rightnow)(?:$|[?/]))\"/><securecookie host=\"^(?:\\w+|\\.edelivery)\\.oracle\\.com$\" name=\".+\"/><securecookie host=\"^\\.\" name=\"^(?:Order_Marketing(?:CampaignSuccess|Trigger)|gpw_e24|s_(?:cc|nr|sq))$\"/><rule from=\"^http://(?:www\\.)?oracle(img)?\\.com/us/(?=[^/]+\\.(?:css|gif|jpg|js|png)$)\" to=\"https://www.oracle$1.com/us/assets/\"/><rule from=\"^http://oracleimg\\.com/\" to=\"https://www.oracleimg.com/\"/><rule from=\"^http://appsconnect\\.oracle\\.com/\" to=\"https://appsconnect.custhelp.com/\"/><rule from=\"^http://crmondemand\\.oracle\\.com/\" to=\"https://www.oracle.com/us/products/applications/crmondemand/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oracle outsourcing.com (partial)\" f=\"Oracle_outsourcing.com.xml\"><rule from=\"^http://(bi|crm|fin|fs|[hs]cm|ic|pr[cj])-(\\w+)\\.oracleoutsourcing\\.com/\" to=\"https://$1-$2.oracleoutsourcing.com/\"/></ruleset>", "<ruleset name=\"Oralb-blendamed.de\" f=\"Oralb-blendamed.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orange.Jobs (false MCB)\" platform=\"mixedcontent\" f=\"Orange.Jobs-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?orange\\.jobs/\" to=\"https://orange.jobs/\"/></ruleset>", "<ruleset name=\"Orange.Jobs (partial)\" f=\"Orange.Jobs.xml\"><exclusion pattern=\"http://(?:www\\.)?orange\\.jobs/+(?!css/|favicon\\.ico|images/|media/)\"/><rule from=\"^http://(?:(jobsmap\\.)|www\\.)?orange\\.jobs/\" to=\"https://$1orange.jobs/\"/></ruleset>", "<ruleset name=\"Orange.sk\" default_off=\"failed ruleset test\" f=\"Orange.sk.xml\"><rule from=\"^http://(?:www\\.)?orange\\.sk/\" to=\"https://www.orange.sk/\"/></ruleset>", "<ruleset name=\"Orange\" f=\"Orange.xml\"><securecookie host=\"^(?:kareena|shop)\\.orange\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?orange\\.co\\.il/\" to=\"https://www.orange.co.il/\"/><rule from=\"^http://(kareena|services|shop|wassup|web)\\.orange\\.co\\.uk/\" to=\"https://$1.orange.co.uk/\"/><rule from=\"^http://(?:www\\.)?orange\\.ch/\" to=\"https://www.orange.ch/\"/><rule from=\"^http://(apps|community|mobilesettings|my|rbt|shop)\\.orange\\.ch/\" to=\"https://$1.orange.ch/\"/></ruleset>", "<ruleset name=\"OrangeWebsite.com (partial)\" f=\"OrangeWebsite.com.xml\"><securecookie host=\"^secure\\.orangewebsite\\.com$\" name=\".+\"/><rule from=\"^http://(jolnir|secure)\\.orangewebsite\\.com/\" to=\"https://$1.orangewebsite.com/\"/></ruleset>", "<ruleset name=\"Orange Geek\" f=\"Orange_Geek.xml\"><securecookie host=\"^\\.orangegeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orange Static.com\" default_off=\"expired\" f=\"Orange_Static.com.xml\"><rule from=\"^http://(?:www\\.)?orangestatic\\.com/\" to=\"https://www.orangestatic.com/\"/></ruleset>", "<ruleset name=\"Orbital ATK.com\" f=\"Orbital_ATK.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orbital Sciences\" default_off=\"failed ruleset test\" f=\"Orbital_Sciences.xml\"><securecookie host=\"^(?:www\\.)?orbital\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orchid Diva\" f=\"Orchid_Diva.xml\"><securecookie host=\"^\\.(?:www\\.)?orchiddiva\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ordbogen.com\" f=\"Ordbogen.com.xml\"><rule from=\"^http://(?:www\\.)?ordbogen\\.com/\" to=\"https://www.ordbogen.com/\"/></ruleset>", "<ruleset name=\"OrderBook.net\" f=\"OrderBook.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ordnance Survey.co.uk\" f=\"Ordnance_Survey.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oregon State University (mismatches)\" default_off=\"mismatch\" f=\"Oregon-State-University-mismatches.xml\"><rule from=\"^http://(?:www\\.)?campaignforosu\\.org/\" to=\"https://campaignforosu.org/\"/></ruleset>", "<ruleset name=\"Oregon State University (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oregon-State-University.xml\"><securecookie host=\"^\\.osuosl\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?oregonstate\\.edu/(favicon\\.ico$|u_central/images/)\" to=\"https://secure.oregonstate.edu/$1\"/><rule from=\"^http://(drupalweb\\.forestry|osulibrary|secure)\\.oregonstate\\.edu/\" to=\"https://$1.oregonstate.edu/\"/><rule from=\"^http://(?:www\\.)?osufoundation\\.org/\" to=\"https://osufoundation.org/\"/><rule from=\"^http://(www\\.)?osuosl\\.org/\" to=\"https://$1osuosl.org/\"/></ruleset>", "<ruleset name=\"Oregon Live.com (partial)\" f=\"Oregon_Live.com.xml\"><securecookie host=\"^member\\.oregonlive\\.com$\" name=\".+\"/><rule from=\"^http://member\\.oregonlive\\.com/\" to=\"https://member.oregonlive.com/\"/><rule from=\"^http://findnsave\\.oregonlive\\.com/(?=(?:join|login)(?:$|[?/])|static/)\" to=\"https://oregonlive.findnsave.com/\"/></ruleset>", "<ruleset name=\"Orez Praw.com\" platform=\"cacert\" f=\"Orez_Praw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OrgSync.com (partial)\" f=\"OrgSync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Organic Consumers.org\" f=\"Organic_Consumers.org.xml\"><rule from=\"^http://organicconsumers\\.org/\" to=\"https://www.organicconsumers.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Organization of American States\" f=\"Organization_of_American_States.xml\"><securecookie host=\"^www\\.(?:cidh\\.)?oas\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(cidh\\.)?oas\\.org/\" to=\"https://www.$1oas.org/\"/></ruleset>", "<ruleset name=\"Orgreen Optics.com\" f=\"Orgreen_Optics.com.xml\"><rule from=\"^http://(?:www\\.)?orgreenoptics\\.com/\" to=\"https://orgreenoptics.com/\"/></ruleset>", "<ruleset name=\"Origin.com (partial)\" default_off=\"Needs ruleset tests\" f=\"Origin.com.xml\"><exclusion pattern=\"^http://store\\.origin\\.com/(?!DRHM/Storefront/Site/)\"/><exclusion pattern=\"^http://www\\.origin\\.com/(?!favicon\\.ico)\"/><securecookie host=\"^sso\\.origin\\.com$\" name=\".*\"/><rule from=\"^http://origin\\.com/\" to=\"https://www.origin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orion\" f=\"Orion.xml\"><rule from=\"^http://(?:www\\.)?orionhub\\.org/\" to=\"https://orionhub.org/\"/></ruleset>", "<ruleset name=\"Orion Magazine.com\" f=\"Orion_Magazine.org.xml\"><rule from=\"^http://(www\\.)?orionmagazine\\.com/\" to=\"https://$1orionmagazine.com/\"/></ruleset>", "<ruleset name=\"Orion Systems Integrators\" f=\"Orion_Systems_Integrators.xml\"><securecookie host=\"^(?:time)?\\.orioninc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orkut (partial)\" f=\"Orkut.xml\"><securecookie host=\"^www\\.orkut\\.co(?:\\.in|m|m\\.br)$\" name=\".+\"/><rule from=\"^http://a\\.orkut\\.gmodules\\.com/\" to=\"https://a.orkut.gmodules.com/\"/><rule from=\"^http://((?:demo|img\\d|staging|www)\\.)?orkut\\.co(\\.in|m|m\\.br)/\" to=\"https://$1orkut.co$2/\"/></ruleset>", "<ruleset name=\"Orkz.net (partial)\" f=\"Orkz.net.xml\"><rule from=\"^http://webmail\\.orkz\\.net/.*\" to=\"https://mail.google.com/a/orkz.net\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oron (partial)\" default_off=\"failed ruleset test\" f=\"Oron.xml\"><rule from=\"^http://(www\\.)?oron\\.com/(favicon\\.ico$|images/|.+\\.(css|js($|\\?\\d?$))|\\?op=)\" to=\"https://secure.oron.com/$2\"/><rule from=\"^http://secure\\.oron\\.com/\" to=\"https://secure.oron.com/\"/></ruleset>", "<ruleset name=\"Ortolo.eu (false MCB)\" platform=\"cacert mixedcontent\" f=\"Ortolo.eu.xml\"><securecookie host=\"^tanguy\\.ortolo\\.eu$\" name=\".+\"/><rule from=\"^http://(tanguy|www)\\.ortolo\\.eu/\" to=\"https://$1.ortolo.eu/\"/></ruleset>", "<ruleset name=\"orxrdr.com\" f=\"Orxrdr.com.xml\"><rule from=\"^http://www\\.orxrdr\\.com/\" to=\"https://www.orxrdr.com/\"/></ruleset>", "<ruleset name=\"os-cillation.de (partial)\" default_off=\"missing certificate chain\" f=\"Os-cillation-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"os-cillation (partial)\" default_off=\"failed ruleset test\" f=\"Os-cillation.xml\"><rule from=\"^http://(?:www\\.)?schweissgut\\.net/\" to=\"https://schweissgut.net/\"/></ruleset>", "<ruleset name=\"osCommerce\" default_off=\"expired, mismatch, self-signed\" f=\"OsCommerce.xml\"><exclusion pattern=\"^http://forums\\.\"/><securecookie host=\"^(?:.*\\.)?oscommerce\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)oscommerce\\.com/\" to=\"https://www.oscommerce.com/\"/><rule from=\"^http://(addon|shop)s\\.oscommerce\\.com/\" to=\"https://$1.oscommerce.com/\"/></ruleset>", "<ruleset name=\"oschina (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oschina.xml\"><securecookie host=\"^\\.oschina\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osdimg.com\" f=\"Osdimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oseems.com\" f=\"Oseems.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OshKosh.com\" f=\"OshKosh.com.xml\"><securecookie host=\"^www\\.oshkosh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oskuro.net\" f=\"Oskuro.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OsmAnd.CZ\" f=\"OsmAnd.CZ.xml\"><securecookie host=\"^osmand\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?osmand\\.cz/\" to=\"https://osmand.cz/\"/></ruleset>", "<ruleset name=\"OsmAnd.net (partial)\" default_off=\"self-signed\" f=\"OsmAnd.net.xml\"><securecookie host=\"^jenkins\\.osmand\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Osmo (partial)\" f=\"Osmo.xml\"><securecookie host=\"^.*\\.?playosmo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Osmocom.org (mismatched)\" default_off=\"mismatched\" f=\"Osmocom.org-problematic.xml\"><securecookie host=\".+\\.osmocom\\.org$\" name=\".+\"/><rule from=\"^http://(openbsc|tetra)\\.osmocom\\.org/\" to=\"https://$1.osmocom.org/\"/></ruleset>", "<ruleset name=\"Osmocom.org (partial)\" platform=\"cacert\" f=\"Osmocom.org.xml\"><securecookie host=\"^(?:bb|gmr|sdr)\\.osmocom\\.org$\" name=\".+\"/><rule from=\"^http://(bb|gmr|lists|sdr|security|simtrace)\\.osmocom\\.org/\" to=\"https://$1.osmocom.org/\"/></ruleset>", "<ruleset name=\"Ostel.co\" f=\"Ostel.co.xml\"><securecookie host=\"^(?:www\\.)?ostel\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ostel\\.co/\" to=\"https://ostel.co/\"/></ruleset>", "<ruleset name=\"Otaku Mode.com (partial)\" f=\"Otaku_Mode.com.xml\"><exclusion pattern=\"^http://otakumode\\.com/+(?!css/|favicon\\.ico|images/|(?:login|signup)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otalk.im\" f=\"Otalk.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otavamedia (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Otavamedia.xml\"><securecookie host=\"^www\\.plazakauppa\\.fi$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(?:kuvalehdet|otavamedia)\\.fi/\" to=\"https://www.otavamedia.fi/\"/><rule from=\"^http://aulis\\.plaza\\.fi/\" to=\"https://aulis.plaza.fi/\"/><rule from=\"^http://(?:www\\.)plazakauppa\\.fi/\" to=\"https://www.plazakauppa.fi/\"/></ruleset>", "<ruleset name=\"OTE\" default_off=\"failed ruleset test\" f=\"Ote.xml\"><securecookie host=\"^(?:.*\\.)?otenet\\.gr$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?ote\\.gr$\" name=\".*\"/><rule from=\"^http://((adman|corpmail|ps|domainmanager|managedservices|tools|my)\\.)?otenet\\.gr/\" to=\"https://$1otenet.gr/\"/><rule from=\"^http://((www|11888)\\.)?ote\\.gr/\" to=\"https://$1ote.gr/\"/></ruleset>", "<ruleset name=\"Otpdirekt.sk\" default_off=\"failed ruleset test\" f=\"Otpdirekt.sk.xml\"><rule from=\"^http://(?:www\\.)?otpdirekt\\.sk/\" to=\"https://www.otpdirekt.sk/\"/></ruleset>", "<ruleset name=\"Otsuka-shokai.co.jp\" f=\"Otsuka-shokai.co.jp.xml\"><rule from=\"^http://(?:www\\.)?otsuka-shokai\\.co\\.jp/\" to=\"https://www.otsuka-shokai.co.jp/\"/><rule from=\"^http://(campaign|sdc)\\.otsuka-shokai\\.co\\.jp/\" to=\"https://$1.otsuka-shokai.co.jp/\"/></ruleset>", "<ruleset name=\"Otumm.com\" f=\"Otumm.com.xml\"><securecookie host=\"^otumm\\.com$\" name=\".+\"/><rule from=\"^http://www\\.otumm\\.com/\" to=\"https://otumm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otumm Store.se\" default_off=\"failed ruleset test\" f=\"Otumm_Store.se.xml\"><securecookie host=\"^\\.otummstore\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouaza.com\" f=\"Ouaza.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouï FM (partial)\" f=\"Oui-FM.xml\"><securecookie host=\"^www\\.ouifm\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ouifm\\.fr/\" to=\"https://www.ouifm.fr/\"/></ruleset>", "<ruleset name=\"OU Medicine\" f=\"Oumedicine.com.xml\"><securecookie host=\"^www\\.oumedicine\\.com$\" name=\".+\"/><rule from=\"^http://oumedicine\\.com/\" to=\"https://www.oumedicine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oumedicine.staywellsolutionsonline.com\" f=\"Oumedicine.staywellsolutionsonline.com.xml\"><rule from=\"^http://www\\.oumedicine\\.staywellsolutionsonline\\.com/\" to=\"https://oumedicine.staywellsolutionsonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Hometown\" default_off=\"failed ruleset test\" f=\"Our-Hometown.xml\"><securecookie host=\"^\\.our-hometown\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?our-hometown\\.com/\" to=\"https://www.our-hometown.com/\"/></ruleset>", "<ruleset name=\"OurCommonPlace.com\" f=\"OurCommonPlace.xml\"><securecookie host=\"^\\.ourcommonplace.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Tesco.com\" f=\"Our_Tesco.com.xml\"><rule from=\"^http://(?:www\\.)?ourtesco\\.com/\" to=\"https://www.ourtesco.com/\"/></ruleset>", "<ruleset name=\"ourlocality.org\" default_off=\"Certificate mismatch\" f=\"Ourlocality.org.xml\"><rule from=\"^http://(www\\.)?(support\\.)?ourlocality\\.org/\" to=\"https://$2ourlocality.org/\"/></ruleset>", "<ruleset name=\"ourneighborhoodmilf.com\" f=\"Ourneighborhoodmilf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Out-Law.com\" default_off=\"failed ruleset test\" f=\"Out-Law.com.xml\"><rule from=\"^http://(?:www\\.)?out-law\\.com/\" to=\"https://www.out-law.com/\"/><rule from=\"^http://www\\.pinsentmasons\\.com/(?=mediafiles/)\" to=\"https://www.out-law.com/\"/></ruleset>", "<ruleset name=\"Out of Control\" f=\"Out-of-Control.xml\"><securecookie host=\"^outofcontrol\\.ca$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?outofcontrol\\.ca/\" to=\"https://outofcontrol.ca/\"/></ruleset>", "<ruleset name=\"OutWit.com (partial)\" f=\"OutWit.com.xml\"><securecookie host=\"^\\.outwit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?outwit\\.com/\" to=\"https://www.outwit.com/\"/></ruleset>", "<ruleset name=\"Out Campaign.org\" default_off=\"mismatched\" f=\"Out_Campaign.org.xml\"><securecookie host=\"^outcampaign\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?outcampaign\\.org/\" to=\"https://outcampaign.org/\"/></ruleset>", "<ruleset name=\"Outbrain.com (partial)\" f=\"Outbrain.xml\"><exclusion pattern=\"^http://www\\.outbrain\\.com/+(?!assets/|favicon\\.ico|images/|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.outbrain\\.com$\" name=\"^ubvt$\"/><securecookie host=\"^\\w+\\.outbrain\\.com$\" name=\".+\"/><rule from=\"^http://(?:wp\\.)?outbrain\\.com/\" to=\"https://www.outbrain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outernet\" default_off=\"failed ruleset test\" f=\"Outernet.is.xml\"><securecookie host=\"^(?:.*\\.)?outernet\\.is$\" name=\".+\"/><rule from=\"^http://outernet\\.is/\" to=\"https://www.outernet.is/\"/><rule from=\"^http://([^/:@]+)?\\.outernet\\.is/\" to=\"https://$1.outernet.is/\"/></ruleset>", "<ruleset name=\"outflux.net\" f=\"Outflux.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outlook.com\" f=\"Outlook_Live.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outspark.com (partial)\" default_off=\"connection dropped\" f=\"Outspark.xml\"><securecookie host=\"^(?:.*\\.)?outspark\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouvaton\" f=\"Ouvaton.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Over-blog.com (partial)\" f=\"Over-blog.com.xml\"><securecookie host=\"^connect\\.over-blog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"over-yonder.net\" f=\"Over-yonder.net.xml\"><rule from=\"^http://www\\.over-yonder\\.net/\" to=\"https://www.over-yonder.net/\"/></ruleset>", "<ruleset name=\"OverClockers.co.uk (partial)\" f=\"OverClockers.xml\"><securecookie host=\".*\\.overclockers\\.co\\.uk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OverDrive.com (false MCB)\" platform=\"mixedcontent\" f=\"OverDrive.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OverDrive.com (partial)\" f=\"OverDrive.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ox-i\\.overdrive\\.com/\" to=\"https://ssl-i.cdn.openx.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Overcast\" f=\"OvercastFM.xml\"><rule from=\"^http://(?:www\\.)?overcast\\.fm/\" to=\"https://overcast.fm/\"/></ruleset>", "<ruleset name=\"overclock.net (mismatched)\" default_off=\"mismatched\" f=\"Overclock.net-problematic.xml\"><rule from=\"^http://(?:www\\.)?overclock\\.net/\" to=\"https://www.overclock.net/\"/></ruleset>", "<ruleset name=\"overclock.net (partial)\" f=\"Overclock.net.xml\"><rule from=\"^http://cdn\\.overclock\\.net/\" to=\"https://d1rktuf34l9h2g.cloudfront.net/\"/></ruleset>", "<ruleset name=\"overclockers.at\" f=\"Overclockers.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Overclockers.com (partial)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"Overclockers.com.xml\"><securecookie host=\"^\\.overclockers\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)ocforums\\.com/\" to=\"https://www.overclockers.com/forums/\"/><rule from=\"^http://(www\\.)?overclockers\\.com/\" to=\"https://$1overclockers.com/\"/></ruleset>", "<ruleset name=\"Overlake Hospital Medical Center\" platform=\"mixedcontent\" f=\"Overlake-Hospital.xml\"><securecookie host=\"^(?:.*\\.)?overlakehospital\\.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?overlakehospital\\.org/\" to=\"https://www.overlakehospital.org/\"/></ruleset>", "<ruleset name=\"Overleaf.com\" f=\"Overleaf.com.xml\"><exclusion pattern=\"^http://email\\.overleaf\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oversee.net (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Oversee-mismatches.xml\"><rule from=\"^http://(?:www\\.)?weightlossplans\\.net/\" to=\"https://weightlossplans.net/\"/></ruleset>", "<ruleset name=\"Oversee.net (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oversee.xml\"><securecookie host=\".*\\.aboutairportparking\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?domainfest\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?oversee\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aboutairportparking\\.com/\" to=\"https://www.aboutairportparking.com/\"/><rule from=\"^http://static\\.couponfinder\\.com/\" to=\"https://d2q7dxlbtbvkph.cloudfront.net/\"/><rule from=\"^http://(www\\.)?domainfest\\.com/\" to=\"https://$1domainfest.com/\"/><rule from=\"^http://(support\\.|www\\.)?oversee\\.net/\" to=\"https://$1oversee.net/\"/></ruleset>", "<ruleset name=\"Overstock.com (partial)\" f=\"Overstock.com.xml\"><securecookie host=\"^\\.newcars\\.overstock\\.com$\" name=\".+\"/><rule from=\"^http://ak(?:1|2|-s)\\.ostkcdn\\.com/\" to=\"https://ak-s.ostkcdn.com/\"/><rule from=\"^http://(?:www\\.)?overstock\\.com/(?=css/|(?:dlp|intlcheckout)(?:$|[?/])|favicon\\.ico|img/)\" to=\"https://www.overstock.com/\"/><rule from=\"^http://help\\.overstock\\.com/\" to=\"https://help.overstock.com/\"/><rule from=\"^http://(?:secure\\.)?newcars\\.overstock\\.com/\" to=\"https://secure.newcars.overstock.com/\"/></ruleset>", "<ruleset name=\"Overview Project.org\" f=\"Overview_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVH (self-signed)\" default_off=\"self-signed\" f=\"Ovh-mismatches.xml\"><rule from=\"^http://(ns\\d+|ssl4)\\.ovh\\.net/\" to=\"https://$1.ovh.net/\"/></ruleset>", "<ruleset name=\"OVH\" f=\"Ovh.xml\"><securecookie host=\"^(?:.*\\.)?ovh(?:-hosting)?\\.(?:co\\.uk|com|de|es|fi|ie|it|lt|net|nl|pl|pt|sn)$\" name=\".+\"/><rule from=\"^http://(?:imp|webmail)\\.ovh\\.net/\" to=\"https://ssl0.ovh.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ovi.com (partial)\" f=\"Ovi.com.xml\"><securecookie host=\"^\\.store\\.ovi\\.com$\" name=\".+\"/><rule from=\"^http://(p\\.d|publish|store|static\\.store)\\.ovi\\.com/\" to=\"https://$1.ovi.com/\"/></ruleset>", "<ruleset name=\"Ovid (partial)\" f=\"Ovid.xml\"><rule from=\"^http://(e-bea|gateway|ovidsp(?:\\.tx)?|shibboleth)\\.ovid\\.com/\" to=\"https://$1.ovid.com/\"/></ruleset>", "<ruleset name=\"Ow.ly (partial)\" f=\"Ow.ly.xml\"><rule from=\"^http://static\\.ow\\.ly/\" to=\"https://d2jhuj1whasmze.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Owen Services.com\" f=\"Owen_Services.com.xml\"><securecookie host=\"^\\.?owenservices\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purdue OWL\" f=\"Owl.English.Purdue.edu.xml\"><rule from=\"^http://(?:www\\.)?owl\\.english\\.purdue\\.edu/\" to=\"https://owl.english.purdue.edu/\"/></ruleset>", "<ruleset name=\"Owlfolio.org\" f=\"Owlfolio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Own-Mailbox.com\" f=\"Own-Mailbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ownCloud.com\" f=\"OwnCloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.owncloud\\.com/\" to=\"https://opendesktop.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ownCloud.org\" f=\"OwnCloud.xml\"><securecookie host=\"^\\.owncloud\\.org$\" name=\".+\"/><rule from=\"^http://docs\\.owncloud\\.org/+\" to=\"https://owncloud.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OwnCube\" f=\"OwnCube.xml\"><securecookie host=\"^(?:billing\\.|www\\.)?owncube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OwnedCore.com (mixed content)\" platform=\"mixedcontent\" f=\"OwnedCore.com.xml\"><securecookie host=\"^www\\.ownedcore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Owner.io\" f=\"Owner.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.owner\\.io/\" to=\"https://owner.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OwnerIQ.net (partial)\" f=\"OwnerIQ.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ox.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Ox.ac.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://medieval\\.history\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www.history.ox.ac.uk/research/centre/medieval-history.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfam.org.uk\" f=\"Oxfam.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfam Unwrapped\" default_off=\"failed ruleset test\" f=\"OxfamIrelandUnwrapped.xml\"><rule from=\"^http://(?:www\\.)?oxfamirelandunwrapped\\.com/\" to=\"https://www.oxfamirelandunwrapped.com/\"/><rule from=\"^http://netbel\\.oxfamireland\\.org/\" to=\"https://netbel.oxfamireland.org/\"/></ruleset>", "<ruleset name=\"Oxford Journals (partial)\" f=\"Oxford-Journals.xml\"><securecookie host=\"^\\w+\\.oxfordjournals\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?oxfordjournals\\.org/resource/image/\" to=\"https://secure.oxfordjournals.org/resource/image/\"/><rule from=\"^http://(access|secure|services)\\.oxfordjournals\\.org/\" to=\"https://$1.oxfordjournals.org/\"/></ruleset>", "<ruleset name=\"Oxford Dictionaries\" f=\"Oxford_Dictionaries.xml\"><rule from=\"^http://oxfordlearnersdictionaries\\.com/\" to=\"https://www.oxfordlearnersdictionaries.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OUP.com (partial)\" f=\"Oxford_University_Press.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oyunhizmetleri.com\" default_off=\"expired\" f=\"Oyunhizmetleri.com.xml\"><securecookie host=\"^www\\.oyunhizmetleri\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oyunhizmetleri\\.com/\" to=\"https://www.oyunhizmetleri.com/\"/></ruleset>", "<ruleset name=\"Oz-affiliate.com\" f=\"Oz-affiliate.com.xml\"><rule from=\"^http://www\\.oz-affiliate\\.com/\" to=\"https://oz-affiliate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzBargain\" f=\"OzBargain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (CAcert)\" platform=\"cacert\" f=\"OzLabs.org-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (partial)\" f=\"OzLabs.xml\"><exclusion pattern=\"^http://(?:ccontrol|jk|librtas|powerpc-utils|rusty|yaboot)\\.ozlabs\\.org/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.Travel\" default_off=\"failed ruleset test\" f=\"Ozon.Travel.xml\"><securecookie host=\"^www\\.ozon\\.travel$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.ru (partial)\" f=\"Ozon.ru.xml\"><securecookie host=\"^(?:www)?\\.ozon\\.ru$\" name=\".+\"/><rule from=\"^http://ozon\\.ru/\" to=\"https://www.ozon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P-tano.com\" f=\"P-tano.com.xml\"><rule from=\"^http://(?:www\\.)?p-tano\\.com/\" to=\"https://www.p-tano.com/\"/></ruleset>", "<ruleset name=\"P2P Foundation.net (partial)\" f=\"P2P_Foundation.net.xml\"><rule from=\"^http://blog\\.p2pfoundation\\.net/\" to=\"https://blog.p2pfoundation.net/\"/></ruleset>", "<ruleset name=\"P6R.com\" f=\"P6R.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PACTF.com\" f=\"PACTF.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PACW.org\" f=\"PACW.org.xml\"><rule from=\"^http://(?:www\\.)?pacw\\.org/\" to=\"https://www.pacw.org/\"/></ruleset>", "<ruleset name=\"PAETEC.com (partial)\" default_off=\"mismatched\" f=\"PAETEC.xml\"><rule from=\"^http://(?:www\\.)?paetec\\.com/\" to=\"https://www.paetec.com/\"/></ruleset>", "<ruleset name=\"PAL cdn.com\" f=\"PAL_cdn.com.xml\"><rule from=\"^http://(image|cs)s\\.palcdn\\.com/\" to=\"https://$1s.palcdn.com/\"/></ruleset>", "<ruleset name=\"PANGAEA (partial)\" f=\"PANGAEA.xml\"><rule from=\"^http://(?:www\\.)?secure\\.pangaea\\.de/\" to=\"https://secure.pangaea.de/\"/></ruleset>", "<ruleset name=\"PAPPP.net\" default_off=\"failed ruleset test\" f=\"PAPPP.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBA Galleries (mismatches)\" default_off=\"mismatch\" f=\"PBAGalleries.xml\"><rule from=\"^http://(?:www\\.)?pbagalleries\\.com/\" to=\"https://www.pbagalleries.com/\"/></ruleset>", "<ruleset name=\"PBHS (partial)\" f=\"PBHS.xml\"><securecookie host=\"^www\\.pbhs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Broadcasting Service (partial)\" platform=\"mixedcontent\" f=\"PBS.xml\"><securecookie host=\"^www\\.shoppbs\\.org$\" name=\".+\"/><rule from=\"^http://newshour-tc\\.pbs\\.org/\" to=\"https://d3i6fh83elv35t.cloudfront.net/\"/><rule from=\"^http://www-tc\\.pbs\\.org/s3/pbs\\.(?=merlin\\.cdn\\.prod/|pbsorg-prod\\.mediafiles/)\" to=\"https://s3.amazonaws.com/pbs.\"/><rule from=\"^http://gchrome\\.cdn\\.pbs\\.org/\" to=\"https://d2nu96cf2r9spk.cloudfront.net/\"/><rule from=\"^http://(www\\.)?shoppbs\\.org/\" to=\"https://$1shoppbs.org/\"/></ruleset>", "<ruleset name=\"PB Web Dev.com\" f=\"PB_Web_Dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBase (partial)\" f=\"PBase.xml\"><rule from=\"^http://(?:secure2\\.|www\\.)?pbase\\.com/\" to=\"https://secure2.pbase.com/\"/><rule from=\"^http://ap1\\.pbase\\.com/\" to=\"https://d1lvd91299t0s2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PBwiki (partial)\" f=\"PBwiki.xml\"><rule from=\"^http://(files|my|(pb-api)?docs|secure|vs1|www)\\.pbworks\\.com/\" to=\"https://$1.pbworks.com/\"/><rule from=\"^http://usermanual\\.pbworks\\.com/([fw]/|theme_image\\.php)\" to=\"https://usermanual.pbworks.com/$1\"/></ruleset>", "<ruleset name=\"PBworks (partial)\" f=\"PBworks.xml\"><securecookie host=\"^(?:.*\\.)?pbworks\\.com$\" name=\".*\"/><rule from=\"^http://(files|vs1)\\.pbworks\\.com/\" to=\"https://$1.pbworks.com/\"/><rule from=\"^http://([\\w\\-]+)\\.pbworks\\.com/f/(\\d+)/\" to=\"https://$1.pbworks.com/f/$2/\"/></ruleset>", "<ruleset name=\"PC BSD.org (partial)\" f=\"PC-BSD.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC-Ostschweiz.ch\" f=\"PC-Ostschweiz.ch.xml\"><securecookie host=\"^www\\.pc-ostschweiz\\.ch$\" name=\".+\"/><rule from=\"^http://pc-ostschweiz\\.ch/\" to=\"https://www.pc-ostschweiz.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC Users Group (ACT) (partial)\" platform=\"cacert mixedcontent\" f=\"PC-Users-Group-ACT.xml\"><securecookie host=\"^members\\.tip\\.net\\.au$\" name=\".*\"/><rule from=\"^http://(www\\.)?pcug\\.org\\.au/\" to=\"https://$1pcug.org.au/\"/><rule from=\"^http://members\\.tip\\.net\\.au/\" to=\"https://members.tip.net.au/\"/></ruleset>", "<ruleset name=\"PCC-CIC.org.uk\" f=\"PCC-CIC.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCCU.edu.tw (partial)\" f=\"PCCU.edu.tw.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pccu\\.edu\\.tw/\" to=\"https://www.pccu.edu.tw/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC Case Gear\" f=\"PCCaseGear.xml\"><rule from=\"^http://(?:www\\.)?pccasegear\\.com\\.au/\" to=\"https://www.pccasegear.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCEL\" f=\"PCEL.xml\"><securecookie host=\"^(?:w*\\.)?pcel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCI ID Repository\" f=\"PCI-ID-Repository.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCI Security Standards.org\" f=\"PCI-Security-Standards-Council.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCI Compliance Guide.org\" f=\"PCI_Compliance_Guide.org.xml\"><securecookie host=\"^(?:www)?\\.pcicomplianceguide\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCLOB.gov\" f=\"PCLOB.gov.xml\"><securecookie host=\"^\\.(?:www\\.)?pclob\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCP.com\" f=\"PCP.com.xml\"><rule from=\"^http://pcp\\.com/\" to=\"https://www.pcp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCPro.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"PCPro.co.uk.xml\"><rule from=\"^http://(?:photo|sprite)s\\.pcpro\\.co\\.uk/\" to=\"https://desawk404a9v3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PCRE.org\" default_off=\"broken\" f=\"PCRE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCS.com (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"PCS.com.xml\"><securecookie host=\"^(?:partner-support|www)\\.pcs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pcs\\.com/\" to=\"https://www.pcs.com/\"/><rule from=\"^http://partner-support\\.pcs\\.com/\" to=\"https://partner-support.pcs.com/\"/></ruleset>", "<ruleset name=\"PCSpublink.com (partial)\" f=\"PCSpublink.com.xml\"><securecookie host=\"^subscribe\\.pcspublink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC World (broken)\" default_off=\"Doesn't support HTTPS anymore\" f=\"PCWorld.xml\"><rule from=\"^http://(www\\.)?pcworld\\.com/\" to=\"https://$1pcworld.com/\"/><rule from=\"^http://jobs\\.pcworld\\.com/c/\" to=\"https://jobs.pcworld.com/c/\"/></ruleset>", "<ruleset name=\"PC Booster\" f=\"PC_Booster.xml\"><securecookie host=\"^\\.?pcbooster\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pcbooster\\.com/\" to=\"https://$1pcbooster.com/\"/><rule from=\"^http://files\\.pcbooster\\.com/\" to=\"https://d1xmanv2p9uj30.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PDDOC.com\" default_off=\"mismatch\" f=\"PDDOC.com.xml\"><rule from=\"^http://(?:www\\.)?pddoc\\.com/\" to=\"https://pddoc.com/\"/></ruleset>", "<ruleset name=\"PDF.yt\" f=\"PDF.yt.xml\"><securecookie host=\"^pdf\\.yt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDF Labs.com\" f=\"PDF_Labs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDF to Word.com\" f=\"PDF_to_Word.com.xml\"><securecookie host=\"^www\\.pdftoword\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pdftoword\\.com/\" to=\"https://www.pdftoword.com/\"/></ruleset>", "<ruleset name=\"PEN.org\" f=\"PEN.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PERFORM Group (partial)\" default_off=\"mismatch\" f=\"PERFORM-Group.xml\"><rule from=\"^http://(?:origin|www)\\.eplayer\\.performgroup\\.com/\" to=\"https://www.eplayer.performgroup.com/\"/></ruleset>", "<ruleset name=\"PET-Portal.eu (partial)\" default_off=\"mismatched\" f=\"PET-Portal.eu.xml\"><securecookie host=\"^pet-portal\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pet-portal\\.eu/\" to=\"https://pet-portal.eu/\"/></ruleset>", "<ruleset name=\"PETA Kills Animals.com\" f=\"PETA_Kills_Animals.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?petakillsanimals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PET Symposium.org\" f=\"PET_Symposium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PFLAG-Parents, Families, & Friends of Lesbians and Gays (partial)\" f=\"PFLAG.xml\"><rule from=\"^http://((?:community|www)\\.)?pflag\\.org/\" to=\"https://$1pflag.org/\"/></ruleset>", "<ruleset name=\"PGCon.org (partial)\" f=\"PGCon.xml\"><securecookie host=\"^(?:www\\.)?pgcon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PGP.com\" f=\"PGP.xml\"><rule from=\"^http://pgp\\.com/\" to=\"https://www.pgp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PG CDN.com (partial)\" f=\"PG_CDN.com.xml\"><rule from=\"^http://cfsi\\.pgcdn\\.com/\" to=\"https://d2iz0h6pqiasve.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PGi (problematic)\" default_off=\"expired, mismatched\" f=\"PGi-problematic.xml\"><securecookie host=\"^experts\\.pgi\\.com$\" name=\".+\"/><rule from=\"^http://(blog|experts|admin\\.support)\\.pgi\\.com/\" to=\"https://$1.pgi.com/\"/></ruleset>", "<ruleset name=\"PGi (partial)\" f=\"PGi.xml\"><securecookie host=\"^webmail\\.pgi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pgi\\.com/\" to=\"https://www.pgi.com/\"/><rule from=\"^http://(legacy|webmail)\\.pgi\\.com/\" to=\"https://$1.pgi.com/\"/></ruleset>", "<ruleset name=\"PHP-Fusion.co.uk (partial)\" f=\"PHP-Fusion.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHP.net (partial)\" f=\"PHP.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHPNET.org (partial)\" f=\"PHPNET.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHP magazin (partial)\" f=\"PHP_magazin.xml\"><rule from=\"^http://(www\\.)?phpmagazin\\.de/((?:cart|user)(?:$|\\?|/)|modules/|sites/)\" to=\"https://$1phpmagazin.de/$2\"/></ruleset>", "<ruleset name=\"PHPartners.org\" f=\"PHPartners.org.xml\"><rule from=\"^http://www\\.phpartners\\.org/\" to=\"https://phpartners.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PH Cheats\" default_off=\"failed ruleset test\" f=\"PH_Cheats.xml\"><securecookie host=\"^(?:w*\\.)?phcheats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PICMET.org\" f=\"PICMET.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PIERS (partial)\" f=\"PIERS.xml\"><securecookie host=\"^directories\\.piers\\.com$\" name=\".*\"/><rule from=\"^http://directories\\.piers\\.com/Portals/\" to=\"https://directories.piers.com/Portals/\"/></ruleset>", "<ruleset name=\"PIPNI s.r.o.\" f=\"PIPNI.cz.xml\"><securecookie host=\"^pipni\\.cz$\" name=\".+\"/><securecookie host=\"^\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^webftp\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><securecookie host=\"^pgsql\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^fbsql\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^manual\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><securecookie host=\"^support\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PIXinsight.com.tw (partial)\" f=\"PIXinsight.com.tw.xml\"><securecookie host=\"^\\.pixinsight\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://www\\.pixinsight\\.com\\.tw/\" to=\"https://www.pixinsight.com.tw/\"/></ruleset>", "<ruleset name=\"PI CERT.it\" f=\"PI_CERT.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PJM.com (partial)\" f=\"PJM.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?pjm\\.com/+(?!assets/|(?:[\\w/-]+/)?~/media/|(?:Script|Web)Resource\\.axd)\"/><securecookie host=\"^esuite.pjm.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PJRC.com\" f=\"PJRC.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PJTV.com\" f=\"PJTV.com.xml\"><securecookie host=\"^(?:www)?\\.pjtv\\.com$\" name=\".+\"/><rule from=\"^http://pjtv\\.com/([^?]*)(?:\\?.*)?$\" to=\"https://www.pjtv.com/$1\"/><rule from=\"^http://(?:cdn[1-3]|www)\\.pjtv\\.com/\" to=\"https://www.pjtv.com/\"/></ruleset>", "<ruleset name=\"PJ Media\" f=\"PJ_Media.xml\"><securecookie host=\"^\\.?pjmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?pjmedia\\.com/\" to=\"https://pjmedia.com/\"/></ruleset>", "<ruleset name=\"PKC Security.com\" f=\"PKC_Security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PKWARE.com (partial)\" default_off=\"failed ruleset test\" f=\"PKWARE.com.xml\"><securecookie host=\"^(?:www)?\\.pkware\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pkware\\.com/\" to=\"https://$1pkware.com/\"/><rule from=\"^http://comm\\.pkware\\.com/(cs|image|j|r)s/\" to=\"https://na-k.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"PL Casual Dating (partial)\" default_off=\"self-signed\" f=\"PL-Casual-Dating.xml\"><securecookie host=\"^(?:.*\\.)?fckme\\.org$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?pullingladies\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fckme\\.org/\" to=\"https://fckme.org/\"/><rule from=\"^http://(?:www\\.)?pullingladies\\.com/\" to=\"https://pullingladies.com/\"/></ruleset>", "<ruleset name=\"PLD-Linux.org (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"PLD-Linux.org-problematic.xml\"><rule from=\"^http://(src\\.ac|cri|ep09|docs|lists)\\.pld-linux\\.org/\" to=\"https://$1.pld-linux.org/\"/></ruleset>", "<ruleset name=\"PLD-Linux.org (partial)\" f=\"PLD-Linux.org.xml\"><securecookie host=\"^www\\.pld-linux\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pld-linux\\.org/\" to=\"https://www.pld-linux.org/\"/><rule from=\"^http://(cvs|git|svn)\\.pld-linux\\.org/\" to=\"https://$1.pld-linux.org/\"/><rule from=\"^http://docs\\.pld-linux\\.org/\" to=\"https://www.pld-linux.org/Docs/man\"/></ruleset>", "<ruleset name=\"PLE.com.au\" f=\"PLE.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PLYmedia.com (partial)\" f=\"PLYmedia.com.xml\"><rule from=\"^http://static\\.plymedia\\.com/\" to=\"https://d13y8ya6dr17ji.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PLoS.org (false MCB)\" platform=\"mixedcontent\" f=\"PLoS.org-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?plos\\.org$\" name=\".*\"/><rule from=\"^http://((?:blogs|currents|www)\\.)?plos\\.org/\" to=\"https://$1plos.org/\"/></ruleset>", "<ruleset name=\"PMC (partial)\" default_off=\"Akamai certificate\" f=\"PMC.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([\\w\\-]+)\\.vimg\\.net/\" to=\"https://$1.vimg.net/\"/></ruleset>", "<ruleset name=\"PNAS First Look (partial)\" default_off=\"failed ruleset test\" f=\"PNAS_First_Look.xml\"><rule from=\"^http://(?:firstlook\\.pnas|(?:www\\.)?pnasfirstlook)\\.org/wp-(admin|content)/\" to=\"https://secure.bluehost.com/~pnasfirs/wp-$1/\"/></ruleset>", "<ruleset name=\"PNC\" f=\"PNC.xml\"><rule from=\"^http://pnc\\.com/\" to=\"https://www.pnc.com/\"/><rule from=\"^http://(ra|www|www\\.ilink|www\\.recognition)\\.pnc\\.com/\" to=\"https://$1.pnc.com/\"/></ruleset>", "<ruleset name=\"PNP4Nagios.org\" f=\"PNP4Nagios.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POLi Payments.com\" f=\"POLi_Payments.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POODLE.io\" f=\"POODLE.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POODLE Test.com\" f=\"POODLE_Test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POP (partial)\" default_off=\"failed ruleset test\" f=\"POP.xml\"><rule from=\"^http://pop\\.com\\.br/\" to=\"https://pop.com.br/\"/><rule from=\"^http://www\\.pop\\.com\\.br/_(css|fonts|imagens|swf)/\" to=\"https://www.pop.com.br/_$1/\"/></ruleset>", "<ruleset name=\"PORTAL Masq.com\" f=\"PORTAL_Masq.com.xml\"><securecookie host=\"^\\.portalmasq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POS Portal.com (partial)\" f=\"POS_Portal.com.xml\"><securecookie host=\"^\\.buy\\.posportal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?posportal\\.com/(cam|mmc|omc)(?=$|[?/])\" to=\"https://www.posportal.com/$1\"/><rule from=\"^http://buy\\.posportal\\.com/\" to=\"https://buy.posportal.com/\"/></ruleset>", "<ruleset name=\"PPCoin (partial)\" f=\"PPCoin.xml\"><exclusion pattern=\"^http://(?:www\\.)?ppcoin\\.org/(?!static/)\"/><rule from=\"^http://(?:www\\.)?ppcoin\\.org/\" to=\"https://electric-day-4087.herokuapp.com/\"/></ruleset>", "<ruleset name=\"PPL CZ s.r.o.\" f=\"PPL.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PPS\" f=\"PPS.xml\"><exclusion pattern=\"^http://projects\\.partipirate\\.ch/\"/><exclusion pattern=\"^http://projects\\.pirateparty\\.ch/\"/><exclusion pattern=\"^http://projects\\.partitopirata\\.ch/\"/><exclusion pattern=\"^http://info\\.partipirate\\.ch/\"/><exclusion pattern=\"^http://info\\.partitopirata\\.ch/\"/><exclusion pattern=\"^http://info\\.pirateparty\\.ch/\"/><exclusion pattern=\"^http://stadt\\.zh\\.piratenpartei\\.ch/\"/><rule from=\"^http://([^/:@]*)\\.piratenpartei\\.ch/\" to=\"https://$1.piratenpartei.ch/\"/><rule from=\"^http://piratenpartei\\.ch/\" to=\"https://piratenpartei.ch/\"/><rule from=\"^http://([^/:@]*)\\.pirateparty\\.ch/\" to=\"https://$1.pirateparty.ch/\"/><rule from=\"^http://pirateparty\\.ch/\" to=\"https://pirateparty.ch/\"/><rule from=\"^http://([^/:@]*)\\.partipirate\\.ch/\" to=\"https://$1.partipirate.ch/\"/><rule from=\"^http://partipirate\\.ch/\" to=\"https://partipirate.ch/\"/><rule from=\"^http://([^/:@]*)\\.partitopirata\\.ch/\" to=\"https://$1.partitopirata.ch/\"/><rule from=\"^http://partitopirata\\.ch/\" to=\"https://partitopirata.ch/\"/><rule from=\"^http://([^/:@]*)\\.piraten-partei\\.ch/\" to=\"https://$1.piratenpartei.ch/\"/><rule from=\"^http://piraten-partei\\.ch/\" to=\"https://piratenpartei.ch/\"/><rule from=\"^http://([^/:@]*)\\.parti-pirate\\.ch/\" to=\"https://$1.partipirate.ch/\"/><rule from=\"^http://parti-pirate\\.ch/\" to=\"https://partipirate.ch/\"/><rule from=\"^http://([^/:@]*)\\.partito-pirata\\.ch/\" to=\"https://$1.partitopirata.ch/\"/><rule from=\"^http://partito-pirata\\.ch/\" to=\"https://partitopirata.ch/\"/><rule from=\"^http://([^/:@]*)\\.pirate-party\\.ch/\" to=\"https://$1.pirateparty.ch/\"/><rule from=\"^http://pirate-party\\.ch/\" to=\"https://pirateparty.ch/\"/><rule from=\"^http://(?:www\\.)?piraten-aargau\\.ch/\" to=\"https://www.piraten-aargau.ch/\"/><rule from=\"^http://(?:www\\.)?piraten-basel\\.ch/\" to=\"https://piraten-basel.ch/\"/><rule from=\"^http://winterthur\\.zh\\.piratenpartei\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://winterthur\\.zh\\.partipirate\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://winterthur\\.zh\\.partitopirata\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://winterthur\\.zh\\.pirateparty\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/></ruleset>", "<ruleset name=\"PQ Archiver.com\" f=\"PQ_Archiver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PR Newswire (partial)\" f=\"PR-Newswire.xml\"><securecookie host=\"^p\\w+\\.prnewswire\\.com$\" name=\".*\"/><rule from=\"^http://filecache\\.drivetheweb\\.com/\" to=\"https://s3.amazonaws.com/filecache.drivetheweb.com/\"/><rule from=\"^http://content\\.prnewswire\\.com/designimages/l(ine-horz|ogo-prn)-01_PRN\\.gif\" to=\"https://portal.prnewswire.com/images/l$1-01.gif\"/><rule from=\"^http://p(hotos|ortal)\\.prnewswire\\.com/\" to=\"https://p$1.prnewswire.com/\"/></ruleset>", "<ruleset name=\"PRISM Break.org\" f=\"PRISM_Break.org.xml\"><securecookie host=\"^(?:www\\.)?prism-break\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PRO ISP.no\" f=\"PRO_ISP.no.xml\"><securecookie host=\"^\\.?www\\.proisp\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prq.se\" default_off=\"expired\" f=\"PRQ.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PRV.se\" platform=\"mixedcontent\" f=\"PRV.se.xml\"><rule from=\"^http://www\\.prv\\.se/\" to=\"https://www.prv.se/\"/><rule from=\"^http://prv\\.se/\" to=\"https://www.prv.se/\"/></ruleset>", "<ruleset name=\"PRWeb (partial)\" f=\"PRWeb.xml\"><rule from=\"^http://app\\.prweb\\.com/\" to=\"https://app.prweb.com/\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/common/(carousel-(?:next|prev)\\.png|logo\\.gif|rss\\.gif)\" to=\"https://app.prweb.com/prweb/images/$1\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/awards/(best-search|codie|upshot-50)\\.gif\" to=\"https://app.prweb.com/images/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bg/(counter-(?:left|right)|header-main|image-frame-big|main-content|section-bottom|shadow-lighter|usernav-on)\\.gif\" to=\"https://app.prweb.com/prweb/images/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bg/(create-account\\.jpg|(?:dotted-divider|footer-divided|mainnav|navigation|usernav)\\.gif)\" to=\"https://app.prweb.com/prweb/images/bg/$1\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/common/us-flag\\.gif\" to=\"https://app.prweb.com/prweb/images/bg/us-flag.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bullets/breadcrumb-arrow\\.gif\" to=\"https://app.prweb.com/prweb/images/bullets/breadcrumb-arrow.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/common/((?:facebook|linkedin|twitter)-icon\\|medallion|search-go-smaller|vocus-logo)\\.gif\" to=\"https://app.prweb.com/prweb/images/common/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/headers/(call|here-to-help)\\.gif\" to=\"https://app.prweb.com/prweb/images/headers/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bullets/more\\.gif\" to=\"https://app.prweb.com/prweb/images/more.gif\"/></ruleset>", "<ruleset name=\"PRX (partial)\" f=\"PRX.xml\"><securecookie host=\"^\\.prx\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?prx\\.org/\" to=\"https://$1prx.org/\"/><rule from=\"^http://assets1\\.prx\\.org/\" to=\"https://d11pcyef3meeu9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PR SA.pl (partial)\" f=\"PR_SA.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PRstatics.com\" f=\"PRstatics.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PS-Webhosting Webmail\" f=\"PS-Webhosting-Webmail.xml\"><securecookie host=\"^webmail\\.planet-school\\.de$\" name=\".*\"/><rule from=\"^http://webmail\\.planet-school\\.de/\" to=\"https://webmail.planet-school.de/\"/></ruleset>", "<ruleset name=\"PS3Crunch\" default_off=\"expired, mismatched\" f=\"PS3Crunch.xml\"><securecookie host=\"^ps3crunch\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ps3crunch\\.net/\" to=\"https://ps3crunch.net/\"/></ruleset>", "<ruleset name=\"PSA Rips.com\" f=\"PSA_Rips.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSC.edu\" f=\"PSC.edu.xml\"><securecookie host=\"^(?:.+\\.)?psc\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSSL.com\" f=\"PSSL.com.xml\"><securecookie host=\".+\\.pssl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pssl\\.com/\" to=\"https://www.pssl.com/\"/><rule from=\"^http://espanol\\.pssl\\.com/\" to=\"https://espanol.pssl.com/\"/></ruleset>", "<ruleset name=\"PSX Extreme (partial)\" f=\"PSX-Extreme.xml\"><rule from=\"^http://images\\.psxextreme\\.com/\" to=\"https://dhtxsuc4vsorr.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PSZÁF\" f=\"PSZAF.xml\"><rule from=\"^http://([^/:@]*)\\.pszaf\\.hu/\" to=\"https://$1.pszaf.hu/\"/></ruleset>", "<ruleset name=\"Pécsi Tudományegyetem\" default_off=\"failed ruleset test\" f=\"PTE.xml\"><rule from=\"^http://www\\.pte\\.hu/\" to=\"https://www.pte.hu/\"/></ruleset>", "<ruleset name=\"PTT.br\" default_off=\"failed ruleset test\" f=\"PTT.br.xml\"><securecookie host=\"^\\.ptt\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PULP\" default_off=\"connection refused\" f=\"PULP.xml\"><securecookie host=\"^ssl\\.pulpcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P Kimber.net\" default_off=\"failed ruleset test\" f=\"P_Kimber.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pabo (partial)\" f=\"Pabo.xml\"><rule from=\"^http://(www\\.)?pabo\\.nl/(/?assets_bu-hard/|data/|product/images/|selfhelp/(?:login|password_recover/))\" to=\"https://$1pabo.nl/$2\"/></ruleset>", "<ruleset name=\"PacBSD.org\" f=\"PacBSD.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PacSec.jp\" default_off=\"failed ruleset test\" f=\"PacSec.jp.xml\"><rule from=\"^http://(?:www\\.)?pacsec\\.jp/\" to=\"https://pacsec.jp/\"/></ruleset>", "<ruleset name=\"Pace.com (partial)\" f=\"Pace.com.xml\"><rule from=\"^http://(?:www\\.)?pace\\.com/(?=css/|Global/Images/|images/|(?:Script|Web)Resource\\.axd)\" to=\"https://www.pace.com/\"/></ruleset>", "<ruleset name=\"Pace2Race (partial)\" f=\"Pace2Race.xml\"><rule from=\"^http://(www\\.)?pace2race\\.com/(wp-content/|wp-includes/|online-store(?:$|\\?|/))\" to=\"https://$1pace2race.com/$2\"/></ruleset>", "<ruleset name=\"Pace Bus.com (partial)\" default_off=\"failed ruleset test\" f=\"Pace_Bus.com.xml\"><securecookie host=\"^www\\.pacebus\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pacebus\\.com/\" to=\"https://www.pacebus.com/\"/></ruleset>", "<ruleset name=\"Pachube.com\" f=\"Pachube.com.xml\"><rule from=\"^http://api\\.pachube\\.com/\" to=\"https://api.pachube.com/\"/></ruleset>", "<ruleset name=\"Package Control.io\" f=\"Package_Control.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Package Lab.com\" f=\"Package_Lab.com.xml\"><securecookie host=\"^www\\.packagelab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packer.io\" f=\"Packer.io.xml\"><securecookie host=\"^\\.packer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packet.net\" f=\"Packet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packet Storm Security.com\" f=\"Packet_Storm_Security.com.xml\"><rule from=\"^http://www\\.packetstatic\\.com/\" to=\"https://packetstormsecurity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packetwerk.com\" default_off=\"failed ruleset test\" f=\"Packetwerk.com.xml\"><securecookie host=\"^packetwerk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?packetwerk\\.com/\" to=\"https://packetwerk.com/\"/></ruleset>", "<ruleset name=\"Packt Publishing (problematic)\" default_off=\"mismatched\" f=\"Packt_Publishing-problematic.xml\"><rule from=\"^http://link\\.packtpub\\.com/\" to=\"https://link.packtpub.com/\"/></ruleset>", "<ruleset name=\"Packt Publishing (partial)\" f=\"Packt_Publishing.xml\"><securecookie host=\".*\\.packtpub\\.com$\" name=\".+\"/><rule from=\"^http://((?:careers|packtlib|salesdb|www)\\.)?packtpub\\.com/\" to=\"https://$1packtpub.com/\"/></ruleset>", "<ruleset name=\"Pacnet (partial)\" f=\"Pacnet.xml\"><securecookie host=\"^wm4\\.pacific\\.net\\.au$\" name=\".+\"/><rule from=\"^http://wm4\\.pacific\\.net\\.au/\" to=\"https://wm4.pacific.net.au/\"/></ruleset>", "<ruleset name=\"PadLister.com (partial)\" f=\"PadLister.com.xml\"><exclusion pattern=\"^http://www\\.padlister\\.com/+(?!assets/|images/|users/login(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PadMapper.com (partial)\" f=\"PadMapper.xml\"><exclusion pattern=\"^http://www\\.padmapper\\.com/+(?!favicon\\.ico|images/|pad(?:$|[?/])|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paddle.com\" f=\"Paddle.com.xml\"><securecookie host=\"^(?:www)?\\.paddle(?:api)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Padlet.com (partial)\" f=\"Padlet.com.xml\"><securecookie host=\"^\\.padlet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"padsdel.com\" f=\"Padsdel.com.xml\"><securecookie host=\"^go\\.padsdel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"padstm.com\" f=\"Padstm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PagPop\" default_off=\"failed ruleset test\" f=\"PagPop.xml\"><securecookie host=\"^(?:.*\\.)?(?:pagpop|vitalcred)\\.com\\.br$\" name=\".+\"/><rule from=\"^http://(www\\.)?(pagpop|vitalcred)\\.com\\.br/\" to=\"https://$1$2.com.br/\"/></ruleset>", "<ruleset name=\"PageFair.com\" f=\"PageFair.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PageKite.net\" f=\"PageKite.xml\"><securecookie host=\"^pagekite\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pagely (partial)\" f=\"Pagely.xml\"><rule from=\"^http://(www\\.)?page\\.ly/(favicon\\.ico|public/|signup/|wp-content/)\" to=\"https://$1page.ly/$2\"/><rule from=\"^http://pagely\\.presscdn\\.com/wp-content/\" to=\"https://page.ly/wp-content/\"/></ruleset>", "<ruleset name=\"PagerDuty.com (partial)\" f=\"PagerDuty.com.xml\"><securecookie host=\"^(?:www)?\\.pagerduty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pages05.net\" default_off=\"failed ruleset test\" f=\"Pages05.net.xml\"><rule from=\"^http://www\\.sc\\.pages05\\.net/\" to=\"https://www.sc.pages05.net/\"/></ruleset>", "<ruleset name=\"Página Zero\" default_off=\"failed ruleset test\" f=\"Pagina_Zero.xml\"><securecookie host=\"^(?:w*\\.)?paginazero\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pagoda Box\" f=\"Pagoda_Box.xml\"><securecookie host=\"^(?:dashboard\\.)?pagodabox\\.com$\" name=\".+\"/><rule from=\"^http://((?:assistly-assets|blog|dashboard|www)\\.)?pagodabox\\.com/\" to=\"https://$1pagodabox.com/\"/></ruleset>", "<ruleset name=\"pair Networks (partial)\" f=\"Pair-Networks.xml\"><exclusion pattern=\"http://(?:cpan|whois)\\.pairnic\\.\"/><securecookie host=\"^(?:.*\\.)?pairnic\\.com$\" name=\".*\"/><rule from=\"^https://(?:www\\.)?eliminatejunkemail\\.com/\" to=\"https://www.pairnic.com/\"/><rule from=\"^http://(www\\.)?pair\\.com/(assets|static)/\" to=\"https://$1pair.com/$2/\"/><rule from=\"^http://(my|promote|static|(?:(?:[as]m|my|rc|sm)\\.)?webmail)\\.pair\\.com/\" to=\"https://$1.pair.com/\"/><rule from=\"^http://(www\\.)?pairlite\\.com/(images/|signup/|styles01\\.css)\" to=\"https://$1pairlite.com/$2\"/><rule from=\"^http://(my|webmail)\\.pairlite\\.com/\" to=\"https://$1.pairlite.com/\"/><rule from=\"^http://(www\\.)?pairnic\\.com/\" to=\"https://$1pairnic.com/\"/></ruleset>", "<ruleset name=\"Paket.de\" f=\"Paket_de.xml\"><rule from=\"^http://(?:www\\.)?paket\\.de/\" to=\"https://www.paket.de/\"/></ruleset>", "<ruleset name=\"PalSolidarity.org\" platform=\"mixedcontent\" f=\"PalSolidarity.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palantir.com\" f=\"Palantir.com.xml\"><rule from=\"^http://www\\.palantir\\.com/\" to=\"https://www.palantir.com/\"/></ruleset>", "<ruleset name=\"Palbin.com\" f=\"Palbin.com.xml\"><securecookie host=\"^(?:www)?\\.palbin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?palbin\\.com/\" to=\"https://www.palbin.com/\"/><rule from=\"^http://cdn\\.palbin\\.com/\" to=\"https://cdn.palbin.com/\"/></ruleset>", "<ruleset name=\"Pale Moon.org (partial)\" f=\"Pale_Moon.org.xml\"><securecookie host=\"^\\.palemoon\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:addons|\\.forum)\\.palemoon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"palfrader.org\" f=\"Palfrader.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palgrave.com\" f=\"Palgrave.com.xml\"><securecookie host=\"^www\\.palgrave\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?palgrave\\.com/\" to=\"https://www.palgrave.com/\"/></ruleset>", "<ruleset name=\"Palm.com (partial)\" default_off=\"failed ruleset test\" f=\"Palm.com.xml\"><securecookie host=\"^developer\\.palm\\.com$\" name=\".+\"/><rule from=\"^http://developer\\.palm\\.com/\" to=\"https://developer.palm.com/\"/></ruleset>", "<ruleset name=\"Palm Coast Data (problematic)\" default_off=\"self-signed\" f=\"Palm_Coast_Data-problematic.xml\"><securecookie host=\"^\\.palmcoastdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palm Coast Data (partial)\" f=\"Palm_Coast_Data.xml\"><securecookie host=\"^\\.palmcoastd\\.com$\" name=\"^:xCOOKIEx:$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palmetto.com\" default_off=\"failed ruleset test\" f=\"Palmetto.com.xml\"><securecookie host=\"^www\\.palmetto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palms Casino Resort (partial)\" default_off=\"failed ruleset test\" f=\"Palms_Casino_Resort.xml\"><exclusion pattern=\"^http://(?:www\\.)?palms\\.com/(?!$|\\?|casino-resort\\.html|content/|etc/|libs/)\"/><rule from=\"^http://(?:res2\\.|www\\.)?palms\\.com/\" to=\"https://res2.palms.com/\"/></ruleset>", "<ruleset name=\"Palo Alto Networks.com (partial)\" f=\"Palo_Alto_Networks.com.xml\"><securecookie host=\"^urlfiltering\\.paloaltonetworks\\.com$\" name=\"^ASP\\.NET_SessionId$\"/><securecookie host=\"^portal3\\.wildfire\\.paloaltonetworks\\.com$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:live|securityadvisories|urlfiltering|portal3\\.wildfire)?\\.paloaltonetworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palo Alto Research Center\" f=\"Palo_Alto_Research_Center.xml\"><securecookie host=\"^blogs\\.parc\\.com$\" name=\".+\"/><rule from=\"^http://(blogs|www)\\.parc\\.com/\" to=\"https://$1.parc.com/\"/></ruleset>", "<ruleset name=\"PamConsult (mismatches)\" default_off=\"Certificate mismatch\" f=\"PamConsult-mismatches.xml\"><rule from=\"^http://(www\\.)?(jaast|pamnews|tapirex)\\.(com|net)/\" to=\"https://www.$2.$3/\"/><rule from=\"^http://s\\.tapirex\\.com/\" to=\"https://s.tapirex.com/\"/></ruleset>", "<ruleset name=\"PamConsult\" platform=\"mixedcontent\" f=\"PamConsult.xml\"><rule from=\"^http://(www\\.)?(pamconsult|pamela|pamfax)\\.(biz|com)/\" to=\"https://www.$2.$3/\"/><rule from=\"^http://s\\.pamfax\\.biz/\" to=\"https://s.pamfax.biz/\"/></ruleset>", "<ruleset name=\"Pan-Islamic Malaysian Party\" default_off=\"failed ruleset test\" f=\"Pan-Islamic_Malaysian_Party.xml\"><securecookie host=\"^\\.pas.org.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panasonic.com (partial)\" f=\"Panasonic.com.xml\"><securecookie host=\".*\\.panasonic\\.com$\" name=\".+\"/><rule from=\"^http://metrics\\.panasonic\\.com/\" to=\"https://merpanasonicprod.122.2o7.net/\"/><rule from=\"^http://www2\\.panasonic\\.com/\" to=\"https://www2.panasonic.com/\"/><rule from=\"^http://www-images\\.panasonic\\.com/\" to=\"https://www.panasonic.com/\"/></ruleset>", "<ruleset name=\"Panax\" f=\"Panax.xml\"><securecookie host=\"^\\.panax\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PandaWhale\" f=\"PandaWhale.xml\"><securecookie host=\"^\\.pandawhale\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pandawhale\\.com/\" to=\"https://pandawhale.com/\"/></ruleset>", "<ruleset name=\"Pando.com\" f=\"Pando.xml\"><securecookie host=\"^(?:.*\\.)?pando\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pandoblog.com\" default_off=\"expired, mismatched, self-signed\" f=\"Pandoblog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pandora (broken)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/5804\" f=\"Pandora.xml\"><rule from=\"^http://(?:www\\.)?pandora\\.com/\" to=\"https://www.pandora.com/\"/></ruleset>", "<ruleset name=\"Pangora (partial)\" f=\"Pangora.xml\"><rule from=\"^http://images\\.pangora\\.com/\" to=\"https://images.pangora.com/\"/></ruleset>", "<ruleset name=\"Panic.com\" f=\"Panic.xml\"><securecookie host=\"^(?:.+\\.)?panic\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panic Button.io\" f=\"Panic_Button.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panopticlick.com\" f=\"Panopticlick.com.xml\"><securecookie host=\"^www\\.panopticlick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panopto.com (partial)\" f=\"Panopto.com.xml\"><exclusion pattern=\"^http://get\\.panopto\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://get\\.panopto\\.com/\" to=\"https://na-ab15.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panoptykon.org\" f=\"Panoptykon.org.xml\"><rule from=\"^http://www\\.panoptykon\\.org/\" to=\"https://panoptykon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panoramio (problematic)\" default_off=\"mismatched\" f=\"Panoramio-problematic.xml\"><rule from=\"^http://(?:www\\.)?panoramio\\.com/\" to=\"https://www.panoramio.com/\"/></ruleset>", "<ruleset name=\"Panoramio (partial)\" f=\"Panoramio.xml\"><rule from=\"^http://ssl\\.panoramio\\.com/\" to=\"https://ssl.panoramio.com/\"/></ruleset>", "<ruleset name=\"Panovski.me\" f=\"Panovski.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"panstwomiasto.pl\" default_off=\"mismatched\" f=\"Panstwomiasto.xml\"><rule from=\"^http://(?:www\\.)?panstwomiasto\\.pl/\" to=\"https://panstwomiasto.pl/\"/></ruleset>", "<ruleset name=\"Pantarhei.sk\" platform=\"mixedcontent\" f=\"Pantarhei.sk.xml\"><rule from=\"^http://(?:www\\.)?pantarhei\\.sk/\" to=\"https://www.pantarhei.sk/\"/></ruleset>", "<ruleset name=\"Pantelligent.com\" f=\"Pantelligent.com.xml\"><securecookie host=\"^\\.pantelligent\\.com$\" name=\".+\"/><rule from=\"^http://pantelligent\\.com/\" to=\"https://www.pantelligent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pantheon.io\" f=\"Pantheon.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"got Pantheon.com (partial)\" f=\"Pantheon.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gotpantheon\\.com/\" to=\"https://www.gotpantheon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pantheos (partial)\" default_off=\"connection refused\" f=\"Pantheos.xml\"><rule from=\"^http://(?:www\\.)?pantheos\\.com/images/\" to=\"https://www.pantheos.com/images/\"/></ruleset>", "<ruleset name=\"Pantz.org\" f=\"Pantz.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pao-pao.net\" platform=\"mixedcontent\" f=\"Pao-pao.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PãoDelícia.com\" f=\"PaoDelicia.com.xml\"><securecookie host=\"^(?:w*\\.)?paodelicia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Papakaya.com\" default_off=\"expired\" f=\"Papakaya.com.xml\"><securecookie host=\"^papakaya\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?papakaya\\.com/\" to=\"https://papakaya.com/\"/></ruleset>", "<ruleset name=\"Paper.li (partial)\" f=\"Paper.li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paper Mart.com (partial)\" f=\"Paper_Mart.com.xml\"><rule from=\"^http://(?:www\\.)?papermart\\.com/(?=App_Themes/|favicon\\.ico|Images/|IMAGES/|[jJ]ava[sS]cript/|Secure/|(?:Script|Web)Resource\\.axd|WebService/)\" to=\"https://www.papermart.com/\"/></ruleset>", "<ruleset name=\"Paperspace.io (mismatched)\" default_off=\"mismatched\" f=\"Paperspace.io-problematic.xml\"><securecookie host=\"^\\.paperspace\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paperspace.io (partial)\" f=\"Paperspace.io.xml\"><securecookie host=\"^(?:www\\.)?paperspace\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ParaPoupar.com\" default_off=\"failed ruleset test\" f=\"ParaPoupar.com.xml\"><securecookie host=\"^(?:www)?\\.parapoupar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parabola.nu\" platform=\"cacert\" f=\"Parabola.nu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parabola GNULinux.org\" platform=\"cacert\" f=\"Parabola_GNULinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradox Plaza.com (partial)\" f=\"Paradox-Interactive.xml\"><securecookie host=\".+\\.paradoxplaza\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradux Media.com\" f=\"Paradux_Media.com.xml\"><securecookie host=\"^paraduxmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradysz\" f=\"Paradysz.xml\"><securecookie host=\"^(?:.*\\.)?offeredby\\.net\" name=\".+\"/><rule from=\"^http://(ssl\\.analytics\\.|www\\.)?offeredby\\.net/\" to=\"https://$1offeredby.net/\"/></ruleset>", "<ruleset name=\"Paragon IE.com\" f=\"Paragon_IE.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parallax.com (partial)\" f=\"Parallax.com.xml\"><rule from=\"^http://(www\\.)?parallax\\.com/(?=favicon\\.ico|files/|sites/)\" to=\"https://$1parallax.com/\"/></ruleset>", "<ruleset name=\"Parallella.org\" f=\"Parallella.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parallels.com (partial)\" f=\"Parallels.xml\"><securecookie host=\"^\\.parallels\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^store\\.parallels\\.com$\" name=\".+\"/><rule from=\"^http://i3\\.parallels\\.com/\" to=\"https://www.parallels.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parameter Security.com\" f=\"Parameter_Security.com.xml\"><securecookie host=\"^(?:www)?\\.parametersecurity\\.com$\" name=\".+\"/><rule from=\"^http://parametersecurity\\.com/\" to=\"https://www.parametersecurity.com/\"/><rule from=\"^http://showmecon\\.parametersecurity\\.com/\" to=\"https://showmecon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ParamountMovies.com\" f=\"Paramount-Pictures.xml\"><securecookie host=\"^www\\.paramountmovies\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?paramountmovies\\.com/\" to=\"https://www.paramountmovies.com/\"/><rule from=\"^http://vod\\.super8-movie\\.com/(?:.*)\" to=\"https://www.paramountmovies.com/productdetail.html?productId=11506\"/><rule from=\"^http://vod\\.transformersmovie\\.com/(?:.*)\" to=\"https://www.paramountmovies.com/\"/></ruleset>", "<ruleset name=\"parastorage.com\" f=\"Parastorage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parature.com (partial)\" f=\"Parature.com.xml\"><securecookie host=\"^(?:s3|success)\\.parature\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parcelforce (partial)\" platform=\"mixedcontent\" f=\"Parcelforce.xml\"><rule from=\"^http://parcelforce\\.com/\" to=\"https://www.parcelforce.com/\"/><rule from=\"^http://www\\.parcelforce\\.com/((?:become-account-customer-today|user)(?:/?$|\\?)|sites/)\" to=\"https://www.parcelforce.com/$1\"/><rule from=\"^http://www\\.parcelforce\\.com/my-account/?$\" to=\"https://www.parcelforce.com/user\"/></ruleset>", "<ruleset name=\"Pardot (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Pardot-mismatches.xml\"><rule from=\"^http://ideas\\.pardot\\.com/\" to=\"https://ideas.pardot.com/\"/></ruleset>", "<ruleset name=\"Pardot.com\" f=\"Pardot.xml\"><securecookie host=\"^\\.\" name=\"^(?:visitor_id\\d+|__utm\\w)$\"/><securecookie host=\"^(?:go|pi|www)\\.pardot\\.com$\" name=\".+\"/><rule from=\"^http://(?:form-)?cdn\\.pardot\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http://storage\\.pardot\\.com/\" to=\"https://s3.amazonaws.com/storage.pardot.com/\"/><rule from=\"^http://www-cdn\\d?\\.pardot\\.com/\" to=\"https://www.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pardus.org.tr (partial)\" default_off=\"self-signed\" f=\"Pardus.org.tr.xml\"><securecookie host=\"^www\\.pardus\\.org\\.tr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pardus\\.org\\.tr/\" to=\"https://www.pardus.org.tr/\"/></ruleset>", "<ruleset name=\"Paris Diderot University (partial)\" f=\"Paris_Diderot_University.xml\"><securecookie host=\"^auth\\.univ-paris-diderot\\.fr$\" name=\".+\"/><rule from=\"^http://auth\\.univ-paris-diderot\\.fr/\" to=\"https://auth.univ-paris-diderot.fr/\"/></ruleset>", "<ruleset name=\"Paris School of Economics.eu\" default_off=\"mismatched\" f=\"Paris_School_of_Economics.eu.xml\"><securecookie host=\"^www\\.parisschoolofeconomics\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Park Models Direct\" f=\"Park_Models_Direct.xml\"><securecookie host=\"^(?:.*\\.)?parkmodelsdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parker Soft.co.uk\" f=\"Parker_Soft.co.uk.xml\"><rule from=\"^http://(gateway2?|www)\\.parkersoft\\.co\\.uk/\" to=\"https://$1.parkersoft.co.uk/\"/></ruleset>", "<ruleset name=\"ParkingCrew.com\" f=\"ParkingCrew.com.xml\"><rule from=\"^http://(?:www\\.)?parkingcrew\\.com/\" to=\"https://www.parkingcrew.com/\"/></ruleset>", "<ruleset name=\"ParkingEye.co.uk\" f=\"ParkingEye.co.uk.xml\"><securecookie host=\"^(?:\\w*\\.)?parkingeye.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parkrun.org.uk\" f=\"Parkrun.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parrable.com\" f=\"Parrable.com.xml\"><rule from=\"^http://(?:www\\.)?parrable\\.com/\" to=\"https://www.parrable.com/\"/><rule from=\"^http://cdn\\.parrable\\.com/\" to=\"https://cdn.parrable.com/\"/></ruleset>", "<ruleset name=\"Parrot.com (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Parrot.com-problematic.xml\"><securecookie host=\"^www\\.parrot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parrot.com (partial)\" f=\"Parrot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parrot (partial)\" default_off=\"expired\" f=\"Parrot.xml\"><rule from=\"^http://(?:www\\.)?parrot\\.org/\" to=\"https://www.parrot.org/\"/></ruleset>", "<ruleset name=\"Parse.com (partial)\" f=\"Parse.com.xml\"><rule from=\"^http://status\\.parse\\.com/\" to=\"https://parse.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parse.ly (mismatches)\" default_off=\"mismatch\" f=\"Parse.ly-mismatches.xml\"><rule from=\"^http://(press|status)\\.parsely\\.com/\" to=\"https://$1.parsely.com/\"/></ruleset>", "<ruleset name=\"Parse.ly (partial)\" f=\"Parse.ly.xml\"><securecookie host=\"^config\\.parsely\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?parse\\.ly/\" to=\"https://www.parsely.com/\"/><rule from=\"^http://((?:api|config|[\\w-]+\\.config|dash|pixel|[\\w-]+\\.pixel|www)\\.)?parsely\\.com/\" to=\"https://$1parsely.com/\"/><rule from=\"^http://static\\.parsely\\.com/\" to=\"https://d1z2jf7jlzjs58.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ParseCDN.com\" f=\"ParseCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parship.nl\" f=\"Parship.nl.xml\"><rule from=\"^http://www\\.parship\\.nl/\" to=\"https://www.parship.nl/\"/></ruleset>", "<ruleset name=\"Part Spider.com\" f=\"Part_Spider.com.xml\"><securecookie host=\"^partspider\\.com$\" name=\".+\"/><rule from=\"^http://www\\.partspider\\.com/\" to=\"https://partspider.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PartnerNet program.com\" f=\"PartnerNet_program.com.xml\"><securecookie host=\"^\\.partnernetprogram\\.com$\" name=\".+\"/><rule from=\"^http://partnernetprogram\\.com/[^?]*\" to=\"https://www.partnernetprogram.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Partnernaurovni.sk\" f=\"Partnernaurovni.sk.xml\"><rule from=\"^http://(?:www\\.)?partnernaurovni\\.sk/\" to=\"https://www.partnernaurovni.sk/\"/></ruleset>", "<ruleset name=\"partypoker\" platform=\"mixedcontent\" f=\"Partypoker.com.xml\"><rule from=\"^http://partypoker\\.com/\" to=\"https://www.partypoker.com/\"/><rule from=\"^http://www\\.partypoker\\.com/\" to=\"https://www.partypoker.com/\"/><rule from=\"^http://p\\.iivt\\.com/\" to=\"https://p.iivt.com/\"/></ruleset>", "<ruleset name=\"Pashm.com\" f=\"Pashm.com.xml\"><securecookie host=\"^(?:www\\.)?pashm\\.com$\" name=\".+\"/><rule from=\"^http://www\\.pashm\\.com/\" to=\"https://pashm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PassMark.com (false MCB)\" platform=\"mixedcontent\" f=\"PassMark.com-falsemixed.xml\"><securecookie host=\"^www\\.passmark\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PassMark.com (partial)\" f=\"PassMark.com.xml\"><rule from=\"^http://(www\\.)?passmark\\.com/(?!forum(?!/cron\\.php|/css\\.php|/favicon\\.ico|/images/))\" to=\"https://$1passmark.com/\"/></ruleset>", "<ruleset name=\"PassSource\" f=\"PassSource.xml\"><securecookie host=\"^(?:www\\.)?passsource\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PassThePopcorn\" f=\"PassThePopcorn.xml\"><rule from=\"^http://(?:tls\\.|www\\.)?passthepopcorn\\.me/\" to=\"https://tls.passthepopcorn.me/\"/><rule from=\"^http://static\\.passthepopcorn\\.me/\" to=\"https://static.passthepopcorn.me/\"/></ruleset>", "<ruleset name=\"PassageBank (partial)\" f=\"PassageBank.xml\"><rule from=\"^http://(www\\.)?passagebank\\.com/img/\" to=\"https://$1passagebank.com/img/\"/></ruleset>", "<ruleset name=\"Passed.cc\" f=\"Passed.cc.xml\"><securecookie host=\"^(?:w*\\.)?passed\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passion-Radio.com (partial)\" f=\"Passion-Radio.com.xml\"><rule from=\"^http://(uk\\.|www\\.)?passion-radio\\.com/(?=\\d+-(?:home|medium)_default/|(?:fr/authentification|fr/mon-compte|gb/authentification|gb/contact-us)(?:$|[?/])|img/|js/|modules/|themes/)\" to=\"https://$1passion-radio.com/\"/></ruleset>", "<ruleset name=\"Passionfruit Ads.com (partial)\" f=\"Passionfruit_Ads.com.xml\"><securecookie host=\"^app\\.passionfruitads\\.com$\" name=\".+\"/><rule from=\"^http://(?:app\\.|www\\.)?passionfruitads\\.com/\" to=\"https://app.passionfruitads.com/\"/><rule from=\"^http://load\\.passionfruitads\\.com/\" to=\"https://passionfruit.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Passkey.com (partial)\" f=\"Passkey.com.xml\"><securecookie host=\"^(?:aws|manage|resweb)\\.passkey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passwd.hu\" default_off=\"self-signed\" f=\"Passwd.hu.xml\"><rule from=\"^http://(?:www\\.)?passwd\\.hu/\" to=\"https://www.passwd.hu/\"/></ruleset>", "<ruleset name=\"Password-Hashing.net\" f=\"Password-Hashing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasswordBox.com\" default_off=\"failed ruleset test\" f=\"PasswordBox.com.xml\"><securecookie host=\"^\\.passwordbox.com$\" name=\".+\"/><securecookie host=\"^\\.psswrdbx\\.com$\" name=\".+\"/><rule from=\"^http://(blog\\.|www\\.)?passwordbox\\.com/\" to=\"https://$1passwordbox.com/\"/><rule from=\"^http://((?:assets-production|extensions|www)\\.)?psswrdbx\\.com/\" to=\"https://$1psswrdbx.com/\"/></ruleset>", "<ruleset name=\"PasswordCard\" f=\"Passwordcard.xml\"><rule from=\"^http://(?:www\\.)?passwordcard\\.org/\" to=\"https://www.passwordcard.org/\"/></ruleset>", "<ruleset name=\"Passwort-generator.com\" f=\"Passwort-generator.com.xml\"><securecookie host=\"^(www\\.)?passwort-generator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paste.ee\" f=\"Paste.ee.xml\"><securecookie host=\"^(?:www\\.)?paste\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"paste.sh\" f=\"Paste.sh.xml\"><rule from=\"^http://(?:www\\.)?paste\\.sh/\" to=\"https://paste.sh/\"/></ruleset>", "<ruleset name=\"Paste2.org (false MCB)\" platform=\"mixedcontent\" f=\"Paste2.org-falsemixed.xml\"><securecookie host=\"^\\.paste2\\.org$\" name=\"^(?:__cfduid|__qca)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paste2.org (partial)\" f=\"Paste2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasteMonitor.com\" f=\"PasteMonitor.com.xml\"><securecookie host=\"^\\.?www\\.pastemonitor\\.com$\" name=\".+\"/><rule from=\"^http://pastemonitor\\.com/+\" to=\"https://www.pastemonitor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasteVault.com\" default_off=\"failed ruleset test\" f=\"PasteVault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pastebin.ca\" default_off=\"No HTTPS support anymore\" f=\"Pastebin.ca.xml\"><rule from=\"^http://(?:www\\.)?pastebin\\.ca/\" to=\"https://pastebin.ca/\"/></ruleset>", "<ruleset name=\"Pastebin.com (buggy)\" default_off=\"breaks CSS on pastes\" f=\"Pastebin.com.xml\"><rule from=\"^http://(www\\.)?pastebin\\.com/(?=adserver/|cache/|etc/|favicon\\.ico|i/|raw\\.php)\" to=\"https://$1pastebin.com/\"/></ruleset>", "<ruleset name=\"Pastee.org\" f=\"Pastee.org.xml\"><rule from=\"^http://(?:www\\.)?pastee\\.org/\" to=\"https://pastee.org/\"/></ruleset>", "<ruleset name=\"Pastemarkdown.com\" f=\"Pastemarkdown.com.xml\"><securecookie host=\"^pastemarkdown\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pasteur.fr (partial)\" f=\"Pasteur.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Patch of Land.com\" f=\"Patch_of_Land.com.xml\"><securecookie host=\"^patchofland\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patchofland\\.com/\" to=\"https://patchofland.com/\"/></ruleset>", "<ruleset name=\"Patent Baristas\" default_off=\"mismatch\" f=\"Patent-Baristas.xml\"><securecookie host=\"^www\\.patentbaristas\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?patentbaristas\\.com/\" to=\"https://www.patentbaristas.com/\"/></ruleset>", "<ruleset name=\"Paxetia (partial)\" f=\"Patexia.xml\"><rule from=\"^http://patexia\\.com/\" to=\"https://patexia.com/\"/><rule from=\"^http://www\\.patexia\\.com/(css|data|fonts|images|users?)/\" to=\"https://www.patexia.com/$1/\"/></ruleset>", "<ruleset name=\"Path-follower.com\" f=\"Path-follower.com.xml\"><rule from=\"^http://(?:www\\.)?path-follower\\.com/\" to=\"https://secure.leadforensics.com/\"/></ruleset>", "<ruleset name=\"Path.com (partial)\" f=\"Path.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PathDefender.com\" f=\"PathDefender.com.xml\"><securecookie host=\"^www\\.pathdefender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Path of Exile.com\" f=\"Path_of_Exile.com.xml\"><securecookie host=\"^www\\.pathofexile\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pathofexile\\.com/\" to=\"https://$1pathofexile.com/\"/><rule from=\"^http://webcdn\\.pathofexile\\.com/\" to=\"https://p7p4m6s5.ssl.hwcdn.net/\"/></ruleset>", "<ruleset name=\"pathways2gsfa.org\" f=\"Pathways2gsfa.org.xml\"><rule from=\"^http://(?:www\\.)?pathways2gsfa\\.org/\" to=\"https://www.pathways2gsfa.org/\"/></ruleset>", "<ruleset name=\"PatientsLikeMe.com (partial)\" f=\"PatientsLikeMe.com.xml\"><rule from=\"^http://news\\.patientslikeme\\.com/(?=sites/)\" to=\"https://patientslikeme.newshq.businesswire.com/\"/><rule from=\"^http://(support\\.|www\\.)?patientslikeme\\.com/\" to=\"https://$1patientslikeme.com/\"/></ruleset>", "<ruleset name=\"Patreon.com (partial)\" f=\"Patreon.com.xml\"><exclusion pattern=\"^http://www\\.patreon\\.com/+(?!_generated/|bePatronConfirm\\?|css/|favicon\\.ico|images/|scripts/)\"/><rule from=\"^http://(?:www\\.)?patreon\\.com/\" to=\"https://www.patreon.com/\"/></ruleset>", "<ruleset name=\"patrickbateman.biz\" default_off=\"failed ruleset test\" f=\"Patrickbateman.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"patriotssuperbowl.us\" default_off=\"expired, mismatched\" f=\"Patriotsuperbowl.us.xml\"><securecookie host=\"^\\.www\\.patriotssuperbowl\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:boxus\\.com|patriotssuperbowl\\.us)/\" to=\"https://www.patriotssuperbowl.us/\"/></ruleset>", "<ruleset name=\"Patterns in the Void.net\" default_off=\"self-signed\" f=\"Patterns_in_the_Void.net.xml\"><securecookie host=\"^(?:blog|code|www)\\.patternsinthevoid\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patternsinthevoid\\.net/\" to=\"https://www.patternsinthevoid.net/\"/><rule from=\"^http://(blog|code)\\.patternsinthevoid\\.net/\" to=\"https://$1.patternsinthevoid.net/\"/></ruleset>", "<ruleset name=\"PaulDotCom.com (partial, false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"PaulDotCom.com.xml\"><securecookie host=\"^(?:www\\.)?pauldotcom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PaulDreik.se\" f=\"PaulDreik.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"paul schreiber.com\" f=\"Paul_schreiber.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pavpan Chekha.com\" f=\"Pavpan_Chekha.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paxton Record (partial)\" f=\"Paxton_Record.xml\"><rule from=\"^http://(?:www\\.)?paxtonrecord\\.net/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.paxtonrecord.net/$1\"/></ruleset>", "<ruleset name=\"Pay.gov\" f=\"Pay.gov.xml\"><securecookie host=\"^\\.?pay\\.gov$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?pay\\.gov/\" to=\"https://$1pay.gov/\"/></ruleset>", "<ruleset name=\"Pay4Bugs.com\" f=\"Pay4Bugs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPal\" f=\"PayPal.xml\"><securecookie host=\"^\\.\" name=\"^s_\\w+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPal | Forward\" f=\"PayPal_Forward.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPerPost.com\" f=\"PayPerPost.com.xml\"><securecookie host=\"^(?:www\\.)?payperpost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"payQuake (partial)\" default_off=\"failed ruleset test\" f=\"PayQuake.xml\"><securecookie host=\"^www\\.mypayquake\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mypayquake\\.com/\" to=\"https://www.mypayquake.com/\"/></ruleset>", "<ruleset name=\"Pay Dirt Gold.com\" default_off=\"mismatched\" f=\"Pay_Dirt_Gold.com.xml\"><securecookie host=\"^\\.?paydirtgold\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paycheckrecords.com\" f=\"Paycheckrecords.com.xml\"><securecookie host=\"^www\\.paycheckrecords\\.com$\" name=\".+\"/><rule from=\"^http://paycheckrecords\\.com/\" to=\"https://www.paycheckrecords.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paydirekt.de\" f=\"Paydirekt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payeer.com\" f=\"Payeer.com.xml\"><securecookie host=\"^payeer\\.com$\" name=\".+\"/><rule from=\"^http://www\\.payeer\\.com/\" to=\"https://payeer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payhip.com\" f=\"Payhip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PaymentAccuracy.gov\" f=\"PaymentAccuracy.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paymentech.com (partial)\" f=\"Paymentech.com.xml\"><securecookie host=\"^secure\\.paymentech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?paymentech\\.com/(?:$|\\?.*)\" to=\"https://www.chasepaymentech.com/\"/><rule from=\"^http://secure\\.paymentech\\.com/\" to=\"https://secure.paymentech.com/\"/></ruleset>", "<ruleset name=\"PaymentsSource.com\" default_off=\"mismatched\" f=\"PaymentsSource.com.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?paymentssource\\.com/\" to=\"https://www.paymentssource.com/\"/></ruleset>", "<ruleset name=\"Paymentwall.com\" f=\"Paymentwall.com.xml\"><securecookie host=\"^(?:\\w*\\.)?paymentwall\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paymium.com\" f=\"Paymium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paymo.biz\" f=\"Paymo.xml\"><rule from=\"^http://app\\.paymo\\.biz/+\" to=\"https://app.paymoapp.com/\"/></ruleset>", "<ruleset name=\"Paymo App.com\" f=\"Paymo_App.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payoneer.com\" f=\"Payoneer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paypal Giving Fund.org (false MCB)\" platform=\"mixedcontent\" f=\"Paypal_Giving_Fund.org.xml\"><securecookie host=\"^www\\.paypalgivingfund\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"payrollapp.com\" default_off=\"failed ruleset test\" f=\"Payrollapp.com.xml\"><securecookie host=\"^payrollapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payrollapp\\.com/\" to=\"https://payrollapp.com/\"/></ruleset>", "<ruleset name=\"paysafecard.com\" f=\"Paysafecard.com.xml\"><securecookie host=\"^(?:mypins|static|www)?\\.paysafecard\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?paysafecard\\.com/\" to=\"https://www.paysafecard.com/\"/><rule from=\"^http://(mypins|static)\\.paysafecard\\.com/\" to=\"https://$1.paysafecard.com/\"/></ruleset>", "<ruleset name=\"Paysol.se\" default_off=\"failed ruleset test\" f=\"Paysol.se.xml\"><rule from=\"^http://secure\\.paysol\\.se/\" to=\"https://secure.paysol.se/\"/><securecookie host=\"^secure\\.paysol\\.se$\" name=\".*\"/></ruleset>", "<ruleset name=\"Payson\" f=\"Payson.xml\"><securecookie host=\"^(?:www)?\\.payson\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payson\\.se/\" to=\"https://www.payson.se/\"/></ruleset>", "<ruleset name=\"Paytoll\" f=\"Paytoll.xml\"><securecookie host=\"^secure\\.paytoll\\.eu$\" name=\".+\"/><rule from=\"^http://secure\\.paytoll\\.eu/\" to=\"https://secure.paytoll.eu/\"/></ruleset>", "<ruleset name=\"Payu.ru\" f=\"Payu.ru.xml\"><rule from=\"^http://payu\\.ru/\" to=\"https://www.payu.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payza\" f=\"Payza.xml\"><securecookie host=\".+\\.payza\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payza\\.com/\" to=\"https://www.payza.com/\"/><rule from=\"^http://secure\\.payza\\.com/\" to=\"https://secure.payza.com/\"/></ruleset>", "<ruleset name=\"Pazaruvaj.com\" f=\"Pazaruvaj.com.xml\"><securecookie host=\".*\\.pazaruvaj\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PbGrd.com (partial)\" f=\"Pbgrd.com.xml\"><securecookie host=\"^delivery\\.pbgrd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pbs-erhverv.dk\" f=\"Pbs-erhverv.dk.xml\"><rule from=\"^http://www\\.pbs-erhverv\\.dk/\" to=\"https://pbs-erhverv.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pbsrc.com (partial)\" f=\"Pbsrc.com.xml\"><rule from=\"^http://pic\\.pbsrc\\.com/\" to=\"https://pbsrc.com/\"/><rule from=\"^http://(pic|static)2\\.pbsrc\\.com/\" to=\"https://o$12.pbsrc.com/\"/><rule from=\"^http://((?:opic2|ostatic2|rs\\d+|www)\\.)?pbsrc\\.com/\" to=\"https://$1pbsrc.com/\"/></ruleset>", "<ruleset name=\"PCP.ch\" f=\"Pcp.ch.xml\"><securecookie host=\"^www\\.pcp\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pcpartpicker.com\" platform=\"mixedcontent\" f=\"Pcpartpicker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pcwelt.de\" platform=\"mixedcontent\" f=\"Pcwelt.de.xml\"><rule from=\"^http://(mobil|www)\\.pcwelt\\.de/\" to=\"https://$1.pcwelt.de/\"/></ruleset>", "<ruleset name=\"Pdadb.net\" default_off=\"invalid certificate\" f=\"Pdadb.net.xml\"><rule from=\"^http://(?:www\\.)?pdadb\\.net/\" to=\"https://www.pdadb.net/\"/></ruleset>", "<ruleset name=\"pdfcrowd.com (partial)\" f=\"Pdfcrowd.com.xml\"><exclusion pattern=\"^http://pdfcrowd\\.com/+(?!(?:blog|user/sign_in)(?:$|[?/])|favicon\\.ico|forums/templates/|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pdfreaders.org\" f=\"Pdfreaders.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrettyEasyPrivacy\" f=\"PeP.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peace Center for the Performing Arts (partial)\" f=\"Peace_Center_for_the_Performing_Arts.xml\"><exclusion pattern=\"^http://(?:www\\.)?peacecenter\\.org/(?:index\\.php)?(?:\\?.*)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peacefire.org\" default_off=\"self-signed\" f=\"Peacefire.org.xml\"><rule from=\"^http://(?:www\\.)?peacefire\\.org/\" to=\"https://peacefire.org/\"/></ruleset>", "<ruleset name=\"Pearson (mismatches)\" default_off=\"mismatch\" f=\"Pearson-mismatches.xml\"><rule from=\"^http://ptgmedia\\.pearsoncmg\\.com/\" to=\"https://ptgmedia.pearsoncmg.com/\"/></ruleset>", "<ruleset name=\"Pearson (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Pearson.xml\"><securecookie host=\"^\\.?(?:developer|neo)\\.pearson\\.com$\" name=\".+\"/><securecookie host=\"^register\\.pearsoncmg\\.com$\" name=\".+\"/><securecookie host=\"^www8\\.pearsonvue\\.com$\" name=\".+\"/><rule from=\"^http://(developer|neo)\\.pearson\\.com/\" to=\"https://$1.pearson.com/\"/><rule from=\"^http://register\\.pearsoncmg\\.com/\" to=\"https://register.pearsoncmg.com/\"/><rule from=\"^http://(?:www8?\\.)?(?:pearson)?vue\\.com/\" to=\"https://www8.pearsonvue.com/\"/></ruleset>", "<ruleset name=\"Pearson Computing.net\" default_off=\"self-signed\" f=\"Pearson_Computing.net.xml\"><securecookie host=\"^(?:www\\.)?pearsoncomputing\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pearsoncomputing\\.net/\" to=\"https://www.pearsoncomputing.net/\"/></ruleset>", "<ruleset name=\"Pebble (partial)\" f=\"Pebble.xml\"><securecookie host=\"^account\\.getpebble\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getpebble\\.com/global/\" to=\"https://pebble.myshopify.com/global/\"/><rule from=\"^http://(account|developer)\\.getpebble\\.com/\" to=\"https://$1.getpebble.com/\"/><rule from=\"^http://forums\\.getpebble\\.com/\" to=\"https://pebble.vanillaforums.com/\"/></ruleset>", "<ruleset name=\"PebblePad.co.uk\" f=\"PebblePad.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regional Municipality of Peel, Canada\" f=\"Peel-Region-of-Canada.xml\"><rule from=\"^http://(?:www\\.)?peelregion\\.ca/\" to=\"https://www.peelregion.ca/\"/></ruleset>", "<ruleset name=\"Peepd.com (partial)\" default_off=\"failed ruleset test\" f=\"Peepd.xml\"><rule from=\"^http://www\\.peepd\\.com/\" to=\"https://peepd.com/\"/><rule from=\"^http://peepd\\.com/(images/|index\\.php|skins/)\" to=\"https://peepd.com/$1\"/></ruleset>", "<ruleset name=\"Peer1.ca (partial)\" f=\"Peer1.ca.xml\"><securecookie host=\"^(?:www\\.)?partners\\.peer1\\.ca$\" name=\".+\"/><rule from=\"^http://(www\\.)?partners\\.peer1\\.ca/\" to=\"https://$1partners.peer1.ca/\"/></ruleset>", "<ruleset name=\"Peer39\" default_off=\"mismatch\" f=\"Peer39.xml\"><rule from=\"^http://(catrg|stags)\\.peer39\\.net/\" to=\"https://$1.peer39.net/\"/></ruleset>", "<ruleset name=\"Peer5.com\" f=\"Peer5.com.xml\"><securecookie host=\"^\\.peer5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeerJ.com\" f=\"PeerJ.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://blog\\.peerj\\.com/+\" to=\"https://peerj.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeerLibrary.org (partial)\" f=\"PeerLibrary.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeerReach.com (partial)\" f=\"PeerReach.com.xml\"><securecookie host=\"^peerreach\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peerTransfer.com (partial)\" f=\"PeerTransfer.com.xml\"><exclusion pattern=\"^http://info\\.peertransfer\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://info\\.peertransfer\\.com/\" to=\"https://na-abm.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peercraft\" f=\"Peercraft.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeeringDB.com\" f=\"PeeringDB.xml\"><securecookie host=\"^(?:www\\.)?peeringdb\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peerio.com\" f=\"Peerio.com.xml\"><securecookie host=\"^\\.peerio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peerius.com (problematic)\" default_off=\"expired, self-signed\" f=\"Peerius.com-problematic.xml\"><securecookie host=\"^www\\.deutsch\\.peerius\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?deutsch\\.peerius\\.com/\" to=\"https://www.deutsch.peerius.com/\"/></ruleset>", "<ruleset name=\"Peerius.com (partial)\" f=\"Peerius.com.xml\"><rule from=\"^http://(?!deutsch\\.|www\\.)([\\w-]+)\\.peerius\\.com/\" to=\"https://$1.peerius.com/\"/></ruleset>", "<ruleset name=\"Peersm.com\" default_off=\"mismatched\" f=\"Peersm.com.xml\"><securecookie host=\"^www\\.peersm\\.com$\" name=\".+\"/><rule from=\"^http://peersm\\.com/\" to=\"https://www.peersm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peertech.org\" f=\"Peertech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pega (partial)\" f=\"Pega.xml\"><rule from=\"^http://(?:www\\.)?pega\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.pega.com/$1\"/><rule from=\"^http://staging\\.pega\\.com/(sites/|user(?:$|\\?|/))\" to=\"https://staging.pega.com/$1\"/></ruleset>", "<ruleset name=\"Pegaz Hosting.com (partial)\" f=\"Pegaz_Hosting.com.xml\"><securecookie host=\"^secure\\.pegazhosting\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.pegazhosting\\.com/\" to=\"https://secure.pegazhosting.com/\"/></ruleset>", "<ruleset name=\"Pegelf.de\" f=\"Pegelf.de.xml\"><exclusion pattern=\"^http://blog\\.pegelf\\.de/\"/><rule from=\"^http://(?:www\\.)?pegelf\\.de/\" to=\"https://pegelf.de/\"/></ruleset>", "<ruleset name=\"pekwm.org\" platform=\"cacert\" f=\"Pekwm.org.xml\"><securecookie host=\"^www\\.pekwm\\.org$\" name=\".+\"/><rule from=\"^http://pekwm\\.org/\" to=\"https://www.pekwm.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pen Test Partners.com\" f=\"Pen_Test_Partners.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Penango (partial)\" f=\"Penango.xml\"><securecookie host=\"^.+\\.penango\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pendle.gov.uk\" default_off=\"missing certificate chain\" f=\"Pendle.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://pendle\\.gov\\.uk/\" to=\"https://www.pendle.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Penfold Golf\" f=\"Penfold_Golf.xml\"><securecookie host=\"^(?:\\.?www)?\\.penfoldgolf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PengPod.com\" default_off=\"connection refused\" f=\"PengPod.com.xml\"><securecookie host=\"^(?:.*\\.)?pengpod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PenguinWebHosting (partial)\" platform=\"mixedcontent\" f=\"PenguinWebHosting.xml\"><rule from=\"^http://(www\\.)?pcicomplianthosting\\.com/\" to=\"https://$1pcicomplianthosting.com/\"/><rule from=\"^http://ssl134\\.penguinhost\\.net/\" to=\"https://ssl134.penguinhost.net/\"/><rule from=\"^http://(?:www\\.)?penguinwebhosting\\.com/\" to=\"https://www.pcicomplianthosting.com/\"/><rule from=\"^http://secure\\.penguinwebhosting\\.com/\" to=\"https://secure.penguinwebhosting.com/\"/></ruleset>", "<ruleset name=\"Peninsula College of Medicine & Dentistry (partial)\" default_off=\"connection refused\" f=\"Peninsula-College-of-Medicine-and-Dentistry.xml\"><exclusion pattern=\"^http://pdsdef\\.\"/><securecookie host=\"^(?:.*\\.)?pcmd\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?pcmd\\.ac\\.uk/\" to=\"https://$1pcmd.ac.uk/\"/></ruleset>", "<ruleset name=\"Peninsula Library System (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Peninsula-Lib-Sys.xml\"><securecookie host=\"^(?:catalog|ezproxy)\\.plsinfo\\.org$\" name=\".+\"/><rule from=\"^http://(catalog|ezproxy)\\.plsinfo\\.org/\" to=\"https://$1.plsinfo.org/\"/><rule from=\"^http://plsiii\\.plsinfo\\.org/\" to=\"https://catalog.plsinfo.org/\"/></ruleset>", "<ruleset name=\"PSU.edu (partial)\" f=\"Pennsylvania-State-University.xml\"><exclusion pattern=\"^http://blogs\\.psu\\.edu/(?!mt4/)\"/><exclusion pattern=\"^http://www\\.cse\\.psu\\.edu/~\"/><exclusion pattern=\"^http://citeseerx\\.ist\\.psu\\.edu/(?!mcsutils/newAccount|myciteseer/login)\"/><securecookie host=\"^(?:cms|\\.e-education|elion(?:facadv\\.oas)?|secureapps\\.libraries|appnew\\.outreach|webaccess)\\.psu\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(e-education|libraries|worldcampus)\\.psu\\.edu/\" to=\"https://www.$1.psu.edu/\"/><rule from=\"^http://(?:secure)?apps\\.libraries\\.psu\\.edu/\" to=\"https://secureapps.libraries.psu/\"/><rule from=\"^http://(alumni|blogs|cms|www\\.cse|elion|citeseerx\\.ist|(?:cat|ill)\\.libraries|elionfacadv\\.oas|(?:(?:appnew|www)\\.)?outreach|portal|webaccess|webmail)\\.psu\\.edu/\" to=\"https://$1.psu.edu/\"/></ruleset>", "<ruleset name=\"Pennsylvania Association for Justice\" f=\"Pennsylvania_Association_for_Justice.xml\"><securecookie host=\"^.+\\.pajustice\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PensionsMyndigheten.se\" f=\"Pensionsmyndigheten.se.xml\"><rule from=\"^http://www\\.pensionsmyndigheten\\.se/\" to=\"https://secure.pensionsmyndigheten.se/\"/><rule from=\"^http://pensionsmyndigheten\\.se/\" to=\"https://secure.pensionsmyndigheten.se/\"/></ruleset>", "<ruleset name=\"Pentabarf\" default_off=\"expired\" platform=\"cacert\" f=\"Pentabarf.xml\"><securecookie host=\"^pentabarf\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pentabarf\\.org/\" to=\"https://pentabarf.org/\"/></ruleset>", "<ruleset name=\"Pentest Geek.com\" f=\"Pentest_Geek.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pentestit.ru\" f=\"Pentestit.ru.xml\"><securecookie host=\"^www\\.pentestit\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pentestmag.com\" f=\"Pentestmag.com.xml\"><securecookie host=\"^\\.pentestmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Penton Media (partial)\" default_off=\"failed ruleset test\" f=\"Penton_Media.xml\"><exclusion pattern=\"^http://tech\\.pentontech\\.com/(?!eloquaimages/)\"/><securecookie host=\"^\\.penton\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://metrics\\.(?:pisces-)?penton\\.com/\" to=\"https://pentonmedia.122.2o7.net/\"/><rule from=\"^http://(?:images\\.)?tech\\.pentontech\\.com/\" to=\"https://secure.eloqua.com/\"/></ruleset>", "<ruleset name=\"People.com (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"People.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?people\\.com/\" to=\"https://www.people.com/\"/><rule from=\"^http://celebritybabies\\.people\\.com/\" to=\"https://celebritybabies.people.com/\"/></ruleset>", "<ruleset name=\"People.com (partial)\" f=\"People.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeopleFluent.com (partial)\" f=\"PeopleFluent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeopleStrategy.com (partial)\" f=\"PeopleStrategy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peopleclick.com (false MCB)\" platform=\"mixedcontent\" f=\"Peopleclick.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peopleclick.com (partial)\" f=\"Peopleclick.com.xml\"><exclusion pattern=\"^http://careers\\.peopleclick\\.com/+(?!content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"People's Choice Credit Union\" f=\"PeoplesChoiceCU.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"People's Choice Awards\" f=\"Peoples_Choice_Awards.xml\"><exclusion pattern=\"^http://(?:cdn\\.|www\\.)?peopleschoice\\.com/(?!pca/(?:css/|img/|login\\.jsp|register\\.jsp))\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?peopleschoice\\.com/\" to=\"https://$1peopleschoice.com/\"/></ruleset>", "<ruleset name=\"PepperJam Exchange (partial)\" f=\"PepperJam_Exchange.xml\"><securecookie host=\"^www\\.pepperjamnetwork\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pepperjamnetwork\\.com/\" to=\"https://$1pepperjamnetwork.com/\"/><rule from=\"^http://media\\.pepperjamnetwork\\.com/\" to=\"https://s3.amazonaws.com/media.pepperjamnetwork.com/\"/></ruleset>", "<ruleset name=\"Pepperfish (partial)\" default_off=\"failed ruleset test\" f=\"Pepperfish.xml\"><rule from=\"^http://secure\\.pepperfish\\.net/\" to=\"https://secure.pepperfish.net/\"/></ruleset>", "<ruleset name=\"Perceptive Pixel\" default_off=\"mismatch\" f=\"Perceptive-Pixel.xml\"><securecookie host=\"^.*\\.perceptivepixel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?perceptivepixel\\.com/\" to=\"https://www.perceptivepixel.com/\"/></ruleset>", "<ruleset name=\"Percona.com (partial)\" f=\"Percona.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://forum\\.percona\\.com/[^?]*\" to=\"https://www.percona.com/forums/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect-Privacy.com\" f=\"Perfect-Privacy.com.xml\"><securecookie host=\"^board\\.perfect-privacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Audience.com\" f=\"Perfect_Audience.xml\"><securecookie host=\"^www\\.perfectaudience\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.perfectaudience\\.com/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^https?://blog\\.perfectaudience\\.com/\" to=\"https://perfectaudienc.wpengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Market.com (problematic)\" default_off=\"mismatched\" f=\"Perfect_Market.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?perfectmarket\\.com/\" to=\"https://perfectmarket.com/\"/></ruleset>", "<ruleset name=\"Perfect Market.com (partial)\" f=\"Perfect_Market.com.xml\"><rule from=\"^http://(vault|widget)\\.perfectmarket\\.com/\" to=\"https://$1.perfectmarket.com/\"/></ruleset>", "<ruleset name=\"Perfect Money.is\" f=\"Perfect_Money.is.xml\"><securecookie host=\"^(?:www\\.)?perfectmoney\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Money\" f=\"Perfect_Money.xml\"><securecookie host=\"^(?:www\\.)?perfectmoney\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Sense Digital (partial)\" f=\"Perfect_Sense_Digital.xml\"><rule from=\"^http://cdn\\.psddev\\.com/\" to=\"https://d1xlwtusml8gh6.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Perform (partial)\" f=\"Perform.xml\"><rule from=\"^http://(autodiscover|cms|legacy|webmail)\\.performgroup\\.com/\" to=\"https://$1.performgroup.com/\"/></ruleset>", "<ruleset name=\"Performable.com\" default_off=\"failed ruleset test\" f=\"Performable.com.xml\"><rule from=\"^http://analytics\\.performable\\.com/\" to=\"https://analytics.performable.com/\"/></ruleset>", "<ruleset name=\"Performance Horizon Group\" platform=\"mixedcontent\" f=\"Performance-Horizon-Group.xml\"><securecookie host=\"^\\.prf\\.hn$\" name=\".*\"/><rule from=\"^http://(www\\.)?performancehorizon\\.com/\" to=\"https://$1performancehorizon.com/\"/><rule from=\"^http://(?:www\\.)?prf\\.hn/\" to=\"https://prf.hn/\"/></ruleset>", "<ruleset name=\"Performance.gov (partial)\" f=\"Performance.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://permits\\.performance\\.gov/\" to=\"https://www.permits.performance.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Performance Alley Racing (partial)\" default_off=\"failed ruleset test\" f=\"Performance_Alley_Racing.xml\"><securecookie host=\"^(?:.*\\.)?performancealley\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Performance Wheel & Tire Warehouse\" default_off=\"failed ruleset test\" f=\"Performance_Wheel_and_Tire_Warehouse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Performancing (partial)\" f=\"Performancing.xml\"><rule from=\"^http://pmetrics\\.performancing\\.com/\" to=\"https://pmetrics.performancing.com/\"/></ruleset>", "<ruleset name=\"Periscope.io\" f=\"Periscope.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Periscope.tv\" f=\"Periscope.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perishable Press.com\" f=\"Perishable_Press.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pearl Foundation (partial)\" platform=\"mixedcontent\" f=\"Perl-Foundation.xml\"><securecookie host=\"^donate\\.perlfoundation\\.org$\" name=\".*\"/><rule from=\"^http://donate\\.perlfoundation\\.org/\" to=\"https://donate.perlfoundation.org/\"/></ruleset>", "<ruleset name=\"Perl.org (partial)\" f=\"Perl.org.xml\"><securecookie host=\"^rt\\.perl\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?perl\\.org/\" to=\"https://www.perl.org/\"/><rule from=\"^http://log\\.perl\\.org/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/><rule from=\"^http://(pause|rt)\\.perl\\.org/\" to=\"https://$1.perl.org/\"/></ruleset>", "<ruleset name=\"Perle.com (partial)\" f=\"Perle.com.xml\"><exclusion pattern=\"^http://estore\\.perle\\.com/+(?!images/|scripts/|styles/|themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perlentaucher.de\" f=\"Perlentaucher.de.xml\"><securecookie host=\"^\\.perlentaucher\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perot.me\" f=\"Perot.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perry Ellis.com (partial)\" default_off=\"failed ruleset test\" f=\"Perry_Ellis.com.xml\"><exclusion pattern=\"^http://es-us\\.perryellis\\.com/+(?!_onelink_/|(?:account|orderhistory)(?:$|[?/])|favicon\\.ico|on/|pAckAgEs/)\"/><securecookie host=\"^www\\.perryellis\\.com$\" name=\".+\"/><rule from=\"^http://perryellis\\.com/\" to=\"https://www.perryellis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Personal Data Ecosystem Consortium (partial)\" f=\"Personal_Data_Ecosystem_Consortium.xml\"><rule from=\"^http://(?:www\\.)?p(?:de\\.cc|ersonaldataecosystem\\.org)/(\\?custom-css=|favicon\\.ico|wp-content/)\" to=\"https://secure.bluehost.com/~pdecc/$1\"/></ruleset>", "<ruleset name=\"Personal Democracy Forum\" f=\"Personal_Democracy_Forum.xml\"><securecookie host=\"^\\.personaldemocracy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Personalausweisportal.de\" f=\"Personalausweisportal.de.xml\"><securecookie host=\"^(www\\.)?personalausweisportal\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Personality Page\" f=\"PersonalityPage.xml\"><securecookie host=\"^(?:.*\\.)?personalitypage\\.com$\" name=\".+\"/><rule from=\"^http://personalitypage\\.com/\" to=\"https://www.personalitypage.com/\"/><rule from=\"^http://([^/:@]+)?\\.personalitypage\\.com/\" to=\"https://$1.personalitypage.com/\"/></ruleset>", "<ruleset name=\"Personforce clients\" default_off=\"mismatch\" f=\"Personforce-clients.xml\"><exclusion pattern=\"^http://(?:www\\.)?crunchboard\\.com/(?:build|images3?|include)/\"/><securecookie host=\"^www\\.crunchboard\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?crunchboard\\.com/\" to=\"https://www.crunchboard.com/\"/></ruleset>", "<ruleset name=\"Personforce (partial)\" platform=\"mixedcontent\" f=\"Personforce.xml\"><rule from=\"^http://(?:www\\.)?personforce\\.com/images/pencil_(add|go)\\.png$\" to=\"https://secure.personforce.com/images/pencil_$1.png\"/><rule from=\"^http://secure\\.personforce\\.com/\" to=\"https://secure.personforce.com/\"/></ruleset>", "<ruleset name=\"Pet Nanny\" f=\"Pet_Nanny.xml\"><securecookie host=\"^(?:www\\.)?pet-nanny\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pete Keen.net\" f=\"Pete_Keen.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Broderick\" default_off=\"mismatch\" f=\"Peter-Broderick.xml\"><rule from=\"^http://(?:www\\.)?peterbroderick\\.com/\" to=\"https://peterbroderick.com/~peterbro/\"/></ruleset>", "<ruleset name=\"Peter Caprioli\" f=\"Peter-Caprioli.xml\"><securecookie host=\"^(?:www\\.)?caprioli\\.se$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Aba.com\" f=\"Peter_Aba.com.xml\"><rule from=\"^http://www\\.peteraba\\.com/\" to=\"https://peteraba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Molnar.eu\" f=\"Peter_Molnar.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Odding.com\" f=\"Peter_Odding.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peterborough.gov.uk (partial)\" f=\"Peterborough.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.peterborough\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://peterborough.objective.gov.uk/portal\"/><rule from=\"^http://consult\\.peterborough\\.gov\\.uk/\" to=\"https://peterborough.objective.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petfinder.com (problematic)\" default_off=\"missing certificate chain, untrusted root\" f=\"Petfinder.com-problematic.xml\"><securecookie host=\"^profiles\\.petfinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petfinder.com (partial)\" f=\"Petfinder.com.xml\"><rule from=\"^http://petfinder\\.com/+\" to=\"https://www.petfinder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petri.com\" f=\"Petri.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petridish (mismatches)\" default_off=\"mismatch\" f=\"Petridish-mismatches.xml\"><rule from=\"^http://(?:www\\.)?petridish\\.org/\" to=\"https://www.petridish.org/\"/></ruleset>", "<ruleset name=\"Petridish (partial)\" f=\"Petridish.xml\"><rule from=\"^http://media\\.petridish\\.org/\" to=\"https://s3.amazonaws.com/media.petridish.org/\"/></ruleset>", "<ruleset name=\"Petrogen.com\" default_off=\"plaintext reply\" f=\"Petrogen.com.xml\"><securecookie host=\"^www\\.petrogen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pets at Home\" platform=\"mixedcontent\" f=\"PetsatHome.com.xml\"><rule from=\"^http://(?:www\\.)?petsathome\\.com/\" to=\"https://www.petsathome.com/\"/></ruleset>", "<ruleset name=\"Petstore.com\" f=\"Petstore.com.xml\"><securecookie host=\"^\\.petstore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?petstore\\.com/\" to=\"https://www.petstore.com/\"/></ruleset>", "<ruleset name=\"Petteri Räty (mismatches)\" default_off=\"mismatch\" f=\"Petteri-Raty-mismatches.xml\"><rule from=\"^http://gentoo\\.petteriraty\\.eu/\" to=\"https://gentoo.petteriraty.eu/\"/></ruleset>", "<ruleset name=\"Petteri Räty (partial)\" f=\"Petteri-Raty.xml\"><rule from=\"^http://(?:(mail\\.)|www\\.)?petteriraty\\.eu/\" to=\"https://$1petteriraty.eu/\"/></ruleset>", "<ruleset name=\"PewDiePie.net\" f=\"PewDiePie.net.xml\"><securecookie host=\"^(?:w*\\.)?pewdiepie\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peytz.dk\" f=\"Peytz.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pfSense.org (partial)\" f=\"PfSense.org.xml\"><securecookie host=\".+\\.pfsense\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pfefferkoerner.de\" f=\"Pfefferkoerner.de.xml\"><securecookie host=\"^(www\\.)?pfefferkoerner\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pfennigparade\" f=\"Pfennigparade.xml\"><rule from=\"^http://pfennigparade\\.de/\" to=\"https://www.pfennigparade.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pfizer.com (partial)\" f=\"Pfizer.xml\"><exclusion pattern=\"^http://www\\.pfizer\\.com/+(?!misc/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pfizer helpful answers.com\" default_off=\"mismatched\" f=\"Pfizer_helpful_answers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PfizerPro.com\" f=\"Pfizer_pro.com.xml\"><securecookie host=\"^(?:.*\\.)?pfizerpro\\.com$\" name=\".*\"/><rule from=\"^http://pfizerpro\\.com/\" to=\"https://www.pfizerpro.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pform.net\" f=\"Pform.net.xml\"><rule from=\"^http://pform\\.net/\" to=\"https://pform.net/\"/></ruleset>", "<ruleset name=\"Phabricator.com (partial)\" f=\"Phabricator.com.xml\"><securecookie host=\"^\\.secure\\.phabricator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhantomPeer.com\" f=\"PhantomPeer.com.xml\"><securecookie host=\"^(?:www\\.)?phantompeer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phaser.io (partial)\" f=\"Phaser.io.xml\"><exclusion pattern=\"^http://phaser\\.io/+(?!content/|css/|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pheedcontent.com\" f=\"Pheedcontent.com.xml\"><rule from=\"^http://www\\.pheedcontent\\.com/\" to=\"https://www.pheedo.com/\"/></ruleset>", "<ruleset name=\"Pheedo.com (partial)\" f=\"Pheedo.com.xml\"><securecookie host=\"^\\.pheedo\\.com$\" name=\"^phdo$\"/><rule from=\"^http://(www\\.)?pheedo\\.com/\" to=\"https://$1pheedo.com/\"/><rule from=\"^http://(?:ad|image)s\\.pheedo\\.com/\" to=\"https://www.pheedo.com/\"/><rule from=\"^http://(?:cforigin\\.)?feeds\\.pheedo\\.com/\" to=\"https://d2m3yj20rqnr65.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PhiHOLD.be\" default_off=\"expired\" f=\"PhiHOLD.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phil Zimmermann.com\" f=\"Phil_Zimmermann.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Philadelphia Bar Association\" f=\"Philadelphia_Bar_Association.xml\"><securecookie host=\"^(?:www\\.)?philadelphiabar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my Philanthropedia.org (false MCB)\" platform=\"mixedcontent\" f=\"Philanthropedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phillips Academy\" f=\"Phillips_Academy_Andover.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://andover\\.edu/\" to=\"https://www.andover.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Philosophers Guild.com (partial)\" default_off=\"failed ruleset test\" f=\"Philosophers_Guild.com.xml\"><exclusion pattern=\"^http://www\\.philosophersguild\\.com/+(?!blank\\.gif|favicon\\.ico|image\\.php|images/|login\\.php|register\\.php|skin/|var/)\"/><rule from=\"^http://(?:www\\.)?philosophersguild\\.com/\" to=\"https://www.philosophersguild.com/\"/></ruleset>", "<ruleset name=\"PDCnet.org (expired)\" default_off=\"expired\" f=\"Philosophy-Documentation-Center-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDCnet.org (partial)\" f=\"Philosophy-Documentation-Center.xml\"><securecookie host=\".*\\.pdcnet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Philosophy Now.org\" f=\"Philosophy_Now.org.xml\"><securecookie host=\"^philosophynow\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phils Hobby Shop.com\" f=\"Phils_Hobby_Shop.xml\"><rule from=\"^http://(?:www\\.)?philshobbyshop\\.com/\" to=\"https://www.philshobbyshop.com/\"/></ruleset>", "<ruleset name=\"PhishTank\" f=\"PhishTank.xml\"><rule from=\"^http://(?:www\\.)?phishtank\\.com/\" to=\"https://www.phishtank.com/\"/><rule from=\"^http://(?:www\\.)?data\\.phishtank\\.com/\" to=\"https://data.phishtank.com/\"/></ruleset>", "<ruleset name=\"phishd.com\" f=\"Phishd.com.xml\"><securecookie host=\"^www\\.phishd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phoenix Media Group (partial)\" f=\"Phoenix-Media-Group.xml\"><securecookie host=\"^www\\.dealchicken\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phoenix.com\" f=\"Phoenix.com.xml\"><rule from=\"^http://(?:www\\.)?phoenix\\.com/\" to=\"https://www.phoenix.com/\"/></ruleset>", "<ruleset name=\"Phoenix.edu (partial)\" default_off=\"failed ruleset test\" f=\"Phoenix.edu.xml\"><securecookie host=\"^(?:assets|ecampus)\\.phoenix\\.edu$\" name=\".+\"/><rule from=\"^http://cdn\\.assets-phoenix\\.net/\" to=\"https://cdn.assets-phoenix.net/\"/><rule from=\"^http://((?:alumni|assets|content|ecampus|portal|sso|www)\\.)?phoenix\\.edu/\" to=\"https://$1phoenix.edu/\"/><rule from=\"^http://metrics\\.phoenix\\.edu/\" to=\"https://phoenix-edu.d1.sc.omtrdc.net/\"/><rule from=\"^http://assetscdn\\.students\\.uophx\\.edu/\" to=\"https://assetscdn.students.uophx.edu/\"/></ruleset>", "<ruleset name=\"phone-analytics.com\" default_off=\"failed ruleset test\" f=\"Phone-analytics.com.xml\"><rule from=\"^http://(?:ssl\\.|www\\.)?phone-analytics\\.com/\" to=\"https://ssl.phone-analytics.com/\"/><rule from=\"^http://cdn\\.phone-analytics\\.com/\" to=\"https://cdn.phone-analytics.com/\"/></ruleset>", "<ruleset name=\"phone.coop\" f=\"Phone.coop.xml\"><securecookie host=\"^my\\.phone\\.coop$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?phone\\.coop/+([^?]*).*\" to=\"https://www.thephone.coop/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phone House.com\" f=\"Phone_House.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phoronix.com\" f=\"Phoronix-Media.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoBTC.com\" f=\"PhotoBTC.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?photobtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoBlab\" default_off=\"failed ruleset test\" f=\"PhotoBlab.xml\"><rule from=\"^http://(?:www\\.)?photoblab\\.com/\" to=\"https://photoblab.herokuapp.com/\"/></ruleset>", "<ruleset name=\"PhotoMath.net\" f=\"PhotoMath.net.xml\"><securecookie host=\"^\\.photomath\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoPay.net\" f=\"PhotoPay.net.xml\"><securecookie host=\"^\\.photopay\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoShelter (partial)\" f=\"PhotoShelter.xml\"><exclusion pattern=\"^http://blog\\.\"/><exclusion pattern=\"^http://(?:www\\.)?photoshelter\\.com/(?:about/|mkt/research/)?index(?:$|\\?)\"/><rule from=\"^http://c(?:dn|ss)\\.c\\.photoshelter\\.com/\" to=\"https://c.photoshelter.com/\"/><rule from=\"^http://(\\w+\\.)?photoshelter\\.com/\" to=\"https://$1photoshelter.com/\"/></ruleset>", "<ruleset name=\"PhotoSugar.com\" default_off=\"failed ruleset test\" f=\"PhotoSugar.com.xml\"><securecookie host=\"^(?:www)?\\.photosugar\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?photosugar\\.com/\" to=\"https://$1photosugar.com/\"/><rule from=\"^http://assets\\d?\\.photosugar\\.com/\" to=\"https://d1bcrgpvrd4eqj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Photobucket.com (partial)\" f=\"Photobucket.xml\"><exclusion pattern=\"^http://s\\d+\\.beta\\.photobucket\\.com/(?!action/|component/)\"/><exclusion pattern=\"^http://s\\d+\\.photobucket\\.com/+(?!albums/w\\d+/\\w+/pbprofilepics/)\"/><securecookie host=\"^\\.photobucket\\.com$\" name=\"^(External|Hint|puid)$\"/><rule from=\"^http://s\\d+\\.beta\\.photobucket\\.com/\" to=\"https://secure-beta.photobucket.com/\"/><rule from=\"^http://pic\\.photobucket\\.com/\" to=\"https://pbsrc.com/\"/><rule from=\"^http://s\\d+\\.photobucket\\.com/\" to=\"https://secure.photobucket.com/\"/><rule from=\"^http://(b|i\\d+|secure|secure-beta)\\.photobucket\\.com/\" to=\"https://$1.photobucket.com/\"/></ruleset>", "<ruleset name=\"Photographer.io (partial)\" default_off=\"failed ruleset test\" f=\"Photographer.io.xml\"><securecookie host=\"^(?:www)?\\.photographer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotographyTalk.com\" f=\"PhotographyTalk.com.xml\"><securecookie host=\"^(?:www)?\\.photographytalk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Photonconsulting.com\" default_off=\"failed ruleset test\" f=\"PhotonConsulting.xml\"><rule from=\"^http://(?:www\\.)?photonconsulting\\.com/\" to=\"https://www.photonconsulting.com/\"/></ruleset>", "<ruleset name=\"photoprintit.com\" f=\"Photoprintit.com.xml\"><securecookie host=\"^\\.photoprintit\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^as\\.photoprintit\\.com$\" name=\".+\"/><rule from=\"^http://(a|c)s\\.photoprintit\\.com/\" to=\"https://$1s.photoprintit.com/\"/></ruleset>", "<ruleset name=\"Photosynth.net\" f=\"Photosynth.xml\"><securecookie host=\"^(?:www\\.)?photosynth\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phpBB (partial)\" f=\"PhpBB.xml\"><exclusion pattern=\"^http://tracker\\.phpbb\\.com/plugins/servlet/gadgets/dashboard-diagnostics\"/><securecookie host=\"^(?:bamboo|wiki)?\\.phpbb\\.com$\" name=\".+\"/><rule from=\"^http://((?:area51|bamboo|blog|camo|download|tracker|wiki|www)\\.)?phpbb\\.com/\" to=\"https://$1phpbb.com/\"/></ruleset>", "<ruleset name=\"phpMyAdmin.net (partial)\" f=\"PhpMyAdmin.net.xml\"><securecookie host=\"^wiki\\.phpmyadmin\\.net$\" name=\".+\"/><rule from=\"^http://wiki\\.phpmyadmin\\.net/\" to=\"https://wiki.phpmyadmin.net/\"/></ruleset>", "<ruleset name=\"php[architect] (partial)\" f=\"Phparchitect.xml\"><exclusion pattern=\"^http://(?:codeworks\\.|www\\.)?phparch\\.com/(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^tek13\\.phparch\\.com$\" name=\".+\"/><rule from=\"^http://((?:codeworks|summits|tek13|www)\\.)?phparch\\.com/\" to=\"https://$1phparch.com/\"/><rule from=\"^http://tek\\.phparch\\.com/wp-content/\" to=\"https://tek13.phparch.com/wp-content/\"/></ruleset>", "<ruleset name=\"PhpDocumentor\" f=\"Phpdoc.org.xml\"><securecookie host=\"^(www\\.|demo\\.|manual\\.|pear\\.|qa\\.)?phpdoc\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phusion Passenger.com\" f=\"Phusion_Passenger.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Physics Forums.com\" f=\"Physics_Forums.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piatnik Deutschland\" f=\"Piatnik.de.xml\"><rule from=\"^http://piatnik\\.de/\" to=\"https://piatnik.de/\"/></ruleset>", "<ruleset name=\"Piatt County Journal-Republican (partial)\" f=\"Piatt_County_Journal-Republican.xml\"><rule from=\"^http://(?:www\\.)?journal-republican\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.journal-republican.com/$1\"/></ruleset>", "<ruleset name=\"Piazza.com\" f=\"Piazza.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Picatcha (partial)\" f=\"Picatcha.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pickaweb (partial)\" f=\"Pickaweb.xml\"><rule from=\"^http://(www\\.)?pickaweb\\.co\\.uk/(.+\\.htm|billing/(?!index).+\\.php|css/|favicon\\.ico|images/|js/)\" to=\"https://$1pickaweb.co.uk/$2\"/><rule from=\"^http://support\\.pickaweb\\.co\\.uk/(assets/)\" to=\"https://app.sirportly.com/$2\"/></ruleset>", "<ruleset name=\"picload.org\" f=\"Picload.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PicnicHealth.com\" f=\"PicnicHealth.com.xml\"><securecookie host=\"^\\.?picnichealth\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pico-app.com\" f=\"Pico-app.com.xml\"><securecookie host=\"^\\.pico-app\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PicoMoney\" default_off=\"failed ruleset test\" f=\"PicoMoney.xml\"><securecookie host=\"^\\.?picomoney\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PicoStocks.com\" default_off=\"mismatched, self-signed\" f=\"PicoStocks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Picoville.com\" f=\"Picoville.com.xml\"><securecookie host=\"^\\.?picoville\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Picsity.com (partial)\" default_off=\"failed ruleset test\" f=\"Picsity.com.xml\"><securecookie host=\"^picsity\\.com$\" name=\".+\"/><securecookie host=\"^\\.picsity\\.com$\" name=\"^_ga$\"/><rule from=\"^http://(?:ps-assets\\.|(www\\.))?picsity\\.com/\" to=\"https://$1picsity.com/\"/></ruleset>", "<ruleset name=\"Pictomania\" default_off=\"expired, mismatched, self-signed\" platform=\"mixedcontent\" f=\"Pictomania.xml\"><exclusion pattern=\"^http://(?:www\\.)?pic(?:shareunit|tomania)\\.com/env/.+\\.(?:gif|jpe?g|png)(?:$|\\?)\"/><securecookie host=\"^pic(?:shareunit|tomania)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pic(shareunit|tomania)\\.com/\" to=\"https://pic$1.com/\"/></ruleset>", "<ruleset name=\"Pictos (partial)\" f=\"Pictos.xml\"><securecookie host=\"^my\\.pictos\\.cc$\" name=\".+\"/><rule from=\"^http://(get|www\\.get|my)\\.pictos\\.cc/\" to=\"https://$1.pictos.cc/\"/></ruleset>", "<ruleset name=\"Pictshare.net\" f=\"Pictshare.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidg.in\" f=\"Pidg.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidgin.im\" f=\"Pidgin.xml\"><securecookie host=\"^developer\\.pidgin\\.im$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PikPok.com\" f=\"PikPok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pilgrimage Software.com\" default_off=\"missing certificate chain\" f=\"Pilgrimage_Software.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pimg.net\" f=\"Pimg.net.xml\"><rule from=\"^http://([\\w-]+)\\.pimg\\.net/\" to=\"https://$1.pimg.net/\"/></ruleset>", "<ruleset name=\"pimg.tw\" f=\"Pimg.tw.xml\"><rule from=\"^http://(imageproxy|pic|s\\d*)\\.pimg\\.tw/\" to=\"https://$1.pimg.tw/\"/></ruleset>", "<ruleset name=\"Pinboard.in\" f=\"Pinboard.xml\"><securecookie host=\"^(?:www\\.)?pinboard\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PineGram.com\" default_off=\"failed ruleset test\" f=\"PineGram.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pinescharter.net (partial)\" f=\"Pinescharter.net.xml\"><rule from=\"^http://(www\\.)?pinescharter\\.net/(DesktopModules/|favicon\\.ico|images/|js/|[pP]ortals/|Resources/|SiteLogin(?:$|\\?|/)|(?:Telerik\\.Web\\.UI\\.)?WebResource\\.axd)\" to=\"https://$1pinescharter.net/$2\"/></ruleset>", "<ruleset name=\"Ping-Fast.com\" default_off=\"mismatched\" f=\"Ping-Fast.com.xml\"><securecookie host=\"^www\\.ping-fast\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ping-fast\\.com/\" to=\"https://www.ping-fast.com/\"/></ruleset>", "<ruleset name=\"Ping.fm (expired)\" default_off=\"cert expired\" f=\"Ping.fm.xml\"><rule from=\"^http://(?:www\\.)?ping\\.fm/\" to=\"https://ping.fm/\"/></ruleset>", "<ruleset name=\"ping.gg\" f=\"Ping.gg.xml\"><rule from=\"^http://ping\\.gg/\" to=\"https://ping.gg/\"/></ruleset>", "<ruleset name=\"PingOne.com\" default_off=\"failed ruleset test\" f=\"PingOne.xml\"><securecookie host=\"^(?:admin|www)\\.pingone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ping Identity\" f=\"Ping_Identity.xml\"><securecookie host=\"^(?:connect|www)\\.pingidentity\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pingidentity\\.com/\" to=\"https://www.pingidentity.com/\"/><rule from=\"^http://connect\\.pingidentity\\.com/\" to=\"https://connect.pingidentity.com/\"/></ruleset>", "<ruleset name=\"Pingability.com\" default_off=\"failed ruleset test\" f=\"Pingability.com.xml\"><securecookie host=\"^(?:www\\.)?pingability\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pingability\\.com/\" to=\"https://pingability.com/\"/></ruleset>", "<ruleset name=\"Pingdom.net\" f=\"Pingdom.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingdom.com (partial)\" f=\"Pingdom.xml\"><securecookie host=\"^(?:support)?\\.pingdom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingless (partial)\" f=\"Pingless.xml\"><rule from=\"^http://(www\\.)?pingless\\.co\\.il/(agent_login|css/|default\\.php\\?(?:agent_login|make_money|order|support)|epanel2|favicon\\.ico|framestats|images/|make_money|\\?order|support)\" to=\"https://$1pingless.co.uk/$2\"/></ruleset>", "<ruleset name=\"pingupod.de\" f=\"Pingupod.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingxx.com (partial)\" f=\"Pingxx.com.xml\"><securecookie host=\"^(?:^|\\.)pingxx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinimg.com\" f=\"Pinimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PinkNews.co.uk\" f=\"PinkNews.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pink Paislee.com\" default_off=\"mismatched\" f=\"Pink_Paislee.xml\"><securecookie host=\"^(?:\\.|www\\.)?pinkpaislee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinkbike (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Pinkbike.xml\"><securecookie host=\"^\\.pinkbike\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinme.ru (partial)\" f=\"Pinme.ru.xml\"><rule from=\"^http://cdn-pus-\\d\\.pinme\\.ru/\" to=\"https://d2jjq1r8l0rsro.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Pinocc.io (partial)\" f=\"Pinocc.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.pinocc\\.io/\" to=\"https://pinocc.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinsent Masons (partial)\" f=\"Pinsent_Masons.xml\"><rule from=\"^http://extranets\\.pinsentmasons\\.com/\" to=\"https://extranets.pinsentmasons.com/\"/></ruleset>", "<ruleset name=\"Pinta-Outlet.fi\" f=\"Pinta-Outlet.fi.xml\"><rule from=\"^http://(?:www\\.)?pinta-outlet\\.fi/\" to=\"https://pinta-outlet.fi/\"/></ruleset>", "<ruleset name=\"Pinterest.com (partial)\" f=\"Pinterest.xml\"><securecookie host=\"^\\.pinterest\\.com$\" name=\"^(?:__utm\\w|_zendesk_session|_zendesk_shared_session)$\"/><securecookie host=\"^(?:\\w\\w\\.)?help\\.pinterest\\.com$\" name=\".+\"/><rule from=\"^http://blog-assets\\.pinterest\\.com/\" to=\"https://d5eppwnwxs8d9.cloudfront.net/\"/><rule from=\"^http://media-cache-ec[01]\\.pinterest\\.com/\" to=\"https://s-media-cache-ec0.pinimg.com/\"/><rule from=\"^http://passets-(?:ak|lt)\\.pinterest\\.com/\" to=\"https://s-passets-cache-ak0.pinimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pipedot.org\" f=\"Pipedot.org.xml\"><securecookie host=\"^\\.?pipedot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pipl (partial)\" f=\"Pipl.xml\"><securecookie host=\"^\\.pipl\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pipping.org\" default_off=\"mismatch, self-signed\" f=\"Pipping.org.xml\"><rule from=\"^http://(?:www\\.)?pipping\\.org/\" to=\"https://pipping.org/\"/></ruleset>", "<ruleset name=\"Piquadro\" default_off=\"breaks images\" f=\"Piquadro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateHD.com\" f=\"PirateHD.com.xml\"><securecookie host=\"^\\.?piratehd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateLeaks.cz (partial)\" f=\"PirateLeaks.xml\"><exclusion pattern=\"^http://web\\.pirateleaks\\.cz/+(?!$|\\?)\"/><rule from=\"^http://web\\.pirateleaks\\.cz/.*\" to=\"https://pirati.cz/\"/></ruleset>", "<ruleset name=\"PiratePad.ca\" default_off=\"expired\" f=\"PiratePad.ca.xml\"><securecookie host=\"^(?:www\\.)?piratepad\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party (mismatches)\" default_off=\"mismatch, self-signed\" f=\"PirateParty-mismatches.xml\"><rule from=\"^http://(?:www\\.)?piraten-mfr\\.de/\" to=\"https://piraten-mfr.de/\"/></ruleset>", "<ruleset name=\"Pirate Party\" f=\"PirateParty.xml\"><rule from=\"^http://(?:www\\.)?remixdepolitiek\\.nl/\" to=\"https://www.piratenpartij.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateTimes.net\" default_off=\"mismatched\" f=\"PirateTimes.xml\"><securecookie host=\"^(?:www\\.)?piratetimes\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate IRC.net (partial)\" f=\"Pirate_IRC.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Linux.org\" default_off=\"expired\" f=\"Pirate_Linux.org.xml\"><securecookie host=\"^(?:www\\.)?piratelinux\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.ca\" f=\"Pirate_Party.ca.xml\"><securecookie host=\"^www\\.pirateparty\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.org.au (partial)\" f=\"Pirate_Party.org.au.xml\"><securecookie host=\"^\\.pirateparty\\.org\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.org.uk\" f=\"Pirate_Party.org.uk.xml\"><securecookie host=\"^(?:.*\\.)?pirateparty\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Oberpfalz.de\" default_off=\"mismatched\" f=\"Piraten-Oberpfalz.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Schwaben.de\" default_off=\"mismatched\" f=\"Piraten-Schwaben.de.xml\"><securecookie host=\"^(?:.*\\.)?piraten-schwaben\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Ufr.de\" f=\"Piraten-Ufr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenlogin.de\" default_off=\"expired\" f=\"Piratenlogin.de.xml\"><securecookie host=\"^(?:www\\.)?piratenlogin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei-bayern.de (partial)\" f=\"Piratenpartei-bayern.de.xml\"><securecookie host=\"^(?:.*\\.)?piratenpartei-bayern\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei.at\" f=\"Piratenpartei.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei.de (partial)\" f=\"Piratenpartei.de.xml\"><securecookie host=\"^(?:.*\\.)?piratenpartei\\.de$\" name=\".*\"/><rule from=\"^http://oberbayern\\.piratenpartei\\.de/\" to=\"https://oberbayern.piratenpartei-bayern.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirati.cz\" f=\"Pirati.cz.xml\"><securecookie host=\".+\\.pirati\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet.se (false MCB)\" platform=\"mixedcontent\" f=\"Piratpartiet.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet\" f=\"Piratpartiet.xml\"><securecookie host=\"^(arbeidskontoret|wiki|www)\\.piratpartiet\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piriform (partial)\" f=\"Piriform.xml\"><securecookie host=\"^\\.secure\\.piriform\\.com$\" name=\".+\"/><rule from=\"^http://s1\\.pir\\.fm/\" to=\"https://d3sg17i8imdw59.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?piriform\\.com/\" to=\"https://www.piriform.com/\"/><rule from=\"^http://download\\.piriform\\.com/\" to=\"https://d1k4dgg08m176h.cloudfront.net/\"/><rule from=\"^http://secure\\.piriform\\.com/\" to=\"https://secure.piriform.com/\"/><rule from=\"^http://static\\.piriform\\.com/\" to=\"https://d3dsdp2n8y8ktk.cloudfront.net/\"/><rule from=\"^http://support\\.piriform\\.com/(?=generated/|images/|system/)\" to=\"https://piriform.zendesk.com/\"/></ruleset>", "<ruleset name=\"Piscatus.se\" default_off=\"failed ruleset test\" f=\"Piscatus.se.xml\"><rule from=\"^http://www\\.piscatus\\.se/\" to=\"https://www.piscatus.se/\"/><rule from=\"^http://piscatus\\.se/\" to=\"https://piscatus.se/\"/></ruleset>", "<ruleset name=\"Piston Cloud Computing\" default_off=\"failed ruleset test\" f=\"Piston_Cloud_Computing.xml\"><rule from=\"^http://(?:www\\.)?pistoncloud\\.com/\" to=\"https://www.pistoncloud.com/\"/></ruleset>", "<ruleset name=\"Post-Gazette.com (partial)\" f=\"Pittsburgh-Post-Gazette.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://oascentral\\.post-gazette\\.com/\" to=\"https://oasc17.247realmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pittsburgh Massage and Wellness.com\" f=\"Pittsburgh_Massage_and_Wellness.com.xml\"><securecookie host=\"^\\.pittsburghmassageandwellness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pivotal.io (partial)\" f=\"Pivotal.xml\"><exclusion pattern=\"^http://blog\\.pivotal\\.io/+(?!feed$|external/|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:console|login)\\.run\\.pivotal\\.io$\" name=\".+\"/><rule from=\"^http://docs\\.pivotal\\.io/\" to=\"https://cf-p1-docs-prod.cfapps.io/\"/><rule from=\"^http://docs\\.run\\.pivotal\\.io/\" to=\"https://docs-runpivotal-production.cfapps.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pivotal Labs (partial)\" f=\"Pivotal_Labs.xml\"><rule from=\"^http://(www\\.)?pivotallabs\\.com/(image|stylesheet)s/\" to=\"https://$1pivotallabs.com/$2s/\"/><rule from=\"^http://assets\\.pivotallabs\\.com/\" to=\"https://s3.amazonaws.com/assets.pivotallabs.com/\"/></ruleset>", "<ruleset name=\"Pivotal Tracker.com (partial)\" f=\"Pivotaltracker.xml\"><exclusion pattern=\"^http://www\\.pivotaltracker\\.com/+(?!assets/|favicon\\.ico|(?:help|signin)(?:$|[?/])|images/|n/|signup/)\"/><rule from=\"^http://status\\.pivotaltracker\\.com/\" to=\"https://pivotaltracker.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piwik.org (partial)\" f=\"Piwik.org.xml\"><securecookie host=\"^(?:.+\\.)?piwik\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PixFuture (partial)\" f=\"PixFuture.xml\"><rule from=\"^http://ax-d\\.pixfuture\\.net/\" to=\"https://pixfuture-d3.openxenterprise.com/\"/><rule from=\"^http://portal\\.pixfuture\\.net/\" to=\"https://pixfuture-ui3.openxenterprise.com/\"/></ruleset>", "<ruleset name=\"pixcept.de\" f=\"Pixcept.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PixelX.de (partial)\" f=\"PixelX.de.xml\"><exclusion pattern=\"^http://(?:blog|piwik)\\.pixelx\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixel Exit.com\" f=\"Pixel_Exit.com.xml\"><rule from=\"^http://(?:www\\.)?pixelexit\\.com/\" to=\"https://pixelexit.com/\"/></ruleset>", "<ruleset name=\"Pixelated-Project.org (partial)\" f=\"Pixelated-Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixelh8\" default_off=\"failed ruleset test\" f=\"Pixelh8.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixeline.be\" f=\"Pixeline.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixfs.net\" f=\"Pixfs.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixiq (partial)\" f=\"Pixiq.xml\"><rule from=\"^http://woofie[1-4]\\.pixiq\\.com/\" to=\"https://d1xlgqsil28g2u.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Pixlr (partial)\" platform=\"mixedcontent\" f=\"Pixlr.xml\"><securecookie host=\"^(?:.*\\.)?pixlr\\.com$\" name=\".*\"/><rule from=\"^http://i\\.imm\\.io/\" to=\"https://s3.amazonaws.com/i.imm.io/\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?pixlr\\.com/\" to=\"https://$1pixlr.com/\"/><rule from=\"^http://blog\\.pixlr\\.com/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/><rule from=\"^http://support\\.pixlr\\.com/(assets/|favicon\\.png)\" to=\"https://getsatisfaction.com/$1\"/></ruleset>", "<ruleset name=\"pixnet.cc\" f=\"Pixnet.cc.xml\"><securecookie host=\"^\\.panel\\.pixnet\\.cc$\" name=\".+\"/><rule from=\"^http://panel\\.pixnet\\.cc/\" to=\"https://panel.pixnet.cc/\"/></ruleset>", "<ruleset name=\"Pixnet.net (partial)\" f=\"Pixnet.net.xml\"><exclusion pattern=\"^http://www\\.pixnet\\.net/(?!favicon\\.ico)\"/><rule from=\"^http://pixnet\\.net/.*\" to=\"https://www.pixnet.net/\"/><rule from=\"^http://(channel|seven-in-one-elections\\.events|www)\\.pixnet\\.net/\" to=\"https://$1.pixnet.net/\"/></ruleset>", "<ruleset name=\"Pixoto\" f=\"Pixoto.xml\"><securecookie host=\"^www\\.pixoto\\.com$\" name=\".+\"/><rule from=\"^http://pixoto\\.com/\" to=\"https://www.pixoto.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pizza.de\" f=\"Pizza.de.xml\"><securecookie host=\"^\\.pizza\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizza.fr\" f=\"Pizza.fr.xml\"><securecookie host=\"^(?:w*\\.)?pizza\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizza Charts.com\" f=\"Pizza_Charts.com.xml\"><securecookie host=\"^\\.?pizzacharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizzahut UK\" platform=\"mixedcontent\" f=\"Pizzahut.xml\"><rule from=\"^http://(?:www\\.)?pizzahut\\.co\\.uk/\" to=\"https://www.pizzahut.co.uk/\"/><rule from=\"^http://(delivery)\\.pizzahut\\.co\\.uk/\" to=\"https://$1.pizzahut.co.uk/\"/></ruleset>", "<ruleset name=\"Pkr.com\" f=\"Pkr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pl.vc\" f=\"Pl.vc.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlaceIMG.com\" default_off=\"failed ruleset test\" f=\"PlaceIMG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Placehold.it\" f=\"Placehold.it.xml\"><securecookie host=\"^\\.placehold\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlacesOnline.com (partial)\" f=\"PlacesOnline.com.xml\"><exclusion pattern=\"^http://www\\.placesonline\\.com/+(?!favicon\\.ico|images/)\"/><rule from=\"^http://placesonline\\.com/\" to=\"https://www.placesonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planboard app.com\" f=\"Planboard_app.com.xml\"><securecookie host=\"^\\.planboardapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet-Source-Code.com\" default_off=\"failed ruleset test\" f=\"Planet-Source-Code.com.xml\"><securecookie host=\"^(?:www\\.)?planet-source-code\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet-Work\" default_off=\"failed ruleset test\" f=\"Planet-Work.xml\"><securecookie host=\"^webmail\\.planet-work\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?planet-work\\.(?:com|fr)/\" to=\"https://www.planet-work.com/\"/><rule from=\"^http://(clients|css|webmail|www3)\\.planet-work\\.com/\" to=\"https://$1.planet-work.com/\"/></ruleset>", "<ruleset name=\"Planet-energy.de\" f=\"Planet-energy.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet.com\" f=\"Planet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet3dnow.\" f=\"Planet3dnow.de.xml\"><rule from=\"^http://www\\.planet3dnow\\.de/\" to=\"https://www.planet3dnow.de/\"/></ruleset>", "<ruleset name=\"PlanetLab (mismatches)\" default_off=\"mismatch\" f=\"PlanetLab-mismatches.org.xml\"><rule from=\"^http://monitor\\.planet-lab\\.org/\" to=\"https://monitor.planet-lab.org/\"/></ruleset>", "<ruleset name=\"PlanetLab (partial)\" f=\"PlanetLab.org.xml\"><securecookie host=\"^.*\\.planet-lab\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlanetRomeo\" f=\"PlanetRomeo.xml\"><rule from=\"^http://(?:www\\.)?(?:gay|planet)romeo\\.com/\" to=\"https://www.planetromeo.com/\"/></ruleset>", "<ruleset name=\"Planet Discover\" default_off=\"failed ruleset test\" f=\"Planet_Discover.xml\"><securecookie host=\"^(?:.*\\.)?planetdiscover\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]\\.)?planetdiscover\\.com/\" to=\"https://$1planetdiscover.com/\"/></ruleset>", "<ruleset name=\"Planet Emu.net\" default_off=\"expired, mismatched, self-signed\" f=\"Planet_Emu.net.xml\"><securecookie host=\"^forums\\.planetemu\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?planetemu\\.net/\" to=\"https://www.planetemu.net/\"/><rule from=\"^http://forums\\.planetemu\\.net/\" to=\"https://forums.planetemu.net/\"/></ruleset>", "<ruleset name=\"Gnuheter.com\" f=\"Planet_Gnuheter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet KDE.org\" f=\"Planet_KDE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet Minecraft.com (mismatched)\" default_off=\"mismatched\" f=\"Planet_Minecraft.com-problematic.xml\"><rule from=\"^http://cdn2?\\.planetminecraft\\.com/\" to=\"https://834783812.r.cdn77.net/\"/></ruleset>", "<ruleset name=\"Planet Minecraft.com (partial)\" f=\"Planet_Minecraft.com.xml\"><rule from=\"^http://static\\.planetminecraft\\.com/\" to=\"https://static.planetminecraft.com/\"/></ruleset>", "<ruleset name=\"planetlan.com (partial)\" f=\"Planetlan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planned Parenthood\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Planned-Parenthood.xml\"><rule from=\"^http://(?:www\\.)?plannedparenthood\\.org/\" to=\"https://www.plannedparenthood.org/\"/></ruleset>", "<ruleset name=\"PlannedGiving.com\" f=\"PlannedGiving.com.xml\"><securecookie host=\"^\\.www\\.plannedgiving\\.com$\" name=\".+\"/><rule from=\"^http://plannedgiving\\.com/\" to=\"https://www.plannedgiving.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plant-World-Seeds.com (partial)\" f=\"Plant-World-Seeds.com.xml\"><rule from=\"^http://(?:www\\.)?plant-world-seeds\\.com/(?=favicon\\.ico|images/|store/checkout(?:$|[?/])|stylesheets/)\" to=\"https://www.plant-world-seeds.com/\"/></ruleset>", "<ruleset name=\"PlantCommunity.de\" default_off=\"failed ruleset test\" f=\"PlantCommunity.de.xml\"><securecookie host=\"^(?:www\\.)?plantcommunity\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlantSolution.de (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"PlantSolution.de-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.plantsolution\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?plantsolution\\.de/\" to=\"https://www.plantsolution.de/\"/></ruleset>", "<ruleset name=\"PlantSolution.de (partial)\" default_off=\"failed ruleset test\" f=\"PlantSolution.de.xml\"><rule from=\"^http://(?:www\\.)?plantsolution\\.de/(?=favicon\\.ico|images/|libraries/|media/|modules/|/?plugins/|templates/)\" to=\"https://www.plantsolution.de/\"/></ruleset>", "<ruleset name=\"plantappstore.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Plantappstore.com-falsemixed.xml\"><securecookie host=\"^(?:\\.|www\\.)?plantappstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plantappstore.com (partial)\" f=\"Plantappstore.com.xml\"><rule from=\"^http://(www\\.)?plantappstore\\.com/(?=catalog/|favicon\\.ico|images/)\" to=\"https://$1plantappstore.com/\"/></ruleset>", "<ruleset name=\"Plantronics\" f=\"Plantronics.xml\"><securecookie host=\"^(?:www)?\\.plantronics\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?plantronics\\.com/\" to=\"https://www.plantronics.com/\"/></ruleset>", "<ruleset name=\"Plastc.com\" f=\"Plastc.com.xml\"><securecookie host=\"^(?:www)?\\.plastc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plasti Dip Uruguay.com\" default_off=\"failed ruleset test\" f=\"Plasti_Dip_Uruguay.com.xml\"><securecookie host=\"^\\.plastidipuruguay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plastic-Bin.com\" f=\"Plastic-Bin.com.xml\"><securecookie host=\"^\\.plastic-bin\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(secure\\.)?plastic-bin\\.com/\" to=\"https://$1$2plastic-bin.com/\"/></ruleset>", "<ruleset name=\"Platform.sh\" f=\"Platform.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platform Admin.com\" f=\"Platform_Admin.com.xml\"><rule from=\"^http://www\\.platformadmin\\.com/\" to=\"https://platformadmin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plati.ru\" default_off=\"self-signed\" f=\"Plati.ru.xml\"><securecookie host=\"^www\\.plati\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:exaccess|plati)\\.ru/\" to=\"https://www.plati.ru/\"/></ruleset>", "<ruleset name=\"Platinum Performance.com\" f=\"Platinum_Performance.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://platinumperformance\\.com/\" to=\"https://www.platinumperformance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platinum Skin Care.com (partial)\" f=\"Platinum_Skin_Care.com.xml\"><rule from=\"^http://(www\\.)?platinumskincare\\.com/(?=(?:account|checkout|custom\\.css|login|register|send-password)\\.aspx|downlds/|favicon\\.ico|img/|mts/|scripts/|themes/)\" to=\"https://$1platinumskincare.com/\"/></ruleset>", "<ruleset name=\"Platt.com\" f=\"Platt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platt static.com\" f=\"Platt_static.com.xml\"><rule from=\"^http://images\\.plattstatic\\.com/\" to=\"https://images.plattstatic.com/\"/></ruleset>", "<ruleset name=\"Plausible.coop\" f=\"Plausible.coop.xml\"><securecookie host=\"^(?:www\\.)?plausible\\.coop$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Play0ad.com\" f=\"Play0ad.com.xml\"><securecookie host=\"^(www\\.)?play0ad\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayOnLinux.com\" f=\"PlayOnLinux.com.xml\"><securecookie host=\"^(?:www\\.)?playonlinux\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?playonlinux\\.com/\" to=\"https://www.playonlinux.com/\"/></ruleset>", "<ruleset name=\"PlayStation.net\" f=\"PlayStation.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation.com (partial)\" f=\"PlayStation.xml\"><exclusion pattern=\"^http://blog\\.us\\.playstation\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^(?!blog\\.us\\.)\\w\" name=\".\"/><rule from=\"^http://metrics\\.aem\\.playstation\\.com/\" to=\"https://smetrics.aem.playstation.com/\"/><rule from=\"^http://static\\.blog\\.playstation\\.com/\" to=\"https://blog.us.playstation.com/\"/><rule from=\"^http://(?:www\\.)?us\\.playstation\\.com/$\" to=\"https://www.playstation.com/en-us/home/\"/><rule from=\"^http://(?:www\\.)?us\\.playstation\\.com/support/?\" to=\"https://support.us.playstation.com/\"/><exclusion pattern=\"^http://(?:www\\.)?us\\.playstation\\.com/(?!$|support/?(\\?.*)?$)\"/><rule from=\"^http://cdn\\.us\\.playstation\\.com/\" to=\"https://secure.cdn.us.playstation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation Network.com\" f=\"PlayStation_Network.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayVid.com (partial)\" f=\"PlayVid.com.xml\"><exclusion pattern=\"^http://www\\.playvid\\.com/+(?!css/|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Play Framework.com\" f=\"Play_Framework.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playboy.com (partial)\" f=\"Playboy.com.xml\"><securecookie host=\"^\\.playboy\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playboy Store.com\" default_off=\"missing certificate chain\" f=\"Playboy_Store.com.xml\"><securecookie host=\"^\\.www\\.playboystore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Player Attack (partial)\" f=\"Player-Attack.xml\"><rule from=\"^http://(www\\.)?playerattack\\.com/(wp-content/)\" to=\"https://$1playerattack.com/$2\"/></ruleset>", "<ruleset name=\"Player.FM (partial)\" f=\"Player.FM.xml\"><exclusion pattern=\"^http://blog\\.player\\.fm/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.player\\.fm$\" name=\".+\"/><rule from=\"^http://((?:a\\d|blog|suggest)\\.)?player\\.fm/\" to=\"https://$1player.fm/\"/></ruleset>", "<ruleset name=\"PlayerAuctions.com\" f=\"PlayerAuctions.com.xml\"><securecookie host=\"^www\\.playerauctions\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayerIO.com\" default_off=\"failed ruleset test\" f=\"PlayerIO.com.xml\"><securecookie host=\"^(?:www\\.)?playerio\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?player\\.io/([^?]*)(?:\\?.*)?\" to=\"https://playerio.com/$1\"/><rule from=\"^http://(www\\.)?playerio\\.com/\" to=\"https://$1playerio.com/\"/></ruleset>", "<ruleset name=\"Playfire (partial)\" default_off=\"failed ruleset test\" f=\"Playfire.com.xml\"><rule from=\"^http://(?:www\\.)?forums\\.playfire\\.com/\" to=\"https://www.forums.playfire.com/\"/><rule from=\"^http://(?:www\\.)?playfire\\.com/\" to=\"https://www.playfire.com/\"/></ruleset>", "<ruleset name=\"playgrub.com (partial)\" f=\"Playgrub.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playlists.net\" default_off=\"expired, mismatched\" f=\"Playlists.net.xml\"><securecookie host=\"^(?:www\\.)?playlists\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?playlists\\.net/\" to=\"https://playlists.net/\"/></ruleset>", "<ruleset name=\"Playmates.com\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Playmates.com.xml\"><rule from=\"^http://playmates\\.com/\" to=\"https://www.playmates.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plays.TV\" f=\"Plays.tv.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca|cohorttrack)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playwire.com (partial)\" f=\"Playwire.xml\"><rule from=\"^http://support\\.playwire\\.com/\" to=\"https://www.playwiresupport.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Please Ignore.com\" f=\"Please_Ignore.com.xml\"><securecookie host=\"^\\w*\\.pleaseignore\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|wiki|www|zkb)\\.)?pleaseignore\\.com/\" to=\"https://$1pleaseignore.com/\"/></ruleset>", "<ruleset name=\"Pledgie.com (partial)\" f=\"Pledgie.xml\"><rule from=\"^http://(?:www\\.)?pledgie\\.com/\" to=\"https://pledgie.com/\"/><securecookie host=\"^pledgie\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"PlentyOfFish (partial)\" default_off=\"needs testing\" f=\"PlentyOfFish.xml\"><exclusion pattern=\"^http://(?:pics\\d?|www)\\.pof\\.com/(?:$|.*\\.aspx(?:$|\\?)|thumbnails/)\"/><rule from=\"^http://(?:pics\\d?\\.|www\\.)?pof\\.com/\" to=\"https://www.pof.com/\"/><rule from=\"^http://secure\\.pof\\.com/\" to=\"https://secure.pof.com/\"/></ruleset>", "<ruleset name=\"Plex.tv\" f=\"Plex.tv.xml\"><securecookie host=\"^\\.plex\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plexapp.com (partial)\" f=\"Plexapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pliktverket.se\" default_off=\"failed ruleset test\" f=\"Pliktverket.se.xml\"><rule from=\"^http://www\\.pliktverket\\.se/\" to=\"https://www.pliktverket.se/\"/><rule from=\"^http://pliktverket\\.se/\" to=\"https://pliktverket.se/\"/></ruleset>", "<ruleset name=\"Plimus.com\" f=\"Plimus.com.xml\"><securecookie host=\"^(?:www)?\\.plimus\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?plimus\\.com/\" to=\"https://www.plimus.com/\"/></ruleset>", "<ruleset name=\"plista (partial)\" f=\"Plista.xml\"><rule from=\"^http://(?:www\\.)?plista\\.com/((?:\\w\\w/)?a(?:ccount/(?:login|forgot_pw)|dvertiser/registrations)(?:$|\\?)|ccss/|img/)\" to=\"https://www.plista.com/$1\"/><rule from=\"^http://static\\.plista\\.com/\" to=\"https://static.plista.com/\"/></ruleset>", "<ruleset name=\"Plone.org (partial)\" f=\"Plone.org.xml\"><securecookie host=\"^(?:dev\\.|\\.)?plone\\.org$\" name=\".+\"/><rule from=\"^http://((?:dev|staging|svn|www)\\.)?plone\\.org/\" to=\"https://$1plone.org/\"/></ruleset>", "<ruleset name=\"Plot.ly (partial)\" f=\"Plot.ly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ploum.net\" f=\"Ploum.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plug.dj (partial)\" f=\"Plug.dj.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlugRush.com (problematic)\" default_off=\"mismatched\" f=\"PlugRush.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlugRush.com (partial)\" f=\"PlugRush.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plug Unplug.net\" f=\"Plug_Unplug.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plugin-Planet.com\" f=\"Plugin-Planet.com.xml\"><securecookie host=\"^(?:www\\.)?plugin-planet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plumbr.eu\" f=\"Plumbr.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plurk (partial)\" f=\"Plurk.xml\"><securecookie host=\"^\\.plurk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plus.net\" default_off=\"failed ruleset test\" f=\"Plus.xml\"><securecookie host=\"^(?:.+\\.)?plus\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?plus\\.net/\" to=\"https://www.plus.net/\"/><rule from=\"^http://(portal|webmail|community|webstats)\\.plus\\.net/\" to=\"https://$1.plus.net/\"/></ruleset>", "<ruleset name=\"Plusgirot.se\" f=\"Plusgirot.se.xml\"><rule from=\"^http://www\\.plusgirot\\.se/\" to=\"https://www.plusgirot.se/\"/><rule from=\"^http://plusgirot\\.se/\" to=\"https://www.plusgirot.se/\"/></ruleset>", "<ruleset name=\"plusme.net (false MCB)\" platform=\"mixedcontent\" f=\"Plusme.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?plusme\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plusme.net (partial)\" f=\"Plusme.net.xml\"><rule from=\"^http://(www\\.)?plusme\\.net/(?=catalog/view/(?:javascript|theme)/|favicon\\.ico|image/)\" to=\"https://$1plusme.net/\"/></ruleset>", "<ruleset name=\"Plymouth.ac.uk (partial)\" f=\"Plymouth-University.xml\"><securecookie host=\"^\\.plymouth\\.ac\\.uk$\" name=\"^SSOUOPISA$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cognition\\.plymouth\\.ac\\.uk/\" to=\"https://psylin.plymouth.ac.uk/\"/><rule from=\"^https?://psychology\\.plymouth\\.ac\\.uk/\" to=\"https://psylin.plymouth.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Po.st (partial)\" f=\"Po.st.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://i\\.po\\.st/\" to=\"https://s.po.st/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pobox\" f=\"Pobox.xml\"><securecookie host=\"^\\.pobox\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PocketMatrix.com\" default_off=\"expired, self-signed\" f=\"PocketMatrix.com.xml\"><securecookie host=\"^\\.pocketmatrix\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pocketmatrix\\.com/\" to=\"https://pocketmatrix.com/\"/></ruleset>", "<ruleset name=\"Pocket Casts.com (partial)\" f=\"Pocket_Casts.com.xml\"><rule from=\"^http://(play|social)\\.pocketcasts\\.com/\" to=\"https://$1.pocketcasts.com/\"/></ruleset>", "<ruleset name=\"Pocketbook\" f=\"Pocketbook.xml\"><rule from=\"^http://(?:www\\.)?getpocketbook\\.com/\" to=\"https://getpocketbook.com/\"/></ruleset>", "<ruleset name=\"PodOmatic.com\" platform=\"mixedcontent\" f=\"PodOmatic.com.xml\"><rule from=\"^http://enterprise\\.podomatic\\.com/\" to=\"https://enterprise.podomatic.com/\"/></ruleset>", "<ruleset name=\"PodVertise\" default_off=\"mismatch, self-signed\" f=\"PodVertise.xml\"><securecookie host=\"^www\\.podvertiseonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?podvertiseonline\\.com/\" to=\"https://www.podvertiseonline.com/\"/></ruleset>", "<ruleset name=\"Pod Upti.me\" f=\"Pod_Upti.me.xml\"><securecookie host=\"^\\.podupti\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podbean.com\" f=\"Podbean.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?podbean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"podcast.at (partial)\" default_off=\"plaintext reply\" f=\"Podcast.at.xml\"><rule from=\"^http://(?:www\\.)?(?:feedarea\\.de|podcast\\.at)/(?=favicon\\.ico|images/)\" to=\"https://www.podcast.at/\"/></ruleset>", "<ruleset name=\"Poddery.com (partial)\" f=\"Poddery.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoderPDA\" f=\"PoderPDA.xml\"><securecookie host=\"^.*\\.poderpda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podio.com (partial)\" f=\"Podio.com.xml\"><exclusion pattern=\"^http://blog\\.podio\\.com/+(?!wp-content/)\"/><rule from=\"^http://status\\.podio\\.com/\" to=\"https://podio.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podnapisi\" f=\"Podnapisi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poets.org\" f=\"Poets.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pogamay.ru (partial)\" default_off=\"expired\" f=\"Pogamay.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pogo\" platform=\"mixedcontent\" f=\"Pogo.xml\"><exclusion pattern=\"http://www.pogo.com/avatar/edit.do\"/><rule from=\"^http://(?:www\\.)?pogo\\.com/\" to=\"https://www.pogo.com/\"/><rule from=\"^http://help\\.pogo\\.com/\" to=\"https://help.pogo.com/\"/><rule from=\"^http://cdn\\.pogo\\.com/\" to=\"https://www.pogo.com/\"/></ruleset>", "<ruleset name=\"Pogoplug.com (partial)\" f=\"Pogoplug.com.xml\"><exclusion pattern=\"^http://support\\.pogoplug\\.com/(?!favicon\\.ico|images/|static/)\"/><rule from=\"^http://support\\.pogoplug\\.com/\" to=\"https://pogoplug.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pointroll\" f=\"Pointroll.xml\"><securecookie host=\"^\\.pointroll\\.com$\" name=\"^PR(?:bu|go)$\"/><securecookie host=\"^(?:adportal|\\.ads)\\.pointroll\\.com$\" name=\".+\"/><rule from=\"^http://((?:adportal|ads|blogs|onpoint|spd-s|t|www)\\.)?pointroll\\.com/\" to=\"https://$1pointroll.com/\"/></ruleset>", "<ruleset name=\"PointsHound (partial)\" f=\"PointsHound.xml\"><securecookie host=\"^(?:w*\\.)?pointshound\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poivy.com\" f=\"Poivy.com.xml\"><rule from=\"^http://(?:www\\.)?poivy\\.com/\" to=\"https://www.poivy.com/\"/></ruleset>", "<ruleset name=\"Pokemon.com (partial)\" f=\"Pokemon.com.xml\"><rule from=\"^http://www\\.pokemon\\.co\\.jp/(.+/resources/|common/|images/|_personalize/\\w+/scripts/|scripts/|_sys/)\" to=\"https://www.pokemon.co.jp/$1\"/><rule from=\"^http://assets\\d*\\.pokemon\\.com/\" to=\"https://assets.pokemon.com/\"/><rule from=\"^http://sso\\.pokemon\\.com/\" to=\"https://sso.pokemon.com/\"/></ruleset>", "<ruleset name=\"Pokémon World Online\" default_off=\"failed ruleset test\" f=\"Pokemon_World_Online.xml\"><securecookie host=\"^\\.(?:forum\\.)?pokemon-world-online\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pokémon Showdown (partial)\" f=\"Pokemonshowdown.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poky\" default_off=\"failed ruleset test\" f=\"Poky.xml\"><rule from=\"^http://((?:bugzilla|git|lists|wiki|www)\\.)?pokylinux\\.org/\" to=\"https://$1pokylinux.org/\"/></ruleset>", "<ruleset name=\"Pol.dk (broken)\" default_off=\"Connection refused\" f=\"Pol.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polar Mobile\" f=\"Polar.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolarSSL\" f=\"PolarSSL.xml\"><securecookie host=\"^polarssl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolarnoPyret.se\" default_off=\"failed ruleset test\" f=\"PolarnoPyret.se.xml\"><rule from=\"^http://www\\.polarnopyret\\.se/\" to=\"https://www.polarnopyret.se/\"/><rule from=\"^http://polarnopyret\\.se/\" to=\"https://www.polarnopyret.se/\"/></ruleset>", "<ruleset name=\"Police UK\" f=\"PoliceUK.xml\"><rule from=\"^http://(www\\.)?police\\.uk/\" to=\"https://www.police.uk/\"/></ruleset>", "<ruleset name=\"Police Mutual (partial)\" f=\"Police_Mutual.xml\"><securecookie host=\"^survey\\.policemutual\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?policemutual\\.co\\.uk/(applications/|css/|images/|js/|media/|WebResource\\.axd)\" to=\"https://www.policemutual.co.uk/$1\"/><rule from=\"^http://survey\\.policemutual\\.co\\.uk/\" to=\"https://survey.policemutual.co.uk/\"/></ruleset>", "<ruleset name=\"Policia.es\" default_off=\"Cert warning\" f=\"Policia.es.xml\"><rule from=\"^http://(?:www\\.)?policia\\.es/\" to=\"https://www.policia.es/\"/></ruleset>", "<ruleset name=\"PolicyMic\" default_off=\"failed ruleset test\" f=\"PolicyMic.xml\"><securecookie host=\"^\\.policymic\\.com$\" name=\".+\"/><rule from=\"^http://((?:static|thumbs|www)\\.)?policymic\\.com/\" to=\"https://$1policymic.com/\"/><rule from=\"^http://media1\\.policymic\\.com/\" to=\"https://d12x6n4r5ixux3.cloudfront.net/\"/><rule from=\"^http://media2\\.policymic\\.com/\" to=\"https://d3hpe7wwfhob7t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Policy Review.info\" f=\"Policy_Review.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poliisi.fi\" platform=\"mixedcontent\" f=\"Poliisi.fi.xml\"><rule from=\"^http://(?:www\\.)?poliisi\\.fi/\" to=\"https://poliisi.fi/\"/></ruleset>", "<ruleset name=\"Polisforbundet.se\" platform=\"mixedcontent\" f=\"Polisforbundet.se.xml\"><rule from=\"^http://polisforbundet\\.se/\" to=\"https://www.polisforbundet.se/\"/><rule from=\"^http://www\\.polisforbundet\\.se/\" to=\"https://www.polisforbundet.se/\"/></ruleset>", "<ruleset name=\"PolitiFact (partial)\" f=\"PolitiFact.xml\"><securecookie host=\"^\\.politifact\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://metric\\.politifact\\.com/\" to=\"https://stpetersburgtimes.122.2o7.net/\"/><rule from=\"^http://static\\.politifact\\.com/\" to=\"https://s3.amazonaws.com/static.politifact.com/\"/></ruleset>", "<ruleset name=\"Political Compass.org\" f=\"Political_Compass.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Political Wire.com\" default_off=\"mismatched\" f=\"Political_Wire.com.xml\"><rule from=\"^http://(?:www\\.)?politicalwire\\.com/\" to=\"https://politicalwire.com/\"/></ruleset>", "<ruleset name=\"Politico (partial)\" default_off=\"mismatch\" f=\"Politico.xml\"><exclusion pattern=\"^http://(?:avatar|dyn|find|www2)\\.\"/><securecookie host=\"^(?:jobs)?\\.politico\\.com$\" name=\".*\"/><rule from=\"^http://politico\\.com/\" to=\"https://www.politico.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politico Pro.com\" f=\"Politico_Pro.com.xml\"><securecookie host=\"^(?:www)?\\.politicopro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoliticsHome.com\" f=\"PoliticsHome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politiken.dk (mixed content)\" f=\"Politiken.dk.xml\"><exclusion pattern=\"^http://(?:plus|shop)\\.politiken\\.dk/(?!Css/|[iI]mages/|Uploaded/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"politisktinkorrekt.info\" default_off=\"failed ruleset test\" f=\"Politisktinkorrekt.info.xml\"><rule from=\"^http://politisktinkorrekt\\.info/\" to=\"https://politisktinkorrekt.info/\"/><rule from=\"^http://www\\.politisktinkorrekt\\.info/\" to=\"https://politisktinkorrekt.info/\"/></ruleset>", "<ruleset name=\"Polity.co.uk\" f=\"Polity.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polk\" default_off=\"failed ruleset test\" f=\"Polk.xml\"><securecookie host=\"^(?:.*\\.)?polk\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?polk\\.com/\" to=\"https://www.polk.com/\"/></ruleset>", "<ruleset name=\"Poll Everywhere.com\" f=\"Poll_Everywhere.com.xml\"><securecookie host=\"^www\\.polleverywhere\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.polleverywhere\\.com/\" to=\"https://polleverywhere.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polldaddy\" f=\"Polldaddy.xml\"><exclusion pattern=\"^http://(?:i|support)\\.polldaddy\\.com/\"/><securecookie host=\".*\\.polldaddy\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^polls\\.polldaddy\\.com$\" name=\".+\"/><rule from=\"^http://i0\\.poll\\.fm/\" to=\"https://polldaddy.com/\"/><rule from=\"^http://(?:www\\.)?polldaddy\\.com/\" to=\"https://polldaddy.com/\"/><rule from=\"^http://static\\.polldaddy\\.com/\" to=\"https://secure.polldaddy.com/\"/><rule from=\"^http://([^@:\\./]+)\\.polldaddy\\.com/\" to=\"https://$1.polldaddy.com/\"/></ruleset>", "<ruleset name=\"Pollen Diary.com\" f=\"Pollen_Diary.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"polleninfo.org (partial)\" f=\"Polleninfo.org.xml\"><securecookie host=\"^www\\.polleninfo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pollenwarndienst.at\" f=\"Pollenwarndienst.at.xml\"><securecookie host=\"^www\\.pollenwarndienst\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poloniex.com\" f=\"Poloniex.com.xml\"><securecookie host=\"^\\.poloniex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polskie Radio.pl (mixed content)\" platform=\"mixedcontent\" f=\"Polskie_Radio.pl-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polskie Radio.pl (partial)\" f=\"Polskie_Radio.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poly.edu (partial)\" default_off=\"broken\" f=\"Poly.edu.xml\"><securecookie host=\"^csawctf\\.poly\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyBrowser.com\" f=\"PolyBrowser.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyGrant.com\" f=\"PolyGrant.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyU HK\" f=\"PolyU.edu.hk.xml\"><rule from=\"^http://lib\\.polyu\\.edu\\.hk/\" to=\"https://www.lib.polyu.edu.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polygon.com (partial)\" f=\"Polygon.com.xml\"><exclusion pattern=\"^http://www\\.polygon\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.polygon\\.com/comments/load_comments/\"/><exclusion pattern=\"/\\d{4}/(?:\\d\\d?/){2}\\d+/[\\w-]\"/><securecookie host=\"^\\.polygon\\.com$\" name=\"^__[qu].*\"/><rule from=\"^http://polygon\\.com/\" to=\"https://www.polygon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polymer-Project.org\" f=\"Polymer-Project.org.xml\"><rule from=\"^http://(?:www\\.)?polymer-project\\.org/\" to=\"https://www.polymer-project.org/\"/></ruleset>", "<ruleset name=\"Polytechnic University of Catalonia (mismatches)\" default_off=\"mismatch\" f=\"Polytechnic-University-of-Catalonia-mismatches.xml\"><rule from=\"^http://gentoo-euetib\\.upc\\.es/\" to=\"https://gentoo-euetib.upc.es/\"/></ruleset>", "<ruleset name=\"Polytechnic University of Catalonia (partial)\" f=\"Polytechnic-University-of-Catalonia.xml\"><securecookie host=\"^(?:.*\\.)upc\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?upc\\.(?:es|edu)/\" to=\"https://www.upc.edu/\"/><rule from=\"^http://australis\\.upc\\.es/\" to=\"https://australis.upc.es/\"/><rule from=\"^http://(\\w+\\.blog|peguera|tv)\\.upc\\.edu/\" to=\"https://$1.upc.edu/\"/></ruleset>", "<ruleset name=\"Ponemon (partial)\" f=\"Ponemon.xml\"><securecookie host=\"^rim\\.ponemon\\.org$\" name=\".+\"/><rule from=\"^http://rim\\.ponemon\\.org/\" to=\"https://rim.ponemon.org/\"/></ruleset>", "<ruleset name=\"Pony.fm\" f=\"Pony.fm.xml\"><securecookie host=\"^\\.pony\\.fm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PonyChat.net\" f=\"PonyChat.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poopl.org\" f=\"Poolp.org.xml\"><securecookie host=\"^\\.poolp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poor Man Motorsports\" f=\"Poor_Man_Motorsports.xml\"><securecookie host=\"^(?:.*\\.)?poormanmotorsports\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pop6.com\" f=\"Pop6.com.xml\"><rule from=\"^http://(?:www\\.)?pop6\\.com/\" to=\"https://secure.friendfinder.com/\"/><rule from=\"^http://graphics\\.pop6\\.com/\" to=\"https://secureimage.securedataimages.com/\"/></ruleset>", "<ruleset name=\"PopAds.net\" f=\"PopAds.xml\"><securecookie host=\".*\\.popads\\.net$\" name=\".+\"/><rule from=\"^http://c[12]\\.popads\\.net/\" to=\"https://static.popads.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopAds CDN.net\" f=\"PopAds_CDN.net.xml\"><rule from=\"^http://world\\.popadscdn\\.net/\" to=\"https://www.popads.net/\"/></ruleset>", "<ruleset name=\"PopAtomic\" default_off=\"failed ruleset test\" f=\"PopAtomic.xml\"><securecookie host=\"^(?:www\\.)?popatomic\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopCash.net\" f=\"PopCash.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopCrunch.com (partial)\" f=\"PopCrunch.com.xml\"><rule from=\"^http://(assets|pc[123]|social)\\.popcrunch\\.com/\" to=\"https://$1.popcrunch.com/\"/></ruleset>", "<ruleset name=\"popIn.cc (partial)\" f=\"PopIn.cc.xml\"><rule from=\"^http://(api|js|search)\\.popin\\.cc/\" to=\"https://$1.popin.cc/\"/><rule from=\"^http://(?:r|sync)\\.popin\\.cc/\" to=\"https://sync.popin.cc/\"/></ruleset>", "<ruleset name=\"PopSci.com (false MCB)\" platform=\"mixedcontent\" default_off=\"missing certificate chain, needs clearnet testing\" f=\"PopSci.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopSci.com (partial)\" default_off=\"missing certificate chain, needs clearnet testing\" f=\"PopSci.com.xml\"><exclusion pattern=\"http://(?:www\\.)?popsci\\.com/+(?!sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopSugar-assets.com\" f=\"PopSugar-assets.com.xml\"><rule from=\"^http://media\\d\\.popsugar-assets\\.com/(?=/*v\\d+/)\" to=\"https://sugarinc-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"PopSugar.com (partial)\" f=\"PopSugar.com.xml\"><rule from=\"^http://(?:www\\.)?popsugar\\.com/(?=v\\d+/static/)\" to=\"https://sugarinc-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"PopVote.hk\" f=\"PopVote.hk.xml\"><securecookie host=\"^(?:w*\\.)?popvote\\.hk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pop Goes the Week\" f=\"Pop_Goes_the_Week.xml\"><securecookie host=\"^(?:www\\.)?popgoestheweek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popcorn-Time.se (partial)\" f=\"Popcorn-Time.se.xml\"><exclusion pattern=\"^http://blog\\.popcorn-time\\.se/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.popcorn-time\\.se$\" name=\"^__cfduid$\"/><securecookie host=\"^\\.forum\\.popcorn-time\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopcornTime.io\" f=\"PopcornTime.io.xml\"><securecookie host=\"^\\.popcorntime\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://status\\.popcorntime\\.io/\" to=\"https://popcorntime.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popehat.com (broken)\" default_off=\"SSL error\" f=\"Popehat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poppy Sports\" platform=\"mixedcontent\" f=\"Poppy-Sports.xml\"><rule from=\"^http://(?:www\\.)?poppysports\\.com/\" to=\"https://www.poppysports.com/\"/><securecookie host=\"^\\.www\\.poppysports\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Poppy UK\" default_off=\"expired\" f=\"Poppy_UK.xml\"><securecookie host=\"^\\.poppyuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?poppyuk\\.com/\" to=\"https://poppyuk.com/\"/></ruleset>", "<ruleset name=\"Popular.com.tw\" f=\"Popular.com.tw.xml\"><rule from=\"^http://(?:www\\.)?popular\\.com\\.tw/\" to=\"https://www.popular.com.tw/\"/></ruleset>", "<ruleset name=\"PopularResistance.org\" f=\"PopularResistance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popular Mechanics (problematic)\" default_off=\"mismatched\" f=\"Popular_Mechanics.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?popularmechanics\\.com/(?!ams/|api_static/|cm/(?!popularmechanics/styles/(?:article|comments|flipbook3|global|promo_player)\\.css)|favicon\\.ico)\" to=\"https://www.popularmechanics.com/\"/></ruleset>", "<ruleset name=\"Popular Photography\" default_off=\"failed ruleset test\" f=\"Popular_Photography.xml\"><rule from=\"^http://(?:www\\.)?popphoto\\.com/\" to=\"https://www.popphoto.com/\"/><rule from=\"^http://videostore\\.popphoto\\.com/(store/checkout(?:$|\\?|/)|wp-content/)\" to=\"https://videostore.popphoto.com/$1\"/></ruleset>", "<ruleset name=\"Populis Engage.com\" f=\"Populis_Engage.com.xml\"><securecookie host=\"^\\.populisengage\\.com$\" name=\"^OAX$\"/><securecookie host=\"^oas\\.populisengage\\.com$\" name=\".+\"/><rule from=\"^http://oas\\.populisengage\\.com/\" to=\"https://oas.populisengage.com/\"/></ruleset>", "<ruleset name=\"Porlaputa.com (partial)\" default_off=\"mismatched\" f=\"Porlaputa.com.xml\"><securecookie host=\"^\\.porlaputa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?porlaputa\\.com/\" to=\"https://porlaputa.com/\"/></ruleset>", "<ruleset name=\"porn-W\" default_off=\"mismatch\" f=\"Porn-W.xml\"><securecookie host=\"^\\.porn-w\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?porn-w\\.org/\" to=\"https://porn-w.org/\"/></ruleset>", "<ruleset name=\"PornHub (partial)\" f=\"PornHub.xml\"><exclusion pattern=\"http://www\\.pornhub\\.com/+(?!favicon\\.ico|insights(?:/wp-content|/wp-includes/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PornHubLive.com\" f=\"PornHubLive.com.xml\"><securecookie host=\"^\\.pornhublive\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pornhublive\\.com/\" to=\"https://secure.pornhublive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porn Worms.com (false MCB)\" platform=\"mixedcontent\" f=\"Porn_Worms.com-falsemixed.xml\"><securecookie host=\"^(?:de|es|fr|it|jp|nl|pt|ru|www)?\\.pornworms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porn Worms.com (partial)\" f=\"Porn_Worms.com.xml\"><securecookie host=\"^cams\\.pornworms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pornel.net\" f=\"Pornel.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PortForward.com (partial)\" f=\"PortForward.com.xml\"><rule from=\"^http://(?:www\\.)?portforward\\.com/build/\" to=\"https://secure.portforward.com/build/\"/><rule from=\"^http://secure\\.portforward\\.com/\" to=\"https://secure.portforward.com/\"/></ruleset>", "<ruleset name=\"PortMorgan.com\" f=\"PortMorgan.com.xml\"><rule from=\"^http://(www\\.)?portmorgan\\.com/\" to=\"https://$1portmorgan.com//\"/></ruleset>", "<ruleset name=\"Porta.codes\" f=\"Porta.codes.xml\"><securecookie host=\"^\\.porta\\.codes$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portadi.com (partial)\" f=\"Portadi.com.xml\"><rule from=\"^http://portadi\\.com/\" to=\"https://www.portadi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porter.io\" f=\"Porter.io.xml\"><securecookie host=\"^\\.porter\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porteus-Kiosk.org\" default_off=\"self-signed\" f=\"Porteus-Kiosk.org.xml\"><rule from=\"^http://(?:www\\.)?porteus-kiosk\\.org/\" to=\"https://porteus-kiosk.org/\"/></ruleset>", "<ruleset name=\"Porteus.org (partial)\" f=\"Porteus.xml\"><securecookie host=\"^\\.forum\\.porteus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portland Mercury.com (partial)\" default_off=\"failed ruleset test\" f=\"Portland_Mercury.com.xml\"><exclusion pattern=\"^http://(?:blogtown|m|post)\\.portlandmercury\\.com/(?!binary/|captcha/|favicon\\.ico|foundation/|images/|styles/)\"/><rule from=\"^http://((?:blogtown|classifieds|m|post|www)\\.)?portlandmercury\\.com/\" to=\"https://$1portlandmercury.com/\"/></ruleset>", "<ruleset name=\"Portland State University (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Portland_State_University-falsemixed.xml\"><exclusion pattern=\"^http://(?:webdev\\.|www\\.)?pdu\\.edu/(?:css/|favicon\\.ico|images/|js/|(?:\\w+/)?(?:misc|sites)/|syndication/)\"/><securecookie host=\"^www\\.pdu\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portland State University (partial)\" f=\"Portland_State_University.xml\"><exclusion pattern=\"^http://(?:webdev\\.|www\\.)?pdu\\.edu/(?!css/|favicon\\.ico|images/|js/|(?:\\w+/)?(?:misc|sites)/|syndication/)\"/><securecookie host=\"^(?:banweb|sso|vikat)\\.pdu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:banweb|d2l|sso|vikat|webdev|www)\\.)?pdu\\.edu/\" to=\"https://$1pdu.edu/\"/><rule from=\"^http://cal\\.pdu\\.edu/.*\" to=\"https://www.google.com/calendar/hosted/pdx.edu\"/><rule from=\"^http://(?:www\\.)?library\\.pdu\\.edu/\" to=\"https://library.pdu.edu/\"/><rule from=\"^http://guides\\.library\\.pdx\\.edu/(?=css\\d*/|favicon\\.ico|include/|js\\d*/)\" to=\"https://libguides.com/\"/><rule from=\"^http://mail\\.pdu\\.edu/.*\" to=\"https://mail.google.com/a/pdu.edu\"/><rule from=\"^http://(?:www\\.)?sa\\.pdu\\.edu/\" to=\"https://www.sa.pdu.edu/\"/><rule from=\"^http://(?:www\\.)?summer\\.pdu\\.edu/.*\" to=\"https://pdu.edu/summer\"/></ruleset>", "<ruleset name=\"Portner Press.com.au\" default_off=\"expired, self-signed\" f=\"Portner_Press.com.au.xml\"><rule from=\"^http://(?:www\\.)?portnerpress\\.com\\.au/\" to=\"https://www.portnerpress.com.au/\"/></ruleset>", "<ruleset name=\"Porton CV.gov.cv\" f=\"Porton_CV.gov.cv.xml\"><rule from=\"^http://portoncv\\.gov\\.cv/\" to=\"https://portoncv.gov.cv/\"/></ruleset>", "<ruleset name=\"Portugal.gov.pt\" default_off=\"mismatched\" f=\"Portugal.gov.pt.xml\"><exclusion pattern=\"^http://www\\.portugal\\.gov\\.pt/PortalMovel/\"/><rule from=\"^http://portugal\\.gov\\.pt/.*\" to=\"https://www.portugal.gov.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoshLiving\" f=\"PoshLiving.xml\"><securecookie host=\"^(?:www)?\\.poshliving\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSoft.net (partial)\" f=\"Positive-Software.xml\"><rule from=\"^http://my\\.psoft\\.net/.*\" to=\"https://www.odin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PositiveSSL.com\" f=\"PositiveSSL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Click Marketing.com (partial)\" f=\"Post-Click-Marketing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post-Gazette.com (false MCB)\" platform=\"mixedcontent\" f=\"Post-Gazette.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://post-gazette\\.com/\" to=\"https://www.post-gazette.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post.ch\" f=\"Post.ch.xml\"><securecookie host=\"^(?:.*\\.)?post.*\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?swisspost\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?swisspost\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?postfinance\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?postsuisseid\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?swisssign\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?post\\.ch/\" to=\"https://www.post.ch/\"/><rule from=\"^http://(?:www\\.)?posta\\.ch/\" to=\"https://www.posta.ch/\"/><rule from=\"^http://(?:www\\.)?poste\\.ch/\" to=\"https://www.poste.ch/\"/><rule from=\"^http://(?:www\\.)?swisspost\\.com/\" to=\"https://www.swisspost.com/\"/><rule from=\"^http://(?:www\\.)?swisspost\\.ch/\" to=\"https://www.swisspost.ch/\"/><rule from=\"^http://secure\\.swisspostbox\\.com/\" to=\"https://secure.swisspostbox.com/\"/><rule from=\"^http://im\\.post\\.ch/\" to=\"https://im.post.ch/\"/><rule from=\"^http://(?:www\\.)?postauto\\.ch/\" to=\"https://www.postauto.ch/\"/><rule from=\"^http://postbus\\.ch/\" to=\"https://www.postbus.ch/\"/><rule from=\"^http://(?:www\\.)?mypostbusiness\\.ch/\" to=\"https://www.mypostbusiness.ch/\"/><rule from=\"^http://(?:www\\.)?postfinance\\.ch/\" to=\"https://www.postfinance.ch/\"/><rule from=\"^http://(?:www\\.)?postsuisseid\\.ch/\" to=\"https://postsuisseid.ch/\"/><rule from=\"^http://(?:www\\.)?swisssign\\.com/\" to=\"https://swisssign.com/\"/><rule from=\"^http://admin\\.omgpm\\.com/\" to=\"https://admin.omgpm.com/\"/></ruleset>", "<ruleset name=\"PostNord.se\" f=\"PostNord.se.xml\"><securecookie host=\"^www\\.postnord\\.se$\" name=\".+\"/><rule from=\"^http://postnord\\.se/\" to=\"https://www.postnord.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostPoints Rewards.com\" f=\"PostPoints_Rewards.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Affiliate Network.com\" f=\"Post_Affiliate_Network.com.xml\"><securecookie host=\"^(?:www\\.)?postaffiliatenetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Affiliate Pro.com\" f=\"Post_Affiliate_Pro.com.xml\"><securecookie host=\"^(?:www\\.)?postaffiliatepro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Office (partial)\" default_off=\"failed ruleset test\" f=\"Post_Office.xml\"><securecookie host=\"^postoffice\\.insure-systems\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^account\\.mypostoffice\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.pofssavecredit\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.postoffice\\.travelmoneycard\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://postoffice\\.insure-systems\\.co\\.uk/\" to=\"https://postoffice.insure-systems.co.uk/\"/><rule from=\"^http://account\\.mypostoffice\\.co\\.uk/\" to=\"https://account.mypostoffice.co.uk/\"/><rule from=\"^http://www\\.pofssavecredit\\.co\\.uk/\" to=\"https://www.pofssavecredit.co.uk/\"/><rule from=\"^http://(?:www\\.)?postoffice\\.co\\.uk/(sites/|user(?:$|\\?|/))\" to=\"https://www.postoffice.co.uk/$1\"/><rule from=\"^http://www\\.postoffice\\.travelmoneycard\\.co\\.uk/\" to=\"https://www.postoffice.travelmoneycard.co.uk/\"/></ruleset>", "<ruleset name=\"Post Office Shop (partial)\" f=\"Post_Office_Shop.xml\"><securecookie host=\"^www\\.postofficeshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?postofficeshop\\.co\\.uk/\" to=\"https://www.postofficeshop.co.uk/\"/></ruleset>", "<ruleset name=\"Post to.Me\" f=\"Post_to.Me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cat\\.postto\\.me/\" to=\"https://postto.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posta-Online.it\" f=\"Posta-Online.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postal Heritage.org.uk (partial)\" f=\"Postal_Heritage.org.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?postalheritage\\.org\\.uk/+(?!imgs/|lib/|uploads/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postbank.de\" f=\"Postbank.xml\"><securecookie host=\"^(?:.*\\.)?postbank\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postbox-Inc.com (partial)\" f=\"Postbox-Inc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostbyDNX.com\" platform=\"mixedcontent\" f=\"PostbyDNX.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?postbydnx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postdanmark.dk (partial)\" f=\"Postdanmark.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><exclusion pattern=\"http://www2\\.postdanmark\\.dk/iis2-findos2/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poste-Impresa.it\" f=\"Poste-Impresa.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://poste-impresa\\.it/\" to=\"https://www.poste-impresa.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poste.io\" f=\"Poste.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poste.it (partial)\" f=\"Poste.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PosteShop.it\" f=\"PosteShop.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://posteshop\\.it/\" to=\"https://www.posteshop.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postel.it\" f=\"Postel.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://postel\\.it/\" to=\"https://www.postel.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posten.se\" f=\"Posten.se.xml\"><rule from=\"^http://posten\\.se/\" to=\"https://www.posten.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posteo.de\" f=\"Posteo.xml\"><securecookie host=\"^(www\\.|m\\.|lists\\.|autodiscover\\.|api\\.|cdn\\.)?posteo\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poster Store UK\" default_off=\"connection refused\" f=\"Poster_Store_UK.xml\"><securecookie host=\"^\\.(?:www\\.)?posterstoreuk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posterous clients\" default_off=\"mismatch\" f=\"Posterous-clients.xml\"><rule from=\"^http://blog\\.bethcodes\\.com/\" to=\"https://blog.bethcodes.com/\"/><rule from=\"^http://(?:www\\.)?codebutler\\.com/\" to=\"https://codebutler.com/\"/></ruleset>", "<ruleset name=\"Posterous\" default_off=\"failed ruleset test\" f=\"Posterous.xml\"><securecookie host=\"^(?:.*\\.)?posterous\\.com$\" name=\".*\"/><rule from=\"^http://files\\.posterous\\.com/\" to=\"https://s3.amazonaws.com/files.posterous.com/\"/><rule from=\"^http://(?:www\\.)?posterous\\.com/\" to=\"https://posterous.com/\"/><rule from=\"^http://([^@:\\./]+)\\.posterous\\.com/\" to=\"https://$1.posterous.com/\"/></ruleset>", "<ruleset name=\"PostgreSQL (self-signed)\" default_off=\"self-signed\" f=\"PostgreSQL-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostgreSQL\" f=\"PostgreSQL.xml\"><securecookie host=\"^\\.postgresql\\.org$\" name=\"^__utm\\w$\"/><securecookie host=\"^wiki\\.postgresql\\.org$\" name=\".+\"/><securecookie host=\"^\\.postgresql.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?postgresql\\.eu/\" to=\"https://www.postgresql.eu/\"/><rule from=\"^http://(?:www\\.)?postgresql\\.org/(account|media)/\" to=\"https://www.postgresql.org/$1/\"/><rule from=\"^http://(commitfest|nagios|planet|redmine|wiki)\\.postgresql\\.org/\" to=\"https://$1.postgresql.org/\"/><rule from=\"^http://(www\\.)?postgresql\\.us/\" to=\"https://$1postgresql.us/\"/></ruleset>", "<ruleset name=\"Posthaven.com (problematic)\" default_off=\"mismatched\" f=\"Posthaven.com-problematic.xml\"><securecookie host=\"^(?!www\\.).+\\.posthaven\\.com$\" name=\".+\"/><rule from=\"^http://(?!www\\.)(\\w+)\\.posthaven\\.com/\" to=\"https://$1.posthaven.com/\"/></ruleset>", "<ruleset name=\"Posthaven.com (partial)\" f=\"Posthaven.com.xml\"><securecookie host=\"^posthaven\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postimg.com (partial)\" f=\"Postimg.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"postimg.org\" f=\"Postimg.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://(s\\d+\\.|www\\.)?postimg\\.org/\" to=\"https://$1postimg.org/\"/></ruleset>", "<ruleset name=\"Postini.com (partial)\" f=\"Postini.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postlapsaria (partial)\" f=\"Postlapsaria.xml\"><exclusion pattern=\"^http://(?:www\\.)?postlapsaria\\.com/(?!favicon\\.ico|images/|~postlapsaria/|~sponsors/|style\\.css|supersized/)\"/><rule from=\"^http://(?:www\\.)?postlapsaria\\.com/\" to=\"https://secure.hostmonster.com/~postlaps/\"/></ruleset>", "<ruleset name=\"postnewsads.com\" f=\"Postnewsads.com.xml\"><rule from=\"^http://www\\.postnewsads\\.com/\" to=\"https://postnewsads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postovabanka.sk\" f=\"Postovabanka.sk.xml\"><rule from=\"^http://postovabanka\\.sk/\" to=\"https://www.postovabanka.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postscapes.com\" platform=\"mixedcontent\" f=\"Postscapes.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postwire.com\" f=\"Postwire.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"potager.org\" f=\"Potager.org.xml\"><securecookie host=\"^mail\\.potager\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?pimienta\\.org/\" to=\"https://$1pimienta.org/\"/><rule from=\"^http://([^/:@\\.]+\\.)?poivron\\.org/\" to=\"https://$1poivron.org/\"/><rule from=\"^http://([^/:@\\.]+\\.)?potager\\.org/\" to=\"https://$1potager.org/\"/><rule from=\"^http://([^/:@\\.]+\\.)?sweetpepper\\.org/\" to=\"https://$1sweetpepper.org/\"/></ruleset>", "<ruleset name=\"PowNed (partial)\" f=\"PowNed.xml\"><rule from=\"^http://registratie\\.powned\\.tv/\" to=\"https://registratie.powned.tv/\"/></ruleset>", "<ruleset name=\"PowWeb\" f=\"PowWeb.xml\"><securecookie host=\"^\\.powweb\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|forums|partners|secure|www)\\.)?powweb\\.com/\" to=\"https://$1powweb.com/\"/></ruleset>", "<ruleset name=\"Powells.com\" f=\"Powells.com.xml\"><securecookie host=\"^\\.powells\\.com$\" name=\"^(?:lastlocation|preferences|p_session|trail_id)$\"/><rule from=\"^http://(?:content-\\d\\.|www\\.)?powells\\.com/\" to=\"https://www.powells.com/\"/></ruleset>", "<ruleset name=\"Power.org\" f=\"Power.org.xml\"><securecookie host=\"^www\\.power\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?power\\.org/\" to=\"https://www.power.org/\"/></ruleset>", "<ruleset name=\"PowerDNS.com\" f=\"PowerDNS.com.xml\"><securecookie host=\"^rt\\.powerdns\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PowerDNS.net\" f=\"PowerDNS.net.xml\"><rule from=\"^http://(?:www\\.)?powerdns\\.net/\" to=\"https://www.powerdns.net/\"/></ruleset>", "<ruleset name=\"PowerPay.biz (partial)\" f=\"PowerPay.biz.xml\"><rule from=\"^http://(app|merchantcenter|secure)\\.powerpay\\.biz/\" to=\"https://$1.powerpay.biz/\"/></ruleset>", "<ruleset name=\"PowerShell Gallery.com\" f=\"PowerShell_Gallery.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PowerTech.no (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"PowerTech.no-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PowerTech.no (partial)\" f=\"PowerTech.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Power Speaking.com\" default_off=\"failed ruleset test\" f=\"Power_Speaking.com.xml\"><securecookie host=\"^\\.powerspeaking\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?powerspeaking\\.com/\" to=\"https://www.powerspeaking.com/\"/></ruleset>", "<ruleset name=\"Power to the Pooch\" default_off=\"failed ruleset test\" f=\"Power_to_the_Pooch.xml\"><securecookie host=\"^(?:w*\\.)?powertothepooch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powerbuy.co.th\" f=\"Powerbuy.co.th.xml\"><rule from=\"^http://(?:www\\.)?powerbuy\\.co\\.th/\" to=\"https://www.powerbuy.co.th/\"/></ruleset>", "<ruleset name=\"Powered by Paquin\" default_off=\"failed ruleset test\" f=\"Powered_by_Paquin.xml\"><securecookie host=\"^\\.poweredbypaquin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powerhosting.dk (partial)\" f=\"Powerhosting.dk.xml\"><rule from=\"^http://(?:(webadmin\\.)|www\\.)?powerhosting\\.dk/\" to=\"https://$1powerhosting.dk/\"/><rule from=\"^http://blog\\.powerhosting\\.dk/\" to=\"https://powerhosting.dk/blog/\"/></ruleset>", "<ruleset name=\"Powerhouse Museum.com (partial)\" f=\"Powerhouse_Museum.com.xml\"><rule from=\"^http://(www\\.)?powerhousemuseum\\.com/(?!/*(?:index\\.php)?(?:$|\\?))\" to=\"https://$1powerhousemuseum.com/\"/><rule from=\"^http://newsletters\\.powerhousemuseum\\.com/(?=contenteditor/formValidate\\.js|LiveAssets/|rp/Content/)\" to=\"https://ecm74.com/\"/></ruleset>", "<ruleset name=\"Powerlineman.com\" f=\"Powerlineman.com.xml\"><securecookie host=\"^(?:w*\\.)?powerlineman\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powerlineman Magazine\" f=\"Powerlineman_Magazine.xml\"><securecookie host=\"^(?:www\\.)?powerlinemanmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powernotebooks.com\" f=\"Powernotebooks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powertraveller.com\" f=\"Powertraveller.com.xml\"><securecookie host=\"^\\.powertraveller\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ppy.sh (partial)\" f=\"Ppy.sh.xml\"><securecookie host=\"(osu|jizz|store)\\.ppy.sh\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pr.co (partial)\" f=\"Pr.co.xml\"><securecookie host=\"^(?:\\.|www\\.)?pr\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prace.cz\" f=\"Prace.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prad.de\" default_off=\"invalid certificate\" f=\"Prad.de.xml\"><rule from=\"^http://(?:www\\.)?prad\\.de/\" to=\"https://www.prad.de/\"/></ruleset>", "<ruleset name=\"praegnanz.de\" default_off=\"self-signed\" f=\"Praegnanz.de.xml\"><securecookie host=\"^praegnanz\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?praegnanz\\.de/\" to=\"https://praegnanz.de/\"/></ruleset>", "<ruleset name=\"Praetorian.com\" f=\"Praetorian.com.xml\"><securecookie host=\"^www\\.praetorian\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PragProg.com\" f=\"PragProg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pragmatic Marketing.com (partial)\" f=\"Pragmatic_Marketing.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?pragmaticmarketing\\.com/(?![cC]ontent/|Scripts/)\"/><rule from=\"^http://(buy\\.|www\\.)?pragmaticmarketing\\.com/\" to=\"https://$1pragmaticmarketing.com/\"/><rule from=\"^http://mediafiles\\.pragmaticmarketing\\.com/\" to=\"https://d1qrnovf1k6d8a.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Pragmatic Studio.com\" f=\"Pragmatic_Studio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PravyDiplom.cz\" f=\"PravyDiplom.cz.xml\"><securecookie host=\"^pravydiplom\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pravydiplom\\.cz/\" to=\"https://pravydiplom.cz/\"/></ruleset>", "<ruleset name=\"preCharge.com\" f=\"PreCharge.com.xml\"><securecookie host=\"^(?:affiliates)?\\.precharge\\.com$\" name=\".+\"/><rule from=\"^http://((?:affiliates|support|www)\\.)?precharge\\.com/\" to=\"https://$1precharge.com/\"/></ruleset>", "<ruleset name=\"preCharge.net (partial)\" f=\"PreCharge.net.xml\"><securecookie host=\"^secure\\.precharge\\.net$\" name=\".+\"/><rule from=\"^http://affiliates\\.precharge\\.net/\" to=\"https://affiliates.precharge.com/\"/><rule from=\"^http://secure\\.precharge\\.net/\" to=\"https://secure.precharge.net/\"/></ruleset>", "<ruleset name=\"PrecisionPros.com (mismatches)\" default_off=\"mismatch\" f=\"PrecisionPros.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrecisionPros.com (partial)\" f=\"PrecisionPros.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precision Marine Tools\" f=\"Precision_Marine_Tools.xml\"><securecookie host=\"^(?:.*\\.)?precisionmarinetools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precos.com.pt (partial)\" default_off=\"mismatched\" f=\"Precos.com.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precursor app.com\" f=\"Precursor_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prediction.IO\" f=\"Prediction.IO.xml\"><securecookie host=\"^(?:templates)?\\.prediction\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preferred Reservations (partial)\" f=\"Preferred_Reservations.xml\"><securecookie host=\"^vr\\.preferred-reservations\\.com$\" name=\".+\"/><rule from=\"^http://vr\\.preferred-reservations\\.com/\" to=\"https://vr.preferred-reservations.com/\"/></ruleset>", "<ruleset name=\"Preisvergleich Internet Services (mismatches)\" default_off=\"mismatch\" f=\"Preisvergleich-Internet-Services-mismatches.xml\"><rule from=\"^http://s\\.gzhls\\.at/\" to=\"https://s.gzhls.at/\"/></ruleset>", "<ruleset name=\"Preisvergleich Internet Services (partial)\" f=\"Preisvergleich-Internet-Services.xml\"><rule from=\"^http://(?:b\\.)?gzhls\\.at/\" to=\"https://gzhls.at/\"/><rule from=\"^http://(www\\.)?metashop\\.at/\" to=\"https://$1metashop.at/\"/></ruleset>", "<ruleset name=\"Premier Tax Free\" default_off=\"self-signed\" f=\"Premier_Tax_Free.xml\"><securecookie host=\"^premiertaxfree\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?premiertaxfree\\.com/\" to=\"https://premiertaxfree.com/\"/></ruleset>", "<ruleset name=\"Premiumize.me\" f=\"Premiumize.xml\"><securecookie host=\"^secure\\.premiumize\\.me$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?premiumize\\.me/\" to=\"https://secure.premiumize.me/\"/></ruleset>", "<ruleset name=\"Preney.ca\" f=\"Preney.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PressCoders\" f=\"PressCoders.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PressLabs (partial)\" f=\"PressLabs.xml\"><securecookie host=\"^o\\.presslabs\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.presslabs\\.com/\" to=\"https://presslabs.plssl.com/\"/><rule from=\"^http://o(-assets)?\\.presslabs\\.com/\" to=\"https://o$1.presslabs.com/\"/></ruleset>", "<ruleset name=\"PressLabs SSL\" f=\"PressLabs_SSL.xml\"><rule from=\"^http://([\\w-]+\\.)?plssl\\.com/\" to=\"https://$1plssl.com/\"/></ruleset>", "<ruleset name=\"PressPage.com (partial)\" f=\"PressPage.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Press+ (partial)\" f=\"PressPlus.xml\"><securecookie host=\"^h?\\.ppjol\\.com$\" name=\".+\"/><securecookie host=\"^accounts\\.mypressplus\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mypressplus\\.com/themes/press_plus/img/header/(bg_green|bg_tan|logo)\\.png\" to=\"https://accounts.mypressplus.com/images/header/$1.png\"/><rule from=\"^http://accounts\\.mypressplus\\.com/\" to=\"https://accounts.mypressplus.com/\"/><rule from=\"^http://(h|ui)\\.ppjol\\.com/\" to=\"https://$1.ppjol.com/\"/><rule from=\"^http://s\\.ppjol\\.net/\" to=\"https://dsgvj67ifn3r0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PressReader.com (partial)\" f=\"PressReader.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pressable.com (partial)\" f=\"Pressable.com.xml\"><securecookie host=\"^help\\.pressable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pressflex (self-signed)\" default_off=\"self-signed\" f=\"Pressflex-mismatches.xml\"><rule from=\"^http://(?:www\\.)?pressflex\\.com/\" to=\"https://pressflex.com/\"/></ruleset>", "<ruleset name=\"Pressflex (partial)\" f=\"Pressflex.xml\"><rule from=\"^http://(?:web\\.|www\\.)?blogads\\.com/\" to=\"https://web.blogads.com/\"/></ruleset>", "<ruleset name=\"Pretty in Cash (mismatches)\" default_off=\"mismatch\" f=\"Pretty-in-Cash-mismatches.xml\"><rule from=\"^http://join\\.(boozedgfs|exgf)\\.com/\" to=\"https://join.$1.com/\"/><rule from=\"^http://(?:www\\.)?prettyincash\\.com/\" to=\"https://prettyincash.com/\"/><rule from=\"^http://discount\\.teengfs\\.com/\" to=\"https://discount.teengfs.com/\"/></ruleset>", "<ruleset name=\"Pretty in Cash (partial)\" f=\"Pretty-in-Cash.xml\"><rule from=\"^http://exgf\\.teenbff\\.com/\" to=\"https://exgf.teenbff.com/\"/></ruleset>", "<ruleset name=\"Pretty Lights Music\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"PrettyLightsMusic.xml\"><rule from=\"^http://(?:www\\.)?prettylightsmusic\\.com/\" to=\"https://prettylightsmusic.com/\"/></ruleset>", "<ruleset name=\"PrettyLittleThing.com\" f=\"PrettyLittleThing.com.xml\"><securecookie host=\"\\.(?:www\\.)?prettylittlething\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Previa.se\" f=\"Previa.se.xml\"><rule from=\"^http://(?:www\\.)?previa\\.se/\" to=\"https://www.previa.se/\"/></ruleset>", "<ruleset name=\"Prey (partial)\" f=\"Prey.xml\"><securecookie host=\"^.+\\.preyproject\\.com$\" name=\".+\"/><rule from=\"^http://(?:(panel\\.)|www\\.)?preyproject\\.com/\" to=\"https://$1preyproject.com/\"/><rule from=\"^http://support\\.preyproject\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-1.tenderapp.com/$1/\"/></ruleset>", "<ruleset name=\"PreyProject\" default_off=\"failed ruleset test\" f=\"PreyProject.xml\"><securecookie host=\"^(?:control|panel)\\.preyproject\\.com$\" name=\".*\"/><rule from=\"^http://(control|panel)\\.preyproject\\.com/\" to=\"https://$1.preyproject.com/\"/></ruleset>", "<ruleset name=\"Prezi.com\" f=\"Prezi.com.xml\"><securecookie host=\"^\\.?prezi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prgmr.com (partial)\" f=\"Prgmr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.prgmr\\.com/\" to=\"https://prgmr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priberam.pt\" platform=\"mixedcontent\" f=\"Priberam.pt.xml\"><rule from=\"^http://(?:www\\.)?priberam\\.pt/\" to=\"https://www.priberam.pt/\"/></ruleset>", "<ruleset name=\"Price.ua (mismatched)\" default_off=\"mismatched\" f=\"Price.ua-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Price.ua (partial)\" default_off=\"connection reset\" f=\"Price.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PriceGrabber clients\" default_off=\"failed ruleset test\" f=\"PriceGrabber-clients.xml\"><securecookie host=\"^hothardware\\.pricegrabber\\.com$\" name=\".*\"/><rule from=\"^http://hothardware\\.pricegrabber\\.com/\" to=\"https://hothardware.pricegrabber.com/\"/></ruleset>", "<ruleset name=\"PriceGrabber.com\" f=\"PriceGrabber.xml\"><securecookie host=\".*\\.pricegrabber\\.com$\" name=\".+\"/><rule from=\"^http://ah\\.pricegrabber\\.com/\" to=\"https://d2xu6t5g41jmzy.cloudfront.net/\"/><rule from=\"^http://(?:ai\\.)?pricegrabber\\.com/\" to=\"https://www.pricegrabber.com/\"/><rule from=\"^http://partners\\.pricegrabber\\.com/\" to=\"https://partner.pricegrabber.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PriceRunner (partial)\" platform=\"mixedcontent\" f=\"PriceRunner.xml\"><securecookie host=\"^(?:partner|secure)\\.pricerunner\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pricerunner\\.co(?:m|\\.uk)/favicon\\.ico\" to=\"https://secure.pricerunner.com/imgserver/images/v3/favicon.ico\"/><rule from=\"^http://(partner|secure)\\.pricerunner\\.com/\" to=\"https://$1.pricerunner.com/\"/></ruleset>", "<ruleset name=\"PriceZombie.com\" f=\"PriceZombie.com.xml\"><securecookie host=\"^\\.pricezombie\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priceonomics.com (partial)\" f=\"Priceonomics.com.xml\"><rule from=\"^http://(www\\.)?priceonomics\\.com/static/\" to=\"https://$1priceonomics.com/static/\"/></ruleset>", "<ruleset name=\"Priceza.com\" f=\"Priceza.com.xml\"><rule from=\"^http://(?:www\\.)?priceza\\.com/\" to=\"https://www.priceza.com/\"/></ruleset>", "<ruleset name=\"Primabanka.sk\" default_off=\"failed ruleset test\" f=\"Primabanka.sk.xml\"><rule from=\"^http://(?:www\\.)?primabanka\\.sk/\" to=\"https://www.primabanka.sk/\"/><rule from=\"^http://ib\\.primabanka\\.sk/\" to=\"https://ib.primabanka.sk/\"/></ruleset>", "<ruleset name=\"Primal Blueprint.com\" f=\"Primal_Blueprint.com.xml\"><securecookie host=\"^\\.www\\.primalblueprint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrimeGrid.com\" f=\"PrimeGrid.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primedice.com\" f=\"Primedice.com.xml\"><securecookie host=\"^\\.primedice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primes Eco Energie.com\" f=\"Primes_Eco_Energie.com.xml\"><securecookie host=\"^(?:w*\\.)?primesecoenergie\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primus.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Primus.com.xml\"><securecookie host=\"^(?:.*\\.)?primus\\.com$\" name=\".*\"/><rule from=\"^http://primus\\.com/\" to=\"https://www.primus.com/\"/><rule from=\"^http://(home|ru|secure|www)\\.primus\\.com/\" to=\"https://$1.primus.com/\"/></ruleset>", "<ruleset name=\"Primus Canada (partial)\" default_off=\"failed ruleset test\" f=\"Primus_Canada.xml\"><rule from=\"^http://vws3\\.primus\\.ca/\" to=\"https://vws3.primus.ca/\"/></ruleset>", "<ruleset name=\"Princeton.edu (partial)\" f=\"Princeton.edu.xml\"><securecookie host=\"^(?:alumnicas|blogs|fed|tigernet)\\.princeton\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"print.io\" f=\"Print.io.xml\"><rule from=\"^http://cdn\\.print\\.io/\" to=\"https://az412349.vo.msecnd.net/\"/></ruleset>", "<ruleset name=\"PrintFriendly.com (partial)\" default_off=\"webmaster request\" f=\"PrintFriendly.xml\"><rule from=\"^http://cdn\\.printfriendly\\.com/\" to=\"https://s3.amazonaws.com/cdn.printfriendly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrintMojo\" f=\"PrintMojo.xml\"><securecookie host=\"^www\\.printmojo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Print M3D.com (partial)\" f=\"Print_M3D.com.xml\"><securecookie host=\"^printm3d\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Printchomp.com\" f=\"Printchomp.com.xml\"><securecookie host=\"^(?:www)?\\.printchomp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Printfection.com (partial)\" f=\"Printfection.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?printfection\\.com/(?!(?:account|css|images)(?:$|[?/])|assets/|css\\.php|skin1/|.+\\?store_page=cart$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"printink.si\" default_off=\"redirects to http\" f=\"Printink.si.xml\"><exclusion pattern=\"^http://(?:www\\.)?printink\\.si/(?:$|[Cc]ontent/|Themes/)\"/><securecookie host=\"^(?:www)?\\.printint\\.si$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"printrbot (partial)\" f=\"Printrbot.xml\"><securecookie host=\"^(?:www\\.)?printrbot\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?printrbot\\.com/\" to=\"https://$1printrbot.com/\"/><rule from=\"^http://help\\.printrbot\\.com/favicon\\.ico\" to=\"https://printrbot.dozuki.com/favicon.ico\"/></ruleset>", "<ruleset name=\"PrioritySubmit.com\" default_off=\"mismatched\" f=\"PrioritySubmit.com.xml\"><securecookie host=\"^www\\.prioritysubmit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priory Group.com (partial)\" f=\"Priory_Group.com.xml\"><exclusion pattern=\"http://www\\.priorygroup\\.com/+(?!favicon\\.ico|images/|Sitefinity/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prisma-IT.com\" f=\"Prisma-IT.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prison Legal News.org\" f=\"Prison_Legal_News.org.xml\"><securecookie host=\"^www\\.prisonlegalnews\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prison Phone Justice.org\" f=\"Prison_Phone_Justice.org.xml\"><securecookie host=\"^www\\.prisonphonejustice\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pritunl.com\" f=\"Pritunl.com.xml\"><securecookie host=\"^.*\\.?pritunl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"priv.at (CAcert)\" platform=\"cacert\" f=\"Priv.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priv.gc.ca\" f=\"Priv.gc.ca.xml\"><securecookie host=\"^\\.priv\\.gc\\.ca$\" name=\".+\"/><rule from=\"^http://priv\\.gc\\.ca/\" to=\"https://www.priv.gc.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy-Handbuch.de\" f=\"Privacy-Handbuch.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy International.org\" f=\"Privacy-International.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy SOS.org\" f=\"Privacy-SOS.xml\"><securecookie host=\"^\\.?privacysos\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privacy-cd.org\" f=\"Privacy-cd.org.xml\"><securecookie host=\"^www\\.privacy-cd\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Privacy Foundation\" f=\"Privacy.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrivacyChoice (partial)\" default_off=\"failed ruleset test\" f=\"PrivacyChoice.xml\"><rule from=\"^http://(?:www\\.)?privacychoice\\.org/\" to=\"https://www.privacychoice.org/\"/></ruleset>", "<ruleset name=\"Privacy Enforcement.net\" f=\"Privacy_Enforcement.net.xml\"><rule from=\"^http://privacyenforcement\\.net/\" to=\"https://www.privacyenforcement.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Not Prism.org.uk\" f=\"Privacy_Not_Prism.org.xml\"><securecookie host=\"^www\\.privacynotprism\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?privacynotprism\\.org\\.uk/\" to=\"https://www.privacynotprism.org.uk/\"/></ruleset>", "<ruleset name=\"Privacy Solutions.no\" f=\"Privacy_Solutions.no.xml\"><securecookie host=\"^track\\.privacysolutions\\.no$\" name=\"\"/><rule from=\"^http://((?:blog|track|www)\\.)?privacysolutions\\.no/\" to=\"https://$1privacysolutions.no/\"/></ruleset>", "<ruleset name=\"Privacy Tool.org\" f=\"Privacy_Tool.org.xml\"><securecookie host=\"^(?:www\\.)?privacytool\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privacy tools.io\" f=\"Privacy_tools.io.xml\"><securecookie host=\"^\\.privacytools\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacyfix\" f=\"Privacyfix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Rights Clearinghouse\" f=\"Privacyrights.org.xml\"><rule from=\"^http://(?:www\\.)?privacyrights\\.org/\" to=\"https://www.privacyrights.org/\"/></ruleset>", "<ruleset name=\"Privacyscore\" default_off=\"mismatched\" f=\"Privacyscore.com.xml\"><securecookie host=\"^privacyscore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?privacyscore\\.com/\" to=\"https://privacyscore.com/\"/></ruleset>", "<ruleset name=\"PrivatVPN\" f=\"PrivatVPN.xml\"><rule from=\"^http://(?:www\\.)privatevpn\\.com/\" to=\"https://www.privatevpn.com/\"/></ruleset>", "<ruleset name=\"Privatbanka.sk\" f=\"Privatbanka.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private Internet Access.com\" f=\"Private-Internet-Access.xml\"><securecookie host=\"^www\\.privateinternetaccess\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private Layer\" f=\"Private-Layer.xml\"><securecookie host=\"^.*\\.privatelayer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private Tunnel.com\" f=\"Private-Tunnel.xml\"><securecookie host=\"^www\\.privatetunnel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrivateCore.com\" f=\"PrivateCore.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrivatePaste.com\" default_off=\"failed ruleset test\" f=\"PrivatePaste.xml\"><rule from=\"^http://([\\w-]+\\.)?privatepaste\\.com/\" to=\"https://$1privatepaste.com/\"/></ruleset>", "<ruleset name=\"PrivateWifi.com\" platform=\"mixedcontent\" f=\"PrivateWifi.xml\"><securecookie host=\"^(?:.*\\.)?privatewifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privatelee.com\" f=\"Privatelee.com.xml\"><securecookie host=\"^\\.privatelee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privatesearch.io\" f=\"Privatesearch.io.xml\"><securecookie host=\"^\\.privatesearch\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privnote.com\" f=\"Privnote.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pro-Linux.de (partial)\" platform=\"cacert\" f=\"Pro-Linux.de.xml\"><securecookie host=\"\\.www\\.pro-linux\\.de$\" name=\"^phpbb2bkHas_(?:data|sid)$\"/><rule from=\"^http://(?:www\\.)?pro-linux\\.de/(?=css/|favicon\\.ico|forum(?:$|[?/])|images/)\" to=\"https://www.pro-linux.de/\"/></ruleset>", "<ruleset name=\"Pro-Managed\" f=\"Pro-Managed.xml\"><rule from=\"^http://(?:www\\.)?pro-managed\\.com/\" to=\"https://pro-managed.com/\"/></ruleset>", "<ruleset name=\"pro-market.net\" default_off=\"mismatched\" f=\"Pro-market.net.xml\"><rule from=\"^http://ads\\.pro-market\\.net/\" to=\"https://ads.pro-market.net/\"/></ruleset>", "<ruleset name=\"pro186.com (partial)\" default_off=\"failed ruleset test\" f=\"Pro186.com.xml\"><rule from=\"^http://cdn\\.pro186\\.com/\" to=\"https://d31p8cbsm4vlum.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ProBoards (partial)\" f=\"ProBoards.xml\"><exclusion pattern=\"http://help\\.proboards\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://d\\.prbrds\\.com/\" to=\"https://ss.prbrds.com/\"/><rule from=\"^http://help\\.proboards\\.com/.*\" to=\"https://www.proboards.com/forum-help-guide\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProPublica.org\" f=\"ProPublica.org.xml\"><securecookie host=\"^(?:.*\\.)?propublica\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?propublica\\.net/+\" to=\"https://www.propublica.org/\"/><rule from=\"^http://cdn\\.propublica\\.net/\" to=\"https://s3.amazonaws.com/cdn.propublica.net/\"/><rule from=\"^http://(www\\.|mail\\.|projects\\.|static\\.|securedrop\\.)?propublica\\.org/\" to=\"https://$1propublica.org/\"/><rule from=\"^http://tiles-[abcd]\\.propublica\\.org/\" to=\"https://d3i4wq2ul46tvd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ProQuest.com (partial)\" f=\"ProQuest.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProVenue.net\" f=\"ProVenue.net.xml\"><securecookie host=\"^\\.provenue\\.net$\" name=\".+\"/><rule from=\"^http://www\\.provenue\\.net/\" to=\"https://www.provenue.net/\"/></ruleset>", "<ruleset name=\"ProWebSector.gr (partial)\" platform=\"mixedcontent\" f=\"ProWebSector.gr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProŽeny.cz\" f=\"ProZeny.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pro Bike Kit (partial)\" f=\"Pro_Bike_Kit.xml\"><rule from=\"^http://(?:www\\.)?probikekit\\.co\\.uk/([\\w-]+\\.(?:info|secure)|c-images/|common/|c-scripts/|css/|probikekit/)\" to=\"https://www.probikekit.co.uk/$1\"/></ruleset>", "<ruleset name=\"Pro Ultra Trim\" default_off=\"failed ruleset test\" f=\"Pro_Ultra_Trim.xml\"><securecookie host=\"^(?:w*\\.)?proultratrim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prob Mods.org\" f=\"Prob_Mods.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Process-One.net (partial)\" f=\"Process-One.net.xml\"><securecookie host=\"^www\\.process-one\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?process-one\\.net/\" to=\"https://www.process-one.net/\"/><rule from=\"^http://(blog|static|support)\\.process-one\\.net/\" to=\"https://$1.process-one.net/\"/></ruleset>", "<ruleset name=\"Processing.org (partial)\" f=\"Processing.org.xml\"><securecookie host=\"^(?:forum)?\\.processing\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Procter & Gamble (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Procter-and-Gamble.xml\"><securecookie host=\"^(?:.*\\.)?pg\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?pgbrandsampler\\.ca$\" name=\".*\"/><rule from=\"^http://(www\\.)?brandsaver\\.ca/\" to=\"https://$1brandsaver.ca/\"/><rule from=\"^http://(www\\.)?(oralb|pg)\\.com/\" to=\"https://$1$2.com/\"/><rule from=\"^http://news\\.pg\\.com/sites/\" to=\"https://pg.newshq.businesswire.com/sites/\"/><rule from=\"^http://(www\\.)?pgbrandsampler\\.ca/\" to=\"https://$1pgbrandsampler.ca/\"/><rule from=\"^http://(?:media\\.)?pgeveryday(\\.ca|solutions\\.com)/\" to=\"https://www.pgeveryday$1/\"/><rule from=\"^http://www\\.pgeverydaysolutions\\.com/(content/|pgeds/(en_US/data_root/|(register-eds|sign-in)\\.jsp))\" to=\"https://www.pgeverydaysolutions.com/$1\"/><rule from=\"^http://www\\.pgeveryday\\.ca/(css/|images/|(log-in|register)\\.jsp|spacer\\.gif)\" to=\"https://www.pgeveryday.ca/$1\"/></ruleset>", "<ruleset name=\"Product Hunt.com\" f=\"ProductHunt.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Product Safety Recalls Australia\" f=\"ProductSafetyRecallsAustralia.xml\"><rule from=\"^http://(?:www\\.)?recalls\\.gov\\.au/\" to=\"https://www.recalls.gov.au/\"/></ruleset>", "<ruleset name=\"Product Safety.gov.au\" f=\"Product_Safety.gov.au.xml\"><securecookie host=\"^\\.www\\.productsafety\\.gov\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?productsafety\\.gov\\.au/\" to=\"https://www.productsafety.gov.au/\"/></ruleset>", "<ruleset name=\"Productvisio\" default_off=\"failed ruleset test\" f=\"Productvisio.xml\"><securecookie host=\"^\\.?productvisio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Professional Security Testers.org\" default_off=\"expired, self-signed\" f=\"Professional_Security_Testers.org.xml\"><rule from=\"^http://(?:www\\.)?professionalsecuritytesters\\.org/\" to=\"https://professionalsecuritytesters.org/\"/></ruleset>", "<ruleset name=\"ProfitBricks.co.uk\" f=\"ProfitBricks.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProfitBricks.de\" f=\"ProfitBricks.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProfitBricks.com (partial)\" f=\"ProfitBricks.xml\"><exclusion pattern=\"^http://info\\.profitbricks\\.com/(?!css/|images/|js/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://info\\.profitbricks\\.com/\" to=\"https://na-sj02.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProgrammableWeb.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ProgrammableWeb.xml\"><securecookie host=\".*\\.programmableweb\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Progreso Webhosting (partial)\" f=\"Progreso_Webhosting.xml\"><exclusion pattern=\"^http://webmail\\.\"/><securecookie host=\"^(?:.*\\.)?progreso\\.pl$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?progreso\\.pl/\" to=\"https://$1progreso.pl/\"/></ruleset>", "<ruleset name=\"Progress.com (partial)\" f=\"Progress.com.xml\"><securecookie host=\"^(?:(?:bizappstoday|blogs|community|corporateblog|origin-www|poweredbyprogress|viewfromtheedge|www)\\.)?progress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"::progressive:: (partial)\" f=\"Progressive.hu.xml\"><securecookie host=\"^www\\.progressive\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.progressive\\.hu/\" to=\"https://www.progressive.hu/\"/></ruleset>", "<ruleset name=\"Project Euler.net\" f=\"ProjectEuler.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.projecteuler\\.net/\" to=\"https://projecteuler.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProjectHoneypot\" f=\"ProjectHoneypot.xml\"><securecookie host=\"^(?:www\\.)?projecthoneypot\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?projecthoneypot\\.org/\" to=\"https://www.projecthoneypot.org/\"/></ruleset>", "<ruleset name=\"Project-Syndicate.org\" f=\"ProjectSyndicate.xml\"><securecookie host=\"^(?:www)?\\.project-syndicate\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Dent.com\" f=\"Project_Dent.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Euclid.org\" f=\"Project_Euclid.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Meshnet.org (partial)\" f=\"Project_Meshnet.xml\"><securecookie host=\"^(?:wiki)?\\.projectmeshnet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Secret Identity.org\" f=\"Project_Secret_Identity.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Vote Smart\" f=\"Project_Vote_Smart.xml\"><securecookie host=\"^votesmart\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Wonderful\" f=\"Project_Wonderful.xml\"><securecookie host=\"^(?:www\\.)?projectwonderful\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Projectplace.com (problematic)\" default_off=\"expired, self-signed\" f=\"Projectplace.com-problematic.xml\"><securecookie host=\"^intranet\\.projectplace\\.com$\" name=\".+\"/><rule from=\"^http://intranet\\.projectplace\\.com/\" to=\"https://intranet.projectplace.com/\"/></ruleset>", "<ruleset name=\"Projectplace.com (partial)\" f=\"Projectplace.com.xml\"><securecookie host=\"^projectplace\\.(?:idea|user)s\\.dimelo\\.com$\" name=\".+\"/><securecookie host=\".*\\.projectplace\\.com$\" name=\".+\"/><rule from=\"^http://((?:help|(?:test-)?service|help|support|www)\\.)?projectplace\\.com/\" to=\"https://$1projectplace.com/\"/><rule from=\"^http://ideas\\.projectplace\\.com/\" to=\"https://projectplace.ideas.dimelo.com/\"/><rule from=\"^http://service\\.projectplacedocs\\.com/\" to=\"https://service.projectplacedocs.com/\"/></ruleset>", "<ruleset name=\"Projet-PLUME.org\" f=\"Projet-PLUME.org.xml\"><securecookie host=\"^\\.projet-plume\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prolexic\" platform=\"mixedcontent\" f=\"Prolexic.xml\"><securecookie host=\"^(?:.*\\.)?prolexic\\.com$\" name=\".+\"/><rule from=\"^http://(?!ww\\.)(\\w+\\.)?prolexic\\.com/\" to=\"https://$1prolexic.com/\"/><rule from=\"^http://ww\\.prolexic\\.com/l/(\\w+/\\d{4}-\\d\\d-\\d\\d/\\w+)\" to=\"https://go.pardot.com/l/$1\"/><rule from=\"^http://ww\\.prolexic\\.com/(?:l/)?(\\?.*)?$\" to=\"https://www.prolexic.com/$1\"/></ruleset>", "<ruleset name=\"Prolific.com.tw\" default_off=\"self-signed\" f=\"Prolific.com.tw.xml\"><rule from=\"^http://(?:www\\.)?prolific\\.com\\.tw/\" to=\"https://www.prolific.com.tw/\"/></ruleset>", "<ruleset name=\"Prometeus.net\" f=\"Prometeus.net.xml\"><securecookie host=\"^(?:www\\.)?prometeus\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prometheus-leirin tuki ry\" f=\"Prometheus-leirin-tuki-ry.xml\"><securecookie host=\"^\\.protu\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prometheus Global\" default_off=\"mismatched\" f=\"Prometheus_Global-problematic.xml\"><securecookie host=\"^prometheus-group\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?prometheus-?group\\.com/\" to=\"https://prometheus-group.com/\"/></ruleset>", "<ruleset name=\"Prometheus Global (partial)\" default_off=\"failed ruleset test\" f=\"Prometheus_Global.xml\"><rule from=\"^http://(?:www\\.)?progllc\\.com/\" to=\"https://www.progllc.com/\"/></ruleset>", "<ruleset name=\"Prometric\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Prometric.xml\"><securecookie host=\"^(?:.*\\.)?prometric.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?prometric\\.com/\" to=\"https://www.prometric.com/\"/></ruleset>", "<ruleset name=\"ProofWiki.org\" f=\"ProofWiki.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proofpoint (partial)\" f=\"Proofpoint.xml\"><exclusion pattern=\"^http://www\\.proofpoint\\.com/(?!(?:asset|cs|image|partner)s/)\"/><securecookie host=\"^urldefense\\.proofpoint\\.com$\" name=\".+\"/><rule from=\"^http://((?:support|urldefense|www)\\.)?proofpoint\\.com/\" to=\"https://$1proofpoint.com/\"/><rule from=\"^http://go\\.proofpoint\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-n.marketo.com/\"/></ruleset>", "<ruleset name=\"proofpositivemedia.com\" f=\"Proofpositivemedia.com.xml\"><securecookie host=\"^api\\.proofpositivemedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PropellerAds (partial)\" f=\"PropellerAds.xml\"><securecookie host=\"^ad\\.propellerads\\.com$\" name=\".+\"/><rule from=\"^http://(?:ad|img)\\.propellerads\\.com/\" to=\"https://ad.propellerads.com/\"/></ruleset>", "<ruleset name=\"Propellerpops.com (partial)\" f=\"Propellerpops.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProperPet.com\" f=\"ProperPet.com.xml\"><securecookie host=\"^\\.(?:www\\.)?properpet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PropertyDeals.com.pk\" default_off=\"failed ruleset test\" f=\"PropertyDeals.com.pk.xml\"><securecookie host=\"^www\\.propertydeals\\.com\\.pk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PropertyInvesting.com (partial)\" f=\"PropertyInvesting.com.xml\"><rule from=\"^http://(www\\.)?propertyinvesting\\.com/($|blog$|faqs$|files/|forums$|forums/active$|front$|modules/|resources$|search$|strategies$|themes/)\" to=\"https://$1propertyinvesting.com/$2\"/></ruleset>", "<ruleset name=\"Prosody.im\" f=\"Prosody.im.xml\"><rule from=\"^http://www\\.prosody\\.im/\" to=\"https://prosody.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prospect Magazine (partial)\" default_off=\"failed ruleset test\" f=\"Prospect-Magazine.xml\"><securecookie host=\"^(?:www\\.)?prospectmagazine\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:prospect\\.prospectpublishi\\.netdna-cdn\\.com|(www\\.)?prospectmagazine\\.co\\.uk)/\" to=\"https://$1prospectmagazine.co.uk/\"/></ruleset>", "<ruleset name=\"ProspectEye.com\" f=\"ProspectEye.com.xml\"><securecookie host=\"^tr\\.prospecteye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prosystemfx.com\" default_off=\"failed ruleset test\" f=\"Prosystemfx.com.xml\"><securecookie host=\"^(?:.*\\.)?prosystemfx\\.com$\" name=\".+\"/><rule from=\"^http://(?:(stage)?www\\.)?prosystemfx\\.com/\" to=\"https://$1www.prosystemfx.com/\"/><rule from=\"^http://cchknowledgecenter\\.prosystemfx\\.com/\" to=\"https://cchknowledgecenter.prosystemfx.com/\"/></ruleset>", "<ruleset name=\"ProteanSec.com\" f=\"ProteanSec.com.xml\"><securecookie host=\"^\\.proteansec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProtectWise.com\" f=\"ProtectWise.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://protectwise\\.com/\" to=\"https://www.protectwise.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Protect Network\" f=\"Protect_Network.xml\"><securecookie host=\"^app\\.protectnetwork\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProtectedText.com\" f=\"ProtectedText.com.xml\"><rule from=\"^http://protectedtext\\.com/\" to=\"https://www.protectedtext.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProtonMail.com\" f=\"ProtonMail.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provantage\" platform=\"mixedcontent\" f=\"Provantage.xml\"><securecookie host=\"^(?:.*\\.)?provantage\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?provantage\\.com/\" to=\"https://www.provantage.com/\"/></ruleset>", "<ruleset name=\"Proven Credible\" default_off=\"expired\" f=\"Proven_Credible.xml\"><securecookie host=\"^www\\.provencredible\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?provencredible\\.com/\" to=\"https://www.provencredible.com/\"/></ruleset>", "<ruleset name=\"Provenance.org\" f=\"Provenance.org.xml\"><securecookie host=\"^www\\.provenance\\.org$\" name=\".+\"/><rule from=\"^http://provenance\\.org/\" to=\"https://www.provenance.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provide Support (mismatches)\" default_off=\"mismatch\" f=\"Provide-Support-mismatches.xml\"><rule from=\"^http://(?:www\\.)?providesupport\\.(\\w\\w)/s/\" to=\"https://providesupport.$1/s/\"/></ruleset>", "<ruleset name=\"Provide Support.com (partial)\" f=\"Provide-Support.xml\"><exclusion pattern=\"^http://www\\.providesupport\\.com/(?!s/|view/my-account/affiliate/referrals(?:$|\\?))\"/><securecookie host=\"^\\.providesupport\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^image\\.providesupport\\.com$\" name=\".*\"/><rule from=\"^http://((?:admin\\d|image|messenger\\d|www)\\.)?providesupport\\.com/\" to=\"https://$1providesupport.com/\"/></ruleset>", "<ruleset name=\"ProxFree.com\" f=\"ProxFree.com.xml\"><securecookie host=\"^(?:m|www)?\\.proxfree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxer.me\" f=\"Proxer.me.xml\"><exclusion pattern=\"^http://proxer\\.me/ashop\"/><securecookie host=\"^(.*\\.)?proxer\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxery.com\" f=\"Proxery.com.xml\"><securecookie host=\"^(?:www)?\\.proxery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxify\" f=\"Proxify.xml\"><securecookie host=\"^(?:.*\\.)?proxify\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxmox.com\" f=\"Proxmox.com.xml\"><securecookie host=\"^(?:forum\\.|www\\.)?proxmox\\.com$\" name=\".+\"/><rule from=\"^http://((?:forum|pve|www)\\.)?proxmox\\.com/\" to=\"https://$1proxmox.com/\"/></ruleset>", "<ruleset name=\"Proxy.org\" default_off=\"failed ruleset test\" f=\"Proxy.org.xml\"><securecookie host=\"^(?:.*\\.)?proxy\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxy.sh\" f=\"Proxy.sh.xml\"><securecookie host=\"^proxy\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProxySite.com\" f=\"ProxySite.com.xml\"><securecookie host=\"^(?:www)?\\.proxysite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxy Solutions.net (partial)\" f=\"Proxy_Solutions.xml\"><exclusion pattern=\"^http://www\\.proxysolutions\\.net/+(?!(?:affiliates|proxy-services|support|your-proxy-account)(?:$|[?/])|favicon\\.ico|images/|ref/|wp-content/|wp-content/)\"/><securecookie host=\"^www\\.proxysolutions\\.net$\" name=\"^PAPVisitorId$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrudentBear\" default_off=\"connection reset\" f=\"PrudentBear.xml\"><securecookie host=\"^www\\.prudentbear\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?prudentbear\\.com/\" to=\"https://www.prudentbear.com/\"/></ruleset>", "<ruleset name=\"prxy.com\" default_off=\"missing certificate chain\" f=\"Prxy.com.xml\"><securecookie host=\"^\\.prxy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?prxy\\.com/\" to=\"https://www.prxy.com/\"/></ruleset>", "<ruleset name=\"pso-vertrieb.de (partial)\" f=\"Pso-vertrieb.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pss.sk\" f=\"Pss.sk.xml\"><rule from=\"^http://(?:www\\.)?pss\\.sk/\" to=\"https://www.pss.sk/\"/><rule from=\"^http://moja\\.pss\\.sk/\" to=\"https://moja.pss.sk/\"/></ruleset>", "<ruleset name=\"pstatic.net\" default_off=\"failed ruleset test\" f=\"Pstatic.net.xml\"><rule from=\"^http://ssl\\.pstatic\\.net/\" to=\"https://ssl.pstatic.net/\"/></ruleset>", "<ruleset name=\"Psychology Today.com\" f=\"Psychology_Today.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pt engine.jp (partial)\" f=\"Pt_engine.jp.xml\"><rule from=\"^http://js\\.ptengine\\.jp/\" to=\"https://js.ptengine.jp/\"/></ruleset>", "<ruleset name=\"pthree.org\" f=\"Pthree.org.xml\"><securecookie host=\"^pthree\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pthree\\.org/\" to=\"https://pthree.org/\"/></ruleset>", "<ruleset name=\"Ptpimg.me\" f=\"Ptpimg.me.xml\"><rule from=\"^http://(?:www\\.)?ptpimg\\.me/\" to=\"https://ptpimg.me/\"/></ruleset>", "<ruleset name=\"PubGears.com (partial)\" f=\"PubGears.com.xml\"><securecookie host=\"^ox-d\\.pubgears\\.com$\" name=\".+\"/><rule from=\"^http://ox-d\\.pubgears\\.com/\" to=\"https://ox-d.pubgears.com/\"/></ruleset>", "<ruleset name=\"PubMatic.com (partial)\" f=\"PubMatic.xml\"><securecookie host=\"^.*\\.pubmatic\\.com$\" name=\".+\"/><rule from=\"^http://image(2|4)\\.pubmatic\\.com/\" to=\"https://simage$1.pubmatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubMed.gov\" f=\"PubMed.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubNXT.net (partial)\" f=\"PubNXT.net.xml\"><rule from=\"^http://analytics\\.pubnxt\\.net/\" to=\"https://analytics.pubnxt.net/\"/></ruleset>", "<ruleset name=\"PubNub (partial)\" f=\"PubNub.xml\"><securecookie host=\"^(?:\\.admin|help)\\.pubnub\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.pubnub\\.com/\" to=\"https://cdn.pubnub.com/\"/><rule from=\"^http://(admin|ps\\d*|pubsub)\\.pubnub\\.com/\" to=\"https://$1.pubnub.com/\"/><rule from=\"^http://(?:www\\.)?help\\.pubnub\\.com/\" to=\"https://help.pubnub.com/\"/></ruleset>", "<ruleset name=\"PubPeer.com (partial)\" f=\"PubPeer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubSoft.org\" default_off=\"missing certificate chain\" f=\"PubSoft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pubdirecte.com\" f=\"Pubdirecte.com.xml\"><securecookie host=\"^secure\\.pubdirecte\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:secure|static|www)\\.)?pubdirecte\\.com/\" to=\"https://secure.pubdirecte.com/\"/></ruleset>", "<ruleset name=\"Pubkey.is\" f=\"Pubkey.is.xml\"><securecookie host=\"^(?:www\\.)?pubkey\\.is$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publeaks.nl\" f=\"Publeaks.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Bank Malaysia\" f=\"Public-Bank-Malaysia.xml\"><securecookie host=\"^.*\\.pbebank\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?pbebank\\.com(\\.my)?/\" to=\"https://www.pbebank.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public-Idées (partial)\" f=\"Public-Idees.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Knowledge\" f=\"Public-Knowledge.xml\"><securecookie host=\"(?:^|\\.)publicknowledge\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?publicknowledge\\.org/\" to=\"https://www.publicknowledge.org/\"/></ruleset>", "<ruleset name=\"PLoS.org (partial)\" f=\"Public-Library-of-Science.xml\"><exclusion pattern=\"^http://(?:blogs\\.|currents\\.|www\\.)?plos\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:(?!(?:blogs|currents|www)\\.).+\\.)?plos\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public.Resource.Org\" default_off=\"failed ruleset test\" f=\"Public.Resource.Org.xml\"><rule from=\"^http://fax\\.org/\" to=\"https://bit.ly/\"/><rule from=\"^http://(?:www\\.)?(?:public\\.)?resource\\.org/\" to=\"https://public.resource.org/\"/><rule from=\"^http://bulk\\.resource\\.org/\" to=\"https://bulk.resource.org/\"/><rule from=\"^http://(www\\.)?(house|law|patent)\\.resource\\.org/\" to=\"https://$2.resource.org/\"/><rule from=\"^http://(?:www\\.)?yeswecan\\.org/\" to=\"https://yeswecan.org/\"/></ruleset>", "<ruleset name=\"Public Citizen\" f=\"PublicCitizen.xml\"><securecookie host=\"^(?:action|secure|www)\\.citizen\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?citizen\\.org/\" to=\"https://www.citizen.org/\"/><rule from=\"^http://(action|secure)\\.citizen\\.org/\" to=\"https://$1.citizen.org/\"/></ruleset>", "<ruleset name=\"PublicInsightNetwork.org\" default_off=\"failed ruleset test\" f=\"PublicInsightNetwork.org.xml\"><securecookie host=\"^(?:www\\.)?publicinsightnetwork\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publicintelligence.net\" f=\"PublicIntelligence.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Sector Management Program\" default_off=\"failed ruleset test\" f=\"PublicSectorManagementProgram.xml\"><rule from=\"^http://(?:www\\.)?psmprogram\\.gov\\.au/\" to=\"https://www.psmprogram.gov.au/\"/></ruleset>", "<ruleset name=\"Public Sector Superannuation Accumulation Plan\" f=\"PublicSectorSuperannuationAccumulationPlan.xml\"><rule from=\"^http://(?:www\\.)?pssap\\.gov\\.au/\" to=\"https://www.pssap.gov.au/\"/></ruleset>", "<ruleset name=\"Public Sector Superannuation Scheme\" f=\"PublicSectorSuperannuationScheme.xml\"><rule from=\"^http://(?:www\\.)?pss\\.gov\\.au/\" to=\"https://www.pss.gov.au/\"/></ruleset>", "<ruleset name=\"Public Object.com\" f=\"Public_Object.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Suffix.org\" f=\"Public_Suffix.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Public Whip\" default_off=\"failed ruleset test\" f=\"Public_Whip.xml\"><securecookie host=\"^\\.publicwhip\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?publicwhip\\.org\\.uk/\" to=\"https://www.publicwhip.org.uk/\"/></ruleset>", "<ruleset name=\"publiekeomroep.nl (partial)\" f=\"Publiekeomroep.nl.xml\"><securecookie host=\"^cookiesv2\\.publiekeomroep\\.nl$\" name=\".+\"/><securecookie host=\"^\\.cookiesv2\\.publiekeomroep\\.nl$\" name=\"^\\w+balanceid$\"/><rule from=\"^http://cookiesv2\\.publiekeomroep\\.nl/\" to=\"https://cookiesv2.publiekeomroep.nl/\"/></ruleset>", "<ruleset name=\"PublicDemand\" default_off=\"failed ruleset test\" f=\"PublikDemand.xml\"><securecookie host=\"^www\\.publikdemand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publons\" f=\"Publons.xml\"><securecookie host=\"^publons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pubservice.com\" f=\"Pubservice.com.xml\"><securecookie host=\"^(?:www\\.)?pubservice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"puckey.org\" f=\"Puckey.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puhkaeestis.ee\" f=\"Puhkaeestis.ee.xml\"><rule from=\"^http://(?:www\\.)?puhkaeestis\\.ee/\" to=\"https://www.puhkaeestis.ee/\"/><rule from=\"^http://prelive\\.puhkaeestis\\.ee/\" to=\"https://prelive.puhkaeestis.ee/\"/></ruleset>", "<ruleset name=\"Pulpix.co\" f=\"Pulpix.co.xml\"><securecookie host=\"^(?:player|www)\\.pulpix\\.co$\" name=\".+\"/><rule from=\"^http://pulpix\\.co/\" to=\"https://www.pulpix.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pulse.me\" f=\"Pulse.me.xml\"><rule from=\"^http://(?:www\\.)?pulse\\.me/\" to=\"https://www.pulse.me/\"/></ruleset>", "<ruleset name=\"PulsePoint (mismatches)\" default_off=\"mismatch\" f=\"PulsePoint-mismatches.xml\"><rule from=\"^http://aperture\\.displaymarketplace\\.com/\" to=\"https://aperture.displaymarketplace.com/\"/></ruleset>", "<ruleset name=\"PulsePoint (partial)\" default_off=\"failed ruleset test\" f=\"PulsePoint.xml\"><securecookie host=\"^www\\.apertureinsight\\.com$\" name=\".*\"/><securecookie host=\"^login\\.stormpost\\.datranmedia\\.com$\" name=\".*\"/><securecookie host=\"^exchange\\.pulsepoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puma.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Puma.com.xml\"><rule from=\"^http://www\\.puma\\.com/\" to=\"https://www.puma.com/\"/><rule from=\"^http://puma\\.com/\" to=\"https://www.puma.com/\"/><rule from=\"^http://assets\\.puma\\.com/\" to=\"https://assets.puma.com/\"/><rule from=\"^http://is\\.puma\\.com/\" to=\"https://is.puma.com/\"/></ruleset>", "<ruleset name=\"Pumo.com.tw (false MCB)\" platform=\"mixedcontent\" f=\"Pumo.com.tw-falsemixed.xml\"><securecookie host=\"^www\\.pumo\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://www\\.pumo\\.com\\.tw/\" to=\"https://www.pumo.com.tw/\"/></ruleset>", "<ruleset name=\"Pumo.com.tw (partial)\" f=\"Pumo.com.tw.xml\"><rule from=\"^http://www\\.pumo\\.com\\.tw/(?=/*www/+(?:[\\w-]+/+)?(?:css/|favicon\\.ico|images/|inc/|top/))\" to=\"https://www.pumo.com.tw/\"/></ruleset>", "<ruleset name=\"Punterlink (partial)\" default_off=\"failed ruleset test\" f=\"Punterlink.xml\"><rule from=\"^http://cdn\\.punterlink\\.co\\.uk/\" to=\"https://3026-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Punto.ar\" f=\"Puntu.ar.xml\"><securecookie host=\"^punto\\.ar$\" name=\".+\"/><rule from=\"^http://www\\.punto\\.ar/\" to=\"https://punto.ar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puppet Labs.com\" f=\"Puppet_Labs.xml\"><exclusion pattern=\"^http://info\\.puppetlabs\\.com/(?!css/|images/|js/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://info\\.puppetlabs\\.com/\" to=\"https://na-h.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purdue University Association\" default_off=\"failed ruleset test\" f=\"Purdue_Alumni_Association.xml\"><securecookie host=\"^www\\.purduealumni\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?purduealum(ni)?\\.org/\" to=\"https://www.purduealum$1.org/\"/></ruleset>", "<ruleset name=\"Purdue Plant Doctor\" f=\"Purdue_Plant_Doctor.xml\"><securecookie host=\"^(?:www\\.)?purdueplantdoctor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purdue University (partial)\" f=\"Purdue_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?science\\.purdue\\.edu/.+\\.html\"/><securecookie host=\"^.+\\.purdue\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?(?:admissions?|ag|agriculture|cancerresearch|ces|cyber|discoverypark|diversity|donate|dro|extension|nano|pathwaytopurdue|proed|support|tedx|vet)|www\\.acsl|qa\\.admission|intranet2?\\.ag|www[23]\\.ag|www\\.ag(?:con|ry)|autodiscover|(?:aragorn|printers)\\.bio|(?:qa|www)\\.(?:bioinformatics|hhs|irb|onepurdue|police)|blackboard|calendar|www\\.cco|www\\.cec|cassandra\\.cerias|www\\.cie|www\\.cri|(?:caid|editcourses|jafci(?:dev)?|testwww1|www)\\.chem|www\\.courses|portals\\.cs|www\\.distance|directory|qa\\.diversity|(?:myepoint|sharepoint)\\.ecn|(?:collaborate|discover)\\.education|(?:prod\\.|qa\\.)?owl\\.english|www\\.eventreg|(?:autodiscover\\.|legacy\\.)?exchange|www\\.four-h|giving|www\\.gradschool|www\\.hort|web\\.ics|www\\.ippu|www\\.is(?:co|s)|(?:erp-portal-prd|esa-oas-prod|goremote|help|ias|mdc|wiki|www2)\\.itap|(?:risque|www)\\.itns|(?:intra|webapps)\\.krannert|legacy|(?:apps|catalog|login\\.ezproxy|www1)\\.lib|(?:gmig|www)\\.math|www\\.mgmt|mycourses|mymail|(?:selfservice|wl)\\.mypurdue|owa|legacy\\.owa|qa\\.pathwaytopurdue|www\\.pec|www\\.pharmacy|(?:fixmyhome|trackpad)\\.physfac|www\\.physics|purr|web\\.rcac|(?:help|kb|lpvwebresnet01|my|stats|trams)\\.resnet|gar2\\.science|search|www\\.stud(?:ent-orgs|yabroad)|www\\.tech|(?:news|qa|www)\\.uns|qa\\.vet|www|qa\\.www)\\.)?purdue\\.edu/\" to=\"https://$1purdue.edu/\"/><rule from=\"^http://(?:www\\.)?(addl|bio|cerias|cla|cs|eas|gbe|getinvolved|housing|itap|krannert|lib|ezproxy\\.lib|rcac|science|union)\\.purdue\\.edu/\" to=\"https://www.$1.purdue.edu/\"/><rule from=\"^http://www\\.ansc\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.ag.purdue.edu/ansc\"/><rule from=\"^http://btny\\.purdue\\.edu/(\\?.*)?$\" to=\"https://www.ag.purdue.edu/btny$1\"/><rule from=\"^http://(?:www\\.)?cancer\\.purdue\\.edu/(?:[^\\?]*)(\\?.*)?$\" to=\"https://www.cancerresearch.purdue.edu/$1\"/><rule from=\"^http://www\\.cfs\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.purdue.edu/hhs/\"/><rule from=\"^http://www\\.cfs\\.purdue\\.edu/extension(?:[/\\?].*)?$\" to=\"https://www.purdue.edu/hhs/extension/\"/><rule from=\"^http://epics\\.ecn\\.purdue\\.edu/\" to=\"https://engineering.purdue.edu/EPICS\"/><rule from=\"^http://(?:www\\.)?(engineering|gateway|marketing|mypurdue)\\.purdue\\.edu/\" to=\"https://$1.purdue.edu/\"/><rule from=\"^http://www\\.entm\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.ag.purdue.edu/entm/Pages/default.aspx\"/><rule from=\"^http://india\\.fll\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.cla.purdue.edu/fll/\"/><rule from=\"^http://flowers\\.hort\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://ag.purdue.edu/hla/lopezlab/Pages/default.aspx\"/><rule from=\"^http://a(?:pi01|sc02)p\\.lib\\.purdue\\.edu/\" to=\"https://www.lib.purdue.edu/\"/><rule from=\"^http://docs\\.lib\\.purdue\\.edu/assets/\" to=\"https://dlpurdue.bepress.com/assets/\"/><rule from=\"^http://guides\\.lib\\.purdue\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://scholarly\\.lib\\.purdue\\.edu/\" to=\"https://www.lib.purdue.edu/scholarly\"/><rule from=\"^http://(?:www1?\\.)?psych\\.purdue\\.edu/\" to=\"https://www1.psych.purdue.edu/\"/><rule from=\"^http://c89\\.science\\.purdue\\.edu/$\" to=\"https://www.science.purdue.edu/\"/></ruleset>", "<ruleset name=\"Pure Auto (partial)\" f=\"Pure-Auto.xml\"><securecookie host=\"^(?:.*\\.)?purecars\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pure-privacy.org\" f=\"Pure-privacy.org.xml\"><rule from=\"^http://(?:www\\.)?pure-privacy\\.org/\" to=\"https://pure-privacy.org/\"/></ruleset>", "<ruleset name=\"PureHacking\" f=\"PureHacking.xml\"><rule from=\"^http://(?:www\\.)?purehacking\\.com/\" to=\"https://www.purehacking.com/\"/></ruleset>", "<ruleset name=\"PureInfo\" f=\"PureInfo.xml\"><securecookie host=\"^\\.pureinfo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PureVPN.com (partial)\" f=\"PureVPN.xml\"><exclusion pattern=\"^http://billing\\.purevpn\\.com/(?:announcements|downloads|index|knowledgebase)\\.php\"/><securecookie host=\"^\\.purevpn\\.com$\" name=\"^(?:first_visit|incap_ses_\\d+_\\d+|nlbi_\\d+|visid_incap_\\d+|visits)$\"/><securecookie host=\"^billing\\.purevpn\\.com$\" name=\"^___utm\\w+$\"/><securecookie host=\"^www\\.purevpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pure Cambogia.com\" f=\"Pure_Cambogia.com.xml\"><securecookie host=\"^\\.purecambogia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pure Chat.com (partial)\" f=\"Pure_Chat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purecine.fr (partial)\" default_off=\"missing certificate chain\" f=\"Purecine.fr.xml\"><rule from=\"^http://(?:www\\.)?purecine\\.fr/\" to=\"https://www.cinemovies.fr/\"/></ruleset>", "<ruleset name=\"Pureloto.com\" f=\"Pureloto.com.xml\"><securecookie host=\"^(?:www)?\\.pureloto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purina.com (partial)\" f=\"Purina.com.xml\"><securecookie host=\"^(?:www)?\\.purina\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purina Store.com (partial)\" f=\"Purina_Store.com.xml\"><securecookie host=\"^(?:www)?\\.purinastore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puritan.com\" f=\"Puritan.com.xml\"><rule from=\"^http://(?:www\\.)?puritan\\.com/\" to=\"https://www.puritan.com/\"/></ruleset>", "<ruleset name=\"Push.IO (partial)\" f=\"Push.IO.xml\"><securecookie host=\"^manage\\.push\\.io$\" name=\".+\"/><rule from=\"^http://(manage|status)\\.push\\.io/\" to=\"https://$1.push.io/\"/></ruleset>", "<ruleset name=\"PushPlay (partial)\" f=\"PushPlay.xml\"><securecookie host=\"^(?:www\\.)?pushplay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Push Popcorn\" default_off=\"failed ruleset test\" f=\"Push_Popcorn.xml\"><securecookie host=\"^(?:w*\\.)?pushpopcorn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pushbullet.com\" f=\"Pushbullet.com.xml\"><securecookie host=\"^\\.pushbullet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pusher.com (partial)\" f=\"Pusher.com.xml\"><rule from=\"^http://((?:app|js|sockjs|www)\\.)?pusher\\.com/\" to=\"https://$1pusher.com/\"/></ruleset>", "<ruleset name=\"Pusher (partial)\" f=\"Pusher.xml\"><securecookie host=\"^app\\.pusherapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pusherapp\\.com/\" to=\"https://pusher.com/\"/><rule from=\"^http://(app|ws)\\.pusherapp\\.com/\" to=\"https://$1.pusherapp.com/\"/></ruleset>", "<ruleset name=\"Pushover.net (partial)\" f=\"Pushover.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"put.as\" f=\"Put.as.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"put.io\" f=\"Put.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PutLocker (partial)\" f=\"PutLocker.xml\"><rule from=\"^http://wac\\.51d5\\.edgecastcdn\\.net/8051D5/\" to=\"https://gs1.wac.edgecastcdn.net/8051D5/\"/><rule from=\"^http://(?:images|static)\\.putlocker\\.com/\" to=\"https://images.putlocker.com/\"/><rule from=\"^http://(www\\.)?putlocker\\.com/(?=favicon\\.ico|fuu\\.php|images/|include/|putlocker\\.ico)\" to=\"https://$1putlocker.com/\"/></ruleset>", "<ruleset name=\"puu.sh\" f=\"Puu.sh.xml\"><securecookie host=\"^\\.puu\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"puush.me\" f=\"Puush.me.xml\"><securecookie host=\"^\\.puush\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?puush\\.me/\" to=\"https://puush.me/\"/></ruleset>", "<ruleset name=\"pviq.com\" f=\"Pviq.com.xml\"><securecookie host=\"^(?:www\\.)?pviq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PwdHash.com\" f=\"PwdHash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pwmt.org\" f=\"Pwmt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyCon.org (partial)\" f=\"PyCon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyCon.sg\" f=\"PyCon.sg.xml\"><securecookie host=\"^pycon\\.sg$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyPA.io\" f=\"PyPA.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyPIP.in (partial)\" default_off=\"connection dropped\" f=\"PyPIP.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyWeek.org\" f=\"PyWeek.org.xml\"><rule from=\"^http://pyweek\\.org/\" to=\"https://www.pyweek.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pyd.io\" f=\"Pyd.io.xml\"><securecookie host=\"^(?:www\\.)?pyd\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pydio.com\" f=\"Pydio.com.xml\"><rule from=\"^http://www\\.pydio\\.com/\" to=\"https://pydio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pyneo.org\" f=\"Pyneo.org.xml\"><securecookie host=\"^pyneo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pypi\" f=\"Pypi.xml\"><securecookie host=\"^pypi.python.org$\" name=\".*\"/><rule from=\"^http://pypi\\.python\\.org/\" to=\"https://pypi.python.org/\"/></ruleset>", "<ruleset name=\"Python.org (partial)\" f=\"Python.org.xml\"><securecookie host=\"^bugs\\.python\\.org$\" name=\".+\"/><securecookie host=\"^wiki\\.python\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PythonAnywhere.com\" f=\"PythonAnywhere.com.xml\"><securecookie host=\"^www\\.pythonanywhere\\.com$\" name=\".+\"/><rule from=\"^http://pythonanywhere\\.com/\" to=\"https://www.pythonanywhere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pythonhosted.org\" f=\"Pythonhosted.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q1Media.com (partial)\" f=\"Q1Media.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ads\\.q1media\\.com/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"q3k.org\" f=\"Q3k.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q7.com\" f=\"Q7-Enterprises.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q8Car.com (partial)\" f=\"Q8Car.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QB50.eu\" f=\"QB50.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QCon New York.com\" f=\"QCon_New_York.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QCon SF.com\" f=\"QCon_SF.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QFX Software.com\" f=\"QFX_Software.xml\"><rule from=\"^http://download\\.qfxsoftware\\.com/\" to=\"https://secure.qfxsoftware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QIP\" f=\"QIP.xml\"><securecookie host=\"^\\.qip\\.ru$\" name=\".+\"/><rule from=\"^http://((?:api|download|help|kards|lstats|maps|mail|memori|news|partner|pass|photo|pip|s|shot|search|welcome|www)\\.)?qip\\.ru/\" to=\"https://$1qip.ru/\"/><rule from=\"^http://mblogi\\.qip\\.ru/+\\??$\" to=\"https://qip.ru/?mblogi\"/><rule from=\"^http://mblogi\\.qip\\.ru/+[^?]*\\?\" to=\"https://qip.ru/?mblogi&\"/></ruleset>", "<ruleset name=\"QQ.com (mixed content)\" platform=\"mixedcontent\" f=\"QQ.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QQ.com (partial)\" f=\"QQ.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QR Server.com (partial)\" f=\"QR_Server.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QR Solutions.com\" f=\"QR_Solutions.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QS LI.com\" default_off=\"plaintext reply\" f=\"QS_LI.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?qsli\\.com/\" to=\"https://www.qsli.com/\"/></ruleset>", "<ruleset name=\"QSstats.com\" f=\"QSstats.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://qsstats\\.com/\" to=\"https://www.qsstats.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QStack.com\" f=\"QStack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QTH.com (partial)\" f=\"QTH.com.xml\"><securecookie host=\"^\\.billing\\.qth\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QUnit JS.com\" f=\"QUnit_JS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QWK.net (partial)\" f=\"QWK.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QWKnet LLC.com (partial)\" f=\"QWKnet_LLC.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QXL.dk\" f=\"QXL.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QXL static.dk\" f=\"QXL_static.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QXL static.no\" f=\"QXL_static.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qabel.de\" f=\"Qabel.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qbox.me\" f=\"Qbox.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qbrick.com (partial)\" f=\"Qbrick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qcloud.com (partial)\" f=\"Qcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qh img.com\" f=\"Qh_img.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://p([0-4])\\.qhimg\\.com/\" to=\"https://p$1.ssl.qhimg.com/\"/><rule from=\"^http://p\\d+\\.qhimg\\.com/\" to=\"https://p0.ssl.qhimg.com/\"/><rule from=\"^http://s(\\d)\\.qhimg\\.com/\" to=\"https://s$1.ssl.qhimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qihu CDN.com\" f=\"Qihu_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qlogo.cn\" f=\"Qlogo.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qnetp.net (partial)\" f=\"Qnetp.net.xml\"><securecookie host=\"^\\.mail\\.qnetp\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qnsr.com\" f=\"Qnsr.com.xml\"><rule from=\"^http://e1\\.cdn\\.qnsr\\.com/\" to=\"https://o1.qnsr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qoo10.cn (partial)\" f=\"Qoo10.cn.xml\"><securecookie host=\"^(?:my|qsm)\\.qoo10\\.cn$\" name=\".+\"/><rule from=\"^http://(gd|static)(?:ssl)?\\.image-qoo10\\.cn/\" to=\"https://$1ssl.image-qoo10.cn/\"/><rule from=\"^http://(my|qsm)\\.qoo10\\.cn/\" to=\"https://$1.qoo10.cn/\"/></ruleset>", "<ruleset name=\"Qoo10.com (partial)\" f=\"Qoo10.com.xml\"><securecookie host=\"^(?:kwave|my)\\.qoo10\\.com$\" name=\".+\"/><rule from=\"^http://dp\\.image-gmkt\\.com/\" to=\"https://staticssl.image-gmkt.com/\"/><rule from=\"^http://(gd|static)(?:ssl)?\\.image-gmkt\\.com/\" to=\"https://$1ssl.image-gmkt.com/\"/><rule from=\"^http://(kwave|my|pg)\\.qoo10\\.com/\" to=\"https://$1.qoo10.com/\"/></ruleset>", "<ruleset name=\"Qpic.cn (partial)\" f=\"Qpic.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qrobe.it\" f=\"Qrobe.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.qrobe\\.it/\" to=\"https://qrobe.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QRpedia.org\" default_off=\"missing chain cert\" platform=\"mixedcontent\" f=\"Qrpedia.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qrq.de (partial)\" default_off=\"self-signed\" f=\"Qrq.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qrz.com\" f=\"Qrz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt-project.org\" f=\"Qt-project.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://qt-project\\.org/\" to=\"https://www.qt-project.org/\"/><rule from=\"^http://bugreports\\.qt-project\\.org/\" to=\"https://bugreports.qt.io/\"/><rule from=\"^http://planet\\.qt-project\\.org/\" to=\"https://planet.qt.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt.io\" f=\"Qt.io.xml\"><rule from=\"^http://qt\\.io/\" to=\"https://www.qt.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt Cloud Services.com\" f=\"Qt_Cloud_Services.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.qtcloudservices\\.com/\" to=\"https://qtcloudservices.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt Developer Days.com\" f=\"Qt_Developer_Days.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qtastatic.com\" f=\"Qtastatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuKuai.com (partial)\" f=\"QuKuai.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quackquackgo.nl\" f=\"Quackquackgo.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuadPoint.org\" f=\"QuadPoint.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quadrant.org.au\" f=\"Quadrant.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quadrantsec.com\" f=\"Quadrantsec.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quadriga CX.com\" f=\"Quadriga_CX.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quagga.net\" f=\"Quagga.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuakeNet.org\" f=\"QuakeNet.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://quakenet\\.org/\" to=\"https://www.quakenet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qualaris.com\" f=\"Qualaris.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.qualaris\\.com/\" to=\"https://qualaris.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qualcomm.com (partial)\" f=\"Qualcomm.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://qualcomm\\.com/\" to=\"https://www.qualcomm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quality-ABO.de (partial)\" f=\"Quality-ABO.de.xml\"><exclusion pattern=\"^http://www\\.quality-abo\\.de/(?!QA/|mlb_public/)\"/><rule from=\"^http://quality-abo\\.de/\" to=\"https://www.quality-abo.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QualityAgent (partial)\" default_off=\"connection refused\" f=\"QualityAgent.xml\"><securecookie host=\"^.+\\.qualityunit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QualityUnit.com\" f=\"QualityUnit.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qualtrics (surveys)\" f=\"Qualtrics.xml\"><exclusion pattern=\"^http://www\\.qualtrics\\.com/+(?:$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://qualtrics\\.com/\" to=\"https://www.qualtrics.com/\"/><rule from=\"^http://cloudfront\\.qualtrics\\.com/\" to=\"https://d3gbx5vaoeb2ad.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.((?:az1|us2|asia)\\.)?qualtrics\\.com/\" to=\"https://$1.$2qualtrics.com/\"/></ruleset>", "<ruleset name=\"Qualys.com\" f=\"Qualys.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://laws\\.qualys\\.com/+\" to=\"https://community.qualys.com/blogs/laws-of-vulnerabilities/\"/><rule from=\"^http://news\\.qualys\\.com/+\" to=\"https://community.qualys.com/blogs/news/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quamnet.com (partial)\" f=\"Quamnet.com.xml\"><securecookie host=\"^\\.quamnet\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quandl.com\" f=\"Quandl.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quanta Magazine.org\" f=\"Quanta_Magazine.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantcast.com\" f=\"Quantcast.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuantifiedCode.com (partial)\" f=\"QuantifiedCode.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantix (partial)\" f=\"Quantix.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"\\.quantixtickets[18]\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantopian.com\" f=\"Quantopian.com.xml\"><securecookie host=\"^\\.quantopian\\.com$\" name=\".+\"/><rule from=\"^http://status\\.quantopian\\.com/\" to=\"https://quantopian.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantserve.com\" f=\"Quantserve.com.xml\"><rule from=\"^http://edge\\.quantserve\\.com/\" to=\"https://www.quantserve.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuantumMAN site.com\" f=\"QuantumMAN.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quattroplay.com\" f=\"Quattroplay.com.xml\"><securecookie host=\"^(?:.*\\.)?quattroplay\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?quattroplay\\.com/\" to=\"https://$1quattroplay.com/\"/></ruleset>", "<ruleset name=\"Qubes-OS.org (partial)\" f=\"Qubes-OS.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qubit products.com (partial)\" f=\"Qubit_products.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quch.io\" f=\"Quch.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QGazette.com\" default_off=\"mismatched\" f=\"Queens-Gazette.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Queen's University Belfast (partial)\" f=\"Queens_University_Belfast.xml\"><rule from=\"^http://(?:www\\.)?qub\\.ac\\.uk/\" to=\"https://www.qub.ac.uk/\"/><rule from=\"^http://(?:www\\.)?daro\\.qub\\.ac\\.uk/\" to=\"https://daro.qub.ac.uk/\"/><rule from=\"^http://knock\\.qub\\.ac\\.uk/(?:\\?.*)?$\" to=\"https://login.qol.qub.ac.uk/home/?logout=true\"/><rule from=\"^http://knock\\.qub\\.ac\\.uk/myqueens/\" to=\"https://knock.qub.ac.uk/myqueens/\"/><rule from=\"^http://(home|login)\\.qol\\.qub\\.ac\\.uk/\" to=\"https://$1.qol.qub.ac.uk/\"/></ruleset>", "<ruleset name=\"QueerVids.com\" f=\"QueerVids.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Querna.org (partial)\" f=\"Querna.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quest.com\" platform=\"mixedcontent\" f=\"Quest.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://quest\\.com/\" to=\"https://www.quest.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuestComp.com\" f=\"QuestComp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://questcomp\\.com/\" to=\"https://www.questcomp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questacon.edu.au\" f=\"Questacon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questia.com\" f=\"Questia.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Question-Defense.com\" platform=\"mixedcontent\" f=\"Question-Defense.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuestionCopyright.org\" default_off=\"plaintext reply\" f=\"QuestionCopyright.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questionmarket.com\" f=\"Questionmarket.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuickHash.com\" f=\"QuickHash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Shopping Cart.com\" f=\"Quick_Shopping_Cart.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fastshoppingcart\\.com/\" to=\"https://app.fastshoppingcart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quickbitcoin.co.uk (partial)\" f=\"Quick_bitcoin.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quicktranslate.com\" f=\"Quicktranslate.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quidco.com (partial)\" f=\"Quidco.com.xml\"><exclusion pattern=\"^http://www\\.quidco\\.com/+(?!$|\\?|blog/wp-content/|(?:join-quidco|sign-in)(?:$|[?/])|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuikPAY asp.com\" f=\"QuikPAY_asp.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.quikpayasp\\.com/\" to=\"https://quikpayasp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quik Callus.com\" f=\"Quik_Callus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuinStreet.com (false MCB)\" platform=\"mixedcontent\" f=\"QuinStreet-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuinStreet.com\" f=\"QuinStreet.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quirks.com\" f=\"Quirks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuiteRSS.org\" f=\"QuiteRSS.org.xml\"><rule from=\"^http://www\\.quiterss\\.org/\" to=\"https://quiterss.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quitter.is\" f=\"Quitter.is.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.quitter\\.is/\" to=\"https://quitter.is/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quitter.no\" f=\"Quitter.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.quitter\\.no/\" to=\"https://quitter.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quitter.se\" f=\"Quitter.se.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuizAction.de (partial)\" f=\"QuizAction.de.xml\"><rule from=\"^http://(www\\.)?(yahoo\\.)?quizaction\\.de/(?=favicon\\.ico|img/|pics/|w/)\" to=\"https://$1$2quizaction.de/\"/></ruleset>", "<ruleset name=\"quizsnack.com (partial)\" f=\"Quizsnack.com.xml\"><rule from=\"^http://files\\.quizsnack\\.com/\" to=\"https://s3.amazonaws.com/files.quizsnack.com/\"/></ruleset>", "<ruleset name=\"Qune.kuluttajavirasto.fi\" default_off=\"failed ruleset test\" f=\"Qune.kuluttajavirasto.fi.xml\"><rule from=\"^http://qune\\.kuluttajavirasto\\.fi/\" to=\"https://qune.kuluttajavirasto.fi/\"/></ruleset>", "<ruleset name=\"Quora\" f=\"Quora.xml\"><securecookie host=\"^\\.quora\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.tch\\.|www\\.|[\\w-]+\\.)?quora\\.com/\" to=\"https://$1quora.com/\"/><rule from=\"^http://qph\\.cf\\.quoracdn\\.net/\" to=\"https://d2o7bfz2il9cb7.cloudfront.net/\"/><rule from=\"^http://(\\w+)\\.cf\\.quoracdn\\.net/\" to=\"https://$1.s3.amazonaws.com/\"/><rule from=\"^http://(\\w+)\\.is\\.quoracdn\\.net/\" to=\"https://$1.is.quoracdn.net/\"/></ruleset>", "<ruleset name=\"Quorks\" default_off=\"Cert warning\" f=\"Quorks.xml\"><rule from=\"^http://quorks\\.ath\\.cx/login\\.php$\" to=\"https://quorks.ath.cx/login.php\"/></ruleset>", "<ruleset name=\"QuoteMedia.com\" f=\"QuoteMedia.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quotes and Sayings.com\" default_off=\"redirects to another domain\" f=\"Quotes_and_Sayings.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quotestream.com (partial)\" f=\"Quotestream.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QupZilla.com\" default_off=\"self-signed\" f=\"QupZilla.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quto.ru (partial)\" default_off=\"missing certificate chain\" f=\"Quto.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quup.com\" f=\"Quup.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.quup\\.com/\" to=\"https://quup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qwant.com\" f=\"Qwant.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qweery (partial)\" default_off=\"failed ruleset test\" f=\"Qweery.xml\"><rule from=\"^http://box\\.qweery\\.nl/\" to=\"https://box.qweery.nl/\"/></ruleset>", "<ruleset name=\"QXL.no (partial)\" f=\"Qxl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qz.com (partial)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Qz.com.xml\"><rule from=\"^http://img\\.qz\\.com/\" to=\"https://qzprod.files.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R-HPC\" f=\"R-HPC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R-kom.de\" default_off=\"failed ruleset test\" f=\"R-kom.xml\"><rule from=\"^http://kundenportal\\.r\\-kom\\.de/\" to=\"https://kundenportal.r-kom.de/\"/><rule from=\"^http://www\\.r\\-kom\\.de/\" to=\"https://www.r-kom.de/\"/></ruleset>", "<ruleset name=\"R00tshell.lighthouseapp.com\" default_off=\"Cert wildcard depth mismatch\" f=\"R00tshell.lighthouseapp.com.xml\"><rule from=\"^http://r00tshell\\.lighthouseapp\\.com/\" to=\"https://www.r00tshell.lighthouseapp.com/\"/></ruleset>", "<ruleset name=\"r00tz.org (partial)\" f=\"R00tz.org.xml\"><rule from=\"^http://(?:www\\.)?r00tz(?:-org\\.theidentityproject\\.com|\\.org)/wp-content/\" to=\"https://secure.bluehost.com/~theiden1/r00tz/wp-content/\"/></ruleset>", "<ruleset name=\"R01 (partial)\" f=\"R01.xml\"><securecookie host=\"^\\.?partner\\.r01\\.ru$\" name=\".+\"/><rule from=\"^http://partner\\.r01\\.ru/\" to=\"https://partner.r01.ru/\"/></ruleset>", "<ruleset name=\"R66T\" default_off=\"failed ruleset test\" f=\"R66T.xml\"><securecookie host=\"^(?:www\\.)?onsiteconcierge\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:onsiteconcierge|r66t)\\.com/\" to=\"https://$1onsiteconcierge.com/\"/></ruleset>", "<ruleset name=\"R7.com (partial)\" f=\"R7.com.xml\"><rule from=\"^http://barra\\.r7\\.com/\" to=\"https://barra.r7.com/\"/></ruleset>", "<ruleset name=\"r7ls.net\" f=\"R7ls.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAC\" default_off=\"failed ruleset test\" f=\"RAC.xml\"><securecookie host=\"^(?:.+\\.)?rac\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rac\\.co\\.uk/\" to=\"https://www.rac.co.uk/\"/></ruleset>", "<ruleset name=\"RAINN.org (partial)\" f=\"RAINN.org.xml\"><securecookie host=\"^(?:\\.|apps\\.|donate\\.|www\\.)?rainn\\.org$\" name=\".+\"/><rule from=\"^http://((?:apps|donate|hotline|ohl|www)\\.)?rainn\\.org/\" to=\"https://$1rainn.org/\"/></ruleset>", "<ruleset name=\"RAM Host.us (partial)\" f=\"RAM_Host.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAND (partial)\" f=\"RAND.xml\"><securecookie host=\"^\\.rand\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?rand\\.org/(cart(?:$|\\?|/)|content/|etc/|favicon\\.ico|profile(?:$|\\?|\\.html))\" to=\"https://www.rand.org/$1\"/></ruleset>", "<ruleset name=\"RANZCP\" f=\"RANZCP.xml\"><rule from=\"^http://(?:www\\.)?ranzcp\\.org/\" to=\"https://www.ranzcp.org/\"/></ruleset>", "<ruleset name=\"RAUR\" f=\"RAUR.xml\"><rule from=\"^http://(www\\.)?instaradio\\.com/\" to=\"https://$1raur.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBCommons.com (partial)\" f=\"RBCommons.com.xml\"><securecookie host=\"^(?:www\\.)?rbcommons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RB Invest WDC.eu (partial)\" default_off=\"connection dropped\" f=\"RB_Invest_WDC.eu.xml\"><securecookie host=\"^rbinvestwdc\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reformed Church\" f=\"RCA.org.xml\"><rule from=\"^http://(?:www\\.)?rca\\.org/\" to=\"https://www.rca.org/\"/></ruleset>", "<ruleset name=\"RCFP.org (partial)\" f=\"RCFP.org.xml\"><securecookie host=\"^\\.rcfp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCKing.eu\" f=\"RCKing.xml\"><securecookie host=\"^(?:w*\\.)?rcking\\.eu$\" name=\".+\"/><rule from=\"^http://rcking\\.eu/\" to=\"https://www.rcking.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCPmag.com\" f=\"RCPmag.com.xml\"><securecookie host=\"^rcpmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCUK.ac.uk (self-signed)\" default_off=\"self-signed\" f=\"RCUK.ac.uk-problematic.xml\"><rule from=\"^http://blogs\\.rcuk\\.ac\\.uk/\" to=\"https://blogs.rcuk.ac.uk/\"/></ruleset>", "<ruleset name=\"RCUK.ac.uk (partial)\" f=\"RCUK.ac.uk.xml\"><rule from=\"^http://je-s\\.rcuk\\.ac\\.uk/\" to=\"https://je-s.rcuk.ac.uk/\"/></ruleset>", "<ruleset name=\"RDO project.org\" f=\"RDO_project.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ask\\.rdoproject\\.org/+\" to=\"https://ask.openstack.org/en/questions/scope:unanswered/sort:age-desc/page:1/query:rdo/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RDot.org\" default_off=\"self-signed\" f=\"RDot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RE.is (partial)\" f=\"RE.is.xml\"><rule from=\"^http://(?:www\\.)?re\\.is/(?=da/CartService/|media/|skin/)\" to=\"https://www.re.is/\"/><rule from=\"^http://agent\\.re\\.is/\" to=\"https://agent.re.is/\"/></ruleset>", "<ruleset name=\"REC Registry\" f=\"RECRegistry.xml\"><rule from=\"^http://(?:www\\.)?rec-registry\\.gov\\.au/\" to=\"https://www.rec-registry.gov.au/\"/></ruleset>", "<ruleset name=\"REFEDS.org\" f=\"REFEDS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"REMnux.org\" f=\"REMnux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RESOLV\" default_off=\"mismatch\" f=\"RESOLV.xml\"><securecookie host=\"^www\\.resolv\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?resolv\\.org/\" to=\"https://www.resolv.org/\"/></ruleset>", "<ruleset name=\"REWAG.de\" default_off=\"failed ruleset test\" f=\"REWAG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"REcon.cx\" f=\"REcon.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RFC-Editor\" f=\"RFC-Editor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RFC Express\" f=\"RFC_Express.xml\"><securecookie host=\"^(?:www\\.)?rfcexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RF Parts.com\" default_off=\"failed ruleset test\" f=\"RF_Parts.com.xml\"><securecookie host=\"^\\.www\\.rfparts\\.com$\" name=\".+\"/><rule from=\"^http://rfparts\\.com/.*\" to=\"https://www.rfparts.com/\"/><rule from=\"^http://www\\.rfparts\\.com/\" to=\"https://www.rfparts.com/\"/></ruleset>", "<ruleset name=\"RF SUNY.org (partial)\" f=\"RF_SUNY.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RG static.net\" f=\"RG_static.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RHUL.ac.uk (partial)\" f=\"RHUL.ac.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?isg\\.rhul\\.ac\\.uk/+(?:~|tls(?:$|[?/]))\"/><securecookie host=\"^(?:cimhelpdesk|helpdesk\\.ma|www)\\.rhul\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rhul\\.ac\\.uk/\" to=\"https://www.rhul.ac.uk/\"/><rule from=\"^http://(?:cimhelpdesk|helpdesk\\.ma)\\.rhul\\.ac\\.uk/\" to=\"https://helpdesk.ma.rhul.ac.uk/\"/><rule from=\"^http://(www\\.)?isg\\.rhul\\.ac\\.uk/\" to=\"https://$1isg.rhul.ac.uk/\"/></ruleset>", "<ruleset name=\"RH Cloud.com\" f=\"RH_Cloud.com.xml\"><securecookie host=\"^[\\w-]+\\.rhcloud\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rhcloud\\.com/+\" to=\"https://openshift.com/\"/><rule from=\"^http://([\\w-]+)\\.rhcloud\\.com/\" to=\"https://$1.rhcloud.com/\"/></ruleset>", "<ruleset name=\"RIA.com (partial)\" f=\"RIA.com.xml\"><exclusion pattern=\"^http://(?:avia2?|bezpeka|cobrand|help)\\.ria\\.com/\"/><securecookie host=\"^\\w.*\\.ria\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.|img\\.auto\\.)?ria\\.com/\" to=\"https://$1ria.com/\"/></ruleset>", "<ruleset name=\"RIA.ua\" f=\"RIA.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIAA\" platform=\"mixedcontent\" f=\"RIAA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIA static.com\" f=\"RIA_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIC.org\" f=\"RIC.org.xml\"><securecookie host=\"^(?:www\\.)?ric\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIKEN.jp (partial)\" f=\"RIKEN.jp.xml\"><exclusion pattern=\"^http://www\\.aics\\.riken\\.jp/+(?!aicssite/wp-content/)\"/><securecookie host=\".+\\.riken\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIS\" f=\"RIS.BKA.gv.at.xml\"><rule from=\"^http://(?:www\\.)?ris\\.bka\\.gv\\.at/\" to=\"https://www.ris.bka.gv.at/\"/></ruleset>", "<ruleset name=\"RISCOS.com\" default_off=\"mismatched\" f=\"RISCOS.com.xml\"><rule from=\"^http://(?:www\\.)?riscos\\.com/\" to=\"https://riscos.com/\"/></ruleset>", "<ruleset name=\"RISI\" f=\"RISI.xml\"><securecookie host=\"^www\\.risiinfo\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?risi(?:info)?\\.com/\" to=\"https://$1risiinfo.com/\"/></ruleset>", "<ruleset name=\"RIT.edu (partial)\" f=\"RIT.edu.xml\"><exclusion pattern=\"^http://www\\.ntid\\.rit\\.edu/(?!$|sites/)\"/><exclusion pattern=\"^http://ritpress\\.rit\\.edu/+(?!misc/|modules/|sites/)\"/><securecookie host=\"^\\.rit\\.edu$\" name=\"^RITApache$\"/><securecookie host=\"^(?:footprints02\\.main\\.ad|albert|artoncampus|cias|checkout\\.cias|start)\\.rit\\.edu$\" name=\".+\"/><rule from=\"^http://rit\\.edu/+\" to=\"https://www.rit.edu/\"/><rule from=\"^http://dirs\\.cis\\.rit\\.edu/+\" to=\"https://www.cis.rit.edu/remote-sensing/\"/><rule from=\"^http://thewallacecenter\\.rit\\.edu/+\" to=\"https://wallacecenter.rit.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RL CDN.com\" f=\"RL_CDN.com.xml\"><securecookie host=\"^\\.rlcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RL Rose\" f=\"RL_Rose.xml\"><securecookie host=\"^(?:www)?\\.rlrose\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RMIT.edu.au (partial)\" f=\"RMIT.edu.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rmit\\.edu\\.au/\" to=\"https://www.rmit.edu.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RNR Wheels & Tires (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"RNR_Wheels_and_Tires.xml\"><securecookie host=\"^\\.rnrwheels\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rnrwheels\\.com/\" to=\"https://www.rnrwheels.com/\"/><rule from=\"^http://shop\\.rnrwheels\\.com/(Portals/|scripts/|show(?:Category|Product)Image\\.aspx)\" to=\"https://shop.rnrwheels.com/$1\"/></ruleset>", "<ruleset name=\"RNW.nl (partial)\" f=\"RNW.nl.xml\"><securecookie host=\".+\\.rnw\\.nl$\" name=\".+\"/><rule from=\"^http://(intranet|ocs|rvt-docs|sites|vpn|webmail|webtier)\\.rnw\\.nl/\" to=\"https://$1.rnw.nl/\"/></ruleset>", "<ruleset name=\"RNengage.com\" f=\"RNengage.com.xml\"><securecookie host=\"^\\.www\\.rnengage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RNpdigital.com\" f=\"RNpdigital.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROBOXchange.com\" f=\"ROBOXchange.xml\"><securecookie host=\"^www\\.roboxchange\\.com$\" name=\".+\"/><rule from=\"^http://roboxchange\\.com/\" to=\"https://www.roboxchange.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROCKZi.com\" default_off=\"failed ruleset test\" f=\"ROCKZi.com.xml\"><securecookie host=\"^\\.?rockzi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROHC-lib.org\" default_off=\"failed ruleset test\" f=\"ROHC-lib.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROI.ru\" f=\"ROI.ru.xml\"><securecookie host=\"^\\.roi\\.ru$\" name=\".+\"/><rule from=\"^http://((?:css|js|www)\\.)?roi\\.ru/\" to=\"https://$1roi.ru/\"/></ruleset>", "<ruleset name=\"ROI Solutions (partial)\" f=\"ROI_Solutions.xml\"><securecookie host=\"^secure2\\.roisolutions\\.net$\" name=\".+\"/><rule from=\"^http://secure2\\.roisolutions\\.net/\" to=\"https://secure2.roisolutions.net/\"/></ruleset>", "<ruleset name=\"ROMDashboard.com\" f=\"ROMDashboard.xml\"><securecookie host=\"^(?:w*\\.)?romdashboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPM Fusion.org (partial)\" f=\"RPM_Fusion.org.xml\"><securecookie host=\"^bugzilla\\.rpmfusion\\.org$\" name=\".+\"/><rule from=\"^http://(bugzilla|lists)\\.rpmfusion\\.org/\" to=\"https://$1.rpmfusion.org/\"/></ruleset>", "<ruleset name=\"RPXNow.com (partial)\" f=\"RPXNow.com.xml\"><securecookie host=\"^(?:.*\\.)?rpxnow\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn|static)\\.rpxnow\\.com/\" to=\"https://s3.amazonaws.com/static.rpxnow.com/\"/><rule from=\"^http://widget-cdn\\.rpxnow\\.com/\" to=\"https://d29usylhdk1xyu.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?rpxnow\\.com/\" to=\"https://$1rpxnow.com/\"/></ruleset>", "<ruleset name=\"RRTS.com\" f=\"RRTS.com.xml\"><securecookie host=\"^(?:beta|www)\\.rrts\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rrts\\.com/\" to=\"https://www.rrts.com/\"/><rule from=\"^http://(beta|webservices|webservicesbeta)\\.rrts\\.com/\" to=\"https://$1.rrts.com/\"/></ruleset>", "<ruleset name=\"RS-links.info\" default_off=\"expired, mismatch, self-signed\" f=\"RS-linkz.info.xml\"><securecookie host=\"^www\\.rs-linkz\\.info$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rs-linkz\\.info/\" to=\"https://www.rs-linkz.info/\"/></ruleset>", "<ruleset name=\"RSA Security (partial)\" default_off=\"failed ruleset test\" f=\"RSA-Security.xml\"><rule from=\"^http://www\\.securesuite\\.co\\.uk/\" to=\"https://www.securesuite.co.uk/\"/></ruleset>", "<ruleset name=\"RSA\" f=\"RSA.xml\"><securecookie host=\"^\\.rsa\\.com$\" name=\"^__(?:qca|utm\\w)$\"/><securecookie host=\"^\\.blogs\\.rsa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rsa\\.com/\" to=\"https://www.rsa.com/\"/><rule from=\"^http://blogs\\.rsa\\.com/\" to=\"https://blogs.rsa.com/\"/></ruleset>", "<ruleset name=\"RSA Conference (partial)\" f=\"RSA_Conference.xml\"><exclusion pattern=\"^http://www\\.rsaconference\\.com/+(?:podcasts|videos)(?:$|[?/])\"/><securecookie host=\"^(?:365|beta)\\.rsaconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSBAC.org (mismatches)\" default_off=\"mismatched\" f=\"RSBAC-mismatches.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSBAC.org (partial)\" f=\"RSBAC.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSC.org.uk\" f=\"RSC.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+$\" to=\"https://outlook.office365.com/owa/?realm=rsc.org.uk&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=rsc.org.uk&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+(.+)\" to=\"https://outlook.office365.com/$1&realm=rsc.org.uk&vd=autodiscover\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSF.org (false MCB)\" platform=\"mixedcontent\" f=\"RSF.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSM secure.com\" f=\"RSM_secure.com.xml\"><rule from=\"^http://rsm(\\d)\\.rsmsecure\\.com/\" to=\"https://rsm$1.rsmsecure.com/\"/></ruleset>", "<ruleset name=\"RSPB\" f=\"RSPB.xml\"><securecookie host=\"^\\.shopping\\.rspb\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSPCA (partial)\" f=\"RSPCA.xml\"><securecookie host=\"^donations\\.rspca\\.org\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.rspca\\.org\\.uk$\" name=\"^CMS_PRD_SESSIONID$\"/><rule from=\"^http://www\\.rspca\\.org\\.uk/home\" to=\"https://www.rspca.org.uk/home/\"/><rule from=\"^http://content\\.www\\.rspca\\.org\\.uk/\" to=\"https://www.rspca.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSPCA shop.co.uk\" default_off=\"failed ruleset test\" f=\"RSPCA_shop.co.uk.xml\"><securecookie host=\"^(?:.*\\.)?rspcashop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSSinclude\" f=\"RSSinclude.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSSing.com\" default_off=\"expired, self-signed\" f=\"RSSing.com.xml\"><securecookie host=\"^\\.rssing\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rssing\\.com/\" to=\"https://www.rssing.com/\"/></ruleset>", "<ruleset name=\"RST forums.com\" f=\"RST_forums.com.xml\"><securecookie host=\"^\\.rstforums\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSVP\" platform=\"mixedcontent\" f=\"RSVP.xml\"><rule from=\"^http://(?:images\\.|resources\\.)?rsvp\\.com\\.au/\" to=\"https://www.rsvp.com.au/\"/><rule from=\"^http://www\\.rsvp\\.com\\.au/((?:cms-|member)media/|css/|favicon\\.ico|images/|login\\.action|registration/)\" to=\"https://www.rsvp.com.au/$1\"/></ruleset>", "<ruleset name=\"RStudio.com (partial)\" default_off=\"failed ruleset test\" f=\"RStudio.com.xml\"><rule from=\"^http://(?:www\\.)?rstudio\\.com/\" to=\"https://www.rstudio.com/\"/></ruleset>", "<ruleset name=\"RT.com (partial)\" f=\"RT.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RT.ru\" f=\"RT.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTE.ie (partial)\" f=\"RTE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTEK 2000.com\" f=\"RTEK_2000.com.xml\"><securecookie host=\"^\\.rtek2000\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTEMS.org\" f=\"RTEMS.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTK\" default_off=\"expired\" f=\"RTK.xml\"><securecookie host=\"^\\.rtklive\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rtklive\\.com/(\\?.*)?$\" to=\"https://rtklive.com/new/index.php$1\"/><rule from=\"^http://(?:www\\.)?rtklive\\.com/\" to=\"https://rtklive.com/\"/></ruleset>", "<ruleset name=\"RTL.de (partial)\" f=\"RTL.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTP.vc\" default_off=\"failed ruleset test\" f=\"RTP.vc.xml\"><securecookie host=\"^\\.rtp\\.vc$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rtp\\.vc/\" to=\"https://www.rtp.vc/\"/></ruleset>", "<ruleset name=\"RT Tire\" f=\"RT_Tire.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RU-Golos\" default_off=\"self-signed\" f=\"RU-Golos.xml\"><securecookie host=\"^ru-golos\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ru-golos\\.ru/\" to=\"https://ru-golos.ru/\"/></ruleset>", "<ruleset name=\"RUB.de (partial)\" f=\"RUB.de.xml\"><rule from=\"^http://rub\\.de/\" to=\"https://www.rub.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RUDI.net\" f=\"RUDI.net.xml\"><securecookie host=\"^\\.rudi\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rudi\\.net/\" to=\"https://www.rudi.net/\"/></ruleset>", "<ruleset name=\"RUSI.org (partial)\" f=\"RUSI.org.xml\"><rule from=\"^http://rusi\\.org/\" to=\"https://www.rusi.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RVLution.net\" default_off=\"expired, mismatched\" f=\"RVLution.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RVM.io\" f=\"RVM.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RYL Warfare\" default_off=\"failed ruleset test\" f=\"RYL_Warfare.xml\"><securecookie host=\"^(?:w*\\.)?rylwarfare\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?rylwarfare\\.net/\" to=\"https://$1rylwarefare.net/\"/></ruleset>", "<ruleset name=\"RYOT (partial)\" default_off=\"missing certificate chain\" f=\"RYOT.xml\"><rule from=\"^http://(?:www\\.)?ryot\\.org/(?=wp-content/)\" to=\"https://ryot.org/\"/></ruleset>", "<ruleset name=\"raKditigal (partial)\" f=\"RaKdigital.xml\"><securecookie host=\"^(?:(?:www\\.)?clients|managewp)\\.rakdigital\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?clients|managewp)\\.rakdigital\\.co\\.uk/\" to=\"https://$1.rakdigital.co.uk/\"/></ruleset>", "<ruleset name=\"Raam.org\" f=\"Raam.org.xml\"><rule from=\"^http://www\\.raam\\.org/\" to=\"https://raam.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RabbitMQ\" f=\"RabbitMQ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rabbit Porno.com\" f=\"Rabbit_Porno.com.xml\"><securecookie host=\"^\\.rabbitporno\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rabobank\" f=\"Rabobank.xml\"><securecookie host=\"^(?:bankieren|www)?\\.rabobank\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rabotilnica.com.mk\" default_off=\"mismatched, self-signed, some pages 404\" f=\"Rabotilnica.com.mk.xml\"><rule from=\"^http://(?:www\\.)?rabotilnica\\.com\\.mk/\" to=\"https://rabotilnica.com.mk/\"/></ruleset>", "<ruleset name=\"Race Forward.org\" f=\"Race_Forward.org.xml\"><rule from=\"^http://raceforward\\.org/\" to=\"https://www.raceforward.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Race to Health.co.uk\" f=\"Race_to_Health.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rachelbythebay.com\" f=\"Rachelbythebay.com.xml\"><rule from=\"^http://(?:www\\.)?rachelbythebay\\.com/\" to=\"https://www.rachelbythebay.com/\"/></ruleset>", "<ruleset name=\"racjonalista.pl\" default_off=\"self-signed\" f=\"Racjonalista.pl.xml\"><securecookie host=\"^\\.racjonalista\\.pl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?racjonalista\\.pl/\" to=\"https://www.racjonalista.pl/\"/></ruleset>", "<ruleset name=\"Rack911\" f=\"Rack911.xml\"><securecookie host=\"^\\.rack911\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RackCDN.com\" f=\"RackCDN.com.xml\"><rule from=\"^http://([\\w-]+)\\.(?:r\\d+|ssl)\\.cf(\\d)\\.rackcdn\\.com/\" to=\"https://$1.ssl.cf$2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Racked.com\" f=\"Racked.com.xml\"><rule from=\"^http://racked\\.com/\" to=\"https://www.racked.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Racket-lang.org (partial)\" default_off=\"self-signed\" f=\"Racket-lang.org.xml\"><rule from=\"^http://(bugs|git|lists)\\.racket-lang\\.org/\" to=\"https://$1.racket-lang.org/\"/></ruleset>", "<ruleset name=\"Rackspace.co.uk (partial)\" f=\"Rackspace.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.co.nz\" f=\"Rackspace.co.za.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.com (false MCB)\" platform=\"mixedcontent\" f=\"Rackspace.com-falsemixed.xml\"><rule from=\"^http://www\\.rackspace\\.com/talent\" to=\"https://www.rackspace.com/talent\"/></ruleset>", "<ruleset name=\"Rackspace.com.uk\" f=\"Rackspace.com.hk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.dk\" f=\"Rackspace.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.hk\" f=\"Rackspace.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.nl (partial)\" f=\"Rackspace.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.com (partial)\" f=\"Rackspace.xml\"><exclusion pattern=\"^http://www\\.rackspace\\.com/+talent(?!/wp-content/|/wp-includes/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://images\\.cdn\\.rackspace\\.com/\" to=\"https://034d24a88b3e71fd72a6-f083e9a6295a3f0714fa019ffdca65c3.ssl.cf1.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace Cloud.com\" f=\"Rackspace_Cloud.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.rackspacecloud\\.com/\" to=\"https://rackspacecloud.com/\"/><rule from=\"^http://(\\w+)\\.cdn\\.cloudfiles\\.rackspacecloud\\.com/\" to=\"https://$1.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://(\\w+)\\.cdn(1|2)\\.cloudfiles\\.rackspacecloud\\.com/\" to=\"https://$1.ssl.cf$2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RadSec.org\" f=\"RadSec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radartv.nl (partial)\" f=\"Radartv.nl.xml\"><exclusion pattern=\"^http://www\\.radartv\\.nl/+(?!favicon\\.ico|fileadmin/|typo3temp/)\"/><securecookie host=\"^\\.forum\\.www\\.radartv\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radboud University Nijmegen\" default_off=\"failed ruleset test\" f=\"Radboud-University-Nijmegen.xml\"><securecookie host=\"^www(?:-acc)?\\.radboudnet\\.nl$\" name=\".*\"/><securecookie host=\"^.*\\.ru\\.nl$\" name=\".*\"/><rule from=\"^http://www(-acc)?\\.radboudnet\\.nl/\" to=\"https://www$1.radboudnet.nl/\"/><rule from=\"^http://(?:www\\.)?ru\\.nl/\" to=\"https://www.ru.nl/\"/><rule from=\"^http://((?:ldap2|n?mr|mrms|svn|webmail|www)\\.cmbi|cms|cms-acc|(?:bangalore|bombay|delhi|hubli|jaipur|kota|mangalore|portalhelp|pune)\\.hosting|idm|student|www-acc)\\.ru\\.nl/\" to=\"https://$1.ru.nl/\"/></ruleset>", "<ruleset name=\"Radford.edu (partial)\" f=\"Radford.edu.xml\"><rule from=\"^http://php\\.radford\\.edu/\" to=\"https://php.radford.edu/\"/></ruleset>", "<ruleset name=\"Radical Designs\" f=\"Radical_Designs.xml\"><securecookie host=\"^.+\\.rdsecure\\.org$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?rdsecure\\.org/\" to=\"https://$1rdsecure.org/\"/></ruleset>", "<ruleset name=\"Radikal.com.tr (partial)\" f=\"Radikal.com.tr.xml\"><rule from=\"^http://i2?\\.radikal\\.com\\.tr/\" to=\"https://i.radikal.com.tr/\"/></ruleset>", "<ruleset name=\"Radikale.dk\" f=\"Radikale.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RadioShack (partial)\" default_off=\"failed ruleset test\" f=\"RadioShack.xml\"><exclusion pattern=\"^http://www\\.radioshack\\.com/(?:$|category/|family/|home/|shop/)\"/><securecookie host=\"^radioshackwireless\\.com$\" name=\".*\"/><rule from=\"^http://franchiseradioshack\\.cloudapp\\.net/\" to=\"https://www.franchiseradioshack.com/\"/><rule from=\"^http://(?:www\\.)?franchiseradioshack\\.com/\" to=\"https://www.franchiseradioshack.com/\"/><rule from=\"^http://(?:www\\.)?radioshack\\.com/\" to=\"https://www.radioshack.com/\"/><rule from=\"^http://blog\\.radioshack\\.com/\" to=\"https://blog.radioshack.com/\"/><rule from=\"^http://(?:www\\.)?radioshackwireless\\.com/\" to=\"https://radioshackwireless.com/\"/></ruleset>", "<ruleset name=\"RadioX.ch\" f=\"RadioX.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radio Woodstock.com (partial)\" f=\"Radio_Woodstock.com.xml\"><securecookie host=\"^\\.?ssl\\.radiowoodstock\\.com$\" name=\".+\"/><rule from=\"^http://ssl\\.radiowoodstock\\.com/\" to=\"https://ssl.radiowoodstock.com/\"/></ruleset>", "<ruleset name=\"radioeins.de\" default_off=\"missing certificate chain\" f=\"Radioeins.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radioleaks.se\" f=\"Radioleaks.xml\"><rule from=\"^http://(?:www\\.)?radioleaks\\.se/.*\" to=\"https://sverigesradio.se/sida/default.aspx?programid=4069\"/><rule from=\"^http://upload\\.radioleaks\\.se/\" to=\"https://upload.radioleaks.se/\"/></ruleset>", "<ruleset name=\"Radiological Society of North America (partial)\" f=\"Radiological_Society_of_North_America.xml\"><securecookie host=\"^(?:careers\\.|www\\.)?rsna\\.org$\" name=\".+\"/><rule from=\"^http://(careers\\.|www2?\\.)?rsna\\.org/\" to=\"https://$1rsna.org/\"/></ruleset>", "<ruleset name=\"Radioplayer.co.uk\" f=\"Radioplayer.co.uk.xml\"><securecookie host=\"^www\\.radioplayer\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?radioplayer\\.co\\.uk/\" to=\"https://www.radioplayer.co.uk/\"/></ruleset>", "<ruleset name=\"RadiumOne (partial)\" f=\"RadiumOne.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radius Networks.com (partial)\" f=\"Radius_Networks.com.xml\"><securecookie host=\"^account\\.radiusnetworks\\.com$\" name=\".+\"/><rule from=\"^http://account\\.radiusnetworks\\.com/\" to=\"https://account.radiusnetworks.com/\"/></ruleset>", "<ruleset name=\"Radware.com\" f=\"Radware.com.xml\"><securecookie host=\"^(www\\.|blog\\.|kb\\.|portals\\.|)?radware\\.com$\" name=\".+\"/><rule from=\"^http://radware\\.com/\" to=\"https://www.radware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rafflecopter.com\" f=\"Rafflecopter.com.xml\"><rule from=\"^http://(?:www\\.)?rafflecopter\\.com/\" to=\"https://www.rafflecopter.com/\"/></ruleset>", "<ruleset name=\"Rage3D.com\" default_off=\"expired, self-signed\" f=\"Rage3D.com.xml\"><securecookie host=\"^(?:www\\.)?rage3d\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raiffeisen.ch\" f=\"Raiffeisen.xml\"><securecookie host=\"^(?:.*\\.)?raiffeisen\\.ch$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?raiffeisendirect\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RailsConf.com\" default_off=\"mismatched\" f=\"RailsConf.com.xml\"><securecookie host=\"^railsconf\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?railsconf\\.com/\" to=\"https://railsconf.com/\"/></ruleset>", "<ruleset name=\"railsbox.io\" f=\"Railsbox.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Railscloud.de\" default_off=\"expired\" f=\"Railscloud.de.xml\"><rule from=\"^http://www\\.railscloud\\.de/\" to=\"https://railscloud.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Railsschool.org\" f=\"Railsschool.org.xml\"><rule from=\"^http://(?:www\\.)?railsschool\\.org/\" to=\"https://www.railsschool.org/\"/></ruleset>", "<ruleset name=\"Rainforest QA.com\" f=\"Rainforest_QA.com.xml\"><securecookie host=\"^\\.rainforestqa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rakuten.co.jp (partial)\" f=\"Rakuten.co.jp.xml\"><rule from=\"^http://image\\.rakuten\\.co\\.jp/\" to=\"https://image.rakuten.co.jp/\"/><rule from=\"^http://a\\.ichiba\\.jp\\.rakuten-static\\.com/\" to=\"https://a.ichiba.jp.rakuten-static.com/\"/></ruleset>", "<ruleset name=\"LinkShare.com (partial)\" f=\"Rakuten_LinkShare.xml\"><rule from=\"^http://linkshare\\.com/\" to=\"https://www.linkshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rally.org\" f=\"Rally.org.xml\"><securecookie host=\"^(?:www\\.)?rally\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rally\\.org/\" to=\"https://rally.org/\"/></ruleset>", "<ruleset name=\"Rally Congress (partial)\" f=\"Rally_Congress.xml\"><rule from=\"^http://secure\\.rallycongress\\.com/\" to=\"https://secure.rallycongress.com/\"/></ruleset>", "<ruleset name=\"Rally Dev.com\" f=\"Rally_Dev.com.xml\"><securecookie host=\".*\\.rallydev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RamNode.com (partial)\" f=\"RamNode.com.xml\"><securecookie host=\"^(?:(?:clientarea|vpscp)?\\.)?ramnode\\.com$\" name=\".+\"/><rule from=\"^http://((?:clientarea|vpscp|www)\\.)?ramnode\\.com/\" to=\"https://$1ramnode.com/\"/></ruleset>", "<ruleset name=\"Rambler.su\" f=\"Rambler.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rambler.ru (partial)\" f=\"Rambler.xml\"><exclusion pattern=\"^http://kassa\\.rambler\\.ru/(?:cinemapartnership|concerts|partners|refund|sport|theatre|unsubscribe)?(?:$|\\?)\"/><securecookie host=\"^\\.rambler\\.ru$\" name=\"^(?:_gat?|lvr?|realty_session|ruid|top100rb|top100vr)$\"/><securecookie host=\"^(?:id|\\.?news|travel)\\.rambler\\.ru$\" name=\".\"/><rule from=\"^http://((?:assist|cnt|cntcerber|counter|id|images|kassa|m\\.kassa|widget\\.kassa|mail|mail-pda|news|api\\.news|pgc|realty|[\\w-]+-realty|scounter|soft|sync|topline|travel|update)\\.)?rambler\\.ru/\" to=\"https://$1rambler.ru/\"/></ruleset>", "<ruleset name=\"Randischumann\" f=\"Randischumann.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Random House.biz\" default_off=\"expired, mismatch\" f=\"Random-House-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Random House.com (partial)\" f=\"Random-House.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://code\\.randomhouse\\.com/\" to=\"https://ranhrollup.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vistumbler.net\" f=\"Random-Intervals.xml\"><rule from=\"^http://vistumbler\\.net/\" to=\"https://www.vistumbler.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Random.org\" f=\"RandomOrg.xml\"><securecookie host=\"\\.random\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"randombit.net\" default_off=\"expired\" platform=\"cacert\" f=\"Randombit.net.xml\"><rule from=\"^http://((?:botan|lists|www)\\.)?randombit\\.net/\" to=\"https://$1randombit.net/\"/></ruleset>", "<ruleset name=\"Rands in Repose\" default_off=\"mismatch\" f=\"Rands-in-Repose.xml\"><rule from=\"^http://(?:www\\.)?randsinrepose\\.com/\" to=\"https://randsinrepose.com/\"/></ruleset>", "<ruleset name=\"Range Networks.com\" f=\"Range_Networks.com.xml\"><securecookie host=\"^(?:support\\.|www\\.)?rangenetworks\\.com$\" name=\".+\"/><rule from=\"^http://rangenetworks\\.com/\" to=\"https://www.rangenetworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RankWise.net\" f=\"RankWise.net.xml\"><securecookie host=\"^(?:www\\.)?rankwise\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rantoul Press (partial)\" f=\"Rantoul_Press.xml\"><rule from=\"^http://(?:www\\.)?rantoulpress\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.rantoulpress.com/$1\"/></ruleset>", "<ruleset name=\"Rapleaf.com (partial)\" f=\"RapLeaf.xml\"><rule from=\"^http://dashboard\\.rapleaf\\.com/.*\" to=\"https://dashboard.towerdata.com/\"/></ruleset>", "<ruleset name=\"Raphael Hertzog.com\" f=\"Raphael-Hertzog.xml\"><securecookie host=\"^raphaelhertzog\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapid7 (partial)\" platform=\"mixedcontent\" f=\"Rapid7.xml\"><securecookie host=\"^(?:community|insight|www)\\.rapid7\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidBuyr (problematic)\" default_off=\"mismatched\" f=\"RapidBuyr-problematic.xml\"><rule from=\"^http://cart\\.rapidbuyr\\.com/\" to=\"https://cart.rapidbuyr.com/\"/></ruleset>", "<ruleset name=\"RapidBuyr (partial)\" f=\"RapidBuyr.xml\"><exclusion pattern=\"^http://(?:www\\.)?rapidbuyr\\.com/(?:$|\\?|(?!MemberLogin)[\\w-]+\\.aspx|(?!All-Products|merchant/)[\\w/-]+\\.htm)\"/><securecookie host=\"^rapidbuyr\\.cachefly\\.net$\" name=\".+\"/><securecookie host=\"^svcart\\.rapidbuyr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rapidbuyr\\.com/\" to=\"https://www.rapidbuyr.com/\"/><rule from=\"^http://svcart\\.rapidbuyr\\.com/\" to=\"https://svcart.rapidbuyr.com/\"/></ruleset>", "<ruleset name=\"RapidLeaf\" default_off=\"failed ruleset test\" f=\"RapidLeaf.xml\"><securecookie host=\"^(?:.+\\.)?rapidleaf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidSSL.com\" f=\"RapidSSL.xml\"><securecookie host=\"^(?:knowledge)?\\.rapidssl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidShare.com (partial)\" default_off=\"expired\" f=\"RapidShare.xml\"><rule from=\"^http://rapidshare\\.com/\" to=\"https://www.rapidshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidSite.jp\" f=\"RapidSite.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapidgator.net (partial)\" f=\"Rapidgator.net.xml\"><rule from=\"^http://(www\\.)?rapidgator\\.net/(article/premium|assets/|auth/(?:captcha|login)|account/registration|css/|images/)\" to=\"https://$1rapidgator.net/$2\"/></ruleset>", "<ruleset name=\"rapimg.com\" f=\"Rapimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raptr.com (partial)\" platform=\"mixedcontent\" f=\"Raptr.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapture Ready\" f=\"Rapture_Ready.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rare.us\" f=\"Rare.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RareAviation.com\" f=\"RareAviation.com.xml\"><securecookie host=\"^\\.rareaviation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RareConnect\" f=\"RareConnect.xml\"><securecookie host=\"(^|\\.)rareconnect\\.org$\" name=\".+\"/><rule from=\"^http://rareconnect\\.org/\" to=\"https://www.rareconnect.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rare Diseases.org\" f=\"Rare_Diseases.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rasende.dk\" f=\"Rasende.dk.xml\"><rule from=\"^http://(www\\.)?rasende\\.dk/\" to=\"https://rasende.dk/\"/></ruleset>", "<ruleset name=\"Raspberry Pi.org\" f=\"Raspberry_Pi.xml\"><securecookie host=\"^(?:www)?\\.raspberrypi\\.org$\" name=\".+\"/><rule from=\"^http://raspberrypi\\.org/\" to=\"https://www.raspberrypi.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raspbian.org\" f=\"Raspbian.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rasset.ie\" f=\"Rasset.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aruna Ratanagiri Buddhist Monastery\" f=\"Ratanagiri.org.uk.xml\"><securecookie host=\"^ratanagiri\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rateip.com\" f=\"Rateip.com.xml\"><securecookie host=\"^\\.rateip\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RatfishOil.com (false MCB)\" platform=\"mixedcontent\" f=\"RatfishOil.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.ratfishoil\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ratfishoil\\.com/\" to=\"https://www.ratfishoil.com/\"/></ruleset>", "<ruleset name=\"RatfishOil.com (partial)\" f=\"RatfishOil.com.xml\"><rule from=\"^http://(www\\.)?ratfishoil\\.com/(?=favicon\\.ico|images/|templates/)\" to=\"https://$1ratfishoil.com/\"/></ruleset>", "<ruleset name=\"Rating-Widget.com\" f=\"Rating-Widget.com.xml\"><securecookie host=\"^secure\\.rating-widget\\.com$\" name=\".+\"/><rule from=\"^http://rating-widget\\.com/\" to=\"https://secure.rating-widget.com/\"/><rule from=\"^http://(?:secure|www)\\.rating-widget\\.com/\" to=\"https://secure.rating-widget.com/\"/><rule from=\"^http://(css|img|js)\\.rating-widget\\.com/\" to=\"https://secure.rating-widget.com/$1/\"/></ruleset>", "<ruleset name=\"RaumZeitLabor.de (partial)\" f=\"RaumZeitLabor.de.xml\"><securecookie host=\"^wiki\\.raumzeitlabor\\.de$\" name=\".+\"/><rule from=\"^http://((?:lists|wiki|www)\\.)?raumzeitlabor\\.de/\" to=\"https://$1raumzeitlabor.de/\"/></ruleset>", "<ruleset name=\"RavenDB.net\" default_off=\"failed ruleset test\" f=\"RavenDB.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raven Software\" default_off=\"expired\" f=\"Raven_Software.xml\"><securecookie host=\"^www2\\.ravensoft\\.com$\" name=\".+\"/><rule from=\"^http://(?:www2?\\.)?ravensoft\\.com/\" to=\"https://www2.ravensoft.com/\"/></ruleset>", "<ruleset name=\"RawGit.com\" f=\"RawGit.xml\"><rule from=\"^http://www\\.rawgit\\.com/\" to=\"https://rawgit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rawgithub.com\" f=\"Rawgithub.com.xml\"><rule from=\"^http://(?:www\\.)?rawgithub\\.com/\" to=\"https://rawgithub.com/\"/></ruleset>", "<ruleset name=\"Rawnet.com (partial)\" f=\"Rawnet.com.xml\"><rule from=\"^http://cdn\\.rawnet\\.com/\" to=\"https://d284e2efuy79d1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rawstudio.org (partial)\" default_off=\"connection dropped\" f=\"Rawstudio.org.xml\"><securecookie host=\"^\\.rawstudio\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raymii.org\" f=\"Raymii.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raymond.CC\" default_off=\"broken\" f=\"Raymond.CC.xml\"><securecookie host=\"^(?:.*\\.)?raymond\\.cc$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rayner Software\" f=\"Rayner-Software.xml\"><securecookie host=\"(?:^|\\.)secure\\.raynersw\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rayner(?:sw|software)\\.com/\" to=\"https://secure.raynersw.com/\"/><rule from=\"^http://secure\\.raynersw\\.com/\" to=\"https://secure.raynersw.com/\"/></ruleset>", "<ruleset name=\"Razer (partial)\" f=\"Razer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Razoo (mismatches)\" default_off=\"mismatch\" f=\"Razoo-mismatches.xml\"><rule from=\"^http://media\\.razoo\\.com/\" to=\"https://media.razoo.com/\"/></ruleset>", "<ruleset name=\"Razoo (partial)\" f=\"Razoo.xml\"><rule from=\"^http://razoo\\.com/\" to=\"https://www.razoo.com/\"/><rule from=\"^http://(matt|www)\\.razoo\\.com/(assets/|favicon\\.ico|images/|(?:login|signup)(?:$|[\\?/])|password_resets/)\" to=\"https://$1.razoo.com/$2\"/><rule from=\"^http://assets(?:\\d|-secure)?\\.razoo\\.com/\" to=\"https://assets-secure.razoo.com/\"/></ruleset>", "<ruleset name=\"Razor Servers (partial)\" f=\"Razor_Servers.xml\"><securecookie host=\".+\\.razorservers\\.com$\" name=\".+\"/><rule from=\"^http://(manag|secur)e\\.razorservers\\.com/\" to=\"https://$1e.razorservers.com/\"/></ruleset>", "<ruleset name=\"RBB-online.de (partial)\" f=\"Rbb-online.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rbl.Ms (partial)\" f=\"Rbl.Ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rbt.asia\" f=\"Rbt.asia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rbu.sh\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Rbu.sh.xml\"><securecookie host=\"^goodpoint\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?rbu\\.sh$\" name=\".*\"/><rule from=\"^http://goodpoint\\.de/\" to=\"https://goodpoint.de/\"/><rule from=\"^http://(www\\.)?rbu\\.sh/\" to=\"https://$1rbu.sh/\"/></ruleset>", "<ruleset name=\"Rdio (partial)\" f=\"Rdio.xml\"><securecookie host=\"^\\.rdio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rdns.im\" f=\"Rdns.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"re-publica.de (partial)\" f=\"Re-publica.de.xml\"><rule from=\"^http://mail\\.re-publica\\.de/+\" to=\"https://ntmx.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReSIProcate.org\" f=\"ReSIProcate.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReSRC\" f=\"ReSRC.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReTargeter (mismatches)\" default_off=\"mismatch\" f=\"ReTargeter-mismatches.xml\"><rule from=\"^http://ub\\.retargeter\\.com/\" to=\"https://ub.retargeter.com/\"/></ruleset>", "<ruleset name=\"ReTargeter.com (partial)\" f=\"ReTargeter.xml\"><securecookie host=\"^.*\\.retargeter\\.com$\" name=\".*\"/><rule from=\"^http://ad\\.retargeter\\.com/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReachLocal.com (partial)\" f=\"ReachLocal.com.xml\"><rule from=\"^http://ad\\.reachlocal\\.com/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"ReactJS News.com\" f=\"ReactJS_News.com.xml\"><securecookie host=\"^\\.reactjsnews\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReactOS.org (partial)\" f=\"ReactOS.org.xml\"><exclusion pattern=\"^http://old\\.reactos\\.org/+(?!(?:\\w+/)?(?:cs|image)s/|\\w\\w/dox\\.css|favicon\\.ico|mailman(?:$|[?/])|media/|style\\.css)\"/><securecookie host=\"^(?:jira)?\\.reactos\\.org$\" name=\".+\"/><rule from=\"^http://((?:jira|old|svn|www)\\.)?reactos\\.org/\" to=\"https://$1reactos.org/\"/></ruleset>", "<ruleset name=\"Read Comics in Public\" default_off=\"mismatch\" f=\"Read-Comics-in-Public.xml\"><rule from=\"^http://(?:www\\.)?readcomicsinpublic\\.com/\" to=\"https://readcomicsinpublic.com/\"/></ruleset>", "<ruleset name=\"ReadCube.com (partial)\" f=\"ReadCube.com.xml\"><securecookie host=\"^(?:support)?\\.readcube\\.com$\" name=\".+\"/><rule from=\"^http://((?:green\\d-assets|support|www)\\.)?readcube\\.com/\" to=\"https://$1readcube.com/\"/></ruleset>", "<ruleset name=\"ReadItLaterList.com\" f=\"ReadItLater.com.xml\"><rule from=\"^http://(?:www\\.)?readitlaterlist\\.com/\" to=\"https://readitlaterlist.com/\"/></ruleset>", "<ruleset name=\"ReadMe.io\" f=\"ReadMe.io.xml\"><securecookie host=\".*\\.readme\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadRobReid.com (partial)\" f=\"ReadRobReid.com.xml\"><rule from=\"^http://(www\\.)?readrobreid\\.com/(auth|css)/\" to=\"https://$1readrobreid.com/$2/\"/></ruleset>", "<ruleset name=\"ReadSpeaker\" platform=\"mixedcontent\" f=\"ReadSpeaker.xml\"><rule from=\"^http://(?:www\\.)?readspeaker\\.com/\" to=\"https://www.readspeaker.com/\"/><rule from=\"^http://(app|media|vttts|lqttswr|docreader)\\.readspeaker\\.com/\" to=\"https://$1.readspeaker.com/\"/><rule from=\"^http://asp\\.readspeaker\\.net/\" to=\"https://asp.readspeaker.net/\"/></ruleset>", "<ruleset name=\"Read the Docs\" f=\"ReadTheDocs.xml\"><securecookie host=\"^readthedocs\\.org$\" name=\".+\"/><securecookie host=\"^readthedocs\\.com$\" name=\".+\"/><rule from=\"^https?://(.+\\.)?rtfd\\.org/\" to=\"https://$1readthedocs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadThenBurn.com\" default_off=\"broken\" f=\"ReadThenBurn.xml\"><securecookie host=\"^\\.readthenburn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadWrite\" default_off=\"breaks site\" f=\"ReadWriteWeb.xml\"><rule from=\"^http://(?:www\\.)?readwrite\\.com/\" to=\"https://readwrite.com/\"/></ruleset>", "<ruleset name=\"Read Plain Text.com\" f=\"Read_Plain_Text.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Readability.com (partial)\" f=\"Readability.com.xml\"><rule from=\"^http://(www\\.)?readability\\.com/((?:account|login|register)(?:$|\\?|/)|bookmarklet/\\w|embed\\.(?:html|js))\" to=\"https://$1readability.com/$2\"/></ruleset>", "<ruleset name=\"Readers Digest.com (partial)\" f=\"Readers_Digest.com.xml\"><securecookie host=\"^\\.rd\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^legacy\\.rd\\.com$\" name=\".+\"/><securecookie host=\"^\\.readersdigest\\.com$\" name=\"^(?:CLEQ_\\w|mbox|s_\\w+)$\"/><securecookie host=\"^(?:order|\\.?us)\\.readersdigest\\.com$\" name=\".+\"/><rule from=\"^http://(legacy|somtrkpix)\\.rd\\.com/\" to=\"https://$1.rd.com/\"/><rule from=\"^http://(order|us)\\.readersdigest\\.com/\" to=\"https://$1.readersdigest.com/\"/></ruleset>", "<ruleset name=\"ReadrBoard.com\" default_off=\"failed ruleset test\" f=\"ReadrBoard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadyHosting.com\" f=\"ReadyHosting.com.xml\"><securecookie host=\"^\\.readyhosting\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?readyhosting\\.com/\" to=\"https://www.readyhosting.com/\"/><rule from=\"^http://secure\\.readyhosting\\.com/\" to=\"https://secure.readyhosting.com/\"/></ruleset>", "<ruleset name=\"ReadyNAS\" f=\"ReadyNas.xml\"><rule from=\"^http://(?:www\\.)?readynas\\.com/\" to=\"https://www.readynas.com/\"/></ruleset>", "<ruleset name=\"Ready Flowers.com (partial)\" f=\"Ready_Flowers.xml\"><securecookie host=\"^www\\.readyflowers\\.com$\" name=\".+\"/><rule from=\"^http://readyflowers\\.com/\" to=\"https://www.readyflowers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Real-Debrid.com\" f=\"Real-Debrid.com.xml\"><securecookie host=\"^\\.real-debrid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Real Networks (partial)\" default_off=\"failed ruleset test\" f=\"Real-Networks.xml\"><securecookie host=\"^\\.real\\.com$\" name=\".*\"/><rule from=\"^http://fb-cdn\\.ghsrv\\.com/\" to=\"https://fb-cdn.ghsrv.com/\"/><rule from=\"^http://www\\.real\\.com/\" to=\"https://www.real.com/\"/><rule from=\"^http://images\\.real\\.com/\" to=\"https://www.real.com/\"/><rule from=\"^http://www\\.realone\\.com/\" to=\"https://www.real.com/\"/></ruleset>", "<ruleset name=\"RealClearPolitics.com (partial)\" f=\"RealClearPolitics.com.xml\"><rule from=\"^http://assets\\.realclearpolitics\\.com/\" to=\"https://s3.amazonaws.com/assets.realclearpolitics.com/\"/></ruleset>", "<ruleset name=\"RealMatch.com (partial)\" default_off=\"failed ruleset test\" f=\"RealMatch.com.xml\"><securecookie host=\"^\\.realmatch\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^www\\.realmatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealTime.Email\" f=\"RealTime.Email.xml\"><securecookie host=\"^app\\.realtime\\.email$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealTimeStats.com\" default_off=\"mismatched\" f=\"RealTimeStats.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealVNC.com\" f=\"RealVNC.com.xml\"><securecookie host=\"^support\\.realvnc\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Real Robot High\" f=\"Real_Robot_High.xml\"><securecookie host=\"^\\.realrobothigh\\.com$\" name=\".+\"/><rule from=\"^http://(stage\\.)?realrobothigh\\.com/\" to=\"https://$1realrobothigh.com/\"/><rule from=\"^http://www\\.realrobothigh\\.com/\" to=\"https://realrobothigh.com/\"/></ruleset>", "<ruleset name=\"Real World OCaml.org\" f=\"Real_World_OCaml.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realtech VR\" default_off=\"mismatched\" f=\"Realtech_VR.xml\"><securecookie host=\"^realtech-vr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?realtech-vr\\.com/\" to=\"https://realtech-vr.com/\"/></ruleset>", "<ruleset name=\"Realtidbits (partial)\" default_off=\"connection refused\" f=\"Realtidbits.xml\"><rule from=\"^http://(api\\.|ssl\\.|www\\.)?realtidbits\\.com/\" to=\"https://$1realtidbits.com/\"/><rule from=\"^http://cdn\\.realtidbits\\.com/\" to=\"https://c299782.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Realtime.co\" default_off=\"failed ruleset test\" f=\"Realtime.co.xml\"><securecookie host=\"^a(?:ccounts|pp)\\.realtime\\.co$\" name=\".+\"/><rule from=\"^http://(accounts\\.|ortc-ws2(?:-useast1-s\\d+)?\\.)?realtime\\.co/\" to=\"https://$1realtime.co/\"/><rule from=\"^http://www\\.realtime\\.co/\" to=\"https://app.realtime.co/\"/></ruleset>", "<ruleset name=\"Realview Digital.com (partial)\" f=\"Realview_Digital.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realview Technologies.com (partial)\" f=\"Realview_Technologies.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://downloads\\.realviewtechnologies\\.com/\" to=\"https://downloads.realviewdigital.com/\"/></ruleset>", "<ruleset name=\"Reason.com\" f=\"Reason.com.xml\"><securecookie host=\"^\\.reason\\.com$\" name=\".+\"/><rule from=\"^http://cloudfront-assets\\.reason\\.com/\" to=\"https://d1ai9qtk9p41kl.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reason Core Security.com\" f=\"Reason_Core_Security.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reasons.to\" default_off=\"expired, self-signed\" f=\"Reasons.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RebelMouse.com\" f=\"RebelMouse.com.xml\"><securecookie host=\"^\\.rebelmouse\\.com$\" name=\".+\"/><rule from=\"^http://partners\\.rebelmouse\\.com/\" to=\"https://s3.amazonaws.com/partners.rebelmouse.com/\"/><rule from=\"^http://((?:about|blog|www)\\.)?rebelmouse\\.com/\" to=\"https://$1rebelmouse.com/\"/></ruleset>", "<ruleset name=\"Rebel Torrent.net\" f=\"Rebel_Torrent.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rec-log (partial)\" f=\"Rec-log.xml\"><securecookie host=\"^rec-log\\.jp$\" name=\".+\"/><rule from=\"^http://(www\\.)reclog\\.jp/\" to=\"https://$1reclog.jp/\"/><rule from=\"^http://rec-log\\.jp/\" to=\"https://rec-log.jp/\"/><rule from=\"^http://www\\.rec-log\\.jp/\" to=\"https://www.reclog.jp/\"/></ruleset>", "<ruleset name=\"rec1.com\" f=\"Rec1.com.xml\"><securecookie host=\"^secure\\.rec1\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recalll.co\" f=\"Recalll.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recap the Law\" f=\"Recap_the_Law.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"recipelab.org\" f=\"Recipelab.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.recipelab\\.org/\" to=\"https://recipelab.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reclaim-Your-Privacy.com\" f=\"Reclaim-Your-Privacy.com.xml\"><securecookie host=\"^(?:www\\.)?reclaim-your-privacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reco.se\" platform=\"mixedcontent\" f=\"Reco.se.xml\"><rule from=\"^http://www\\.reco\\.se/\" to=\"https://www.reco.se/\"/><rule from=\"^http://reco\\.se/\" to=\"https://www.reco.se/\"/></ruleset>", "<ruleset name=\"Recode.net\" f=\"Recode.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recombu.com\" f=\"Recombu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Record Store Day\" platform=\"mixedcontent\" f=\"Record-Store-Day.xml\"><securecookie host=\"^recordstoreday\\.tuneportals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?recordstoreday(?:\\.tuneportals)\\.com/\" to=\"https://recordstoreday.tuneportals.com/\"/></ruleset>", "<ruleset name=\"Recorded Future.com (partial)\" f=\"Recorded_Future.org.xml\"><securecookie host=\"^\\.recordedfuture\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^support\\.recordedfuture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recruitment Platform.com\" f=\"Recruitment_Platform.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recurly\" f=\"Recurly.xml\"><securecookie host=\"^app\\.recurly\\.com$\" name=\".+\"/><securecookie host=\"^api\\.recurly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recurse.com\" f=\"Recurse.com.xml\"><rule from=\"^http://recurse\\.com/\" to=\"https://www.recurse.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recycle Now (No HTTPS)\" default_off=\"Site does not support HTTPS currently\" f=\"RecycleNow.xml\"><rule from=\"^http://(?:www\\.)?recyclenow\\.com/\" to=\"https://www.recyclenow.com/\"/><securecookie host=\"^www\\.recyclenow\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"RAasnet.com (partial)\" f=\"Red-Aril.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red-Dove.com\" f=\"Red-Dove.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red-Gate.com (partial)\" f=\"Red-Gate.com.xml\"><securecookie host=\"^documentation\\.red-gate\\.com$\" name=\".+\"/><rule from=\"^http://red-gate\\.com/\" to=\"https://www.red-gate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red-Pill.eu (partial)\" f=\"Red-Pill.eu.xml\"><securecookie host=\"^(?:www\\.)?red-pill\\.eu$\" name=\"^roundcube_.*\"/><rule from=\"^http://(www\\.)?red-pill\\.eu/(admin|mail)/\" to=\"https://$1red-pill.eu/$1/\"/></ruleset>", "<ruleset name=\"Red.es (partial)\" default_off=\"self-signed\" f=\"Red.es.xml\"><securecookie host=\"^\\.ontsi\\.red\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ontsi\\.red\\.es/\" to=\"https://www.ontsi.red.es/\"/></ruleset>", "<ruleset name=\"RedBubble (partial)\" f=\"RedBubble.xml\"><exclusion pattern=\"^http://www\\.redbubble\\.com/+(?!(?:auth/login|signup)(?:$|[?/])|favicon\\.ico)\"/><rule from=\"^http://support\\.redbubble\\.com/.*\" to=\"https://help.redbubble.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RedIRIS.es\" platform=\"mixedcontent\" f=\"RedIRIS.es.xml\"><securecookie host=\"^.*\\.rediris\\.es$\" name=\".+\"/><rule from=\"^http://pki\\.irisgrid\\.es/\" to=\"https://pki.irisgrid.es/\"/><rule from=\"^http://(?:www\\.)?rediris\\.(es|net)/\" to=\"https://www.rediris.$1/\"/><rule from=\"^http://(cmwebber|forja|eu|intranet|jo|ni|papi|sir|stats|wiki|yo)\\.rediris\\.es/\" to=\"https://$1.rediris.es/\"/></ruleset>", "<ruleset name=\"RedPlum.com (partial)\" f=\"RedPlum.com.xml\"><exclusion pattern=\"^http://www\\.redplum\\.com/+(?!css/|fonts/|images/)\"/><securecookie host=\"^(?!www\\.redplum\\.com$)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RedState (partial)\" f=\"RedState.xml\"><rule from=\"^http://(www\\.)?redstate\\.com/(login|t/)\" to=\"https://$1redstate.com/$2\"/></ruleset>", "<ruleset name=\"RedTeam-Pentesting.de\" f=\"RedTeam-Pentesting.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Bean Software (partial)\" default_off=\"self-signed\" f=\"Red_Bean_Software.xml\"><rule from=\"^http://(?:www\\.)?red-bean\\.com/\" to=\"https://www.red-bean.com/\"/></ruleset>", "<ruleset name=\"Red Bull (partial)\" default_off=\"failed ruleset test\" f=\"Red_Bull.xml\"><securecookie host=\"^(?:challengetravis|enterdannysmind|formembed|admin\\.rbri2012)\\.redbull\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^(?:(?:api|athletewidget|balconyshot-game|cache-workbench|connect|create|creativearchive(?:-staging|-test)?|energydrink|energydrink-(?:at|de|it|uk|us)|enterdannysmind|eventwidget|forage|giga|gigya-tests|image\\d?|infonet2?|rbx00185\\.microsites|mobile-ads|stage-(?:api|connect|energydrink)|streetstyle-game|tibbr|tools|trickshot-game|workbench|www)\\.)?redbull\\.com$\" name=\".+\"/><securecookie host=\"^(?:kontakt|sugarfree)\\.redbull\\.de$\" name=\".+\"/><securecookie host=\"^augmentedracing\\.redbull\\.es$\" name=\".+\"/><securecookie host=\"^cricket\\.redbull\\.in$\" name=\".+\"/><securecookie host=\"^forage\\.redbull\\.ru$\" name=\".+\"/><securecookie host=\"^(?:lab|training)\\.redbulls\\.com$\" name=\".+\"/><securecookie host=\"^(?:launchpad|twtvsl)\\.redbullusa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbull\\.co\\.uk/(\\?.*)?$\" to=\"https://www.redbull.com/uk/en$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.(?:co\\.uk|\\w\\w)/cs/\" to=\"https://www.redbull.com/cs/\"/><rule from=\"^http://(challengetravis|enterdannysmind|formembed|admin\\.rbri2012)\\.redbull\\.co\\.uk/\" to=\"https://$1.redbull.co.uk/\"/><rule from=\"^http://((?:api|athletewidget|balconyshot-game|confluence|connect|create|creativearchive(?:-staging|-test)?|editorial|energydrink|energydrink-(?:at|de|it|uk|us)|enterdannysmind|eventwidget|forage|gigya|gigya-tests|image\\d?|infonet2?|rbx00185\\.microsites|mobile-ads|stage-(?:api|connect|energydrink)|streetstyle-game|tibbr|tibbr-ext|tools|trickshot-game|workbench|www)\\.)?redbull\\.com/\" to=\"https://$1redbull.com/\"/><rule from=\"^http://soapbox\\.redbull\\.com/(?:\\?.*)?$\" to=\"https://www.redbull.com/\"/><rule from=\"^http://(?:www\\.)?redbull\\.de/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/de_DE/RED-BULL-DE/001242746061488$1\"/><rule from=\"^http://(kontakt|sugarfree)\\.redbull\\.de/\" to=\"https://$1.redbull.de/\"/><rule from=\"^http://(?:www\\.)?redbull\\.es/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/es_ES/RED-BULL-ES/001242746062075$1\"/><rule from=\"^http://augmentedracing\\.redbull\\.es/\" to=\"https://augmentedracing.redbull.es/\"/><rule from=\"^http://(?:www\\.)?redbull\\.fr/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/fr_FR/RED-BULL-Home-page_FR/001242746062375$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.in/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/en_IN/Red-Bull-Home/001242877412074$1\"/><rule from=\"^http://cricket\\.redbull\\.in/\" to=\"https://cricket.redbull.in/\"/><rule from=\"^http://(?:www\\.)?redbull\\.no/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/no_NO/RedBull/001242760618750$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.ru/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/ru_RU/Red-Bull-Russia/001242758643321$1\"/><rule from=\"^http://forage\\.redbull\\.ru/\" to=\"https://forage.redbull.ru/\"/><rule from=\"^http://(?:www\\.)?redbull\\.se/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/sv_SE/REDBULL/001242760548154$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.ua/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/ru_UA/Red-Bull/001242776437928$1\"/><rule from=\"^http://(lab|training)\\.redbulls\\.com/\" to=\"https://$1.redbulls.com/\"/><rule from=\"^http://(?:www\\.)?redbullusa\\.com/(?:\\?.*)?$\" to=\"https://www.redbull.com/us/en\"/><rule from=\"^http://(?:launchpad|twtvsl)\\.redbullusa\\.com/\" to=\"https://$1.redbullusa.com/\"/></ruleset>", "<ruleset name=\"Red Bull Content Pool\" default_off=\"failed ruleset test\" f=\"Red_Bull_Content_Pool.xml\"><securecookie host=\"^(?:internal|www|www-staging)\\.redbullcontentpool\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbullcontentpool\\.com/\" to=\"https://www.redbullcontentpool.com/\"/><rule from=\"^http://(cliffdiving|crashedice|images|info|internal|musicacademy|stratos|www-staging|xfighters)\\.redbullcontentpool\\.com/\" to=\"https://$1.redbullcontentpool.com/\"/></ruleset>", "<ruleset name=\"Red Bull Media House (partial)\" f=\"Red_Bull_Media_House.xml\"><securecookie host=\"^(?:content|me|mediamanager(?:-staging)?|sales|stage-wiki|wiki)\\.redbullmediahouse\\.com$\" name=\".+\"/><rule from=\"^http://(analytics|content|fonts|me|mediamanager(?:-staging)?|sales|stage-wiki|wiki)\\.redbullmediahouse\\.com/\" to=\"https://$1.redbullmediahouse.com/\"/></ruleset>", "<ruleset name=\"Red Bull Mobile (false MCB)\" platform=\"mixedcontent\" f=\"Red_Bull_Mobile-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?redbullmobile\\.at/(?:fileadmin/|typo3conf/|typo3temp/|uploads/)\"/><securecookie host=\"^www\\.redbullmobile\\.at$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbullmobile\\.at/\" to=\"https://www.redbullmobile.at/\"/></ruleset>", "<ruleset name=\"Red Bull Mobile (partial)\" f=\"Red_Bull_Mobile.xml\"><securecookie host=\"^(?:fbck|qr|socialposter|trackingtool|worb)\\.redbullmobile\\.com$\" name=\".+\"/><securecookie host=\"^(?:securea\\.)?redbullmobile\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbullmobile\\.at/(?=fileadmin/|typo3conf/|typo3temp/|uploads/)\" to=\"https://www.redbullmobile.at/\"/><rule from=\"^http://(fbck|qr|socialposter|trackingtool|worb)\\.redbullmobile\\.com/\" to=\"https://$1.redbullmobile.com/\"/><rule from=\"^http://(?:www\\.)?redbullmobile\\.com\\.au/\" to=\"https://redbullmobile.com.au/\"/><rule from=\"^http://secure(a)?\\.redbullmobile\\.com\\.au/\" to=\"https://secure$1.redbullmobile.com.au/\"/></ruleset>", "<ruleset name=\"Red Bull TV (partial)\" f=\"Red_Bull_TV.xml\"><securecookie host=\"^live\\.redbull\\.tv$\" name=\".+\"/><rule from=\"^http://live(2)?\\.redbull\\.tv/\" to=\"https://live$1.redbull.tv/\"/></ruleset>", "<ruleset name=\"Red Cross.org (partial)\" f=\"Red_Cross.org.xml\"><rule from=\"^http://(?:www\\.)?redcross\\.org/(?=(?:accounthelp|modal)(?:$|[?/])|ajax/|css/|donate/\\w|images/|js/)\" to=\"https://www.redcross.org/\"/></ruleset>", "<ruleset name=\"The Red Ferret\" f=\"Red_Ferret.xml\"><securecookie host=\"^(?:www)?\\.redferret\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?theferret\\.net/\" to=\"https://$1theferret.net/\"/></ruleset>", "<ruleset name=\"Red Flush Casino (partial)\" f=\"Red_Flush_Casino.xml\"><rule from=\"^http://secure\\.redflush\\.com/\" to=\"https://secure.redflush.com/\"/></ruleset>", "<ruleset name=\"Red Hat.com (partial)\" f=\"Red_Hat.xml\"><exclusion pattern=\"^http://investors\\.redhat\\.com/(?!common/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.cz\\.redhat\\.com/\" to=\"https://cz.redhat.com/\"/><rule from=\"^http://et\\.redhat\\.com/[^?]*\" to=\"https://community.redhat.com/software/\"/><rule from=\"^http://investors\\.redhat\\.com/\" to=\"https://investor.shareholder.com/\"/><rule from=\"^http://jobs\\.redhat\\.com/\" to=\"https://redhat.sc.hodesdigital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Letter.link\" f=\"Red_Letter.link.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Letter Days.co.uk\" f=\"Red_Letter_Days.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Matrix.me\" f=\"Red_Matrix.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Team.net (partial)\" default_off=\"connection refused\" f=\"Red_Team.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redblue.de (partial)\" f=\"Redblue.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redbox.com\" platform=\"mixedcontent\" f=\"Redbox.xml\"><rule from=\"^http://(?:www\\.)?redbox\\.com/\" to=\"https://www.redbox.com/\"/><rule from=\"^http://images\\.redbox\\.com/\" to=\"https://images.redbox.com/\"/></ruleset>", "<ruleset name=\"Redbridge.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Redbridge.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redbridge.gov.uk (partial)\" f=\"Redbridge.gov.uk.xml\"><exclusion pattern=\"^http://moderngov\\.redbridge\\.gov\\.uk/+(?![Ss]iteSpecific/|TagDocs/|UserData/|(?:ieLogon|ieRegisterUser|mgEPetitionSubmit|mgPasswordReqst|mgRegisterKeywordInterest)\\.aspx|jquery-ui/|mgimages/)\"/><securecookie host=\"^(?!moderngov\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redcats (partial)\" f=\"Redcats.xml\"><securecookie host=\"^media\\.redcatsecom\\.com$\" name=\".+\"/><rule from=\"^http://(images|media)\\.redcatsecom\\.com/\" to=\"https://$1.redcatsecom.com/\"/></ruleset>", "<ruleset name=\"redcdn.pl\" f=\"Redcdn.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redcoon.pt\" f=\"Redcoon.pt.xml\"><rule from=\"^http://redcoon\\.pt/\" to=\"https://www.redcoon.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redd.it\" f=\"Redd.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redd Pics.com (false MCB)\" platform=\"mixedcontent\" f=\"Redd_Pics.com-falsemixed.xml\"><securecookie host=\"^\\.reddpics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redd Pics.com (partial)\" f=\"Redd_Pics.com.xml\"><exclusion pattern=\"^http://reddpics\\.com/+(?!assets/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit.com\" f=\"Reddit.xml\"><securecookie host=\".*\\.reddit\\.com$\" name=\".+\"/><rule from=\"^http://www\\.np\\.reddit\\.com/\" to=\"https://np.reddit.com/\"/><rule from=\"^http://thumbs\\.reddit\\.com/\" to=\"https://s3.amazonaws.com/thumbs.reddit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit media.com\" f=\"Reddit_media.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thumbs\\.redditmedia\\.com/\" to=\"https://s3.amazonaws.com/thumbs.redditmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit static.com\" f=\"Reddit_static.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redditgifts.com\" f=\"Redditgifts.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redditmade.com\" f=\"Redditmade.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redfern.me\" f=\"Redfern.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redfin.com\" f=\"Redfin.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redmine.org (partial)\" f=\"Redmine.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redmondmag.com\" f=\"Redmondmag.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rednerd.com\" f=\"Rednerd.com.xml\"><rule from=\"^http://(?:www\\.)?rednerd\\.com/\" to=\"https://rednerd.com/\"/></ruleset>", "<ruleset name=\"Redpill-Linpro.com (partial)\" default_off=\"missing certificate chain\" f=\"Redpill-Linpro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redports.org\" f=\"Redports.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://redports\\.org/\" to=\"https://www.redports.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redweb.com\" f=\"Redweb.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redwoodsinyosemite.com\" platform=\"mixedcontent\" f=\"Redwoodsinyosemite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reed Exhibitions (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Reed-Exhibitions.xml\"><exclusion pattern=\"^http://(?:www\\.)?infosecurity-magazine\\.com/(?:.+/$|download/\\d{1,5}|view/\\d+/[\\w-]$)\"/><rule from=\"^http://(?:www\\.)?infosecurity-magazine\\.com/\" to=\"https://www.infosecurity-magazine.com/\"/><rule from=\"^http://(?:www\\.)?lexisnexis\\.com/\" to=\"https://www.lexisnexis.com/\"/></ruleset>", "<ruleset name=\"Reed Business.net (partial)\" default_off=\"failed ruleset test\" f=\"Reed_Business.net.xml\"><rule from=\"^http://metrics\\.reedbusiness\\.net/\" to=\"https://reedbusiness-net.d2.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"Reed Business Information (partial)\" f=\"Reed_Business_Information.xml\"><rule from=\"^http://cdn\\.reedbusiness\\.com/\" to=\"https://d18n01l3jfu4kv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Reed Business Information Australia\" f=\"Reed_Business_Information_Australia.xml\"><securecookie host=\"^\\.rbi\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(ccbnstatic|media)\\.rbi\\.com\\.au/\" to=\"https://$1.rbi.com.au/\"/></ruleset>", "<ruleset name=\"Reef Builders\" f=\"Reef_Builders.xml\"><securecookie host=\"^\\.reefbuilders\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?reefbuilders\\.com/\" to=\"https://$1reefbuilders.com/\"/><rule from=\"^http://community\\.reefbuilders\\.com/\" to=\"https://reefbuilders.vanillaforums.com/\"/><rule from=\"^http://jobs\\.reefbuilders\\.com/c/\" to=\"https://reef.jobamatic.com/c/\"/></ruleset>", "<ruleset name=\"Reef LED Lights.com\" f=\"Reef_LED_Lights.com.xml\"><securecookie host=\"^reefledlights\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReelHD.com\" f=\"ReelHD.com.xml\"><securecookie host=\"^(?:w*\\.)?reelhd\\.com$\" name=\".+\"/><rule from=\"^http://reelhd\\.com/\" to=\"https://www.reelhd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReelSEO.com\" default_off=\"failed ruleset test\" f=\"ReelSEO.com.xml\"><securecookie host=\"^\\.reelseo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?reelseo\\.com/\" to=\"https://$1reelseo.com/\"/><rule from=\"^http://cdn\\d?\\.reelstatic\\.com/\" to=\"https://www.reelseo.com/\"/></ruleset>", "<ruleset name=\"ReelVidz.com (partial)\" default_off=\"failed ruleset test\" f=\"ReelVidz.com.xml\"><securecookie host=\"^(?:www\\.)?reelvidz\\.com$\" name=\".+\"/><rule from=\"^http://wac\\.20f5\\.edgecastcdn\\.net/8020F5/\" to=\"https://gp1.wac.edgecastcdn.net/8020F5/\"/><rule from=\"^http://(www\\.)?reelvidz\\.com/\" to=\"https://$1reelvidz.com/\"/></ruleset>", "<ruleset name=\"Reethi Beach.com\" f=\"Reethi_Beach.com.xml\"><securecookie host=\"^\\.reethibeach\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reethibeach\\.com/\" to=\"https://www.reethibeach.com/\"/></ruleset>", "<ruleset name=\"Reethus-adeline.de\" f=\"Reethus-adeline.de.xml\"><securecookie host=\"^(www\\.)?reethus-adeline\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?reethus-adeline\\.de/\" to=\"https://www.reethus-adeline.de/\"/></ruleset>", "<ruleset name=\"Reevoo (partial)\" f=\"Reevoo.xml\"><securecookie host=\"^\\.reevoo\\.com$\" name=\".+\"/><rule from=\"^http://((?:[ct]\\.|de\\.)?mark\\.|shopping\\.|www\\.)?reevoo\\.com/\" to=\"https://$1reevoo.com/\"/><rule from=\"^http://cdn\\.images\\.reevoo\\.com/\" to=\"https://d1jyr02lmd46xp.cloudfront.net/\"/><rule from=\"^http://mark\\.reevoo\\.(es|fr|it|nl)/\" to=\"https://mark.reevoo.$1/\"/></ruleset>", "<ruleset name=\"Referly (default off)\" default_off=\"Cert warning\" f=\"Referly.xml\"><securecookie host=\"^\\.refer\\.ly$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Refined Labs\" f=\"RefinedLabs.xml\"><rule from=\"^http://d\\.refinedads\\.com/\" to=\"https://d.refinedads.com/\"/></ruleset>", "<ruleset name=\"Reflected.net\" f=\"Reflected.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reflex.cz\" f=\"Reflex.cz.xml\"><rule from=\"^http://(?:www\\.)?reflex\\.cz/\" to=\"https://www.reflex.cz/\"/><rule from=\"^http://img\\.reflex\\.cz/\" to=\"https://img.reflex.cz/\"/></ruleset>", "<ruleset name=\"Reform Government Surveillance.com\" f=\"Reform_Government_Surveillance.com.xml\"><rule from=\"^http://reformgovernmentsurveillance\\.com/\" to=\"https://www.reformgovernmentsurveillance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReformaBTL\" default_off=\"self-signed\" f=\"ReformaBTL.xml\"><securecookie host=\"^www\\.informabtl\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?informabtl\\.com/\" to=\"https://www.informabtl.com/\"/></ruleset>", "<ruleset name=\"Reformal (partial)\" default_off=\"failed ruleset test\" f=\"Reformal.xml\"><exclusion pattern=\"^http://webinfo\\.\"/><securecookie host=\"^\\.reformal\\.ru$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?reformal\\.ru/\" to=\"https://$1reformal.ru/\"/></ruleset>", "<ruleset name=\"Refog.com\" f=\"Refrog.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reg.ru (partial)\" f=\"Reg.ru.xml\"><securecookie host=\"^\\.reg\\.ru$\" name=\".+\"/><rule from=\"^http://((?:hosting|support|www)\\.)?reg\\.ru/\" to=\"https://$1reg.ru/\"/></ruleset>", "<ruleset name=\"RegOnline.com\" f=\"RegOnline.com.xml\"><securecookie host=\"^www\\.regonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rega\" f=\"Rega.xml\"><rule from=\"^http://rega\\.ch/\" to=\"https://www.rega.ch/\"/><rule from=\"^http://([^/:@]+)?\\.rega\\.ch/\" to=\"https://$1.rega.ch/\"/></ruleset>", "<ruleset name=\"Regalii.com\" f=\"Regalii.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regex101\" f=\"Regex101.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RegioBank.nl\" f=\"RegioBank.nl.xml\"><securecookie host=\"^(?:www)?\\.regiobank\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RegioBank Adviseurs.nl\" f=\"RegioBank_Adviseurs.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Register.BG\" f=\"Register.BG.xml\"><rule from=\"^http://(?:www\\.)?register\\.bg/\" to=\"https://www.register.bg/\"/></ruleset>", "<ruleset name=\"Register.com (partial)\" f=\"Register.com.xml\"><securecookie host=\"^(csr|partners(hips|ignup)|whoisaccuracy\\-portal|webmail0[124567]|www)\\.register\\.com$\" name=\".+\"/><rule from=\"^http://register\\.com/\" to=\"https://www.register.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Register4Less.com\" f=\"Register4Less.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Registration123.com\" f=\"Registration123.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Registro.br (partial)\" f=\"Registro.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Registry.Asia (partial)\" f=\"Registry.Asia.xml\"><securecookie host=\"^\\.registrars\\.registry\\.asia$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"registryrocket.com\" f=\"Registryrocket.com.xml\"><securecookie host=\"^www\\.registryrocket\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?registryrocket\\.com/\" to=\"https://www.registryrocket.com/\"/></ruleset>", "<ruleset name=\"regit.org (partial)\" f=\"Regit.org.xml\"><rule from=\"^http://home\\.regit\\.org/\" to=\"https://home.regit.org/\"/></ruleset>", "<ruleset name=\"Regjeringen.no (partial)\" f=\"Regjeringen.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"regmedia.co.uk\" f=\"Regmedia.co.uk.xml\"><securecookie host=\"^\\.regmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"regruhosting.ru\" f=\"Regruhosting.ru.xml\"><securecookie host=\"^\\.security\\.pp\\.regruhosting\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regularish.com\" default_off=\"failed ruleset test\" f=\"Regularish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regulations.gov (partial)\" f=\"Regulations.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reichelt.de\" f=\"Reichelt.de.xml\"><rule from=\"^http://(?:www\\.|such001\\.|secure\\.)?reichelt\\.de/\" to=\"https://secure.reichelt.de/\"/></ruleset>", "<ruleset name=\"Reifman.org (partial)\" f=\"Reifman.org.xml\"><rule from=\"^http://c3\\.reifman\\.org/\" to=\"https://d3iwh2gikt6957.cloudfront.net/\"/></ruleset>", "<ruleset name=\"reimanpub.com\" f=\"Reimanpub.com.xml\"><securecookie host=\"^(?:(?:origin-)?hostedmedia\\.|www\\.)?reimanpub\\.com$\" name=\".+\"/><rule from=\"^http://((?:origin-)?hostedmedia\\.|www\\.)?reimanpub\\.com/\" to=\"https://$1reimanpub.com/\"/></ruleset>", "<ruleset name=\"Reiner-SCT.com\" f=\"Reiner-SCT.com.xml\"><securecookie host=\"^(?:www)?\\.reiner-sct\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reinvigorate.net (partial)\" f=\"Reinvigorate.net.xml\"><rule from=\"^http://include\\.reinvigorate\\.net/\" to=\"https://denvua8xbp3vs.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rejseplanen.dk (broken)\" default_off=\"wrong host in certificates\" f=\"Rejseplanen.dk.xml\"><rule from=\"^http://rejseplanen\\.dk/\" to=\"https://www.rejseplanen.dk/\"/><rule from=\"^http://(www|info|xajax-prod|euspirit|ptt)\\.rejseplanen\\.dk/\" to=\"https://$1.rejseplanen.dk/\"/></ruleset>", "<ruleset name=\"Reklamport.com\" f=\"Reklamport.com.xml\"><securecookie host=\"^www\\.reklamport\\.com$\" name=\"\"/><rule from=\"^http://reklamport\\.com/\" to=\"https://www.reklamport.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Relate.org.uk\" default_off=\"failed ruleset test\" f=\"Relate.org.uk.xml\"><securecookie host=\"^www\\.relate\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RelayRides.com\" f=\"RelayRides.com.xml\"><securecookie host=\"^relayrides\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Relevate.ru\" f=\"Relevate.ru.xml\"><securecookie host=\"^(?:help)?\\.relevate\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reliable ISP.net\" f=\"Reliable_ISP.net.xml\"><rule from=\"^http://(?:www\\.)?reliableisp\\.net/\" to=\"https://www.reliableisp.net/\"/></ruleset>", "<ruleset name=\"Religion News.com (partial)\" default_off=\"failed ruleset test\" f=\"Religion_News.com.xml\"><exclusion pattern=\"^http://archives\\.religionnews\\.com/(?!\\w+\\.png|assets/|favicon\\.ico|images/|sign-in(?:$|\\?|/))\"/><securecookie host=\"^\\.religionnews\\.com$\" name=\".+\"/><rule from=\"^http://((?:archives|cathleenfalsani|davidgibson|janariess|jonathanmerritt|marksilk|michaeloloughlin|omarsacirbey|omidsafi|pressreleases|www)\\.)?religionnews\\.com/\" to=\"https://$1religionnews.com/\"/></ruleset>", "<ruleset name=\"Rem.co\" f=\"Rem.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Remedy Entertainment (partial)\" f=\"Remedy_Entertainment.xml\"><securecookie host=\"^community\\.remedygames\\.com$\" name=\".+\"/><rule from=\"^http://community\\.remedygames\\.com/\" to=\"https://community.remedygames.com/\"/></ruleset>", "<ruleset name=\"Remember the Milk\" f=\"RememberTheMilk.xml\"><securecookie host=\"^\\.rememberthemilk\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rememberthemilk\\.(?:com|jp)/\" to=\"https://www.rememberthemilk.com/\"/><rule from=\"^http://api\\.rememberthemilk\\.com/\" to=\"https://api.rememberthemilk.com/\"/><rule from=\"^http://s([1-4])\\.rtmcdn\\.net/\" to=\"https://s$1.rtmcdn.net/\"/></ruleset>", "<ruleset name=\"Remind.com (partial)\" f=\"Remind.com.xml\"><rule from=\"^http://help\\.remind\\.com/.*\" to=\"https://remind101.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RemoteCoder.io\" f=\"RemoteCoder.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"remoteStorage.io\" f=\"RemoteStorage.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RemotelyAnywhere.com\" f=\"RemotelyAnywhere.com.xml\"><rule from=\"^http://(?:www\\.)?remotelyanywhere\\.com/\" to=\"https://secure.remotelyanywhere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Remue Exhaust Store.com\" f=\"Remus_Exhaust_Store.com.xml\"><securecookie host=\"^\\.remusexhauststore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renater.fr (partial)\" f=\"Renater.fr.xml\"><securecookie host=\"^(?:groupes|services|sourcesup)\\.renater\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RenderFarming.net\" f=\"RenderFarming.net.xml\"><securecookie host=\"^burp\\.renderfarming\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renewable Freedom.org\" f=\"Renewable_Freedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reno Gazette-Journal (partial)\" default_off=\"failed ruleset test\" f=\"Reno_Gazette-Journal.xml\"><securecookie host=\"^(?:www)?\\.rgj\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?rgj\\.com/\" to=\"https://www.rgj.com/\"/><rule from=\"^http://deals\\.rgj\\.com/sf_(framework|module)s/\" to=\"https://reno.planetdiscover.com/sf_$1s/\"/></ruleset>", "<ruleset name=\"RenovationExperts.com\" default_off=\"missing certificate chain\" f=\"Renovation_Experts.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renren.com (partial)\" f=\"Renren.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"renrencaopan.com\" f=\"Renrencaopan.com.xml\"><securecookie host=\"^(?:www\\.)?renrencaopan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rensselaer Polytechnic Institute\" default_off=\"failed ruleset test\" f=\"Rensselaer_Polytechnic_Institute.xml\"><rule from=\"^http://(events\\.|clubs\\.union\\.|www\\.)?rpi\\.edu/\" to=\"https://$1rpi.edu/\"/></ruleset>", "<ruleset name=\"Rent the Runway (partial)\" f=\"Rent_the_Runway.xml\"><rule from=\"^http://(?:www\\.)?renttherunway\\.com/(grid|rtr/images)/\" to=\"https://cdn.rtrcdn.com/$1/\"/><rule from=\"^http://(www\\.)?renttherunway\\.com/(ajax|pixel|sites)/\" to=\"https://$1renttherunway.com/$2/\"/><rule from=\"^http://cdn\\.r(?:enttherunway|trcdn)\\.com/\" to=\"https://cdn.rtrcdn.com/\"/><rule from=\"^http://grid-p\\.rtrcdn\\.com/grid/\" to=\"https://cdn.rtrcdn.com/grid/\"/><rule from=\"^http://(?:grid|static)-p\\.rtrcdn\\.com/\" to=\"https://cdn.rtrcdn.com/grid/\"/></ruleset>", "<ruleset name=\"rentalcars.com (partial)\" f=\"Rentalcars.com.xml\"><securecookie host=\"^secure\\.rentalcars\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rentalserver.jp\" f=\"Rentalserver.jp.xml\"><securecookie host=\"^(?:cp|cp-d|cp-vps|sv)\\.rentalserver\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rentex\" f=\"Rentex.xml\"><securecookie host=\"^www\\.rentex\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rentex\\.com/\" to=\"https://www.rentex.com/\"/></ruleset>", "<ruleset name=\"Rentler.com\" f=\"Rentler.com.xml\"><securecookie host=\"^\\.rentler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RepeaterStore.com\" f=\"RepeaterStore.com.xml\"><securecookie host=\"^(?:www)?\\.repeaterstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Replica Perfection\" f=\"Replica_Perfection.xml\"><securecookie host=\"^\\.replicaperfection\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Replicant.us\" platform=\"cacert\" default_off=\"missing certificate chain\" f=\"Replicant.us.xml\"><securecookie host=\"^redmine\\.replicant\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reporo (partial)\" f=\"Reporo.xml\"><securecookie host=\"^www\\.reporo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reporo\\.com/\" to=\"https://www.reporo.com/\"/><rule from=\"^http://static\\.reporo\\.com/\" to=\"https://static.reporo.com/\"/></ruleset>", "<ruleset name=\"Report-uri.io\" f=\"Report-uri.io.xml\"><securecookie host=\"^(www\\.)?report-uri\\.io\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReportLab (partial)\" f=\"ReportLab.xml\"><rule from=\"^http://www\\.reportlab\\.com/(accounts/|favicon\\.ico|media/|static)\" to=\"https://www.reportlab.com/$1\"/></ruleset>", "<ruleset name=\"Reporter-ohne-Grenzen.de\" f=\"Reporter-ohne-Grenzen.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSF.org (partial)\" f=\"Reporters_Without_Borders.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reporting Project.net\" f=\"Reporting_Project.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Repost.Us\" default_off=\"failed ruleset test\" f=\"Repost.Us.xml\"><securecookie host=\"^.*\\.repost\\.us$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?repost\\.us/\" to=\"https://$1repost.us/\"/><rule from=\"^http://1\\.rp-api\\.com/\" to=\"https://1.rp-api.com/\"/><rule from=\"^http://(?:img|static)\\.1\\.rp-api\\.com/\" to=\"https://d2q1vna75dc892.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Repozitar.cz\" f=\"Repozitar.cz.xml\"><securecookie host=\"^repozitar\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?repozitar\\.cz/\" to=\"https://repozitar.cz/\"/></ruleset>", "<ruleset name=\"Represent.Us\" f=\"Represent.Us.xml\"><securecookie host=\"^www\\.represent\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?represent\\.us/\" to=\"https://$1represent.us/\"/><rule from=\"^http://cdn\\d\\.represent\\.us/\" to=\"https://d16f95x138ho2a.cloudfront.net/\"/></ruleset>", "<ruleset name=\"reproducible-builds.org\" f=\"Reproducible-builds.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reputation.com (partial)\" default_off=\"failed ruleset test\" f=\"Reputation.com.xml\"><exclusion pattern=\"^http://uk\\.reputation\\.com/+(?!favicon\\.ico|pub/assets/)\"/><securecookie host=\"^t\\.reputation\\.com$\" name=\".+\"/><rule from=\"^http://reputation\\.com/\" to=\"https://www.reputation.com/\"/><rule from=\"^http://(t|uk)\\.reputation\\.com/\" to=\"https://$1.reputation.com/\"/><rule from=\"^http://www\\.reputation\\.com/(?=[\\w/-]*images/|min/|secure/)\" to=\"https://www.reputation.com/\"/></ruleset>", "<ruleset name=\"RequestPolicy\" f=\"RequestPolicy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"requires.io\" f=\"Requires.io.xml\"><securecookie host=\"^requires\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Blogging\" default_off=\"expired, mismatch, self-signed\" f=\"Research-Blogging.xml\"><rule from=\"^http://(?:www\\.)?researchblogging\\.org/\" to=\"https://www.researchblogging.org/\"/></ruleset>", "<ruleset name=\"Research Media & Cybernetics\" f=\"Research-Media-and-Cybernetics.xml\"><securecookie host=\"^.*\\.rmcybernetics\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research.gov\" f=\"Research.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ResearchGate.net\" f=\"ResearchGate.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ResearchMatch.org\" f=\"ResearchMatch.org.xml\"><securecookie host=\"^www\\.researchmatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Now.com (partial)\" f=\"Research_Now.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Results.com (partial)\" f=\"Research_Results.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"researchmap.jp (partial)\" f=\"Researchmap.jp.xml\"><exclusion pattern=\"^http://researchmap\\.jp/+(?!favicon\\.ico|images/|index\\.php\\?active_center=login_view_main_autoregist|themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ResellerRatings (partial)\" default_off=\"failed ruleset test\" f=\"ResellerRatings.xml\"><securecookie host=\"^.*\\.resellerratings\\.com$\" name=\".+\"/><rule from=\"^http://(?:beta\\.|(seals\\.|www\\.))?resellerratings\\.com/\" to=\"https://$1resellerratings.com/\"/><rule from=\"^http://cdn\\d\\.resellerratings\\.com/\" to=\"https://d3cb52u6zfmv02.cloudfront.net/\"/><rule from=\"^http://images\\.resellerratings\\.com/\" to=\"https://d2ebdb90bhptzn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Reservation-Desk.com (partial)\" f=\"Reservation-Desk.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?reservation-desk\\.com/(?!application/themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reservation Counter.com (partial)\" f=\"Reservation_Counter.xml\"><securecookie host=\"^callcenter\\.reservationcounter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reservationcounter\\.com/(?=\\w+/themes/|ga\\.\\d+\\.js)\" to=\"https://www.reservationcounter.com/\"/><rule from=\"^http://callcenter\\.reservationcounter\\.com/\" to=\"https://callcenter.reservationcounter.com/\"/></ruleset>", "<ruleset name=\"Reset the Net.org\" f=\"Reset_the_Net.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resilient Systems.com (partial)\" f=\"Resilient_Systems.com.xml\"><rule from=\"^http://resilientsystems\\.com/\" to=\"https://www.resilientsystems.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resin.io (partial)\" f=\"Resin.io.xml\"><rule from=\"^http://www\\.resin\\.io/\" to=\"https://resin.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resinfo.org\" default_off=\"missing certificate chain\" f=\"Resinfo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resist Surveillance.org\" f=\"Resist_Surveillance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resonant.org\" default_off=\"self-signed\" f=\"Resonant.org.xml\"><rule from=\"^http://(?:www\\.)?resonant\\.org/\" to=\"https://www.resonant.org/\"/><rule from=\"^http://wikis\\.resonant\\.org/\" to=\"https://wikis.resonant.org/\"/></ruleset>", "<ruleset name=\"Resortpro.net\" f=\"Resortpro.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respawn Security\" default_off=\"failed ruleset test\" f=\"Respawn_Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respect Network.com\" f=\"Respect_Network.com.xml\"><rule from=\"^http://respectnetwork\\.com/\" to=\"https://www.respectnetwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respect our privacy.com\" f=\"Respect_our_privacy.com.xml\"><securecookie host=\"^(?:www)?\\.respectourprivacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"responsive.io (partial)\" f=\"Responsive.io.xml\"><securecookie host=\"^(?:w*\\.)?responsive\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Responsys.com\" f=\"Responsys.com.xml\"><rule from=\"^http://(?:www\\.)?responsys\\.com/.*\" to=\"https://www.oracle.com/marketingcloud/products/cross-channel/marketing-to-consumers.html\"/></ruleset>", "<ruleset name=\"Responsys.net (partial)\" f=\"Responsys.xml\"><rule from=\"^http://(static\\.cdn|policy\\d)\\.responsys\\.net/\" to=\"https://$1.responsys.net/\"/></ruleset>", "<ruleset name=\"Restore the Fourth\" default_off=\"failed ruleset test\" f=\"Restore_the_Fourth.xml\"><securecookie host=\"^(?:www)?\\.restorethefourth\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"resultspage.com (partial)\" f=\"Resultspage.com.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.+\\.resultspage\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.resultspage\\.com/\" to=\"https://$1.resultspage.com/\"/></ruleset>", "<ruleset name=\"Resurs.se\" f=\"Resurs.se.xml\"><rule from=\"^http://(?:www\\.)?resurs\\.se/\" to=\"https://www.resurs.se/\"/></ruleset>", "<ruleset name=\"Resus.org.uk\" f=\"Resus.org.uk.xml\"><securecookie host=\"^www\\.resus\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://resus\\.org\\.uk/\" to=\"https://www.resus.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retail-Link.gr\" f=\"Retail-Link.gr.xml\"><rule from=\"^http://(?:www\\.)?retail-link\\.gr/\" to=\"https://www.retail-link.gr/\"/><rule from=\"^http://e-invoicing\\.retail-link\\.gr/\" to=\"https://e-invoicing.retail-link.gr/\"/></ruleset>", "<ruleset name=\"RetailMeNot.com (partial)\" f=\"RetailMeNot.com.xml\"><rule from=\"^http://(?:www\\.)?retailmenot\\.com/favicon\\.ico\" to=\"https://www.retailmenot.com/favicon.ico\"/></ruleset>", "<ruleset name=\"Retail Sails\" f=\"Retail_Sails.xml\"><rule from=\"^http://www\\.retailsails\\.com/\" to=\"https://retailsails.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retailhosting.fi\" f=\"Retailhosting.fi.xml\"><rule from=\"^http://(?:www\\.)?retailhosting\\.fi/\" to=\"https://www.retailhosting.fi/\"/></ruleset>", "<ruleset name=\"Retriever-Info.com (false MCB)\" platform=\"mixedcontent\" f=\"Retriever-Info.com-falsemixed.xml\"><securecookie host=\"^\\.?www\\.retriever-info\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retriever-Info.com (partial)\" f=\"Retriever-Info.com.xml\"><exclusion pattern=\"^http://www\\.retriever-info\\.com/+(?!favicon\\.ico|go/|wp-content/)\"/><securecookie host=\"^web\\.retriever-info\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RetroFestive.ca\" f=\"RetroFestive.ca.xml\"><securecookie host=\"^\\.retrofestive\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RetroUSB.com\" f=\"RetroUSB.com.xml\"><securecookie host=\"^\\.retrousb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retronaut.com\" default_off=\"mismatched\" f=\"Retronaut.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"retsinformation.dk\" f=\"Retsinformation.dk.xml\"><securecookie host=\"^www\\.retsinformation\\.dk$\" name=\".+\"/><rule from=\"^http://retsinformation\\.dk/\" to=\"https://www.retsinformation.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rettighedsalliancen.dk (mixed content)\" platform=\"mixedcontent\" f=\"Rettighedsalliancen.dk.xml\"><rule from=\"^http://(www\\.)?rettighedsalliancen\\.dk/\" to=\"https://www.rettighedsalliancen.dk/\"/></ruleset>", "<ruleset name=\"Siedler 25.org\" f=\"Return-to-the-Roots.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Return Path.com (partial)\" f=\"Return_Path.com.xml\"><securecookie host=\"^returnpath\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Return Path.net\" f=\"Return_Path.net.xml\"><securecookie host=\"^monitor[12]?\\.returnpath\\.net$\" name=\".+\"/><rule from=\"^http://returnpath\\.net/\" to=\"https://www.returnpath.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reussissonsensemble.fr (partial)\" f=\"Reussissonsensemble.fr.xml\"><securecookie host=\"^clic\\.reussissonsensemble\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reuters.com (partial, broken)\" default_off=\"breaks www.reuters.com\" f=\"Reuters.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rev.com\" f=\"Rev.com.xml\"><securecookie host=\"^www\\.rev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rev2pub.com\" default_off=\"failed ruleset test\" f=\"Rev2pub.com.xml\"><rule from=\"^http://creative\\.rev2pub\\.com/\" to=\"https://d1col0l9yjljr0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"RevResponse.com\" f=\"RevResponse.com.xml\"><rule from=\"^http://(?:www\\.)?revresponse\\.com/\" to=\"https://www.revresponse.com/\"/></ruleset>", "<ruleset name=\"RevSci.net\" f=\"RevSci.net.xml\"><securecookie host=\"^\\.revsci\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reveal News.org\" f=\"Reveal_News.org.xml\"><rule from=\"^http://revealnews\\.org/\" to=\"https://www.revealnews.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReverbNation.com (partial)\" f=\"ReverbNation.com.xml\"><securecookie host=\"^\\.reverbnation\\.com$\" name=\"^_reverbnation_session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reverseheartbleed.com\" default_off=\"expired\" f=\"Reverse_Heartbleed.com.xml\"><rule from=\"^http://reverseheartbleed\\.com/\" to=\"https://reverseheartbleed.com/\"/></ruleset>", "<ruleset name=\"Review Board.org (partial)\" f=\"Review_Board.org.xml\"><securecookie host=\"^reviews\\.reviewboard\\.org$\" name=\".+\"/><rule from=\"^http://reviews\\.reviewboard\\.org/\" to=\"https://reviews.reviewboard.org/\"/></ruleset>", "<ruleset name=\"Reviewing Comics\" f=\"Reviewing_Comics.xml\"><securecookie host=\"^(?:www)?\\.reviewingcomics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revision3 (partial)\" f=\"Revision3.xml\"><securecookie host=\"^\\.revision3\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?revision3\\.com/\" to=\"https://$1revision3.com/\"/><rule from=\"^http://statics\\.revision3\\.com/\" to=\"https://revision3-pc-ssl.bitgravity.com/\"/></ruleset>", "<ruleset name=\"Revisium.com\" f=\"Revisium.com.xml\"><securecookie host=\"^(?:www\\.)?revisium\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revolet.com\" default_off=\"521\" f=\"Revolet.xml\"><securecookie host=\"^(?:.*\\.)?revolet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revolt Games (partial)\" default_off=\"failed ruleset test\" f=\"Revolt_Games.xml\"><securecookie host=\"^\\.revoltgames\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?revoltgames\\.com/\" to=\"https://www.revoltgames.com/\"/></ruleset>", "<ruleset name=\"revosec\" f=\"Revosec.xml\"><securecookie host=\"^www\\.revosec\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?revosec\\.ch/\" to=\"https://www.revosec.ch/\"/></ruleset>", "<ruleset name=\"Revstr.com\" f=\"Revstr.com.xml\"><securecookie host=\"^www\\.revstr\\.com$\" name=\".+\"/><rule from=\"^http://revstr\\.com/\" to=\"https://www.revstr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reynir.dk\" f=\"Reynir.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RezTrip\" default_off=\"failed ruleset test\" f=\"RezTrip.xml\"><securecookie host=\"^www\\.reztrip\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?reztrip\\.com/\" to=\"https://www.reztrip.com/\"/></ruleset>", "<ruleset name=\"rfecom.com (partial)\" f=\"Rfecom.com.xml\"><rule from=\"^http://ch03\\.rfecom\\.com/\" to=\"https://ch03.rfecom.com/\"/><rule from=\"^http://www\\.rfecom\\.com/+(?:$|\\?.*)\" to=\"https://www.myoptimizerplus.com/\"/></ruleset>", "<ruleset name=\"rfihub.com\" f=\"Rfihub.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RfxN.com\" f=\"RfxN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RhB\" f=\"RhB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhapsody\" default_off=\"mismatch\" f=\"Rhapsody.xml\"><rule from=\"^http://(?:www\\.)?rhapsody\\.com/\" to=\"https://www.rhapsody.com/\"/></ruleset>", "<ruleset name=\"Rhein-neckar-loewen.de\" f=\"Rhein-neckar-loewen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rheinland Reporter\" default_off=\"self-signed\" f=\"Rheinland-Reporter.xml\"><securecookie host=\"^rheinland24\\.info$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rheinland24\\.info/\" to=\"https://rheinland24.info/\"/></ruleset>", "<ruleset name=\"Rhino Software (partial)\" f=\"Rhino-Software.xml\"><securecookie host=\"^(?:www\\.)?rhinosoft\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhino Support.com (partial)\" f=\"Rhino_Support.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://rhinosupport\\.com/\" to=\"https://www.rhinosupport.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhizome (partial)\" f=\"Rhizome.xml\"><rule from=\"^http://(www\\.)?rhizome\\.org/static/\" to=\"https://$1rhizome.org/static/\"/></ruleset>", "<ruleset name=\"Rhombus Tech\" default_off=\"mismatch\" f=\"Rhombus-Tech.xml\"><rule from=\"^http://(?:www\\.)?rhombus-tech\\.net/\" to=\"https://rhombus-tech.net/\"/></ruleset>", "<ruleset name=\"Ribble Valley.gov.uk\" f=\"Ribble_Valley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricardo.ch (partial)\" f=\"Ricardo.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ricardoshops.ch\" f=\"Ricardoshops.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rice University (mismatches)\" default_off=\"mismatch\" f=\"Rice-University-mismatches.xml\"><rule from=\"^http://alumni\\.cgi\\.rice\\.edu/\" to=\"https://alumni.cgi.rice.edu/\"/></ruleset>", "<ruleset name=\"Rice University (partial)\" f=\"Rice-University.xml\"><securecookie host=\"^(?:online\\.alumni|staff)\\.rice\\.edu$\" name=\".*\"/><rule from=\"^http://(online\\.alumni|staff)\\.rice\\.edu/\" to=\"https://$1.rice.edu/\"/></ruleset>", "<ruleset name=\"RichRelevance (partial)\" f=\"RichRelevance.xml\"><securecookie host=\"^www\\.richrelevance\\.com$\" name=\".+\"/><rule from=\"^http://((?:confluence|demo|e4b-2|jira|media|portal|www)\\.)?richrelevance\\.com/\" to=\"https://$1richrelevance.com/\"/></ruleset>", "<ruleset name=\"Richard Dawkins.net (partial) \" f=\"Richard-Dawkins-Foundation.xml\"><securecookie host=\"^(?:www\\.)?richarddawkins\\.net$\" name=\".+\"/><securecookie host=\"^\\.richarddawkins\\.net$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://comments\\.richarddawkins\\.net/\" to=\"https://rdfnet-comments.herokuapp.com/\"/><rule from=\"^http://store\\.richarddawkins\\.net/+\" to=\"https://richarddawkins.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richard Dawkins Foundation (problematic)\" default_off=\"mismatched\" f=\"Richard_Dawkins_Foundation-problematic.xml\"><securecookie host=\"^.*\\.richarddawkins\\.net$\" name=\".+\"/><rule from=\"^http://(de|givingaid|old)\\.richarddawkins\\.net/\" to=\"https://$1.richarddawkins.net/\"/><rule from=\"^http://(?:www\\.)?richarddawkinsfoundation\\.org/\" to=\"https://richarddawkinsfoundation.org/\"/></ruleset>", "<ruleset name=\"Richard and Judy Book Club\" f=\"Richard_and_Judy_Book_Club.xml\"><rule from=\"^http://www\\.richardandjudy\\.co\\.uk/\" to=\"https://www.richardandjudy.co.uk/\"/></ruleset>", "<ruleset name=\"Richmond.edu (partial)\" f=\"Richmond.edu.xml\"><securecookie host=\"^(?:bannerweb|blackboard|webpass)\\.richmond\\.edu$\" name=\".+\"/><rule from=\"^http://(autodiscover|bannerweb|blackboard|dsl|exchangemail|facultystaff|webapps|webpass)\\.richmond\\.edu/\" to=\"https://$1.richmond.edu/\"/></ruleset>", "<ruleset name=\"Richmond Tea Party\" f=\"Richmond_Tea_Party.xml\"><securecookie host=\"^(?:w*\\.)?richmondteaparty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richmondshire.gov.uk (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Richmondshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricochet.com\" f=\"Ricochet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricochet.im\" f=\"Ricochet.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricoh (partial)\" default_off=\"failed ruleset test\" f=\"Ricoh.xml\"><securecookie host=\"^(?:.*\\.)?ricoh\\.co(?:\\.in|m(?:\\.sg)?)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ricoh\\.co\\.in/\" to=\"https://ricoh.co.in/\"/><rule from=\"^http://(?:www\\.)?ricoh\\.com/\" to=\"https://www.ricoh.com/\"/><rule from=\"^http://(?:www\\.)?ricoh\\.com\\.hk/co(mmon|tent)/\" to=\"https://www.ricoh.com.hk/co$1/\"/><rule from=\"^http://marketplace\\.ricoh\\.com\\.sg/\" to=\"https://marketplace.ricoh.com.sg/\"/><rule from=\"^http://(?:www\\.)?ricoh\\.sg/\" to=\"https://www.ricoh.sg/\"/></ruleset>", "<ruleset name=\"Riga\" default_off=\"failed ruleset test\" f=\"Riga.xml\"><rule from=\"^http://riga\\.lv/\" to=\"https://riga.lv/\"/><rule from=\"^http://([^/:@\\.]+)\\.riga\\.lv/\" to=\"https://$1.riga.lv/\"/><rule from=\"^http://eriga\\.lv/\" to=\"https://eriga.lv/\"/><rule from=\"^http://www\\.eriga\\.lv/\" to=\"https://www.eriga.lv/\"/></ruleset>", "<ruleset name=\"Right Media\" f=\"Right-Media.xml\"><securecookie host=\"^(?:.*\\.)?yieldmanager\\.(?:com|net)$\" name=\".\"/><rule from=\"^http://ad\\.adorika\\.com/\" to=\"https://ad.rmxads.com/\"/><rule from=\"^http://content\\.yieldmanager\\.com/\" to=\"https://content-ssl.yieldmanager.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightNow Technologies clients\" default_off=\"mismatch\" f=\"RightNow-clients.xml\"><securecookie host=\"^en\\.support\\.guildwars2\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightNow.com (partial)\" f=\"RightNow.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightScale.com (partial)\" f=\"RightScale.com.xml\"><rule from=\"^http://assets\\.rightscale\\.com/\" to=\"https://duh6oa3w9hopv.cloudfront.net/\"/><rule from=\"^http://((?:analytics|(?:www\\.)?forums|my|support|us-3)\\.)?rightscale\\.com/\" to=\"https://$1rightscale.com/\"/></ruleset>", "<ruleset name=\"Righthaven\" default_off=\"failed ruleset test\" f=\"Righthaven.xml\"><exclusion pattern=\"^http://plutus\\.righthaven\\.com/(?:$|index\\.php)\"/><securecookie host=\"^plutus\\.righthaven\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?righthaven\\.com/\" to=\"https://$1righthaven.com/\"/></ruleset>", "<ruleset name=\"Rightmove.co.uk (partial)\" f=\"Rightmove.co.uk.xml\"><exclusion pattern=\"^http://www\\.rightmove\\.co\\.uk/+(?!favicon\\.ico|forgottenPasswordForm\\.html|(?:[\\w-]+/)?login\\.html|ps/|rmplus/login/login\\.action)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightsCon.org\" f=\"RightsCon.xml\"><securecookie host=\"^(?:www\\.)?rightscon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rigzone (partial)\" default_off=\"failed ruleset test\" f=\"Rigzone.xml\"><exclusion pattern=\"^http://(?:comptracker|noblewin)\\.\"/><securecookie host=\"^(?:.+\\.)?rigzone\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?rigzone\\.com/\" to=\"https://$1rigzone.com/\"/></ruleset>", "<ruleset name=\"Riigi Teataja.ee\" f=\"Riigi_Teataja.ee.xml\"><securecookie host=\"^www\\.riigiteataja\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riksgalden.se\" f=\"Riksgalden.se.xml\"><rule from=\"^http://riksgalden\\.se/\" to=\"https://www.riksgalden.se/\"/><rule from=\"^http://www\\.riksgalden\\.se/\" to=\"https://www.riksgalden.se/\"/></ruleset>", "<ruleset name=\"RingCentral.com (partial)\" f=\"RingCentral.xml\"><exclusion pattern=\"^http://marketo\\.ringcentral\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^(?:service|www)\\.ringcentral\\.com$\" name=\".+\"/><rule from=\"^http://ringcentral\\.com/\" to=\"https://www.ringcentral.com/\"/><rule from=\"^http://marketo\\.ringcentral\\.com/\" to=\"https://na-c.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RingRevenue.com\" f=\"RingRevenue.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RingtoneMatcher.com (partial)\" default_off=\"mismatched\" f=\"RingtoneMatcher.com.xml\"><rule from=\"^http://overlay\\.ringtonematcher\\.com/\" to=\"https://overlay.ringtonematcher.com/\"/></ruleset>", "<ruleset name=\"riotgames.com (partial)\" f=\"Riotgames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIPE.net\" f=\"Ripe.net.xml\"><securecookie host=\".*\\.ripe\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ripoff Report\" f=\"Ripoff_Report.xml\"><securecookie host=\"^www\\.ripoffreport\\.com$\" name=\".+\"/><rule from=\"^http://ma\\.mesaazcorruptionreport\\.com/\" to=\"https://ma.mesaazcorruptionreport.com/\"/><rule from=\"^http://ripoffreport\\.com/\" to=\"https://www.ripoffreport.com/\"/><rule from=\"^http://(verified|www)\\.ripoffreport\\.com/\" to=\"https://$1.ripoffreport.com/\"/></ruleset>", "<ruleset name=\"Risc OS Open\" f=\"Risc_OS_Open.xml\"><securecookie host=\"^(?:www\\.)?riscosopen\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RISCON s.r.o.\" f=\"Riscon.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riscure.com\" f=\"Riscure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riseup.net\" f=\"Riseup.xml\"><securecookie host=\"^(?:.*\\.)?riseup\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Risk.io (partial)\" f=\"Risk.io.xml\"><securecookie host=\".*\\.risk\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RiskIQ.com\" f=\"RiskIQ.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Risparmio Postale.it\" f=\"Risparmio_Postale.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://risparmiopostale\\.it/\" to=\"https://www.risparmiopostale.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ritter.vg\" f=\"Ritter.vg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rivalseek.com\" f=\"Rivalseek.com.xml\"><securecookie host=\"^(?:www\\.)?rivalseek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"River Island (partial)\" f=\"River_Island.xml\"><exclusion pattern=\"^http://(?:(?:au|eu|us|www)\\.)?riverisland\\.(?:com|fr)/(?![aA]ssets/|favicon\\.ico|myaccount)\"/><exclusion pattern=\"^http://is\\.riverisland\\.com/(?!$|\\?)\"/><securecookie host=\"^\\.riverisland\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><rule from=\"^http://riverisland\\.(com|fr)/\" to=\"https://www.riverisland.$1/\"/><rule from=\"^http://(au|content1|content1-us|eu|is|my|us|www)\\.riverisland\\.com/\" to=\"https://$1.riverisland.com/\"/><rule from=\"^http://(content1|www)\\.riverisland\\.fr/\" to=\"https://$1.riverisland.fr/\"/></ruleset>", "<ruleset name=\"Riverbed.com (partial)\" f=\"Riverbed.xml\"><exclusion pattern=\"^http://ir\\.riverbed\\.com/(?!client/|media_files/)\"/><securecookie host=\"^(?:(?:autodiscover|community|developer|global|(?:apps(?:\\.uat)?\\.|uat\\.)?splash|support|supportkb|(?:dr-)?webmail)\\.)?riverbed\\.com$\" name=\".+\"/><rule from=\"^http://images\\.riverbed\\.com/\" to=\"https://secure.eloqua.com/\"/><rule from=\"^http://ir\\.riverbed\\.com/\" to=\"https://origin-phoenix.corporate-ir.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riverside Majestic Hotel\" f=\"RiversideMajestic.com.xml\"><securecookie host=\"^(www\\.)?riversidemajestic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riviera Tours\" default_off=\"failed ruleset test\" f=\"Riviera-Tours.xml\"><securecookie host=\"^(?:.*\\.)?rivieratours\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riyadonline.com\" default_off=\"failed ruleset test\" f=\"Riyadonline.com.xml\"><securecookie host=\"^corp\\.riyadonline\\.com$\" name=\".+\"/><rule from=\"^http://corp\\.riyadonline\\.com/\" to=\"https://corp.riyadonline.com/\"/></ruleset>", "<ruleset name=\"Rizon.net\" f=\"Rizon.net.xml\"><securecookie host=\"^\\.rizon\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rki.de\" f=\"Rki.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rkn.gov.ru\" default_off=\"missing certificate chain\" f=\"Rkn.gov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rl0.ru (partial)\" f=\"Rl0.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rms.sexy\" f=\"Rms.sexy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoadRunner\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"RoadRunner.xml\"><rule from=\"^http://(?:www\\.)?rr\\.com/\" to=\"https://www.rr.com/\"/></ruleset>", "<ruleset name=\"Roadtrippers\" f=\"Roadtrippers.xml\"><securecookie host=\"^(?:www\\.)?roadtrippers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roam Mobility\" f=\"Roam_Mobility.xml\"><securecookie host=\"^\\.www\\.roammobility\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roaring Penguin.com\" f=\"Roaring_Penguin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?roaringpenguin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RobTex\" f=\"RobTex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robeco\" f=\"Robeco.xml\"><rule from=\"^http://(?:www\\.)?robeco\\.nl/\" to=\"https://www.robeco.nl/\"/></ruleset>", "<ruleset name=\"Roberts Space Industries.com\" f=\"Roberts_Space_Industries.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robin Rabard (partial)\" default_off=\"failed ruleset test\" f=\"Robin_Rabard.xml\"><rule from=\"^http://(?:www\\.)?robinbarnard\\.com/(cms_style\\.css|(?:\\w+_)?images/)\" to=\"https://secure.justhost.com/~robinba2/$1\"/></ruleset>", "<ruleset name=\"Roblox\" f=\"Roblox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoboForm.com (partial)\" f=\"RoboForm.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?roboform\\.com/(?!dist/)\"/><securecookie host=\"^secure\\.roboform\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?roboform\\.com/\" to=\"https://secure.roboform.com/\"/></ruleset>", "<ruleset name=\"RoboHash\" f=\"RoboHash.xml\"><rule from=\"^http://(\\w+\\.)?robohash\\.org/\" to=\"https://$1robohash.org/\"/></ruleset>", "<ruleset name=\"Robokassa.ru\" f=\"Robokassa.ru.xml\"><securecookie host=\".*\\.robokassa\\.ru$\" name=\".+\"/><rule from=\"^http://robokassa\\.ru/\" to=\"https://www.robokassa.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RobotShop (partial)\" platform=\"mixedcontent\" f=\"RobotShop.xml\"><securecookie host=\"^(?:.*\\.)?robotshop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robtex.net\" f=\"Robtex.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roc-noc.com\" f=\"Roc-noc.com.xml\"><securecookie host=\"^\\.www\\.roc-noc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roccat.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Roccat.org.xml\"><securecookie host=\"^www\\.roccat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Rochester\" f=\"Rochester.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rochesterhomepage.net (partial)\" f=\"Rochesterhomepage.net.xml\"><rule from=\"^http://(?:www\\.)?rochesterhomepage\\.biz/(area|banner\\.amp|biz/|classifieds(?:$|\\?|/)|css/|favicon\\.ico|homepage/layout_image\\.php|images?/|site\\.css|tributes/)\" to=\"https://www.rochesterhomepage.biz/$1\"/><rule from=\"^http://(?:www\\.)?rochesterhomepage\\.net/(component|image|include|librarie|module|plugin|template)s/\" to=\"https://rochesterhomepage.net/$1s/\"/></ruleset>", "<ruleset name=\"Rochford.gov.uk (partial)\" platform=\"mixedcontent\" f=\"Rochford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rock Creek Outfitters (partial)\" f=\"Rock_Creek_Outfitters.xml\"><rule from=\"^http://(www\\.)?rockcreek\\.com/(css/|favicon\\.ico|img/|login\\.rco|outdoor/images/)\" to=\"https://$1rockcreek.com/$2\"/></ruleset>", "<ruleset name=\"Rock Paper Photo.com\" f=\"Rock_Paper_Photo.com.xml\"><securecookie host=\"^\\.www\\.rockpaperphoto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rock Paper Shotgun.com\" f=\"Rock_Paper_Shotgun.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rock Valley College.edu\" f=\"Rock_Valley_College.edu.xml\"><securecookie host=\"^(?:www\\.)?rockvalleycollege\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rocket.Chat\" f=\"Rocket.Chat.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rocketnet.jp\" f=\"Rocketnet.jp.xml\"><rule from=\"^http://rocketnet\\.jp/\" to=\"https://www.rocketnet.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rockhurst Hawks.com\" f=\"Rockhurst_Hawks.com.xml\"><securecookie host=\"^(?:www\\.)?rockhursthawks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rockstar Games (partial)\" f=\"Rockstar-Games.xml\"><exclusion pattern=\"^http://socialclub\\.rockstargames\\.com/(?!profile/support-signin-en\\.html|registration/createaccount|signup)\"/><securecookie host=\"^cdn\\.sc\\.rockstargames\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rockstargames\\.com/(?!img/)(.+\\.(?:css|gif|jpe?g|png))\" to=\"https://www.rockstargames.com/$1\"/><rule from=\"^http://(media|cdn\\.sc|socialclub|support|supportfiles)\\.rockstargames\\.com/\" to=\"https://$1.rockstargames.com/\"/></ruleset>", "<ruleset name=\"Roddis\" f=\"Roddis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roe.ch\" f=\"Roe.ch.xml\"><securecookie host=\"^www\\.roe\\.ch$\" name=\".+\"/><rule from=\"^http://((?:daniel|mirror|www)\\.)?roe\\.ch/\" to=\"https://$1roe.ch/\"/></ruleset>", "<ruleset name=\"roeck-us.net\" default_off=\"expired, self-signed\" f=\"Roeck-us.net.xml\"><rule from=\"^http://(?:www\\.)?roeck-us\\.net/\" to=\"https://roeck-us.net/\"/></ruleset>", "<ruleset name=\"Roem.ru\" f=\"Roem.ru.xml\"><rule from=\"^http://(?:(m\\.)|www\\.)?roem\\.ru/\" to=\"https://$1roem.ru/\"/></ruleset>", "<ruleset name=\"Roffey.org\" platform=\"cacert\" f=\"Roffey.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roger Federer\" f=\"RogerFederer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rogue Amoeba.com (partial)\" f=\"Rogue_Amoeba.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rohieb.name\" f=\"Rohieb.name.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roia.biz\" f=\"Roia.biz.xml\"><securecookie host=\"^roia\\.biz$\" name=\".+\"/><rule from=\"^http://www\\.roia\\.biz/\" to=\"https://roia.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roiservice.com\" default_off=\"failed ruleset test\" f=\"Roiservice.com.xml\"><rule from=\"^http://track\\.roiservice\\.com/\" to=\"https://track.roiservice.com/\"/></ruleset>", "<ruleset name=\"RoketFiyat.com\" default_off=\"failed ruleset test\" f=\"RoketFiyat.com.xml\"><securecookie host=\"^[.w]*\\.rocketfiyat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roku.com (partial)\" f=\"Roku.com.xml\"><rule from=\"^http://((?:owner|www|wwwimg)\\.)?roku\\.com/\" to=\"https://$1roku.com/\"/><rule from=\"^http://support\\.roku\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://roku.zendesk.com/\"/></ruleset>", "<ruleset name=\"RolePlayChat.org\" f=\"RolePlayChat.org.xml\"><securecookie host=\"^(?:w*\\.)?roleplaychat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roll Call.com (partial)\" platform=\"mixedcontent\" f=\"Roll_Call.com.xml\"><securecookie host=\"^(?:\\.?secure)?\\.rollcall\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:cdn|secure|www)\\.)?rollcall\\.com/\" to=\"https://secure.rollcall.com/\"/></ruleset>", "<ruleset name=\"rollApp.com (partial)\" f=\"Rollapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rollbar\" f=\"Rollbar.xml\"><securecookie host=\"^(?:\\.?www\\.)?rollbar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roller Net.us (partial)\" f=\"Roller_Net.us.xml\"><rule from=\"^http://(acc|activesync|webmail)\\.rollernet\\.us/\" to=\"https://$1.rollernet.us/\"/></ruleset>", "<ruleset name=\"Rolling Stone.com (partial)\" default_off=\"failed ruleset test\" f=\"Rolling_Stone.com.xml\"><exclusion pattern=\"^http://assets-s3\\.rollingstone\\.com/+(?!assets/|favicon\\.ico|images/)\"/><securecookie host=\"^\\.rollingstone\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^subscribe\\.rollingstone\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets|assets-s3|subscribe|www)\\.)?rollingstone\\.com/\" to=\"https://$1rollingstone.com/\"/></ruleset>", "<ruleset name=\"Rolling Stone Subscriptions.com\" f=\"Rolling_Stone_Subscriptions.com.xml\"><securecookie host=\"^(?:www)?\\.rollingstonesubscriptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rollingstonesubscriptions\\.com/\" to=\"https://www.rollingstonesubscriptions.com/\"/></ruleset>", "<ruleset name=\"Roloil\" f=\"Roloil.xml\"><securecookie host=\"^\\.roloil\\.com$\" name=\".+\"/><rule from=\"^http://www\\.roloil\\.com/\" to=\"https://www.roloil.com/\"/></ruleset>", "<ruleset name=\"romab.com\" f=\"Romab.com.xml\"><rule from=\"^http://(?:www\\.)?romab\\.se/\" to=\"https://romab.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rondavu\" f=\"Rondavu.xml\"><securecookie host=\"^\\.rondavu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rooof.com (mismatched)\" default_off=\"mismatched\" f=\"Rooof.com-problematic.xml\"><securecookie host=\"(?:www)?\\.roof\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rooof.com (partial)\" f=\"Rooof.xml\"><rule from=\"^http://cdn\\.rooof\\.com/\" to=\"https://d2fiu2vy3tuc3o.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RootBSD.net\" f=\"RootBSD.net.xml\"><securecookie host=\"^(?:admin|manage)\\.rootbsd\\.net$\" name=\".+\"/><rule from=\"^http://((?:admin|manage|www)\\.)?rootbsd\\.net/\" to=\"https://$1rootbsd.net/\"/></ruleset>", "<ruleset name=\"RoseHosting.com\" f=\"RoseHosting.com.xml\"><securecookie host=\"^secure\\.rosehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rosetta Code.org (false MCB)\" platform=\"mixedcontent\" f=\"Rosetta_Code.org-falsemixed.xml\"><securecookie host=\"^\\.?rosettacode\\.org$\" name=\".+\"/><rule from=\"^http://rosettacode\\.org/\" to=\"https://rosettacode.org/\"/></ruleset>", "<ruleset name=\"Rosetta Code.org (partial)\" f=\"Rosetta_Code.org.xml\"><exclusion pattern=\"^http://rosettacode\\.org/+(?!favicon\\.ico|mw/(?:extensions/|load\\.php|skins/|title\\.png))\"/><securecookie host=\"^www\\.rosettacode\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roskilde University (partial)\" f=\"Roskilde_University.xml\"><securecookie host=\"^www\\.ruc\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ruc\\.dk/\" to=\"https://www.ruc.dk/\"/></ruleset>", "<ruleset name=\"Ross Ulbricht.org\" default_off=\"mismatch\" f=\"Ross_Ulbricht.org.xml\"><securecookie host=\"^\\.rossulbricht\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rossendale.gov.uk\" f=\"Rossendale.gov.uk.xml\"><securecookie host=\"^(?!\\.rossendale\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://rossendale\\.gov\\.uk/\" to=\"https://www.rossendale.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roster Teeth (partial)\" f=\"Roster-Teeth.xml\"><rule from=\"^http://s3\\.roosterteeth\\.com/\" to=\"https://s3.amazonaws.com/s3.roosterteeth.com/\"/></ruleset>", "<ruleset name=\"RotaryView.com\" f=\"RotaryView.com.xml\"><securecookie host=\"^rotaryview\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rotesource.com\" default_off=\"failed ruleset test\" f=\"Rotesource.com.xml\"><securecookie host=\"^(?:w*\\.)?rotesource\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rother.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Rother.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rother.gov.uk (partial)\" f=\"Rother.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?rother\\.gov\\.uk/+(?!\\w+/(?:css/|images/|scripts/.+\\.css|template/)|CHttpHandler\\.ashx|(?:MyAlerts|MyAlertsEvents|article/10061/Login|contactus|unsubscribe)(?:$|[?/])|css/|images/|media/)\"/><securecookie host=\"^(?!(?:www\\.)?rother\\.gov\\.uk$)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rotherham.gov.uk (partial)\" f=\"Rotherham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rotlogix.com\" f=\"Rotlogix.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottentomatoes.com (partial)\" f=\"RottenTomatoes.xml\"><rule from=\"^http://static\\.rottentomatoes\\.com/\" to=\"https://d1rjibvava1hwe.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rottenecards\" default_off=\"failed ruleset test\" f=\"Rottenecards.xml\"><securecookie host=\"^www\\.rottenecards\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottnest Express\" f=\"Rottnest-Express.xml\"><securecookie host=\"^(www|bookings)\\.rottnestexpress\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottnest Fast Ferries\" f=\"Rottnest-Fast-Ferries.xml\"><securecookie host=\"^www\\.rottnestfastferries\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rough Trade Gear\" f=\"Rough_Trade_Gear.xml\"><securecookie host=\"^(?:.*\\.)?roughtradegear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoundCube.net (partial)\" f=\"RoundCube.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roundhouse\" default_off=\"needs testing\" f=\"Roundhouse.xml\"><exclusion pattern=\"^http://(www\\.)?roundhouse\\.org\\.uk/(about($|/cultural-camden|/jobs$|/people|press/archive/|/roundhouse-people/(ambassadors|associates|biographies|roundhouse-trust|staff))|book-tickets|call-to-create$|explore($|/portfolios|/profiles/all|/radio/)|hire/(roundhouse-london-2012|spaces-for-hire)|round1($|/about|/blog|/jointheteam|/producers|/projects)|take-part$|take-part/(creative-projects($|/creative-media/online-film-fund-2012|/performing-arts)|get-support($|financial-support))|visit/buy-a-t-shirt|whats-on/(festivals|productions$|world-shakespeare-festival))\"/><securecookie host=\"^(?:www)?\\.roundhouse\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(www\\.)?roundhouse\\.org\\.uk/(contact|take-part)/$\" to=\"https://$1roundhouse.org.uk/$2\"/><rule from=\"^http://(www\\.)?roundhouse\\.org\\.uk/\" to=\"https://$1roundhouse.org.uk/\"/></ruleset>", "<ruleset name=\"Rovi (partial)\" f=\"Rovi.xml\"><rule from=\"^http://cps-static\\.rovicorp\\.com/\" to=\"https://cps-static.rovicorp.com/\"/></ruleset>", "<ruleset name=\"Rovio.com (partial)\" f=\"Rovio.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.rovio\\.com/\" to=\"https://d2onmsj2cximry.cloudfront.net/\"/><rule from=\"^http://assets-production\\.rovio\\.com/\" to=\"https://ductl1gjw76cl.cloudfront.net/\"/><rule from=\"^http://fonts\\.rovio\\.com/\" to=\"https://d1umoivskfzt7s.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rows.io\" f=\"Rows.io.xml\"><securecookie host=\"^rows\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rows\\.io/\" to=\"https://rows.io/\"/></ruleset>", "<ruleset name=\"Royal Academy of Engineering\" default_off=\"failed ruleset test\" f=\"Royal-Academy-of-Engineering.xml\"><securecookie host=\"^.*\\.raeng\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?raeng\\.org\\.uk/\" to=\"https://www.raeng.org.uk/\"/><rule from=\"^http://private\\.raeng\\.org\\.uk/\" to=\"https://private.raeng.org.uk/\"/></ruleset>", "<ruleset name=\"Royal Astronomical Society\" default_off=\"failed ruleset test\" f=\"Royal-Astronomical-Society.xml\"><securecookie host=\"^www\\.ras\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ras\\.org\\.uk/\" to=\"https://www.ras.org.uk/\"/></ruleset>", "<ruleset name=\"Royal Institution of Great Britain (mismatches)\" default_off=\"broken\" f=\"Royal-Institution-of-Great-Britain-mismatches.xml\"><rule from=\"^http://(?:www\\.)?richannel\\.org/\" to=\"https://richannel.org/\"/></ruleset>", "<ruleset name=\"Royal Institution of Great Britain (partial)\" default_off=\"broken\" f=\"Royal-Institution-of-Great-Britain.xml\"><securecookie host=\"^www\\.rigb\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rigb\\.org/\" to=\"https://www.rigb.org/\"/></ruleset>", "<ruleset name=\"Royal Navy (partial)\" platform=\"mixedcontent\" default_off=\"ruleset coverage test fails\" f=\"Royal-Navy.xml\"><securecookie host=\"^(?:www\\.)?navynews\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(www\\.)?navynews\\.co\\.uk/\" to=\"https://$1navynews.co.uk/\"/><rule from=\"^http://(www\\.)?royalnavy\\.mod\\.uk/(contact-us|images/|library/|login|[pP]rofile/|ScriptCombiner\\.axd)\" to=\"https://$1royalnavy.mod.uk/$2\"/></ruleset>", "<ruleset name=\"Royal Society (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Royal-Society-of-Chemistry-mismatches.xml\"><rule from=\"^http://prospect\\.rsc\\.org/\" to=\"https://prospect.rsc.org/\"/></ruleset>", "<ruleset name=\"Royal Society of Chemistry (partial)\" platform=\"mixedcontent\" f=\"Royal-Society-of-Chemistry.xml\"><securecookie host=\"^(?:.*\\.)?chemspider\\.com$\" name=\".*\"/><securecookie host=\"^(?:carousel|members)\\.rsc\\.org$\" name=\".*\"/><rule from=\"^http://([\\w-]+\\.)?chemspider\\.com/\" to=\"https://$1chemspider.com/\"/><rule from=\"^http://(?:rsc|(?:www\\.)?rscweb)\\.org/\" to=\"https://www.rsc.org/\"/><rule from=\"^http://(carousel|members)\\.rsc\\.org/\" to=\"https://$1.rsc.org/\"/></ruleset>", "<ruleset name=\"Royal Australian Navy\" default_off=\"failed ruleset test\" f=\"RoyalAustralianNavy.xml\"><rule from=\"^http://(?:www\\.)?navy\\.gov\\.au/\" to=\"https://www.navy.gov.au/\"/></ruleset>", "<ruleset name=\"RoyalGovUK\" platform=\"mixedcontent\" f=\"RoyalGovUK.xml\"><securecookie host=\"^(?:.+\\.)?royal\\.gov\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?royal\\.gov\\.uk/\" to=\"https://www.royal.gov.uk/\"/></ruleset>", "<ruleset name=\"Royal Mail (partial)\" f=\"Royal_Mail.xml\"><securecookie host=\"^(?:\\.?shop|www2)\\.royalmail\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?royalmail\\.com/(sites/|user(?:$|\\?|/))\" to=\"https://www.royalmail.com/$1\"/><rule from=\"^http://(shop|www2)\\.royalmail\\.com/\" to=\"https://$1.royalmail.com/\"/></ruleset>", "<ruleset name=\"Royal Mail Group (partial)\" f=\"Royal_Mail_Group.xml\"><rule from=\"^http://(?:www\\.)?royalmailgroup\\.com/(sites/|user(?:$|\\?|/))\" to=\"https://www.royalmailgroup.com/$1\"/></ruleset>", "<ruleset name=\"Royal Society.org\" f=\"Royal_Society.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rpgmakerweb.com\" f=\"Rpgmakerweb.com.xml\"><rule from=\"^http://(?:www\\.)?rpgmakerweb\\.com/\" to=\"https://www.rpgmakerweb.com/\"/></ruleset>", "<ruleset name=\"Rpmfind.net\" f=\"Rpmfind.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rpmfusion.org (partial)\" platform=\"cacert\" f=\"Rpmfusion.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rpw.sh\" f=\"Rpw.sh.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rspamd.com\" f=\"Rspamd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsshog\" default_off=\"failed ruleset test\" f=\"Rsshog.xml\"><securecookie host=\"^(?:\\.?www)?\\.rsshog\\.com$\" name=\".+\"/><rule from=\"^http://(img\\.|static\\d\\.|www\\.)?rsshog\\.com/\" to=\"https://$1rsshog.com/\"/></ruleset>", "<ruleset name=\"rsync.net (partial)\" f=\"Rsync.net.xml\"><rule from=\"^http://(?:www\\.)?rsync\\.net/(?=css/|images/|resources/)\" to=\"https://www.rsync.net/\"/></ruleset>", "<ruleset name=\"rsys.net\" f=\"Rsys.net.xml\"><rule from=\"^http://([\\w\\-])\\.rsys\\.net/\" to=\"https://$1.rsys.net/\"/></ruleset>", "<ruleset name=\"Rtbf.be Belgian Television\" f=\"Rtbf.be.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:rss|ds\\d\\.static)\\.rtbf\\.be/\" to=\"https://ssl-ds.static.rtbf.be/\"/><rule from=\"^http://sgc\\.static\\.rtbf\\.be/\" to=\"https://ssl-sgc.static.rtbf.be/\"/><rule from=\"^http://www\\.static\\.rtbf\\.be/\" to=\"https://ssl-www.static.rtbf.be/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ru4.com\" f=\"Ru4.com.xml\"><securecookie host=\"^\\.ru4\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rubenerd.com\" f=\"Rubenerd.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rubicon Project.com\" f=\"Rubicon-Project.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://tap2?-cdn\\.rubiconproject\\.com/\" to=\"https://tap.rubiconproject.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rubicon Dev.com\" f=\"Rubicon_Development.xml\"><securecookie host=\"^\\.rubicondev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruby-Forum.com\" f=\"Ruby-Forum.com.xml\"><securecookie host=\"^www\\.ruby-forum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruby-Toolbox.com\" f=\"Ruby-Toolbox.com.xml\"><securecookie host=\"^www\\.ruby-toolbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ruby-lang.org (partial)\" f=\"Ruby-lang.org.xml\"><securecookie host=\"^bugs\\.ruby-lang\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RubyForge.org (partial)\" default_off=\"connection refused\" f=\"RubyForge.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RubyGems.org (problematic)\" default_off=\"mismatched\" f=\"RubyGems.org-problematic.xml\"><exclusion pattern=\"^http://m\\.rubygems\\.org/iui/\"/><securecookie host=\".+\\.rubygems\\.org\" name=\".+\"/><rule from=\"^http://(help|m|status)\\.rubygems\\.org/\" to=\"https://$1.rubygems.org/\"/></ruleset>", "<ruleset name=\"RubyGems.org (partial)\" f=\"RubyGems.xml\"><securecookie host=\"^(?:www\\.)?rubygems.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gemcutter\\.org/\" to=\"https://rubygems.org/\"/><rule from=\"^http://(www\\.)?rubygems\\.org/\" to=\"https://$1rubygems.org/\"/><rule from=\"^http://m\\.rubygems\\.org/(?=iui/)\" to=\"https://gem.heroku.com/\"/></ruleset>", "<ruleset name=\"Ruby Together.org\" f=\"Ruby_Together.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruderich.org\" f=\"Ruderich.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rudloff.pro\" f=\"Rudloff.pro.xml\"><rule from=\"^http://(?:www\\.)?rudloff\\.pro/\" to=\"https://www.rudloff.pro/\"/></ruleset>", "<ruleset name=\"Rue La La.com\" f=\"Rue_La_La.com.xml\"><securecookie host=\"^www\\.ruelala\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ruelala\\.com/\" to=\"https://www.ruelala.com/\"/></ruleset>", "<ruleset name=\"RugStudio (partial)\" f=\"RugStudio.xml\"><rule from=\"^http://(?:www\\.)?rugstudio\\.com/((?:cart|custom\\.css|login|order-lookup|send-password)\\.aspx|customfooter2\\.css|favicon\\.ico|images/|imago/|themes/)\" to=\"https://www.rugstudio.com/$1\"/><rule from=\"^http://rugs\\.rugstudio\\.com/\" to=\"https://rugstudio.resultspage.com/\"/></ruleset>", "<ruleset name=\"Rugby.gov.uk (partial)\" f=\"Rugby.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><securecookie host=\"^(?!\\.rugby\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rugged Software\" f=\"Rugged-Software.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RugsHD.com\" default_off=\"failed ruleset test\" f=\"RugsHD.com.xml\"><securecookie host=\"^\\.?rugshd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruhr-Uni-Bochum.de (false MCB)\" platform=\"mixedcontent\" f=\"Ruhr-Uni-Bochum.de-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruhr-Uni-Bochum.de (partial)\" f=\"Ruhr-Uni-Bochum.de.xml\"><exclusion pattern=\"^http://www\\.cits\\.ruhr-uni-bochum\\.de/+(?!imperia/md/(?:content|images)/)\"/><exclusion pattern=\"^http://www\\.ruhr-uni-bochum\\.de/(?:a-z|anreise|kontakt|studierendensekretariat|suche|uebersicht)\"/><rule from=\"^http://ruhr-uni-bochum\\.de/\" to=\"https://www.ruhr-uni-bochum.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rumors City.com\" f=\"Rumors_City.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Run for Your Lives.com\" default_off=\"mismatched\" f=\"Run-for-Your-Lives.xml\"><securecookie host=\"^www\\.runforyourlives\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?runforyourlives\\.com/\" to=\"https://www.runforyourlives.com/\"/></ruleset>", "<ruleset name=\"RunAbove.com\" f=\"RunAbove.xml\"><securecookie host=\"^(?:(?:community|labs|www)\\.)?runabove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RunSafe\" f=\"RunSafe.xml\"><securecookie host=\"^www\\.irunsafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runbook.io\" f=\"Runbook.io.xml\"><securecookie host=\"^\\.runbook\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runbox.com\" f=\"Runbox.com.xml\"><securecookie host=\"^(?:blog|support)\\.runbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runscope.com (partial)\" f=\"Runscope.com.xml\"><securecookie host=\"^www\\.runscope\\.com$\" name=\".+\"/><rule from=\"^http://status\\.runscope\\.com/\" to=\"https://runscope.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruptly.tv\" f=\"Ruptly.tv.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RushBucks.com\" default_off=\"failed ruleset test\" f=\"RushBucks.com.xml\"><securecookie host=\"^(?:www\\.|\\.)?rushbucks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RushMyPassport.com\" default_off=\"failed ruleset test\" f=\"RushMyPassport.com.xml\"><securecookie host=\"^www\\.rushmypassport\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rushmypassport\\.com/\" to=\"https://www.rushmypassport.com/\"/></ruleset>", "<ruleset name=\"Russell Group.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Russell_Group.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Russia Beyond the Headlines\" default_off=\"expired, self-signed\" f=\"Russia-Beyond-the-Headlines.xml\"><securecookie host=\"^rbth\\.ru$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rbth\\.ru/\" to=\"https://rbth.ru/\"/></ruleset>", "<ruleset name=\"russia.ru (partial)\" f=\"Russia.ru.xml\"><securecookie host=\"^adv\\.russia\\.ru$\" name=\".+\"/><rule from=\"^http://(adv|mail)\\.russia\\.ru/\" to=\"https://$1.russia.ru/\"/></ruleset>", "<ruleset name=\"Russia2all.com\" f=\"Russia2all.com.xml\"><securecookie host=\"^www\\.russia2all\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Russian American Company\" f=\"Russian_American_Company.xml\"><securecookie host=\"^\\.russianamericancompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rust-Lang.org (partial)\" f=\"Rust-Lang.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rutgers University (partial)\" platform=\"mixedcontent\" f=\"Rutgers_University.xml\"><exclusion pattern=\"^http://www\\.acs\\.rutgers\\.edu/directory/?(?:\\?.*)?$\"/><exclusion pattern=\"^http://www4\\.libraries\\.rutgers\\.edu/(?!sites/)\"/><exclusion pattern=\"^http://rads\\.rutgers\\.edu/(?!css/|images/|Login\\.aspx)\"/><exclusion pattern=\"^http://resnet\\.rutgers\\.edu/(?!css/|favicon\\.ico|graphics/)\"/><exclusion pattern=\"^http://ruevents\\.rutgers\\.edu/(?!events/admin/)\"/><exclusion pattern=\"^http://rusecure\\.rutgers\\.edu/(?!misc/|modules/|sites/|themes/)\"/><securecookie host=\"^(?:grad\\.admissions|admissionservices|biology|\\.cait|comminfo|(?:(?:www\\.)?ems|service|storyquarterly|www)?\\.camden|ce-catalog|directoryservices|dn|webmail\\.eden|events|execdeanagriculture|finservices|food|ghcookcampus|gobble|hdrti|hpo|identityservices|idm|(?:www\\.)?ipe|\\.?lawjournal|my|netid|(?:blackboard|law|ncs|webmail|www)\\.newark|neipmvwg|nj4h|njaes(?:intranet)?|broad\\.nwk-campus|ocblogdev1|shib\\.oirt|personalinfo|\\.?www1\\.recreation|rhshope|rias-gateway|ruoncampus|sakai|secure\\.sas|sc-apps|search|sebs(?:intranet)?|securitysystems|sims|sis|software|studentabcweb|surveys|wiki\\.td|transcripts|uhrapps|visitnjfarms|www)\\.rutgers\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?((?:camden|cs|eden|nbcs|newark|physics|rci|td)\\.)?rutgers\\.edu/\" to=\"https://www.$1rutgers.edu/\"/><rule from=\"^http://(?:www\\.)?(?:alumni|support)\\.rutgers\\.edu/(admin/|calendar\\.css$|images/|s/\\d+/(?:appstyles\\.css|images/|js/)|ScriptResource\\.axd|scripts/)\" to=\"https://imodules.com/$1\"/><rule from=\"^http://(?:www\\.)?(andromeda|antarcticquest|cait|(?:athletics|storyquarterly)\\.camden|comminfo|events|execdeanagriculture|food|ghcookcampus|gobble|libraries|lifesci|math|mssg|(?:law|webmail)\\.newark|nj4h|njaes(?:intranet)?|resnet|njaes|rads|rhshope|ruinfo|ruoffcampus|ruoncampus|sebs|sebs(?:intranet|njaesnews)|studentabc|uhr|visitnjfarms)\\.rutgers\\.edu/\" to=\"https://$1.rutgers.edu/\"/><rule from=\"^http://(www\\.acs|grad\\.admissions|admissionservices|apsmail|biology|(?:computing\\.|mfa\\.|service\\.)?camden|(?:www\\.)?(?:ems\\.camden|camlaw|ipe|rulill)|cas|ce-catalog|(?:sirs\\.|www\\.)?ctaar|directoryservices|dn|webmail\\.eden|email|mail\\.envsci|ess|finservices|gradschoolalumni|halflife|hdrti|hpo|hpodrome|identityservices|idm|lawjournal|(?:facsub|mss3|(?:login|www-iris-rutgers-edu)\\.proxy|www[24])\\.libraries|my|nagios|neipmvwg|netid|(?:blackboard|ncs)\\.newark|njog|broad\\.nwk-campus|ocblog(?:dev1)?|octestblog|oirap|shib\\.oirt|services\\.oit|payrolluhr|personalinfo|plant(?:diagnosticlab|-pest-advisory)|ppa|rams|www1\\.recreation|rhshope|rias-gateway|ruevents|rusecure|rutadmin|sakai|secure\\.sas|sc-apps|scarletmail|search|secure|securitysystems|services|sims|sis|software|studentabcweb|surveys|voip\\.td|wiki\\.td|transcripts|turfblog|ua|uhrapps|webhost-x0[15])\\.rutgers\\.edu/\" to=\"https://$1.rutgers.edu/\"/><rule from=\"^http://(?:www\\.)?athletics\\.rutgers\\.edu/(?:\\?.*)?$\" to=\"https://www.rutgers.edu/campus-life/athletics-rutgers\"/><rule from=\"^http://edseries\\.camden\\.rutgers\\.edu/(?:.+/)?([^\\?]*)(\\?.*)?\" to=\"https://computing.camden.rutgers.edu/help/training$1$2\"/><rule from=\"^http://catalogs\\.rutgers\\.edu/(?:\\?.*)$\" to=\"https://www.rutgers.edu/academics/catalogs\"/><rule from=\"^http://(?:www\\.)?ideabank\\.rutgers\\.edu/(?:\\?.*)?$\" to=\"https://camlaw.rutgers.edu/webapps/ideabank/\"/><rule from=\"^http://libguides\\.rutgers\\.edu/(css\\d*|data|include|js(?:\\d+\\w?)?)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://mailmain\\.rutgers\\.edu/\" to=\"https://email.rutgers.edu/\"/><rule from=\"^http://(parktran|rudots)\\.rutgers\\.edu/\" to=\"https://gobble.rutgers.edu/\"/><rule from=\"^http://www\\.rce\\.rutgers\\.com/money/pdfs/\" to=\"https://njaes.rutgers.com/money/pdfs/\"/><rule from=\"^http://mygraddate\\.sas\\.rutgers\\.edu/\" to=\"https://secure.sas.rutgers.edu/apps/mymajor/\"/><rule from=\"^http://mymajor\\.sas\\.rutgers\\.edu/\" to=\"https://secure.sas.rutgers.edu/apps/mymajor/\"/><rule from=\"^http://webreg\\.rutgers\\.edu/\" to=\"https://sims.rutgers.edu/webreg/\"/></ruleset>", "<ruleset name=\"Ruxcon.org.au\" f=\"Ruxcon.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruxcon Breakpoint.com\" f=\"Ruxcon_Breakpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rxpharmacyusa.com\" f=\"Rxpharmacyusa.com.xml\"><securecookie host=\"^\\.?www\\.rxpharmacyusa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rxportalexpress.com\" f=\"Rxportalexpress.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://rxportalexpress\\.com/\" to=\"https://www.rxportalexpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rya.nc\" f=\"Rya.nc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ryanair.com\" f=\"Ryanair.com.xml\"><securecookie host=\"^(?:www)?\\.ryanair\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ryanair\\.com/\" to=\"https://www.ryanair.com/\"/><rule from=\"^http://ryanair\\.com/\" to=\"https://www.ryanair.com/\"/></ruleset>", "<ruleset name=\"Ryedale.gov.uk (partial)\" f=\"Ryedale.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"S-3.com\" f=\"S-3.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-Microsoft.com\" f=\"S-Microsoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-Msft.com (partial)\" f=\"S-Msft.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://i[2-4]\\.(code\\.msdn|social|gallery\\.technet)\\.s-msft\\.com/\" to=\"https://i1.$1.s-msft.com/\"/><rule from=\"^http://i[1-4]\\.services\\.social\\.s-msft\\.com/\" to=\"https://services.social.microsoft.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-msn.com (partial)\" f=\"S-msn.com.xml\"><rule from=\"^http://static-hp\\.s-msn\\.com/\" to=\"https://preview.msn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"S-pankki\" f=\"S-pankki.xml\"><securecookie host=\"^(?:www|online)\\.s-pankki\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?s-pankki\\.fi/\" to=\"https://www.s-pankki.fi/\"/><rule from=\"^http://online\\.s-pankki\\.fi/\" to=\"https://online.s-pankki.fi/\"/></ruleset>", "<ruleset name=\"S2 Games (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"S2-Games-mismatches.xml\"><rule from=\"^http://dl\\.heroesofnewerth\\.com/\" to=\"https://dl.heroesofnewerth.com/\"/></ruleset>", "<ruleset name=\"S2 Games (partial)\" default_off=\"failed ruleset test\" f=\"S2-Games.xml\"><securecookie host=\"^(?:.*\\.)?heroesofnewerth\\.com$\" name=\".*\"/><securecookie host=\"^savage2\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?heroesofnewerth\\.com/\" to=\"https://$1heroesofnewerth.com/\"/><rule from=\"^http://(?:www\\.)?savage2\\.com/\" to=\"https://savage2.com/\"/></ruleset>", "<ruleset name=\"S2Media (mismatches)\" default_off=\"Certificate mismatch\" f=\"S2Media.xml\"><rule from=\"^http://(?:www\\.)?layer-ads\\.de/\" to=\"https://layer-ads.de/\"/><rule from=\"^http://(www\\.)?s2media(\\.be|digital\\.com)/\" to=\"https://www.s2media$2/\"/><securecookie host=\"^(?:www\\.)?s2media(?:\\.be|digital\\.com)$\" name=\".*\"/></ruleset>", "<ruleset name=\"s2Member.com (false MCB)\" platform=\"mixedcontent\" f=\"S2Member.com-falsemixed.xml\"><securecookie host=\"^\\.s2member\\.com$\" name=\".+\"/><rule from=\"^http://www\\.s2member\\.com/(?!affiliates/API/|favicon\\.ico|s-badges/|wp-content/|wp-includes/)\" to=\"https://www.s2member.com/\"/></ruleset>", "<ruleset name=\"s2Member.com (partial)\" f=\"S2Member.com.xml\"><exclusion pattern=\"^http://www\\.s2member\\.com/(?!affiliates/API/|favicon\\.ico|s-badges/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?s2member\\.com/\" to=\"https://www.s2member.com/\"/></ruleset>", "<ruleset name=\"SACNAS (partial)\" f=\"SACNAS.xml\"><rule from=\"^http://(www\\.)?sacnas\\.org/($|civicrm/|content/|member-directory|sites/|user/)\" to=\"https://$1sacnas.org/$2\"/></ruleset>", "<ruleset name=\"SAIC.com (partial)\" f=\"SAIC.com.xml\"><rule from=\"^http://(?:www\\.)?saic\\.com/\" to=\"https://www.saic.com/\"/></ruleset>", "<ruleset name=\"SAKURA.ad.jp (partial)\" f=\"SAKURA_Internet.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.secure\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SALESmanago.pl\" f=\"SALESmanago.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAMBA\" default_off=\"failed ruleset test\" f=\"SAMBA.xml\"><rule from=\"^http://samba\\.com/\" to=\"https://www.samba.com/\"/><rule from=\"^http://(sambacapital|sambatdwl|sambaonline|www)\\.samba\\.com/\" to=\"https://$1.samba.com/\"/></ruleset>", "<ruleset name=\"SANS.edu\" f=\"SANS.edu.xml\"><securecookie host=\"^\\.isc\\.sans\\.edu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SANS.org\" f=\"SANS.org.xml\"><securecookie host=\"^\\.sans\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAP (partial)\" default_off=\"failed ruleset test\" f=\"SAP.xml\"><exclusion pattern=\"^https://www\\.sdn\\.sap\\.com/irj/scn/go(?:$|\\?|/)\"/><exclusion pattern=\"^http://search\\.sap\\.com/(?:$|\\?.)\"/><securecookie host=\"^(?:accounts|help|internalstore|mail|open|scn|store|www54)\\.sap\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.blog-sap\\.com/\" to=\"https://blog.sap.com/\"/><rule from=\"^http://(?:www\\.)?sap\\.com/(favicon\\.ico|global/(?:js|ui)/)\" to=\"https://www.sap.com/$1\"/><rule from=\"^http://(accounts|blogs|help|internalstore|mail|open|scn|www\\.sdn|search|store|www54|access)\\.sap\\.com/\" to=\"https://$1.sap.com/\"/><rule from=\"^http://(www\\.sc|sd)n\\.sap\\.com/.*\" to=\"https://scn.sap.com/welcome?original_fqdn=$1n.sap.com\"/></ruleset>", "<ruleset name=\"SAS.com\" f=\"SAS_Institute.xml\"><securecookie host=\"^(?:.*\\.)?sas\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SATA-IO.org\" f=\"SATA-IO.org.xml\"><rule from=\"^http://(?:www\\.)?sata-io\\.org/\" to=\"https://www.sata-io.org/\"/></ruleset>", "<ruleset name=\"SAT symposium.org\" f=\"SAT_symposium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAnet.me\" f=\"SAnet.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SB-Innovation.de\" default_off=\"expired, self-signed\" f=\"SB-Innovation.de.xml\"><securecookie host=\"^(?:.*\\.)?sb-innovation\\.de$\" name=\".*\"/><rule from=\"^http://(?:[\\w\\-]+\\.)?sb-innovation\\.de/\" to=\"https://www.sb-innovation.de/\"/></ruleset>", "<ruleset name=\"SB Nation.com (partial)\" f=\"SB-Nation.xml\"><securecookie host=\"^www\\.sbnation\\.com$\" name=\".*\"/><rule from=\"^http://sbnation\\.com/\" to=\"https://www.sbnation.com/\"/><rule from=\"^http://assets\\.sbnation\\.com/\" to=\"https://s3.amazonaws.com/assets.sbnation.com/\"/><rule from=\"^http://cdn\\d\\.sbnation\\.com/\" to=\"https://ddrgqsxlcy7wq.cloudfront.net/\"/><rule from=\"^http://fonts\\.sbnation\\.com/\" to=\"https://d1jcofl6pfjesh.cloudfront.net/\"/><rule from=\"^http://ox-d\\.sbnation\\.com/\" to=\"https://sbnation-d3.openxenterprise.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SBA-Research.org\" f=\"SBA-Research.org.xml\"><securecookie host=\"^(?:www\\.)?sba-research\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SBForge.org\" default_off=\"failed ruleset test\" f=\"SBForge.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StateBankOfIndia\" f=\"SBI.xml\"><securecookie host=\"^(?:.+\\.)?sbi\\.co\\.in$\" name=\".*\"/><rule from=\"^http://sbi\\.co\\.in/\" to=\"https://www.sbi.co.in/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SBNdev.net\" f=\"SBNdev.net.xml\"><rule from=\"^http://share\\.sbndev\\.net/\" to=\"https://s3.amazonaws.com/share.sbndev.net/\"/></ruleset>", "<ruleset name=\"SBV Improver.com\" f=\"SBV_Improver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SC.edu (partial)\" f=\"SC.edu.xml\"><rule from=\"^http://((?:artsandsciences|giving|www)\\.)?sc\\.edu/\" to=\"https://$1sc.edu/\"/></ruleset>", "<ruleset name=\"SCADACS.org\" f=\"SCADACS.org.xml\"><rule from=\"^http://scadacs\\.org/\" to=\"https://www.scadacs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCAP Sync.com\" f=\"SCAP_Sync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCDN.co (partial)\" f=\"SCDN.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cf\\.scdn\\.co/\" to=\"https://d2c87l0yth4zbw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SCEA.com\" f=\"SCEA.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?scea\\.com/\" to=\"https://us.playstation.com/\"/><rule from=\"^http://webassets\\w?\\.scea\\.com/\" to=\"https://secure.cdn.us.playstation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCSK.jp\" default_off=\"failed ruleset test\" f=\"SCSK.jp.xml\"><rule from=\"^http://(?:www\\.)?scsk\\.jp/\" to=\"https://www.scsk.jp/\"/></ruleset>", "<ruleset name=\"SCaron.info\" f=\"SCaron.info.xml\"><rule from=\"^http://www\\.scaron\\.info/\" to=\"https://scaron.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SDA.it (partial)\" f=\"SDA.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SDSC.edu\" f=\"SDSC.edu.xml\"><rule from=\"^http://(lists|www)\\.sdsc\\.edu/\" to=\"https://$1.sdsc.edu/\"/></ruleset>", "<ruleset name=\"SDSU.edu (partial)\" f=\"SDSU.edu.xml\"><exclusion pattern=\"^http://(?:arweb|newscenter)\\.sdsu\\.edu/(?!.+\\.(?:css|gif|jpg|ico|pdf|png)|giving(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:chhs|ens|slhs)\\.sdsu\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://socialwork\\.sdsu\\.edu/+(?!(?:[\\w-]+/+)?wp-(?:content|includes)/)\"/><exclusion pattern=\"^http://www-rohan\\.sdsu\\.edu/~(?!cbabroad/+(?:\\w+/)?images/)\"/><exclusion pattern=\"^http://nursing\\.sdsu\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://phonebook\\.sdsu\\.edu/+(?!ealert(?:$|[?/]))\"/><securecookie host=\"^(?:ali|azteclinkweb|blackboard|www\\.ces|circuit|(?:filex|selfservice)\\.foundation|giveonline|go|infoed|\\.?libpac|m\\.libpac|sunspot|www-rohan)\\.sdsu\\.edu$\" name=\".+\"/><rule from=\"^http://campaign\\.sdsu\\.edu/+(?=$|\\?)\" to=\"https://securelb.imodules.com/s/997/campaign13/start.aspx\"/><rule from=\"^http://campaign\\.sdsu\\.edu/\" to=\"https://securelb.imodules.com/\"/><rule from=\"^http://ctl\\.sdsu\\.edu/+(?:$|\\?.*)\" to=\"https://go.sdsu.edu/dus/ctl/\"/><rule from=\"^http://coe\\.sdsu\\.edu/+(?=$|\\?)\" to=\"https://go.sdsu.edu/education/Default.aspx\"/><rule from=\"^http://coe\\.sdsu\\.edu/\" to=\"https://go.sdsu.edu/education/\"/><rule from=\"^http://hobbit\\.sdsu\\.edu/.*\" to=\"https://library.sdsu.edu/guides/\"/><rule from=\"^http://www\\.isc\\.sdsu\\.edu/+\" to=\"https://studentaffairs.sdsu.edu/ISC/\"/><rule from=\"^http://piprofile\\.sdsu\\.edu:4443/\" to=\"https://piprofile.sdsu.edu:4443/\"/><rule from=\"^http://(?:www\\.sa|starter)\\.sdsu\\.edu/\" to=\"https://studentaffairs.sdsu.edu/\"/><rule from=\"^http://(ali|arweb|audhandbook|azteclinkweb|blackboard|www\\.ces|chhs|circuit|cmsweb\\.cms|ens|esit|(?:filex|help|selfservice)\\.foundation|giveonline|go|hhs|infoed|jobsfoundation|libpac|m\\.libpac|newscenter|phonebook|scua2|slhs|socialwork|studentaffairs|sunspot|www-rohan)\\.sdsu\\.edu/\" to=\"https://$1.sdsu.edu/\"/></ruleset>", "<ruleset name=\"SEAGM.com (false MCB)\" platform=\"mixedcontent\" f=\"SEAGM.com-falsemixed.xml\"><securecookie host=\"^\\.(?:www\\.)?seagm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEAGM.com (partial)\" f=\"SEAGM.com.xml\"><rule from=\"^http://static\\.seagm\\.com/\" to=\"https://static.seagm.com/\"/></ruleset>", "<ruleset name=\"SEC-Consult.com (partial)\" f=\"SEC-Consult.com.xml\"><rule from=\"^http://www\\.sec-consult\\.com/\" to=\"https://www.sec-consult.com/\"/></ruleset>", "<ruleset name=\"SEL Inc.com\" f=\"SEL_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SELinux Project.org\" default_off=\"expired, self-signed\" f=\"SELinux_Project.org.xml\"><securecookie host=\"^selinuxproject\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?selinuxproject\\.org/\" to=\"https://selinuxproject.org/\"/></ruleset>", "<ruleset name=\"SEMABUZZ.COM\" default_off=\"failed ruleset test\" f=\"SEMABUZZ.COM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEMOR.cz\" f=\"SEMOR.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEO.com\" platform=\"mixedcontent\" f=\"SEO.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEO Training Toronto\" f=\"SEO_Training_Toronto.xml\"><securecookie host=\"(?:www)?\\.seotrainingtoronto.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEScoops\" default_off=\"failed ruleset test\" f=\"SEScoops.xml\"><securecookie host=\"^\\.sescoops\\.com$\" name=\".+\"/><rule from=\"^http://(?:\\d\\.|(www\\.))?sescoops\\.com/\" to=\"https://$1sescoops.com/\"/></ruleset>", "<ruleset name=\"SE Round Table.com\" f=\"SE_Round_Table.com.xml\"><securecookie host=\"^www\\.seroundtable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEstatic.fi (partial)\" f=\"SEstatic.fi.xml\"><rule from=\"^http://n(t)?\\.sestatic\\.fi/\" to=\"https://n$1.sestatic.fi/\"/></ruleset>", "<ruleset name=\"SF-Mail.de\" platform=\"cacert\" f=\"SF-Mail.de.xml\"><securecookie host=\"^webmail\\.sf-mail\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SF.se (broken)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/7278\" f=\"SF.se.xml\"><rule from=\"^http://sf\\.se/\" to=\"https://www.sf.se/\"/><rule from=\"^http://www\\.sf\\.se/\" to=\"https://www.sf.se/\"/></ruleset>", "<ruleset name=\"SFM Group (partial)\" default_off=\"failed ruleset test\" f=\"SFM-Group.xml\"><rule from=\"^http://sfm-offshore\\.com/\" to=\"https://www.sfm-offshore.com/\"/><rule from=\"^http://(de|es|fr|it|www)\\.sfm-offshore\\.com/(favicon\\.ico|(imag|modul|templat)es/|order/|(bestellengesellschaft|(ordina|solicitud)societaoffshore|commandersociete|ordercompany)\\.html)\" to=\"https://$1.sfm-offshore.com/$2\"/></ruleset>", "<ruleset name=\"SF Site.com\" f=\"SF_Site.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SGI.com\" f=\"SGI.com.xml\"><rule from=\"^http://(?:www\\.)?sgi\\.com/\" to=\"https://www.sgi.com/\"/></ruleset>", "<ruleset name=\"SGNO.org (partial)\" f=\"SGNO.org.xml\"><rule from=\"^http://(?:www\\.)?sgno\\.org/(?=about(?:/donate)?(?:$|[?/])|concrete/|favicon\\.ico|files/|packages/|themes/)\" to=\"https://www.sgno.org/\"/></ruleset>", "<ruleset name=\"SGSStudentbostader.se\" platform=\"mixedcontent\" f=\"SGSStudentbostader.se.xml\"><rule from=\"^http://(?:www\\.)?sgsstudentbostader\\.se/\" to=\"https://www.sgsstudentbostader.se/\"/></ruleset>", "<ruleset name=\"SH.se\" platform=\"mixedcontent\" f=\"SH.se.xml\"><rule from=\"^http://bibl\\.sh\\.se/\" to=\"https://bibl.sh.se/\"/><rule from=\"^http://webappl\\.web\\.sh\\.se/\" to=\"https://webappl.web.sh.se/\"/></ruleset>", "<ruleset name=\"SHA 2 SSL Checker.com\" f=\"SHA_2_SSL_Checker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SHKSPR.mobi\" f=\"SHKSPR.mobi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SHld.net (partial)\" f=\"SHld.net.xml\"><securecookie host=\"^sso\\.shld\\.net$\" name=\".+\"/><rule from=\"^http://(c2|k2?|s|sso)\\.shld\\.net/\" to=\"https://$1.shld.net/\"/><rule from=\"^http://n?c\\.shld\\.net/(?!$|\\?)\" to=\"https://c.shld.net/\"/></ruleset>", "<ruleset name=\"SI.se\" f=\"SI.se.xml\"><rule from=\"^http://www\\.si\\.se/\" to=\"https://www.si.se/\"/><rule from=\"^http://si\\.se/\" to=\"https://www.si.se/\"/></ruleset>", "<ruleset name=\"SICS.se\" f=\"SICS.se.xml\"><rule from=\"^http://sics\\.se/\" to=\"https://www.sics.se/\"/><rule from=\"^http://www\\.sics\\.se/\" to=\"https://www.sics.se/\"/></ruleset>", "<ruleset name=\"SIDN\" f=\"SIDN.xml\"><securecookie host=\"^(?:www\\.)?sidn\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SIFF\" default_off=\"connection reset\" f=\"SIFF.xml\"><securecookie host=\"^(?:.*\\.)?siff\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?siff\\.net/\" to=\"https://www.siff.net/\"/></ruleset>", "<ruleset name=\"SIL International (partial)\" f=\"SIL-International.xml\"><exclusion pattern=\"^http://scripts\\.sil\\.org/cms/scripts/page\\.php\"/><rule from=\"^http://scripts\\.sil\\.org/\" to=\"https://scripts.sil.org/\"/></ruleset>", "<ruleset name=\"SIL International (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"SIL_International-problematic.xml\"><rule from=\"^http://(?:www\\.)?sil\\.org/\" to=\"https://www.sil.org/\"/></ruleset>", "<ruleset name=\"SIP Solutions.net\" platform=\"cacert\" f=\"SIP-Solutions.xml\"><securecookie host=\"^www\\.sipsolutions\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SJ.se (partial)\" f=\"SJ.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?sj\\.se/+(?:content/dam/|etc/designs/|sv/trafikinfo(?:$|[?/]))\"/><rule from=\"^http://sj\\.se/\" to=\"https://www.sj.se/\"/><rule from=\"^http://www\\.sj\\.se/\" to=\"https://www.sj.se/\"/></ruleset>", "<ruleset name=\"SKNVibes (partial)\" f=\"SKNVibes.xml\"><exclusion pattern=\"^http://(?:www\\.)?sknvibes\\.com/(?!(?:[\\w-]+/)?(?:dmenu/|effects/|[iI](?:mage|tem)s/|js/|scripts/|themes/|zimg/)|general/(?:login_continue|send_pass)\\.cfm|skngallery2/)\"/><securecookie host=\"^sms\\.sknvibes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SKS Keyservers (partial)\" f=\"SKS-Keyservers.xml\"><rule from=\"^http://(?:www\\.)?sks-keyservers\\.net/\" to=\"https://sks-keyservers.net/\"/></ruleset>", "<ruleset name=\"SKYCITY Auckland\" f=\"SKYCITY-Auckland.xml\"><securecookie host=\"^www\\.skycityauckland\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SK hynix.com\" default_off=\"failed ruleset test\" f=\"SK_hynix.com.xml\"><securecookie host=\"^(?:www\\.)?skhynix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SKortekaas.nl\" f=\"SKortekaas.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLF.se\" f=\"SLF.se.xml\"><rule from=\"^http://slf\\.se/\" to=\"https://www.slf.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLI-Systems.com (partial)\" f=\"SLI-Systems.xml\"><exclusion pattern=\"^http://sitesearch\\.sli-systems\\.com/(?!css/|rs/)\"/><securecookie host=\"^tools\\.sli-systems\\.com$\" name=\".+\"/><rule from=\"^http://sitesearch\\.sli-systems\\.com/\" to=\"https://na-sj01.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLIP Plate.com\" f=\"SLIP_Plate.com.xml\"><securecookie host=\"^(?:www)?\\.slipplate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLOOH (partial)\" f=\"SLOOH.xml\"><exclusion pattern=\"^http://(?:www\\.)?slooh\\.com/(?:\\?.*)?$\"/><rule from=\"^http://(www\\.)?slooh\\.com/\" to=\"https://$1slooh.com/\"/><rule from=\"^http://images\\.slooh\\.com/\" to=\"https://s3.images.slooh.com/\"/><rule from=\"^http://images-account\\.slooh\\.com/\" to=\"https://c580754.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-background\\.slooh\\.com/\" to=\"https://c575991.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-buttons\\.slooh\\.com/\" to=\"https://c576040.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-footer\\.slooh\\.com/\" to=\"https://c576050.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-home\\.slooh\\.com/\" to=\"https://c575441.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"SLU.se\" default_off=\"failed ruleset test\" f=\"SLU.se.xml\"><rule from=\"^http://slu\\.se/\" to=\"https://www.slu.se/\"/><rule from=\"^http://www\\.slu\\.se/\" to=\"https://www.slu.se/\"/><rule from=\"^http://internt\\.slu\\.se/\" to=\"https://internet.slu.se/\"/></ruleset>", "<ruleset name=\"SMACK TLS.com\" f=\"SMACK_TLS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMFTA.com (partial)\" default_off=\"failed ruleset test\" f=\"SMFTA.com.xml\"><rule from=\"^http://(?:www\\.)?smfta\\.com/\" to=\"https://www.smfta.com/\"/></ruleset>", "<ruleset name=\"SMF for Free (partial)\" f=\"SMF_for_Free.xml\"><rule from=\"^http://cdn\\.smfboards\\.com/\" to=\"https://d2woastm347hjv.cloudfront.net/\"/><rule from=\"^http://images\\.smfboards\\.com/\" to=\"https://s3.amazonaws.com/images.smfboards.com/\"/></ruleset>", "<ruleset name=\"SMSSecure.org\" f=\"SMSSecure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMU.edu (partial)\" default_off=\"mismatched\" f=\"SMU.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sMyl.es\" f=\"SMyl.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNCB\" f=\"SNCB.xml\"><securecookie host=\"^(?:.*\\.)?b-europe\\.com$\" name=\".+\"/><rule from=\"^http://b-europe\\.com/\" to=\"https://www.b-europe.com/\"/><rule from=\"^http://([^/:@]+)?\\.b-europe\\.com/\" to=\"https://$1.b-europe.com/\"/></ruleset>", "<ruleset name=\"SNL.com (partial)\" f=\"SNL.com.xml\"><securecookie host=\"^www\\.snl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNS Bank.nl\" f=\"SNSBank.xml\"><securecookie host=\"^servicepas\\.snsbank\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNstatic.fi\" f=\"SNstatic.fi.xml\"><rule from=\"^http://is20\\.snstatic\\.fi/\" to=\"https://www.iltasanomat.fi/\"/><rule from=\"^http://hs1[0-3]\\.snstatic\\.fi/\" to=\"https://www.hs.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNtech (partial)\" default_off=\"failed ruleset test\" f=\"SNtech.xml\"><rule from=\"^http://ssl\\.sntech\\.de/\" to=\"https://ssl.sntech.de/\"/></ruleset>", "<ruleset name=\"SOA.org (partial)\" f=\"SOA.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SOGo\" default_off=\"mismatch\" f=\"SOGo.xml\"><securecookie host=\"^www\\.sogo\\.nu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sogo\\.nu/\" to=\"https://www.sogo.nu/\"/></ruleset>", "<ruleset name=\"SOHH.com\" f=\"SOHH.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SOHOPelessly Broken.com\" f=\"SOHOpelessly_Broken.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SP.nl (partial)\" f=\"SP.nl.xml\"><rule from=\"^http://sp\\.nl/\" to=\"https://www.sp.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPBAS.com (partial)\" default_off=\"failed ruleset test\" f=\"SPBAS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPCA Los Angeles\" platform=\"mixedcontent\" f=\"SPCA-Los-Angeles.xml\"><rule from=\"^http://(?:www\\.)?spcala\\.com/\" to=\"https://spcala.com/\"/></ruleset>", "<ruleset name=\"SPDNS.de\" f=\"SPDNS.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPDX.org (partial)\" f=\"SPDX.org.xml\"><securecookie host=\"^\\.spdx\\.org$\" name=\"^SESS.*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPEC.org\" f=\"SPEC.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPL Center.org (partial)\" f=\"SPL_Center.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPORTISIMO s.r.o.\" f=\"SPORTISIMO.xml\"><rule from=\"^http://sportisimo\\.com/\" to=\"https://www.sportisimo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SP Times.com (partial)\" f=\"SP_Times.com.xml\"><securecookie host=\"^\\.sptimes\\.com$\" name=\"^s_\\w\\w(?:_.*)?$\"/><rule from=\"^http://metric\\.sptimes\\.com/\" to=\"https://stpetersburgtimes.122.2o7.net/\"/></ruleset>", "<ruleset name=\"SPajIT\" default_off=\"expired, self-signed\" f=\"SPajIT.xml\"><securecookie host=\"^(?:hypeshell|shellmix)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hypeshell\\.com/\" to=\"https://hypeshell.com/\"/><rule from=\"^http://(?:www\\.)?shellmix\\.com/\" to=\"https://www.shellmix.com/\"/><rule from=\"^https://shellmix\\.com/\" to=\"https://www.shellmix.com/\"/></ruleset>", "<ruleset name=\"SPnet.nl\" f=\"SPnet.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SQL Converter\" f=\"SQL_Converter.xml\"><securecookie host=\"^(?:w*\\.)?sqlconverter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SQLite.org\" f=\"SQLite.xml\"><exclusion pattern=\"^http://sqlite\\.org:8080/\"/><securecookie host=\"^(?:.+\\.)?sqlite\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRA OSS\" default_off=\"self-signed\" f=\"SRA_OSS.xml\"><rule from=\"^http://www\\.sraoss\\.co\\.jp/\" to=\"https://www.sraoss.co.jp/\"/></ruleset>", "<ruleset name=\"SRB2.org (partial)\" f=\"SRB2.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRDS.com (partial)\" default_off=\"failed ruleset test\" f=\"SRDS.com.xml\"><securecookie host=\"^www\\.srds\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?srds\\.com/\" to=\"https://www.srds.com/\"/></ruleset>", "<ruleset name=\"SRI Hash.org\" f=\"SRI_Hash.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRM.de\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SRM.de.xml\"><securecookie host=\"^www\\.srm\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?srm\\.de/\" to=\"https://www.srm.de/\"/></ruleset>", "<ruleset name=\"SRSPlus.com\" f=\"SRSPlus.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://srsplus\\.com/\" to=\"https://www.srsplus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSAFA (mismatches)\" default_off=\"mismatch\" f=\"SSAFA-mismatches.xml\"><rule from=\"^http://www\\.ssafa\\.org\\.uk/\" to=\"https://www.ssafa.org.uk/\"/><securecookie host=\"^www\\.ssafa\\.org\\.uk$\" name=\".*\"/></ruleset>", "<ruleset name=\"SSAFA (partial)\" default_off=\"failed ruleset test\" f=\"SSAFA.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(?:www\\.)?ssafastore\\.co\\.uk$\" name=\".*\"/></ruleset>", "<ruleset name=\"SSB.no\" f=\"SSB.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSE Events Group.com\" f=\"SSE_Events_Group.com.xml\"><securecookie host=\"^(?:www)?\\.sseeventsgroup.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Cert-Shop.com (partial)\" f=\"SSL-Cert-Shop.com.xml\"><securecookie host=\".+\\.ssl-cert-shop\\.com$\" name=\".+\"/><rule from=\"^http://ssl-cert-shop\\.com/\" to=\"https://www.ssl-cert-shop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Trust\" f=\"SSL-Trust.com.xml\"><securecookie host=\"^\\.ssl-trust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL.com (partial)\" f=\"SSL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL2Buy.com\" f=\"SSL2Buy.com.xml\"><securecookie host=\"^store\\.ssl2buy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLMate.com\" f=\"SSLMate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL Decoder.org\" f=\"SSL_Decoder.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLlabs.com\" f=\"SSLlabs.xml\"><securecookie host=\"^\\.ssllabs\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLs.com\" f=\"SSLs.com.xml\"><securecookie host=\"^(?:www)?\\.ssls\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLshopper.com\" f=\"SSLshopper.xml\"><securecookie host=\"^(?:www\\.)?sslshopper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSRN.com (partial)\" platform=\"mixedcontent\" f=\"SSRN.xml\"><exclusion pattern=\"http://poseidon[0-9]*\\.ssrn\\.com/\"/><exclusion pattern=\"^http://www\\.ssrn\\.com/+(?!css/|en/includes/|images2/|plugins/)\"/><securecookie host=\"(?:hq|papers)\\.ssrn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSSup.it (partial)\" f=\"SSSup.it.xml\"><exclusion pattern=\"^http://allievi\\.sssup\\.it/+techblog(?!/wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://forms\\.sssup\\.it/+(?!$|\\?|didactive(?:$|[?/]))\"/><exclusion pattern=\"^http://www\\.sssup\\.it/+(?!(?:ammissione|ammissione-dottorati-perfezionamento|ateneo|concorso-ammissione|master|orientamento|ufficiostampa)(?:$|[?/])|customcss/|favicon\\.ico|images/|images_new/|intranet_logon\\.jsp|isipcss/|mappa\\.jsp|search\\.jsp|UploadDocs/|UploadImgs/)\"/><securecookie host=\"^(?:didactive|pay)\\.sssup\\.it$\" name=\".+\"/><rule from=\"^http;//forms\\.sssup\\.it/+(?:$|\\?.*)\" to=\"https://forms.sssup.it/didactive\"/><rule from=\"^http://(allievi|didactive|forms|pay|www)\\.sssup\\.it/\" to=\"https://$1.sssup.it/\"/></ruleset>", "<ruleset name=\"SSTIC.org\" f=\"SSTIC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ST.com (partial)\" f=\"ST.com.xml\"><securecookie host=\"^my\\.st\\.com$\" name=\".+\"/><rule from=\"^http://my\\.st\\.com/\" to=\"https://my.st.com/\"/></ruleset>", "<ruleset name=\"ST.org\" f=\"ST.org.xml\"><rule from=\"^http://st\\.org/\" to=\"https://www.st.org/\"/><rule from=\"^http://www\\.st\\.org/\" to=\"https://www.st.org/\"/></ruleset>", "<ruleset name=\"STARTTLS.info\" f=\"STARTTLS.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"STEG\" f=\"STEG.xml\"><rule from=\"^http://(?:www\\.)?steg-electronics\\.ch/\" to=\"https://www.steg-electronics.ch/\"/></ruleset>", "<ruleset name=\"STELLAService.com (partial)\" f=\"STELLAService.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"STLinux.com (partial)\" f=\"STLinux.com.xml\"><securecookie host=\"^bugzilla\\.stlinux\\.com$\" name=\".+\"/><rule from=\"^http://bugzilla(-attachments)?\\.stlinux\\.com/\" to=\"https://bugzilla$1.stlinux.com/\"/></ruleset>", "<ruleset name=\"STRATO (partial)\" default_off=\"failed ruleset test\" f=\"STRATO.xml\"><securecookie host=\"^www\\.strato(?:\\.de|\\.es|\\.nl|-hebergement\\.fr|-hosting\\.co\\.uk)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strato(\\.com|\\.de|\\.es|\\.nl|-hebergement\\.fr|-hosting\\.co\\.uk)/\" to=\"https://www.strato$1/\"/></ruleset>", "<ruleset name=\"STRATO MailCenter\" f=\"STRATO_MailCenter.xml\"><securecookie host=\"^www\\.strato-mailcenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strato-mailcenter\\.com/\" to=\"https://www.strato-mailcenter.com/\"/></ruleset>", "<ruleset name=\"STRATO Pro\" default_off=\"failed ruleset test\" f=\"STRATO_Pro.xml\"><securecookie host=\"^www\\.strato-pro\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strato-pro\\.com/\" to=\"https://www.strato-pro.com/\"/></ruleset>", "<ruleset name=\"STSDB.com (partial)\" f=\"STSDB.com.xml\"><rule from=\"^http://acdn\\.stsdb\\.com/\" to=\"https://d3di9a60out49j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SUPERVALU\" default_off=\"failed ruleset test\" f=\"SUPERVALU.xml\"><securecookie host=\"^www\\.supervalu\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?supervalu\\.com/\" to=\"https://www.supervalu.com/\"/></ruleset>", "<ruleset name=\"SURF.nl\" f=\"SURF.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SURFconext.nl\" f=\"SURFconext.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SUSE.com (partial)\" f=\"SUSE.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://suse\\.com/\" to=\"https://www.suse.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SUSE Studio.com (partial)\" f=\"SUSE_Studio.com.xml\"><exclusion pattern=\"^http://susestudio\\.com/forum\"/><securecookie host=\"^\\.susestudio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SV.no\" f=\"SV.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVGOpen\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SVGOpen.xml\"><rule from=\"^http://(?:www\\.)?svgopen\\.org/\" to=\"https://www.svgopen.org/\"/></ruleset>", "<ruleset name=\"SVN Lab\" f=\"SVN-Lab.xml\"><securecookie host=\"^(app|www)\\.svnlab\\.com$\" name=\".+\"/><rule from=\"^http://svnlab\\.com/\" to=\"https://www.svnlab.com/\"/><rule from=\"^http://(app|www)\\.svnlab\\.com/\" to=\"https://$1.svnlab.com/\"/></ruleset>", "<ruleset name=\"Python.org SVN\" platform=\"cacert\" default_off=\"broken\" f=\"SVN.Python.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVT.se (partial)\" f=\"SVT.se.xml\"><securecookie host=\"^ld\\.svt\\.se$\" name=\".*\"/><rule from=\"^http://ld\\.svt\\.se/\" to=\"https://ld.svt.se/\"/></ruleset>", "<ruleset name=\"SWCA.org\" default_off=\"handshake fails\" f=\"SWCA.org.xml\"><securecookie host=\"^\\.swca\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swca\\.org/\" to=\"https://www.swca.org/\"/></ruleset>", "<ruleset name=\"SWISSCEX.com\" default_off=\"connection refused\" f=\"SWISSCEX.com.xml\"><securecookie host=\"^www\\.swisscex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadtwerke München\" f=\"SWM.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SWT.com\" f=\"SWT.com.xml\"><rule from=\"^http://(?:www\\.)?swt\\.com/\" to=\"https://www.swt.com/\"/></ruleset>", "<ruleset name=\"SYW CDN.net\" f=\"SYW_CDN.net.xml\"><rule from=\"^http://(apps|\\d+)\\.sywcdn\\.net/\" to=\"https://$1.sywcdn.net/\"/></ruleset>", "<ruleset name=\"SYX Services (partial)\" f=\"SYX_Services.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"S and S Media.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"S_and_S_Media.com-falsemixed.xml\"><securecookie host=\"^\\.?sandsmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sandsmedia\\.com/(?!file/)\" to=\"https://sandsmedia.com/\"/></ruleset>", "<ruleset name=\"S and S Media.com (partial)\" default_off=\"failed ruleset test\" f=\"S_and_S_Media.com.xml\"><securecookie host=\"^\\.shop\\.sandsmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sandsmedia\\.com/file/\" to=\"https://sandsmedia.com/file/\"/><rule from=\"^http://shop\\.sandsmedia\\.com/\" to=\"https://shop.sandsmedia.com/\"/></ruleset>", "<ruleset name=\"Sabayon.org (partial)\" f=\"Sabayon.org.xml\"><securecookie host=\".*\\.sabayon\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugs|community|forum|lists|packages|pastebin|static|wiki|www)\\.)?sabayon\\.org/\" to=\"https://$1sabayon.org/\"/></ruleset>", "<ruleset name=\"SABnzbd Forums\" default_off=\"failed ruleset test\" f=\"Sabnzbd.xml\"><securecookie host=\"^\\.forums\\.sabnzbd\\.org$\" name=\".*\"/><rule from=\"^http://forums\\.sabnzbd\\.org/\" to=\"https://forums.sabnzbd.org/\"/></ruleset>", "<ruleset name=\"Sabre Hospitality Solutions (partial)\" f=\"Sabre_Hospitality_Solutions.xml\"><securecookie host=\"^\\.gatag\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sac.se\" platform=\"mixedcontent\" f=\"Sac.se.xml\"><rule from=\"^http://(?:www\\.)?sac\\.se/\" to=\"https://www.sac.se/\"/></ruleset>", "<ruleset name=\"The Sacramento Bee (partial)\" f=\"Sacramento_Bee.xml\"><securecookie host=\"^circulationportal\\.sacbee\\.com$\" name=\".+\"/><rule from=\"^http://circulationportal\\.sacbee\\.com/\" to=\"https://circulationportal.sacbee.com/\"/></ruleset>", "<ruleset name=\"Sacred Crystal Singing Bowls.net\" f=\"Sacred_Crystal_Singing_Bowls.net.xml\"><securecookie host=\"^www\\.sacredcrystalsingingbowls\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sacredcrystalsingingbowls\\.net/\" to=\"https://www.sacredcrystalsingingbowls.net/\"/></ruleset>", "<ruleset name=\"Sade.com\" f=\"Sade.com.xml\"><securecookie host=\"^www\\.sade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SadeceHosting.com\" f=\"SadeceHosting.com.xml\"><securecookie host=\"^(?:www)?\\.sadecehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safari Books Online.com (partial)\" f=\"SafariBooksOnline.xml\"><securecookie host=\"(?:ssl|\\.?www)\\.safaribooksonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safari Flow.com (partial)\" default_off=\"missing certificate chain\" f=\"Safari_Flow.com.xml\"><securecookie host=\"^\\.?www\\.safariflow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safe-In-Cloud.com\" f=\"Safe-In-Cloud.com.xml\"><securecookie host=\"^(?:www\\.)?safe-in-cloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safe-mail.net\" f=\"Safe-mail.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SafeAssign.com\" f=\"SafeAssign.xml\"><rule from=\"^http://(?:www\\.)?safeassign\\.com/\" to=\"https://safeassign.blackboard.com/\"/></ruleset>", "<ruleset name=\"SafeNet-Inc.com (partial)\" f=\"SafeNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?safenet-inc\\.com/+(?!favicon\\.ico|uploadedFiles/|uploadedImages/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SafeSource.org.nz\" f=\"SafeSource.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safe Hub Collective.org (partial)\" f=\"Safe_Hub_Collective.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"safebilling.com\" f=\"Safebilling.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"safecharge247.com\" default_off=\"failed ruleset test\" f=\"Safecharge247.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safecount\" default_off=\"broken\" f=\"Safecount.xml\"><rule from=\"^http://(?:www\\.)?safecount\\.net/\" to=\"https://safecount.net/\"/></ruleset>", "<ruleset name=\"Safelinking.net\" f=\"Safelinking.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safello.com\" f=\"Safello.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safercar.gov (partial)\" f=\"Safercar.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safeshepherd.com\" f=\"Safeshepherd.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.safeshepherd\\.com/\" to=\"https://safeshepherd.wpengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saga Group\" f=\"Saga-Group.xml\"><securecookie host=\"^.*\\.saga\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?saga\\.co\\.uk/\" to=\"https://www.saga.co.uk/\"/><rule from=\"^http://travel\\.saga\\.co\\.uk/(favicon\\.ico|holidays/(medialibrary|[sS]tyles)/|images/firebird/)\" to=\"https://travel.saga.co.uk/$1\"/></ruleset>", "<ruleset name=\"Sage (partial)\" f=\"Sage.xml\"><securecookie host=\"^(?:customerservices|live)\\.sagepay\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sagepay\\.com/(misc/|(modul|sit)es/)\" to=\"https://www.sagepay.com/$1\"/><rule from=\"^http://(customerservices|live|support|test)\\.sagepay\\.com/\" to=\"https://$1.sagepay.com/\"/></ruleset>", "<ruleset name=\"Sagemath.org\" default_off=\"failed ruleset test\" f=\"Sagemath.org.xml\"><rule from=\"^http://cloud\\.sagemath\\.org/\" to=\"https://cloud.sagemath.org/\"/><rule from=\"^http://sagecell\\.sagemath\\.org/\" to=\"https://sagecell.sagemath.org/\"/></ruleset>", "<ruleset name=\"Sagernotebook.com\" default_off=\"failed ruleset test\" f=\"Sagernotebook.com.xml\"><rule from=\"^http://(?:www\\.)?sagernotebook\\.com/\" to=\"https://www.sagernotebook.com/\"/></ruleset>", "<ruleset name=\"SailfishOS.org\" f=\"SailfishOS.org.xml\"><rule from=\"^http://(?:(lists\\.)|www\\.)?sailfishos\\.org/\" to=\"https://$1sailfishos.org/\"/></ruleset>", "<ruleset name=\"Sailthru Horizon\" f=\"Sailthru-Horizon.xml\"><rule from=\"^http://ak(2)?\\.sail-horizon\\.com/\" to=\"https://ak$1.sail-horizon.com/\"/><rule from=\"^http://cdn\\.sail-horizon\\.com/\" to=\"https://d1gp8joe0evc8s.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sailthru.com\" f=\"Sailthru.xml\"><exclusion pattern=\"^http://me\\.sailthru\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://sailthru\\.com/\" to=\"https://www.sailthru.com/\"/><rule from=\"^http://me\\.sailthru\\.com/+(?:\\?.*)?$\" to=\"https://www.sailthru.com/\"/><rule from=\"^http://me\\.sailthru\\.com/\" to=\"https://na-sj08.marketo.com/\"/><rule from=\"^http://media\\.sailthru\\.com/\" to=\"https://d1t6td7a2qcurl.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sainsburys.co.uk\" f=\"Sainsburys.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saintaardvarkthecarpeted.com\" f=\"Saintaardvarkthecarpeted.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sakura.ne.jp (partial)\" default_off=\"breaks stylesheets\" f=\"Sakura.ne.jp.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaleCycle (partial)\" f=\"SaleCycle.xml\"><securecookie host=\"^platform(?:-staging)?\\.salecycle\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|platform)(?:-staging)?|reports)\\.salecycle\\.com/\" to=\"https://$1.salecycle.com/\"/></ruleset>", "<ruleset name=\"Salesforce.com clients\" default_off=\"mismatch\" f=\"Salesforce.com-clients.xml\"><rule from=\"^http://help\\.grooveshark\\.com/customer/portal/attachments/\" to=\"https://help.grooveshark.com/customer/portal/attachments/\"/></ruleset>", "<ruleset name=\"Salesforce.com (partial)\" f=\"Salesforce.com.xml\"><securecookie host=\"^(?:.*\\.)?(?:developer|sales)?force\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(developer)?force\\.com/\" to=\"https://www.$1force.com/\"/><rule from=\"^http://(blogs|events|wiki|workbench)\\.developerforce\\.com/\" to=\"https://$1.developerforce.com/\"/><rule from=\"^http://boards\\.developerforce\\.com/\" to=\"https://sforce.i.lithium.com/\"/><rule from=\"^http://(cms-stg|c\\.\\w\\w\\d+\\.content|[\\w-]+\\.secure|www2|www-blitz0\\d)\\.force\\.com/\" to=\"https://$1.force.com/\"/><rule from=\"^http://sites\\.force\\.com/appexchange/home$\" to=\"https://appexchange.salesforce.com/\"/><rule from=\"^http://((?:ap|appexchange(?:jp)?|developer|emea|help|lct|login|\\w{2,4}\\d+(?:-api)?|[\\w-]+\\.my|omtr2\\.partners|ssl|store|success|trust|www)\\.)?salesforce\\.com/\" to=\"https://$1salesforce.com/\"/><rule from=\"^http://partners\\.salesforce\\.com/(?:[^\\?]*)(\\?.*)$\" to=\"https://www.salesforce.com/partners/$1\"/><rule from=\"^http://(secure2?|www2?)\\.sfdcstatic\\.com/\" to=\"https://$1.sfdcstatic.com/\"/></ruleset>", "<ruleset name=\"Salesforce Live Agent.com\" f=\"Salesforce_Live_Agent.com.xml\"><securecookie host=\"^(?:\\w+\\.)?la\\w{3}\\.salesforceliveagent\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?la(\\w{3})\\.salesforceliveagent\\.com/\" to=\"https://$1la$2.salesforceliveagent.com/\"/></ruleset>", "<ruleset name=\"Salk Institute\" f=\"Salk_Institute.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sally Beauty.com (partial)\" platform=\"mixedcontent\" f=\"Sally_Beauty.com.xml\"><securecookie host=\"^www\\.sallybeauty\\.com$\" name=\".+\"/><rule from=\"^http://sallybeauty\\.com/\" to=\"https://www.sallybeauty.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salon.com\" f=\"Salon.xml\"><securecookie host=\"^\\.salon\\.com$\" name=\".+\"/><rule from=\"^http://salon\\.com/\" to=\"https://www.salon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salsa Labs\" f=\"Salsa-Labs.xml\"><securecookie host=\"^(?:.*\\.)?(?:salsalabs|wiredforchange)\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?(salsalabs|wiredforchange)\\.com/\" to=\"https://$1$2.com/\"/><rule from=\"^http://(?:www\\.)?salsacommons\\.org/+(?=$|\\?)\" to=\"https://www.salsalabs.com/commons\"/><rule from=\"^http://(?:www\\.)?salsacommons\\.org/+\" to=\"https://www.salsalabs.com/\"/></ruleset>", "<ruleset name=\"SaltStack.com\" f=\"SaltStack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salvation Army USA.org (partial)\" f=\"Salvation_Army_USA.org.xml\"><securecookie host=\"^donate\\.salvationarmyusa\\.org$\" name=\".+\"/><rule from=\"^http://donate\\.salvationarmyusa\\.org/\" to=\"https://donate.salvationarmyusa.org/\"/></ruleset>", "<ruleset name=\"SamKnows (partial)\" f=\"SamKnows.xml\"><securecookie host=\"^www\\.samknows\\.(?:com|eu)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samknows\\.com/\" to=\"https://www.samknows.com/\"/><rule from=\"^http://(www\\.)?samknows\\.eu/\" to=\"https://$1samknows.eu/\"/></ruleset>", "<ruleset name=\"Sam Gentle.com\" f=\"Sam_Gentle.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sam Harris.org (partial)\" f=\"Sam_Harris.org.xml\"><exclusion pattern=\"^http://www\\.samharris\\.org/+(?!\\?css=site/|cache/|css/|favicon\\.ico|fonts/|images/|store(?:$|[?/])|themes/)\"/><securecookie host=\"^\\.samharris\\.org$\" name=\"^(?:__cfduid|exp_last_activity|exp_tracker|mc)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sam Whited.com\" default_off=\"failed ruleset test\" f=\"Sam_Whited.com.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?samwhited\\.com/\" to=\"https://$1samwhited.com/\"/></ruleset>", "<ruleset name=\"Samba.org\" f=\"Samba.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sam's Software & Consulting (partial)\" f=\"Sams_Software_and_Consulting.xml\"><exclusion pattern=\"^http://(?:www\\.)?samssoftware.com.au/(?!contact-us\\.html|images/|index\\.php\\?dispatch=(?:auth\\.|checkout\\.cart|profiles\\.add)|skins/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"samsclass.info (partial)\" f=\"Samsclass.info.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Samsung.com (false MCB)\" platform=\"mixedcontent\" f=\"Samsung-falsemixed.xml\"><rule from=\"^http://link\\.samsung\\.com/\" to=\"https://link.samsung.com/\"/></ruleset>", "<ruleset name=\"Samsung (partial)\" default_off=\"failed ruleset test\" f=\"Samsung.xml\"><exclusion pattern=\"^http://opensource\\.samsung\\.com/(?!community/(?:css/|images/|img2?/|img_model/|js2?/|org\\.ditchnet\\.taglib/|repository/|scmShowFileRevision(?:$|\\?)|stylesheet/|usageStatistics\\.do|wikiTreeMessage(?:$|\\?))|css/|img/|js/)\"/><exclusion pattern=\"^http://shop\\.us\\.samsung\\.com/store\\?[aA]ction=[dD]isplay[dD][rR][cC]art[sS]ummary\"/><exclusion pattern=\"^http://www\\.samsung\\.com/us/(?:support/|function/)\"/><securecookie host=\"^\\.samsung\\.cn$\" name=\".+\"/><securecookie host=\"^(?!shop\\.us\\.).*\\.samsung\\.com$\" name=\".+\"/><rule from=\"^http://(img\\.|pub\\.)?content\\.samsumg\\.cn/\" to=\"https://$1content.samsung.cn/\"/><rule from=\"^http://(?:www\\.)?samsung\\.com/\" to=\"https://www.samsung.com/\"/><rule from=\"^http://chaton\\.samsung\\.com/\" to=\"https://web.samsungchaton.com/\"/><rule from=\"^http://nmetrics\\.samsung\\.com/\" to=\"https://samsung-com.112.2o7.net/\"/><rule from=\"^http://((?:stg-)?account|allshareplay|apps|(?:img\\.|pub\\.)?content|findmymobile2?|images|opensource|secureus|smetrics|smm|support-cn|us|shop\\.us)\\.samsung\\.com/\" to=\"https://$1.samsung.com/\"/><rule from=\"^http://(www\\.)?samsung\\.(?:com\\.)?cn/\" to=\"https://$1samsung.com.cn/\"/></ruleset>", "<ruleset name=\"Samsung Apps.com (partial)\" f=\"Samsung_Apps.xml\"><securecookie host=\"^(?:.*\\.)?samsungapps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samsungapps\\.com/\" to=\"https://www.samsungapps.com/\"/><rule from=\"^http://(\\w\\w-odc|mkt-odc|tv)\\.samsungapps\\.com/\" to=\"https://$1.samsungapps.com/\"/></ruleset>", "<ruleset name=\"Samsung Direct.com (partial)\" default_off=\"failed ruleset test\" f=\"Samsung_Direct.xml\"><rule from=\"^http://www\\.samsungdirect\\.com/(?=\\w\\w/(?:cart|create_account|login)(?:$|[?/])|css/|favicon\\.ico|images/|js/|media/)\" to=\"https://www.samsungdirect.com/\"/></ruleset>", "<ruleset name=\"Samsung Knox.com (partial)\" f=\"Samsung_Knox.com.xml\"><rule from=\"^http://(?:www\\.)?samsungknox\\.com/\" to=\"https://www.samsungknox.com/\"/><rule from=\"^http://cdn\\.samsungknox\\.com/\" to=\"https://cdn.samsungknox.com/\"/></ruleset>", "<ruleset name=\"Samsung LFD\" default_off=\"failed ruleset test\" f=\"Samsung_LFD.xml\"><securecookie host=\"^www\\.samsunglfd\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samsunglfd\\.com/\" to=\"https://www.samsunglfd.com/\"/></ruleset>", "<ruleset name=\"Samsung Techwin\" f=\"Samsung_Techwin.xml\"><securecookie host=\"^www\\.samsungtechwin\\.co\\.kr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samsungtechwin\\.co\\.kr/\" to=\"https://www.samsungtechwin.co.kr/\"/></ruleset>", "<ruleset name=\"Samsung.net\" f=\"Samsung_mySingle.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"San Diego Reader (partial)\" default_off=\"failed ruleset test\" f=\"San-Diego-Reader.xml\"><rule from=\"^http://hummingbird\\.sandiegoreader\\.com/\" to=\"https://hummingbird.sandiegoreader.com/\"/></ruleset>", "<ruleset name=\"The San Francisco Marathon (partial)\" f=\"San_Francisco_Marathon.xml\"><securecookie host=\"^registration\\.thesfmarathon\\.com$\" name=\".+\"/><rule from=\"^http://(registration|sync)\\.thesfmarathon\\.com/\" to=\"https://$1.thesfmarathon.com/\"/></ruleset>", "<ruleset name=\"Sanalika (partial)\" f=\"Sanalika.xml\"><securecookie host=\"^fb\\.sanalika\\.com$\" name=\".+\"/><rule from=\"^http://(cdn4|fb|fs)\\.sanalika\\.com/\" to=\"https://$1.sanalika.com/\"/></ruleset>", "<ruleset name=\"Sanalmarket.com.tr\" platform=\"mixedcontent\" f=\"Sanalmarket.xml\"><securecookie host=\"^((www)?\\.)?sanalmarket\\.com\\.tr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandbag (partial)\" default_off=\"failed ruleset test\" f=\"Sandbag.xml\"><rule from=\"^https?://s3\\.sandbaguk\\.com\\.s3\\.amazonaws\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/s3.sandbaguk.com/\"/><rule from=\"^http://secured\\.sandbag\\.uk\\.com/\" to=\"https://secured.sandbag.uk.com/\"/></ruleset>", "<ruleset name=\"Sandeen.net\" default_off=\"failed ruleset test\" f=\"Sandeen.net.xml\"><rule from=\"^http://((?:calendar|idisk|mail|www)\\.)?sandeen\\.net/\" to=\"https://$1sandeen.net/\"/></ruleset>", "<ruleset name=\"Sandia.gov (partial)\" f=\"Sandia-National-Laboratories.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sandilands.info\" f=\"Sandilands.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandofsky.com\" f=\"Sandofsky.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandstorm-Media.de\" f=\"Sandstorm-Media.de.xml\"><rule from=\"^http://www\\.sandstorm-media\\.de/\" to=\"https://sandstorm-media.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandstorm.de\" f=\"Sandstorm.de.xml\"><securecookie host=\"^\\.sandstorm\\.de$\" name=\".+\"/><rule from=\"^http://www\\.sandstorm\\.de/\" to=\"https://sandstorm-media.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandstorm.io\" f=\"Sandstorm.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandvine.com\" f=\"Sandvine.xml\"><securecookie host=\"\\.\" name=\"^_gat?$\"/><securecookie host=\"\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanitarium.se\" default_off=\"failed ruleset test\" f=\"Sanitarium.se.xml\"><rule from=\"^http://sanitarium\\.se/\" to=\"https://sanitarium.se/\"/><rule from=\"^http://www\\.sanitarium\\.se/\" to=\"https://sanitarium.se/\"/></ruleset>", "<ruleset name=\"Sankaty Advisors\" f=\"Sankaty_Advisors.xml\"><securecookie host=\"^(?:.*\\.)?sankaty\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?sankaty\\.com/\" to=\"https://$1sankaty.com/\"/><rule from=\"^http://(?:www\\.)?sankatyadvisors\\.com/\" to=\"https://www.sankaty.com/\"/></ruleset>", "<ruleset name=\"Sanoma.com\" f=\"Sanoma.com.xml\"><securecookie host=\"^(?:w*\\.)?sanoma\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanoma.fi\" f=\"Sanoma.fi.xml\"><securecookie host=\"^\\.sanoma\\.fi$\" name=\"^(?:evid|evid-synced|v1st)$\"/><securecookie host=\"^sat\\.sanoma\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sanoma\\.fi/.*\" to=\"https://www.sanoma.com/fi\"/><rule from=\"^http://(admp-tc|analytics|cts|sat)\\.sanoma\\.fi/\" to=\"https://$1.sanoma.fi/\"/></ruleset>", "<ruleset name=\"Santa Clara University (problematic)\" default_off=\"expired\" f=\"Santa_Clara_University-problematic.xml\"><exclusion pattern=\"^http://digitalcommons\\.law\\.scu\\.edu/assets/\"/><rule from=\"^http://(astra|digitalcommons\\.law)\\.scu\\.edu/\" to=\"https://$1.scu.edu/\"/></ruleset>", "<ruleset name=\"Santa Clara University (partial)\" f=\"Santa_Clara_University.xml\"><securecookie host=\"^\\w.*\\.scu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:angel|feportmgmt|gw|it|quarantine|www)\\.)?scu\\.edu/\" to=\"https://$1scu.edu/\"/><rule from=\"^http://(www\\.)?(alumnidirectory|sculib)\\.scu\\.edu/\" to=\"https://$1$2.scu.edu/\"/><rule from=\"^http://digitalcommons\\.law\\.scu\\.edu/assets/\" to=\"https://dcsantaclara.bepress.com/assets/\"/><rule from=\"^http://l(?:aw|ib)guides\\.scu\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/></ruleset>", "<ruleset name=\"Santander.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Santander.co.uk.xml\"><securecookie host=\"^(?:apply|business|retail)\\.santander\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?santander\\.co\\.uk/\" to=\"https://www.santander.co.uk/\"/><rule from=\"^http://(apply(?:online)?|bbsavings|(?:desk\\.)?business|onlinesalessavings|retail2?)\\.santander\\.co\\.uk/\" to=\"https://$1.santander.co.uk/\"/><rule from=\"^http://products\\.santander\\.co\\.uk/.*\" to=\"https://www.santander.co.uk/\"/></ruleset>", "<ruleset name=\"Santander BillPayment.co.uk\" f=\"Santander_BillPayment.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://santanderbillpayment\\.co\\.uk/+\\??$\" to=\"https://www.santanderbillpayment.co.uk/\"/><rule from=\"^http://santanderbillpayment\\.co\\.uk/[^?]*\" to=\"https://www.santanderbillpayment.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Santoku-Linux.com\" f=\"Santoku-Linux.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanworks\" default_off=\"connection reset\" f=\"Sanworks.xml\"><securecookie host=\"^\\.sanwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sapato (partial)\" f=\"Sapato.xml\"><rule from=\"^http://(?:www\\.)?sapato\\.ru/(bitrix|css|images|personal|upload)/\" to=\"https://www.sapato.ru/$1/\"/><rule from=\"^http://([\\w\\-]+)\\.sapato\\.ru/(bitrix|css|images|upload)/\" to=\"https://$1.sapato.ru/$2/\"/><rule from=\"^http://cssjs\\.zapato\\.ru/\" to=\"https://cssjs.sapato.ru/\"/><rule from=\"^http://st\\.zapato\\.ru/\" to=\"https://stssl.sapato.ru/\"/></ruleset>", "<ruleset name=\"Sape.ru (partial)\" f=\"Sape.xml\"><securecookie host=\"^.*\\.sape\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sape\\.ru/\" to=\"https://www.sape.ru/\"/><rule from=\"^http://wizard\\.sape\\.ru/+\" to=\"https://www.seowizard.ru/\"/><rule from=\"^http://(action|advisor|articles|auth|help|ideas|passport|pr|static)\\.sape\\.ru/\" to=\"https://$1.sape.ru/\"/></ruleset>", "<ruleset name=\"Sapo.pt\" default_off=\"no response\" f=\"Sapo.pt.xml\"><securecookie host=\"^(?:login|pub)\\.sapo\\.pt$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sapo\\.pt/(css/|imgs/|pub/|widgets/)\" to=\"https://www.sapo.pt/$1\"/><rule from=\"^http://(login|pub|pubimgs)\\.sapo\\.pt/\" to=\"https://$1.sapo.pt/\"/><rule from=\"^http://h\\.s\\.sl\\.pt/css-pt-2011/\" to=\"https://www.sapo.pt/css/\"/><rule from=\"^http://h\\.s\\.sl\\.pt/imgs/(?:v12/)?\" to=\"https://www.sapo.pt/imgs/\"/></ruleset>", "<ruleset name=\"Sapphire Forum.com\" f=\"Sapphire_Forum.com.xml\"><securecookie host=\"^www\\.sapphireforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sarava.org (partial)\" f=\"Sarava.org.xml\"><securecookie host=\".*\\.sarava\\.org$\" name=\".+\"/><rule from=\"^http://((?:agendador|anotador|calendario|colador|e|escritorio|git|irc|keyringer|lembrador|manual|padrao|policy|protocolos|rectech|rhatto|rsp|seguranca|sit|sit2012|wiki|www)\\.)?sarava\\.org/\" to=\"https://$1sarava.org/\"/></ruleset>", "<ruleset name=\"Sarenza (partial)\" f=\"Sarenza.xml\"><rule from=\"^http://eulerian\\.sarenza\\.com/\" to=\"https://eulerian.sarenza.com/\"/><rule from=\"^http://azure\\.sarenza\\.net/\" to=\"https://az104596.vo.msecnd.net/\"/><rule from=\"^http://static1\\.sarenza\\.net/\" to=\"https://az104596.vo.msecnd.net/static/\"/></ruleset>", "<ruleset name=\"SatoshiDice\" default_off=\"failed ruleset test\" f=\"SatoshiDice.xml\"><rule from=\"^http://(?:www\\.)?satoshidice\\.com/\" to=\"https://d2r33zdvjxn4mg.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SauceNAO.com\" f=\"SauceNAO.com.xml\"><securecookie host=\"^saucenao\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sauce Labs\" f=\"Sauce_Labs.xml\"><securecookie host=\"^saucelabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaucyTime.com (partial)\" f=\"SaucyTime.com.xml\"><securecookie host=\"^www\\.saucytime\\.com$\" name=\".+\"/><rule from=\"^http://saucytime\\.com/\" to=\"https://www.saucytime.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saudia Airlines (partial)\" f=\"SaudiAirlines.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saudi Government\" default_off=\"failed ruleset test\" f=\"SaudiGovernment.xml\"><rule from=\"^http://(?:www\\.)?mol\\.gov\\.sa/\" to=\"https://mol.gov.sa/\"/><rule from=\"^http://(?:www\\.)?(gosi|moi|pv|saudi)\\.gov\\.sa/\" to=\"https://www.$1.gov.sa/\"/></ruleset>", "<ruleset name=\"saurik (partial)\" f=\"Saurik.xml\"><rule from=\"^http://c(ache|ydia)\\.saurik\\.com/\" to=\"https://c$1.saurik.com/\"/></ruleset>", "<ruleset name=\"Savana.cz\" f=\"Savana.cz.xml\"><securecookie host=\"^(?:webcontrol|www)\\.savana\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Savannah Fund\" default_off=\"mismatch\" f=\"Savannah-Fund.xml\"><securecookie host=\"^www\\.savannah\\.vc$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?savannah\\.vc/\" to=\"https://www.savannah.vc/\"/></ruleset>", "<ruleset name=\"Save-Notes.com\" default_off=\"breaks background\" f=\"Save-Notes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveCrypto.org\" f=\"SaveCrypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveDeo.com\" f=\"SaveDeo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?savedeo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Save The Link.org\" f=\"Save_The_Link.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Save the Children.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"Save_the_Children.org.uk-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?savethechildren\\.org\\.uk/\" to=\"https://www.savethechildren.org.uk/\"/><rule from=\"^http://blogs\\.savethechildren\\.org\\.uk/\" to=\"https://blogs.savethechildren.org.uk/\"/></ruleset>", "<ruleset name=\"Save the Children.org.uk (partial)\" f=\"Save_the_Children.org.uk.xml\"><exclusion pattern=\"^http://blogs\\.savethechildren\\.org\\.uk/+(?!shared/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?savethechildren\\.org\\.uk/(?=donate/*(?:$|\\?)|favicon\\.ico|modules/|sites/)\" to=\"https://www.savethechildren.org.uk/\"/><rule from=\"^http://(blogs|secure|shop)\\.savethechildren\\.org\\.uk/\" to=\"https://$1.savethechildren.org.uk/\"/></ruleset>", "<ruleset name=\"Save the Internet.eu\" f=\"Save_the_Internet.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SavvyHawk.com\" default_off=\"failed ruleset test\" f=\"SavvyHawk.com.xml\"><securecookie host=\"^(?:www\\.)?savvyhawk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SavvySME\" f=\"SavvySME.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Say Media (mismatches)\" default_off=\"mismatch\" f=\"Say-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?blogs\\.com/\" to=\"https://blogs.com/\"/></ruleset>", "<ruleset name=\"Say Media\" default_off=\"failed ruleset test\" f=\"Say-Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sbarmen.no (partial)\" f=\"Sbarmen.no.xml\"><securecookie host=\"^(?:www\\.)?sbarmen\\.no$\" name=\".+\"/><rule from=\"^http://sbarmen\\.no/\" to=\"https://www.sbarmen.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sberbank of Russia\" f=\"Sberbank_of_Russia.xml\"><rule from=\"^http://sbi\\.sberbank\\.ru(:9443)?/\" to=\"https://sbi.sberbank.ru:9443/\"/><rule from=\"^https://sbi\\.sberbank\\.ru/\" to=\"https://sbi.sberbank.ru:9443/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sberbankdirect.de\" f=\"Sberbankdirect.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sbucciami.com\" default_off=\"redirects to http\" f=\"Sbucciami.xml\"><securecookie host=\"^(?:\\.?w*)?\\.sbucciami\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScMagazineUS.com\" default_off=\"failed ruleset test\" f=\"ScMagazineUS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scalability.org\" default_off=\"missing certificate chain\" f=\"Scalability.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.scalability\\.org/\" to=\"https://scalability.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scale Engine (partial)\" f=\"Scale-Engine.xml\"><securecookie host=\"^(?:www\\.)?scaleengine\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scaleway.com\" f=\"Scaleway.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scaling Bitcoin.org\" f=\"Scaling_Bitcoin.org.xml\"><securecookie host=\"^(?:www)?\\.scalingbitcoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scamFRAUDalert\" default_off=\"self-signed\" f=\"ScamFRAUDalert.xml\"><securecookie host=\"^www\\.scamfraudalert\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scamfraudalert\\.com/\" to=\"https://www.scamfraudalert.com/\"/></ruleset>", "<ruleset name=\"ScanAlert.com (partial)\" f=\"ScanAlert.xml\"><securecookie host=\"^images\\.scanalert\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScanMyServer.com\" default_off=\"missing certificate chain\" f=\"ScanMyServer.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scanadu.com (partial)\" f=\"Scanadu.com.xml\"><rule from=\"^http://c\\d\\.scanadu\\.com/\" to=\"https://d1scsxe9uoisfa.cloudfront.net/\"/><rule from=\"^http://indiegogo-artwork\\.scanadu\\.com/\" to=\"https://d229l50b5obo41.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Scandinavian Photo\" f=\"Scandinavian_Photo.xml\"><securecookie host=\"^(?:www\\.)?scandinavianphoto\\.(?:fi|se|se)$\" name=\".+\"/><rule from=\"^http://scandinavianphoto\\.(fi|no|se)/\" to=\"https://www.scandinavianphoto.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scania (partial)\" f=\"Scania.xml\"><securecookie host=\"^.+\\.scania\\.com$\" name=\".+\"/><rule from=\"^http://(static|webapp\\d+|www4)\\.scania\\.com/\" to=\"https://$1.scania.com/\"/></ruleset>", "<ruleset name=\"Scanmarker\" default_off=\"failed ruleset test\" f=\"Scanmarker.xml\"><securecookie host=\"^(?:w*\\.)?scanmarker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scanning Pens.co.uk\" default_off=\"failed ruleset test\" f=\"Scanning_Pens.co.uk.xml\"><securecookie host=\"^\\.www\\.scanningpens.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scans.io\" f=\"Scans.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scanscout.com\" f=\"Scanscout.com.xml\"><securecookie host=\"^\\.scanscout\\.com$\" name=\"^(?:o?bsm|uid)\"/><securecookie host=\"^dt\\.scanscout\\.com$\" name=\".+\"/><rule from=\"^http://portal\\.scanscout\\.com/.*\" to=\"https://portal.videohub.tv/vhn\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scene7\" f=\"Scene7.xml\"><securecookie host=\"^www1\\.scene7\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scene7\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.adobe.com/products/scene7.html$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nectarine Demoscene Music\" f=\"SceneMusic.net.xml\"><rule from=\"^http://(?:www\\.)?scenemusic\\.net/\" to=\"https://www.scenemusic.net/\"/></ruleset>", "<ruleset name=\"SceneTap.com\" default_off=\"expired\" f=\"SceneTap.xml\"><securecookie host=\"^(?:.*\\.)?scenetap\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sceper (partial)\" default_off=\"self-signed\" f=\"Sceper.xml\"><securecookie host=\"^sceper\\.ws$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sceper\\.(?:eu|ws)/\" to=\"https://sceper.ws/\"/></ruleset>", "<ruleset name=\"Scepsis\" default_off=\"failed ruleset test\" f=\"Scepsis.xml\"><rule from=\"^http://(?:www\\.)?scepsis\\.ru/\" to=\"https://scepsis.ru/\"/></ruleset>", "<ruleset name=\"Schaaf PC.com\" f=\"Schaaf_PC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schaffner.org\" default_off=\"shows default page\" f=\"Schaffner.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schallert.com\" f=\"Schallert.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sched.org (partial)\" f=\"Sched.org.xml\"><securecookie host=\"^\\.schd\\.ws$\" name=\".+\"/><securecookie host=\"^(?:xenprojectdevelopersummit2014)?\\.sched\\.org$\" name=\".+\"/><rule from=\"^http://(cdn\\.)?schd\\.ws/\" to=\"https://$1schd.ws/\"/><rule from=\"^http://www\\.sch(?:d\\.ws|ed\\.co)/\" to=\"https://sched.org/\"/><rule from=\"^http://((?:static|www|xenprojectdevelopersummit2014)\\.)?sched\\.org/\" to=\"https://$1sched.org/\"/></ruleset>", "<ruleset name=\"ScheduleOnce.com (partial)\" f=\"ScheduleOnce.com.xml\"><securecookie host=\"^www\\.scheduleonce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schetu.net\" f=\"Schetu.net.xml\"><securecookie host=\"^\\.?schetu\\.net$\" name=\".+\"/><rule from=\"^http://schetu\\.net/\" to=\"https://schetu.net/\"/></ruleset>", "<ruleset name=\"Schibsted.no (partial)\" default_off=\"failed ruleset test\" f=\"Schibsted.no.xml\"><securecookie host=\"^mail\\.schibsted\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schibsted (partial)\" f=\"Schibsted.xml\"><securecookie host=\"^\\.?payment\\.schibsted\\.se$\" name=\".+\"/><rule from=\"^http://payment\\.schibsted\\.se/\" to=\"https://payment.schibsted.se/\"/></ruleset>", "<ruleset name=\"Schiphol\" f=\"Schipol.xml\"><securecookie host=\"^www\\.schiphol\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?schiphol\\.nl/\" to=\"https://www.schiphol.nl/\"/></ruleset>", "<ruleset name=\"Schlossberg Store (partial)\" f=\"Schlossberg_Store.xml\"><rule from=\"^http://(?:www\\.)?schlossbergstore\\.com/(css/|(?:Member/Login|order-status)(?:$|\\?|/)|Public/|registry|store_image/|Styles/)\" to=\"https://www.schlossbergstore.com/$2\"/></ruleset>", "<ruleset name=\"Schlumberger\" default_off=\"failed ruleset test\" f=\"Schlumberger.xml\"><securecookie host=\"^(?:www\\.)?slb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schmidtcom.de (partial)\" platform=\"cacert\" f=\"Schmidtcom.de.xml\"><securecookie host=\"^config\\.schmidtcom\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schneider-Electric.com (partial)\" f=\"Schneider-Electric.com.xml\"><securecookie host=\"^\\.schneider-electric\\.com$\" name=\"^(?:__utm\\w|xtvrn)$\"/><rule from=\"^http://(?:www\\.)?schneider-electric\\.com/(download/|navigation/|(?:product|solution)s(?:$|[?/])|resource/|site/(?:home|marketing_center)/(?:image|j)s/|site/tasks/sites/|stat/)\" to=\"https://www.schneider-electric.com/$1\"/></ruleset>", "<ruleset name=\"Schneider Kreuznach (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Schneider-Kreuznach-mismatches.xml\"><securecookie host=\"^\\w\\.pentacon\\.de$\" name=\".*\"/><securecookie host=\"^praktica\\.de$\" name=\".+\"/><rule from=\"^http://pentacon(?:-dresden)\\.de/\" to=\"https://www.pentacon.de/\"/><rule from=\"^http://(\\w)\\.pentacon(?:-dresden)\\.de/\" to=\"https://$1.pentacon.de/\"/><rule from=\"^http://(?:www\\.)?praktica\\.de/\" to=\"https://praktica.de/\"/></ruleset>", "<ruleset name=\"Schneider Kreuznach (partial)\" f=\"Schneider-Kreuznach.xml\"><securecookie host=\"^www\\.schneideroptics\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?schneideroptics\\.com/\" to=\"https://www.schneideroptics.com/\"/></ruleset>", "<ruleset name=\"Schneier.com\" f=\"Schneier-on-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SchnellNo.de (partial)\" f=\"SchnellNo.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScholarOne (partial)\" f=\"ScholarOne.xml\"><securecookie host=\"^mc\\.manuscriptcentral\\.com$\" name=\".*\"/><rule from=\"^http://mc\\.manuscriptcentral\\.com/\" to=\"https://mc.manuscriptcentral.com/\"/></ruleset>", "<ruleset name=\"SchoolForge\" f=\"SchoolForge.xml\"><securecookie host=\"(^|\\.)schoolforge\\.net$\" name=\".+\"/><rule from=\"^http://www\\.schoolforge\\.net/\" to=\"https://schoolforge.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SchoolLoop (Partial)\" f=\"SchoolLoop.xml\"><rule from=\"^http://(lhs-sfusd-ca|carlsbadhs|rchs-cjuhsd-ca|cunha|phs-pusd-ca|homestead)\\.schoolloop\\.com/\" to=\"https://$1.schoolloop.com/\"/></ruleset>", "<ruleset name=\"SchooltoPrison.org\" default_off=\"connection refused\" f=\"SchooltoPrison.org.xml\"><rule from=\"^http://(?:www\\.)?schooltoprison\\.org/\" to=\"https://www.schooltoprison.org/\"/></ruleset>", "<ruleset name=\"Schottenland (partial)\" f=\"Schottenland.xml\"><rule from=\"^http://na\\.schottenland\\.de/\" to=\"https://na.schottenland.de/\"/></ruleset>", "<ruleset name=\"SchuelerVZ.net\" default_off=\"Certificate mismatch\" f=\"SchuelerVZ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schuilenburg.org (partial)\" default_off=\"failed ruleset test\" f=\"Schuilenburg.org.xml\"><securecookie host=\"^(?:www\\.)?schuilenburg\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schulte.org\" f=\"Schulte.org.xml\"><rule from=\"^http://((?:exchange|exchange2013|noc|webmail|windows2012r2|www)\\.)?schulte\\.org/\" to=\"https://$1schulte.org/\"/></ruleset>", "<ruleset name=\"Schwab.com\" f=\"Schwab.com.xml\"><securecookie host=\"^(?:client|\\.eac)?\\.schwab\\.com$\" name=\".+\"/><rule from=\"^http://((?:client|content|eac|www)\\.)?schwab\\.com/\" to=\"https://$1schwab.com/\"/></ruleset>", "<ruleset name=\"Schwab CDN.com\" f=\"Schwab_CDN.com.xml\"><securecookie host=\"^client\\.schwab\\.com$\" name=\".+\"/><rule from=\"^http://(client|www)\\.schwabcdn\\.com/\" to=\"https://$1.schwabcdn.com/\"/></ruleset>", "<ruleset name=\"Schwab Plan.com\" f=\"Schwab_Plan.com.xml\"><rule from=\"^http://(?:www\\.)?schwabplan\\.com/\" to=\"https://www.schwabplan.com/\"/></ruleset>", "<ruleset name=\"Schwartz Media.com.au (partial)\" f=\"Schwartz_Media.com.au.xml\"><securecookie host=\"^\\.schwartzmedia\\.com\\.au$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciPy.org\" f=\"SciPy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciVerse (partial)\" platform=\"mixedcontent\" f=\"SciVerse.xml\"><exclusion pattern=\"^http://(?:www\\.)?sciencedirect\\.com/(?:$|gadgetservices/)\"/><exclusion pattern=\"^http://www\\.(?:applications|hub)\\.sciverse\\.com/(?:$|action|gadgetservices)\"/><securecookie host=\"^.*\\.sciencedirect\\.com$\" name=\".*\"/><securecookie host=\"^\\.sciverse\\.com$\" name=\".*\"/><rule from=\"^http://sciencedirect\\.com/\" to=\"https://www.sciencedirect.com/\"/><rule from=\"^http://(binary-services|pdn|sdauth|www)\\.sciencedirect\\.com/\" to=\"https://$1.sciencedirect.com/\"/><rule from=\"^http://acw\\.sciverse\\.com/\" to=\"https://acw.sciverse.com/\"/><rule from=\"^http://(?:www\\.)?(applications|hub)\\.sciverse\\.com/\" to=\"https://www.$1.sciverse.com/\"/></ruleset>", "<ruleset name=\"Science-Alliance.de (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Science-Alliance.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciendeDaily.com (problematic)\" default_off=\"mismatched, self-signed\" f=\"ScienceDaily.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?sciencedaily\\.com/\" to=\"https://www.sciencedaily.com/\"/></ruleset>", "<ruleset name=\"ScienceDaily.com (partial)\" default_off=\"Breaks some images\" f=\"ScienceDaily.com.xml\"><rule from=\"^http://images\\.sciencedaily\\.com/\" to=\"https://d18c4k1slw9ka5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Science Careers.org (partial)\" f=\"Science_Careers.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science News.org\" f=\"Science_News.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science Node.org\" f=\"Science_Node.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sciencemag.org (partial)\" default_off=\"missing certificate chain\" f=\"Sciencemag.org.xml\"><securecookie host=\"^\\.\" name=\"^OAX$\"/><securecookie host=\".+\\.sciencemag\\.org$\" name=\".\"/><rule from=\"^http://sciencemag\\.org/\" to=\"https://www.sciencemag.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scieneo.de\" f=\"Scieneo.de.xml\"><securecookie host=\"^www\\.scieneo\\.de\" name=\".+\"/><rule from=\"^http://scieneo\\.de/\" to=\"https://www.scieneo.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scientific American (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Scientific-American.xml\"><exclusion pattern=\"^http://www\\.scientificamerican\\.com/article/\"/><securecookie host=\"subscribe\\.scientificamerican.com$\" name=\".*\"/><rule from=\"^http://www\\.scientificamerican\\.com/(.+)\\.pagespeed\\..*$\" to=\"https://www.scientificamerican.com/$1\"/><rule from=\"^http://(www\\.)?sciamdigital\\.com/(ax/|(cover)?images/|index\\.cfm\\?fa=Account\\.ViewLogin)/\" to=\"https://$1sciamdigital.com/$2/\"/><rule from=\"^http://www\\.scientificamerican\\.com/assets/css/screen/I\\.([\\w\\-\\.]+)\\.css\\.pagespeed\\.cf\\.\\w+\\.css$\" to=\"https://www.scientificamerican.com/assets/css/screen/$1.css\"/><rule from=\"^http://(?:www\\.)?scientificamerican\\.com/\" to=\"https://www.scientificamerican.com/\"/><rule from=\"^http://subscribe\\.scientificamerican\\.com/\" to=\"https://subscribe.scientificamerican.com/\"/></ruleset>", "<ruleset name=\"Scientific.Net\" default_off=\"mismatch\" f=\"Scientific.Net.xml\"><securecookie host=\"^www\\.scientific\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scientific\\.net/\" to=\"https://www.scientific.net/\"/></ruleset>", "<ruleset name=\"Scientific Linux.org\" f=\"Scientificlinux.org.xml\"><rule from=\"^http://scientificlinux\\.org/\" to=\"https://www.scientificlinux.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scintilla.utwente.nl\" default_off=\"failed ruleset test\" f=\"Scintilla.utwente.xml\"><rule from=\"^http://www\\.scintilla\\.utwente\\.nl/\" to=\"https://www.scintilla.utwente.nl/\"/></ruleset>", "<ruleset name=\"Scoop.co.nz (partial)\" f=\"Scoop.co.nz.xml\"><rule from=\"^http://newsagent\\.scoop\\.co\\.nz/\" to=\"https://newsagent.scoop.co.nz/\"/></ruleset>", "<ruleset name=\"Scoop.it (partial)\" f=\"Scoop.it.xml\"><rule from=\"^http://(?:www\\.)?scoop\\.it/((?:apps|login)(?:$|\\?)|favicon\\.ico|resources/)\" to=\"https://www.scoop.it/$1\"/><rule from=\"^http://img\\.scoop\\.it/\" to=\"https://d1lojpvs1j5ni5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Scooter-Attack.com (partial)\" f=\"Scooter-Attack.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://scooter-attack\\.com/\" to=\"https://www.scooter-attack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scopus\" platform=\"mixedcontent\" f=\"Scopus.xml\"><securecookie host=\"^.*\\.scopus\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scopus\\.com/\" to=\"https://www.scopus.com/\"/><rule from=\"^http://acw\\.scopus\\.com/\" to=\"https://acw.scopus.com/\"/></ruleset>", "<ruleset name=\"Score Restore.com\" f=\"Score_Restore.com.xml\"><securecookie host=\"^(?:w*\\.)?scorerestore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScorecardResearch.com\" f=\"ScorecardResearch.com.xml\"><securecookie host=\"^(?:.*\\.)?scorecardresearch\\.com$\" name=\".+\"/><rule from=\"^http://b\\.scorecardresearch\\.com/\" to=\"https://sb.scorecardresearch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scot Borders.gov.uk\" f=\"Scot_Borders.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotch.io (partial)\" f=\"Scotch.io.xml\"><securecookie host=\"^\\.scotch\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scott Hanselman\" default_off=\"expired\" f=\"Scott-Hanselman.xml\"><securecookie host=\"^www\\.hanselman\\.com$\" name=\".*\"/><rule from=\"^http://(?:m\\.|www\\.)?hanselman\\.com/\" to=\"https://www.hanselman.com/\"/></ruleset>", "<ruleset name=\"Scottbrand.com\" f=\"Scottbrand.com.xml\"><securecookie host=\"^(?:www\\.)?scottbrand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scottevest\" platform=\"mixedcontent\" f=\"Scottevest.xml\"><securecookie host=\"^(?:.+\\.)?scottevest\\.com$\" name=\".*\"/><rule from=\"^http://scottevest\\.com/\" to=\"https://scottevest.com/\"/><rule from=\"^http://www\\.scottevest\\.com/\" to=\"https://www.scottevest.com/\"/></ruleset>", "<ruleset name=\"Scotthelme.co.uk\" f=\"Scotthelme.co.uk.xml\"><securecookie host=\"^(www\\.)?scotthelme\\.co\\.uk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scottish Power (partial)\" f=\"Scottish_Power.xml\"><securecookie host=\"^www\\.scottishpower\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scottishpower\\.co\\.uk/\" to=\"https://www.scottishpower.co.uk/\"/></ruleset>", "<ruleset name=\"Scottish Power Pipe Band\" f=\"Scottish_Power_Pipe_Band.xml\"><securecookie host=\"^www\\.scottishpowerpipeband\\.com$\" name=\".+\"/><rule from=\"^http://www\\.scottishpowerpipeband\\.com/\" to=\"https://www.scottishpowerpipeband.com/\"/></ruleset>", "<ruleset name=\"scottlinux.com\" f=\"Scottlinux.com.xml\"><securecookie host=\"^scottlinux\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scottlinux\\.com/\" to=\"https://scottlinux.com/\"/></ruleset>", "<ruleset name=\"Scrambl.is\" f=\"Scrambl.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scrambl3.com\" f=\"Scrambl3.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scrap Orchard\" f=\"Scrap_Orchard.xml\"><securecookie host=\"^\\.?scraporchard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScraperWiki.com\" f=\"ScraperWiki.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Screen It! Movie Reviews (expired cert)\" default_off=\"Certificate expired\" f=\"Screen-It.xml\"><rule from=\"^http://(?:www\\.)?screenit\\.com/\" to=\"https://www.screenit.com/\"/></ruleset>", "<ruleset name=\"ScreenCraft.org\" f=\"ScreenCraft.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.screencraft\\.org/\" to=\"https://screencraft.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Screen International\" default_off=\"mismatched\" f=\"Screen_International.xml\"><securecookie host=\"^www\\.screendaily\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?screendaily\\.com/\" to=\"https://www.screendaily.com/\"/></ruleset>", "<ruleset name=\"Screenshot.ru (partial)\" default_off=\"mismatched, self-signed\" f=\"Screenshot.ru.xml\"><rule from=\"^http://(?:www\\.)?screenshot\\.ru/(?=favicon\\.ico|images/|public/)\" to=\"https://screenshot.ru/\"/></ruleset>", "<ruleset name=\"Screenshot machine (partial)\" f=\"Screenshot_machine.xml\"><securecookie host=\"^(?:www\\.)?screenshotmachine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScribbleLive.com (false MCB)\" platform=\"mixedcontent\" f=\"ScribbleLive.com-falsemixed.xml\"><exclusion pattern=\"^http://www2\\.scribblelive\\.com/+(?!$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www2\\.scribblelive\\.com/.*\" to=\"https://www.scribblelive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScribbleLive.com (partial)\" f=\"ScribbleLive.com.xml\"><exclusion pattern=\"^http://www2\\.scribblelive\\.com/+(?:\\?.*)?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://help\\.scribblelive\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://scribblelive.zendesk.com/hc$1\"/><rule from=\"^http://www2\\.scribblelive\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scribd.com (partial)\" f=\"Scribd.com.xml\"><exclusion pattern=\"^http://www\\.scribd\\.com/doc(?:$|[?/])\"/><securecookie host=\"^\\.scribdassets\\.com$\" name=\"^scribd_ubtc$\"/><rule from=\"^http://html\\.scribd\\.com/\" to=\"https://html.scribassets.com/\"/><rule from=\"^http://img\\.scribd\\.com/\" to=\"https://s3.amazonaws.com/img.scribd.com/\"/><rule from=\"^http://s\\.scribd\\.com/+\" to=\"https://www.scribd.com/\"/><rule from=\"^http://support\\.scribd\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://assets.zendesk.com/\"/><rule from=\"^http://((?:fonts|htmlcdn|rat|rs\\d?|www)\\.)?scribd\\.com/\" to=\"https://$1scribd.com/\"/><rule from=\"^http://img(\\d)\\.scribdassets\\.com/\" to=\"https://imgv2-$1.scribdassets.com/\"/><rule from=\"^http://(fonts\\d|html\\d?|htmlimg\\d|imgv2|imgv2-\\d|imgv2-\\d-f|s\\d|s\\d-f)\\.scribdassets\\.com/\" to=\"https://$1.scribdassets.com/\"/></ruleset>", "<ruleset name=\"Scribit (partial)\" f=\"Scribit.xml\"><rule from=\"^http://(?:www\\.)?scribit\\.com/app$\" to=\"https://www.scribit.com/app/\"/><rule from=\"^http://(?:www\\.)?scribit\\.com/app/\" to=\"https://www.scribit.com/app/\"/></ruleset>", "<ruleset name=\"Scribol (partial)\" f=\"Scribol.xml\"><rule from=\"^http://images\\.scribol\\.com/\" to=\"https://dmgyobx0feqxw.cloudfront.net/\"/><rule from=\"^http://static\\.scribol\\.com/\" to=\"https://d25h0msi7seflc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Scribus\" default_off=\"self-signed\" f=\"Scribus.xml\"><exclusion pattern=\"^http://lists\\.\"/><securecookie host=\".*\\.scribus\\.net$\" name=\".*\"/><rule from=\"^http://scribus\\.net/\" to=\"https://www.scribus.net/\"/><rule from=\"^http://(\\w+)\\.scribus\\.net/\" to=\"https://$1.scribus.net/\"/></ruleset>", "<ruleset name=\"Scripps Research Institute\" f=\"Scripps_Research_Institute.xml\"><rule from=\"^http://(admissions\\.|education\\.|vpn\\.|www\\.)?scripps\\.edu/\" to=\"https://$1scripps.edu/\"/></ruleset>", "<ruleset name=\"ScriptObservatory.org\" f=\"ScriptObservatory.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScriptSource (partial)\" f=\"ScriptSource.xml\"><rule from=\"^http://(www\\.)?scriptsource\\.org/cms/(assets/|local/|scripts/(?:page\\.php\\?item_id=(?:login_page|registration_form)|render_graphic\\.php)|sites/)\" to=\"https://$1scriptsource.org/cms/$2\"/></ruleset>", "<ruleset name=\"ScriptFodder\" f=\"Scriptfodder.com.xml\"><rule from=\"^http://cdn\\.scriptfodder\\.com/\" to=\"https://scriptfodder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scripting News (partial)\" f=\"Scripting-News.xml\"><rule from=\"^http://static\\.scripting\\.com/\" to=\"https://s3.amazonaws.com/static.scripting.com/\"/></ruleset>", "<ruleset name=\"scriptjunkie.us (partial)\" f=\"Scriptjunkie.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scriptlogic.com (partial)\" f=\"Scriptlogic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scriptmp3.com\" default_off=\"self-signed\" f=\"Scriptmp3.com.xml\"><rule from=\"^http://(?:www\\.)?scriptmp3\\.com/\" to=\"https://scriptmp3.com/\"/></ruleset>", "<ruleset name=\"Scriptura Engage.com\" f=\"Scriptura_Engage.com.xml\"><securecookie host=\"^(?:www\\.)?scripturaengage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scrypt.CC\" f=\"Scrypt.CC.xml\"><securecookie host=\"^\\.?scrypt\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scsstatic.ch\" f=\"Scsstatic.ch.xml\"><rule from=\"^http://www\\.(res[12]\\.)?scsstatic\\.ch/\" to=\"https://www.$1scsstatic.ch/\"/></ruleset>", "<ruleset name=\"Scubbly (partial)\" f=\"Scubbly.xml\"><rule from=\"^http://(www\\.)?scubbly\\.com/(bot-trap|css|images|js)/\" to=\"https://$1scubbly.com/$2/\"/></ruleset>", "<ruleset name=\"Sculpteo.com (partial)\" f=\"Sculpteo.com.xml\"><exclusion pattern=\"^http://(?:3dpcase\\.|pro\\.|www\\.)?sculpteo\\.com/(?!\\w\\w/(?:account|jsi18n|jsurl)/|favicon\\.ico|media/|static/|terms_\\w\\w(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?sculpteo\\.com/\" to=\"https://www.sculpteo.com/\"/><rule from=\"^http://(3dpcase|pro)\\.sculpteo\\.com/\" to=\"https://$1.sculpteo.com/\"/></ruleset>", "<ruleset name=\"Sdilej.cz\" f=\"Sdilej.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sdlcdn.com\" f=\"Sdlcdn.com.xml\"><rule from=\"^http://i([1-4])\\.sdlcdn\\.com/\" to=\"https://i$1.sdlcdn.com/\"/></ruleset>", "<ruleset name=\"seL4.systems\" f=\"SeL4.systems.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seacloud\" f=\"Seacloud.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seafile-Server.de\" default_off=\"failed ruleset test\" f=\"Seafile-Server.de.xml\"><securecookie host=\"^(?:www\\.)?seafileserver\\.de$\" name=\".+\"/><securecookie host=\"^(?:(?:demo|shop|wiki|www)\\.)?seafile-server\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?seafileserver\\.de/\" to=\"https://$1seafileserver.de/\"/><rule from=\"^http://((?:demo|shop|wiki|www)\\.)?seafile-server\\.de/\" to=\"https://$1seafile-server.de/\"/></ruleset>", "<ruleset name=\"Seafile (partial)\" f=\"Seafile.xml\"><securecookie host=\"^cloud\\.seafile\\.com$\" name=\".+\"/><rule from=\"^http://cloud\\.seafile\\.com/\" to=\"https://cloud.seafile.com/\"/></ruleset>", "<ruleset name=\"Seagate.com (partial)\" f=\"Seagate.com.xml\"><exclusion pattern=\"^http://(?:gro|newstuff|origin-www|reliability|rss|sata|www)\\.seagate\\.com/+(?!files/|javascript/|sites/|ww/+(?!universal/+(?!css/images/)))\"/><exclusion pattern=\"^http://(?:knowledge|support2)\\.seagate\\.com/+(?!faces/|jslibrary/|resource/|sCSS/|s\\.gif|static/)\"/><securecookie host=\"^(?:apps1|partnerreg|services|shop|wwwlacie)\\.seagate\\.com$\" name=\".+\"/><rule from=\"^http://seagate\\.com/\" to=\"https://www.seagate.com/\"/><rule from=\"^http://(?:knowledge|support2|wheretobuy)\\.seagate\\.com/\" to=\"https://seagatewtb.secure.force.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sealed Abstract.com\" default_off=\"self-signed\" f=\"Sealed_Abstract.com.xml\"><rule from=\"^http://sealedabstract\\.com/\" to=\"https://sealedabstract.com/\"/><rule from=\"^http://www\\.sealedabstract\\.com/[^?]*(\\?.*)?\" to=\"https://sealedabstract.com/index.php$1\"/></ruleset>", "<ruleset name=\"Seals with Clubs.eu\" default_off=\"connection dropped\" f=\"Seals-with-Clubs.xml\"><securecookie host=\"^\\.?sealswithclubs\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sean cassidy.me\" f=\"Sean_cassidy.me.xml\"><rule from=\"^http://seancassidy\\.me/\" to=\"https://www.seancassidy.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seanmckaybeck.com\" f=\"Seanmckaybeck.com.xml\"><rule from=\"^http://(?:www\\.)?seanmckaybeck\\.com/\" to=\"https://seanmckaybeck.com/\"/></ruleset>", "<ruleset name=\"Search Commander\" f=\"Search_Commander.xml\"><securecookie host=\"^\\.searchcommander.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchcode.com\" f=\"Searchcode.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchmarketing.com\" f=\"Searchmarketing.com.xml\"><securecookie host=\"^(?:tracking)?\\.searchmarketing\\.com$\" name=\".+\"/><rule from=\"^http://tracking\\.searchmarketing\\.com/\" to=\"https://tracking.searchmarketing.com/\"/></ruleset>", "<ruleset name=\"Sears.com (partial)\" f=\"Sears.com.xml\"><securecookie host=\"^(?:\\.handbooks|seller\\.marketplace|oascentral)\\.sears\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sears\\.com/(?=favicon\\.ico|shc/s/UserLogonFormView(?:$|[?/]))\" to=\"https://www.sears.com/\"/><rule from=\"^http://om\\.sears\\.com/\" to=\"https://sears-com.d1.sc.omtrdc.net/\"/><rule from=\"^http://(davidtuterajewelry|handbooks|seller\\.marketplace|oascentral|s7|ux)\\.sears\\.com/\" to=\"https://$1.sears.com/\"/></ruleset>", "<ruleset name=\"Sears Commerce Services.com\" f=\"Sears_Commerce_Services.com.xml\"><securecookie host=\"^\\.searscommerceservices\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sears Ecommerce Jobs.com\" default_off=\"failed ruleset test\" f=\"Sears_Ecommerce_Jobs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sears Labs.com\" default_off=\"expired\" f=\"Sears_Labs.com.xml\"><rule from=\"^http://(?:www\\.)?searslabs\\.com/\" to=\"https://searslabs.com/\"/></ruleset>", "<ruleset name=\"searx.me\" f=\"Searx.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seasonal.ly\" f=\"Seasonal.ly.xml\"><securecookie host=\".*\\.seasonal\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeatGeek.com\" f=\"SeatGeek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeattleIX.net\" f=\"SeattleIX.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seattle Privacy.org\" f=\"Seattle_Privacy.org.xml\"><securecookie host=\"^(?:www\\.)?seattleprivacy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seattle Technical Books.com (partial)\" f=\"Seattle_Technical_Books.com.xml\"><rule from=\"^http://(?:www\\.)?seattletechnicalbooks\\.com/(?=(?:cart|content/store|news|reading-comics-public-day|search/advanced_search|user)(?:$|[?/])|favicon\\.ico|files/|modules/|sites/|style\\.css)\" to=\"https://www.seattletechnicalbooks.com/\"/></ruleset>", "<ruleset name=\"Sebastian-Siebert.de\" f=\"Sebastian-Siebert.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sebastian Wick.net\" default_off=\"self-signed\" f=\"Sebastian_Wick.net.xml\"><rule from=\"^http://(?:www\\.)?sebastianwick\\.net/\" to=\"https://sebastianwick.net/\"/></ruleset>", "<ruleset name=\"SecDev.ca\" default_off=\"missing certificate chain\" f=\"SecDev.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecDev.com (partial)\" default_off=\"mismatched, missing certificate chain\" f=\"SecDev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecWiki.org\" f=\"SecWiki.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Second Street.com (partial)\" f=\"Second-Street-Media.xml\"><exclusion pattern=\"^http://solutions\\.secondstreet\\.com/+(?!css/|images/|rs/)\"/><rule from=\"^http://solutions\\.secondstreet\\.com/\" to=\"https://na-abd.marketo.com/\"/></ruleset>", "<ruleset name=\"SecondMarket.com\" f=\"SecondMarket.com.xml\"><securecookie host=\"^www\\.secondmarket\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?secondmarket\\.com/\" to=\"https://www.secondmarket.com/\"/></ruleset>", "<ruleset name=\"Second Life.com (partial)\" f=\"Second_Life.com.xml\"><exclusion pattern=\"^http://wiki\\.secondlife\\.com/+(?!favicon\\.ico|static/|w/)\"/><securecookie host=\"^(?:(?:community|id|jira|search|support|www)?\\.)?secondlife\\.com$\" name=\".+\"/><rule from=\"^http://download\\.cloud\\.secondlife\\.com/\" to=\"https://d378iqxsyg0s3u.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Second Look Forensics.com\" f=\"Second_Look_Forensics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Second Street app.com\" f=\"Second_Street_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seconfig.sytes.net\" f=\"Seconfig.sytes.net.xml\"><securecookie host=\"^\\.seconfig\\.sytes\\.net$\" name=\".+\"/><rule from=\"^http://seconfig\\.sytes\\.net/\" to=\"https://seconfig.sytes.net/\"/></ruleset>", "<ruleset name=\"secproject.com (partial)\" f=\"Secproject.com.xml\"><rule from=\"^http://www\\.soroush\\.secproject\\.com/\" to=\"https://soroush.secproject.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secret Maryo Chronicles (partial)\" default_off=\"mismatch, self-signed\" f=\"Secret-Maryo-Chronicles.xml\"><rule from=\"^http://(?:www\\.)?secretmaryo\\.org/\" to=\"https://secretmaryo.org/\"/></ruleset>", "<ruleset name=\"SecretCon.com\" f=\"SecretCon.com.xml\"><securecookie host=\"^\\.secretcon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SIS.gov.uk\" f=\"Secret_Intelligence_Service.xml\"><rule from=\"^http://www\\.sis\\.gov\\.uk/\" to=\"https://www.sis.gov.uk/\"/></ruleset>", "<ruleset name=\"section9.co.uk\" f=\"Section9.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secular Students.org\" f=\"Secular-Student-Alliance.xml\"><securecookie host=\"^.*\\.secularstudents\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secular.org\" f=\"Secular.org.xml\"><securecookie host=\"^(?:.+\\.)?secular\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secular Humanism.org\" f=\"Secular_Humanism.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secunet (partial)\" f=\"Secunet.xml\"><securecookie host=\"^\\.secunet\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^www\\.secunet\\.com$\" name=\"^(?:ist|_vm_u)$\"/><securecookie host=\"^sinaportal\\.secunet\\.com$\" name=\".*\"/><rule from=\"^http://secunet\\.com/\" to=\"https://www.secunet.com/\"/><rule from=\"^http://www\\.secunet\\.com/(de/(das-unternehmen|not-in-menu)/|en/the-company/it-security-report-secuview/|fileadmin/|typo3(conf|temp)/|uploads/|urchin\\.js)\" to=\"https://www.secunet.com/$1\"/><rule from=\"^http://sinaportal\\.secunet\\.com/\" to=\"https://sinaportal.secunet.com/\"/></ruleset>", "<ruleset name=\"Secunia\" f=\"Secunia.xml\"><securecookie host=\"^(?:\\w+\\.)?secunia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?secunia\\.com/\" to=\"https://secunia.com/\"/><rule from=\"^http://(autodiscover|ca|csi|psi|\\w+\\.exch\\.eu\\.s|vim4)\\.secunia\\.com/\" to=\"https://$1.secunia.com/\"/><rule from=\"^http://(?:www\\.)?csi7\\.secunia\\.com/.*\" to=\"https://csi7.secunia.com/\"/><rule from=\"^http://(?:www\\.)?smallbusiness\\.secunia\\.com/\" to=\"https://smallbusiness.secunia.com/\"/></ruleset>", "<ruleset name=\"Secur1ty.com\" f=\"Secur1ty.com.xml\"><securecookie host=\"^\\.?secur1ty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecuraBit.com\" f=\"SecuraBit.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-Endpoints.com (mismatched)\" default_off=\"mismatched\" f=\"Secure-Endpoints.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-Endpoints.com (partial)\" f=\"Secure-Endpoints.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-OS.org\" f=\"Secure-OS.org.xml\"><rule from=\"^http://www\\.secure-os\\.org/\" to=\"https://secure-os.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-donor.com\" f=\"Secure-donor.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?secure-donor\\.com/\" to=\"https://$1secure-donor.com/\"/></ruleset>", "<ruleset name=\"secure-mobiles.com\" f=\"Secure-mobiles.com.xml\"><securecookie host=\"^www\\.secure-mobiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-payment-processing.com\" f=\"Secure-payment-processing.com.xml\"><rule from=\"^http://([\\w-]+)\\.secure-payment-processing\\.com/\" to=\"https://$1.secure-payment-processing.com/\"/></ruleset>", "<ruleset name=\"secure-resumption.com\" f=\"Secure-resumption.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-secure.co.uk\" f=\"Secure-secure.co.uk.xml\"><securecookie host=\"^web\\d+\\.secure-secure\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://web(\\d+)\\.secure-secure\\.co\\.uk/\" to=\"https://web$1.secure-secure.co.uk/\"/></ruleset>", "<ruleset name=\"secure-u.de\" platform=\"cacert\" f=\"Secure-u.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-zone.net\" f=\"Secure-zone.net.xml\"><securecookie host=\"^asp-\\w\\w\\.secure-zone\\.net$\" name=\".+\"/><rule from=\"^http://asp-(\\w\\w)\\.secure-zone\\.net/\" to=\"https://asp-$1.secure-zone.net/\"/></ruleset>", "<ruleset name=\"secure.me\" f=\"Secure.me.xml\"><securecookie host=\"^www\\.secure\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure.metoffice.gov.uk (partial)\" f=\"Secure.metoffice.gov.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureConnect.com\" f=\"SecureConnect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureDrop.org\" f=\"SecureDrop.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureList.com\" f=\"SecureList.xml\"><securecookie host=\"^(?:.+\\.)?securelist\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureNet.com\" f=\"SecureNet.com.xml\"><securecookie host=\"^terminal\\.securenet\\.com$\" name=\".+\"/><rule from=\"^http://securenet\\.com/\" to=\"https://www.securenet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurePro Software.com\" default_off=\"failed ruleset test\" f=\"SecurePro_Software.xml\"><securecookie host=\"^\\.?secureprosoftware\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?secureprosoftware\\.com/\" to=\"https://secureprosoftware.com/\"/></ruleset>", "<ruleset name=\"SecureStudies.com (partial)\" f=\"SecureStudies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL7.net\" f=\"Secure_Socket_Layer_Billing_Services.xml\"><securecookie host=\"^ssl7\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure Upload.eu\" f=\"Secure_Upload.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure in the Circle\" default_off=\"mismatched\" f=\"Secure_in_the_Circle.xml\"><rule from=\"^http://(?:www\\.)?secureinthecircle\\.com/\" to=\"https://secureinthecircle.com/\"/></ruleset>", "<ruleset name=\"SecuredVisit.com (partial)\" f=\"SecuredVisit.com.xml\"><securecookie host=\"^\\.securedvisit\\.com$\" name=\"^(?:sv_onid|sv_sid)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securedataimages.com\" f=\"Securedataimages.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securedcontent.net\" f=\"Securedcontent.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securejoinsite.com\" f=\"Securejoinsite.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.securejoinsite\\.com/\" to=\"https://securejoinsite.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securelime.com\" f=\"Securelime.xml\"><securecookie host=\"^.*\\.securelime\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securelist.ru\" f=\"Securelist.ru.xml\"><securecookie host=\"^securelist\\.ru$\" name=\".+\"/><rule from=\"^http://www\\.securelist\\.ru/\" to=\"https://securelist.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securelogin.org\" f=\"Securelogin.org.xml\"><securecookie host=\"^securelogin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securepaths.com\" f=\"Securepaths.xml\"><securecookie host=\"^(?:www\\.)?securepaths\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securepaynet.net (partial)\" f=\"Securepaynet.net.xml\"><securecookie host=\"^(?:.*\\.)?securepaynet\\.net$\" name=\".+\"/><rule from=\"^http://securepaynet\\.net/\" to=\"https://www.securepaynet.net/\"/><rule from=\"^http://(\\w+)\\.securepaynet\\.net/\" to=\"https://$1.securepaynet.net/\"/><rule from=\"^http://(img\\d|nebula)\\.wsimg\\.com/\" to=\"https://$1.wsimg.com/\"/></ruleset>", "<ruleset name=\"securepicssl.com\" f=\"Securepicssl.com.xml\"><securecookie host=\"^(?:.*\\.)?securepicssl\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?securepcissl\\.com/\" to=\"https://$1securepcissl.com/\"/></ruleset>", "<ruleset name=\"Securepoint.de\" f=\"Securepoint.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securepurchaseserver.com\" default_off=\"failed ruleset test\" f=\"Securepurchaseserver.com.xml\"><rule from=\"^http://(?:www\\.)?securepurchaseserver(2)?\\.com/\" to=\"https://securepurchaseserver$1.com/\"/></ruleset>", "<ruleset name=\"Secureserver.net (partial)\" f=\"Secureserver.net.xml\"><securecookie host=\".+\\.secureserver\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securetrust.com (partial)\" f=\"Securetrust.com.xml\"><rule from=\"^http://securetrust\\.com/\" to=\"https://www.securetrust.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secureuk.net\" f=\"Secureuk.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecuriTeam.com (partial)\" f=\"SecuriTeam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securifera.com\" f=\"Securifera.com.xml\"><rule from=\"^http://securifera\\.com/\" to=\"https://www.securifera.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securify.nl\" f=\"Securify.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securing the Human.org\" f=\"Securing_the_Human.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securities.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Securities.com.xml\"><rule from=\"^http://www\\.securities\\.com/\" to=\"https://www.securities.com/\"/></ruleset>", "<ruleset name=\"Security-Database.com\" f=\"Security-Database.com.xml\"><securecookie host=\"^www\\.security-database\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?security-database\\.com/\" to=\"https://www.security-database.com/\"/></ruleset>", "<ruleset name=\"Security-Portal.cz\" f=\"Security-Portal.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRLabs.de\" f=\"Security-Research-Labs.xml\"><securecookie host=\"^.*\\.srlabs\\.de$\" name=\".*\"/><rule from=\"^http://www\\.srlabs\\.de/\" to=\"https://srlabs.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurityKISS.com (partial)\" f=\"SecurityKISS.com.xml\"><exclusion pattern=\"^http://www\\.securitykiss\\.com/(?!favicon\\.ico|(?:helpdesk|panel|pricing/order)(?:$|[?/])|images/|javascripts/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurityMetrics.com\" f=\"SecurityMetrics.xml\"><securecookie host=\"^(?:web2\\.|www\\.)?securitymetrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security.NL\" f=\"SecurityNL.xml\"><securecookie host=\"^\\.www\\.security\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurityWeek.com (partial)\" platform=\"mixedcontent\" default_off=\"missing certificate chain\" f=\"SecurityWeek.com.xml\"><securecookie host=\"^(?:www)?\\.securityweek\\.com$\" name=\".+\"/><rule from=\"^http://securityweek\\.com/\" to=\"https://www.securityweek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Conference.de\" f=\"Security_Conference.de.xml\"><securecookie host=\"^(?:.*\\.)?securityconference\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Evaluators.com\" f=\"Security_Evaluators.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Experten.com (false MCB)\" platform=\"mixedcontent\" f=\"Security_Experten.com-falsemixed.xml\"><securecookie host=\"^www\\.securityexperten\\.com$\" name=\".+\"/><rule from=\"^http://securityexperten\\.com/.*\" to=\"https://www.securityexperten.com/\"/><rule from=\"^http://www\\.securityexperten\\.com/(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\" to=\"https://www.securityexperten.com/\"/></ruleset>", "<ruleset name=\"Security Experten.com (partial)\" f=\"Security_Experten.com.xml\"><rule from=\"^http://www\\.securityexperten\\.com/(?=favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\" to=\"https://www.securityexperten.com/\"/></ruleset>", "<ruleset name=\"Security Innovation.com (partial)\" f=\"Security_Innovation.com.xml\"><securecookie host=\"^(?:www\\.)?securityinnovation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Ledger.com\" f=\"Security_Ledger.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Mouse.com (false MCB)\" platform=\"mixedcontent\" f=\"Security_Mouse.com.xml\"><securecookie host=\"^\\.securitymouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security in a Box.org\" f=\"Security_in_a_Box.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securityheaders.io\" f=\"Securityheaders.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securix.org\" f=\"Securix.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securosis.com\" f=\"Securosis.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?securosis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securus Global.com\" f=\"Securus_Global.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecuryCast.com\" f=\"SecuryCast-Oy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secusmart.com\" f=\"Secusmart.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://secusmart\\.com/\" to=\"https://www.secusmart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.de (problematic)\" default_off=\"expired\" f=\"Sedo-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.co.uk\" f=\"Sedo.co.uk.xml\"><securecookie host=\"^\\.?sedo\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.com\" f=\"Sedo.com.xml\"><securecookie host=\"^\\.?sedo\\.com$\" name=\".+\"/><rule from=\"^http://mail\\.sedo\\.com/\" to=\"https://mail.sedoholding.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.de (partial)\" f=\"Sedo.de.xml\"><securecookie host=\"^\\.?sedo\\.de$\" name=\".+\"/><rule from=\"^http://mail\\.sedo\\.de/\" to=\"https://mail.sedoholding.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.fr\" f=\"Sedo.fr.xml\"><rule from=\"^http://(?:www\\.)?sedo\\.fr/$\" to=\"https://sedo.com/fr/?language=fr\"/><rule from=\"^http://(?:www\\.)?sedo\\.fr/\" to=\"https://sedo.com/\"/></ruleset>", "<ruleset name=\"Sedo Holding.com (partial)\" f=\"Sedo_Holding.com.xml\"><securecookie host=\"^mail\\.sedoholding\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo Parking.com\" f=\"Sedo_Parking.com.xml\"><rule from=\"^http://img\\.sedoparking\\.com/\" to=\"https://sedo.cachefly.net/\"/></ruleset>", "<ruleset name=\"See Group (partial)\" default_off=\"failed ruleset test\" f=\"See-Group.xml\"><securecookie host=\"^www2\\.seetickets\\.com$\" name=\".*\"/><rule from=\"^http://seetickets\\.com/\" to=\"https://www.seetickets.com/\"/><rule from=\"^http://www\\.seetickets\\.com/(Content/(About-us|Data-Protection|Security)|Skins/|CustomerService|Terms-and-Conditions)\" to=\"https://www.seetickets.com/$1\"/><rule from=\"^http://www2\\.seetickets\\.com/\" to=\"https://www2.seetickets.com/\"/><rule from=\"^http://s(?:tatic\\.)?\\.s(?:eetickets|tstat)\\.com/\" to=\"https://static.seetickets.com/\"/></ruleset>", "<ruleset name=\"Seecrypt.com\" f=\"Seecrypt.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeedProd.com (partial)\" f=\"SeedProd.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seedboxes.cc\" f=\"Seedboxes.cc.xml\"><securecookie host=\"^(?:w*\\.)?seedboxes\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seedrs\" f=\"Seedrs.xml\"><securecookie host=\"^.*\\.seedrs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seeed Studio.com\" default_off=\"failed ruleset test\" f=\"Seeed_Studio.com.xml\"><securecookie host=\"^\\.seeedstudio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeekingArrangement.com\" f=\"SeekingArrangement.com.xml\"><securecookie host=\"^(?:www)?\\.seekingarrangement\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seeks Project (partial)\" default_off=\"mismatched, self-signed\" f=\"Seeks_Project.xml\"><rule from=\"^http://(?:www\\.)?seeks-project\\.info/\" to=\"https://www.seeks-project.info/\"/></ruleset>", "<ruleset name=\"seethisinaction.com\" default_off=\"failed ruleset test\" f=\"Seethisinaction.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SegPay (partial)\" f=\"SegPay.xml\"><rule from=\"^http://(?:www\\.)?segpaychat\\.com/.*\" to=\"https://cs.segpay.com/chat.html\"/><rule from=\"^http://www\\.segpaycs\\.com/\" to=\"https://segpaycs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segger.com\" f=\"Segger.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment.com\" f=\"Segment.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment.io\" f=\"Segment.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment Fault\" f=\"Segmentfault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seguros Universales\" default_off=\"failed ruleset test\" f=\"Seguros_Universales.xml\"><securecookie host=\"^(?:www)?\\.segurosuniversales\\.net$\" name=\".+\"/><rule from=\"^http://segurosuniversales\\.net/.*\" to=\"https://www.segurosuniversales.net/\"/><rule from=\"^http://www\\.segurosuniversales\\.net/\" to=\"https://www.segurosuniversales.net/\"/></ruleset>", "<ruleset name=\"Sehirfirsati\" f=\"Sehirfirsati.xml\"><securecookie host=\"^(?:.*\\.)?sehirfirsati\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sehirfirsati\\.com/\" to=\"https://www.sehirfirsati.com/\"/><rule from=\"^http://static\\.sehirfirsati\\.com/\" to=\"https://static.sehirfirsati.com/\"/><rule from=\"^http://render\\.groupon-content\\.net/\" to=\"https://render.groupon-content.net/\"/></ruleset>", "<ruleset name=\"SektionEins.de\" f=\"SektionEins.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Selangorku\" default_off=\"failed ruleset test\" f=\"Selangorku.xml\"><securecookie host=\"^(?:.*\\.)?selangorku\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Selectel.ru (partial)\" f=\"Selectel.ru.xml\"><exclusion pattern=\"^http://startups\\.selectel\\.ru/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Selectricity (partial)\" default_off=\"expired, self-signed\" f=\"Selectricity.xml\"><securecookie host=\"^selectricity\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?selectricity\\.org/\" to=\"https://selectricity.org/\"/></ruleset>", "<ruleset name=\"selfhost.de\" f=\"Selfhost.de.xml\"><rule from=\"^http://(?:www\\.)?selfhost\\.de/\" to=\"https://selfhost.de/\"/></ruleset>", "<ruleset name=\"Selfridges.com (partial)\" f=\"Selfridges.com.xml\"><securecookie host=\"^www\\.selfridges\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sellaband.com (partial)\" f=\"Sellaband.com.xml\"><securecookie host=\"^(?:.*\\.)?sellaband\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?sellaband\\.com/\" to=\"https://$1sellaband.com/\"/><rule from=\"^http://(alternative|electronic|hiphop|pop|rnb|rock|world)\\.sellaband\\.com/\" to=\"https://$1.sellaband.com/\"/><rule from=\"^http://support\\.sellaband\\.com/(access|generated|images|registration|system)\" to=\"https://sellaband.zendesk.com/$1\"/></ruleset>", "<ruleset name=\"Selz.com\" f=\"Selz.com.xml\"><securecookie host=\"^\\.selz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Semaphoreci.com\" f=\"Semaphoreci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SemiAccurate\" f=\"SemiAccurate.xml\"><securecookie host=\"^(?:.*\\.)?semiaccurate\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?s(?:emiaccurate\\.com|tonearch\\.net)/\" to=\"https://$1semiaccurate.com/\"/></ruleset>", "<ruleset name=\"SemperVideo\" f=\"SemperVideo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Senate.gov\" f=\"Senate.gov.xml\"><exclusion pattern=\"^http://(?:www.)?(?:intelligence|rules)\\.senate\\.gov/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://((?:efd|efdsearch|outreach|sdc1|sopr|www)\\.)?senate\\.gov/\" to=\"https://$1senate.gov/\"/><rule from=\"^http://(?:www\\.)?(\\w+)\\.senate\\.gov/\" to=\"https://www.$1.senate.gov/\"/></ruleset>", "<ruleset name=\"Senate of the Philippines\" f=\"Senate_of_the_Philippines.xml\"><securecookie host=\"^senate\\.gov\\.ph$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sencha (partial)\" f=\"Sencha.xml\"><exclusion pattern=\"^http://www\\.sencha\\.com/+(?!forum/|wp-content/)\"/><securecookie host=\"^\\.manage\\.sencha\\.com$\" name=\".+\"/><rule from=\"^http://sencha\\.com/\" to=\"https://www.sencha.com/\"/><rule from=\"^http://cdn\\.sencha\\.(?:com|io)/\" to=\"https://extjs.cachefly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SendGrid.com (partial)\" f=\"SendGrid.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SendPepper.com\" default_off=\"expired, mismatched\" f=\"SendPepper.com.xml\"><rule from=\"^http://(?:www\\.)?sendpepper\\.com/\" to=\"https://sendpepper.com/\"/></ruleset>", "<ruleset name=\"SendYourFiles.org (partial)\" f=\"SendYourFiles.com.xml\"><securecookie host=\"^secure\\.sendyourfiles\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.sendyourfiles\\.com/\" to=\"https://secure.sendyourfiles.com/\"/></ruleset>", "<ruleset name=\"SenderScore.org\" f=\"SenderScore.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?senderscore\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sendmail\" platform=\"mixedcontent\" f=\"Sendmail.xml\"><rule from=\"^http://(?:www\\.)?sendmail\\.com/\" to=\"https://www.sendmail.com/\"/></ruleset>", "<ruleset name=\"sendmoments.com (partial)\" default_off=\"failed ruleset test\" f=\"Sendmoments.com.xml\"><rule from=\"^http://ck\\.sendmoments\\.com/\" to=\"https://ck.sendmoments.com/\"/></ruleset>", "<ruleset name=\"sendspace.com\" f=\"Sendspace.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sendvid.com (partial)\" f=\"Sendvid.com.xml\"><securecookie host=\"^(?:2\\.)?sendvid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SensePost.com\" f=\"SensePost.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sensiolabs.com\" f=\"Sensiolabs.com.xml\"><securecookie host=\"^(www\\.)?(support\\.|insight\\.|connect\\.)?sensiolabs\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SentinelOne.com\" f=\"SentinelOne.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeoWizard.ru\" f=\"SeoWizard.ru.xml\"><securecookie host=\"^www\\.seowizard\\.ru$\" name=\".+\"/><rule from=\"^http://seowizard\\.ru/\" to=\"https://www.seowizard.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seonet Multimedia (partial)\" default_off=\"self-signed\" f=\"Seonet-Multimedia.xml\"><securecookie host=\"^kb\\.gigaserver\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gigadesign\\.cz/(cs|image)s/\" to=\"https://www.gigadesign.cz/$1s/\"/><rule from=\"^http://(\\w+)\\.gigaserver\\.cz/\" to=\"https://$1.gigaserver.cz/\"/><rule from=\"^http://(?:www\\.)?seonet\\.cz/\" to=\"https://www.seonet.cz/\"/></ruleset>", "<ruleset name=\"seower.com\" platform=\"mixedcontent\" f=\"Seower.com.xml\"><rule from=\"^http://(?:www\\.)?seower\\.com/\" to=\"https://postbydnx.com/\"/></ruleset>", "<ruleset name=\"Sequanux.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Sequanux.org-falsemixed.xml\"><securecookie host=\"^wiki\\.sequanux\\.org$\" name=\".+\"/><rule from=\"^http://wiki\\.sequanux\\.org/(?!favicon\\.ico|home/services/|load\\.php|skins/)\" to=\"https://wiki.sequanux.org/\"/></ruleset>", "<ruleset name=\"Sequanux.org (partial)\" default_off=\"self-signed\" f=\"Sequanux.org.xml\"><rule from=\"^http://(?:www\\.)?sequanux\\.org/\" to=\"https://www.sequanux.org/\"/><rule from=\"^http://wiki\\.sequanux\\.org/(?=favicon\\.ico|home/services/|load\\.php|skins/)\" to=\"https://wiki.sequanux.org/\"/></ruleset>", "<ruleset name=\"Serato.com (partial)\" f=\"Serato.com.xml\"><rule from=\"^http://((?:auth|manage|playlists|www)\\.)?serato\\.com/\" to=\"https://$1serato.com/\"/><rule from=\"^http://s\\.store\\.serato\\.com/\" to=\"https://d3hrfuxypomrcm.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Seravo.fi\" f=\"Seravo.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serialist\" default_off=\"failed ruleset test\" f=\"Serialist.xml\"><rule from=\"^http://(?:www\\.)?serialist\\.net/\" to=\"https://serialist.net/\"/><rule from=\"^http://([^/:@]*)\\.serialist\\.net/\" to=\"https://$1.serialist.net/\"/></ruleset>", "<ruleset name=\"Serienjunkies.de (mixed content)\" platform=\"mixedcontent\" f=\"Serienjunkies.de.xml\"><securecookie host=\"^www\\.serienjunkies\\.de$\" name=\".+\"/><rule from=\"^http://serienjunkies\\.de/\" to=\"https://www.serienjunkies.de/\"/><rule from=\"^http://([a-z]-cdn|www)\\.serienjunkies\\.de/\" to=\"https://$1.serienjunkies.de/\"/></ruleset>", "<ruleset name=\"Sertifikatai.lt\" f=\"Sertifikatai.lt.xml\"><rule from=\"^http://(?:www\\.)?sertifikatai\\.lt/\" to=\"https://www.sertifikatai.lt/\"/></ruleset>", "<ruleset name=\"Servage.net\" f=\"Servage.net.xml\"><securecookie host=\"^(?:livesupport01|secure|www)\\.servage\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?servage\\.com/(?:\\?.*)?$\" to=\"https://www.servage.net/\"/><rule from=\"^http://(?:www\\.)?servage\\.net/\" to=\"https://www.servage.net/\"/><rule from=\"^http://(livesupport01|secure|static)\\.servage\\.net/\" to=\"https://$1.servage.net/\"/><rule from=\"^http://webmail\\.servage\\.net/(?:\\?.*)?$\" to=\"https://secure.servage.net/webmail/\"/></ruleset>", "<ruleset name=\"Serve.com\" f=\"Serve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServeNets.com (partial)\" default_off=\"mismatched\" f=\"ServeNets.com.xml\"><securecookie host=\"^domains\\.servenets\\.com$\" name=\".+\"/><rule from=\"^http://domains\\.servenets\\.com/\" to=\"https://domains.servenets.com/\"/></ruleset>", "<ruleset name=\"ServeTheHome.com (partial)\" f=\"ServeTheHome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Served by OpenX.com (partial)\" f=\"Served_by_OpenX.com.xml\"><rule from=\"^http://i-cdn\\.servedbyopenx\\.com/\" to=\"https://i-cdn.openx.com/\"/></ruleset>", "<ruleset name=\"server314.com\" f=\"Server314.com.xml\"><securecookie host=\"^.+\\.server314\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\.-]+\\.)?server314\\.com/\" to=\"https://$1server314.com/\"/></ruleset>", "<ruleset name=\"ServerCentral (partial)\" default_off=\"failed ruleset test\" f=\"ServerCentral.xml\"><securecookie host=\"^portal\\.servercentral\\.net$\" name=\".+\"/><rule from=\"^http://portal\\.servercentral\\.net/\" to=\"https://portal.servercentral.net/\"/></ruleset>", "<ruleset name=\"ServerCrate.com (partial)\" f=\"ServerCrate.com.xml\"><exclusion pattern=\"^http://billing\\.servercrate\\.com/(?:$|\\?|(?:announcements|index|knowledgebase)\\.php)\"/><securecookie host=\"^(?:vps|www)?\\.servercrate\\.com$\" name=\".+\"/><rule from=\"^http://((?:billing|vps|www)\\.)?servercrate\\.com/\" to=\"https://$1servercrate.com/\"/></ruleset>", "<ruleset name=\"ServerExpress.co.il\" f=\"ServerExpress.co.il.xml\"><securecookie host=\"^(?:www)?\\.stratusexpress\\.com$\" name=\".+\"/><rule from=\"^http://www\\.stratusexpress\\.com/\" to=\"https://www.stratusexpress.com/\"/></ruleset>", "<ruleset name=\"ServerPilot.io\" f=\"ServerPilot.io.xml\"><securecookie host=\"^\\.serverpilot\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerStack.com\" f=\"ServerStack.com.xml\"><securecookie host=\"^(?:www\\.)?serverstack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerTastic\" f=\"ServerTastic.xml\"><securecookie host=\"^(?:.*\\.)?servertastic\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|blog|my|reseller|support|tickets|www)\\.)?servertastic\\.com/\" to=\"https://$1servertastic.com/\"/></ruleset>", "<ruleset name=\"Server Circle.com\" platform=\"mixedcontent\" default_off=\"expired\" f=\"Server_Circle.com.xml\"><securecookie host=\"^(?:www\\.)?servercircle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Server Express (partial)\" f=\"Server_Express.xml\"><securecookie host=\"^\\.theserverexpress\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^manage\\.theserverexpress\\.com$\" name=\".+\"/><rule from=\"^http://manage\\.theserverexpress\\.com/\" to=\"https://manage.theserverexpress.com/\"/></ruleset>", "<ruleset name=\"Servercow.de\" f=\"Servercow.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Servercraft\" f=\"Servercraft.xml\"><securecookie host=\"^(?:w*\\.)?servercraft\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serverdensity\" f=\"Serverdensity.xml\"><securecookie host=\"^serverdensity\\.io$\" name=\".+\"/><securecookie host=\"^serverdensity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serverfruit.com\" f=\"Serverfruit.com.xml\"><securecookie host=\"^(?:client|www)?\\.serverfruit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serveriai.lt\" f=\"Serveriai.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serverloft (partial)\" f=\"Serverloft.xml\"><securecookie host=\"^.*\\.serverloft\\.com$\" name=\".*\"/><rule from=\"^http://(my|order)\\.serverloft\\.com/\" to=\"https://$1.serverloft.com/\"/></ruleset>", "<ruleset name=\"Servers for Hackers.com\" f=\"Servers_for_Hackers.com.xml\"><securecookie host=\"^(?:forums\\.|www\\.)?serversforhackers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serversaurus.com.au (partial)\" f=\"Serversaurus.com.au.xml\"><securecookie host=\"^(?:www\\.)?serversaurus\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Service-Now.com\" f=\"Service-now.com.xml\"><securecookie host=\".\\.service-now\\.com$\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?service-now\\.com/\" to=\"https://$1service-now.com/\"/></ruleset>", "<ruleset name=\"Service.gov.uk\" f=\"Service.gov.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServiceNow.com\" f=\"ServiceNow.com.xml\"><securecookie host=\"^\\.servicenow\\.com$\" name=\"^wikidb_session$\"/><securecookie host=\"^(?:community|developer|express|(?:www\\.)?partners|share|store)\\.servicenow\\.com$\" name=\".+\"/><rule from=\"^http://knowledge\\.servicenow\\.com/\" to=\"https://community.servicenow.com/community/knowledge-user-conference/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServiceTick.com\" f=\"ServiceTick.com.xml\"><securecookie host=\"^console\\.servicetick\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?servicetick\\.com/\" to=\"https://www.servicetick.com/\"/><rule from=\"^http://console\\.servicetick\\.com/\" to=\"https://console.servicetick.com/\"/></ruleset>", "<ruleset name=\"Service Uptime.com\" f=\"Service_Uptime.com.xml\"><securecookie host=\"^www\\.serviceuptime\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Service by Air\" f=\"Service_by_Air.xml\"><securecookie host=\"^community\\.sbaglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Services-prefecture.com\" f=\"Services-prefecture.com.xml\"><securecookie host=\"^(?:www)?\\.services-prefecture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serving-sys-int.com\" f=\"Serving-sys-int.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serving-sys.com (partial)\" f=\"Serving-sys.com.xml\"><securecookie host=\"^bs\\.serving-sys\\.com$\" name=\".*\"/><rule from=\"^http://activity\\.serving-sys\\.com/\" to=\"https://bs.serving-sys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sesamstrasse.de\" f=\"Sesamstrasse.de.xml\"><securecookie host=\"^(www\\.)?sesamstrasse\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sesek.com\" f=\"Sesek.com.xml\"><rule from=\"^http://robert\\.sesek\\.com/\" to=\"https://robert.sesek.com/\"/></ruleset>", "<ruleset name=\"SessionCam.com\" f=\"SessionCam.com.xml\"><rule from=\"^http://(?:www\\.)?sessioncam\\.com/\" to=\"https://www.sessioncam.com/\"/></ruleset>", "<ruleset name=\"Set.io\" f=\"Set.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seth Vargo.com\" f=\"Seth_Vargo.com.xml\"><rule from=\"^http://(?:www\\.)?sethvargo\\.com/\" to=\"https://sethvargo.com/\"/></ruleset>", "<ruleset name=\"Settrade.com\" default_off=\"failed ruleset test\" f=\"Settrade.com.xml\"><rule from=\"^http://(?:www\\.)?settrade\\.com/\" to=\"https://www.settrade.com/\"/><rule from=\"^http://portal\\.settrade\\.com/\" to=\"https://portal.settrade.com/\"/></ruleset>", "<ruleset name=\"Seurinternacional.com\" default_off=\"failed ruleset test\" f=\"Seurinternacional.com.xml\"><rule from=\"^http://(?:www\\.)?seurinternacional\\.com/\" to=\"https://www.seurinternacional.com/\"/></ruleset>", "<ruleset name=\"SevenOneMedia\" f=\"SevenOneMedia.xml\"><rule from=\"^http://ad\\.71i\\.de/\" to=\"https://adserver.71i.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SevenTorrents.org\" default_off=\"connection refused\" f=\"SevenTorrents.xml\"><securecookie host=\"^seventorrents\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sevenoaks.gov.uk (partial)\" f=\"Sevenoaks.gov.uk.xml\"><exclusion pattern=\"^http://cds\\.sevenoaks\\.gov\\.uk/+(?![Ss]iteSpecific/|documents/\\w+/|ie(?:Logon|RegisterUser)\\.aspx|jquery-ui/css/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!cds\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sex8\" f=\"Sex8.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SexNarod (partial)\" default_off=\"expired, mismatch, self-signed\" f=\"SexNarod.xml\"><rule from=\"^http://(?:www\\.)?(sexnarod\\.ru|superforum\\.org|sxnarod\\.com)/\" to=\"https://www.$1/\"/><rule from=\"^http://dating\\.superforum\\.org/\" to=\"https://dating.superforum.org/\"/><rule from=\"^http://(pda|wap\\.dating)\\.sxnarod\\.com/\" to=\"https://$1.sxnarod.com/\"/><securecookie host=\"^(?:www)?\\.sexnarod\\.ru$\" name=\".*\"/><securecookie host=\"^(?:\\.dating)?\\.s(?:uperforum\\.org|xnarod\\.com)$\" name=\".*\"/></ruleset>", "<ruleset name=\"SexSlurp\" default_off=\"failed ruleset test\" f=\"SexSlurp.xml\"><securecookie host=\"^\\.sexslurp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sexad.net (partial)\" f=\"Sexad.net.xml\"><securecookie host=\"^\\.as\\.sexad\\.net$\" name=\"^at\\d+(_\\d+)+$\"/><securecookie host=\"^\\.as\\.sexad\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sexkompas.net\" f=\"Sexkompas.net.xml\"><securecookie host=\"^www\\.sexkompas\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sextoy.com (partial)\" f=\"Sextoy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sextoy fun.com (partial)\" f=\"Sextoy_fun.com.xml\"><securecookie host=\"^admin\\.sextoyfun\\.com$\" name=\"\\.+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sexy House\" f=\"Sexy_House.xml\"><securecookie host=\"^\\.thesexyhouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sexy Site Hosting.com\" default_off=\"failed ruleset test\" f=\"Sexy_Site_Hosting.com.xml\"><securecookie host=\"^\\.sexysitehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seznam.cz\" f=\"Seznam.cz.xml\"><rule from=\"^http://(?:www\\.)?seznam\\.cz/\" to=\"https://www.seznam.cz/\"/><rule from=\"^http://(?:www\\.)?post\\.cz/\" to=\"https://email.seznam.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sferra (partial)\" f=\"Sferra.xml\"><exclusion pattern=\"^http://(?:www\\.)?sferra\\.com/content/.+\\.html\"/><rule from=\"^http://(www\\.)?sferra\\.com/((?:checkout|Member|registry)(?:$|\\?)|content/|css/|images/|photos/|Public/|Scripts/|/?store_image/|Styles/)\" to=\"https://$1sferra.com/$2\"/></ruleset>", "<ruleset name=\"sfx.ms\" f=\"Sfx.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shaaaaaaaaaaaaa.com\" f=\"Shaaaaaaaaaaaaa.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shacknews\" default_off=\"failed ruleset test\" f=\"Shacknews.xml\"><securecookie host=\"^www\\.shacknews\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?shacknews\\.com/\" to=\"https://www.shacknews.com/\"/><rule from=\"^http://cf\\.shacknews\\.com/\" to=\"https://shacknews.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"Shadertoy.com\" f=\"Shadertoy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shadow of Mordor.com\" f=\"Shadow_of_Mordor.com.xml\"><securecookie host=\"^(?:www)?\\.shadowofmordor\\.com$\" name=\".+\"/><rule from=\"^http://shadowofmordor\\.com/\" to=\"https://www.shadowofmordor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shadowproof.com (partial)\" f=\"Shadowproof.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaklee (partial)\" default_off=\"Needs ruleset tests\" f=\"Shaklee.xml\"><exclusion pattern=\"^http://member\\.myshaklee\\.com/\\w\\w/\\w\\w/article/\"/><exclusion pattern=\"^http://shaklee\\.com/(?:/\\w\\w/\\w\\w/)?(?:$|\\?)\"/><securecookie host=\"^\\.shaklee\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.myshaklee\\.com$\" name=\".+\"/><rule from=\"^http://myshaklee\\.com/\" to=\"https://www.myshaklee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaman's Garden\" f=\"Shamans_Garden.xml\"><securecookie host=\"^(?:w*\\.)?shamansgarden\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shambhala Mountain Center\" f=\"Shambhala-Mountain-Center.xml\"><securecookie host=\"^(?:www\\.)?shambhalamountain\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shannon Health\" f=\"Shannon-Health.xml\"><securecookie host=\"^(?:.*\\.)?myshannonconnection\\.org$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?shannonhealth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myshannonconnection\\.org/\" to=\"https://www.myshannonconnection.org/\"/><rule from=\"^http://(?:www\\.)?shannonhealth\\.com/\" to=\"https://www.shannonhealth.com/\"/></ruleset>", "<ruleset name=\"ShapeShift.io\" f=\"ShapeShift.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareASale.com (partial)\" f=\"ShareASale.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.shareasale\\.com/\" to=\"https://dou14x5jx22mo.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareConnect.com\" f=\"ShareConnect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareFile.com\" f=\"ShareFile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareFile support.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"ShareFile_support.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareFile support.com (partial)\" f=\"ShareFile_support.com.xml\"><rule from=\"^http://(?:www\\.)?sharefilesupport\\.com/\" to=\"https://www.sharefile.com/\"/></ruleset>", "<ruleset name=\"ShareRepo.com\" f=\"ShareRepo.com.xml\"><securecookie host=\"^\\.sharerepo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareSix.com\" f=\"ShareSix.com.xml\"><securecookie host=\"^\\.sharesix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareThis.com (partial)\" f=\"ShareThis.xml\"><securecookie host=\".+\\.sharethis\\.com$\" name=\".+\"/><rule from=\"^http://s\\.sharethis\\.com/\" to=\"https://sd.sharethis.com/\"/><rule from=\"^http://w\\.sharethis\\.com/\" to=\"https://ws.sharethis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Share it.com (partial)\" f=\"Share_it.com.xml\"><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?shareit\\.com/+\" to=\"https://www.mycommerce.com/\"/><exclusion pattern=\"^http://(?:www\\.)?shareit\\.com/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Share the Network.com\" default_off=\"connection reset\" f=\"Share_the_Network.xml\"><securecookie host=\"^www\\.sharethenetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shared.sx (false MCB)\" platform=\"mixedcontent\" f=\"Shared.sx-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shared.sx (partial)\" f=\"Shared.sx.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SharedValue.org\" f=\"SharedValue.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sharedcount.com API\" f=\"Sharedcount.com-API.xml\"><rule from=\"^http://api\\.sharedcount\\.com/\" to=\"https://sharedcount.appspot.com/\"/></ruleset>", "<ruleset name=\"sharedvue.net\" f=\"Sharedvue.net.xml\"><securecookie host=\"^intel\\.sharedvue\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharefest.me\" f=\"Sharefest.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shareholder.com (partial)\" f=\"Shareholder.com.xml\"><securecookie host=\"^(?:dialogue|\\.investor)?\\.shareholder\\.com\" name=\".+\"/><rule from=\"^http://apps2\\.shareholder\\.com/\" to=\"https://apps.shareholder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shareholder.ru (partial)\" f=\"Shareholder.ru.xml\"><securecookie host=\"^(?:\\.|www\\.)?shareholder\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharethefiles.com\" default_off=\"self-signed\" f=\"Sharethefiles.com.xml\"><securecookie host=\"^\\.sharethefiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharethrough (partial)\" default_off=\"failed ruleset test\" f=\"Sharethrough.xml\"><securecookie host=\"^(?:.*\\.)?sharethrough\\.com$\" name=\".+\"/><rule from=\"^http://strlabs\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://strlabs.wpengine.com/\"/><rule from=\"^http://ads\\.shareth\\.ru/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http://((?:(?:apis|assets|content|hq|static)(?:-acceptance|-staging)?|native(?:-staging)?|www)\\.)?sharethrough\\.com/\" to=\"https://$1sharethrough.com/\"/><rule from=\"^http://marketing\\.sharethrough\\.com/(?:\\?.*)?$\" to=\"https://sharethrough.com/?ao=1\"/><rule from=\"^http://marketing\\.sharethrough\\.com/acton/\" to=\"https://ci33.actonsoftware.com/acton/\"/></ruleset>", "<ruleset name=\"Shari DeAngel.com (false MCB)\" platform=\"mixedcontent\" f=\"Shari_DeAngelo.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shari DeAngel.com (partial)\" f=\"Shari_DeAngelo.com.xml\"><rule from=\"^http://(www\\.)?sharideangelo\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1sharideangelo.com/\"/></ruleset>", "<ruleset name=\"SharpSpring (partial)\" f=\"SharpSpring.xml\"><securecookie host=\".+\\.sharpspring\\.com$\" name=\".+\"/><rule from=\"^http://(app|sfdc)\\.sharpspring\\.com/\" to=\"https://$1.sharpspring.com/\"/></ruleset>", "<ruleset name=\"Sharpmen\" f=\"Sharpmen.xml\"><securecookie host=\"^\\.sharpmen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaun.net\" f=\"Shaun.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaun Lorrain.com.au\" default_off=\"failed ruleset test\" f=\"Shaun_Lorrain.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaw.ca (partial)\" f=\"Shaw.ca.xml\"><exclusion pattern=\"^http://business\\.shaw\\.ca/+(?!SharedAssets/)\"/><securecookie host=\"^(?:community|myaccount|newsroom|www)\\.shaw\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shazam.com (problematic)\" default_off=\"mismatched\" f=\"Shazam-problematic.xml\"><securecookie host=\"^\\.shazam\\.com$\" name=\"^(?:_mynewsdesk_session|origin_site|picked_site)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shazam.com (partial)\" f=\"Shazam.xml\"><securecookie host=\".+\\.shazam\\.com$\" name=\".+\"/><rule from=\"^http://shazam\\.com/\" to=\"https://www.shazam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShazamID.com\" f=\"ShazamID.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SheKnows.com (partial)\" f=\"SheKnows.com.xml\"><securecookie host=\"^\\.sheknows\\.com$\" name=\"^__(?:cfduid|qca)$\"/><securecookie host=\"^connect\\.sheknows\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SheVibe.com (partial)\" f=\"SheVibe.com.xml\"><rule from=\"^http://(?:www\\.)?shevibe\\.com/(?=\\w+\\.css|\\w+/css/|(?:cart|login|order-lookup|send-password)\\.aspx|favicon\\.ico|features/|[\\w.]+_files/|images/|scripts/|template/)\" to=\"https://www.shevibe.com/\"/></ruleset>", "<ruleset name=\"Sheet Music Plus (partial)\" platform=\"mixedcontent\" f=\"Sheet-Music-Plus.xml\"><rule from=\"^http://sheetmusicplus\\.com/\" to=\"https://www.sheetmusicplus.com/\"/><rule from=\"^http://www\\.sheetmusicplus\\.com/(account/orders|affiliates|cart/save_item|checkout|easyrebates|favicon\\.ico|newsletter/signup|sign_(in|up))\" to=\"https://www.sheetmusicplus.com/$1\"/><rule from=\"^http://(?:ssl\\.)?assets\\.sheetmusicplus\\.com/\" to=\"https://d29ci68ykuu27r.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sheffield.gov.uk (partial)\" f=\"Sheffield.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shellfish.io\" f=\"Shellfish.io.xml\"><securecookie host=\"^shellfish\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shellspace.net\" f=\"Shellspace.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shellter Project.com\" f=\"Shellter_Project.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shenandoah University (partial)\" default_off=\"failed ruleset test\" f=\"Shenandoah_University.xml\"><rule from=\"^http://cdn\\.su\\.edu/\" to=\"https://8e30e7d033d0eb544c88-cfde4bf79d8fc6cacaa1550c45dd6099.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Sheperds Friendly Society\" f=\"Sheperds_Friendly_Society.xml\"><securecookie host=\"^www\\.shepherdsfriendly\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shepherdsfriendly\\.co\\.uk/\" to=\"https://www.shepherdsfriendly.co.uk/\"/></ruleset>", "<ruleset name=\"SheppyWare\" default_off=\"expired, mismatched, self-signed\" f=\"SheppyWare.xml\"><rule from=\"^http://(?:(bugzilla\\.)|www\\.)?sheppyware\\.net/\" to=\"https://$1sheppyware.net/\"/></ruleset>", "<ruleset name=\"Sherrin\" f=\"Sherrin.xml\"><securecookie host=\"^www\\.sherrin\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shibboleth.net\" f=\"Shibboleth.net.xml\"><securecookie host=\"^issues\\.shibboleth\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shift Payments.com\" f=\"Shift_Payments.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shiftboard.com (partial)\" f=\"Shiftboard.com.xml\"><rule from=\"^http://(?:www\\.)?shiftboard\\.com/\" to=\"https://www.shiftboard.com/\"/></ruleset>", "<ruleset name=\"Shipment\" f=\"Shipment.xml\"><securecookie host=\"^\\.(?:www\\.)?ship-ment\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShippingWatch (mixed content)\" platform=\"mixedcontent\" f=\"ShippingWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shipto.com (partial)\" f=\"Shipto.com.xml\"><rule from=\"^http://(www\\.)?shipto\\.com/(en/questions(?:$|\\?|/)|favicon\\.ico|qa-theme/)\" to=\"https://$1shipto.com/$2\"/></ruleset>", "<ruleset name=\"Shirazlug.ir\" f=\"Shirazlug.ir.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShmooCon.org\" default_off=\"mismatched\" f=\"ShmooCon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shmoop.com (partial)\" f=\"Shmoop.com.xml\"><rule from=\"^http://(?:www\\.)?shmoop\\.com/(?=assets/|code/|js/|login\\.html|min/|register-extended\\.html)\" to=\"https://www.shmoop.com/\"/><rule from=\"^http://media1\\.shmoop\\.com/\" to=\"https://d32v6r6fgi4k49.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Shock Media.nl\" default_off=\"failed ruleset test\" f=\"Shock_Media.nl.xml\"><securecookie host=\".+\\.shockmedia\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shockmedia\\.nl/\" to=\"https://www.shockmedia.nl/\"/><rule from=\"^http://(my|webmail)\\.shockmedia\\.nl/\" to=\"https://$1.shockmedia.nl/\"/></ruleset>", "<ruleset name=\"Shodan.io\" f=\"Shodan.io.xml\"><securecookie host=\"^(?:account)?\\.shodan\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoe Show\" platform=\"mixedcontent\" f=\"ShoeShow.xml\"><rule from=\"^http://(www\\.)?shoeshow\\.com\\.au/\" to=\"https://www.shoeshow.com.au/\"/></ruleset>", "<ruleset name=\"Shoebuy.com (partial)\" f=\"Shoebuy.com.xml\"><exclusion pattern=\"^http://(?:designer\\.|www\\.)?shoebuy\\.com/(?!(?:cart|cust|lists)(?:$|[?/])|coremetrics/|css/|favicon\\.ico|images/|jscript/)\"/><rule from=\"^http://att-i\\.shoebuy\\.com/css/\" to=\"https://www.shoebuy.com/css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShopCo.com (partial)\" f=\"ShopCo.com.xml\"><securecookie host=\".+\\.shopco\\.com$\" name=\".+\"/><rule from=\"^http://(?!www\\.)([\\w-]+)\\.shopco\\.com/\" to=\"https://$1.shopco.com/\"/></ruleset>", "<ruleset name=\"ShopLocal\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ShopLocal.xml\"><securecookie host=\"^(?:support|wiki|www)\\.shoplocal\\.com$\" name=\".+\"/><rule from=\"^http://(?:ak)?images\\.crossmediaservices\\.com/\" to=\"https://akimages.shoplocal.com/\"/><rule from=\"^http://((?:akimages|sl2|support|wiki|www)\\.)?shoplocal\\.com/\" to=\"https://$1shoplocal.com/\"/></ruleset>", "<ruleset name=\"ShopMania (partial)\" f=\"ShopMania.xml\"><exclusion pattern=\"^http://biz\\.shopmania\\.(?:com|es)/+(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.shopmania\\.(?:com|es)/+(?!favicon\\.ico|img/)\"/><exclusion pattern=\"^http://partner\\.shopmania\\.(?:com|es)/+(?!dashboard(?:$|[?/])|favicon\\.ico)\"/><rule from=\"^http://((?:biz|cp|dashboard|www)\\.)?shopmania\\.(com|es)/\" to=\"https://$1shopmania.$2/\"/><rule from=\"^http://(fl\\d+|im\\d+)\\.shopmania\\.org/\" to=\"https://$1.shopmania.org/\"/></ruleset>", "<ruleset name=\"ShopSite\" default_off=\"expired\" f=\"ShopSite.xml\"><rule from=\"^http://(?:www\\.)?shopsite\\.com/\" to=\"https://www.shopsite.com/\"/></ruleset>", "<ruleset name=\"ShopStyle (mismatches)\" default_off=\"mismatch\" f=\"ShopStyle-mismatches.xml\"><rule from=\"^http://blog\\.shopstyle\\.(com|com\\.au|co\\.uk|de|fr)/\" to=\"https://blog.shopstyle.$1/\"/><rule from=\"^http://widget\\.shopstyle\\.(co\\.uk|fr)/\" to=\"https://widget.shopstyle.$1/\"/></ruleset>", "<ruleset name=\"ShopStyle (partial)\" default_off=\"failed ruleset test\" f=\"ShopStyle.xml\"><exclusion pattern=\"^http://www\\.shopstyle\\.com/(?:home)?(?:$|\\?)\"/><securecookie host=\".*\\.shopstyle\\.[\\w.]{2,6}$\" name=\".+\"/><rule from=\"^http://(www\\.)?shopsense\\.co\\.jp/\" to=\"https://$1shopsense.co.jp/\"/><rule from=\"^http://(?:www\\.)?shopstyle\\.(co\\.uk|com\\.au|de|fr)/\" to=\"https://www.shopstyle.$1/\"/><rule from=\"^http://omniture\\.shopstyle\\.com/\" to=\"https://shopstyle-com.112.2o7.net/\"/><rule from=\"^http://((?:ads|(?:www\\.)?m|secure|shopsense(?:beta|test|widget)?|www)\\.)?shopstyle\\.com/\" to=\"https://$1shopstyle.com/\"/></ruleset>", "<ruleset name=\"ShopWiki (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ShopWiki.xml\"><securecookie host=\"^.*\\.shopwiki\\.com$\" name=\".+\"/><rule from=\"^http://((?:redir|staticssl|wiki|www)\\.)?shopwiki\\.com/\" to=\"https://$1shopwiki.com/\"/><rule from=\"^http://static2\\.shopwiki\\.com/\" to=\"https://d2wh0l1jxh2l45.cloudfront.net/\"/><rule from=\"^http://s\\.shwcd\\.com/\" to=\"https://www.shopwiki.com/\"/></ruleset>", "<ruleset name=\"Shop Mimi Green.com\" f=\"Shop_Mimi_Green.com.xml\"><securecookie host=\"^www\\.shopmimigreen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shop Your Way.com (partial)\" default_off=\"failed ruleset test\" f=\"Shop_Your_Way.com.xml\"><rule from=\"^http://(www\\.)?shopyourway\\.com/static/\" to=\"https://$1shopyourway.com/static/\"/></ruleset>", "<ruleset name=\"Shopatron (partial)\" f=\"Shopatron.xml\"><securecookie host=\"^www\\.(?:orderhlp|shopatron)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?orderhlp\\.com/\" to=\"https://www.orderhlp.com/\"/><rule from=\"^http://(media\\.|mss\\.|www\\.)?shopatron\\.com/\" to=\"https://$1shopatron.com/\"/><rule from=\"^http://mediacdn\\.shopatron\\.com/\" to=\"https://media.shopatron.com/\"/><rule from=\"^http://cdn\\.shptrn\\.com/\" to=\"https://cdn.shptrn.com/\"/></ruleset>", "<ruleset name=\"Shopify (partial)\" f=\"Shopify.xml\"><securecookie host=\"^\\w.*\\.myshopify\\.com$\" name=\".+\"/><securecookie host=\"^themes\\.shopify\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.myshopify\\.com/\" to=\"https://$1.myshopify.com/\"/><rule from=\"^http://((?:apps|cdn|checkout|static|themes|www)\\.)?shopify\\.com/\" to=\"https://$1shopify.com/\"/><rule from=\"^http://cdn\\.apps\\.shopify\\.com/\" to=\"https://apps.shopify.com/\"/></ruleset>", "<ruleset name=\"shopinfo.net (partial)\" default_off=\"failed ruleset test\" f=\"Shopinfo.net.xml\"><rule from=\"^http://(?:www\\.)?shopinfo\\.net/(?=favicon\\.ico|fileadmin/|typo3temp/|uploads/|zertifizierte-shops/zertifikat/)\" to=\"https://www.shopinfo.net/\"/></ruleset>", "<ruleset name=\"Shopper Approved.com\" f=\"Shopper_Approved.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.?www\\.shopperapproved\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shopping.com (partial)\" f=\"Shopping.com.xml\"><exclusion pattern=\"^http://developer\\.shopping\\.com/(?!files/|login/|member/|public/)\"/><securecookie host=\"^(?!developer).+\\.shopping\\.com$\" name=\".+\"/><rule from=\"^http://(developer|haendler|marchand|(?:uk)?merchant|partners)\\.shopping\\.com/\" to=\"https://$1.shopping.com/\"/></ruleset>", "<ruleset name=\"Shopping Cart Elite\" f=\"Shopping_Cart_Elite.xml\"><securecookie host=\"^(?:.*\\.)?shoppingcartelite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shoppingshadow.com\" default_off=\"mismatched\" f=\"Shoppingshadow.com.xml\"><rule from=\"^http://img\\.shoppingshadow\\.com/\" to=\"https://img.shopping.com/\"/></ruleset>", "<ruleset name=\"Shoptiques.com (partial)\" f=\"Shoptiques.com.xml\"><rule from=\"^http://(www\\.)?shoptiques\\.com/((?:account|login)(?:$|\\?|/)|api/|static/)\" to=\"https://$1shoptiques.com/$2\"/><rule from=\"^http://metrics\\.shoptiques\\.com/\" to=\"https://metrics.shoptiques.com/\"/><rule from=\"^http://cdn2\\.shoptiques\\.net/\" to=\"https://d2csjd0bj2nauk.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Shopware.de (partial)\" default_off=\"failed ruleset test\" f=\"Shopware.de.xml\"><exclusion pattern=\"^http://www\\.shopware\\.de/+(?!favicon\\.ico|images/|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shopzilla (partial)\" default_off=\"failed ruleset test\" f=\"Shopzilla.xml\"><securecookie host=\"^\\.shopzilla\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?shopzilla\\.com/\" to=\"https://www.shopzilla.com/\"/><rule from=\"^http://merchant\\.shopzilla\\.com/\" to=\"https://merchant.shopzilla.com/\"/></ruleset>", "<ruleset name=\"ShortList.com\" f=\"ShortList.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://shortlist\\.com/\" to=\"https://www.shortlist.com/\"/><rule from=\"^http://\\d\\.darkroom\\.shortlist\\.com/\" to=\"https://darkroom.shortlist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shorte.st (partial)\" f=\"Shorte.st.xml\"><securecookie host=\"^shorte\\.st$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shorty Awards.com (partial)\" f=\"Shorty_Awards.com.xml\"><securecookie host=\"^\\.industry\\.shortyawards\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://cdn\\.shortyawards\\.com/\" to=\"https://d3f8w85pjd4o8c.cloudfront.net/\"/><rule from=\"^http://industry\\.shortyawards\\.com/(account|static)/\" to=\"https://industry.shortyawards.com/$1/\"/></ruleset>", "<ruleset name=\"Shotgun Club\" f=\"Shotgun_Club.xml\"><securecookie host=\"^(?:w*\\.)?shotgunclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoutback Concepts (partial)\" default_off=\"failed ruleset test\" f=\"Shoutback-Concepts.xml\"><rule from=\"^http://static\\.shoutback\\.com/\" to=\"https://static.shoutback.com/\"/></ruleset>", "<ruleset name=\"ShowMeCon.com (partial)\" f=\"ShowMeCon.com.xml\"><rule from=\"^http://(www\\.)?showmecon\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1showmecon.com/\"/></ruleset>", "<ruleset name=\"Showcase-TV\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Showcase-TV.xml\"><rule from=\"^http://click-finder\\.jp/\" to=\"https://click-finder.jp/\"/><rule from=\"^http://hadalog\\.jp/\" to=\"https://hadalog.jp/\"/><rule from=\"^http://(www\\.)?hoku\\.co\\.jp/\" to=\"https://$1hoku.co.jp/\"/><rule from=\"^http://(www\\.)?navicast\\.co\\.jp/\" to=\"https://$1navicast.co.jp/\"/><rule from=\"^http://(www\\.)?showcase-tv\\.com/\" to=\"https://$1showcase-tv.com/\"/><rule from=\"^http://click\\.showcase-tv\\.jp/\" to=\"https://click.showcase-tv.jp/\"/></ruleset>", "<ruleset name=\"Showcase.ca (mismatched)\" default_off=\"mismatched\" f=\"Showcase.ca-problematic.xml\"><securecookie host=\"^www\\.showcase\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?showcase\\.ca/\" to=\"https://www.showcase.ca/\"/></ruleset>", "<ruleset name=\"Showcase.ca (partial)\" f=\"Showcase.ca.xml\"><rule from=\"^http://media\\.showcase\\.ca/\" to=\"https://d2wk97pdwmv7mo.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Showing Cloud.com\" f=\"Showing_Cloud.com.xml\"><securecookie host=\"^(?:cn|www)?\\.showingcloud\\.com$\" name=\".+\"/><rule from=\"^http://((?:cn|en|www)\\.)?showingcloud\\.com/\" to=\"https://$1showingcloud.com/\"/></ruleset>", "<ruleset name=\"Showrss.info\" f=\"Showrss.info.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shpock\" default_off=\"failed ruleset test\" f=\"Shpock.xml\"><securecookie host=\"^\\.?shpock\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shpock\\.com/\" to=\"https://shpock.com/\"/></ruleset>", "<ruleset name=\"ShrinkTheWeb.com (partial)\" f=\"ShrinkTheWeb.xml\"><securecookie host=\".*\\.shrinktheweb\\.com$\" name=\".*\"/><rule from=\"^http://learn\\.shrinktheweb\\.com/\" to=\"https://www.shrinktheweb.com/learn/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schrödinger\" f=\"Shrodinger.xml\"><securecookie host=\"^www\\.schrodinger\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shtuff.it\" f=\"Shtuff.it.xml\"><rule from=\"^http://(?:www\\.)?shtuff\\.it/\" to=\"https://shtuff.it/\"/></ruleset>", "<ruleset name=\"Shubh.am\" f=\"Shubh.am.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shuddle.us\" f=\"Shuddle.us.xml\"><rule from=\"^http://(?:((?:blog|california|support)\\.)|www\\.)?shuddle\\.us/\" to=\"https://$1shuddle.us/\"/></ruleset>", "<ruleset name=\"Shurgard\" f=\"Shurgard.xml\"><rule from=\"^http://shurgardpayment\\.eu/\" to=\"https://www.shurgardpayment.eu/\"/><rule from=\"^http://([^/:@]+)?\\.shurgardpayment\\.eu/\" to=\"https://$1.shurgardpayment.eu/\"/></ruleset>", "<ruleset name=\"Shut the Backdoor.net\" f=\"Shut_the_Backdoor.net.xml\"><securecookie host=\"^\\.shutthebackdoor\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shutterfly (mismatches)\" default_off=\"mismatch\" f=\"Shutterfly-mismatches.xml\"><rule from=\"^http://forums\\.shutterfly\\.com/(app|bHL|common|communities|css|files)/\" to=\"https://forums.shutterfly.com/$1/\"/></ruleset>", "<ruleset name=\"Shutterfly (partial)\" default_off=\"failed ruleset test\" f=\"Shutterfly.xml\"><securecookie host=\"^(?:www)?\\.shutterfly\\.com$\" name=\".*\"/><rule from=\"^http://(?:businesssolutions|sbmsshare)\\.shutterfly\\.com/\" to=\"https://sbmsshare.shutterfly.com/\"/><rule from=\"^http://(sbmsomp\\.|web1\\.|www\\.)?shutterfly\\.com/\" to=\"https://$1shutterfly.com/\"/><rule from=\"^http://sortino\\.shutterfly\\.com/$\" to=\"https://www.lexusdealerstore.com/lexus/\"/><rule from=\"^http://cdn(\\d)?\\.staticsfly\\.com/\" to=\"https://cdn$1.staticsfly.com/\"/></ruleset>", "<ruleset name=\"Shutterstock (partial)\" f=\"Shutterstock.xml\"><securecookie host=\"^\\.shutterstock\\.com$\" name=\"^(?:IRF_3|__utm\\w)$\"/><rule from=\"^http://s\\d\\.picdn\\.net/\" to=\"https://www.shutterstock.com/\"/><rule from=\"^http://(www\\.)?shutterstock\\.com/(css/|images/|js/|subscribe(?:11)?\\.mhtml)\" to=\"https://$1shutterstock.com/$2\"/><rule from=\"^http://(absinthe|lilb2)\\.shutterstock\\.com/\" to=\"https://$1.shutterstock.com/\"/></ruleset>", "<ruleset name=\"shwyz.ca\" default_off=\"expired\" f=\"Shwyz.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sick.com (partial)\" f=\"Sick.com.xml\"><exclusion pattern=\"^http://www\\.sick\\.com/(?!media/pdf/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SickDay surf shop.com\" default_off=\"connection refused\" f=\"SickDay_surf_shop.com.xml\"><securecookie host=\"^\\.sickdaysurfshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sickbits.net\" default_off=\"expired\" f=\"Sickbits.net.xml\"><rule from=\"^http://(?:www\\.)?sickbits\\.net/\" to=\"https://sickbits.net/\"/></ruleset>", "<ruleset name=\"sicontact.at\" f=\"Sicontact.at.xml\"><securecookie host=\"^\\.www\\.sicontact\\.at$\" name=\".+\"/><rule from=\"^http://sicontact\\.at/\" to=\"https://www.sicontact.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SideCar\" f=\"SideCar.xml\"><rule from=\"^http://(?:www\\.)?side\\.cr/\" to=\"https://www.side.cr/\"/></ruleset>", "<ruleset name=\"SideReel (partial)\" f=\"SideReel.xml\"><securecookie host=\"^snowball\\.sidereel\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?sidereel\\.com/(_webapi/|images/|stylesheets/|users)\" to=\"https://$1sidereel.com/$2\"/><rule from=\"^http://[as]3\\.sidereel\\.com/\" to=\"https://s3.amazonaws.com/sidereel-production-static/\"/><rule from=\"^http://editorial\\.sidereel\\.com/\" to=\"https://sidereel-editorial.s3.amazonaws.com/\"/><rule from=\"^http://snowball\\.sidereel\\.com/\" to=\"https://snowball.sidereel.com/\"/></ruleset>", "<ruleset name=\"Sidearm Sports (problematic)\" default_off=\"mismatched\" f=\"Sidearm_Sports-problematic.xml\"><rule from=\"^http://(?:www\\.)?sidearmsports\\.com/\" to=\"https://www.sidearmsports.com/\"/><rule from=\"^http://blog\\.sidearmsports\\.com/\" to=\"https://blog.sidearmsports.com/\"/></ruleset>", "<ruleset name=\"Sidearm Sports (partial)\" f=\"Sidearm_Sports.xml\"><rule from=\"^http://assets\\.sidearmsports\\.com/\" to=\"https://s3.amazonaws.com/assets.sidearmsports.com/\"/></ruleset>", "<ruleset name=\"Sideshowtoy.com\" f=\"Sideshowtoy.com.xml\"><securecookie host=\"^www\\.sideshowtoy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SidiЪouras\" default_off=\"refused\" f=\"Sidibouras.xml\"><securecookie host=\"^(?:www)?\\.sidibouras\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sidux-ev.org\" default_off=\"self-signed\" f=\"Sidux-ev.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sieciovo.pl\" default_off=\"expired\" f=\"Sieciovo.pl.xml\"><rule from=\"^http://(?:www\\.)?sieciovo\\.pl/\" to=\"https://sieciovo.pl/\"/></ruleset>", "<ruleset name=\"Siemens.com (mismatches)\" default_off=\"mismatch\" f=\"Siemens.com-mismatches.xml\"><rule from=\"^http://m\\.siemens\\.com/\" to=\"https://m.siemens.com/\"/></ruleset>", "<ruleset name=\"Siemens.com (partial)\" f=\"Siemens.com.xml\"><securecookie host=\"^.*\\.siemens\\.com$\" name=\".*\"/><rule from=\"^http://www\\.siemens\\.co\\.id/\" to=\"https://www.siemens.co.id/\"/><rule from=\"^http://www\\.siemens\\.co\\.jp/\" to=\"https://www.siemens.com/answers/jp/ja/\"/><rule from=\"^http://www\\.siemens\\.co\\.in/\" to=\"https://www.siemens.com/answers/in/en/\"/><rule from=\"^http://www\\.siemens\\.co\\.kr/\" to=\"https://www.siemens.com/answers/kr/ko/\"/><rule from=\"^http://(w1\\.|www\\.)?siemens\\.com/\" to=\"https://$1siemens.com/\"/><rule from=\"^http://www\\.siemens\\.com\\.(hk|mx)/\" to=\"https://www.siemens.com.$1/\"/><rule from=\"^http://www\\.siemens\\.com\\.kw/\" to=\"https://w1.siemens.com/answers/kw/en/\"/><rule from=\"^http://(?:www\\.)?siemens\\.hu/\" to=\"https://w1.siemens.com/answers/hu/hu/\"/><rule from=\"^http://(?:www\\.)?siemens\\.ie/\" to=\"https://w1.siemens.com/entry/ie/en/\"/><rule from=\"^http://(?:www\\.)?siemens\\.it/\" to=\"https://www.siemens.com/entry/it/index.htm\"/><rule from=\"^http://www\\.siemens\\.lv/\" to=\"https://w1.siemens.com/entry/lv/\"/></ruleset>", "<ruleset name=\"Sierra Club Green Home (partial)\" default_off=\"failed ruleset test\" f=\"Sierra_Club_Green_Home.xml\"><securecookie host=\"^\\.sierraclubgreenhome\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sierraware.com\" f=\"Sierraware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sig-IO.nl\" f=\"Sig-IO.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SigFig (false MCB)\" platform=\"mixedcontent\" f=\"SigFig.com-falsemixed.xml\"><rule from=\"^http://blog\\.sigfig\\.com/\" to=\"https://blog.sigfig.com/\"/></ruleset>", "<ruleset name=\"SigFig.com (partial)\" f=\"SigFig.xml\"><exclusion pattern=\"^http://blog\\.sigfig\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.www\\.sigfig\\.com$\" name=\".+\"/><rule from=\"^http://((?:beta|blog|secure|support|www)\\.)?sigfig\\.com/\" to=\"https://$1sigfig.com/\"/></ruleset>", "<ruleset name=\"Sigdet.nu\" f=\"Sigdet.nu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siggraph.org (buggy)\" default_off=\"https://www.eff.org/r.3bSc\" f=\"Siggraph.org.xml\"><rule from=\"^http://(?:www\\.)?siggraph\\.org/\" to=\"https://www.siggraph.org/\"/></ruleset>", "<ruleset name=\"SigmaBeauty\" f=\"SigmaBeauty.xml\"><rule from=\"^http://(?:www\\.)?sigmabeauty\\.com/\" to=\"https://www.sigmabeauty.com/\"/></ruleset>", "<ruleset name=\"Sigma Xi.org\" f=\"Sigma_Xi.org.xml\"><securecookie host=\"^www\\.sigmaxi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sign-Up.to\" f=\"Sign-Up.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Signal Spam\" f=\"Signal_Spam.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Signals\" f=\"Signals.xml\"><securecookie host=\"^\\.signals\\.com$\" name=\".+\"/><rule from=\"^http://signals\\.com/\" to=\"https://www.signals.com/\"/><rule from=\"^http://(images|shop|www3?)\\.signals\\.com/\" to=\"https://$1.signals.com/\"/></ruleset>", "<ruleset name=\"Sigterm.no\" default_off=\"failed ruleset test\" f=\"Sigterm.no.xml\"><rule from=\"^http://(?:www\\.)?sigterm\\.no/\" to=\"https://sigterm.no/\"/></ruleset>", "<ruleset name=\"sigxcpu.org\" platform=\"cacert\" f=\"Sigxcpu.org.xml\"><rule from=\"^http://(?:www\\.)?sigxcpu\\.org/\" to=\"https://honk.sigxcpu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sikur (partial)\" f=\"Sikur.xml\"><securecookie host=\"^(www|communication)\\.sikur\\.com(\\.br)?$\" name=\".+\"/><exclusion pattern=\"^http://signup\\.sikur\\.com/\"/><rule from=\"^http://(sikur|granitephone)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silent Circle\" f=\"Silent_Circle.xml\"><securecookie host=\"^accounts\\.silentcircle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silent Sender.com\" default_off=\"expired\" f=\"Silent_Sender.com.xml\"><securecookie host=\"^www\\.silentsender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silicon Labs\" f=\"Silicon-Labs.xml\"><securecookie host=\"^www\\.silabs\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?silabs\\.com/\" to=\"https://www.silabs.com/\"/></ruleset>", "<ruleset name=\"Silicon.com\" default_off=\"failed ruleset test\" f=\"Silicon.com.xml\"><rule from=\"^http://silicon\\.com/\" to=\"https://www.silicon.com/\"/><rule from=\"^http://www\\.silicon\\.com/\" to=\"https://www.silicon.com/\"/></ruleset>", "<ruleset name=\"Silicon Republic.com\" f=\"Silicon_Republic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silicon Valley Bank\" f=\"Silicon_Valley_Bank.xml\"><securecookie host=\"^www\\.svb\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?svb\\.com/\" to=\"https://www.svb.com/\"/></ruleset>", "<ruleset name=\"SilkRoad.com (partial)\" f=\"SilkRoad.xml\"><exclusion pattern=\"^http://(?:pages|www)\\.\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.silkroad\\.com/\" to=\"https://$1.silkroad.com/\"/></ruleset>", "<ruleset name=\"Silkn.com\" default_off=\"failed ruleset test\" f=\"Silkn.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?silkn\\.com/(?!images/|include/|RadControls/|scripts/|upload/|WebResource\\.axd)\"/><securecookie host=\"^shop\\.silkn\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?buyfacefx\\.com/\" to=\"https://www.buyfacefx.com/\"/><rule from=\"^http://(shop\\.|www\\.)?silkn\\.com/\" to=\"https://$1silkn.com/\"/></ruleset>", "<ruleset name=\"Silkroad WS (partial)\" f=\"Silkroad_WS.xml\"><exclusion pattern=\"^http://(?:www\\.)?silkroad\\.ws/(?!addons/|cron\\.php|img/)\"/><securecookie host=\"^forum\\.silkroad\\.ws$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silkspan.com\" f=\"Silkspan.com.xml\"><rule from=\"^http://(?:www\\.)?silkspan\\.com/\" to=\"https://www.silkspan.com/\"/></ruleset>", "<ruleset name=\"Silktide.com (partial)\" f=\"Silktide.xml\"><rule from=\"^http://blog\\.silktide\\.com/.*\" to=\"https://silktide.com/blog\"/><rule from=\"^http://cdn\\.silktide\\.com/\" to=\"https://d2cbphali8h73p.cloudfront.net/\"/><rule from=\"^http://assets\\.cookieconsent\\.silktide\\.com/\" to=\"https://d39hc9zyqwn1u0.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silobreaker (partial)\" f=\"Silobreaker.xml\"><securecookie host=\"^my\\.silobreaker\\.com$\" name=\".+\"/><rule from=\"^http://(api|my)\\.silobreaker\\.com/\" to=\"https://$1.silobreaker.com/\"/><rule from=\"^http://(?:cache\\.)?thumbs\\.s(?:bstatic|ilobreaker)\\.com/\" to=\"https://thumbs.silobreaker.com/\"/></ruleset>", "<ruleset name=\"Silva Wood Flooring\" f=\"Silva_Wood_Flooring.xml\"><securecookie host=\"^(?:www)?\\.silvawoodflooring\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silver Oven (partial)\" platform=\"mixedcontent\" f=\"Silver-Oven.xml\"><securecookie host=\"^(?:.*\\.)?investorflow.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SilverRush Style.com\" default_off=\"missing certificate chain\" f=\"SilverRush_Style.xml\"><securecookie host=\"^\\.silverrushstyle\\.com$\" name=\".+\"/><rule from=\"^http://(?:th\\.|www\\.)?silverrushstyle\\.com/\" to=\"https://secure.silverrushstyle.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silverflint\" default_off=\"expired\" f=\"Silverflint.xml\"><rule from=\"^http://(?:www\\.)?silverflint\\.com/(css/|favicon\\.ico|js/|xajax/)\" to=\"https://www.silverflint.com/$1\"/></ruleset>", "<ruleset name=\"Silverpop (partial)\" f=\"Silverpop.xml\"><rule from=\"^http://([\\w-]+)\\.links\\.mkt41\\.net/\" to=\"https://$1.links.mkt41.net/\"/><rule from=\"^http://content\\.mkt51\\.net/\" to=\"https://d24q9byeq1ve1q.cloudfront.net/\"/><rule from=\"^http://content\\.mkt941\\.com/\" to=\"https://d2sv5ahunhut4x.cloudfront.net/\"/><rule from=\"^http://contenta\\.mkt1710\\.com/\" to=\"https://d35xxa4d4yp600.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?pages03\\.net/\" to=\"https://www.pages03.net/\"/><rule from=\"^http://(gw|login1|www1?)\\.vtrenz\\.net/\" to=\"https://$1.vtrenz.net/\"/></ruleset>", "<ruleset name=\"silvertunnel.org\" f=\"Silvertunnel.org.xml\"><rule from=\"^http://www\\.silvertunnel\\.org/\" to=\"https://silvertunnel.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SILVERUM s.r.o.\" f=\"Silverum.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sim-technik.de\" default_off=\"mismatched\" f=\"Sim-technik.de.xml\"><rule from=\"^http://ws\\.vtc\\.sim-technik\\.de/\" to=\"https://ws.vtc.sim-technik.de/\"/></ruleset>", "<ruleset name=\"simFlight (mismatches)\" default_off=\"mismatch, self-signed\" f=\"SimFlight-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?simflight\\.\\w{2,3}$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?simrussia\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?simflight\\.(cn|com|de|es|fr|it|jp|nl)/\" to=\"https://www.simflight.$1/\"/><rule from=\"^http://(?:www\\.)?simflight\\.pt/\" to=\"https://simflight.pt/\"/><rule from=\"^http://(?:www\\.)?simrussia\\.com/\" to=\"https://simrussia.com/\"/></ruleset>", "<ruleset name=\"simFlight (partial)\" f=\"SimFlight.xml\"><securecookie host=\"^(?:.*\\.)?simmarket\\.com$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?simmarket\\.com/\" to=\"https://secure.simmarket.com/\"/></ruleset>", "<ruleset name=\"Sim City.com (partial)\" f=\"Sim_City.com.xml\"><rule from=\"^http://(?:www\\.)?simcity\\.com/(?=favicon\\.ico|sites/)\" to=\"https://www.simcity.com/\"/></ruleset>", "<ruleset name=\"Simblee.com\" f=\"Simblee.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://simblee\\.com/\" to=\"https://www.simblee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimilarGroup.com (partial)\" default_off=\"missing certificate chain\" f=\"SimilarGroup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimilarWeb.com\" f=\"SimilarWeb.xml\"><securecookie host=\"^(?:developer\\.|www\\.)?similarweb\\.com$\" name=\".+\"/><securecookie host=\"^\\.similarweb\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simlar.org (partial)\" f=\"Simlar.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simlystore.com\" f=\"Simlystore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simmtester.com\" default_off=\"expired, self-signed\" f=\"Simmtester.com.xml\"><securecookie host=\"^(?:www\\.)?simmtester\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simmtester\\.com/\" to=\"https://www.simmtester.com/\"/></ruleset>", "<ruleset name=\"Simon Butcher\" f=\"SimonButcher.name.xml\"><securecookie host=\"^simon\\.butcher\\.name$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simon Swain.com\" f=\"Simon_Swain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simons Foundation.org\" default_off=\"broken\" f=\"Simons_Foundation.org.xml\"><securecookie host=\"^\\.simonsfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simosnap.com (partial)\" f=\"Simosnap.com.xml\"><exclusion pattern=\"^http://(?:www\\.community|developers)\\.simosnap\\.com/+(?!$|\\?)\"/><securecookie host=\"^community\\.simosnap\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?community|developers)\\.simosnap\\.com/\" to=\"https://community.simosnap.com/\"/></ruleset>", "<ruleset name=\"Simple Talk.com (partial)\" f=\"Simple-Talk.xml\"><securecookie host=\"^www\\.simple-talk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simple.com\" f=\"Simple.com.xml\"><securecookie host=\"^bank\\.simple\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimpleFIN.org\" f=\"SimpleFIN.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimpleReach.com\" f=\"SimpleReach.com.xml\"><securecookie host=\"^(?:www)?\\.simplereach\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simplereach\\.com/\" to=\"https://www.simplereach.com/\"/><rule from=\"^http://cc\\.simplereach\\.com/\" to=\"https://cc.simplereach.com/\"/></ruleset>", "<ruleset name=\"Simple Pickup (partial)\" f=\"Simple_Pickup.xml\"><securecookie host=\"^(?:w*\\.)?simplepickup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simple Share Buttons.com\" f=\"Simple_Share_Buttons.com.xml\"><securecookie host=\"^(?:www\\.)?simplesharebuttons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simplebooklet.com (partial)\" default_off=\"failed ruleset test\" f=\"Simplebooklet.com.xml\"><securecookie host=\"^(?:edu\\.)?simplebooklet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simplednscrypt.org\" f=\"Simplednscrypt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simplekb.com\" f=\"Simplekb.com.xml\"><securecookie host=\"^[\\w-]+\\.simplekb\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?simplekb\\.com/\" to=\"https://$1simplekb.com/\"/></ruleset>", "<ruleset name=\"Simpli.fi (partial)\" f=\"Simpli.fi.xml\"><securecookie host=\"^\\.simpli\\.fi$\" name=\"^uid(?:_syncd)?$\"/><securecookie host=\"^app\\.simpli\\.fi$\" name=\".+\"/><rule from=\"^http://(app|i)\\.simpli\\.fi/\" to=\"https://$1.simpli.fi/\"/></ruleset>", "<ruleset name=\"Simply Hired clients\" default_off=\"mismatch\" f=\"Simply-Hired-clients.xml\"><exclusion pattern=\"^http://jobs\\.(?:datacenterknowledge|pcworld)\\.com/c/\"/><securecookie host=\"^jobs\\.(?:datacenterknowledge|nodejs|pcworld)\\.org$\" name=\".*\"/><rule from=\"^http://jobs\\.(businessinsider|datacenterknowledge|nodejs|pcworld)\\.com/\" to=\"https://jobs.$1.com/\"/></ruleset>", "<ruleset name=\"Simply Hired.com\" f=\"Simply-Hired.xml\"><exclusion pattern=\"^http://employers\\.simplyhired\\.com/+(?!l/)\"/><exclusion pattern=\"^http://support\\.simplyhired\\.com/+(?!assets/|images/|system/)\"/><securecookie host=\"^\\.simplyhired\\.com$\" name=\"^(?:__qca|__utm\\w)$\"/><securecookie host=\"^(?:ads|www)\\.simplyhired\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.simplyhired\\.com/+(?:$|\\?.*)$\" to=\"https://www.simplyhired.com/blog\"/><rule from=\"^http://blog\\.simplyhired\\.com/.*\" to=\"https://www.simplyhired.com/blog/expired\"/><rule from=\"^http://employers\\.simplyhired\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http://support\\.simplyhired\\.com/\" to=\"https://simplyhired.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simply-Partner.com\" f=\"Simply-Partner.com.xml\"><securecookie host=\"^simply-partner\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simply Stamps (partial)\" f=\"Simply-Stamps.xml\"><rule from=\"^http://(www\\.)?simplystamps\\.com/(App_Themes/|img/|[iI]mages/|(?:\\w+\\.css|(?:Script|Web)Resource\\.axd|UserLogin.aspx)(?:$|\\?))\" to=\"https://$1simplystamps.com/$2\"/></ruleset>", "<ruleset name=\"Simply Business\" f=\"Simply_Business.xml\"><securecookie host=\"^www\\.simplybusiness\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simplybusiness\\.co\\.uk/\" to=\"https://www.simplybusiness.co.uk/\"/></ruleset>", "<ruleset name=\"Simply Secure.org\" f=\"Simply_Secure.org.xml\"><securecookie host=\"^www\\.simplysecure\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simplysecure\\.org/\" to=\"https://simplysecure.org/\"/></ruleset>", "<ruleset name=\"Simply Technology.net\" f=\"Simply_Technology.net.xml\"><securecookie host=\"^(?:delivery|www)\\.simplytechnology\\.net$\" name=\".+\"/><rule from=\"^http://(delivery|www)\\.simplytechnology\\.net/\" to=\"https://$.simplytechnology.net/\"/></ruleset>", "<ruleset name=\"simquadrat.de (partial)\" f=\"Simquadrat.de.xml\"><securecookie host=\"^(?:www\\.)?simquadrat\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simyo (partial)\" f=\"Simyo.xml\"><securecookie host=\"^.*\\.simyo\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simyo\\.de/\" to=\"https://www.simyo.de/\"/><rule from=\"^http://a\\.simyo\\.de/\" to=\"https://simyo-de.122.2o7.net/\"/><rule from=\"^http://(b|cdn|handyshop|m|sync)\\.simyo\\.de/\" to=\"https://$1.simyo.de/\"/></ruleset>", "<ruleset name=\"Sina (problematic)\" default_off=\"mismatch\" f=\"Sina-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.cn (partial)\" f=\"Sina.cn.xml\"><securecookie host=\"^samsungapps\\.sina\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com.cn (mixed content)\" platform=\"mixedcontent\" f=\"Sina.com.cn-mixedcontent.xml\"><securecookie host=\"^(?:api\\.t|weather)\\.sina\\.com\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.is\" f=\"Sina.is.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com.cn (partial)\" f=\"Sina.xml\"><securecookie host=\"^(?:2008mail|help|mail|qipai|vip)\\.sina\\.com\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina App.com (partial)\" f=\"Sina_App.xml\"><exclusion pattern=\"^http://lib\\.sinaapp\\.com/\"/><securecookie host=\"^(?:.+\\.)?sinaapp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sinaapp\\.com/\" to=\"https://$1sinaapp.com/\"/></ruleset>", "<ruleset name=\"Weibo.cn (partial)\" f=\"Sina_Weibo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinaimg.cn (partial)\" f=\"Sinaimg.cn.xml\"><rule from=\"^http://tp\\d\\.sinaimg\\.cn/\" to=\"https://tpssl.weibo.cn/\"/></ruleset>", "<ruleset name=\"Sinefa.com (partial)\" f=\"Sinefa.com.xml\"><securecookie host=\"^controller\\.sinefa\\.com$\" name=\".+\"/><rule from=\"^http://controller\\.sinefa\\.com/\" to=\"https://controller.sinefa.com/\"/><rule from=\"^http://community\\.sinefa\\.com/\" to=\"https://sinefa.zendesk.com/\"/></ruleset>", "<ruleset name=\"SingleHop (partial)\" f=\"SingleHop.xml\"><securecookie host=\"^(?:\\.|leap3\\.|www\\.)?singlehop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Singlefeed\" f=\"Singlefeed.xml\"><securecookie host=\"^(?:.*\\.)?singlefeed\\.com$\" name=\".*\"/><rule from=\"^http://(reporting|www)\\.singlefeed\\.com/\" to=\"https://$1.singlefeed.com/\"/></ruleset>", "<ruleset name=\"Singularity Hub (partial)\" f=\"Singularity_Hub.xml\"><exclusion pattern=\"^http://(?:www\\.)?singularityhub\\.com/(?:\\d{4}/\\d\\d/\\d\\d/[\\w-]+/|(?:about|(?:author|category)/[\\w-]+|advertise|contact|membership-signup|privacy-policy|singularity-101)/?|video-central/?$|wp-login\\.php)?(?:\\?.*)?$\"/><exclusion pattern=\"^http://(?:www\\.)?singularityhub\\.com/(?:debate-central)(?:$|\\?|/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinica.edu.tw (partial)\" f=\"Sinica.edu.tw.xml\"><exclusion pattern=\"^http://aao\\.sinica\\.edu\\.tw/+(?!CSS/|download/|images/|public/login\\.php)\"/><rule from=\"^http://(aao|app|aslib|db3n2u|db3x|gate|irb|itsdesk|sso|www)\\.sinica\\.edu\\.tw/\" to=\"https://$1.sinica.edu.tw/\"/><rule from=\"^http://(?:www\\.)?ascc\\.sinica\\.edu/\" to=\"https://ascc.sinica.edu/\"/><rule from=\"^http://edir\\.sinica\\.edu\\.tw:8443/\" to=\"https://edir.sinica.edu.tw:8443/\"/></ruleset>", "<ruleset name=\"Sinn Fein\" platform=\"mixedcontent\" f=\"SinnFein.xml\"><rule from=\"^http://(?:www\\.)?sinnfein\\.ie/\" to=\"https://www.sinnfein.ie/\"/></ruleset>", "<ruleset name=\"Sinoptik.ua (partial)\" default_off=\"mismatched\" f=\"Sinoptik.ua.xml\"><rule from=\"^http://informers\\.sinoptik\\.ua/\" to=\"https://informers.sinoptik.ua/\"/><rule from=\"^http://sinonptik-cdn1\\.un\\.net\\.ua/\" to=\"https://sinonptik-cdn1.un.net.ua/\"/></ruleset>", "<ruleset name=\"Sins of a Solar Empire.com (partial)\" f=\"Sins_of_a_Solar_Empire.com.xml\"><securecookie host=\"^(?:www\\.)?sinsofasolarempire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siosm.fr\" f=\"Siosm.fr.xml\"><rule from=\"^http://((?:fs|git|po|repo|tim|www)\\.)?siosm\\.fr/\" to=\"https://$1siosm.fr/\"/></ruleset>", "<ruleset name=\"Sipgate.co.uk (partial)\" f=\"Sipgate.co.uk.xml\"><securecookie host=\"^\\.live\\.sipgate\\.co\\.uk$\" name=\"^siptrack$\"/><securecookie host=\"^(?:secure\\.live|www)\\.sipgate\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sipgate\\.co\\.uk/+user/*(?:\\?.*)?$\" to=\"https://www.sipgate.co.uk/basic/\"/><rule from=\"^http://sipgate\\.co\\.uk/\" to=\"https://www.sipgate.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sipgate.io (partial)\" f=\"Sipgate.io.xml\"><securecookie host=\"^(?:www\\.)?sipgate\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sipgate.de (partial)\" f=\"Sipgate.xml\"><exclusion pattern=\"^http://www\\.sipgate\\.de/+(?!(?:basic|design|trunking)(?:$|[?/]))\"/><securecookie host=\"^secure\\.live\\.sipgate\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sirportly (partial)\" f=\"Sirportly.xml\"><exclusion pattern=\"^http://(?:www\\.)?sirportly\\.com/(?!(?:customers|help|signup)(?:$|\\?|/)|images/|javascripts/|stylesheets/)\"/><securecookie host=\"^app\\.sirportly\\.com$\" name=\".+\"/><rule from=\"^http://(app\\.|www\\.)?sirportly\\.com/\" to=\"https://$1sirportly.com/\"/></ruleset>", "<ruleset name=\"Sirrix (partial)\" f=\"Sirrix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sirrix\\.de/\" to=\"https://www.sirrix.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SirsiDynix.net.uk\" f=\"SirsiDynix.net.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site24x7.com\" f=\"Site24x7.xml\"><securecookie host=\"^(?:.*\\.)?site24x7\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site5 (partial)\" f=\"Site5.xml\"><exclusion pattern=\"^http://forums\\.\"/><securecookie host=\".*\\.site5\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?site5\\.com/\" to=\"https://$1site5.com/\"/></ruleset>", "<ruleset name=\"SiteAdvisor.com\" default_off=\"failed ruleset test\" f=\"SiteAdvisor.com.xml\"><rule from=\"^http://(?:www\\.)?siteadvisor\\.com/\" to=\"https://www.siteadvisor.com/\"/></ruleset>", "<ruleset name=\"SiteCompass.com (partial)\" f=\"SiteCompass.com.xml\"><rule from=\"^http://mm\\.sitecompass\\.com/\" to=\"https://mm.sitecompass.com/\"/></ruleset>", "<ruleset name=\"SiteGround.com\" f=\"SiteGround.xml\"><securecookie host=\"^.*\\.siteground\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteHeart.com\" f=\"SiteHeart.xml\"><securecookie host=\"^(?:www\\.)?siteheart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteLock.com (partial)\" f=\"SiteLock.xml\"><exclusion pattern=\"^http://blog\\.sitelock\\.com/(?!feed/)\"/><securecookie host=\"^\\.sitelock\\.com$\" name=\"^(?:btrack|incap_ses_\\d+_\\d+|nlbi_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:admin|mapi|secure|shield|wiki|www)\\.sitelock\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteOrigin.com\" f=\"SiteOrigin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SitePen.com\" f=\"SitePen.com.xml\"><securecookie host=\"^(?:hub|support|www)\\.sitepen\\.com$\" name=\".+\"/><rule from=\"^http://((?:hub|support|www)\\.)?sitepen\\.com/\" to=\"https://$1sitepen.com/\"/></ruleset>", "<ruleset name=\"SitePoint.com (partial)\" f=\"SitePoint.xml\"><exclusion pattern=\"^http://www\\.sitepoint\\.com/+(?!favicon\\.ico|wp-content/)\"/><rule from=\"^http://i2\\.sitepoint\\.com/\" to=\"https://www.sitepoint.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteScout.com (partial)\" f=\"SiteScout.xml\"><securecookie host=\"^\\.sitescout\\.com$\" name=\"^(?:km_\\w+|_ssum|ssi|__utm\\w)$\"/><securecookie host=\"^rtb\\.sitescout\\.com$\" name=\".+\"/><rule from=\"^http://www-cdn\\.sitescout\\.com/\" to=\"https://cdnsitescout1-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteTagger.co.uk (problematic)\" default_off=\"expired, self-signed\" f=\"SiteTagger.co.uk-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteTagger.co.uk (partial)\" f=\"SiteTagger.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteTrust Network\" f=\"SiteTrust-Network.xml\"><securecookie host=\"^(?:www\\.)?sitetrustnetwork\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteUptime.com\" f=\"SiteUptime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site Blindado\" default_off=\"failed ruleset test\" f=\"Site_Blindado.xml\"><securecookie host=\"^(?:portal2|selo|www)?\\.siteblindado\\.com$\" name=\".+\"/><securecookie host=\"^(?:portal|selo)?\\.siteblindado\\.com\\.br$\" name=\".+\"/><rule from=\"^http://((?:portal2|selo|www)\\.)?siteblindado\\.com/\" to=\"https://$1siteblindado.com/\"/><rule from=\"^http://portal\\.siteblindado\\.com/\" to=\"https://portal.siteblindado.com.br/\"/><rule from=\"^http://(portal|selo)\\.siteblindado\\.com\\.br/\" to=\"https://$1.siteblindado.com.br/\"/><rule from=\"^http://www\\.siteblindado\\.com\\.br/\" to=\"https://www.siteblindado.com/\"/></ruleset>", "<ruleset name=\"Site Control.us\" f=\"Site_Control.us.xml\"><securecookie host=\"^\\.sitecontrol\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site Safe.org.nz\" f=\"Site_Safe.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitefinity.com (partial)\" f=\"Sitefinity.com.xml\"><rule from=\"^http://(www\\.)?sitefinity\\.com/(?=Sitefinity/Public/|Telerik\\.Web\\.UI\\.WebResource\\.axd|assets/|favicon\\.ico|sitefinityimages/)\" to=\"https://$1sitefinity.com/\"/></ruleset>", "<ruleset name=\"Siteimprove (partial)\" f=\"Siteimprove.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitemason (partial)\" f=\"Sitemason.xml\"><rule from=\"^http://(?:www\\.)?sitemasonmail\\.com\\.moses\\.com/\" to=\"https://secure.sitemason.com/www.sitemasonmail.com/\"/><rule from=\"^http://(?:www\\.)?sitemason\\.com/\" to=\"https://www.sitemason.com/\"/><rule from=\"^http://developer\\.sitemason\\.com/+\" to=\"https://www.sitemason.com/developers/\"/><rule from=\"^http://secure\\.sitemason\\.com/\" to=\"https://secure.sitemason.com/\"/><rule from=\"^http://support\\.sitemason\\.com/(?=assets/|generated/|images/|system/)\" to=\"https://sitemason.zendesk.com/\"/><rule from=\"^http://(?:webmail\\.sitemason|(?:webmail\\.|www\\.)?sitemasonmail)\\.com/+\" to=\"https://apps.rackspace.com/\"/></ruleset>", "<ruleset name=\"sitemeter.com\" f=\"Sitemeter.xml\"><rule from=\"^http://\\w{3}\\.sitemeter\\.com/js/\" to=\"https://www.sitemeter.com/js/\"/></ruleset>", "<ruleset name=\"Siteor (partial)\" f=\"Siteor.xml\"><securecookie host=\"^(?:.*\\.)?siteor\\.pl$\" name=\".+\"/><rule from=\"^http://(?:lavina\\.|(secure\\.)|www\\.)?siteor\\.pl/\" to=\"https://$1siteor.pl/\"/><rule from=\"^http://(asset|f)s\\.siteor\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/$1s.siteor.com/\"/></ruleset>", "<ruleset name=\"Siteparc.fr (partial)\" f=\"Siteparc.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitestat.com (partial)\" f=\"Sitestat.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitizens\" default_off=\"failed ruleset test\" f=\"Sitizens.xml\"><securecookie host=\"^\\.sitizens\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sitizens\\.com/\" to=\"https://sitizens.com/\"/></ruleset>", "<ruleset name=\"Sitola\" f=\"Sitola.xml\"><securecookie host=\"^(?:www\\.)?sitola\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sivers.org\" f=\"Sivers.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:.+\\.)?sivers\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SixApart\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SixApart.xml\"><rule from=\"^http://sixapart\\.com/\" to=\"https://sixapart.com/\"/><rule from=\"^http://(help|www)\\.sixapart\\.com/\" to=\"https://$1.sixapart.com/\"/><rule from=\"^http://(?:www\\.)?sixapart\\.jp/\" to=\"https://www.sixapart.jp/\"/></ruleset>", "<ruleset name=\"Sixxs.net\" f=\"Sixxs.net.xml\"><securecookie host=\"^\\.sixxs\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sizzle Sites\" default_off=\"failed ruleset test\" f=\"Sizzle-Sites.xml\"><securecookie host=\"^(?:.*\\.)sizzlesitesinc\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SizzleJS.com\" f=\"SizzleJS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sk-nic.sk\" f=\"Sk-nic.sk.xml\"><rule from=\"^http://(?:www\\.)?sk-nic\\.sk/\" to=\"https://www.sk-nic.sk/\"/></ruleset>", "<ruleset name=\"Skandia\" f=\"Skandia.se.xml\"><rule from=\"^http://www\\.skandia\\.se/\" to=\"https://www.skandia.se/\"/><rule from=\"^http://skandia\\.se/\" to=\"https://www.skandia.se/\"/></ruleset>", "<ruleset name=\"Skandiabanken\" f=\"Skandiabanken.xml\"><rule from=\"^http://(?:www\\.)?skandiabanken\\.no/\" to=\"https://www.skandiabanken.no/\"/><rule from=\"^http://secure\\.skandiabanken\\.no/\" to=\"https://secure.skandiabanken.no/\"/><rule from=\"^http://trader\\.skandiabanken\\.no/\" to=\"https://trader.skandiabanken.no/\"/></ruleset>", "<ruleset name=\"Skanetrafiken.se\" default_off=\"failed ruleset test\" f=\"Skanetrafiken.se.xml\"><securecookie host=\"skanetrafiken\\.se$\" name=\".*\"/><securecookie host=\"\\.skanetrafiken\\.se$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?([^\\.]+\\.)?skanetrafiken\\.se/\" to=\"https://www.$1skanetrafiken.se/\"/></ruleset>", "<ruleset name=\"Skat.dk\" f=\"Skat.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkateMall (partial)\" f=\"SkateMall.xml\"><rule from=\"^http://(www\\.)?skatemall\\.com/((?:cart|checkout|login|order-lookup)\\.aspx|controls/|images/|img/|(?:Script|Web)Resource\\.axd|scripts/|themes/)\" to=\"https://$1skatemall.com/$2\"/></ruleset>", "<ruleset name=\"Skatteministeriet (partial)\" default_off=\"expired\" f=\"Skatteministeriet.xml\"><rule from=\"^http://(?:www\\.)?skm\\.dk/(css|gfx|js|public)/\" to=\"https://www.skm.dk/$1/\"/></ruleset>", "<ruleset name=\"Skch.me\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Skch.me.xml\"><securecookie host=\"^wins\\.skch\\.me$\" name=\".+\"/><rule from=\"^http://(?:(wins\\.)|www\\.)?skch\\.me/\" to=\"https://$1skch.me/\"/></ruleset>", "<ruleset name=\"Skeptic.org.uk\" f=\"Skeptic.org.uk.xml\"><securecookie host=\"^www\\.skeptic\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skeptic shop\" f=\"Skeptic.xml\"><rule from=\"^http://shop\\.skeptic\\.com/\" to=\"https://shop.skeptic.com/\"/></ruleset>", "<ruleset name=\"Skeptic Ink.com\" default_off=\"mismatched\" f=\"Skeptic_Ink.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skeptical Science\" f=\"Skeptical_Science.xml\"><securecookie host=\"^(?:www\\.)?skepticalscience\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SketchThemes.com\" f=\"SketchThemes.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sketchfab.com (partial)\" f=\"Sketchfab.com.xml\"><securecookie host=\"^(?:www\\.)?sketchfab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"skillclub.com\" f=\"Skillclub.com.xml\"><rule from=\"^http://cluster-1\\.skillclub\\.com/\" to=\"https://plarium.hs.llnwd.net/v1//\"/></ruleset>", "<ruleset name=\"Skills Matter.com\" f=\"Skills_Matter.com.xml\"><securecookie host=\"^(?:www\\.)?skillsmatter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkimLinks (problematic)\" default_off=\"mismatched\" f=\"SkimLinks-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkimLinks.me\" f=\"SkimLinks.me.xml\"><rule from=\"^http://skimlinks\\.me/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"SkimLinks (partial)\" f=\"SkimLinks.xml\"><exclusion pattern=\"^http://(?:api-products?|arthur|redirect)\\.skimlinks.com/\"/><exclusion pattern=\"^http://info\\.skimlinks\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^\\.skimlinks\\.com$\" name=\".+\"/><rule from=\"^http://info\\.skimlinks\\.com/+(?:\\?.*)?$\" to=\"https://skimlinks.com/\"/><rule from=\"^http://info\\.skimlinks\\.com/\" to=\"https://na-lon03.marketo.com/\"/><rule from=\"^http://([\\w-]+\\.)?skimlinks\\.com/\" to=\"https://$1skimlinks.com/\"/></ruleset>", "<ruleset name=\"Skimresources.com\" f=\"Skimresources.com.xml\"><securecookie host=\"^\\.skimresources\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skinflint\" f=\"Skinflint.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skitch\" f=\"Skitch.xml\"><securecookie host=\"^(?:.*\\.)?skitch\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?skitch\\.com/\" to=\"https://skitch.com/\"/><rule from=\"^http://img\\.skitch\\.com/\" to=\"https://img.skitch.com/\"/></ruleset>", "<ruleset name=\"Sklik.cz\" f=\"Sklik.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skm.io\" f=\"Skm.io.xml\"><rule from=\"^http://(?:www\\.)?skm\\.io/\" to=\"https://po.st/\"/></ruleset>", "<ruleset name=\"The Skoop.ca\" f=\"Skoop.xml\"><rule from=\"^http://(?:www\\.)?theskoop\\.ca/+(?:\\?.*)?$\" to=\"https://www.facebook.com/theskoopinc\"/><rule from=\"^http://(?:www\\.)?theskoop\\.ca/+([^?]+).*\" to=\"https://www.facebook.com/theskoopinc/$1\"/></ruleset>", "<ruleset name=\"Skreened.com (partial)\" f=\"Skreened.com.xml\"><rule from=\"^http://(www\\.)?skreened\\.com/(?=(?:account|login)(?:$|[?/])|content-link/|css/|favicon\\.ico|fonts/|images/|js/|render-(?:gif|produc)t/)\" to=\"https://$1skreened.com/\"/></ruleset>", "<ruleset name=\"Skrill.com\" default_off=\"failed ruleset test\" f=\"Skrill.com.xml\"><securecookie host=\".*\\.skrill\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|help|sso|www)\\.)?skrill\\.com/\" to=\"https://$1skrill.com/\"/></ruleset>", "<ruleset name=\"skrilnetz.net\" f=\"Skrilnetz.net.xml\"><securecookie host=\"^skrilnetz\\.net$\" name=\".+\"/><rule from=\"^http://www\\.skrilnetz\\.net/\" to=\"https://skrilnetz.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skroutz.gr\" f=\"Skroutz.gr.xml\"><securecookie host=\"^(?:.*\\.)?skroutz\\.gr$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?skroutzstore\\.gr$\" name=\".*\"/><exclusion pattern=\"^http://team\\.skroutz\\.gr/\"/><rule from=\"^http://(\\w+\\.)?skroutz\\.gr/\" to=\"https://$1skroutz.gr/\"/><rule from=\"^http://(\\w+\\.)?skroutzstore\\.gr/\" to=\"https://$1skroutzstore.gr/\"/></ruleset>", "<ruleset name=\"SkullSecurity.org\" f=\"SkullSecurity.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky-ip.org\" f=\"Sky-ip.org.xml\"><rule from=\"^http://(?:www\\.)?sky-ip\\.org/\" to=\"https://www.sky-ip.org/\"/></ruleset>", "<ruleset name=\"Sky.com (partial)\" f=\"Sky.com.xml\"><exclusion pattern=\"^http://www\\.sky\\.com/+(?!$|\\?|(?:findandwatch|tv|watch)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|mbox|s_\\w+)$\"/><securecookie host=\"^(?!www\\.sky\\.com$)\\w\" name=\".\"/><rule from=\"^http://sky\\.com/\" to=\"https://www.sky.com/\"/><rule from=\"^http://metrics\\.sky\\.com/\" to=\"https://smetrics.sky.com/\"/><rule from=\"^http://f\\.newsletter\\.sky\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http://suggest\\.search\\.sky\\.com/\" to=\"https://secure.suggest.search.sky.com/\"/><rule from=\"^http://www\\.teachers\\.sky\\.com/\" to=\"https://teachers.sky.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky.de\" f=\"Sky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkySQL.com\" f=\"SkySQL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkyViewingHelp.com\" default_off=\"failed ruleset test\" f=\"SkyViewingHelp.com.xml\"><securecookie host=\"^(?:www\\.)?skyviewinghelp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?skyviewinghelp\\.com/\" to=\"https://www.skyviewinghelp.com/\"/></ruleset>", "<ruleset name=\"Sky Academy.com\" f=\"Sky_Academy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky News.Au (partial)\" default_off=\"mismatched\" f=\"Sky_News.Au.xml\"><rule from=\"^http://static\\.skynews\\.com\\.au/\" to=\"https://static.skynews.com.au/\"/></ruleset>", "<ruleset name=\"Sky Programme Information.co.uk\" f=\"Sky_Programme_Information.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.skyprogrammeinformation\\.co\\.uk/\" to=\"https://skyprogrammeinformation.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky Sports.com (partial)\" f=\"Sky_Sports.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky & Telescope (problematic)\" default_off=\"connection refused\" f=\"Sky_and_Telescope-problematic.xml\"><rule from=\"^http://media\\.skyandtelescope\\.com/\" to=\"https://media.skyandtelescope.com/\"/></ruleset>", "<ruleset name=\"Sky & Telescope (partial)\" default_off=\"failed ruleset test\" f=\"Sky_and_Telescope.xml\"><rule from=\"^http://link\\.eml\\.skyandtelescope\\.com/\" to=\"https://link.eml.skyandtelescope.com/\"/></ruleset>", "<ruleset name=\"Skydsl.eu\" default_off=\"failed ruleset test\" f=\"Skydsl.eu.xml\"><rule from=\"^http://skydsl\\.eu/\" to=\"https://skydsl.eu/\"/><rule from=\"^http://([^/:@\\.]+)\\.skydsl\\.eu/\" to=\"https://$1.skydsl.eu/\"/></ruleset>", "<ruleset name=\"Skylark cloud.com\" f=\"Skylark_cloud.com.xml\"><securecookie host=\"^(?:www\\.)?skylarkcloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skyline Registrations.co.uk\" default_off=\"failed ruleset test\" f=\"Skyline_Registrations.co.uk.xml\"><rule from=\"^http://(?:www\\.)?skylineregistrations\\.co\\.uk/\" to=\"https://www.skylineregistrations.co.uk/\"/></ruleset>", "<ruleset name=\"Skylink\" f=\"Skylink.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skype.com (partial)\" f=\"Skype.xml\"><securecookie host=\".*\\.skype\\.com$\" name=\".+\"/><rule from=\"^http://skype\\.com/\" to=\"https://www.skype.com/\"/><rule from=\"^http://beta\\.skype\\.com/\" to=\"https://go.skype.com/api/v1/domainRedirect/beta.skype.com/\"/><rule from=\"^http://metrics\\.skype\\.com/\" to=\"https://smetrics.skype.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skype assets.com\" f=\"Skype_assets.com.xml\"><rule from=\"^http://www\\.skypeassets\\.com/\" to=\"https://secure.skypeassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skyrider GraalOnline\" default_off=\"failed ruleset test\" f=\"Skyrider_GraalOnline.xml\"><securecookie host=\"^\\.skyriderplay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slac.com\" default_off=\"self-signed\" f=\"Slac.com.xml\"><rule from=\"^http://(?:www\\.)?slac\\.com/\" to=\"https://www.slac.com/\"/></ruleset>", "<ruleset name=\"Slack.com\" f=\"Slack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slanted.de (partial)\" f=\"Slanted.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlashCDN.com\" f=\"SlashCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashbits.com\" default_off=\"failed ruleset test\" f=\"Slashbits.com.xml\"><securecookie host=\"^\\.slashbits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot.org (mismatches)\" default_off=\"mismatched\" f=\"Slashdot-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot.org (partial)\" f=\"Slashdot.xml\"><exclusion pattern=\"^http://(?:m\\.)?slashdot\\.org/(?!images/|login\\.pl|my/|submission|submit|topic/|webcasts)\"/><securecookie host=\"^\\w\" name=\"^w3tc_referrer$\"/><rule from=\"^http://slashdot\\.org/images/\" to=\"https://images.slashdot.org/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot Media.com\" f=\"Slashdot_Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slate.fr\" f=\"Slate.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slavery Footprint.org\" f=\"Slavery_Footprint.org.xml\"><securecookie host=\"^\\.slaveryfootprint\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slax Linux\" f=\"Slax_Linux.xml\"><securecookie host=\"^\\.slax\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Slender Kitchen\" f=\"Slender_Kitchen.xml\"><securecookie host=\"^(?:www)?\\.slenderkitchen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sleviste.cz (partial)\" default_off=\"mismatched\" f=\"Sleviste.cz.xml\"><rule from=\"^http://img\\.sleviste\\.cz/\" to=\"https://img.sleviste.cz/\"/></ruleset>", "<ruleset name=\"SliTaz.org\" default_off=\"self-signed\" f=\"SliTaz.org.xml\"><rule from=\"^http://(?:www\\.)?slitaz\\.org/\" to=\"https://www.slitaz.org/\"/><rule from=\"^http://(mirror|pkgs)\\.slitaz\\.org/\" to=\"https://$1.slitaz.org/\"/><rule from=\"^http://shop\\.slitaz\\.org/\" to=\"https://slitaz.spreadshirt.net/\"/></ruleset>", "<ruleset name=\"Slice\" default_off=\"failed ruleset test\" f=\"Slice.xml\"><securecookie host=\"^www\\.(?:go|project)?slice\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(go|project)?slice\\.com/\" to=\"https://www.$1slice.com/\"/></ruleset>", "<ruleset name=\"SlickEdit.com\" f=\"SlickEdit.com.xml\"><securecookie host=\"^(?:www)?\\.slickedit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slick Products\" default_off=\"failed ruleset test\" f=\"Slick_Products.xml\"><securecookie host=\"^www\\.slickproductsusa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slickdeals\" f=\"Slickdeals.xml\"><securecookie host=\"^(?:.*\\.)?slickdeals\\.net$\" name=\".+\"/><rule from=\"^http://((?:archive|beta|blog|i|img|m|www)\\.)?slickdeals\\.net/\" to=\"https://$1slickdeals.net/\"/><rule from=\"^http://static\\.slickdeal(?:z\\.net|scdn\\.com)/\" to=\"https://slickdeals.net/\"/></ruleset>", "<ruleset name=\"Slid.es (partial)\" f=\"Slid.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlideDeck (partial)\" default_off=\"connection refused\" f=\"SlideDeck.xml\"><securecookie host=\"^www\\.slidedeck\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlideMyPics.com (partial)\" f=\"SlideMyPics.xml\"><rule from=\"^http://files\\.slidemypics\\.com/\" to=\"https://s3.amazonaws.com/files.slidemypics.com/\"/></ruleset>", "<ruleset name=\"SlideShare.net (partial)\" f=\"SlideShare.xml\"><exclusion pattern=\"^http://help\\.slideshare\\.com/(?!attachments/|favicon\\.ico|generated/|images/|system/)\"/><exclusion pattern=\"^http://www\\.slideshare\\.net/(?!elqNow/|favicon\\.ico|images/|(?:create|forgot-password|login|signup)(?:$|[?/])|slideshow/embed_code/|stylesheets/)\"/><securecookie host=\"^\\.slideshare\\.net$\" name=\"^(?:_smtLastVisitedHost|__utm\\w)$\"/><rule from=\"^http://help\\.slideshare\\.com/\" to=\"https://slideshare.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlideShareCDN.com\" f=\"SlideShareCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slides.com (partial)\" f=\"Slides.com.xml\"><securecookie host=\"^\\.slides\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlipFire\" default_off=\"expired, self-signed\" f=\"SlipFire.xml\"><rule from=\"^http://(?:www\\.)?slipfire\\.com/\" to=\"https://slipfire.com/\"/></ruleset>", "<ruleset name=\"Slo-Tech.com\" f=\"Slo-Tech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sloan Digital Sky Survey (partial)\" f=\"Sloan-Digital-Sky-Survey.xml\"><exclusion pattern=\"^http://www-visualmedia\\.\"/><securecookie host=\"^(?:.*\\.)?sdss3\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?sdss3\\.org/\" to=\"https://$1sdss3.org/\"/></ruleset>", "<ruleset name=\"The Sloan Consortium (partial)\" f=\"Sloan_Consortium.xml\"><rule from=\"^http://(?:www\\.)?sloanconsortium\\.org/sites/\" to=\"https://sloanconsortium.org/sites/\"/></ruleset>", "<ruleset name=\"Slon.ru\" f=\"Slon.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.slon\\.ru/\" to=\"https://slon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slotsfrisoren.dk\" f=\"Slotsfrisoren.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slough.gov.uk (partial)\" f=\"Slough.gov.uk.xml\"><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://(?:css|static)\\.slough\\.gov\\.uk/\" to=\"https://www.slough.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlovakGoverment\" f=\"SlovakGoverment.xml\"><rule from=\"^http://(?:www\\.)?slovensko\\.sk/\" to=\"https://www.slovensko.sk/\"/><rule from=\"^http://(?:www\\.)?vlada\\.gov\\.sk/\" to=\"https://vlada.gov.sk/\"/><rule from=\"^http://(?:www\\.)?crz\\.gov\\.sk/\" to=\"https://www.crz.gov.sk/\"/><rule from=\"^http://(?:www\\.)?crp\\.gov\\.sk/\" to=\"https://crp.gov.sk/\"/><rule from=\"^http://(?:www\\.)?prezident\\.sk/\" to=\"https://www.prezident.sk/\"/><rule from=\"^http://(?:www\\.)?mosr\\.sk/\" to=\"https://www.mosr.sk/\"/><rule from=\"^http://(?:www\\.)?foreign\\.gov\\.sk/\" to=\"https://www.mzv.sk/\"/><rule from=\"^http://(?:www\\.)?justice\\.gov\\.sk/\" to=\"https://www.justice.gov.sk/\"/><rule from=\"^http://(?:www\\.)?justice\\.sk/\" to=\"https://www.justice.gov.sk/\"/><rule from=\"^http://(?:www\\.)?uvo\\.gov\\.sk/\" to=\"https://www.uvo.gov.sk/\"/><rule from=\"^http://(?:www\\.)?sav\\.sk/\" to=\"https://www.sav.sk/\"/><rule from=\"^http://(?:www\\.)?sutn\\.sk/\" to=\"https://www.sutn.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slovakrail.sk\" f=\"Slovakrail.sk.xml\"><rule from=\"^http://(?:www\\.)?slovakrail\\.sk/\" to=\"https://www.slovakrail.sk/\"/><rule from=\"^http://ikvc\\.slovakrail\\.sk/\" to=\"https://ikvc.slovakrail.sk/\"/></ruleset>", "<ruleset name=\"Slovenska_Sporitelna\" f=\"SlovenskaSporitelna.xml\"><rule from=\"^http://slsp\\.sk/\" to=\"https://www.slsp.sk/\"/><rule from=\"^http://([^/:@]*)\\.slsp\\.sk/\" to=\"https://$1.slsp.sk/\"/></ruleset>", "<ruleset name=\"SlySoft\" default_off=\"Cert warning\" f=\"SlySoft.xml\"><rule from=\"^http://forum\\.slysoft\\.com/\" to=\"https://forum.slysoft.com/\"/><rule from=\"^http://(?:www\\.)?slysoft\\.com/\" to=\"https://www.slysoft.com/\"/></ruleset>", "<ruleset name=\"Slyar.com\" f=\"Slyar.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smack.co.uk\" f=\"Smack.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smackcoders.com\" f=\"Smackcoders.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://smackcoders\\.com/\" to=\"https://www.smackcoders.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Small World Labs.com (partial)\" f=\"Small_World_Labs.com.xml\"><rule from=\"^http://static\\.smallworldlabs\\.com/\" to=\"https://static.smallworldlabs.com/\"/></ruleset>", "<ruleset name=\"Smallbits.com (partial)\" f=\"Smallbits.com.xml\"><rule from=\"^http://secure\\.smallbits\\.com/\" to=\"https://secure.smallbits.com/\"/></ruleset>", "<ruleset name=\"SmarTrend\" f=\"SmarTrend.xml\"><rule from=\"^http://(?:www\\.)?mysmartrend\\.com/\" to=\"https://www.mysmartrend.com/\"/></ruleset>", "<ruleset name=\"Smart AdServer.com (partial)\" f=\"Smart-AdServer.xml\"><securecookie host=\"^\\.\" name=\"^(?:pdomid|pbw|pid|sasd2?|TestIfCookieP?|vs)$\"/><securecookie host=\"^(?:diff3?|im2|manage|www)\\.smartadserver\\.com$\" name=\".\"/><rule from=\"^http://(?:www\\.)?smartadserver\\.com/\" to=\"https://www.smartadserver.com/\"/><exclusion pattern=\"^http://(?:www\\.)?smartadserver\\.com/(?!(?:images/)?shim\\.gif$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart-Invests.biz\" default_off=\"failed ruleset test\" f=\"Smart-Invests.biz.xml\"><securecookie host=\"^(?:www)?\\.smart-invests\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart-Mail\" default_off=\"failed ruleset test\" f=\"Smart-Mail.xml\"><securecookie host=\"^(?:www\\.)?smart-mail\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?smart-mail\\.de/\" to=\"https://www.smart-mail.de/\"/></ruleset>", "<ruleset name=\"Smart.ly\" f=\"Smart.ly.xml\"><securecookie host=\"^\\.smart\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartBear (partial)\" default_off=\"failed ruleset test\" f=\"SmartBear.xml\"><securecookie host=\"^my\\.smartbear\\.com$\" name=\".*\"/><securecookie host=\"^login\\.softwareplanner\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alertsite\\.com/\" to=\"https://www.alertsite.com/\"/><rule from=\"^http://clientservices\\.automatedqa\\.com/\" to=\"https://my.smartbear.com/\"/><rule from=\"^http://my\\.smartbear\\.com/\" to=\"https://my.smartbear.com/\"/><rule from=\"^http://login\\.softwareplanner\\.com/\" to=\"https://login.softwareplanner.com/\"/></ruleset>", "<ruleset name=\"SmartBrief\" f=\"SmartBrief.xml\"><securecookie host=\"^(?:.*\\.)?smartbrief\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartFTP\" f=\"SmartFTP.xml\"><rule from=\"^http://(?:www\\.)?smartftp\\.com/\" to=\"https://www.smartftp.com/\"/></ruleset>", "<ruleset name=\"SmartHide (partial)\" default_off=\"expired\" f=\"SmartHide.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.smarthide\\.com/\" to=\"https://smarthide.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartOS.org\" f=\"SmartOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartPlanet.com (mismatched)\" default_off=\"mismatched\" f=\"SmartPlanet.com-problematic.xml\"><securecookie host=\"^(?:www)?\\.smartplanet\\.com$\" name=\".+\"/><rule from=\"^http://www\\.smartplanet\\.com/\" to=\"https://www.smartplanet.com/\"/></ruleset>", "<ruleset name=\"SmartPlanet.com (partial)\" default_off=\"failed ruleset test\" f=\"SmartPlanet.com.xml\"><securecookie host=\"^secure\\.smartplanet\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.)?smartplanet\\.com/\" to=\"https://$1smartplanet.com/\"/><rule from=\"^http://www\\.smartplanet\\.com/(?=[\\d.]+/bundles/smartplanetcore/css/)\" to=\"https://smartplanet.com/\"/></ruleset>", "<ruleset name=\"SmartPractice\" default_off=\"failed ruleset test\" f=\"SmartPractice.com.xml\"><rule from=\"^http://(www\\.)?allerderm\\.com/\" to=\"https://allerderm.com/\"/><rule from=\"^http://(?:www\\.)?finnchamber\\.com/\" to=\"https://www.finnchamber.com/\"/></ruleset>", "<ruleset name=\"SmartRecruiters\" f=\"SmartRecruiters.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?smartrecruiters\\.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart Living Network.com\" f=\"Smart_Living_Network.com.xml\"><securecookie host=\"^(?:www\\.)?smartlivingnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmarterTools.com (partial)\" f=\"SmarterTools.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmarterTrack.com (partial)\" f=\"SmarterTrack.com.xml\"><securecookie host=\"^(?:portal|www)\\.smartertrack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smartling (problematic)\" default_off=\"expired, mismatched\" f=\"Smartling-problematic.xml\"><rule from=\"^http://(?:www\\.)?smartlingsource\\.com/\" to=\"https://smartlingsource.com/\"/></ruleset>", "<ruleset name=\"Smartling (partial)\" f=\"Smartling.xml\"><securecookie host=\"^dashboard\\.smartling\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?smartling\\.com/static/\" to=\"https://s.smartling.com/static/\"/><rule from=\"^http://(cdn01|(?:s-)?dashboard|s)\\.smartling\\.com/\" to=\"https://$1.smartling.com/\"/></ruleset>", "<ruleset name=\"Smartphone Experts (partial)\" f=\"Smartphone_Experts.xml\"><exclusion pattern=\"^http://store\\.smartphoneexperts\\.com/(?!images/|store/modules/|store_images/|v3_templates/)\"/><rule from=\"^http://(?:(?:cdn-)?store|secure)\\.smartphoneexperts\\.com/\" to=\"https://secure.smartphoneexperts.com/\"/></ruleset>", "<ruleset name=\"Smartronix\" default_off=\"failed ruleset test\" f=\"Smartronix.xml\"><rule from=\"^http://(?:www\\.)?smartronix\\.com/\" to=\"https://www.smartronix.com/\"/></ruleset>", "<ruleset name=\"SmashFly.com (problematic)\" default_off=\"expired, self-signed\" f=\"SmashFly.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmashFly.com (partial)\" f=\"SmashFly.com.xml\"><exclusion pattern=\"^http://go.smashfly.com/+(?!$|\\?|l/)\"/><rule from=\"^http://go\\.smashfly\\.com/(?=/*l/)\" to=\"https://go.pardot.com/\"/><rule from=\"^http://go\\.smashfly\\.com/.*\" to=\"https://smashfly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smdg.ca\" f=\"Smdg.ca.xml\"><rule from=\"^http://static\\.smdg\\.ca/\" to=\"https://d3pf6blj843au7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SMI2.net\" f=\"Smi2.net.xml\"><securecookie host=\"^smi2\\.net$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smileys Network.com\" default_off=\"mismatched\" f=\"Smileys_Network.xml\"><securecookie host=\"^(?:www\\.)?smileysnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smith Monitoring.com (partial)\" f=\"Smith_Monitoring.com.xml\"><rule from=\"^http://cache\\.smithmonitoring\\.com/\" to=\"https://c15192108.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Smithsonian Institution (partial)\" f=\"Smithsonian_Institution.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smithsonianmag.com (partial)\" f=\"Smithsonianmag.com.xml\"><rule from=\"^http://public\\.media\\.smithsonianmag\\.com/\" to=\"https://d4a93f3546ecdcbbedb2-caa36b64289b700cc7b17a7a1d72ae15.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://static\\.media\\.smithsonianmag\\.com/\" to=\"https://a43d8359c5340246e48f-48c1ebec497242f6265091443a89054e.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://thumbs\\.media\\.smithsonianmag\\.com/\" to=\"https://9dbdc7e4e76730eafd8c-725637a4efb9dbcc26cd49a804f2fb9b.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"SMJG\" f=\"Smjg.xml\"><rule from=\"^http://((?:forum|www)\\.)?smjg\\.org/\" to=\"https://$1smjg.org/\"/></ruleset>", "<ruleset name=\"SmoothieBlend.com\" f=\"SmoothieBlend.com.xml\"><securecookie host=\"^\\.?smoothieblend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smoothwall.org (partial)\" f=\"Smoothwall.org.xml\"><rule from=\"^http://my\\.smoothwall\\.org/\" to=\"https://my.smoothwall.org/\"/></ruleset>", "<ruleset name=\"Smowtion (partial)\" f=\"Smowtion.xml\"><rule from=\"^http://ad\\.smowtion\\.com/\" to=\"https://ad.yieldmanager.com/\"/><rule from=\"^http://p(assport|ublisher)\\.smowtion\\.com/\" to=\"https://p$1.smowtion.com/\"/><rule from=\"^http://px\\.smowtion\\.com/\" to=\"https://s3.amazonaws.com/px.smowtion.com/\"/></ruleset>", "<ruleset name=\"SmugMug.com (partial)\" f=\"SmugMug.com.xml\"><securecookie host=\"^\\.smugmug\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://smugmug\\.com/\" to=\"https://www.smugmug.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smutty\" f=\"Smutty.xml\"><rule from=\"^http://smutty\\.com/\" to=\"https://smutty.com/\"/></ruleset>", "<ruleset name=\"Smuxi.im (partial)\" f=\"Smuxi.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smzdm.com\" f=\"Smzdm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snabb.co\" default_off=\"failed ruleset test\" f=\"Snabb.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnackTools.com (problematic)\" default_off=\"mismatched\" f=\"SnackTools.com-problematic.xml\"><securecookie host=\"^stapi\\.snacktools\\.com$\" name=\".+\"/><rule from=\"^http://stapi\\.snacktools\\.com/\" to=\"https://stapi.snacktools.com/\"/></ruleset>", "<ruleset name=\"SnackTools.com (partial)\" f=\"SnackTools.com.xml\"><securecookie host=\"^www\\.snacktools\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?snacktools\\.com/\" to=\"https://www.snacktools.com/\"/></ruleset>", "<ruleset name=\"SnackTools.net\" f=\"SnackTools.net.xml\"><securecookie host=\"^stapi\\.snacktools\\.net$\" name=\".+\"/><rule from=\"^http://stapi\\.snacktools\\.net/\" to=\"https://stapi.snacktools.net/\"/></ruleset>", "<ruleset name=\"SnackTV\" f=\"Snacktv.de.xml\"><rule from=\"^http://(player|www)\\.snacktv\\.de/\" to=\"https://$1.snacktv.de/\"/></ruleset>", "<ruleset name=\"snafu (partial)\" f=\"Snafu.xml\"><securecookie host=\"^service\\.snafu\\.de$\" name=\".*\"/><rule from=\"^http://service\\.snafu\\.de/\" to=\"https://service.snafu.de/\"/></ruleset>", "<ruleset name=\"snagajob\" platform=\"mixedcontent\" f=\"Snagajob.xml\"><securecookie host=\"^(?:.*\\.)?snagajob.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?snagajob\\.com/\" to=\"https://www.snagajob.com/\"/><rule from=\"^http://media\\.snagajob\\.com/\" to=\"https://media.snagajob.com/\"/><exclusion pattern=\"^http://www\\.snagajob\\.com/answers/\"/><exclusion pattern=\"^http://www\\.snagajob\\.com/blog/\"/></ruleset>", "<ruleset name=\"Snakehosting.dk\" f=\"Snakehosting.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnapEngage.com (false MCB)\" platform=\"mixedcontent\" f=\"SnapEngage.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:developer\\.|help\\.)?snapengage\\.com/(?:files|wp-content|wp-includes)/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnapEngage (partial)\" f=\"SnapEngage.xml\"><exclusion pattern=\"^http://(?:developer\\.|help\\.)?snapengage\\.com/(?!files/|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.snapengage\\.com$\" name=\"^(?:__cfduid|__insp_\\w+|SnapABug\\w+|__utm\\w)$\"/><securecookie host=\"^www\\.snapengage\\.com$\" name=\".+\"/><rule from=\"^http://snapengage-(\\d)\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://snapengage-$1.wpengine.com/\"/><rule from=\"^http://((?:developer|help|www)\\.)?snapengage\\.com/\" to=\"https://$1snapengage.com/\"/></ruleset>", "<ruleset name=\"SnapWidget.com (partial)\" f=\"SnapWidget.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snapchat.com (partial)\" f=\"Snapchat.com.xml\"><securecookie host=\"^support\\.snapchat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snapdeal.com (partial)\" f=\"Snapdeal.com.xml\"><exclusion pattern=\"^http://www\\.snapdeal\\.com/(?!login(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?snapdeal\\.com/\" to=\"https://www.snapdeal.com/\"/></ruleset>", "<ruleset name=\"Snatchly (partial)\" f=\"Snatchly.xml\"><rule from=\"^http://media-cache\\d\\.snatchly\\.com/\" to=\"https://d2x4glpi1c9656.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SndCDN.com (partial)\" f=\"SndCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snel Internet Services\" default_off=\"failed ruleset test\" f=\"Snel-Internet-Services.xml\"><securecookie host=\"^.*\\.snelis\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snel.com\" f=\"Snel.com.xml\"><securecookie host=\"^(?:.+\\.)?snel\\.com$\" name=\".+\"/><rule from=\"^http://session\\.snel\\.com/.*\" to=\"https://control.snel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snellman.net (partial)\" f=\"Snellman.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snip2Code.com\" f=\"Snip2Code.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://snip2code\\.com/\" to=\"https://www.snip2code.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snipcart.com (partial)\" f=\"Snipcart.com.xml\"><securecookie host=\"^\\.app\\.snipcart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snipt.net\" f=\"Snipt.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snoobi (partial)\" f=\"Snoobi.xml\"><securecookie host=\"^.*\\.snoobi\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snoonet\" f=\"Snoonet.xml\"><rule from=\"^http://(www\\.)?snoonet\\.org/\" to=\"https://www.snoonet.org/\"/></ruleset>", "<ruleset name=\"Snort.com (partial)\" f=\"Snort.xml\"><securecookie host=\".\\.snort\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snow Magazine\" f=\"Snow_Magazine.xml\"><securecookie host=\"^www\\.snowmagazineonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?snowmagazineonline\\.com/\" to=\"https://www.snowmagazineonline.com/\"/></ruleset>", "<ruleset name=\"Snowdrift.coop\" f=\"Snowdrift.coop.xml\"><securecookie host=\"^snowdrift\\.coop$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snowfly (partial)\" f=\"Snowfly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"So Raise Your Glasses\" default_off=\"failed ruleset test\" f=\"So-Raise-Your-Glasses.xml\"><securecookie host=\"^www\\.soraiseyourglasses\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"So.cl\" default_off=\"failed ruleset test\" f=\"So.cl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoCal Linux Expo.org\" f=\"SoCal_Linux_Expo.org.xml\"><securecookie host=\"^reg\\.socallinuxexpo\\.org$\" name=\".+\"/><rule from=\"^http://((?:helpdesk|reg|wiki|www)\\.)?socallinuxexpo\\.org/\" to=\"https://$1socallinuxexpo.org/\"/></ruleset>", "<ruleset name=\"SoFurry\" f=\"SoFurry.xml\"><securecookie host=\"^(?:www)?\\.sofurry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sofurry\\.com/\" to=\"https://www.sofurry.com/\"/><rule from=\"^http://(?:www\\.)?sofurryfiles\\.com/\" to=\"https://www.sofurryfiles.com/\"/></ruleset>", "<ruleset name=\"SoHosted.com\" f=\"SoHosted.com.xml\"><securecookie host=\"^(?:www\\.)?sohosted\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoSci Survey.de\" f=\"SoSci-Survey.xml\"><rule from=\"^http://soscisurvey\\.de/\" to=\"https://www.soscisurvey.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoZone.de\" f=\"SoZone.de.xml\"><securecookie host=\"^sozone\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"So you Start.com\" f=\"So_you_Start.com.xml\"><securecookie host=\"^(?:^|\\.)soyoustart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soap.com (partial)\" f=\"Soap.com.xml\"><rule from=\"^http://(?:c\\d\\.)?soap\\.com/\" to=\"https://www.soap.com/\"/><rule from=\"^http://www\\.soap\\.com/((?:checkout|login)\\.qs|[iI]mages/|helpcenter/|myaccount/|myfaves/|(?:App_)?Themes/|[\\w\\-]+\\.aspx)\" to=\"https://www.soap.com/$1\"/></ruleset>", "<ruleset name=\"Soapbox CMS\" f=\"Soapbox-CMS.xml\"><securecookie host=\"^(?:.*\\.)?soapboxcms\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoccerWave UK.com\" default_off=\"expired, self-signed\" f=\"SoccerWave_UK.com.xml\"><securecookie host=\"^www\\.soccerwaveuk\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?soccerwaveuk\\.org\\.uk/\" to=\"https://www.soccerwaveuk.com/\"/></ruleset>", "<ruleset name=\"Social-Engineer.com\" f=\"Social-Engineer.com.xml\"><securecookie host=\"^(?:www\\.)?social-engineer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialBox\" default_off=\"plaintext reply\" f=\"SocialBox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialRank.com (partial)\" f=\"SocialRank.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?socialrank\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialSafety.org\" default_off=\"mismatched\" f=\"SocialSafety.org.xml\"><rule from=\"^http://(?:www\\.)?socialsafety\\.org/\" to=\"https://socialsafety.org/\"/></ruleset>", "<ruleset name=\"US Social Security Administration\" platform=\"mixedcontent\" f=\"SocialSecurity.xml\"><exclusion pattern=\"^https://ftp\\.\"/><securecookie host=\"^(?:\\.|www\\.)?socialsecurity\\.gov$\" name=\".+\"/><securecookie host=\"^(?:(?:ftp|secure|stats|www)?\\.)?ssa\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialsecurity\\.gov/\" to=\"https://www.socialsecurity.gov/\"/><rule from=\"^http://(?:ftp\\.|www\\.)?ssa\\.gov/\" to=\"https://www.socialsecurity.gov/\"/><rule from=\"^http://s(ecure|tats)\\.ssa\\.gov/\" to=\"https://s$1.ssa.gov/\"/></ruleset>", "<ruleset name=\"SocialShows\" f=\"SocialShows.xml\"><securecookie host=\"^\\.?socialshows\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialshows\\.(?:com|net)/\" to=\"https://socialshows.net/\"/></ruleset>", "<ruleset name=\"SocialTwist\" f=\"SocialTwist.xml\"><rule from=\"^http://([\\w\\-]+\\.)?socialtwist\\.com/\" to=\"https://$1socialtwist.com/\"/></ruleset>", "<ruleset name=\"Social Code dev.com\" f=\"Social_Code_dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Fixer.com\" default_off=\"expired\" f=\"Social_Fixer.com.xml\"><rule from=\"^http://(?:www\\.)?socialfixer\\.com/\" to=\"https://socialfixer.com/\"/></ruleset>", "<ruleset name=\"Social Progress Imperative.org\" default_off=\"mismatched\" f=\"Social_Progress_Imperative.org.xml\"><rule from=\"^http://(?:www\\.)?socialprogressimperative\\.org/\" to=\"https://www.socialprogressimperative.org/\"/></ruleset>", "<ruleset name=\"Social Reader.com (partial)\" f=\"Social_Reader.com.xml\"><securecookie host=\"^(?:id)?\\.socialreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialreader\\.com/.*\" to=\"https://trove.com/\"/><rule from=\"^http://id\\.socialreader\\.com/+\" to=\"https://id.trove.com/\"/></ruleset>", "<ruleset name=\"Social Screamer\" f=\"Social_Screamer.xml\"><securecookie host=\"^\\.socialscreamer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Theater\" default_off=\"failed ruleset test\" f=\"Social_Theater.xml\"><securecookie host=\"^(?:www\\.)?socialtheater\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socialbakers.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Socialbakers.xml\"><securecookie host=\"^(?:.*\\.)?socialbakers\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?socialbakers\\.com/\" to=\"https://$1socialbakers.com/\"/></ruleset>", "<ruleset name=\"Socialcube.net (partial)\" f=\"Socialcube.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socializer.cc\" f=\"Socializer.cc.xml\"><securecookie host=\"^track\\.socializer\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Socialtext.net (partial)\" default_off=\"failed ruleset test\" f=\"Socialtext.net.xml\"><securecookie host=\"^saml\\.socialtext\\.net$\" name=\".+\"/><rule from=\"^http://saml\\.socialtext\\.net/\" to=\"https://saml.socialtext.net/\"/></ruleset>", "<ruleset name=\"socialtyzetracking.com\" f=\"Socialtyzetracking.com.xml\"><securecookie host=\"^www\\.socialtyzetracking\\.com$\" name=\".+\"/><rule from=\"^http://socialtyzetracking\\.com/\" to=\"https://www.socialtyzetracking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sociamonials.com\" f=\"Sociamonials.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Society for Technical Communication (partial)\" default_off=\"expired, mismatch\" f=\"Society-for-Technical-Communication.xml\"><securecookie host=\"^.*\\.stc\\.org$\" name=\".*\"/><rule from=\"^http://archive\\.stc\\.org/\" to=\"https://archive.stc.org/\"/><rule from=\"^http://(?:www\\.)?stc\\.org/index\\.asp\" to=\"https://archive.stc.org/index.asp\"/><rule from=\"^http://jobs\\.stc\\.org/\" to=\"https://jobs.stc.org/\"/></ruleset>", "<ruleset name=\"Society of Light & Lighting\" default_off=\"self-signed\" f=\"Society-of-Light-and-Lighting.xml\"><securecookie host=\"^sll\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ssl\\.org\\.uk/\" to=\"https://ssl.org.uk/\"/></ruleset>", "<ruleset name=\"SFN.org (partial)\" f=\"Society_for_Neuroscience.xml\"><exclusion pattern=\"^http://(?:neuronline|www)\\.sfn\\.org/+(?!SfN_favicon\\.ico|WebResource\\.axd|css/|fonts/|images/|~/media/)\"/><securecookie host=\"^ebiz\\.sfn\\.org$\" name=\".+\"/><securecookie host=\"^(?:neuronline\\.|www\\.)?sfn\\.org$\" name=\"^SC_ANALYTICS_SESSION_COOKIE$\"/><rule from=\"^http://sfn\\.org/\" to=\"https://www.sfn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocietyForScience.org\" f=\"Societyforscience.org.xml\"><securecookie host=\"^www\\.societyforscience\\.org\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sociomantic labs\" f=\"Sociomantic_labs.xml\"><securecookie host=\"^\\.sociomantic\\.com$\" name=\"^sonar(?:-expires)$\"/><rule from=\"^http://(?:www\\.)?sociomantic\\.com/\" to=\"https://www.sociomantic.com/\"/><rule from=\"^http://(blog|us-sonar)\\.sociomantic\\.com/\" to=\"https://$1.sociomantic.com/\"/></ruleset>", "<ruleset name=\"SockShare (problematic)\" default_off=\"expired, mismatched\" f=\"SockShare.com-problematic.xml\"><rule from=\"^http://(cdn|media-b\\d+)\\.sockshare\\.com/\" to=\"https://$1.sockshare.com/\"/></ruleset>", "<ruleset name=\"SockShare (partial)\" default_off=\"failed ruleset test\" f=\"SockShare.xml\"><exclusion pattern=\"^http://(?:www\\.)?sockshare\\.com/(?!crossdomain\\.xml|gopro\\.php|include/captcha\\.php)\"/><rule from=\"^http://((?:images|static1|www)\\.)?sockshare\\.com/\" to=\"https://$1sockshare.com/\"/><rule from=\"^http://static\\.sockshare\\.com/\" to=\"https://static1.sockshare.com/\"/></ruleset>", "<ruleset name=\"Socrata.com\" f=\"Socrata.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SodaHead.com\" platform=\"mixedcontent\" f=\"SodaHead.com.xml\"><securecookie host=\".+\\.sodahead\\.com$\" name=\".+\"/><rule from=\"^http://((?:de|latimes|m|partners|www)\\.)?sodahead\\.com/\" to=\"https://$1sodahead.com/\"/><rule from=\"^http://images\\.sodahead\\.com/\" to=\"https://d33lglhhb8q63m.cloudfront.net/\"/><rule from=\"^http://statics\\.sodahead\\.com/\" to=\"https://d6fekxp9qbg3b.cloudfront.net/\"/><rule from=\"^http://widgets\\.sodahead\\.com/\" to=\"https://d3ict7m6m7fhlt.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sodiumshop.com\" default_off=\"expired\" f=\"Sodiumshop.com.xml\"><securecookie host=\"^\\.(?:www\\.)?sodiumshop\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sodiumshop\\.com/\" to=\"https://www.sodiumshop.com/\"/></ruleset>", "<ruleset name=\"Soekris.com\" f=\"Soekris.com.xml\"><securecookie host=\"^\\.soekris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soeren-Hentzschel.at\" f=\"Soeren-hentzschel.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SofN.com\" f=\"SofN.com.xml\"><securecookie host=\"^www\\.sofn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sofawolf\" f=\"Sofawolf.xml\"><securecookie host=\"^(?:\\.www|www|)\\.sofawolf\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sofawolf\\.com/\" to=\"https://www.sofawolf.com/\"/></ruleset>", "<ruleset name=\"Sofort.com\" f=\"Sofort.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoftCom (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SoftCom.xml\"><securecookie host=\"^(?:.*\\.)?(?:mail2web|myhosting|slhost|softcom)\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?daha\\.net/(assets/|fancybox/|\\w+\\.(css|ico|png)|[\\w\\-/]*images/)\" to=\"https://$1daha.net/$2\"/><rule from=\"^http://(banman\\.|www\\.)?mail2web\\.com/\" to=\"https://$1mail2web.com/\"/><rule from=\"^http://(www\\.)?myhosting\\.com/\" to=\"https://$1myhosting.com/\"/><rule from=\"^http://assets\\d*\\.myhosting\\.com/\" to=\"https://d2b9wiydujghh5.cloudfront.net/\"/><rule from=\"^http://(www\\.)?slhost\\.com/\" to=\"https://$1slhost.com/\"/><rule from=\"^http://helpdesk\\.softcom\\.com/\" to=\"https://helpdesk.softcom.com/\"/></ruleset>", "<ruleset name=\"SoftCreatR.de\" f=\"SoftCreatR.de.xml\"><securecookie host=\"^\\.support\\.softcreatr\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?(support\\.)?softcreatr\\.de/\" to=\"https://$1softcreatr.de/\"/></ruleset>", "<ruleset name=\"SoftEther VPN\" f=\"SoftEther_VPN.xml\"><securecookie host=\"^(?:www\\.)?softether\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoftLayer (mismatches)\" default_off=\"mismatched\" f=\"SoftLayer-mismatches.xml\"><rule from=\"^http://cdn\\.softlayer\\.com/\" to=\"https://cdn.softlayer.com/\"/></ruleset>", "<ruleset name=\"SoftLayer\" f=\"SoftLayer.xml\"><securecookie host=\"^.+\\.softlayer\\.com$\" name=\".+\"/><rule from=\"^http://((?:forums|manage|outlet|www)\\.)?softlayer\\.com/\" to=\"https://$1softlayer.com/\"/><rule from=\"^http://(\\w+)\\.https?\\.cdn\\.softlayer\\.net/\" to=\"https://$1.https.cdn.softlayer.net/\"/></ruleset>", "<ruleset name=\"SoftPerfect.com\" f=\"SoftPerfect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Softaculous.com (partial)\" f=\"Softaculous.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Software in the Public Interest (partial)\" default_off=\"self-signed\" f=\"Software-in-the-Public-Interest.xml\"><securecookie host=\"^rt\\.spi-inc\\.org$\" name=\".*\"/><rule from=\"^http://(members|rt)\\.spi-inc\\.org/\" to=\"https://$1.spi-inc.org/\"/></ruleset>", "<ruleset name=\"Software Freedom.org\" f=\"SoftwareFreedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SF Conservancy.org\" f=\"Software_Freedom_Conservancy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Software & Information Industry Association\" f=\"Software_and_Information_Industry_Association.xml\"><securecookie host=\"^www\\.siia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?siaa\\.net/\" to=\"https://www.siaa.net/\"/></ruleset>", "<ruleset name=\"Sogeti.com (partial)\" default_off=\"self-signed\" f=\"Sogeti.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sogou CDN.com\" f=\"Sogou_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.com (partial)\" f=\"Sohu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://login\\.mail\\.sohu\\.com/\" to=\"https://mail.sohu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.net (partial)\" f=\"Sohu.net.xml\"><securecookie host=\"^\\.?pan\\.sohu\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sol Musica.com\" f=\"Sol_Musica.xml\"><securecookie host=\"^\\.?solmusica\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solar Energy Installers\" default_off=\"mismatch\" f=\"Solar-Energy-Installers.xml\"><securecookie host=\"^www\\.solar-energy-installers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?solar-energy-installers\\.com/\" to=\"https://www.solar-energy-installers.com/\"/></ruleset>", "<ruleset name=\"Solar Power Rocks\" default_off=\"expired, self-signed\" f=\"Solar-Power-Rocks.xml\"><rule from=\"^http?://(?:www\\.)?solarpowerrocks\\.com/\" to=\"https://solarpowerrocks.com/\"/></ruleset>", "<ruleset name=\"Solar1.net\" f=\"Solar1.net.xml\"><securecookie host=\"^solar1\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?solar1\\.net/\" to=\"https://solar1.net/\"/></ruleset>", "<ruleset name=\"SolarCity\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SolarCity.xml\"><rule from=\"^http://(?:www\\.)?mysolarcity\\.com/\" to=\"https://solarguard.solarcity.com/kiosk/login/default.aspx\"/><rule from=\"^http://(?:www\\.)?solarcity\\.com/\" to=\"https://www.solarcity.com/\"/><rule from=\"^http://solarguard\\.solarcity\\.com/\" to=\"https://solarguard.solarcity.com/\"/></ruleset>", "<ruleset name=\"SolarList.com\" f=\"SolarList.com.xml\"><securecookie host=\"^\\.solarlist\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solarbotics.com\" f=\"Solarbotics.com.xml\"><securecookie host=\"^(?:.+\\.)?solarbotics\\.com$\" name=\".+\"/><rule from=\"^http://((?:atlas|content|eos|helios|www)\\.)?solarbotics\\.com/\" to=\"https://$1solarbotics.com/\"/></ruleset>", "<ruleset name=\"Solarflare.com\" f=\"Solarflare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solarmovie.is\" f=\"Solarmovie.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soldierx.com\" f=\"Soldierx.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sole.dk\" f=\"Sole.dk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solicitor-Concierge.com\" f=\"Solicitor-Concierge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solid-Run.com\" f=\"Solid-Run.com.xml\"><securecookie host=\"^imx\\.solid-run\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SolidAlert.com\" f=\"SolidAlert.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solid Cactus (partial)\" f=\"Solid_Cactus.xml\"><securecookie host=\"^(?:admin|clients|yahoo)\\.solidcactus\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.solidcactushosting\\.com$\" name=\".+\"/><rule from=\"^http://(admin|clients|yahoo)\\.solidcactus\\.com/\" to=\"https://$1.solidcactus.com/\"/><rule from=\"^http://([\\w-]+)\\.solidcactushosting\\.com/\" to=\"https://$1.solidcactushosting.com/\"/></ruleset>", "<ruleset name=\"Solid Logic Technology\" f=\"Solid_Logic_Technology.xml\"><securecookie host=\"^\\.solidlogic.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solidarity-US.org\" f=\"Solidarity-US.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solihull.gov.uk (partial)\" f=\"Solihull.gov.uk.xml\"><exclusion pattern=\"^http://www\\.solihull\\.gov\\.uk/+(?![Dd]esktop[Mm]odules/|[Pp]ortals/|favicon\\.ico)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solola.ca (false MCB)\" platform=\"mixedcontent\" f=\"Solola.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solus-Project.com\" f=\"Solus-Project.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solutions Healthcare Management\" f=\"Solutions_Healthcare_Management.xml\"><securecookie host=\"^\\.solutionshealthcare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solve Media.com (partial)\" f=\"Solvemedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somerset.gov.uk (partial)\" f=\"Somerset.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somerset.org.uk (partial)\" f=\"Somerset.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Someserver (partial)\" platform=\"cacert\" f=\"Someserver.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Something Awful\" f=\"Something-Awful.xml\"><securecookie host=\"^secure\\.somethingawful\\.com$\" name=\".+\"/><securecookie host=\"^forums\\.somethingawful\\.com$\" name=\".+\"/><securecookie host=\"^archives\\.somethingawful\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somevid.com\" f=\"Somevid.com.xml\"><securecookie host=\"^(?:www\\.)?somevid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sonatype.com (partial)\" f=\"Sonatype.com.xml\"><exclusion pattern=\"^http://www\\.sonatype\\.com/(?!assets/|downloads/products/|favicon\\.ico)\"/><securecookie host=\"^docs\\.sonatype\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sonder Design.com\" default_off=\"needs clearnet testing\" f=\"Sonder_Design.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SongColeta.com (partial)\" f=\"SongColeta.com.xml\"><rule from=\"^http://static\\.songcoleta\\.com/\" to=\"https://d2f4ve6v2ack21.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Songsterr.com (partial)\" f=\"Songsterr.com.xml\"><rule from=\"^http://(www\\.)?songsterr\\.com/(?=a/(?!wsa/)|WebObjects/)\" to=\"https://$1songsterr.com/\"/></ruleset>", "<ruleset name=\"Sonic.net (partial)\" f=\"Sonic.net.xml\"><securecookie host=\"^newsignup\\.sonic\\.net$\" name=\".+\"/><rule from=\"^http://(assets|corp|forums|legacy-webmail|members|newsignup|webmail|wiki)\\.sonic\\.net/\" to=\"https://$1.sonic.net/\"/></ruleset>", "<ruleset name=\"SonicWALL (partial)\" default_off=\"failed ruleset test\" f=\"SonicWALL.xml\"><securecookie host=\"^.+\\.sonicwall\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonicwall\\.com/\" to=\"https://www.sonicwall.com/\"/><rule from=\"^http://software\\.sonicwall\\.com/\" to=\"https://software.sonicwall.com/\"/></ruleset>", "<ruleset name=\"Sonnet Tech.com (partial)\" f=\"Sonnet_Tech.com.xml\"><rule from=\"^http://s(?:ecu|to)re1\\.sonnettech\\.com/\" to=\"https://secure1.sonnettech.com/\"/></ruleset>", "<ruleset name=\"Sonobi.com\" f=\"Sonobi.com.xml\"><securecookie host=\"^\\.?sonobi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sonos.com (partial)\" f=\"Sonos.com.xml\"><securecookie host=\"^\\.sonos\\.com$\" name=\"^__u(?:tm\\w|tmli|nam)$\"/><rule from=\"^http://(?:www\\.)?sonos\\.com/(?=(?:\\w+/)?(?:[cC]ss/|images/|js/|(?:Script|Web)Resource\\.axd)|fancybox/|login(?:$|[?/])|shop/(?:i/|login\\.aspx|[tT]hemes/)|static/|widgets/)\" to=\"https://www.sonos.com/\"/><rule from=\"^http://faq\\.sonos\\.com/\" to=\"https://faq.sonos.com/\"/></ruleset>", "<ruleset name=\"Sony-Europe.com\" f=\"Sony-europe.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.eu (partial)\" f=\"Sony.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.se\" f=\"Sony.se.xml\"><rule from=\"^http://www\\.sony\\.se/\" to=\"https://www.sony.se/\"/><rule from=\"^http://sony\\.se/\" to=\"https://sony.se/\"/></ruleset>", "<ruleset name=\"Sony (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Sony.xml\"><securecookie host=\"^.*\\.sony\\.com$\" name=\".*\"/><securecookie host=\"^outlet\\.sony\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scea\\.com/\" to=\"https://us.playstation.com/\"/><rule from=\"^http://(?:\\w+\\.)?webassets\\w?\\.scea\\.com/\" to=\"https://secure.webassets.scea.com/\"/><rule from=\"^http://(?:www\\.)?sony\\.com/\" to=\"https://www.sony.com/\"/><rule from=\"^http://(www\\.)?sony\\.co\\.uk/(bravia|res)/\" to=\"https://$1sony.co.uk/$2/\"/><rule from=\"^http://(outlet|shop)\\.sony\\.co\\.uk/\" to=\"https://$1.sony.co.uk/\"/><rule from=\"^http://(blog|s01\\.esupport|store)\\.sony\\.com/\" to=\"https://$1.sony.com/\"/></ruleset>", "<ruleset name=\"Sony Mobile (buggy)\" default_off=\"https://lists.eff.org/pipermail/https-everywhere-rules/2013-November/001737.html\" f=\"SonyMobile.xml\"><exclusion pattern=\"^http://(?:www\\.)?sonymobile\\.com/wp-content/themes/semc-main/css/global\\.css\"/><securecookie host=\"^(?:shop|\\.?thesourceplus)\\.sonymobile\\.com$\" name=\".+\"/><rule from=\"^http://(developer|www)-static\\.se-mc\\.com/\" to=\"https://$1-static.se-mc.com/\"/><rule from=\"^http://(?:www\\.)?sonymobile\\.com/(cws|wp-content)/\" to=\"https://www.sonymobile.com/$1/\"/><rule from=\"^http://(foris(?:\\.extranet)?|shop|(?:assets\\.)?thesourceplus)\\.sonymobile\\.com/\" to=\"https://$1.sonymobile.com/\"/></ruleset>", "<ruleset name=\"SonyMusic (problematic)\" default_off=\"akamai certificate\" f=\"SonyMusic-problematic.xml\"><securecookie host=\"^(?:.+\\.)?sonymusic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonymusic\\.com/\" to=\"https://www.sonymusic.com/\"/></ruleset>", "<ruleset name=\"SonyMusic (partial)\" f=\"SonyMusic.xml\"><rule from=\"^http://cf\\.sonymusic\\.com/\" to=\"https://d27g862ehx8viu.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sony Computer Science Laboratories\" f=\"Sony_Computer_Science_Laboratories.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony Entertainment Network.com (partial)\" f=\"Sony_Entertainment_Network.xml\"><securecookie host=\".\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonyentertainmentnetwork\\.com/+(?:\\?.*)?$\" to=\"https://www.playstationnetwork.com.com/home\"/><rule from=\"^http://(?:www\\.)?sonyentertainmentnetwork\\.com/+([^?]*).*\" to=\"https://www.playstationnetwork.com.com/\"/><rule from=\"^http://cdn\\.sonyentertainmentnetwork\\.com/\" to=\"https://www.sonyentertainmentnetwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony Latin America (partial)\" default_off=\"failed ruleset test\" f=\"Sony_Latin_America.xml\"><exclusion pattern=\"^http://store\\.sony\\.com\\.mx/mx/site/\"/><securecookie host=\"^(?:www)?\\.sonystyle\\.com\\.mx$\" name=\".+\"/><rule from=\"^http://store\\.sony\\.com\\.mx/\" to=\"https://store.sony.com.mx/\"/><rule from=\"^http://(?:www\\.)?sonystyle\\.com\\.mx/\" to=\"https://www.sonystyle.com.mx/\"/></ruleset>", "<ruleset name=\"Sony Pictures UK\" default_off=\"failed ruleset test\" f=\"Sony_Pictures_UK.xml\"><securecookie host=\"^www\\.sonypictures\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonypictures\\.co\\.uk/\" to=\"https://www.sonypictures.co.uk/\"/></ruleset>", "<ruleset name=\"SooBEST.com (partial)\" f=\"SooBEST.com.xml\"><rule from=\"^http://(?:www\\.)?soobest\\.com/themes/\" to=\"https://www.soobest.com/themes/\"/></ruleset>", "<ruleset name=\"Sophie VIP Escort\" default_off=\"connection reset\" f=\"Sophie_VIP_Escort.xml\"><rule from=\"^http://(?:www\\.)?sophievipescort\\.com/\" to=\"https://sophievipescort.com/\"/></ruleset>", "<ruleset name=\"Sophos.com\" f=\"Sophos.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SotT.net (partial)\" f=\"SotT.net.xml\"><rule from=\"^http://(www\\.)?sott\\.net/(?=favicon\\.ico|images/|signs/|stylesheets/|users/)\" to=\"https://$1sott.net/\"/></ruleset>", "<ruleset name=\"Soufun.com.tw (partial)\" f=\"Soufun.com.tw.xml\"><rule from=\"^http://ssl\\.soufun\\.com\\.tw/\" to=\"https://ssl.soufun.com.tw/\"/></ruleset>", "<ruleset name=\"SoundKit.io\" f=\"SoundKit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoundViz.com\" f=\"SoundViz.com.xml\"><securecookie host=\"^www\\.soundviz\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?soundviz\\.com/\" to=\"https://www.soundviz.com/\"/></ruleset>", "<ruleset name=\"Sound On Sound.com (partial)\" f=\"Sound_On_Sound.com.xml\"><rule from=\"^http://soundonsound\\.com/\" to=\"https://www.soundonsound.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sound on Sight.org (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Sound_on_Sight.org.xml\"><rule from=\"^http://(?:www\\.)?soundonsight\\.org/\" to=\"https://www.soundonsight.org/\"/></ruleset>", "<ruleset name=\"Soundcloud.com (partial)\" f=\"Soundcloud.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"soundgasm.net\" f=\"Soundgasm.net.xml\"><securecookie host=\"^(?:www\\.)?soundgasm.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soundowl.net\" f=\"Soundowl.net.xml\"><rule from=\"^http://assets\\.soundowl\\.net/\" to=\"https://d1mvw875i08plx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sounds True\" f=\"Sounds-True.xml\"><rule from=\"^http://(?:www\\.)?soundstrue\\.com/((?:assets/|media)\\.soundstrue\\.com/|catalog/|/?components/|css/|directaccess/|email/|google/ga\\.js|linkshare/|pages/popup_shipping\\.php|shipping/|shop/(?:login\\.do|player/|st_assets/)|wakeup/|pages/popup_shipping\\.php)\" to=\"https://www.soundstrue.com/$1\"/><rule from=\"^http://assets\\.soundstrue\\.com/\" to=\"https://assets.soundstrue.com/\"/><rule from=\"^http://components\\.soundstrue\\.com/\" to=\"https://assets.soundstrue.com/components/public/\"/></ruleset>", "<ruleset name=\"Soundslice.com\" f=\"Soundslice.com.xml\"><rule from=\"^http://soundslice\\.com/\" to=\"https://www.soundslice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soup.io (partial)\" f=\"Soup.io.xml\"><exclusion pattern=\"^http://www\\.soup\\.io/+(?!favicon\\.ico|images/|login(?:$|[?/]))\"/><securecookie host=\"^\\.soup\\.io$\" name=\"^(?:__qca|__utm\\w+)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soup CDN.com\" f=\"Soup_CDN.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Source-Elements.com (partial)\" f=\"Source-Elements.com.xml\"><exclusion pattern=\"^http://source-elements\\.com/+(?!css/|favicon\\.ico|images/|(?:login|purchase|rentals)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceAFRICA.net\" f=\"SourceAFRICA.net.xml\"><rule from=\"^http://(?:www\\.)?sourceafrica\\.net/\" to=\"https://sourceafrica.net/\"/></ruleset>", "<ruleset name=\"SourceCoast (partial)\" f=\"SourceCoast.xml\"><rule from=\"^http://(www\\.)?sourcecoast\\.com/($|\\?|components/|images/|jfbconnect/|media/|plugins/|templates/)\" to=\"https://$1sourcecoast.com/$2\"/></ruleset>", "<ruleset name=\"SourceDNA.com\" f=\"SourceDNA.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.sourcedna\\.com/\" to=\"https://sourcedna.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceFed (partial)\" f=\"SourceFed.xml\"><rule from=\"^http://cdn\\.sourcefednews\\.com/\" to=\"https://d1l31vajhvnn7o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SourceForge (mismatches)\" default_off=\"mismatch\" f=\"SourceForge-mismatches.xml\"><rule from=\"^http://([\\w\\-]+)\\.git\\.s(?:f|ourceforge)\\.net/\" to=\"https://$1.git.sf.net/\"/></ruleset>", "<ruleset name=\"SourceForge (partial)\" f=\"SourceForge.xml\"><exclusion pattern=\"^http://([\\w-]+)\\.svn\\.s(?:f|ourceforge)\\.net/(?!svnroot/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^p\\.sf\\.net$\" name=\".\"/><securecookie host=\"^downloads\\.sourceforge\\.net$\" name=\".\"/><securecookie host=\"^(?:downloads\\.)?sourceforge\\.net$\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.svn\\.sf\\.net/\" to=\"https://$1.svn.sourceforge.net/\"/><rule from=\"^http://downloads\\.s(?:f|ourceforge)\\.net/project/([^?]+)\\?r=http%3A%2F%2Fs\" to=\"https://downloads.sourceforge.net/project/$1?r=https%3A%2F%2Fs\"/><rule from=\"^http://(apps|downloads|goparallel|ibmsmarteritservices|images|lists|prdownloads|sflogo|static)\\.sf\\.net/\" to=\"https://$1.sourceforge.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceMaking\" default_off=\"expired\" f=\"SourceMaking.xml\"><securecookie host=\"^\\.sourcemaking\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sourcemaking\\.com/\" to=\"https://sourcemaking.com/\"/></ruleset>", "<ruleset name=\"SourceTree app.com\" f=\"SourceTree_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Source Conference.com\" default_off=\"connection refused\" f=\"Source_Conference.com.xml\"><securecookie host=\"^(?:www\\.)?sourceconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourced.fm\" f=\"Sourced.fm.xml\"><securecookie host=\"^\\.sourced\\.fm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefabric.com (partial)\" f=\"Sourcefabric.com.xml\"><securecookie host=\"^account\\.sourcefabric\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sourcefabric\\.com/[^?]*\\??$\" to=\"https://www.sourcefabric.org/\"/><rule from=\"^http://(?:www\\.)?sourcefabric\\.com/[^?]*\" to=\"https://www.sourcefabric.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefabric.org\" f=\"Sourcefabric.org.xml\"><securecookie host=\"^(?:dev|login|wiki|www)\\.sourcefabric\\.org$\" name=\".+\"/><rule from=\"^http://help\\.sourcefabric\\.org/\" to=\"https://sourcefabricberlin.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefire.com\" f=\"Sourcefire.com.xml\"><securecookie host=\"^info\\.sourcefire\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sourcefire\\.com/[^?]*\" to=\"https://www.cisco.com/c/en/us/products/security/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcegraph.com\" f=\"Sourcegraph.com.xml\"><securecookie host=\"^sourcegraph\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourcesoftdownload.com\" f=\"Sourcesoftdownload.com.xml\"><securecookie host=\"^\\.sourcesoftdownload\\.com$\" name=\".+\"/><rule from=\"^http://www\\.sourcesoftdownload\\.com/\" to=\"https://sourcesoftdownload.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourceware.org (partial)\" f=\"Sourceware.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sous-Surveillance.fr\" f=\"Sous-Surveillance.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South by Southwest (partial)\" f=\"South-by-Southwest.xml\"><securecookie host=\"^cart\\.sxsw\\.com$\" name=\".*\"/><rule from=\"^http://cart\\.sxsw\\.com/\" to=\"https://cart.sxsw.com/\"/></ruleset>", "<ruleset name=\"South China Morning Post (partial)\" f=\"South_China_Morning_Post.xml\"><rule from=\"^http://(?:www\\.)?scmp\\.com/(esi/messages\\.php|misc/|modules/|sites/)\" to=\"https://www.scmp.com/$1\"/></ruleset>", "<ruleset name=\"South Devon.ac.uk (partial)\" f=\"South_Devon.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Glos.gov.uk (partial)\" f=\"South_Glos.gov.uk.xml\"><exclusion pattern=\"http://jobs\\.southglos\\.gov\\.uk/+(?![Ii]mages/|favicon\\.ico|install/|login\\.aspx)\"/><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Lanarkshire.gov.uk (partial)\" f=\"South_Lanarkshire.gov.uk.xml\"><securecookie host=\"^(?!\\.southlanarkshire\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southampton.gov.uk (partial)\" f=\"Southampton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southbank Centre.co.uk (partial)\" f=\"Southbank_Centre.co.uk.xml\"><exclusion pattern=\"^http://shop\\.southbankcentre\\.co\\.uk/+(?!favicon\\.ico|images/|includes/|user/)\"/><exclusion pattern=\"^http://ticketing\\.southbankcentre\\.co\\.uk/+(?!favicon\\.ico|sites/|(?:support-us/trusts-foundations|visitor-info/directions-and-opening-times)/*(?:$|\\?))\"/><exclusion pattern=\"^http://www\\.southbankcentre\\.co\\.uk/+(?!$|\\?|(?:about-us|shop-eat-drink|support-us/membership|venues/royal-festival-hall|visitor-info/access|visitor-info/directions-and-opening-times|whatson)(?:$|[?/])|(?:buy-membership|find)/*(?:$|\\?)|favicon\\.ico|sites/)\"/><securecookie host=\"^\\.shop(?:cms)?\\.southbankcentre\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://southbankcentre\\.co\\.uk/\" to=\"https://www.southbankcentre.co.uk/\"/><rule from=\"^http://www\\.southbankcentre\\.co\\.uk/+buy-membership/*(?=$|\\?)\" to=\"https://www.southbankcentre.co.uk/support-us/membership\"/><rule from=\"^http://www\\.southbankcentre\\.co\\.uk/+find/*(?:$|\\?.*)\" to=\"https://www.southbankcentre.co.uk/whatson\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southend.gov.uk (partial)\" f=\"Southend.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SouthernElectric\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SouthernElectric.xml\"><rule from=\"^http://(?:www\\.)?southern-electric\\.co\\.uk/\" to=\"https://www.southern-electric.co.uk/\"/></ruleset>", "<ruleset name=\"Southern CT.edu (partial)\" f=\"Southern_CT.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southwark.gov.uk (partial)\" f=\"Southwark.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|TestCookie)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southwest Research Institute (partial)\" default_off=\"self-signed\" f=\"Southwest-Research-Institute.xml\"><rule from=\"^http://(?:www\\.)?boulder\\.swri\\.edu/\" to=\"https://www.boulder.swri.edu/\"/></ruleset>", "<ruleset name=\"Sovereign Man.com\" f=\"Sovereign_Man.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soylent.com (partial)\" f=\"Soylent.com.xml\"><securecookie host=\"^(discourse|www)\\.soylent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soylent News.org (partial)\" f=\"SoylentNews.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sozialdemokratische Partei Deutschlands\" f=\"Sozialdemokratische_Partei_Deutschlands.xml\"><rule from=\"^http://spd\\.de/\" to=\"https://www.spd.de/\"/><rule from=\"^http://([^/:@]+)?\\.spd\\.de/\" to=\"https://$1.spd.de/\"/></ruleset>", "<ruleset name=\"Sozialismus.info\" f=\"Sozialismus.info.xml\"><rule from=\"^http://sozialismus\\.info/\" to=\"https://www.sozialismus.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Space Inch (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Space-Inch.xml\"><rule from=\"^http://(?:www\\.)?godownloadsongs\\.com/\" to=\"https://godownloadsongs.com/\"/><rule from=\"^http://(?:www\\.)?skipscreen\\.com/\" to=\"https://skipscreen.com/\"/></ruleset>", "<ruleset name=\"Space.com store\" f=\"Space.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Space2u (partial)\" f=\"Space2u.xml\"><exclusion pattern=\"^http://(?:www\\.)?space2u\\.com/(?!accadm/base/auth\\.php|files/login\\.php|images/)\"/><securecookie host=\"^(?:owa|webmail2)\\.space2u\\.com$\" name=\".+\"/><rule from=\"^http://(owa\\.|webmail2\\.|www\\.)?space2u\\.com/\" to=\"https://$1space2u.com/\"/></ruleset>", "<ruleset name=\"SpacePolicyOnline.com\" default_off=\"mismatch\" f=\"SpacePolicyOnline.com.xml\"><securecookie host=\"^.*\\.spacepolicyonline\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?spacepolicyonline\\.com/\" to=\"https://www.spacepolicyonline.com/\"/></ruleset>", "<ruleset name=\"SpaceUp.org\" default_off=\"mismatch\" f=\"SpaceUp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SWeb.ru\" f=\"SpaceWeb.xml\"><securecookie host=\"^\\.sweb\\.ru$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpaceX\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SpaceX.xml\"><rule from=\"^http://(?:www\\.)?spacex\\.com/\" to=\"https://spacex.com/\"/></ruleset>", "<ruleset name=\"Space Industry News\" f=\"Space_Industry_News.xml\"><rule from=\"^http://(?:www\\.)?spaceindustrynews\\.com/\" to=\"https://spaceindnews.wpengine.com/\"/></ruleset>", "<ruleset name=\"Space Launch Report.com\" default_off=\"mismatched\" f=\"Space_Launch_Report.com.xml\"><rule from=\"^http://(?:www\\.)?spacelaunchreport\\.com/\" to=\"https://spacelaunchreport.com/\"/></ruleset>", "<ruleset name=\"Space Telescope Science Institute (partial)\" f=\"Space_Telescope_Science_Institute.xml\"><securecookie host=\"^archive\\.stsci\\.edu$\" name=\".+\"/><rule from=\"^http://archive\\.stsci\\.edu/\" to=\"https://archive.stsci.edu/\"/></ruleset>", "<ruleset name=\"Spaceweather PHONE\" f=\"Spaceweather-PHONE.xml\"><securecookie host=\"^spaceweatherphone\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?spaceweatherphone\\.com/\" to=\"https://spaceweatherphone.com/\"/></ruleset>", "<ruleset name=\"SpamGourmet\" f=\"SpamGourmet.xml\"><rule from=\"^http://spamgourmet\\.com/\" to=\"https://spamgourmet.com/\"/><rule from=\"^http://www\\.spamgourmet\\.com/\" to=\"https://www.spamgourmet.com/\"/></ruleset>", "<ruleset name=\"spamicity.info\" default_off=\"failed ruleset test\" f=\"Spamicity.info.xml\"><securecookie host=\"^spamicity\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spamicity\\.info/\" to=\"https://spamicity.info/\"/></ruleset>", "<ruleset name=\"Spanair\" default_off=\"failed ruleset test\" f=\"Spanair.xml\"><rule from=\"^http://spanair\\.com/\" to=\"https://spanair.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.spanair\\.com/\" to=\"https://$1.spanair.com/\"/></ruleset>", "<ruleset name=\"Spankwire (partial)\" default_off=\"expired\" f=\"Spankwire.xml\"><rule from=\"^http://(?:www\\.)?spankwire\\.com/\" to=\"https://www.spankwire.com/\"/><securecookie host=\"^(?:www\\.)?spankwire\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Spark-Summit.org\" f=\"Spark-Summit.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spark.ru\" f=\"Spark.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SparkLabs.com\" f=\"SparkLabs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparked\" f=\"Sparked.com.xml\"><rule from=\"^http://www\\.sparked\\.com/\" to=\"https://www.sparked.com/\"/></ruleset>", "<ruleset name=\"Sparkfun.com\" f=\"Sparkfun.xml\"><securecookie host=\"^(?:forum)?\\.sparkfun\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparklit\" f=\"Sparklit.xml\"><securecookie host=\"^\\.sparklit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparkstudios.com\" default_off=\"failed ruleset test\" f=\"Sparkstudios.com.xml\"><rule from=\"^http://www\\.sparkstudios\\.com/\" to=\"https://www.sparkstudios.com/\"/><rule from=\"^http://sparkstudios\\.com/\" to=\"https://www.sparkstudios.com/\"/></ruleset>", "<ruleset name=\"Spartafx.com\" default_off=\"failed ruleset test\" f=\"Spartafx.com.xml\"><securecookie host=\"^(?:w*\\.)?spartafx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Spartan Institute (partial)\" default_off=\"failed ruleset test\" f=\"Spartan_Institute.xml\"><securecookie host=\"^(?:w*\\.)?thespartaninstitute\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparx.org.nz\" f=\"Sparx.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparx Trading.com (false MCB)\" platform=\"mixedcontent\" f=\"Sparx_Trading.com-falsemixed.xml\"><securecookie host=\"^\\.sparxtrading\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sparxtrading\\.com/\" to=\"https://www.sparxtrading.com/\"/></ruleset>", "<ruleset name=\"Sparx Trading.com (partial)\" f=\"Sparx_Trading.com.xml\"><rule from=\"^http://(?:www\\.)?sparxtrading\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.sparxtrading.com/\"/></ruleset>", "<ruleset name=\"SpatialBuzz.com (problematic)\" default_off=\"expired, self-signed\" f=\"SpatialBuzz.com-problematic.xml\"><securecookie host=\"^www\\.spatialbuzz\\.com$\" name=\".+\"/><rule from=\"^http://(ftp|git|logs|monitor|sbfs|www)\\.spatialbuzz\\.com/\" to=\"https://$1.spatialbuzz.com/\"/></ruleset>", "<ruleset name=\"SpatialBuzz.com (partial)\" f=\"SpatialBuzz.com.xml\"><securecookie host=\"^fs\\.spatialbuzz\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|api|cdn2?|demo|fs|maps|splunk|vpn)\\.)?spatialbuzz\\.com/\" to=\"https://$1spatialbuzz.com/\"/></ruleset>", "<ruleset name=\"SpatialPoint\" default_off=\"failed ruleset test\" f=\"SpatialPoint.xml\"><rule from=\"^http://(?:www\\.)?spatialpoint\\.com/\" to=\"https://spatialpoint.com/\"/></ruleset>", "<ruleset name=\"SpeakPipe.com\" f=\"SpeakPipe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speak Your Silence\" f=\"Speak_Your_Silence.xml\"><securecookie host=\"^\\.?speakyoursilence\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speakeasy.net (partial)\" f=\"Speakeasy.net.xml\"><securecookie host=\"^(?:www\\.)?speakeasy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speaker Deck.com\" f=\"Speaker_Deck.com.xml\"><securecookie host=\"^speakerdeck\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speaker Exchange\" f=\"Speaker_Exchange.xml\"><securecookie host=\"^(?:w*\\.)?reconingspeakers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpeakyChat.com\" f=\"SpeakyChat.com.xml\"><securecookie host=\"^(?:w*\\.)?speaky(?:chat|web)\\.com$\" name=\".+\"/><rule from=\"^http://((?:download|install|www)\\.)?speakychat\\.com/\" to=\"https://$1speakychat.com/\"/><rule from=\"^http://(www\\.)?speakyweb\\.com/\" to=\"https://$1speakyweb.com/\"/></ruleset>", "<ruleset name=\"Special-trade.de\" f=\"Special-trade.de.xml\"><rule from=\"^http://(?:www\\.)?special-trade\\.de/\" to=\"https://www.special-trade.de/\"/></ruleset>", "<ruleset name=\"SpecialForces.com\" default_off=\"expired, missing certificate chain\" f=\"SpecialForces.xml\"><securecookie host=\"^(?:.+\\.)?specialforces\\.com$\" name=\".+\"/><rule from=\"^http://specialforces\\.com/\" to=\"https://www.specialforces.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Specialized Products Company (partial)\" f=\"Specialized_Products_Company.xml\"><rule from=\"^http://(?:www\\.)?specialized\\.net/($|\\?|Specialized/(?:App_Themes|Checkout|images|Login\\.aspx|Repository|styles|WebResource\\.axd)(?:$|\\?|/))\" to=\"https://www.specialized.net/$1\"/></ruleset>", "<ruleset name=\"Specific Media (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Specific-Media-mismatches.xml\"><rule from=\"^http://(?:(creatives\\.)|www\\.)?specificmedia\\.co\\.uk/\" to=\"https://$1specificmedia.co.uk/\"/></ruleset>", "<ruleset name=\"Specific Media (partial)\" default_off=\"failed ruleset test\" f=\"Specific-Media.xml\"><rule from=\"^http://(cm|smp)\\.specificmedia\\.com/\" to=\"https://$1.specificmedia.com/\"/><rule from=\"^http://smp\\.specificmedia\\.net/\" to=\"https://smp.specificmedia.net/\"/></ruleset>", "<ruleset name=\"Specificclick\" f=\"Specificclick.xml\"><securecookie host=\"^\\.specificclick\\.net$\" name=\"^ug$\"/><securecookie host=\"^(?:afe2?|bp|clk|cs|dp|mpp)\\.specificclick\\.net$\" name=\".+\"/><rule from=\"^http://(afe2?|bp|clk|cs|dp2?|mpp2?|rome)\\.specificclick\\.net/\" to=\"https://$1.specificclick.net/\"/><rule from=\"^http://dg\\.specificclick\\.net/\" to=\"https://dp.specificclick.net/\"/></ruleset>", "<ruleset name=\"Spectator.org (partial)\" default_off=\"expired\" f=\"Spectator.org.xml\"><securecookie host=\"^\\.(?:www\\.)?spectator\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spectator\\.org/\" to=\"https://spectator.org/\"/></ruleset>", "<ruleset name=\"Specto.io\" f=\"Specto.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectraflow.com\" default_off=\"failed ruleset test\" f=\"Spectraflow.com.xml\"><securecookie host=\"^(?:www)?\\.spectraflow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectrum.com\" f=\"Spectrum.com.xml\"><securecookie host=\"^(?:business\\.|(?:media|www)\\.business\\.|www\\.)?spectrum\\.com$\" name=\".+\"/><securecookie host=\"^\\.business\\.spectrum\\.com$\" name=\"^PrefID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpectrumBusiness.net (partial)\" f=\"SpectrumBusiness.net.xml\"><exclusion pattern=\"^http://www\\.spectrumbusiness\\.net/(?!support(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectrum Business Insights.com\" f=\"Spectrum_Business_Insights.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speed Dreams\" default_off=\"mismatch, self-signed\" f=\"Speed-Dreams.xml\"><securecookie host=\"^(?:.*\\.)?speed-dreams\\.org$\" name=\".*\"/><rule from=\"^http://www\\.speed-dreams\\.org/\" to=\"https://speed-dreams.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpeedCrunch.org\" default_off=\"mismatched\" f=\"SpeedCrunch.org.xml\"><rule from=\"^http://(?:www\\.)?speedcrunch\\.org/\" to=\"https://speedcrunch.org/\"/></ruleset>", "<ruleset name=\"SpeedPPC (partial)\" f=\"SpeedPPC.xml\"><securecookie host=\"^(?:w*\\.)?speedppc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpeedTree.com (partial)\" f=\"SpeedTree.com.xml\"><securecookie host=\"^\\.speedtree\\.com$\" name=\"^_(?:opt_\\w+|_utm)\\w$\"/><securecookie host=\"^(?:\\.?store|www)\\.speedtree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speed World Grafix.com\" f=\"Speed_World_Grafix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedcoin.org (partial)\" f=\"Speedcoin.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?speedcoin\\.org:2750\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedof.me\" f=\"Speedof.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedtest.net (partial)\" default_off=\"Breaks site\" f=\"Speedtest.net.xml\"><exclusion pattern=\"^http://c\\.speedtest\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http://www\\.speedtest\\.net/+(?:$|\\?)\"/><rule from=\"^http://c\\.speedtest\\.net/\" to=\"https://www.speedtest.net/\"/><rule from=\"^http://(?:www\\.)?speedtest\\.net/\" to=\"https://www.speedtest.net/\"/></ruleset>", "<ruleset name=\"Speedyshare.com\" f=\"Speedyshare.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spench.net\" default_off=\"expired, mismatched, self-signed\" f=\"Spench.net.xml\"><securecookie host=\"^\\.spench\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spench\\.net/\" to=\"https://www.spench.net/\"/><rule from=\"^http://wiki\\.spench\\.net/\" to=\"https://wiki.spench.net/\"/></ruleset>", "<ruleset name=\"Spendabit.co\" f=\"Spendabit.co.xml\"><securecookie host=\"^spendabit\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spendbitcoins\" default_off=\"failed ruleset test\" f=\"Spendbitcoins.xml\"><securecookie host=\"^(?:w*\\.)?spendbitcoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sphere.com\" f=\"Sphere.com.xml\"><rule from=\"^http://sphere\\.com/\" to=\"https://www.sphere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spice-space.org\" default_off=\"mismatched\" f=\"Spice-space.org.xml\"><rule from=\"^http://(?:www\\.)?spice-space\\.org/\" to=\"https://www.spice-space.org/\"/></ruleset>", "<ruleset name=\"spicebox\" default_off=\"failed ruleset test\" f=\"Spicebox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiceworks.com\" f=\"Spiceworks.xml\"><exclusion pattern=\"^http://swagshop\\.spiceworks\\.com/+(?![Ss]hared/)\"/><securecookie host=\"^\\.spiceworks\\.com$\" name=\"^(?:ref|spiceworks_community|_swndat|_swnid)$\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!swagshop\\.)\\w\" name=\".\"/><rule from=\"^http://spiceworks\\.com/\" to=\"https://www.spiceworks.com/\"/><rule from=\"^http://developers\\.spiceworks\\.com/\" to=\"https://spiceworks.github.io/developers.spiceworks.com//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiceworks static.com\" f=\"Spiceworks_static.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spider.io (partial)\" f=\"Spider.io.xml\"><exclusion pattern=\"^http://(?:www\\.)?splider\\.io/(?!wp-content/)\"/><rule from=\"^http://(?:www\\.)?spider\\.io/\" to=\"https://d1ukwbduzme6ra.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SpiderOak.com\" f=\"SpiderOak.xml\"><securecookie host=\"^(?:www\\.)?spideroak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiderweb Software\" platform=\"mixedcontent\" f=\"Spiderweb-Software.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:(?:www\\.)?spidweb|spiderwebsoftware)\\.com/\" to=\"https://spiderwebsoftware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel QC (partial)\" f=\"Spiegel-QC.xml\"><securecookie host=\"^\\.quality-channel\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel.de (partial)\" f=\"Spiegel.xml\"><exclusion pattern=\"^http://www\\.spiegel\\.de/(?!images/|layout/|pics/)\"/><securecookie host=\"^(?:abo|count|magazin|ophirum)\\.spiegel\\.de$\" name=\".*\"/><rule from=\"^http://cdn\\d?\\.spiegel\\.de/\" to=\"https://www.spiegel.de/\"/><rule from=\"^http://shop\\.spiegel\\.de/[^?]*\\??$\" to=\"https://www.amazon.de/b?ie=UTF8&node=2478999031\"/><rule from=\"^http://shop\\.spiegel\\.de/[^?]*\\?\" to=\"https://www.amazon.de/b?ie=UTF8&node=2478999031&\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spielfuerdeinland.de\" f=\"Spielfuerdeinland.de.xml\"><exclusion pattern=\"^http:\\/\\/www.spielfuerdeinland.de\\/sfdl\\/app\\/Spiel-fuer-dein-Land-Die-App-und-Download-Links,onlineapp100.html\"/><securecookie host=\"^(www\\.)?spielfuerdeinland\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiil.org\" f=\"Spiil.org.xml\"><rule from=\"^http://spiil\\.org/\" to=\"https://www.spiil.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splinu.dk\" f=\"Spilnu.dk.xml\"><securecookie host=\"^www\\.spilnu\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spilnu\\.dk/\" to=\"https://www.spilnu.dk/\"/></ruleset>", "<ruleset name=\"Spin.de (broken)\" default_off=\"reported broken\" f=\"Spin.de.xml\"><rule from=\"^http://(?:www\\.)?spin\\.de/\" to=\"https://www.spin.de/\"/></ruleset>", "<ruleset name=\"spinics.net (partial)\" f=\"Spinics.net.xml\"><rule from=\"^http://spinics\\.net/\" to=\"https://www.spinics.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spirit Airlines\" platform=\"mixedcontent\" f=\"SpiritAirlines.xml\"><rule from=\"^http://spirit\\.com/\" to=\"https://spirit.com/\"/><rule from=\"^http://www\\.spirit\\.com/\" to=\"https://www.spirit.com/\"/></ruleset>", "<ruleset name=\"spkcn.com\" f=\"Spkcn.com.xml\"><rule from=\"^http://spkcn\\.com/\" to=\"https://www.spkcn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splash Data.com (partial)\" f=\"Splash_Data.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splash that.com\" f=\"Splash_that.com.xml\"><securecookie host=\"^(?:insightseries\\.|www\\.)?splashthat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Split Reason Clothing\" f=\"Split_Reason_Clothing.xml\"><securecookie host=\"^(?:www\\.)?splitreason\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sploder.com (partial)\" f=\"Sploder.com.xml\"><rule from=\"^http://cdn\\.sploder\\.com/\" to=\"https://cdn.sploder.com/\"/></ruleset>", "<ruleset name=\"splone.com\" f=\"Splone.com.xml\"><rule from=\"^http://www\\.splone\\.com/\" to=\"https://splone.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spogo.co.uk\" f=\"Spogo.co.uk.xml\"><securecookie host=\"^(?:www\\.)?spogo\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spoki\" f=\"Spoki.xml\"><securecookie host=\"^.*\\.spoki\\.lv$\" name=\".*\"/><rule from=\"^http://(?:img\\d\\w\\.)?www\\.spoki\\.lv/\" to=\"https://www.spoki.lv/\"/></ruleset>", "<ruleset name=\"Spontex.org\" platform=\"cacert\" f=\"Spontex.org.xml\"><securecookie host=\"^(?:(?:adminmedia|m|www|fr|en|media)?\\.)?spontex\\.org$\" name=\".+\"/><securecookie host=\"^spontex\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spoonful.com\" default_off=\"failed ruleset test\" f=\"Spoonful.com.xml\"><rule from=\"^http://(?:static\\.|www\\.)?spoonful\\.com/\" to=\"https://spoonful.com/\"/></ruleset>", "<ruleset name=\"Sport1.de\" f=\"Sport1.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sportifik\" f=\"Sportifik.xml\"><rule from=\"^http://sportifik\\.com/\" to=\"https://www.sportifik.com/\"/><rule from=\"^http://([^/:@]+)?\\.sportifik\\.com/\" to=\"https://$1.sportifik.com/\"/></ruleset>", "<ruleset name=\"Sports Authority (partial)\" default_off=\"failed ruleset test\" f=\"Sports_Authority.xml\"><securecookie host=\"^www\\.sportsauthority\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sportsauthority\\.com/\" to=\"https://www.sportsauthority.com/\"/></ruleset>", "<ruleset name=\"Sportys\" f=\"Sportys.xml\"><securecookie host=\"^(?:.*\\.)?sportys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spot.IM\" f=\"Spot.IM.xml\"><rule from=\"^http://spot\\.im/\" to=\"https://www.spot.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpotXchange.com (partial)\" f=\"SpotXchange.com.xml\"><rule from=\"^http://((?:search|sync\\.search|www)\\.)?spotxchange\\.com/\" to=\"https://$1spotxchange.com/\"/></ruleset>", "<ruleset name=\"SCDN.co (problematic)\" default_off=\"mismatched\" f=\"Spotify-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotify.com (partial)\" f=\"Spotify.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://download\\.spotify\\.com/\" to=\"https://d1clcicqv97n4s.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotplanet\" default_off=\"failed ruleset test\" f=\"Spotplanet.xml\"><securecookie host=\"^\\.spotplanet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotware.com\" f=\"Spotware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sprawl.org\" f=\"Sprawl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spreadshirt\" f=\"Spreadshirt.xml\"><securecookie host=\"\\w+\\.spreadshirt\\.(at|be|ch|co\\.uk|com|com\\.au|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)$\" name=\".+\"/><exclusion pattern=\"^http://(www\\.)?spreadshirt\\.(at|be|ch|co\\.uk|com|com\\.au|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)/\"/><rule from=\"^http://(\\w+)\\.spreadshirt\\.(at|be|ch|co\\.uk|com|com\\.au|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)/\" to=\"https://$1.spreadshirt.$2/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring-TNS.net (partial)\" f=\"Spring-TNS.net.xml\"><securecookie host=\".*\\.spring-tns\\.net$\" name=\".+\"/><rule from=\"^http://ssl-(\\w+)\\.spring-tns\\.net/\" to=\"https://ssl-$1.spring-tns.net/\"/><rule from=\"^http://nelonen\\.spring-tns\\.net/\" to=\"https://ssl-nelonen.spring-tns.net/\"/></ruleset>", "<ruleset name=\"Spring.io (false MCB)\" platform=\"mixedcontent\" f=\"Spring.io-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring.io (partial)\" f=\"Spring.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring.org.uk\" default_off=\"expired, self-signed\" f=\"Spring.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpringFiles (partial)\" default_off=\"expired, self-signed\" f=\"SpringFiles.xml\"><securecookie host=\"^\\.springfiles\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?springfiles\\.nl/\" to=\"https://springfiles.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring RTS.com\" f=\"Spring_RTS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer-Gabler.de\" default_off=\"mismatched\" f=\"Springer-Gabler.de.xml\"><securecookie host=\"^springer-gabler\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?springer-gabler\\.de/\" to=\"https://springer-gabler.de/\"/></ruleset>", "<ruleset name=\"Springer Zahnmedizin.de (partial)\" f=\"Springer-Medizin.de.xml\"><securecookie host=\"^registrierung\\.springer-medizin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer.com (partial)\" f=\"Springer.xml\"><securecookie host=\".\\.springer\\.com$\" name=\".\"/><rule from=\"^http://springer\\.com/\" to=\"https://www.springer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer Zahnmedizin.de\" f=\"Springer_Zahnmedizin.de.xml\"><securecookie host=\"^(?:fortbildung\\.|www\\.)?springerzahnmedizin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springpad\" default_off=\"failed ruleset test\" f=\"Springpad.xml\"><rule from=\"^http://(?:www\\.)?springpadit\\.com/\" to=\"https://springpadit.com/\"/></ruleset>", "<ruleset name=\"Springserve\" f=\"Springserve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springshare.com (partial)\" f=\"Springshare.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sprint.com (partial)\" default_off=\"failed ruleset test\" f=\"Sprint.com.xml\"><securecookie host=\"^.*\\.sprint(?:pcs)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sprint\\.com/\" to=\"https://www.sprint.com/\"/><rule from=\"^http://community\\.sprint\\.com/favicon\\.ico\" to=\"https://community.sprint.com/favicon.ico\"/><rule from=\"^http://(coverage|discover|image[234]|mysprint|ria|shop2?)\\.sprint\\.com/\" to=\"https://$1.sprint.com/\"/><rule from=\"^http://support\\.sprint\\.com/(catalog/image|global/(?:cs|image))s/\" to=\"https://support.sprint.com/$1s/\"/><rule from=\"^http://manage\\.sprintpcs\\.com/\" to=\"https://manage.sprintpcs.com/\"/></ruleset>", "<ruleset name=\"Sprint Buyback.com (partial)\" f=\"Sprint_Buyback.com.xml\"><rule from=\"^http://secure\\.sprintbuyback\\.com/\" to=\"https://secure.sprintbuyback.com/\"/></ruleset>", "<ruleset name=\"Sprint Rebates.com\" f=\"Sprint_Rebates.com.xml\"><rule from=\"^http://(?:www\\.)?sprintrebates\\.com/\" to=\"https://www.sprintrebates.com/\"/></ruleset>", "<ruleset name=\"SpritesMods.com\" f=\"SpritesMods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spriza.com\" default_off=\"failed ruleset test\" f=\"Spriza.com.xml\"><securecookie host=\"^(?:www)?\\.spriza\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spriza\\.com/\" to=\"https://www.spriza.com/\"/></ruleset>", "<ruleset name=\"Sprout (partial)\" default_off=\"failed ruleset test\" f=\"Sprout.xml\"><rule from=\"^http://(?:www\\.)?sproutinc\\.com/\" to=\"https://sproutinc.com/\"/></ruleset>", "<ruleset name=\"SproutVideo.com\" f=\"SproutVideo.com.xml\"><securecookie host=\"^(?:videos\\.)?sproutvideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spsn.net\" default_off=\"failed ruleset test\" f=\"Spsn.net.xml\"><securecookie host=\"^(?:www\\.)?spsn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sptag.com\" default_off=\"failed ruleset test\" f=\"Sptag.com.xml\"><securecookie host=\"^(?:www\\.)?sptag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sptag1.com\" default_off=\"failed ruleset test\" f=\"Sptag1.com.xml\"><securecookie host=\"^(?:www\\.)?sptag1\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spu.ac.th (broken)\" default_off=\"HTTPS URL not found\" f=\"Spu.ac.th.xml\"><rule from=\"^http://(?:www\\.)?spu\\.ac\\.th/\" to=\"https://www.spu.ac.th/\"/></ruleset>", "<ruleset name=\"SpyShelter\" f=\"SpyShelter.xml\"><securecookie host=\"^www\\.spyshelter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spyderco.com\" f=\"Spyderco.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spylog.com (partial)\" f=\"Spylog.com.xml\"><securecookie host=\"^\\.spylog\\.com$\" name=\".+\"/><rule from=\"^http://(?:u\\d+\\.02|counter)\\.spylog\\.com/\" to=\"https://counter.spylog.com/\"/></ruleset>", "<ruleset name=\"Sqsp.com\" f=\"Sqsp.com.xml\"><rule from=\"^http://([\\w-]+\\.)?sqsp\\.com/\" to=\"https://$1squarespace.com/\"/></ruleset>", "<ruleset name=\"Square\" f=\"Square.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Square Penguin\" f=\"Square_Penguin.xml\"><securecookie host=\"^\\.squarepenguin\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"squarefree.com\" f=\"Squarefree.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Squarespace clients\" default_off=\"mismatch\" f=\"Squarespace-clients.xml\"><rule from=\"^http://(?:www\\.)?ohnopodcast\\.com/(display|layout|storage|universal)/\" to=\"https://www.ohnopodcast.com/$1/\"/></ruleset>", "<ruleset name=\"Squarespace.com (partial)\" f=\"Squarespace.xml\"><securecookie host=\".*\\.squarespace\\.com$\" name=\".+\"/><rule from=\"^http://cachefly\\.squarespace\\.com/\" to=\"https://squarespace.cachefly.net/\"/><rule from=\"^http://s3\\.media\\.squarespace\\.com/\" to=\"https://s3.amazonaws.com/s3.media.squarespace.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Squid Solutions (partial)\" f=\"Squid_Solutions.xml\"><rule from=\"^http://aws\\.tracker\\.squidanalytics\\.com/\" to=\"https://aws.tracker.squidanalytics.com/\"/></ruleset>", "<ruleset name=\"Squirrel-webmail.surftown.com\" default_off=\"failed ruleset test\" f=\"Squirrel-webmail.surftown.com.xml\"><rule from=\"^http://squirrel-webmail\\.surftown\\.com/\" to=\"https://squirrel-webmail.surftown.com/\"/></ruleset>", "<ruleset name=\"SquirrelMail\" f=\"SquirrelMail.xml\"><securecookie host=\"^squirrelmail\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?squirrelmail\\.org/\" to=\"https://squirrelmail.org/\"/></ruleset>", "<ruleset name=\"srcclr.com\" f=\"Srcclr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srcclr.help\" f=\"Srcclr.help.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srclib.org\" f=\"Srclib.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srdrvp.com\" default_off=\"missing certificate chain\" f=\"Srdrvp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Srna.sk\" f=\"Srna.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srvv.net\" f=\"Srvv.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRWare.net\" f=\"Srware.xml\"><securecookie host=\"^(?:.*\\.)?srware.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SsbKyh.com (partial)\" f=\"SsbKyh.com.xml\"><rule from=\"^http://cdn\\.ssbkyh\\.com/\" to=\"https://djhznh41oxwef.cloudfront.net/\"/></ruleset>", "<ruleset name=\"sslcert14.com\" f=\"Sslcert14.com.xml\"><securecookie host=\"^(?:.+\\.)?sslcert14\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sslcert14\\.com/\" to=\"https://$1sslcert14.com/\"/></ruleset>", "<ruleset name=\"sslcert19.com\" default_off=\"failed ruleset test\" f=\"Sslcert19.com.xml\"><securecookie host=\"^(?:[\\w-]*\\.)?sslcert19\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?sslcert19\\.com/\" to=\"https://$1sslcert18.com/\"/></ruleset>", "<ruleset name=\"sslcert35.com\" f=\"Sslcert35.com.xml\"><rule from=\"^http://(?:www\\.)?sslcert35\\.com/(?:\\?.*)?$\" to=\"https://webhosting.att.com/\"/><rule from=\"^http://([\\w-]+)\\.sslcert35\\.com/\" to=\"https://$1.sslcert35.com/\"/></ruleset>", "<ruleset name=\"ssldomain.com (partial)\" f=\"Ssldomain.com.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\".+\\.ssldomain\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.ssldomain\\.com/\" to=\"https://$1.ssldomain.com/\"/></ruleset>", "<ruleset name=\"ssltrust.us (partial)\" f=\"Ssltrust.us.xml\"><rule from=\"^http://test\\.ssltrust\\.us/\" to=\"https://test.ssltrust.us/\"/></ruleset>", "<ruleset name=\"sstest.jp\" f=\"Sstest.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St-Andrews.ac.uk (partial)\" f=\"St-Andrews.ac.uk.xml\"><securecookie host=\"^\\.(?:.+\\.)?st-andrews\\.ac\\.uk$\" name=\"^__utm\\w+$\"/><securecookie host=\"^(?:risweb|www\\.vacancies)\\.st-andrews\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?st-andrews\\.ac\\.uk/\" to=\"https://www.st-andrews.ac.uk/\"/><rule from=\"^http://(risweb|sparc|www\\.vacancies)\\.st-andrews\\.ac\\.uk/\" to=\"https://$1.st-andrews.ac.uk/\"/></ruleset>", "<ruleset name=\"stShrt.com\" f=\"StShrt.com.xml\"><securecookie host=\"^\\.stshrt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St Graber.org\" f=\"St_Graber.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St. Kitts Zipline (partial)\" default_off=\"failed ruleset test\" f=\"St_Kitts_Zipline.xml\"><securecookie host=\"^secure\\.stkittszipline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stkittszipline\\.com/images/logoImage_14\\.png\" to=\"https://secure.stkittszipline.com/images/ms/logoImage_14.png\"/><rule from=\"^http://secure\\.stkittszipline\\.com/\" to=\"https://secure.stkittszipline.com/\"/></ruleset>", "<ruleset name=\"St L Beacon.org\" f=\"St_L_Beacon.org.xml\"><securecookie host=\"^(?:www\\.)?stlbeacon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sta.sh\" f=\"Sta.sh.xml\"><securecookie host=\"^\\.sta\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stable Host.com (partial)\" f=\"Stable-Host.xml\"><securecookie host=\"^\\.stablehost\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^billing\\.stablehost\\.com$\" name=\".*\"/><rule from=\"^http://cdn\\.stablehost\\.com/\" to=\"https://www.stablehost.com/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StableLib.com\" f=\"StableLib.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stack Exchange (partial)\" f=\"Stack-Exchange.xml\"><exclusion pattern=\"^http://([\\w.-]+)\\.([\\w-]+)\\.stackexchange\\.com\"/><exclusion pattern=\"^http://elections\\.stackexchange\\.com\"/><securecookie host=\"^blogoverflow\\.com$\" name=\".+\"/><securecookie host=\"^askubuntu\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.askubuntu.com$\" name=\".+\"/><securecookie host=\"^mathoverflow\\.net$\" name=\".+\"/><securecookie host=\"^meta\\.mathoverflow.net$\" name=\".+\"/><securecookie host=\"^clc\\.serverfault\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.serverfault\\.com$\" name=\".+\"/><securecookie host=\"^serverfault\\.com$\" name=\".+\"/><securecookie host=\"^stackauth\\.com$\" name=\".+\"/><securecookie host=\"^dev\\.stackauth\\.com$\" name=\".+\"/><securecookie host=\"^stackexchange\\.com$\" name=\".+\"/><securecookie host=\"^([\\w-]+)\\.stackexchange\\.com$\" name=\".+\"/><securecookie host=\"^chat\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^careers\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^ja\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^pt\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^superuser\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.superuser\\.com$\" name=\".+\"/><securecookie host=\"^sstatic\\.net$\" name=\".+\"/><securecookie host=\"^cdn\\.sstatic\\.net$\" name=\".+\"/><securecookie host=\"^stackapps\\.com$\" name=\".+\"/><securecookie host=\"^teststackoverflow\\.com$\" name=\".+\"/><rule from=\"^https://([\\w.-]+)\\.([\\w-]+)\\.stackexchange\\.com/\" to=\"http://$1.$2.stackexchange.com/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stack.nl\" platform=\"cacert\" f=\"Stack.nl.xml\"><securecookie host=\".+\\.stack\\.nl$\" name=\".+\"/><rule from=\"^http://(dbadmin|koelkast|((?:bugs|forum|wiki)\\.)?uqm|webmail|websites|www)\\.stack\\.nl/\" to=\"https://$1.stack.nl/\"/></ruleset>", "<ruleset name=\"StackCommerce.com (partial)\" f=\"StackCommerce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StackMonkey.com\" default_off=\"failed ruleset test\" f=\"StackMonkey.com.xml\"><securecookie host=\"^www\\.stackmonkey\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stackmonkey\\.com/\" to=\"https://www.stackmonkey.com/\"/></ruleset>", "<ruleset name=\"StackSocial.com (partial)\" f=\"StackSocial.xml\"><securecookie host=\"^\\.stacksocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stacklet.com (partial)\" default_off=\"missing certificate chain\" f=\"Stacklet.com.xml\"><securecookie host=\"^(?:\\.secure)?\\.stacklet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stacksity.com\" f=\"Stacksity.com.xml\"><securecookie host=\"^\\.?stacksity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadt-Zuerich.ch\" f=\"Stadt-Zuerich.ch.xml\"><securecookie host=\"^www\\.stadt-zuerich\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stadt-zuerich\\.ch/\" to=\"https://www.stadt-zuerich.ch/\"/></ruleset>", "<ruleset name=\"Caschys Blog\" default_off=\"failed ruleset test\" f=\"Stadt-bremerhaven.de.xml\"><rule from=\"^http://m\\.stadt-bremerhaven\\.de/\" to=\"https://m.stadt-bremerhaven.de/\"/><rule from=\"^http://(?:www\\.)?stadt-bremerhaven\\.de/\" to=\"https://stadt-bremerhaven.de/\"/></ruleset>", "<ruleset name=\"Stadtwerke Bamberg\" f=\"Stadtwerke-Bamberg.xml\"><rule from=\"^http://www\\.stadtwerke\\-bamberg\\.de/\" to=\"https://www.stadtwerke-bamberg.de/\"/></ruleset>", "<ruleset name=\"Stadtwerke Ingolstadt\" platform=\"mixedcontent\" f=\"Stadtwerke-Ingolstadt.xml\"><rule from=\"^http://www\\.sw\\-i\\.de/\" to=\"https://www.sw-i.de/\"/><rule from=\"^http://portal\\.sw\\-in\\.de/\" to=\"https://portal.sw-in.de/\"/></ruleset>", "<ruleset name=\"Staffordshire.gov.uk (partial)\" f=\"Staffordshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Staffordshire Police\" f=\"StaffordshirePolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stalkr.net (partial)\" platform=\"cacert\" f=\"Stalkr.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stallman.org\" f=\"Stallman.org.xml\"><rule from=\"^https?://ww\\.stallman\\.org/\" to=\"https://www.stallman.org/\"/><rule from=\"^http://(www\\.)?stallman\\.org/\" to=\"https://$1stallman.org/\"/></ruleset>", "<ruleset name=\"Stan Deyo\" default_off=\"Certificate mismatch\" f=\"StanDeyo.xml\"><rule from=\"^http://(?:www\\.)?standeyo\\.com/\" to=\"https://standeyo.com/\"/></ruleset>", "<ruleset name=\"Stand for Children (partial)\" default_off=\"failed ruleset test\" f=\"Stand-for-Children.xml\"><securecookie host=\"^.*\\.greatteachersgreatschools\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?greatteachersgreatschools\\.org/\" to=\"https://www.greatteachersgreatschools.org/\"/><rule from=\"^http://(www\\.)?stand\\.org/(national/(?:donate|join)|sites/)\" to=\"https://$1stand.org/$2\"/></ruleset>", "<ruleset name=\"Stand Against Spying.org\" f=\"Stand_Against_Spying.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stand Up to Cancer (partial)\" default_off=\"failed ruleset test\" f=\"Stand_Up_to_Cancer.xml\"><securecookie host=\"^(?:secure)?\\.standup2cancer\\.(?:ca|org)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?standup2cancer\\.(ca|org)/\" to=\"https://www.standup2cancer.$1/\"/><rule from=\"^http://s(ecure|hop|i)\\.standup2cancer\\.org/\" to=\"https://s$1.standup2cancer.org/\"/><rule from=\"^http://su2c\\.standup2cancer\\.org/(?=_www_images/|favicon\\.ico|styles/)\" to=\"https://d3ltd4zpclv1en.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Standaard.be (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Standaard.be-mixed.xml\"><rule from=\"^http://www\\.standaard\\.be/\" to=\"https://www.standaard.be/\"/></ruleset>", "<ruleset name=\"Standaard.be (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Standaard.be.xml\"><exclusion pattern=\"^http://www\\.standaard\\.be/+(?!extra/)\"/><securecookie host=\"^shop\\.standaard\\.be$\" name=\".+\"/><rule from=\"^http://shop\\.standaard\\.be/+(?=$|\\?)\" to=\"https://shop.standaard.be/CORELIO-Standaard-Site/index-nl_BE\"/><rule from=\"^http://(shop\\.)?standaard\\.be/\" to=\"https://$1standaard.be/\"/><rule from=\"^http://(?:2|cdn2|www)\\.standaard(?:cdn)?\\.be/\" to=\"https://www.standaard.be/\"/><rule from=\"^http://dating\\.standaard\\.be/(?=css/|favicon\\.ico|js/|pics/|pht/)\" to=\"https://secure.datinglab.net/\"/></ruleset>", "<ruleset name=\"Standard Ebooks.com\" f=\"Standard_Ebooks.com.xml\"><securecookie host=\"^standardebooks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Standish Management.com\" default_off=\"redirects to http\" f=\"Standish-Management.xml\"><exclusion pattern=\"^http://(?:www\\.)?standishmanagement\\.com/(?:$|wp-content/)\"/><securecookie host=\".*\\.standishmanagement\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford.edu (problematic)\" default_off=\"expired, mismatched, missing certificate chain, self-signed\" f=\"Stanford-University-problematic.xml\"><exclusion pattern=\"^http://soe\\.stanford\\.edu/+(?!$)\"/><securecookie host=\"^cdc-tree\\.stanford\\.edu$\" name=\".+\"/><securecookie host=\"^\\.(?:bgm|engineering|maps)\\.stanford\\.edu$\" name=\".+\"/><rule from=\"^http://foswiki\\.stanford\\.edu/\" to=\"https://yuba.stanford.edu/\"/><rule from=\"^http://soe\\.stanford\\.edu/+$\" to=\"https://engineering.stanford.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford.edu (partial)\" f=\"Stanford-University.xml\"><exclusion pattern=\"^http://125\\.stanford\\.edu/+(?!wp-content/)\"/><exclusion pattern=\"^http://arts\\.stanford\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://bodoni\\.stanford\\.edu/(?!WebCat_Local/Images/)\"/><exclusion pattern=\"^http://crypto\\.stanford\\.edu/flashproxy/embed\\.html\"/><exclusion pattern=\"^http://plato\\.stanford\\.edu/+(?!css/|symbols/)\"/><exclusion pattern=\"^http://scopeblog\\.stanford\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://scpd\\.stanford\\.edu/+(?!css/|favicon\\.ico|public/|restricted/|upload/)\"/><exclusion pattern=\"^http://(?:www-cs-students|xenon)\\.stanford\\.edu/+~\"/><securecookie host=\"^(?:3dqlab|adminguide|alumni|alumni-gsb|anderson|\\.answers|\\.bewell|campus-map|cap|classx|continuingstudies|dams|ehsappprd1|eip|epgy|explorecourses|\\.facultyaffairs|\\.facultyaffairs-humsci|give|givinghistory|\\.gse-it|hannahousetours|healthysteps|honorrolls|\\.itservices|lagunita|lane|(?:www\\.)?law|(?:blogs)?\\.law|\\.lbre|\\.learndrupal|library|makeagift|makeapledge|makeapledgepayment|maven|mentoring|\\.mla|mvideos|mygsb|mail\\.ohns|\\.ohsx|openflow|otldisclosure|owamail|parents|pgnet|pilot-eip|\\.porterdrive|sallie|\\.sdlf|sdr|searchworks|\\.siepr|(?:\\.news|www6)\\.slac\\|spectrum|\\.stanfordcareers|stanfordwho|steppingout|\\.techcommons|weblogin|webauth1|xsearch).stanford\\.edu$\" name=\".+\"/><rule from=\"^http://askjane\\.stanford\\.edu/.*\" to=\"https://studentaffairs.stanford.edu/askjane\"/><rule from=\"^http://bcnm\\.stanford\\.edu/\" to=\"https://live-bcnm-2015.pantheon.berkeley.edu/\"/><rule from=\"^http://brannerlibrary\\.stanford\\.edu/+\" to=\"https://library.stanford.edu/branner/\"/><rule from=\"^http://sao\\.stanford\\.edu/+\" to=\"https://cao.carnegiescience.edu/\"/><rule from=\"^http://compgeo\\.stanford\\.edu/+\" to=\"https://pangea.stanford.edu/programs/compgeo/\"/><rule from=\"^http://computing\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/computing\"/><rule from=\"^http://www\\.cs\\.stanford\\.edu/\" to=\"https://cs.stanford.edu/\"/><rule from=\"^http://cwp\\.stanford\\.edu/[^?]*\" to=\"https://med.stanford.edu/irt/teaching/cwp.html\"/><rule from=\"^http://dataclass\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/guide/riskclassifications\"/><rule from=\"^http://dor\\.stanford\\.edu/\" to=\"https://doresearch.stanford.edu/\"/><rule from=\"^http://email\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/emailcalendar/email/\"/><rule from=\"^http://endoflife\\.stanford\\.edu/[^?]*\" to=\"https://palliative.stanford.edu/endoflife/\"/><rule from=\"^http://eps\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/eps/\"/><rule from=\"^http://ess\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/ess/\"/><rule from=\"^http://fingate\\.stanford\\.edu/\" to=\"https://www.stanford.edu/group/fms/fingate/\"/><rule from=\"^http://globalecology\\.stanford\\.edu/\" to=\"https://dge.stanford.edu/\"/><rule from=\"^http://gse\\.stanford\\.edu/+\" to=\"https://ed.stanford.edu/\"/><rule from=\"^http://gsehelpsu\\.stanford\\.edu/+([^?]*)(?:$|\\?.*)\" to=\"https://helpsu.stanford.edu/helpsu/3.0/helpsu-form?pcat=GSEIT&dept=Graduate%20School%20of%20Education$1\"/><rule from=\"^http://alumni\\.gsb\\.stanford\\.edu/\" to=\"https://www.gsb.stanford.edu/alumni/\"/><rule from=\"^http://helpcenter\\.stanford\\.edu/+\" to=\"https://cardinalatwork.stanford.edu/faculty-staff-help-center/\"/><rule from=\"^http://hipaa\\.stanford\\.edu/+\" to=\"https://privacy.stanford.edu/\"/><rule from=\"^http://hrg\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/hrg/\"/><rule from=\"^http://infocenter\\.stanford\\.edu/+\" to=\"https://library.stanford.edu/libraries/green/about\"/><rule from=\"^http://italerts\\.stanford\\.edu/+\" to=\"https://uitalerts.stanford.edu/\"/><rule from=\"^http://itmetrics\\.stanford\\.edu/+\" to=\"https://dashboard.stanford.edu/\"/><rule from=\"^http://itwinterclos(?:ur)?e\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/organization/winterclosure\"/><rule from=\"^http://mededresearch\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/mededresearch/\"/><rule from=\"^http://netreg\\.stanford\\.edu/+\" to=\"https://rescomp.stanford.edu/iprequest/\"/><rule from=\"^http://orderit\\.stanford\\.edu/+\" to=\"https://pmg-prd.stanford.edu/sc/default.aspx\"/><rule from=\"^http://plans-review\\.stanford\\.edu/[^?]\" to=\"https://lbre-apps.stanford.edu/cfapps/prod/plansreview/\"/><rule from=\"^http://psychiatry\\.stanford\\.edu/[^?]*\" to=\"https://med.stanford.edu/psychiatry.html\"/><rule from=\"^http://rcc\\.stanford\\.edu/+\" to=\"https://rescomp.stanford.edu/directory/rcc.php\"/><rule from=\"^http://refunds\\.stanford\\.edu/+\" to=\"https://survey.az1.qualtrics.com/jfe/form/SV_bkFFEBROps4VrrD\"/><rule from=\"^http://search\\.stanford\\.edu/\" to=\"https://www.stanford.edu/search/\"/><rule from=\"^http://securecomputing\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/security/\"/><rule from=\"^http://shibboleth\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/shibboleth\"/><rule from=\"^http://signalblog\\.stanford\\.edu/+\" to=\"https://teachingcommons.stanford.edu/teaching-talk\"/><rule from=\"^http://slac\\.stanford\\.edu/\" to=\"https://www.slac.stanford.edu/\"/><rule from=\"^http://sparkmed\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/sparkmed/\"/><rule from=\"^http://stanfordmedicine\\.stanford\\.edu/.*\" to=\"https://med.stanford.edu/\"/><rule from=\"^http://stucomp\\.stanford\\.edu/+(?=$|\\?)\" to=\"https://acomp.stanford.edu/students\"/><rule from=\"^http://stucomp\\.stanford\\.edu/\" to=\"https://acomp.stanford.edu/\"/><rule from=\"^http://sunsport\\.stanford\\.edu/+(?:$|\\?.*)\" to=\"https://med.stanford.edu/sunsport.html\"/><rule from=\"^http://sunsport\\.stanford\\.edu/\" to=\"https://med.stanford.edu/\"/><rule from=\"^http://tba\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/techtraining/byappointment\"/><rule from=\"^http://techbriefings\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/techtraining/techbriefings\"/><rule from=\"^http://trachea\\.stanford\\.edu/+(?:$|\\?.*)\" to=\"https://med.stanford.edu/ohns/education/residency/portal/\"/><rule from=\"^http://trachea\\.stanford\\.edu/\" to=\"https://med.stanford.edu/\"/><rule from=\"^http://tram\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/tram/\"/><rule from=\"^http://uhr\\.stanford\\.edu/+\" to=\"https://cardinalatwork.stanford.edu/\"/><rule from=\"^http://uitcomms\\.stanford\\.edu/+([^?]*)(?:\\?.*)?\" to=\"https://helpsu.stanford.edu/helpsu/3.0/helpsu-form?pcat=uitcomm$1\"/><rule from=\"^http://vpol\\.stanford\\.edu/+\" to=\"https://vptl.stanford.edu/\"/><rule from=\"^http://webdesign\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/web/design/\"/><rule from=\"^http://webservices\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/web/designdev\"/><rule from=\"^http://worklife\\.stanford\\.edu/+\" to=\"https://cardinalatwork.stanford.edu/benefits-rewards/worklife/\"/><rule from=\"^http://www-cs(?:-faculty)?\\.stanford\\.edu/\" to=\"https://cs.stanford.edu/\"/><rule from=\"^http://www-cs-students\\.stanford\\.edu/\" to=\"https://xenon.stanford.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford.edu (false MCB)\" platform=\"mixedcontent\" f=\"Stanford.edu-falsemixed.xml\"><rule from=\"^http://knight\\.stanford\\.edu/+\" to=\"https://jsk.stanford.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford Healthcare.org\" f=\"Stanford_Healthcare.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford Hospital.org\" f=\"Stanford_Hospital.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford Med.org\" f=\"Stanford_Med.org.xml\"><rule from=\"^http://www\\.stanfordmed\\.org/.*\" to=\"https://stanfordhealthcare.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Staples.com\" default_off=\"failed ruleset test\" f=\"Staples.com.xml\"><securecookie host=\"^(?:www)?\\.staples\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?staples\\.com/\" to=\"https://www.staples.com/\"/></ruleset>", "<ruleset name=\"Star Motorcycles\" f=\"Star-Motorcycles.xml\"><securecookie host=\"^www\\.starmotorcycles\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?starmotorcycles\\.com/\" to=\"https://www.starmotorcycles.com/\"/></ruleset>", "<ruleset name=\"Star-Pool (partial)\" default_off=\"connection refused\" f=\"Star-Pool.xml\"><rule from=\"^http://(www\\.)?star-pool\\.com/(App_Themes|[aA]ssets|images|js|[lL]ogin\\.aspx|Members|(?:Script|Web)Resource\\.axd)($|\\?|/)\" to=\"https://$1star-pool.com/$2$3\"/></ruleset>", "<ruleset name=\"StarKist\" f=\"StarKist.xml\"><rule from=\"^http://(?:www\\.)?starkist\\.com/sites/\" to=\"https://www.starkist.com/sites/\"/></ruleset>", "<ruleset name=\"StarMoney.de\" f=\"StarMoney.de.xml\"><securecookie host=\"^\\.starmoney\\.de$\" name=\"^(?:phpbb3_\\w+_(?:k|sid|u)|sessioncookie)$\"/><securecookie host=\"^www\\.starmoney\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?starmoney\\.de/\" to=\"https://www.starmoney.de/\"/><rule from=\"^http://shop\\.starmoney\\.de/\" to=\"https://shop.starmoney.de/\"/></ruleset>", "<ruleset name=\"StarNet.com (partial)\" f=\"StarNet.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?starnet\\.com/(?!css/|favicon\\.ico|images/|js/|skin/)\"/><rule from=\"^http://(?:ssl\\.|www\\.)?starnet\\.com/\" to=\"https://ssl.starnet.com/\"/></ruleset>", "<ruleset name=\"StarRez\" f=\"StarRez.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StarTech.com (partial)\" f=\"StarTech.com.xml\"><exclusion pattern=\"^http://www\\.startech\\.com/+(?!(?:Account|SalesInquiry|TechSupport|eNews)(?:$|\\?)|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StarWars.com (partial) (mismatches)\" default_off=\"mismatch\" f=\"StarWars.com.xml\"><rule from=\"^http://(www\\.)?starwars\\.com/(?!$|\\?)\" to=\"https://$1starwars.com/\"/></ruleset>", "<ruleset name=\"Star Product Reviews (partial)\" default_off=\"failed ruleset test\" f=\"Star_Product_Reviews.xml\"><securecookie host=\"^admin\\.starproductreviews\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.starproductreviews\\.com/\" to=\"https://admin.starproductreviews.com/\"/></ruleset>", "<ruleset name=\"Star Search Casting.com (partial)\" f=\"Star_Search_Casting.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?starsearchcasting\\.com/+(?!favicon\\.ico|Images_thumbnails/|img/)\"/><rule from=\"^http://(?:(cdn\\.)|www\\.)?starsearchcasting\\.com/\" to=\"https://$1starsearchcasting.com/\"/></ruleset>", "<ruleset name=\"Star Trek (partial)\" default_off=\"failed ruleset test\" f=\"Star_Trek.xml\"><securecookie host=\"^store\\.startrek\\.com$\" name=\".+\"/><rule from=\"^http://store\\.startrek\\.com/\" to=\"https://store.startrek.com/\"/></ruleset>", "<ruleset name=\"Starbucks.com (partial)\" f=\"Starbucks.com.xml\"><securecookie host=\"^\\.starbucks\\.com$\" name=\"^(?:visid_)?incap_\\w+$\"/><securecookie host=\"^sgsmsupplier(?:test)?\\.starbucks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?starbucks\\.com/(?=[aA]ccounts(?:$|[?/])|favicon\\.ico|resources/|static/|sysiplocation/)\" to=\"https://www.starbucks.com/\"/><rule from=\"^http://sgsmsupplier(test)?\\.starbucks\\.com/\" to=\"https://sgsmsupplier$1.starbucks.com/\"/></ruleset>", "<ruleset name=\"Stardock (partial)\" f=\"Stardock.xml\"><securecookie host=\"^(?:store\\.|www\\.)?stardock\\.com$\" name=\".+\"/><securecookie host=\"^services\\.stardock\\.net$\" name=\".+\"/><rule from=\"^http://(store\\.|www\\.)?stardock\\.com/\" to=\"https://$1stardock.com/\"/><rule from=\"^http://(?:www\\.)?stardock\\.net/[^?]*(\\?.*)?\" to=\"https://www.stardock.com/corporatesolutions$1\"/><rule from=\"^http://services\\.stardock\\.net/\" to=\"https://services.stardock.net/\"/></ruleset>", "<ruleset name=\"Stardrifter.org\" default_off=\"self-signed\" f=\"Stardrifter.org.xml\"><rule from=\"^http://(?:www\\.)?stardrifter\\.org/\" to=\"https://stardrifter.org/\"/></ruleset>", "<ruleset name=\"Starfield Technologies, Inc.\" f=\"Starfield.xml\"><securecookie host=\"^(?:.*\\.)?starfieldtech\\.com$\" name=\".+\"/><rule from=\"^http://((?:certs|certificates|seal|tracedseals|www)\\.)?starfieldtech\\.com/\" to=\"https://$1starfieldtech.com/\"/></ruleset>", "<ruleset name=\"Start.me (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Start.me-problematic.xml\"><securecookie host=\"^\\.start\\.me$\" name=\".+\"/><rule from=\"^http://start\\.me/\" to=\"https://www.start.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Start.me (partial)\" default_off=\"Breaks icons\" f=\"Start.me.xml\"><rule from=\"^http://assets\\.start\\.me/\" to=\"https://d20613pg2u36q3.cloudfront.net/\"/><rule from=\"^http://assets\\.blog\\.start\\.me/\" to=\"https://d1e3joqws01uq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"StartBox.com\" f=\"StartBox.xml\"><rule from=\"^http://(?:docs\\.|www\\.)?wpstartbox\\.com/\" to=\"https://webdevstudios.com/\"/></ruleset>", "<ruleset name=\"StartCom\" f=\"StartCom.xml\"><exclusion pattern=\"ocsp\\.startssl\"/><exclusion pattern=\"\\.crl$\"/><exclusion pattern=\"\\.crt$\"/><securecookie host=\".*\" name=\".*\"/><rule from=\"^http://startcom\\.org/\" to=\"https://www.startcom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartEngine.com\" f=\"StartEngine.com.xml\"><securecookie host=\"^www\\.startengine\\.com$\" name=\".+\"/><rule from=\"^http://startengine\\.com/\" to=\"https://www.startengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartLogic\" f=\"StartLogic.xml\"><securecookie host=\"^(?:.*\\.)?startlogic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartMail.com\" f=\"StartMail.xml\"><securecookie host=\"^www\\.startmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startlab.sk\" f=\"Startlab.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startnext.com\" f=\"Startnext.com.xml\"><securecookie host=\"^\\.startnext\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartupSort.com\" f=\"StartupSort.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Starwood Hotels & Resorts\" f=\"Starwood-Hotels-and-Resorts.xml\"><securecookie host=\"^\\.?www\\.starwoodhotels\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?starwoodhotels\\.com/\" to=\"https://www.starwoodhotels.com/\"/></ruleset>", "<ruleset name=\"StatOwl.com (partial)\" f=\"StatOwl.com.xml\"><rule from=\"^http://collector\\.statowl\\.com/\" to=\"https://collector.statowl.com/\"/></ruleset>", "<ruleset name=\"Statcounter.com (false MCB)\" platform=\"mixedcontent\" f=\"Statcounter.com-falsemixed.xml\"><securecookie host=\"^\\.statcounter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statcounter.com (partial)\" f=\"Statcounter.xml\"><exclusion pattern=\"^http://(?:blog|gs)\\.statcounter\\.com/\"/><securecookie host=\"^(?!gs\\.).\" name=\".\"/><rule from=\"^http://www(?:-beta)?\\.statcounter\\.com/\" to=\"https://statcounter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StateFarm\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"StateFarm.xml\"><securecookie host=\"^(?:.+\\.)?statefarm\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?statefarm\\.com/\" to=\"https://www.statefarm.com/\"/><rule from=\"^http://(sfsecuremail|online2?)\\.statefarm\\.com/\" to=\"https://$1.statefarm.com/\"/></ruleset>", "<ruleset name=\"State of Alaska (partial)\" f=\"State_of_Alaska.xml\"><securecookie host=\"^acpe\\.alaska\\.gov$\" name=\".+\"/><rule from=\"^http://acpe\\.alaska\\.gov/\" to=\"https://acpe.alaska.gov/\"/><rule from=\"^http://aps\\.alaska\\.gov/\\??$\" to=\"https://acpe.alaska.gov/STUDENT-PARENT/Grants_Scholarships/Alaska_Performance_Scholarship.aspx\"/><rule from=\"^http://aps\\.alaska\\.gov/\\?(.+)\" to=\"https://acpe.alaska.gov/Default.aspx?$1\"/></ruleset>", "<ruleset name=\"State of Delaware (partial)\" f=\"State_of_Delaware.xml\"><rule from=\"^http://delecorp\\.delaware\\.gov/\" to=\"https://delecorp.delaware.gov/\"/><rule from=\"^http://(?:www\\.)?delaware\\.gov/\" to=\"https://www.delaware.gov/\"/></ruleset>", "<ruleset name=\"State of Oregon\" f=\"State_of_Oregon.xml\"><securecookie host=\"^www\\.oregon\\.gov$\" name=\".+\"/><rule from=\"^http://(firstlady\\.|governor\\.|www\\.)?oregon\\.gov/\" to=\"https://$1oregon.gov/\"/><rule from=\"^http://(?:www\\.)?budget\\.oregon\\.gov/(?:.*)\" to=\"https://www.oregon.gov/gov/priorities/pages/budget.aspx\"/></ruleset>", "<ruleset name=\"State of the Internet.com\" f=\"State_of_the_Internet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statesman Journal (partial)\" default_off=\"failed ruleset test\" f=\"Statesman_Journal.xml\"><securecookie host=\"^www\\.statesmanjournal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?statesmanjournal\\.com/\" to=\"https://www.statesmanjournal.com/\"/><rule from=\"^http://deals\\.statesmanjournal\\.com/(?:$|\\?.*)\" to=\"https://salem.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://deals\\.statesmanjournal\\.com/\" to=\"https://salem.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"Statewatch.org\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Statewatch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"static-Cisco.com\" f=\"Static-Cisco.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"static-Economist.com\" f=\"Static-Economist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StaticGen.com\" f=\"StaticGen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StaticWars.com\" f=\"StaticWars.com.xml\"><rule from=\"^http://(\\w+)\\.staticwars\\.com/\" to=\"https://$1.staticwars.com/\"/></ruleset>", "<ruleset name=\"static Flickr.com\" f=\"Static_Flickr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Static Site Generators.net\" f=\"Static_Site_Generators.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?staticsitegenerators\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?staticsitegenerators\\.net/\" to=\"https://staticsitegenerators.net/\"/></ruleset>", "<ruleset name=\"staticcache.org\" f=\"Staticcache.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"staticmy.com\" f=\"Staticmy.com.xml\"><rule from=\"^http://img\\.staticmy\\.com/\" to=\"https://img.staticmy.com/\"/></ruleset>", "<ruleset name=\"staticskynet.be\" f=\"Staticskynet.be.xml\"><rule from=\"^http://common\\.staticskynet\\.be/\" to=\"https://common.staticskynet.be/\"/></ruleset>", "<ruleset name=\"Station L Rowing Club\" f=\"Station_L_Rowing_Club.xml\"><securecookie host=\"^(?:www\\.)?stationlrowingclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatistikamtBayern\" default_off=\"failed ruleset test\" f=\"StatistikamtBayern.xml\"><rule from=\"^http://(?:www\\.)?statistik\\.bayern\\.de/\" to=\"https://www.statistik.bayern.de/\"/></ruleset>", "<ruleset name=\"StatusCake.com (partial)\" f=\"StatusCake.com.xml\"><securecookie host=\"^www\\.statuscake\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatusNet (broken)\" default_off=\"No valid certificates\" f=\"StatusNet.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatusPage.io\" f=\"StatusPage.io.xml\"><securecookie host=\".*\\.statuspage\\.io$\" name=\".+\"/><rule from=\"^http://blog\\.statuspage\\.io/\" to=\"https://status-page-blog.herokuapp.com/\"/><rule from=\"^http://meta\\.statuspage\\.io/\" to=\"https://metastatuspage.com/\"/><rule from=\"^http://([\\w-]+\\.)?statuspage\\.io/\" to=\"https://$1statuspage.io/\"/><rule from=\"^http://metastatuspage\\.com/\" to=\"https://metastatuspage.com/\"/><rule from=\"^http://status-page-blog\\.herokuapp\\.com/\" to=\"https://status-page-blog.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Stavrovski.Net\" f=\"Stavrovski.Net.xml\"><securecookie host=\"^(?:www)?\\.stavrovski\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StayClassy\" f=\"StayClassy.xml\"><securecookie host=\"^(?:www)?\\.stayclassy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StaySafeOnline.org\" f=\"StaySafeOnline.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stay Smart Online\" default_off=\"failed ruleset test\" f=\"StaySmartOnline.xml\"><rule from=\"^http://(?:www\\.)?staysmartonline\\.gov\\.au/\" to=\"https://www.staysmartonline.gov.au/\"/><rule from=\"^http://(?:www\\.)?budd-e\\.staysmartonline\\.gov\\.au/\" to=\"https://budd-e.staysmartonline.gov.au/\"/></ruleset>", "<ruleset name=\"StayToday.com\" default_off=\"failed ruleset test\" f=\"StayToday.com.xml\"><securecookie host=\"^(?:www\\.)?staytoday\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StayFriends\" platform=\"mixedcontent\" f=\"Stayfriends.xml\"><securecookie host=\"^(?:www)?\\.stayfriends\\.(?:at|ch|de)$\" name=\".+\"/><rule from=\"^http://(images\\.|www\\.)?stayfriends\\.(at|ch|de)/\" to=\"https://$1stayfriends.$2/\"/></ruleset>", "<ruleset name=\"std3.ru\" f=\"Std3.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steadfast.net\" f=\"Steadfast.net.xml\"><securecookie host=\"^(?:support)?\\.steadfast\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steaknshake.com\" f=\"Steaknshake.com.xml\"><rule from=\"^http://(?:www\\.)?steaknshake\\.com/\" to=\"https://www.steaknshake.com/\"/></ruleset>", "<ruleset name=\"StealthNet\" default_off=\"mismatch\" f=\"StealthNet.xml\"><rule from=\"^http://(?:www\\.)?stealthnet\\.de/\" to=\"https://stealthnet.de/\"/></ruleset>", "<ruleset name=\"Stealthy.io\" f=\"Stealthy.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steam Powered.com (partial)\" default_off=\"Breaks some games\" f=\"Steam.xml\"><exclusion pattern=\"^http://store\\.steampowered\\.com/+(?!favicon\\.ico|(?:join|login|psn/beginsetup|search|software)(?:$|[?/])|public/images/)\"/><securecookie host=\"^partner\\.steampowered\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steam Community.com (partial)\" f=\"Steam_Community.com.xml\"><securecookie host=\"^steamcommunity\\.com$\" name=\".+\"/><securecookie host=\"^\\.steamcommunity\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:cdn\\.|www\\.)?steamcommunity\\.com/\" to=\"https://steamcommunity.com/\"/></ruleset>", "<ruleset name=\"Steam static.com (partial)\" default_off=\"Breaks some games\" f=\"Steam_static.com.xml\"><rule from=\"^http://cdn\\.akamai\\.steamstatic\\.com/\" to=\"https://steamcdn-a.akamaihd.net/\"/><rule from=\"^http://store\\.akamai\\.steamstatic\\.com/\" to=\"https://steamstore-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"Steamgames.com (partial)\" default_off=\"breaks some games\" f=\"Steamgames.com.xml\"><securecookie host=\"^partner\\.steamgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamray.com (partial)\" f=\"Steamray.com.xml\"><securecookie host=\"^\\.steamray\\.com$\" name=\"^(?:AB_TRACKING|cams_tr|click_id_time|HISTORY|IP_COUNTRY|LOCATION_FROM_IP|REFERRAL_URL)$\"/><rule from=\"^http://graphics\\.streamray\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http://webmaster\\.streamray\\.com/\" to=\"https://affiliates.streamray.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steamrep.com\" f=\"Steamrep.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steamunlock.com\" f=\"Steamunlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steaw.com\" f=\"Steaw.xml\"><rule from=\"^http://steaw\\.com/\" to=\"https://www.steaw.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SteelHousemedia.com (partial)\" f=\"SteelHousemedia.com.xml\"><securecookie host=\"^\\.steelhousemedia\\.com$\" name=\"^(?:guid|rt)$\"/><securecookie host=\"^\\.px\\.steelhousemedia\\.com$\" name=\".+\"/><rule from=\"^http://(cdn4s|dx|px|ww)\\.steelhousemedia\\.com/\" to=\"https://$1.steelhousemedia.com/\"/></ruleset>", "<ruleset name=\"Steeleye.com (partial)\" f=\"Steeleye.com.xml\"><securecookie host=\"^license\\.steeleye\\.com$\" name=\".+\"/><rule from=\"^http://license\\.steeleye\\.com/\" to=\"https://license.steeleye.com/\"/></ruleset>", "<ruleset name=\"Steep and Cheap.com\" f=\"Steep_and_Cheap.com.xml\"><rule from=\"^http://steepandcheap\\.com/\" to=\"https://www.steepandcheap.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stefan-Betz.net\" f=\"Stefan-Betz.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steganos.com\" f=\"Steganos.com.xml\"><securecookie host=\".*\\.steganos\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|securestore|www)\\.)?steganos\\.com/\" to=\"https://$1steganos.com/\"/></ruleset>", "<ruleset name=\"Stella & Dot\" default_off=\"failed ruleset test\" f=\"Stella_and_Dot.xml\"><securecookie host=\".*\\.stelladot\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:stylist)?lounge|shop|stylewatch|www)\\.)?stelladot\\.com/\" to=\"https://$1stelladot.com/\"/><rule from=\"^http://s3static\\.stelladotcdn\\.com/\" to=\"https://s3.amazonaws.com/com.stelladot.static/\"/></ruleset>", "<ruleset name=\"Stellar.org\" f=\"Stellar.org.xml\"><securecookie host=\"^\\.stellar\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stelter (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stelter.xml\"><securecookie host=\"^(?:.*\\.)?gftplns\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?(?:gftplns\\.org|plan\\.gs)/\" to=\"https://$1gftplns.org/\"/><rule from=\"^http://dashboard\\.stelter\\.com(:\\d{1,4})?/\" to=\"https://dashboard.stelter.com$1/\"/></ruleset>", "<ruleset name=\"Stemformatics.org\" f=\"Stemformatics.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stemulite Fitness Formula\" f=\"Stemulite_Fitness_Formula.xml\"><securecookie host=\"^\\.stemulitefitnessformula\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SternKom GmbH\" f=\"Sternkom.xml\"><rule from=\"^http://www\\.sternkom\\.de/\" to=\"https://www.sternkom.de/\"/></ruleset>", "<ruleset name=\"Steven Roddis\" f=\"StevenRoddis.xml\"><rule from=\"^http://(?:www\\.)?stevenroddis\\.com/\" to=\"https://www.stevenroddis.com/\"/></ruleset>", "<ruleset name=\"Stevens\" f=\"Stevens.xml\"><exclusion pattern=\"^http://(?:personal|www.math|www.cs|www.acc|guinness.cs|tarantula.phy|www.phy|tarantula.srcit|www.srcit|debian.srcit|ubuntu.srcit)\\.stevens\\.edu/.*\"/><rule from=\"^http://([^/:@\\.]+)\\.stevens\\.edu/\" to=\"https://$1.stevens.edu/\"/></ruleset>", "<ruleset name=\"Stevesie\" default_off=\"failed ruleset test\" f=\"Stevesie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stgbssint.com\" default_off=\"failed ruleset test\" f=\"Stgbssint.com.xml\"><rule from=\"^http://storage\\.stgbssint\\.com/\" to=\"https://storage.stgbssint.com/\"/></ruleset>", "<ruleset name=\"Stickhet\" f=\"Stickhet.xml\"><securecookie host=\"^\\.stickhet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stickyadstv.com\" f=\"Stickyadstv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stirling.gov.uk (partial)\" f=\"Stirling.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?stirling\\.gov\\.uk/+(?!(?:interpay|publicaccesslive)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stitcher.com (partial)\" default_off=\"Breaks site\" f=\"Stitcher.xml\"><rule from=\"^http://(?:cloudfront\\.|limelight\\.|ec-cdn-)assets\\.stitcher\\.com/\" to=\"https://secureimg.stitcher.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StockCharts.com (partial)\" default_off=\"failed ruleset test\" f=\"StockCharts.xml\"><securecookie host=\"^(?:www\\.)?stockcharts\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StockTwits (partial)\" f=\"StockTwits.xml\"><exclusion pattern=\"^http://(?:new\\.|www\\.)?stocktwits\\.com/(?!assets/|sign(?:in|up)(?:$|\\?|/))\"/><rule from=\"^http://(new\\.|www\\.)?stocktwits\\.com/\" to=\"https://$1stocktwits.com/\"/><rule from=\"^http://assets\\d\\.stocktwits\\.net/\" to=\"https://new.stocktwits.com/\"/></ruleset>", "<ruleset name=\"Stockton College (partial)\" f=\"Stockton_College.xml\"><securecookie host=\"^(?:bbweb|intraweb|go|piper|pssb)\\.stockton\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www2?\\.)?stockton\\.edu/(?:\\?.*)?$\" to=\"https://intraweb.stockton.edu/eyos/page.cfm?siteID=197&pageID=5&layout=hp\"/><rule from=\"^http://admissions\\.stockton\\.edu/.*\" to=\"https://intraweb.stockton.edu/eyos/page.cfm?siteID=64&pageID=1\"/><rule from=\"^http://(aspweb|bbweb|go|intraweb|piper|webmail)\\.stockton\\.edu/\" to=\"https://$1.stockton.edu/\"/><rule from=\"^http://ezproxy\\.stockton\\.edu:8443/\" to=\"https://ezproxy.stockton.edu:8443/\"/><rule from=\"^http://libguides\\.stockton\\.edu/(css\\d*/|data/|include/|js\\d*/|process_home\\.php)\" to=\"https://libguides.com/$1\"/><rule from=\"^http://pssb\\.stockton\\.edu:9000/\" to=\"https://pssb.stockton.edu:9000/\"/></ruleset>", "<ruleset name=\"Stony Brook University (partial)\" f=\"Stony_Brook_University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fsl\\.cs\\.sunysb\\.edu/\" to=\"https://www.fsl.cs.sunysb.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop-Snoring-Mouthpiece.org (partial)\" f=\"Stop-Snoring-Mouthpiece.org.xml\"><securecookie host=\"^(?:www)?\\.stop-snoring-mouthpiece\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop-TTIP.org\" f=\"Stop-TTIP.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Cyber Spying.com\" f=\"Stop_Cyber_Spying.com.xml\"><securecookie host=\"^(?:www\\.)?stopcyberspying\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Fast Track.com\" f=\"Stop_Fast_Track.com.xml\"><securecookie host=\"^\\.stopfasttrack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Global Warming.org\" default_off=\"expired, self-signed\" f=\"Stop_Global_Warming.org.xml\"><rule from=\"^http://(?:www\\.)?stopglobalwarming\\.org/\" to=\"https://www.stopglobalwarming.org/\"/></ruleset>", "<ruleset name=\"Stop Software Patents\" default_off=\"expired\" f=\"Stop_Software_Patents.xml\"><rule from=\"^http://(?:petition\\.|www\\.)?stopsoftwarepatents\\.eu/\" to=\"https://stopsoftwarepatents.eu/\"/></ruleset>", "<ruleset name=\"Stop Think Connect.org\" f=\"Stop_Think_Connect.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Watching.Us\" f=\"Stop_Watching_Us.xml\"><securecookie host=\"^\\.stopwatching\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stopbadware.org\" f=\"Stopbadware.org.xml\"><securecookie host=\"^\\.stopbadware\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stopthehacker.com\" f=\"Stopthehacker.com.xml\"><securecookie host=\"^\\.stopthehacker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Storage-Bin.com\" f=\"Storage-Bin.com.xml\"><securecookie host=\"^\\.storage-bin\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(secure\\.)?storage-bin\\.com/\" to=\"https://$1$2storage-bin.com/\"/></ruleset>", "<ruleset name=\"Store4Geeks.com\" f=\"Store4Geeks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StoreSecured.com (partial)\" default_off=\"failed ruleset test\" f=\"StoreSecured.com.xml\"><securecookie host=\"^.+\\.storesecured\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?storesecured\\.com/\" to=\"https://www.storesecured.com/\"/><rule from=\"^http://(\\w+)\\.storesecured\\.com/\" to=\"https://$1.storesecured.com/\"/></ruleset>", "<ruleset name=\"Storebrand\" f=\"Storebrand.no.xml\"><rule from=\"^http://storebrand\\.no/\" to=\"https://www.storebrand.no/\"/><rule from=\"^http://www\\.storebrand\\.no/\" to=\"https://www.storebrand.no/\"/></ruleset>", "<ruleset name=\"Storenvy (partial)\" f=\"Storenvy.xml\"><rule from=\"^http://(www\\.)?storenvy\\.com/((?:cart|join|login)(?:$|\\?)|(?:v2/)?images/|themes/)\" to=\"https://$1storenvy.com/$2\"/><rule from=\"^http://([\\w-]+)\\.storenvy\\.com/(favicon\\.ico|themes/)\" to=\"https://$1.storenvy.com/$2\"/></ruleset>", "<ruleset name=\"Storify\" f=\"Storify.xml\"><securecookie host=\"^(?:.*\\.)?storify\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|dev|manage|proxy|www)\\.)?storify\\.com/\" to=\"https://$1storify.com/\"/></ruleset>", "<ruleset name=\"Storm Internet.co.uk\" f=\"Storm-Internet.xml\"><securecookie host=\"^www\\.storminternet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StormFront.org\" f=\"StormFront.org.xml\"><securecookie host=\"^\\.stormfront\\.org$\" name=\".+\"/><rule from=\"^http://cdn\\.stormfront\\.org/\" to=\"https://www.stormfront.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stormiq.com\" f=\"Stormiq.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stormpath.com\" f=\"Stormpath.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.stormpath\\.com/\" to=\"https://stormpath.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Story Cubes.com\" f=\"Story_Cubes.com.xml\"><rule from=\"^http://(?:www\\.)?storycubes\\.com/\" to=\"https://www.storycubes.com/\"/></ruleset>", "<ruleset name=\"Storywrite (partial)\" f=\"Storywrite.xml\"><rule from=\"^http://(www\\.)?storywrite\\.com/(assets/|favicon\\.ico|images/|javascripts/|(?:login|store)(?:$|\\?|/))\" to=\"https://$1storywrite.com/$2\"/></ruleset>", "<ruleset name=\"stpeter.im (partial)\" f=\"Stpeter.im.xml\"><rule from=\"^http://www\\.stpeter\\.im/\" to=\"https://stpeter.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StrangeWorlds\" f=\"StrangeWorlds.xml\"><rule from=\"^http://strangeworlds\\.co\\.uk/\" to=\"https://strangeworlds.co.uk/\"/></ruleset>", "<ruleset name=\"Straply\" f=\"Straply.xml\"><securecookie host=\"^(?:www)?\\.straply\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strasbourg.eu\" platform=\"mixedcontent\" f=\"Strasbourg.eu.xml\"><rule from=\"^http://(www\\.)?strasbourg\\.eu/\" to=\"https://www.strasbourg.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strasweb.fr\" f=\"Strasweb.fr.xml\"><rule from=\"^http://(?:www\\.)?strasweb\\.fr/\" to=\"https://www.strasweb.fr/\"/></ruleset>", "<ruleset name=\"Stratechery.com\" f=\"Stratechery.com.xml\"><securecookie host=\"^forum\\.stratechery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strategic Management Society\" f=\"Strategic_Management_Society.xml\"><securecookie host=\"^\\.strategicmanagement\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strategicmanagement\\.net/\" to=\"https://strategicmanagement.net/\"/></ruleset>", "<ruleset name=\"Strategy Analytics.com\" f=\"Strategy_Analytics.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strategysignals.com\" f=\"Strategysignals.com.xml\"><rule from=\"^http://strategysignals\\.com/\" to=\"https://www.strategysignals.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stratum 0\" f=\"Stratum_0.xml\"><rule from=\"^http://(p[ao]d\\.|www\\.)?stratum0\\.org/\" to=\"https://$1stratum0.org/\"/></ruleset>", "<ruleset name=\"Strava.com\" f=\"Strava.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strava.cz\" f=\"Strava.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strawpoll.me\" f=\"Strawpoll.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stream.cz\" f=\"Stream.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StreamMyGame\" f=\"StreamMyGame.xml\"><securecookie host=\"^(?:www\\.)?streammygame\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamfarm.net\" f=\"Streamfarm.net.xml\"><exclusion pattern=\"^http://c22033\\-ls\\.i\\.core\\.cdn\\.streamfarm\\.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamtip.com\" f=\"Streamtip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Street Art Utopia\" default_off=\"failed ruleset test\" f=\"Street_Art_Utopia.xml\"><securecookie host=\"^(?:w*\\.)?streetartutopia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Street Moda (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Street_Moda.xml\"><securecookie host=\"^.*\\.streetmoda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strem.io\" f=\"Stremio.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strikingly.com (partial)\" f=\"Strikingly.com.xml\"><securecookie host=\"^www\\.strikingly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strikingly CDN.com\" f=\"Strikingly_CDN.com.xml\"><securecookie host=\"^\\.strikinglycdn\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stripe.com\" f=\"Stripe.com.xml\"><securecookie host=\"^(?:(?:answers|status|www)?\\.)?stripe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StripeCDN.com\" f=\"StripeCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StripeFees.com\" f=\"StripeFees.com.xml\"><securecookie host=\"^\\.stripefees\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strode-College.ac.uk (partial)\" f=\"Strode-College.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StroeerDigitalMedia\" f=\"Stroeerdigitalmedia.xml\"><rule from=\"^http://cdn\\.stroeerdigitalmedia\\.de/\" to=\"https://cdn.stroeerdigitalmedia.de/\"/></ruleset>", "<ruleset name=\"StrongLoop.com\" f=\"StrongLoop.com.xml\"><securecookie host=\"^\\.strongloop\\.com$\" name=\"^__cfdui$\"/><rule from=\"^http://((?:ssl|www)-static\\d*\\.|www\\.)?strongloop\\.com/\" to=\"https://$1strongloop.com/\"/></ruleset>", "<ruleset name=\"StrongVPN.com\" f=\"StrongVPN.xml\"><rule from=\"^http://strongvpn\\.com/\" to=\"https://strongvpn.com/\"/><rule from=\"^http://www\\.strongvpn\\.com/\" to=\"https://www.strongvpn.com/\"/></ruleset>", "<ruleset name=\"strugee.net\" f=\"Strugee.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stuart Robbins\" default_off=\"mismatch\" f=\"Stuart-Robbins.xml\"><rule from=\"^http://about\\.sjrdesign\\.net/\" to=\"https://sjrdesign.net/~sjrdesig/about/\"/><rule from=\"^http://photos\\.sjrdesign\\.net/\" to=\"https://sjrdesign.net/~sjrdesig/photos/\"/></ruleset>", "<ruleset name=\"Stubhub\" f=\"Stubhub.xml\"><securecookie host=\"^(?:.*\\.)?stubhub\\.(de|co\\.uk|com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StudentLoans.gov\" f=\"StudentLoans.gov.xml\"><securecookie host=\"^(?:.*\\.)?studentloans\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?studentloans\\.gov/\" to=\"https://studentloans.gov/\"/></ruleset>", "<ruleset name=\"Student Aid Calculator.com\" f=\"Student_Aid_Calculator.com.xml\"><securecookie host=\"^(?:[\\w-]+\\.)?studentaidcalculator\\.com$\" name=\".+\"/><rule from=\"^http://www\\.studentaidcalculator\\.com/.*\" to=\"https://studentaidcalculator.com/\"/><rule from=\"^http://([\\w-]+\\.)?studentaidcalculator\\.com/\" to=\"https://$1studentaidcalculator.com/\"/></ruleset>", "<ruleset name=\"Student Benefits.ca\" f=\"Student_Benefits.ca.xml\"><securecookie host=\"^\\.studentbenefits\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?studentbenefits\\.ca/\" to=\"https://studentbenefits.ca/\"/></ruleset>", "<ruleset name=\"Students for Sensible Drug Policy\" f=\"Students_for_Sensible_Drug_Policy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StudiVZ (disabled)\" default_off=\"Certificate mismatch\" f=\"StudiVZ.xml\"><rule from=\"^http://www\\.studivz\\.net/\" to=\"https://www.studivz.net/\"/></ruleset>", "<ruleset name=\"StudiesAbroad.com (partial)\" f=\"StudiesAbroad.com.xml\"><rule from=\"^http://secure\\.studiesabroad\\.com/\" to=\"https://secure.studiesabroad.com/\"/></ruleset>", "<ruleset name=\"StudioPress.com\" f=\"StudioPress.com.xml\"><securecookie host=\"^my\\.studiopress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Study.Monash\" f=\"Study.Monash.xml\"><securecookie host=\"^(?:\\.?www\\.)?study\\.monash$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Study in Australia\" f=\"StudyinAustralia.xml\"><rule from=\"^http://(?:www\\.)?studyinaustralia\\.gov\\.au/\" to=\"https://www.studyinaustralia.gov.au/\"/></ruleset>", "<ruleset name=\"StumbleUpon (breaks plugin)\" default_off=\"Breaks the SU extension\" f=\"StumbleUpon.xml\"><securecookie host=\"^.*\\.s(?:tumbleupon|ustatic)\\.com$\" name=\".*\"/><rule from=\"^http://(?:badge\\.|www\\.)?stumbleupon\\.com/\" to=\"https://www.stumbleupon.com/\"/><rule from=\"^http://(?:www\\.)?stumble-upon\\.com/(?:[\\w\\W]+)$\" to=\"https://www.stumbleupon.com/\"/><rule from=\"^http://cdn\\.stumble-upon\\.com/\" to=\"https://www.stumbleupon.com/\"/><rule from=\"^http://(b(?:\\d)\\.|www\\.)?sustatic\\.com/\" to=\"https://$1sustatic.com/\"/></ruleset>", "<ruleset name=\"stunnel.org\" f=\"Stunnel.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stunnish.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stunnish.com.xml\"><securecookie host=\"^\\.stunnish\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stunnish\\.com/\" to=\"https://www.stunnish.com/\"/></ruleset>", "<ruleset name=\"Stupid.com\" f=\"Stupid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stupidcensorship.com\" default_off=\"mismatched\" f=\"Stupidcensorship.com.xml\"><rule from=\"^http://(?:www\\.)?stupidcensorship\\.com/\" to=\"https://stupidcensorship.com/\"/></ruleset>", "<ruleset name=\"Stuvel.eu\" platform=\"cacert\" f=\"Stuvel-Photography.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Style.com\" default_off=\"mismatched\" f=\"Style.com.xml\"><rule from=\"^http://style\\.com/\" to=\"https://www.style.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Style Hatch.co (partial)\" default_off=\"expired\" f=\"Style_Hatch.co.xml\"><securecookie host=\"^\\.stylehatch\\.co$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stylist.co.uk\" f=\"Stylist.co.uk.xml\"><securecookie host=\"^\\.stylist\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suas.ie\" f=\"Suas.ie.xml\"><securecookie host=\"^\\.suas\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubDownloader.net\" default_off=\"mismatched\" f=\"SubDownloader.net.xml\"><rule from=\"^http://(?:www\\.)?subdownloader\\.net/\" to=\"https://subdownloader.net/\"/></ruleset>", "<ruleset name=\"SubPLY.com\" default_off=\"expired\" f=\"SubPLY.com.xml\"><rule from=\"^http://(?:www\\.)?subply\\.com/\" to=\"https://subply.com/\"/></ruleset>", "<ruleset name=\"Subcon admin.com\" f=\"Subcon_admin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subeta\" f=\"Subeta.xml\"><securecookie host=\"^(?:.*\\.)?subeta\\.net$\" name=\".+\"/><rule from=\"^http://(avatar\\.|images\\.|www\\.)?subeta\\.net/\" to=\"https://$1subeta.net/\"/></ruleset>", "<ruleset name=\"Subgraph.com (partial)\" f=\"Subgraph.com.xml\"><rule from=\"^http://www\\.subgraph\\.com/\" to=\"https://subgraph.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subimage (partial)\" f=\"Subimage.xml\"><securecookie host=\"^(?:.*\\.)?cashboardapp\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(?:cashboardapp|getcashboard)\\.com/\" to=\"https://www.cashboardapp.com/\"/><rule from=\"^http://([\\w\\-]+)\\.cashboardapp\\.com/\" to=\"https://$1.cashboardapp.com/\"/></ruleset>", "<ruleset name=\"SublimeGit.net\" f=\"SublimeGit.net.xml\"><rule from=\"^http://((?:docs|release|www)\\.)?sublimegit\\.net/\" to=\"https://$1sublimegit.net/\"/></ruleset>", "<ruleset name=\"SublimeVideo.net (partial)\" f=\"SublimeVideo.xml\"><rule from=\"^http://my\\.sublimevideo\\.net/\" to=\"https://my.sublimevideo.net/\"/><rule from=\"^http://(cdn|data)\\.sublimevideo\\.net/\" to=\"https://$1.sublimevideo.net/\"/></ruleset>", "<ruleset name=\"Sublime Text.com\" f=\"Sublime_Text.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Submission Technology\" f=\"Submission-Technology.xml\"><securecookie host=\"^(?:.*\\.)?submissiontechnology\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subrosa.io\" f=\"Subrosa.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubscriptionGenius.com (partial)\" f=\"SubscriptionGenius.com.xml\"><securecookie host=\"^checkout\\.subscriptiongenius\\.com$\" name=\".+\"/><rule from=\"^http://checkout\\.subscriptiongenius\\.com/\" to=\"https://checkout.subscriptiongenius.com/\"/></ruleset>", "<ruleset name=\"subsignal.org (missing certificate chain)\" default_off=\"expired, missing certificate chain\" f=\"Subsignal.org-problematic.xml\"><securecookie host=\"^\\.pads\\.subsignal\\.org$\" name=\".+\"/><rule from=\"^http://www\\.subsignal\\.org/\" to=\"https://subsignal.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subsignal.org (partial)\" f=\"Subsignal.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subterranean Games.com\" f=\"Subterranean_Games.com.xml\"><securecookie host=\"^\\.subterraneangames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubToMe.com\" f=\"Subtome.com.xml\"><securecookie host=\"^\\.subtome\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suburban Records\" default_off=\"self-signed\" f=\"Suburban-Records.xml\"><securecookie host=\"^(?:.*\\.)?suburban\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?suburban\\.nl/\" to=\"https://www.suburban.nl/\"/></ruleset>", "<ruleset name=\"Subway.com\" default_off=\"failed ruleset test\" f=\"Subway.com.xml\"><securecookie host=\"^www\\.subway\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuccessFactors\" f=\"SuccessFactors.xml\"><securecookie host=\"^(?:blogs|career\\d*|community|jobs|owa|performancemanager\\d*|www)\\.successfactors\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?successfactors\\.com/\" to=\"https://www.successfactors.com/\"/><rule from=\"^http://(autodiscover|blogs|career\\d*|community|jobs|owa|performancemanager\\d*)\\.successfactors\\.com/\" to=\"https://$1.successfactors.com/\"/></ruleset>", "<ruleset name=\"Success Chef\" f=\"Success_Chef.xml\"><securecookie host=\"^\\.?successchef\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"suckup.de\" f=\"Suckup.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sucuri.net (partial)\" f=\"Sucuri.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sudbury Neutrino Observatory Institute\" f=\"Sudbury_Neutrino_Observatory_Institute.xml\"><securecookie host=\"^\\.snolab\\.ca$\" name=\".+\"/><rule from=\"^http://www\\.snolab\\.ca/\" to=\"https://www.snolab.ca/\"/></ruleset>", "<ruleset name=\"Süddeutsche Zeitung (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Suddeutsche_Zeitung-problematic.xml\"><securecookie host=\"^(?:englisch|sz-media|www)\\.sueddeutsche\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sueddeutsche\\.de/\" to=\"https://www.sueddeutsche.de/\"/><rule from=\"^http://(englisch|sz-media|szshop|www)\\.sueddeutsche\\.de/\" to=\"https://$1.sueddeutsche.de/\"/><rule from=\"^http://mediadaten\\.sueddeutsche\\.de/(?:home/)?(?:$|\\?)\" to=\"https://sz-media.sueddeutsche.de/\"/></ruleset>", "<ruleset name=\"Süddeutsche Zeitung (partial)\" f=\"Suddeutsche_Zeitung.xml\"><securecookie host=\"^(?:anzeigen-buchen|epaper|id|service|stellenmarkt|sz-shop|weiterbildung)\\.sueddeutsche\\.de$\" name=\".+\"/><rule from=\"^http://polpix\\.sueddeutsche\\.com/\" to=\"https://www.sueddeutsche.de/\"/><rule from=\"^http://(anzeigen(?:-buchen)?|epaper|geoservice|global|id|jetzt|maerkte|(motor|stellen)markt|service|sz-shop|weiterbildung)\\.sueddeutsche\\.de/\" to=\"https://$1.sueddeutsche.de/\"/><rule from=\"^http://immobilienmarkt\\.sueddeutsche\\.de/(cms/data/|cms/fileadmin/|cms/uploads/|css/|favicon\\.ico|gfx/)\" to=\"https://immobilienmarkt.sueddeutsche.de/$1\"/><rule from=\"^http://maps\\.sueddeutsche\\.de/css/\" to=\"https://maps.sueddeutsche.de/css\"/><rule from=\"^http://szshop\\.sueddeutsche\\.de/(favicon\\.ico|out/sz/src/)\" to=\"https://szshop.sueddeutsche.de/$1\"/><rule from=\"^http://www\\.sueddeutsche\\.de/favicon\\.ico\" to=\"https://www.sueddeutsche.de/favicon.ico\"/></ruleset>", "<ruleset name=\"Süddeutsche Zeitung Tickets\" f=\"Suddeutsche_Zeitung_Tickets.xml\"><securecookie host=\"^www\\.sueddeutsche-tickets\\.de$\" name=\".+\"/><rule from=\"^http://(?:tickets\\.sueddeutsche|(?:www\\.)?sueddeutsche-tickets)\\.de/\" to=\"https://www.sueddeutsche-tickets.de/\"/></ruleset>", "<ruleset name=\"Sudo Room\" default_off=\"failed ruleset test\" f=\"Sudo_Room.xml\"><securecookie host=\"^(?:www\\.|lists\\.|door\\.)?sudoroom\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sudoroom\\.org/\" to=\"https://sudoroom.org/\"/><rule from=\"^http://door\\.sudoroom\\.org/\" to=\"https://door.sudoroom.org/\"/><rule from=\"^http://lists\\.sudoroom\\.org/\" to=\"https://lists.sudoroom.org/\"/></ruleset>", "<ruleset name=\"Sugar Labs.org\" f=\"Sugar_Labs.org.xml\"><securecookie host=\"^(?:wiki)?\\.sugarlabs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sugarcrm.com\" f=\"Sugarcrm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sugester (partial)\" f=\"Sugester.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://(asset|f)s\\.sugester\\.pl/\" to=\"https://s3-eu-west-1.amazonaws.com/$1s.sugester.pl/\"/><rule from=\"^http://(\\w+)\\.sugg?ester\\.pl/\" to=\"https://$1.sugester.pl/\"/></ruleset>", "<ruleset name=\"SuicideGirls\" f=\"SuicideGirls.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suitable Tech.com (partial)\" f=\"Suitable_Tech.com.xml\"><securecookie host=\"^(?:www\\.)?suitabletech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suite.io\" f=\"Suite.io.xml\"><rule from=\"^http://www\\.suite\\.io/\" to=\"https://suite.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suitey.com\" f=\"Suitey.com.xml\"><securecookie host=\"^\\.suitey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sukimashita (partial)\" default_off=\"self-signed\" f=\"Sukimashita.xml\"><rule from=\"^http://svn\\.sukimashita\\.com/\" to=\"https://svn.sukimashita.com/\"/></ruleset>", "<ruleset name=\"Suma-ev.de\" f=\"Suma-eV.de.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?suma-ev\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SummitPost (partial)\" f=\"SummitPost.xml\"><rule from=\"^http://images\\.summitpost\\.org/\" to=\"https://c278592.ssl.cf0.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Summit Route.com\" f=\"Summit_Route.com.xml\"><rule from=\"^http://www\\.summitroute\\.com/\" to=\"https://summitroute.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sumo Logic.com (partial)\" f=\"Sumo_Logic.com.xml\"><exclusion pattern=\"^http://operations\\.sumologic\\.com/(?!$)\"/><securecookie host=\"^(?:api|collectors|info)\\.sumologic\\.com$\" name=\".+\"/><rule from=\"^http://sumologic\\.com/+\" to=\"https://www.sumologic.com/\"/><rule from=\"^http://mail\\.sumologic\\.com/.*\" to=\"https://mail.google.com/a/sumologic.com\"/><rule from=\"^http://(?:operation|statu)s\\.sumologic\\.com/\" to=\"https://sumologic.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SunGuard Higher Education\" default_off=\"self-signed\" f=\"SunGuard-Higher-Education.xml\"><securecookie host=\"^sungardhe\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sungardhe\\.com/\" to=\"https://sungardhe.com/\"/></ruleset>", "<ruleset name=\"SunTimes.com (partial)\" default_off=\"failed ruleset test\" f=\"SunTimes.com.xml\"><rule from=\"^http://(?:www\\.)?suntimes\\.com/\" to=\"https://www.suntimes.com/\"/><rule from=\"^http://jobs\\.suntimes\\.com/\" to=\"https://jobs.suntimes.com/\"/></ruleset>", "<ruleset name=\"SunTrust\" f=\"SunTrust.xml\"><rule from=\"^http://suntrust\\.com/\" to=\"https://www.suntrust.com/\"/><rule from=\"^http://(answers|blog|esp|giftcard|online401k|onlinecourier|otm|rewards|www)\\.suntrust\\.com/\" to=\"https://$1.suntrust.com/\"/></ruleset>", "<ruleset name=\"Sunbeltsoftware.com\" default_off=\"failed ruleset test\" f=\"Sunbeltsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sundance Channel\" default_off=\"failed ruleset test\" f=\"Sundance_Channel.xml\"><rule from=\"^http://(?:www\\.)?sundancechannel\\.com/\" to=\"https://www.sundancechannel.com/\"/><rule from=\"^http://media\\.sundancechannel\\.com/\" to=\"https://media.sundancechannel.com/\"/></ruleset>", "<ruleset name=\"Sunday World.com\" f=\"Sunday_World.com.xml\"><securecookie host=\"^\\.sundayworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sundtek.com (partial)\" default_off=\"expired, self-signed\" f=\"Sundtek.com.xml\"><securecookie host=\"^shop\\.sundtek\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.sundtek\\.com/\" to=\"https://shop.sundtek.com/\"/></ruleset>", "<ruleset name=\"Sunglass Warehouse\" default_off=\"failed ruleset test\" f=\"Sunglass_Warehouse.xml\"><securecookie host=\"^\\.?www\\.sunglasswarehouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sunlightfoundation.com (partial)\" f=\"Sunlight-Foundation.xml\"><rule from=\"^http://assets\\.sunlightfoundation\\.com/\" to=\"https://s3.amazonaws.com/assets.sunlightfoundation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SunoSanuo.com (partial)\" default_off=\"failed ruleset test\" f=\"SunoSanuo.com.xml\"><securecookie host=\"^app\\.sunosunao\\.com$\" name=\".+\"/><rule from=\"^http://app\\.sunosunao\\.com/\" to=\"https://app.sunosunao.com/\"/></ruleset>", "<ruleset name=\"Sunrise\" f=\"Sunrise.xml\"><exclusion pattern=\"^http://www\\.sunrise\\.ch\"/><securecookie host=\"^(?:.*\\.)?sunrise\\.ch$\" name=\".+\"/><rule from=\"^http://sunrise\\.ch/\" to=\"https://www1.sunrise.ch/\"/><rule from=\"^http://([^/:@]+)?\\.sunrise\\.ch/\" to=\"https://$1.sunrise.ch/\"/></ruleset>", "<ruleset name=\"SunriseTech.gr\" default_off=\"expired, self-signed\" f=\"SunriseTech.gr.xml\"><rule from=\"^http://(?:www\\.)?sunrisetech\\.gr/\" to=\"https://sunrisetech.gr/\"/></ruleset>", "<ruleset name=\"Sunrise Print Online\" f=\"Sunrise_Print_Online.xml\"><securecookie host=\"^www\\.sunriseprintonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sunroof Wind Deflectors.com\" default_off=\"failed ruleset test\" f=\"Sunroof_Wind_Deflectors.com.xml\"><securecookie host=\"^(?:www)?\\.sunroofwinddeflectors\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sunshine Week.org\" default_off=\"mismatched\" f=\"Sunshine_Week.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suntec.net (partial)\" f=\"Suntec.net.xml\"><rule from=\"^http://www\\.suntec\\.net/(auth|resources)/\" to=\"https://www.suntec.net/$1/\"/></ruleset>", "<ruleset name=\"Suny Broome.edu (problematic)\" default_off=\"mismatched\" f=\"Suny_Broome.edu-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suomen ortodoksinen kirkko\" f=\"Suomen-ortodoksinen-kirkko.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SupaDupa (partial)\" f=\"SupaDupa.xml\"><securecookie host=\"^supadupa\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?supadupa\\.me/\" to=\"https://$1supadupa.me/\"/><rule from=\"^http://(?:cdn|static)\\.supadupa\\.me/\" to=\"https://d2cgdgk0o1xu5x.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SuperAntiSpyware.com\" platform=\"mixedcontent\" default_off=\"missing certificate chain\" f=\"SuperAntiSpyware.xml\"><rule from=\"^http://(?:www\\.)?superantispyware\\.com/\" to=\"https://www.superantispyware.com/\"/></ruleset>", "<ruleset name=\"SuperGuarantee.com\" f=\"SuperGuarantee.com.xml\"><securecookie host=\"^(?:.*\\.)?superguarantee\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperMedia (mismatches)\" default_off=\"expired, mismatch\" f=\"SuperMedia-mismatches.xml\"><securecookie host=\"^jobs\\.supermedia\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?idearcmedia\\.com/\" to=\"https://www.idearcmedia.com/\"/><rule from=\"^http://ir\\.supermedia\\.com/\" to=\"https://ir.supermedia.com/\"/><rule from=\"^http://developer\\.whitepages\\.com/(files|public)/\" to=\"https://developer.whitepages.com/$1/\"/><rule from=\"^http://static\\.ypautos\\.com/\" to=\"https://static.ypautos.com/\"/></ruleset>", "<ruleset name=\"SuperMedia.com (partial)\" f=\"SuperMedia.xml\"><rule from=\"^http://(?:www\\.)?supermedia\\.com/[^?]*\" to=\"https://www.dexmedia.com/?ref=sm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperRepo.org\" f=\"SuperRepo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperStats.com (partial)\" f=\"SuperStats.com.xml\"><securecookie host=\"^\\.superstats\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?superstats\\.com/\" to=\"https://www.superstats.com/\"/><rule from=\"^http://(boardserver|counter|ezpolls|guestbook|stats|submitwizard)\\.superstats\\.com/\" to=\"https://$1.superstats.com/\"/></ruleset>", "<ruleset name=\"SuperStrands\" f=\"SuperStrands.xml\"><securecookie host=\"^(?:www)?\\.superstrands.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Super Bright LEDs.com\" f=\"Super_Bright_LEDs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Super Hexagon.com\" default_off=\"mismatched\" f=\"Super_Hexagon.com.xml\"><rule from=\"^http://(?:www\\.)?superhexagon\\.com/\" to=\"https://superhexagon.com/\"/></ruleset>", "<ruleset name=\"Super Lawyers (partial)\" f=\"Super_Lawyers.xml\"><rule from=\"^http://i\\.superlawyers\\.com/\" to=\"https://d22sy6g45ur8ee.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Super Pet USA.com\" default_off=\"expired\" f=\"Super_Pet_USA.com.xml\"><securecookie host=\"^(?:www)?\\.superpetusa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?superpetusa\\.com/\" to=\"https://www.superpetusa.com/\"/></ruleset>", "<ruleset name=\"Super Teacher Worksheets.com\" f=\"Super_Teacher_Worksheets.com.xml\"><securecookie host=\"^(?:www\\.)?superteacherworksheets\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superannuation Complaints Tribunal\" f=\"SuperannuationComplaintsTribunal.xml\"><rule from=\"^http://(?:www\\.)?sct\\.gov\\.au/\" to=\"https://www.sct.gov.au/\"/></ruleset>", "<ruleset name=\"Superblock.net\" f=\"Superblock.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superdesk.pro\" f=\"Superdesk.pro.xml\"><securecookie host=\"^\\.superdesk\\.pro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superdrug.com (partial)\" f=\"Superdrug.xml\"><exclusion pattern=\"^http://www\\.superdrug\\.com/(?!combined\\.css|favicon\\.ico|(?:login|register)(?:$|[?/])|medias/)\"/><securecookie host=\"^onlinedoctor\\.superdrug\\.com$\" name=\".*\"/><rule from=\"^http://superdrug\\.com/\" to=\"https://www.superdrug.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superevr.com\" f=\"Superevr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superfast-Openreach.co.uk\" default_off=\"missing certificate chain\" f=\"Superfast-Openreach.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superhero Training Network\" default_off=\"connection dropped\" f=\"Superhero-Training-Network.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superherostuff.com\" f=\"Superherostuff.com.xml\"><rule from=\"^http://superherostuff\\.com/\" to=\"https://www.superherostuff.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"superkuh.com\" default_off=\"self-signed\" f=\"Superkuh.com.xml\"><rule from=\"^http://(?:www\\.)?superkuh\\.com/\" to=\"https://www.superkuh.com/\"/></ruleset>", "<ruleset name=\"Superpages.com (partial)\" f=\"Superpages.com.xml\"><exclusion pattern=\"^http://(?:jscss|yellowpages)\\.superpages\\.com/(?!common/css/|css/|images-yp/|profiler/css/)\"/><securecookie host=\"^claimlisting\\.superpages\\.com$\" name=\".*\"/><rule from=\"^http://jscss\\.superpages\\.com/\" to=\"https://yellowpages.superpages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Supersec\" f=\"Supersec.xml\"><securecookie host=\"^\\.?supersec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superstart.se\" f=\"Superstart.se.xml\"><rule from=\"^http://www\\.superstart\\.se/\" to=\"https://www.superstart.se/\"/><rule from=\"^http://static\\.superstart\\.se/\" to=\"https://static.superstart.se/\"/><rule from=\"^http://superstart\\.se/\" to=\"https://www.superstart.se/\"/></ruleset>", "<ruleset name=\"Supplies for Dreams.org (false MCB)\" platform=\"mixedcontent\" f=\"Supplies_for_Dreams.org-falsemixed.xml\"><securecookie host=\"^\\.suppliesfordreams\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?suppliesfordreams\\.org/\" to=\"https://www.suppliesfordreams.org/\"/></ruleset>", "<ruleset name=\"Supplies for Dreams.org (partial)\" f=\"Supplies_for_Dreams.org.xml\"><rule from=\"^http://(?:www\\.)?suppliesfordreams\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.suppliesfordreams.org/\"/></ruleset>", "<ruleset name=\"Supply Frame.com\" f=\"Supply_Frame.com.xml\"><securecookie host=\"^\\.supplyframe\\.com$\" name=\".+\"/><rule from=\"^http://www\\.supplyframe\\.com/\" to=\"https://supplyframe.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Supporterz.jp\" f=\"Supporterz.jp.xml\"><securecookie host=\"^supporterz\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.supporterz\\.jp/\" to=\"https://supporterz.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"supportion.org\" default_off=\"mismatched\" f=\"Supportion.org.xml\"><rule from=\"^http://(?:www\\.)?supportion\\.org/\" to=\"https://supportion.org/\"/></ruleset>", "<ruleset name=\"Suprizkizlar.com\" f=\"Suprizkizlar.com.xml\"><securecookie host=\"^(?:w*\\.)?suprizkizlar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sur.ly\" f=\"Sur.ly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surbitcoin.com\" f=\"Surbitcoin.com.xml\"><securecookie host=\"^\\.surbitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sure-assist.com\" f=\"Sure-assist.com.xml\"><securecookie host=\"^(?:www)?\\.sure-assist\\.com$\" name=\".+\"/><rule from=\"^http://sure-assist\\.com/\" to=\"https://www.sure-assist.com/\"/><rule from=\"^http://cdn\\d+\\.sure-assist\\.com/\" to=\"https://d16b15zfg5s2bm.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SureSupport\" f=\"SureSupport.xml\"><securecookie host=\"(?:www2)?\\.suresupport\\.com$\" name=\".+\"/><rule from=\"^http://(www2?\\.)?suresupport\\.com/\" to=\"https://$1suresupport.com/\"/></ruleset>", "<ruleset name=\"surespot.me\" f=\"Surespot.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surface.com (partial)\" f=\"Surface.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surfcanyon.com\" f=\"Surfcanyon.com.xml\"><rule from=\"^http://(?:www\\.)?surfcanyon\\.com/\" to=\"https://www.surfcanyon.com/\"/></ruleset>", "<ruleset name=\"Surfeasy.com\" f=\"Surfeasy.com.xml\"><securecookie host=\"^.*\\.?surfeasy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surfermag\" default_off=\"mismatch\" f=\"Surfermag.xml\"><rule from=\"^http://(?:www\\.)?surfermag\\.com/\" to=\"https://www.surfermag.com/\"/></ruleset>", "<ruleset name=\"Surfline.com\" platform=\"mixedcontent\" default_off=\"redirect to http\" f=\"Surfline.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://surfline\\.com/\" to=\"https://www.surfline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surftown.com\" platform=\"mixedcontent\" f=\"Surftown.com.xml\"><rule from=\"^http://(?:www\\.)?surftown\\.com/\" to=\"https://www.surftown.com/\"/></ruleset>", "<ruleset name=\"Surge.sh\" f=\"Surge.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SurpassHosting.com (partial)\" f=\"SurpassHosting.com.xml\"><securecookie host=\"^core\\.surpasshosting\\.com$\" name=\".+\"/><rule from=\"^http://(chat|core|sh151)\\.surpasshosting\\.com/\" to=\"https://$1.surpasshosting.com/\"/></ruleset>", "<ruleset name=\"Surprisingly Free\" default_off=\"self-signed\" f=\"Surprisingly-Free.xml\"><rule from=\"^http://(?:www\\.)?surprisinglyfree\\.com/\" to=\"https://surprisinglyfree.com/\"/></ruleset>", "<ruleset name=\"Surveillance Law.org\" f=\"Surveillance_Law.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Survey Analytics (partial)\" f=\"Survey-Analytics.xml\"><rule from=\"^http://popup\\.questionpro\\.com/\" to=\"https://popup.questionpro.com/\"/></ruleset>", "<ruleset name=\"SurveyGizmo.com\" f=\"SurveyGizmo.com.xml\"><rule from=\"^http://(?:www\\.)?surveygizmo\\.com/\" to=\"https://www.surveygizmo.com/\"/><rule from=\"^http://(app|pro[0-9][0-9]?)\\.sgizmo\\.com/\" to=\"https://$1.sgizmo.com/\"/></ruleset>", "<ruleset name=\"SurveyMonkey (buggy)\" default_off=\"breaks surveys!\" f=\"SurveyMonkey.xml\"><exclusion pattern=\"^http://www\\.surveymonkey\\.com/Home_Landing\\.aspx\"/><securecookie host=\"^\\.research\\.net$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?surveymonkey\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?research\\.net/\" to=\"https://$1research.net/\"/><rule from=\"^http://surveymonkey\\.com/\" to=\"https://www.surveymonkey.com/\"/><rule from=\"^http://(admin|aide|a[jy]uda|blog|contribute|da|de|fr|es|fi|go|help2|hilfe|it|jp|ko|nl|no|pt|ru|ruhelp|secure|sv|www|zh)\\.surveymonkey\\.com/\" to=\"https://$1.surveymonkey.com/\"/><rule from=\"^http://help\\.surveymonkey\\.com/\" to=\"https://surveymonkey.secure.force.com/\"/><rule from=\"^http://smaudience\\.surveymonkey\\.com/(?:\\?.*)?$\" to=\"https://www.surveymonkey.com/mp/audience/\"/><rule from=\"^http://smaudience\\.surveymonkey\\.com/(cs|image|j|r)s/\" to=\"https://na-d.market.com/$1s/\"/></ruleset>", "<ruleset name=\"Surveydaddy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Surveydaddy.xml\"><exclusion pattern=\"^http://support\\.surveydaddy\\.com/\"/><rule from=\"^http://surveydaddy\\.com/\" to=\"https://surveydaddy.com/\"/><rule from=\"^http://([^@:\\./]+)\\.surveydaddy\\.com/\" to=\"https://$1.surveydaddy.com/\"/></ruleset>", "<ruleset name=\"Survive the Claire Perry Inter.net\" f=\"Survive_The_Claire_Perry_Inter.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Survs\" f=\"Survs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Susliving (partial)\" f=\"Susliving.xml\"><securecookie host=\"^forum\\.susliving\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.susliving\\.org/\" to=\"https://forum.susliving.org/\"/></ruleset>", "<ruleset name=\"Sussan.com.au\" default_off=\"broken\" f=\"Sussan.com.au.xml\"><rule from=\"^http://assets\\.sussan\\.com\\.au/\" to=\"https://dcu0x19cdch9b.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sustainable Electronics.org\" f=\"Sustainable_Electronics.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sustainablebusiness.com\" f=\"Sustainablebusiness.com.xml\"><rule from=\"^http://(?:www\\.)?sustainablebusiness\\.com/\" to=\"https://www.sustainablebusiness.com/\"/></ruleset>", "<ruleset name=\"Susy Radio.com\" default_off=\"expired, mismatched, self-signed\" f=\"Susy_Radio.com.xml\"><rule from=\"^http://(?:www\\.)?susyradio\\.com/\" to=\"https://www.susyradio.com/\"/></ruleset>", "<ruleset name=\"sv2.biz\" f=\"Sv2.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SvD.se (partial)\" f=\"SvD.se.xml\"><rule from=\"^http://kundservice\\.svd\\.se/\" to=\"https://kundservice.svd.se/\"/></ruleset>", "<ruleset name=\"Svbtle.com\" f=\"Svbtle.com.xml\"><securecookie host=\"^(?:\\w+\\.)?svbtle\\.com$\" name=\".+\"/><rule from=\"^http://img\\.svbtle\\.com/\" to=\"https://d23f6h5jpj26xu.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?svbtle\\.com/\" to=\"https://$1svbtle.com/\"/></ruleset>", "<ruleset name=\"Svenskakyrkan (broken)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/9613\" f=\"Svenskakyrkan.se.xml\"><rule from=\"^http://svenskakyrkan\\.se/\" to=\"https://www.svenskakyrkan.se/\"/><rule from=\"^http://www\\.svenskakyrkan\\.se/\" to=\"https://www.svenskakyrkan.se/\"/></ruleset>", "<ruleset name=\"Svenskaspel.se\" f=\"Svenskaspel.se.xml\"><rule from=\"^http://svenskaspel\\.se/\" to=\"https://svenskaspel.se/\"/><rule from=\"^http://www\\.svenskaspel\\.se/\" to=\"https://svenskaspel.se/\"/></ruleset>", "<ruleset name=\"SverigesRadio\" f=\"SverigesRadio.se.xml\"><securecookie host=\"^sverigesradio\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?s(?:r|verigesradio)\\.se/\" to=\"https://sverigesradio.se/\"/></ruleset>", "<ruleset name=\"Svetlodarsk.com\" f=\"Svetlodarsk.com.xml\"><securecookie host=\"^(?:www\\.)?svetlodarsk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svtrd.com\" f=\"Svtrd.com.xml\"><rule from=\"^http://s\\.svtrd\\.com/\" to=\"https://s.svtrd.com/\"/></ruleset>", "<ruleset name=\"Swan.sk\" f=\"Swan.sk.xml\"><rule from=\"^http://(?:www\\.)?swan\\.sk/\" to=\"https://www.swan.sk/\"/><rule from=\"^http://webmail\\.swan\\.sk/\" to=\"https://secure.webmail.sk/\"/><rule from=\"^http://(?:www\\.|secure\\.)?webmail\\.sk/\" to=\"https://secure.webmail.sk/\"/></ruleset>", "<ruleset name=\"SwapOff.org\" default_off=\"expired\" f=\"SwapOff.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"swapspace.net\" default_off=\"expired, self-signed\" f=\"Swapspace.net.xml\"><securecookie host=\"^\\.swapspace\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swapspace\\.net/\" to=\"https://swapspace.net/\"/></ruleset>", "<ruleset name=\"Swartz Files.com\" f=\"Swartz_Files.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sway-CDN.com\" f=\"Sway-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sway.com\" f=\"Sway.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swedbank.lv (partial)\" f=\"Swedbank.lv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sweet & Sour\" default_off=\"failed ruleset test\" f=\"Sweet_and_Sour.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SweetsLyrics.com\" default_off=\"expired, self-signed\" f=\"SweetsLyrics.com.xml\"><rule from=\"^http://(?:www\\.)?sweetslyrics\\.com/\" to=\"https://www.sweetslyrics.com/\"/></ruleset>", "<ruleset name=\"Sweflix\" default_off=\"redirects to http\" f=\"Sweflix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"swehack.org\" f=\"Swehack.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SwetsWise\" f=\"SwetsWise.xml\"><securecookie host=\"^.*\\.swetswise\\.com$\" name=\".+\"/><rule from=\"^http://www\\.swetswise\\.com/\" to=\"https://www.swetswise.com/\"/><rule from=\"^http://shibboleth\\.swetswise\\.com/\" to=\"https://shibboleth.swetswise.com/\"/></ruleset>", "<ruleset name=\"Swift.org\" f=\"Swift.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiftype (partial)\" f=\"Swiftype.xml\"><securecookie host=\"^swiftype\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?swiftype\\.com/\" to=\"https://$1swiftype.com/\"/><rule from=\"^http://s\\.swiftypecdn\\.com/\" to=\"https://s.swiftypecdn.com/\"/></ruleset>", "<ruleset name=\"Swin.edu.au (partial)\" f=\"Swin.edu.au.xml\"><securecookie host=\"^www\\.swin\\.edu\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swin\\.edu\\.au/\" to=\"https://www.swin.edu.au/\"/><rule from=\"^http://((?:www\\.)?astronomy|gpo)\\.swin\\.edu\\.au/\" to=\"https://$1.swin.edu.au/\"/></ruleset>", "<ruleset name=\"Swinburne.edu (partial, false MCB)\" platform=\"mixedcontent\" f=\"Swinburne.edu.au.xml\"><rule from=\"^http://(?:www\\.)?swinburne\\.edu\\.au/\" to=\"https://www.swinburne.edu.au/\"/></ruleset>", "<ruleset name=\"SwingFree.co.uk (partial)\" default_off=\"connection dropped\" f=\"SwingFree.co.uk.xml\"><securecookie host=\"^(?:www\\.)?swingfree\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiss Federal Railways (SBB/CFF/FFS)\" f=\"Swiss-Federal-Railways.xml\"><securecookie host=\"^\\.www\\.sbb\\.ch$\" name=\".+\"/><securecookie host=\"^\\.www\\.cff\\.ch$\" name=\".+\"/><securecookie host=\"^\\.www\\.ffs\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiss-VA.com (partial)\" default_off=\"failed ruleset test\" f=\"Swiss-VA.com.xml\"><rule from=\"^http://sso\\.swiss-va\\.com/\" to=\"https://sso.swiss-va.com/\"/></ruleset>", "<ruleset name=\"Swiss.com\" f=\"Swiss.xml\"><securecookie host=\"^(?:.*\\.)?swiss\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiss Federal Institute of Intellectual Property\" f=\"Swiss_Federal_Institute_of_Intellectual_Property.xml\"><rule from=\"^http://ige\\.ch/\" to=\"https://www.ige.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ige\\.ch/\" to=\"https://$1.ige.ch/\"/><rule from=\"^http://ip-search\\.ch/\" to=\"https://www.ip-search.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ip-search\\.ch/\" to=\"https://$1.ip-search.ch/\"/><rule from=\"^http://swissreg\\.ch/\" to=\"https://www.swissreg.ch/\"/><rule from=\"^http://([^/:@]+)?\\.swissreg\\.ch/\" to=\"https://$1.swissreg.ch/\"/></ruleset>", "<ruleset name=\"Swiss Financial Market Supervisory Authority (FINMA)\" f=\"Swiss_Financial_Market_Supervisory_Authority.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swisscom.ch\" f=\"Swisscom.ch.xml\"><securecookie host=\"^\\.swisscom\\.ch$\" name=\"^s_\\w+$\"/><securecookie host=\"^www1?\\.swisscom\\.ch$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?swisscom\\.com$\" name=\".+\"/><rule from=\"^http://o\\.swisscom\\.ch/\" to=\"https://swisscom-ch.122.2o7.net/\"/><rule from=\"^http://itunes\\.swisscom\\.com/\" to=\"https://itunes.swisscom.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"switch.ch\" f=\"Switch.ch.xml\"><securecookie host=\"^\\.switch\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switch.co\" f=\"Switch.co.xml\"><rule from=\"^http://(?:www\\.)?switch\\.co/\" to=\"https://www.switch.co/\"/></ruleset>", "<ruleset name=\"Switch Concepts\" f=\"SwitchConcepts.xml\"><securecookie host=\"^(?:\\w+\\.a|delivery)\\.switchadhub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switch VPN\" f=\"SwitchVPN.xml\"><securecookie host=\"^switchvpn\\.net$\" name=\".+\"/><exclusion pattern=\"^http://(www\\.)?secure\\.switchkonnect\\.com/(downloads|knowledgebase|announcements)\"/><rule from=\"^http://www\\.switchvpn\\.net/\" to=\"https://switchvpn.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switch Networks.com.au\" f=\"Switch_Networks.com.au.xml\"><rule from=\"^http://switchnetworks\\.com\\.au/\" to=\"https://www.switchnetworks.com.au/\"/><rule from=\"^http://vweb02\\.switchnetworks\\.com\\.au:20(83|96)/\" to=\"https://vweb02.switchnetworks.com.au:20$1/\"/><rule from=\"^http://www\\.switchnetworks\\.com\\.au/\" to=\"https://www.switchnetworks.com.au/\"/></ruleset>", "<ruleset name=\"Switchie.ch\" f=\"Switchie.ch.xml\"><securecookie host=\"^(?:www\\.)?switchie\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switchnet.io\" default_off=\"failed ruleset test\" f=\"Switchnet.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?switchnet\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?switchnet\\.io/\" to=\"https://www.switchnet.io/\"/></ruleset>", "<ruleset name=\"switchplus.ch\" f=\"Switchplus.ch.xml\"><securecookie host=\"^www\\.switchplus\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?switchplus\\.ch/\" to=\"https://www.switchplus.ch/\"/><rule from=\"^http://app\\.switchplus\\.ch/\" to=\"https://app.switchplus.ch/\"/></ruleset>", "<ruleset name=\"swordfishdc.com\" default_off=\"failed ruleset test\" f=\"Swordfishdc.com.xml\"><rule from=\"^http://(?:www\\.)?swordfishdc\\.com/\" to=\"https://customer.innometrics.com/\"/></ruleset>", "<ruleset name=\"swtor.com (partial)\" f=\"Swtor.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?swtor\\.com/(?!user)\"/><securecookie host=\"^\\.account\\.swtor\\.com$\" name=\".+\"/><rule from=\"^http://(?:account\\.|www\\.)?swtor\\.com/\" to=\"https://account.swtor.com/\"/></ruleset>", "<ruleset name=\"Stadtwerke Ulm/Neu-Ulm\" f=\"Swu.de.xml\"><rule from=\"^http://www\\.swu\\.de/\" to=\"https://www.swu.de/\"/></ruleset>", "<ruleset name=\"Sycom.co.jp\" f=\"Sycom.xml\"><rule from=\"^http://(?:www\\.)?sycom\\.co\\.jp/\" to=\"https://www.sycom.co.jp/\"/></ruleset>", "<ruleset name=\"Sydostran.se\" default_off=\"failed ruleset test\" f=\"Sydostran.se.xml\"><rule from=\"^http://sydostran\\.se/\" to=\"https://www.sydostran.se/\"/><rule from=\"^http://www\\.sydostran\\.se/\" to=\"https://www.sydostran.se/\"/></ruleset>", "<ruleset name=\"Syllabusshare (mismatches)\" default_off=\"mismatch\" f=\"Syllabusshare-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?syllabusshare\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?syllabusshare\\.com/\" to=\"https://syllabusshare.com/\"/></ruleset>", "<ruleset name=\"Syllabusshare (partial)\" default_off=\"failed ruleset test\" f=\"Syllabusshare.xml\"><rule from=\"^http://secure\\.syllabushare\\.com/\" to=\"https://secure.syllabushare.com/\"/></ruleset>", "<ruleset name=\"Sylvan Company.com\" f=\"Sylvan_Company.com.xml\"><securecookie host=\"^(?:www\\.)?sylvancompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symantec (partial)\" f=\"Symantec.xml\"><exclusion pattern=\"^http://www\\.symantec\\.com/connect/\"/><rule from=\"^http://symantec\\.com/\" to=\"https://www.symantec.com/\"/><rule from=\"^http://check\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/\"/><rule from=\"^http://entsupport\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/enterprise/support/index.jsp\"/><rule from=\"^http://go\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/index.jsp\"/><rule from=\"^http://customersupport\\.symantec\\.com/(resource|servlet)/\" to=\"https://symantec1.secure.force.com/$1/\"/><rule from=\"^http://liveupdate\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/security_response/\"/><rule from=\"^http://securityresponse\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/security_response/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symbolab.com\" f=\"Symbolab.com.xml\"><securecookie host=\"^(www\\.|blog\\.)?symbolab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symfony.com\" f=\"Symfony.com.xml\"><securecookie host=\"^(www\\.)?symfony\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symfony.fi\" f=\"Symfony.fi.xml\"><securecookie host=\"^(?:www\\.)?symfony\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"symlynX\" default_off=\"failed ruleset test\" f=\"SymlynX.xml\"><rule from=\"^http://(extra\\.|(?:www\\.))?symlynx\\.com/\" to=\"https://$1symlynx.com/\"/></ruleset>", "<ruleset name=\"Sympa.org\" f=\"Sympa.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sympa\\.org/\" to=\"https://www.sympa.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symplicity\" f=\"Symplicity.xml\"><securecookie host=\"^(?:w*\\.)?symplicity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synacor (partial)\" f=\"Synacor.xml\"><rule from=\"^http://((?:static|web)\\.coral|static\\.garnet)\\.synacor\\.com/\" to=\"https://$1.synacor.com/\"/></ruleset>", "<ruleset name=\"Synaesthesie.net\" f=\"Synaesthesie.net.xml\"><securecookie host=\"^(?:www\\.)?synaesthesie\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synaptop.com\" f=\"Synaptop.com.xml\"><rule from=\"^http://(?:www\\.)?synaptop\\.com/\" to=\"https://www.synaptop.com/\"/></ruleset>", "<ruleset name=\"Sync.com\" f=\"Sync.com.xml\"><rule from=\"^http://(?:www\\.)?sync\\.com/\" to=\"https://www.sync.com/\"/></ruleset>", "<ruleset name=\"SyncBoss (partial)\" f=\"SyncBoss.xml\"><securecookie host=\"^my\\.syncboss\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?my\\.syncboss\\.com/\" to=\"https://my.syncboss.com/\"/></ruleset>", "<ruleset name=\"Syncany.org\" f=\"Syncany.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synch.hu (partial)\" f=\"Synch.hu.xml\"><rule from=\"^http://web\\.synch\\.hu/\" to=\"https://web.synch.hu/\"/></ruleset>", "<ruleset name=\"Synchronicer.dk (mixed content)\" platform=\"mixedcontent\" f=\"Synchronicer.dk.xml\"><securecookie host=\"(www\\.)?synchronicer\\.dk\" name=\".*\"/><rule from=\"^http://(www\\.)?synchronicer\\.dk/\" to=\"https://www.synchronicer.dk/\"/></ruleset>", "<ruleset name=\"Syncplicity\" f=\"Syncplicity.xml\"><securecookie host=\"^.*\\.syncplicity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syncsearch.jp (partial)\" f=\"Syncsearch.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syncthing.net\" f=\"Syncthing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SyndeticS.com\" f=\"SyndeticS.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.syndetics\\.com/\" to=\"https://secure.syndetics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syndie\" f=\"Syndie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synergist SCADA\" default_off=\"failed ruleset test\" f=\"Synergist_SCADA.xml\"><securecookie host=\"^(?:w*\\.)?synergistscada\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synergy-FOSS.org (partial)\" f=\"Synergy-FOSS.org.xml\"><rule from=\"^http://(www\\.)?synergy-foss\\.org/(?=css/|(?:donate|nightly|premium)(?:$|[?/])|favicon\\.ico|files/|icons/|img/)\" to=\"https://$1synergy-foss.org/\"/></ruleset>", "<ruleset name=\"Synology.com.tw\" default_off=\"mismatched\" f=\"Synology.com.tw.xml\"><securecookie host=\"^.*\\.synology\\.com\\.tw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synology.com\" f=\"Synology.xml\"><securecookie host=\".*\\.synology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synopsys (partial)\" f=\"Synopsys.xml\"><securecookie host=\"^\\w+\\.synopsys\\.com$\" name=\".*\"/><rule from=\"^http://www\\.synopsys\\.co\\.jp/img/\" to=\"https://www.synopsys.co.jp/img/\"/><rule from=\"^http://(?:www\\.)?synopsys\\.com/\" to=\"https://www.synopsys.com/\"/><rule from=\"^http://(blogs|solvnet|sso)\\.synopsys\\.com/\" to=\"https://$1.synopsys.com/\"/></ruleset>", "<ruleset name=\"synovite-scripts.com\" f=\"Synovite-scripts.com.xml\"><rule from=\"^http://ssl\\.synovite-scripts\\.com/\" to=\"https://ssl.synovite-scripts.com/\"/></ruleset>", "<ruleset name=\"syntevo.com (partial)\" f=\"Syntevo.com.xml\"><exclusion pattern=\"^http://www\\.syntevo\\.com/blog/(?!wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synthetix.com (partial)\" default_off=\"404\" f=\"Synthetix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synthetix.info\" f=\"Synthetix.info.xml\"><securecookie host=\"^synthetix\\.(?:info|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?synthetix\\.(info|net)/\" to=\"https://synthetix.$1/\"/></ruleset>", "<ruleset name=\"Syöpäjärjestöt\" default_off=\"failed ruleset test\" f=\"Syopajarjestot.xml\"><rule from=\"^http://(?:www\\.)?cancer\\.fi/\" to=\"https://cancer-fi.directo.fi/\"/><rule from=\"^http://cancer-fi\\.directo\\.fi/\" to=\"https://cancer-fi.directo.fi/\"/><rule from=\"^http://(?:www\\.)?(seulonta|syoparekisteri)\\.fi/\" to=\"https://cancer-fi.directo.fi/$1/\"/></ruleset>", "<ruleset name=\"Syracuse University (partial)\" f=\"Syracuse_University.xml\"><rule from=\"^http://faculty\\.ischool\\.syr\\.edu/\" to=\"https://faculty.ischool.syr.edu/\"/></ruleset>", "<ruleset name=\"sys4.de\" f=\"Sys4.de.xml\"><rule from=\"^http://blog\\.sys4\\.de/.*\" to=\"https://sys4.de/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SysAid.com\" f=\"SysAid.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SysCan.org\" f=\"SysCan.org.xml\"><securecookie host=\"^(?:www\\.)?syscan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SysWard.com\" f=\"SysWard.com.xml\"><securecookie host=\"^\\.sysward\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sysward\\.com/\" to=\"https://sysward.com/\"/></ruleset>", "<ruleset name=\"Sysadmin Casts.com\" f=\"Sysadmin_Casts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syscoding.com\" f=\"Syscoding.com.xml\"><securecookie host=\"^\\.?syscoding\\.com$\" name=\".+\"/><rule from=\"^http://www\\.syscoding\\.com/\" to=\"https://syscoding.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysconfig.org.uk\" f=\"Sysconfig.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysdream.com\" f=\"Sysdream.com.xml\"><securecookie host=\"^\\.sysdream\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syslog-ng.org\" f=\"Syslog-ng.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysmex.com\" f=\"Sysmex.com.xml\"><securecookie host=\"^\\.sysmex\\.com$\" name=\"^__utm\\w+$\"/><securecookie host=\"^www\\.sysmex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sysmocom.de (CAcert, partial)\" platform=\"cacert\" f=\"Sysmocom.de.xml\"><exclusion pattern=\"^http://shop\\.sysmocom\\.de/(?!assets|checkout|images|login|stylesheets)\"/><rule from=\"^http://sysmocom\\.de/\" to=\"https://www.sysmocom.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syspectr.com\" f=\"Syspectr.com.xml\"><securecookie host=\"^(app\\.|www\\.)?syspectr\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"System76.com\" f=\"System76.com.xml\"><rule from=\"^http://www\\.system76\\.com/\" to=\"https://www.system76.com/\"/><rule from=\"^http://system76\\.com/\" to=\"https://www.system76.com/\"/></ruleset>", "<ruleset name=\"SystemIntegra.ru\" f=\"SystemIntegra.ru.xml\"><securecookie host=\"^\\.systemintegra\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"System Center Advisor.com\" f=\"System_Center_Advisor.com.xml\"><securecookie host=\"^(?:www)?\\.systemcenteradvis[eo]r\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?systemcenteradvis(e|o)r\\.(com|net)/\" to=\"https://$1systemcenteradvis$2r.$3/\"/><rule from=\"^http://login\\.systemcenteradvisor\\.com/\" to=\"https://login.systemcenteradvisor.com/\"/></ruleset>", "<ruleset name=\"System Overlord.com\" f=\"System_Overlord.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"systemausfall.org\" f=\"Systemausfall.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Systembolaget.se\" f=\"Systembolaget.se.xml\"><exclusion pattern=\"^http://www\\.systembolaget\\.se/Butik\\-\\-Ombud/\"/><rule from=\"^http://systembolaget\\.se/\" to=\"https://www.systembolaget.se/\"/><rule from=\"^http://www\\.systembolaget\\.se/\" to=\"https://www.systembolaget.se/\"/></ruleset>", "<ruleset name=\"Système D\" default_off=\"mismatch, self-signed\" f=\"Systeme-D.xml\"><securecookie host=\"^systemed\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?systemed\\.net/\" to=\"https://systemed.net/\"/></ruleset>", "<ruleset name=\"systemli.org\" f=\"Systemli.org.xml\"><securecookie host=\"^pad\\.systemli\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syxin.com\" f=\"Syxin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Szm.com (false MCB)\" platform=\"mixedcontent\" f=\"Szm.com.xml\"><rule from=\"^http://www\\.szm\\.com/\" to=\"https://szm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Engine.org (partial)\" f=\"T-Engine.org.xml\"><rule from=\"^http://(?:www\\.)?t-engine\\.org/(?!membersonly/)\" to=\"https://www.t-engine.org/\"/></ruleset>", "<ruleset name=\"T-Mobile.co.uk\" f=\"T-Mobile.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Mobile (false MCB)\" platform=\"mixedcontent\" f=\"T-Mobile.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Mobile.nl (partial)\" f=\"T-Mobile.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.accessoires\\.t-mobile\\.nl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Mobile.com (partial)\" f=\"T-Mobile.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Nation.com\" f=\"T-Nation.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://t-nation\\.com/\" to=\"https://www.t-nation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Online (partial)\" f=\"T-Online.xml\"><exclusion pattern=\"^http://rezepte\\.t-online\\.de/(?!sites/)\"/><securecookie host=\"^(?:\\.banner|email|\\.mediencenter|stayfriends|suche|tbx)\\.t-online\\.de$\" name=\".+\"/><rule from=\"^http://toi\\.ivwbox\\.de/\" to=\"https://toi-ssl.ivwbox.de/\"/><rule from=\"^http://(im\\.banner|header\\.cdb|email|fssecure|mediencenter|rezepte|stayfriends|suche|tbx|wiga)\\.t-online\\.de/\" to=\"https://$1.t-online.de/\"/><rule from=\"^http://t-online\\.de\\.intellitxt\\.com/\" to=\"https://ln1-g003.intellitxt.com/\"/></ruleset>", "<ruleset name=\"T-Shirt Mojo.com\" f=\"T-Shirt_Mojo.xml\"><securecookie host=\"^(?:www\\.)?t-shirtmojo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T.co\" f=\"T.co.xml\"><securecookie host=\"^\\.t\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?t\\.co/\" to=\"https://t.co/\"/></ruleset>", "<ruleset name=\"t3.io\" default_off=\"failed ruleset test\" f=\"T3.io.xml\"><securecookie host=\"^\\.t3\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T35 cPanel Hosting\" platform=\"mixedcontent\" f=\"T35-cPanel-Hosting.xml\"><rule from=\"^http://(?:www\\.)?t35\\.com/\" to=\"https://www.t35.com/\"/></ruleset>", "<ruleset name=\"t37.net\" f=\"T37.net.xml\"><rule from=\"^http://(?:www\\.)?t37\\.net/\" to=\"https://t37.net/\"/></ruleset>", "<ruleset name=\"T3Blog.com\" default_off=\"mismatched, self-signed\" f=\"T3Blog.com.xml\"><securecookie host=\"^(?:www\\.)?t3blog\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?t3blog\\.com/\" to=\"https://www.t3blog.com/\"/></ruleset>", "<ruleset name=\"T411\" f=\"T411.xml\"><exclusion pattern=\"^http://irc\\.t411\\.(io|me)/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^.*t411\\.(io|me)$\" name=\".*\"/></ruleset>", "<ruleset name=\"TACAR.org\" f=\"TACAR.org.xml\"><securecookie host=\"^(?:www\\.)?tacar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAG Online.com (partial)\" f=\"TAG_Online.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAIFEX.com.tw\" f=\"TAIFEX.com.tw.xml\"><securecookie host=\"^(?:sim|www)\\.taifex\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://(sim|www)\\.taifex\\.com\\.tw/\" to=\"https://$1.taifex.com.tw/\"/></ruleset>", "<ruleset name=\"TARGUSinfo\" f=\"TARGUSinfo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAU.ac.il (partial)\" f=\"TAU.ac.il.xml\"><rule from=\"^http://(?:www\\.)?cs\\.tau\\.ac\\.il/\" to=\"https://www.cs.tau.ac.il/\"/><rule from=\"^http://(course|forums|svn)\\.cs\\.tau\\.ac\\.il/\" to=\"https://$1.cs.tau.ac.il/\"/></ruleset>", "<ruleset name=\"TAZ\" f=\"TAZ.xml\"><rule from=\"^http://(?:www\\.)?taz\\.de/\" to=\"https://www.taz.de/\"/><rule from=\"^http://(blogs|buchmesse|dl|download|m|shop)\\.taz\\.de/\" to=\"https://$1.taz.de/\"/><rule from=\"^http://www\\.buchmesse\\.taz\\.de/\" to=\"https://buchmesse.taz.de/\"/></ruleset>", "<ruleset name=\"TBray.org\" f=\"TBray.org.xml\"><securecookie host=\"^(?:www)?\\.tbray\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCD.ie (problematic)\" default_off=\"expired, self-signed\" f=\"TCD.ie-problematic.xml\"><securecookie host=\"^www\\.dsg\\.cs\\.tcd\\.ie$\" name=\".+\"/><rule from=\"^http://www\\.dsg\\.cs\\.tcd\\.ie/\" to=\"https://www.dsg.cs.tcd.ie/\"/></ruleset>", "<ruleset name=\"TCF.org (partial)\" f=\"TCF.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?tcf\\.org/+(?!assets/|donate(?:$|[?/])|favicon\\.ico|favicon\\.png|images/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCF MailVault.info\" f=\"TCF_MailVault.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCPA Compliance.us\" f=\"TCPA_Compliance.us.xml\"><securecookie host=\"^www\\.tcpacompliance\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCPalm.com (partial)\" default_off=\"failed ruleset test\" f=\"TCPalm.com.xml\"><securecookie host=\"^(?:login)?\\.tcpalm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tcpalm\\.com/\" to=\"https://www.tcpalm.com/\"/><rule from=\"^http://jobs\\.tcpalm\\.com/\" to=\"https://www.tcpalm.com/hotjobs\"/><rule from=\"^http://(www\\.)?tcpalmextras\\.com/\" to=\"https://$1tcpalmextras.com/\"/></ruleset>", "<ruleset name=\"TC img.net\" f=\"TC_img.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TD Bank (partial)\" f=\"TDBank.xml\"><rule from=\"^http://onlinebanking\\.tdbank\\.com/\" to=\"https://onlinebanking.tdbank.com/\"/></ruleset>", "<ruleset name=\"TDC.dk (partial)\" default_off=\"failed ruleset test\" f=\"TDC.dk.xml\"><securecookie host=\"^\\.tdc\\.dk$\" name=\"^salg_dwbc$\"/><securecookie host=\"^(?:privatalarm|shop)\\.tdc\\.dk$\" name=\".+\"/><rule from=\"^http://forum\\.tdc\\.dk/\" to=\"https://tdc.i.lithium.com/\"/><rule from=\"^http://(?:www\\.)?tdc-wholesale\\.com/\" to=\"https://wholesale.tdc.dk/nordic/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC.no (partial)\" f=\"TDC.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC Service Online.com\" f=\"TDC_Service_Online.com.xml\"><securecookie host=\"^(?:www\\.)?tdcserviceonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC online.se\" f=\"TDC_online.se.xml\"><securecookie host=\"^(?:tdc\\.)?tdconline\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TD Canada Trust\" f=\"TDCanadatrust.com.xml\"><rule from=\"^http://(?:www\\.)?tdcanadatrust\\.com/\" to=\"https://www.tdcanadatrust.com/\"/></ruleset>", "<ruleset name=\"TDF-Telecom.fr\" f=\"TDF-Telekom.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDRevolution\" default_off=\"expired\" f=\"TDRevolution.xml\"><securecookie host=\"^www\\.tdrevolution\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tdrevolution\\.com/\" to=\"https://www.tdrevolution.com/\"/></ruleset>", "<ruleset name=\"TDS.net (partial)\" f=\"TDS.net.xml\"><securecookie host=\"^\\.tds\\.net$\" name=\"^(?:Synacor_\\d|synmaxymizer2)$\"/><securecookie host=\"^sso\\.tds\\.net$\" name=\".+\"/><rule from=\"^http://(secure|sso|tsm)\\.tds\\.net/\" to=\"https://$1.tds.net/\"/></ruleset>", "<ruleset name=\"TEAC (partial)\" default_off=\"failed ruleset test\" f=\"TEAC.xml\"><rule from=\"^http://(?:www\\.)?teac\\.co\\.jp/\" to=\"https://teac.co.jp/\"/><rule from=\"^http://shop\\.teac\\.com/\" to=\"https://shop.teac.com/\"/><securecookie host=\"^shop\\.teac\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"TED (mismatches)\" default_off=\"mismatch\" f=\"TED-mismatches.xml\"><rule from=\"^http://(blog|video)\\.ted\\.com/\" to=\"https://$1.ted.com/\"/></ruleset>", "<ruleset name=\"TED (buggy)\" f=\"TED.xml\"><exclusion pattern=\"^http://video\\.ted\\.com/\"/><rule from=\"^http://ed\\.ted\\.com/\" to=\"https://teded.herokuapp.com/\"/><rule from=\"^http://(?:images\\.ted|lvlt\\.tedcdn)\\.com/\" to=\"https://www.ted.com/\"/><rule from=\"^http://www\\.ted\\.com/\" to=\"https://www.ted.com/\"/><rule from=\"^http://pb\\-assets\\.tedcdn\\.com/\" to=\"https://pb-assets.tedcdn.com/\"/><rule from=\"^http://img\\.tedcdn\\.com/\" to=\"https://img-ssl.tedcdn.com/\"/></ruleset>", "<ruleset name=\"TEHTRI-Security.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TEHTRI-Security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TF Sprays.com\" f=\"TF_Sprays.com.xml\"><securecookie host=\"^(?:w*\\.)?tfsprays\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TH-Mittelhessen.de\" f=\"TH-Mittelhessen.de.xml\"><securecookie host=\"^www\\.mni\\.th-mittelhessen\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hacker's Choice\" default_off=\"expired cert\" f=\"THC.xml\"><rule from=\"^http://(?:www\\.)?thc\\.org/\" to=\"https://thc.org/\"/><rule from=\"^http://(freeworld|ircs-web|wiki)\\.thc\\.org/\" to=\"https://$1.thc.org/\"/></ruleset>", "<ruleset name=\"THM.de (partial)\" f=\"THM.de.xml\"><securecookie host=\"^(?:\\w.*|\\.websites)\\.thm\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THN.li\" f=\"THN.li.xml\"><securecookie host=\"^\\.thn\\.li$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THR.com\" f=\"THR.com.xml\"><rule from=\"^http://(?:www\\.)?thr\\.com/\" to=\"https://www.hollywoodreporter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THREe.ne.jp\" f=\"THREe.ne.jp.xml\"><rule from=\"^http://www\\.three\\.ne\\.jp/\" to=\"https://three.ne.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TI.com (false MCB)\" platform=\"mixedcontent\" f=\"TI.com-falsemixed.xml\"><exclusion pattern=\"^http://www.ti.com/(?:general/docs/)?lit/\"/><rule from=\"^http://ti\\.com/\" to=\"https://www.ti.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIAA-CREF.org\" f=\"TIAA-CREF.org.xml\"><securecookie host=\"^publictools\\.tiaa-cref\\.org$\" name=\".+\"/><rule from=\"^http://tiaa-cref\\.org/\" to=\"https://www.tiaa-cref.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIBCO.com (partial)\" f=\"TIBCO.com.xml\"><securecookie host=\"^(?:docs|download|support)\\.tibco\\.com$\" name=\".+\"/><rule from=\"^http://(docs|download|support)\\.tibco\\.com/\" to=\"https://$1.tibco.com/\"/><rule from=\"^http://forms2\\.tibco\\.com/(cs|image|j|r)s/\" to=\"https://na-sj01.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"TICKETsage\" f=\"TICKETsage.xml\"><securecookie host=\"^\\.ticketsage.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIME.com (partial)\" f=\"TIME.com.xml\"><exclusion pattern=\"^http://time\\.com/(?:$|(?:(?:\\d+|author|collection|magazine|newsletter|tag|topic)/[\\w-]+|business|entertainment|health|history|ideas|living|magazine|newsfeed|parents|politics|science|sports|tech|us|vault|world)/(?:$|\\?))\"/><securecookie host=\"^\\.time\\.com$\" name=\"^(?:gpv_\\w\\d+|sinvisit_\\w|s_\\w+)$\"/><securecookie host=\"^subscription\\.time\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|profiles|smetrics|subscription|www)\\.)?time\\.com/\" to=\"https://$1time.com/\"/><rule from=\"^http://(business|entertainment|newsfeed|science|world)\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/$1\"/><rule from=\"^http://healthland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/health\"/><rule from=\"^http://ideas\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/opinion\"/><rule from=\"^http://nation\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/us\"/><rule from=\"^http://swampland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/politics\"/><rule from=\"^http://techland\\.time\\.com/+(?:$|\\?.*)\" to=\"https://time.com/tech\"/></ruleset>", "<ruleset name=\"TIP.net.au (partial)\" platform=\"cacert\" f=\"TIP.net.au.xml\"><rule from=\"^http://(www\\.)?tip\\.net\\.au/(favicon\\.ico|wiki/(?:index\\.php\\?title=(?:.+&action=raw|Special:UserLogin)|PCUG_logo\\.jpg|skins/))\" to=\"https://$1tip.net.au/$2\"/></ruleset>", "<ruleset name=\"TKK.fi\" default_off=\"missing certificate chain\" f=\"TKK.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLDRLegal.com (partial)\" f=\"TLDRLegal.com.xml\"><securecookie host=\"^\\.tldrlegal\\.com$\" name=\"^tldrlegal\\.sid$\"/><rule from=\"^https?://(www\\.)?tldrlegal\\.com/\" to=\"https://tldrlegal.com/\"/></ruleset>", "<ruleset name=\"TLHP.cf\" f=\"TLHP.cf.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.tlhp\\.cf/\" to=\"https://tlhp.cf/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLS-o-Matic.com\" f=\"TLS-o-Matic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLS.so\" f=\"TLS.so.xml\"><securecookie host=\"^\\.tls\\.so$\" name=\".+\"/><rule from=\"^http://www\\.tls\\.so/\" to=\"https://tls.so/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLScompare.org\" f=\"TLScompare.org.xml\"><securecookie host=\"^(?:www\\.)?tlscompare\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMBC.gov.uk\" f=\"TMBC.gov.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMDN.org (partial)\" f=\"TMDN.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMDb.org\" f=\"TMDb.org.xml\"><securecookie host=\"^\\.tmdb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMP.com\" f=\"TMP.xml\"><rule from=\"^http://autodiscover\\.tmp\\.com/\" to=\"https://autodiscover-s.outlook.com/\"/><rule from=\"^http://webmail\\.tmp\\.com/\" to=\"https://webmail.tmp.com/\"/></ruleset>", "<ruleset name=\"TMPwebeng.com\" f=\"TMPwebeng.com.xml\"><securecookie host=\"^services\\.tmpwebeng\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?tmpwebeng\\.com/\" to=\"https://secure.tmpwebeng.com/\"/><rule from=\"^http://services\\.tmpwebeng\\.com/\" to=\"https://services.tmpwebeng.com/\"/></ruleset>", "<ruleset name=\"TMZ.com\" f=\"TMZ.com.xml\"><securecookie host=\"^\\.www\\.tmz\\.com$\" name=\".+\"/><rule from=\"^http://tmz\\.vo\\.llnwd\\.net/\" to=\"https://tmz.hs.llnwd.net/\"/><rule from=\"^http://(?:ll-)?(assets|media)\\.tmz\\.com/\" to=\"https://s3.amazonaws.com/$1.tmz.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMcdn.org\" f=\"TMcdn.org.xml\"><rule from=\"^http://cdn\\d?\\.tmcdn\\.org/\" to=\"https://d28avt1uzu18qf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TMobile.com\" f=\"TMobile.com.xml\"><rule from=\"^http://(?:www\\.)?tmobile\\.com/\" to=\"https://www.t-mobile.com/\"/><rule from=\"^http://my\\.tmobile\\.com/\" to=\"https://my.t-mobile.com/\"/></ruleset>", "<ruleset name=\"TMobile.nl\" f=\"TMobile.nl.xml\"><rule from=\"^http://(?:www\\.)?tmobile\\.nl/\" to=\"https://www.t-mobile.nl/\"/></ruleset>", "<ruleset name=\"TMocache.com\" f=\"TMocache.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMtm.ru (partial)\" f=\"TMtm.ru.xml\"><securecookie host=\"^id\\.tmtm\\.ru$\" name=\".+\"/><rule from=\"^http://id\\.tmtm\\.ru/\" to=\"https://id.tmtm.ru/\"/></ruleset>", "<ruleset name=\"TNNet\" f=\"TNNet.xml\"><securecookie host=\"^(?:.*\\.)?tnnet\\.fi$\" name=\".*\"/><rule from=\"^http://tnnet\\.fi/\" to=\"https://www.tnnet.fi/\"/><rule from=\"^http://((?:hostcontrol|mail|oma|wm|www)\\.)?tnnet\\.fi/\" to=\"https://$1tnnet.fi/\"/></ruleset>", "<ruleset name=\"TNO.nl\" f=\"TNO.nl.xml\"><rule from=\"^http://(?:www\\.)?tno\\.nl/\" to=\"https://www.tno.nl/\"/></ruleset>", "<ruleset name=\"TNS Gallup (partial)\" f=\"TNS-Gallup.xml\"><securecookie host=\"^statistik-gallup.net$\" name=\".*\"/><rule from=\"^http://www\\.statistik-gallup\\.net/\" to=\"https://statistik-gallup.net/\"/><rule from=\"^http://statistik-gallup\\.net/\" to=\"https://statistik-gallup.net/\"/></ruleset>", "<ruleset name=\"TNS Global\" default_off=\"self-signed\" f=\"TNS-Global.xml\"><rule from=\"^http://(?:www\\.)?tnsglobal\\.com/\" to=\"https://www.tnsglobal.com/\"/></ruleset>", "<ruleset name=\"TNS Info\" f=\"TNS-Info.xml\"><securecookie host=\"^(?:.*\\.)?tnsinfo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tnsinfo\\.com/\" to=\"https://www.tnsinfo.com/\"/></ruleset>", "<ruleset name=\"TNS Sifo (partial)\" f=\"TNS-Sifo.xml\"><securecookie host=\"^panel\\.research-int\\.se$\" name=\".+\"/><securecookie host=\"^ssl\\.sifomedia\\.se$\" name=\".*\"/><rule from=\"^http://panel\\.research-int\\.se/\" to=\"https://panel.research-int.se/\"/><rule from=\"^http://ssl\\.sifomedia\\.se/\" to=\"https://ssl.sifomedia.se/\"/></ruleset>", "<ruleset name=\"TOG\" platform=\"cacert\" f=\"TOG.xml\"><securecookie host=\"^www\\.tog\\.ie$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOPNET.cz\" f=\"TOPNET.cz.xml\"><securecookie host=\"^profil\\.topnet\\.cz$\" name=\"^TopnetProfil_login$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOPlist.cz (false MCB)\" platform=\"mixedcontent\" f=\"TOPlist.cz-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOPlist.cz (partial)\" f=\"TOPlist.cz.xml\"><exclusion pattern=\"^http://www\\.toplist\\.cz/+(?!favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOSBack.org\" f=\"TOSBack.org.xml\"><securecookie host=\"^tosback\\.org$\" name=\".+\"/><rule from=\"^http://tosback\\.org/\" to=\"https://tosback.org/\"/></ruleset>", "<ruleset name=\"TPC.com\" f=\"TPC.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TPG Capital (self-signed)\" default_off=\"mismatch, self-signed\" f=\"TPG-Capital-mismatches.xml\"><rule from=\"^http://(?:www\\.)?tpg\\.com/\" to=\"https://tpg.com/\"/></ruleset>", "<ruleset name=\"TPG Capital (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TPG-Capital.xml\"><rule from=\"^http://(?:www\\.)?bergdorfgoodman\\.com/\" to=\"https://www.bergdorfgoodman.com/\"/><rule from=\"^http://(?:www\\.)?cusp\\.com/(content/|images/|stylesheets/)\" to=\"https://www.cusp.com/$1\"/><rule from=\"^http://jscss\\.cp\\.ctscdn\\.com/\" to=\"https://www.cusp.com/\"/><rule from=\"^http://(?:www\\.)?incircle\\.com/\" to=\"https://www.incircle.com/\"/><rule from=\"^http://(?:www\\.)?lastcall\\.com/\" to=\"https://www.lastcall.com/\"/><rule from=\"^http://neimanmarcus\\.com/\" to=\"https://www.neimanmarcus.com/\"/><rule from=\"^http://(registry|www)\\.neimanmarcus\\.com/\" to=\"https://$1.neimanmarcus.com/\"/></ruleset>", "<ruleset name=\"TPP No Certification.org\" default_off=\"expired, self-signed\" f=\"TPP_No_Certification.org.xml\"><rule from=\"^http://(?:www\\.)?tppnocertification\\.org/\" to=\"https://tppnocertification.org/\"/></ruleset>", "<ruleset name=\"TPPtraining.com\" f=\"TPPtraining.com.xml\"><rule from=\"^http://(?:www\\.)?tpptraining\\.com/\" to=\"https://www.tpptraining.com/\"/></ruleset>", "<ruleset name=\"TPTQ-Arabic.com\" f=\"TPTQ-Arabic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRON-DELTA.ORG\" platform=\"firefox\" f=\"TRON-DELTA.ORG.xml\"><securecookie host=\"^tron-delta\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tron-delta\\.org/\" to=\"https://tron-delta.org/\"/><rule from=\"^http://([^/:@]+)\\.tron-delta\\.org/\" to=\"https://$1.tron-delta.org/\"/></ruleset>", "<ruleset name=\"TRUSTe.com (partial)\" f=\"TRUSTe.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://truste\\.com/\" to=\"https://www.truste.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRUe-Security.nl\" f=\"TRUe-Security.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRiBot.org (partial)\" f=\"TRiBot.org.xml\"><securecookie host=\"^\\.tribot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSB Mag.com\" f=\"TSB_Mag.com.xml\"><securecookie host=\"^(?:w*\\.)?tsbmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSDD.org\" default_off=\"refused\" f=\"TSDD.org.xml\"><securecookie host=\"^\\.tsdd\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSHA online.org\" f=\"TSHA_online.org.xml\"><securecookie host=\"^\\.tshaonline\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSMC.com (partial)\" f=\"TSMC.com.xml\"><rule from=\"^http://(ec[at]online|online)\\.tsmc\\.com/\" to=\"https://$1.tsmc.com/\"/></ruleset>", "<ruleset name=\"TSO.co.uk\" f=\"TSO.co.uk.xml\"><securecookie host=\"^(?:www)?\\.tso\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tso\\.co\\.uk/\" to=\"https://www.tso.co.uk/\"/><rule from=\"^http://www\\.stats\\.tso\\.co\\.uk/\" to=\"https://www.stats.tso.co.uk/\"/></ruleset>", "<ruleset name=\"TSO Shop\" f=\"TSOshop.co.uk.xml\"><securecookie host=\"^www\\.tsoshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://www\\.tsoshop\\.co\\.uk/\" to=\"https://www.tsoshop.co.uk/\"/></ruleset>", "<ruleset name=\"TShare.to\" f=\"TShare.to.xml\"><securecookie host=\"^\\.?tshare\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TT.se\" f=\"TT.se.xml\"><rule from=\"^http://tt\\.se/\" to=\"https://www.tt.se/\"/><rule from=\"^http://www\\.tt\\.se/\" to=\"https://www.tt.se/\"/></ruleset>", "<ruleset name=\"TTIP-Stoppen.at\" f=\"TTIP-Stoppen.at.xml\"><rule from=\"^http://ttip-stoppen\\.at/\" to=\"https://www.ttip-stoppen.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TTxm.co.uk\" f=\"TTxm.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TU-Chemnitz.de (partial)\" f=\"TU-Chemnitz.de.xml\"><rule from=\"^http://(?:www\\.)?tu-chemnitz\\.de/\" to=\"https://www.tu-chemnitz.de/\"/><rule from=\"^http://(www\\.bibliothek|www-user)\\.tu-chemnitz\\.de/\" to=\"https://$1.tu-chemnitz.de/\"/></ruleset>", "<ruleset name=\"TU-Darmstadt.de (partial)\" f=\"TU-Darmstadt.de.xml\"><securecookie host=\"^www\\.(?:cdc\\.)?www\\.informatik\\.tu-darmstadt\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.cs|(?:idm-bi01|sso|www)\\.hrz|www\\.idm|(?:(?:wiki|www)\\.cdc|www)\\.informatik|www\\.ulb|www)\\.tu-darmstadt\\.de/\" to=\"https://$1.tu-darmstadt.de/\"/></ruleset>", "<ruleset name=\"TU-Dresden.de (partial)\" f=\"TU-Dresden.de.xml\"><securecookie host=\"^dudle\\.inf\\.tu-dresden\\.de$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?iai\\.)?inf\\.tu-dresden\\.de/\" to=\"https://www.inf.tu-dresden.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TU I TAM\" platform=\"mixedcontent\" f=\"TU-I-TAM.xml\"><securecookie host=\"^(?:.*\\.)?tuitam\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TU-Ilmenau.de\" f=\"TU-Ilmenau.de.xml\"><securecookie host=\"^\\.www(?:test)?\\.tu-ilmenau\\.de$\" name=\"^fe_typo_user$\"/><rule from=\"^http://(?:www(test)?\\.)?tu-ilmenau\\.de/\" to=\"https://www$1.tu-ilmenau.de/\"/></ruleset>", "<ruleset name=\"TUE.nl (partial)\" f=\"TUE.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TUGRaz.at (partial)\" f=\"TUGraz.at.xml\"><exclusion pattern=\"^http://portal\\.tugraz\\.at/+(?!tugraz/sso/login\\?site2pstoretoken=)\"/><rule from=\"^http://(analytics|www\\.campusonline|dav-id|donation|jce\\.iaik|online|portal|sso|tu4u)\\.tugraz\\.at/\" to=\"https://$1.tugraz.at/\"/><rule from=\"^http://tugnet\\.tugraz\\.at/\" to=\"https://portal.tugraz.at/portal/page/portal/zid/netzwerk/\"/><rule from=\"^http://www\\.zid\\.tugraz\\.at/\" to=\"https://portal.tugraz.at/portal/page/portal/zid/\"/><rule from=\"^http://online\\.tu-graz\\.ac\\.at/\" to=\"https://online.tu-graz.ac.at/\"/></ruleset>", "<ruleset name=\"TUHH.de (partial)\" f=\"TUHH.de.xml\"><rule from=\"^http://www\\.tu-hamburg\\.de/\" to=\"https://www.tu-hamburg.de/\"/><rule from=\"^http://(intranet|intranet\\.v|www)\\.tu-harburg\\.de/\" to=\"https://$1.tu-harburg.de/\"/><rule from=\"^http://(intranet|intranet\\.v|www)\\.tuhh\\.de/\" to=\"https://$1.tuhh.de/\"/></ruleset>", "<ruleset name=\"TUT.fi (partial)\" f=\"TUT.fi.xml\"><securecookie host=\"^idp\\.tut\\.fi$\" name=\".+\"/><rule from=\"^http://(www\\.cs|idp)\\.tut\\.fi/\" to=\"https://$1.tut.fi/\"/></ruleset>", "<ruleset name=\"TV.com (broken)\" default_off=\"JS redirects back to HTTP\" f=\"TV.com.xml\"><rule from=\"^http://tv\\.com/\" to=\"https://www.tv.com/\"/><rule from=\"^http://www\\.tv\\.com/\" to=\"https://www.tv.com/\"/></ruleset>", "<ruleset name=\"TV1.eu\" f=\"TV1.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV2.dk (mixed content)\" platform=\"mixedcontent\" f=\"TV2.dk-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV2.dk (partial)\" f=\"TV2.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV4play.se\" default_off=\"failed ruleset test\" f=\"TV4Play.se.xml\"><rule from=\"^http://www\\.tv4play\\.se/\" to=\"https://www.tv4play.se/\"/><rule from=\"^http://tv4play\\.se/\" to=\"https://www.tv4play.se/\"/></ruleset>", "<ruleset name=\"TVBrowser.org\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"TVBrowser.org.xml\"><securecookie host=\"^(?:\\.hilfe\\.)?tvbrowser\\.org$\" name=\".+\"/><rule from=\"^http://(?:(hilfe\\.)|www\\.)?tvbrowser\\.org/\" to=\"https://$1tvbrowser.org/\"/></ruleset>", "<ruleset name=\"TVLine.com\" f=\"TVLine.com.xml\"><rule from=\"^http://www\\.tvline\\.com/\" to=\"https://tvline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TVLinks (partial)\" f=\"TVLinks.xml\"><rule from=\"^http://i\\.tvlim\\.com/\" to=\"https://d2hhnaah6fgxxa.cloudfront.net/\"/><rule from=\"^http://s\\.tvlim\\.com/\" to=\"https://d1fv5i6aszv8fs.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TVNZ\" f=\"TVNZ.xml\"><securecookie host=\"^\\.?tvnz\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://download\\.tvnz\\.co\\.nz/\" to=\"https://images.tvnz.co.nz/\"/><rule from=\"^http://shop\\.tvnz\\.co\\.nz/\" to=\"https://store-prbg35.mybigcommerce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TVNewsCheck.com (partial)\" f=\"TVNewsCheck.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tvnewscheck\\.com/(?!asset/|/?playout/wp-content/|resource/|sites/|sso/)\"/><rule from=\"^http://(?:assets\\.|www\\.)?tvnewscheck\\.com/\" to=\"https://www.tvnewscheck.com/\"/></ruleset>", "<ruleset name=\"TVShow Time.com\" f=\"TVShow_Time.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV Nutt.com (false MCB)\" platform=\"mixedcontent\" f=\"TV_Nutt.com.xml\"><securecookie host=\"^(?:www\\.)?tvnutt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV Tropes (partial)\" default_off=\"webmaster request\" f=\"TV_Tropes.xml\"><rule from=\"^http://static\\.(?:mediatropes\\.info|tvtropes\\.org)/\" to=\"https://gp1.wac.edgecastcdn.net/00A20D/\"/></ruleset>", "<ruleset name=\"TWRP\" f=\"TWRP.xml\"><securecookie host=\"^.*\\.twrp\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TWiT.tv\" f=\"TWiT.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TYPO3.org (false MCB)\" platform=\"mixedcontent\" f=\"TYPO3.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TYPO3.org (partial)\" f=\"TYPO3.xml\"><exclusion pattern=\"^http://flow\\.typo3\\.org/+(?!_Resources/)\"/><securecookie host=\"^\\.\" name=\"^fe_typo_user$\"/><securecookie host=\"^(?!flow\\.).\" name=\".\"/><rule from=\"^http://neos\\.typo3\\.org/+\" to=\"https://www.neos.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TZ.de\" f=\"TZ.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TaDst.com\" f=\"TaDst.com.xml\"><rule from=\"^http://[ac]\\.tadst\\.com/\" to=\"https://c.tadst.com/\"/></ruleset>", "<ruleset name=\"Tableau.com\" f=\"Tableau.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tableau\\.com/\" to=\"https://www.tableau.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taboola (partial)\" f=\"Taboola.xml\"><exclusion pattern=\"^http://trc\\.taboola\\.com/libtrc/\"/><securecookie host=\"^www\\.taboola\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?taboola\\.com/\" to=\"https://www.taboola.com/\"/><rule from=\"^http://(cdn|images|netstorage|trc)\\.taboola\\.com/\" to=\"https://$1.taboola.com/\"/></ruleset>", "<ruleset name=\"Taboolasyndication.com (partial)\" f=\"Taboolasyndication.com.xml\"><rule from=\"^http://cdn\\.taboolasyndication\\.com/\" to=\"https://cdn.taboola.com/\"/></ruleset>", "<ruleset name=\"Tachanka.org\" f=\"Tachanka.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tactical Tech.org (partial)\" f=\"Tactical_Tech.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tada.com\" platform=\"mixedcontent\" f=\"Tada.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tag1 Consulting.com\" f=\"Tag1_Consulting.com.xml\"><securecookie host=\"^\\.tag1consulting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TagCommander.com (partial)\" f=\"TagCommander.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TagMan (partial)\" f=\"TagMan.xml\"><securecookie host=\"^admin\\.tagman\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.tagman\\.com/\" to=\"https://admin.tagman.com/\"/></ruleset>", "<ruleset name=\"Tagasauris.com\" f=\"Tagasauris.com.xml\"><securecookie host=\"^(?:photo)?\\.tagasauris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TagesWoche\" f=\"TagesWoche.xml\"><rule from=\"^http://tageswoche\\.ch/\" to=\"https://www.tageswoche.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tagesanzeiger.ch (partial)\" f=\"Tagesanzeiger.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tagged.com\" f=\"Tagged.com.xml\"><securecookie host=\"^(?:support)?\\.tagged\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tahoe-LAFS.org\" f=\"Tahoe-LAFS.xml\"><securecookie host=\"^(?:www\\.)?tahoe-lafs\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taiga.io\" f=\"Taiga.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tailgaters Parking.com\" f=\"Tailgaters_Parking.com.xml\"><securecookie host=\"^(?:w*\\.)?tailgatersparking\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tailor Made Answers\" f=\"Tailor-Made-Answers.xml\"><rule from=\"^http://(?:www\\.)?tailormadeanswers\\.com/\" to=\"https://tailormadeanswers.com/\"/></ruleset>", "<ruleset name=\"Take Control Ebooks\" f=\"Take_Control_Ebooks.xml\"><securecookie host=\"^(?:.*\\.)?takecontrolbooks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Takeaway.com\" f=\"Takeaway.com.xml\"><securecookie host=\"^(?:www\\.)?takeaway\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Takuu-Säätiö\" f=\"Takuu-Saatio.xml\"><rule from=\"^http://(?:www\\.)?takuu-saatio\\.fi/\" to=\"https://takuu--saatio-fi.directo.fi/\"/><rule from=\"^http://takuu--saatio-fi\\.directo\\.fi/\" to=\"https://takuu--saatio-fi.directo.fi/\"/></ruleset>", "<ruleset name=\"tal.de\" f=\"Tal.de.xml\"><securecookie host=\"^(?:api|backup|mysql\\d\\d|service|webmail|winbackup|xvp)\\.tal\\.de$\" name=\".+\"/><rule from=\"^http://(api|backup|mysql\\d\\d|service|webmail|winbackup|xvp)\\.tal\\.de/\" to=\"https://$1.tal.de/\"/></ruleset>", "<ruleset name=\"Talemetry.com (problematic)\" default_off=\"self-signed\" f=\"Talemetry.com-problematic.xml\"><securecookie host=\"^\\.talemetry(?:today)?\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tale(?:metry|nttech)\\.com/\" to=\"https://talemetry.com/\"/><rule from=\"^http://(?:www\\.)?talemetrytoday\\.com/\" to=\"https://www.talemetrytoday.com/\"/></ruleset>", "<ruleset name=\"Talemetry.com (partial)\" default_off=\"failed ruleset test\" f=\"Talemetry.com.xml\"><securecookie host=\"^(?:\\.careers|login)\\.talemetry\\.com$\" name=\".+\"/><rule from=\"^http://(careers|login)\\.talemetry\\.com/\" to=\"https://$1.talemetry.com/\"/><rule from=\"^http://ttc\\.talenttech\\.com/(cs|image|j|r)s/\" to=\"https://na-k.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"TalentSmart.com (partial)\" f=\"TalentSmart.com.xml\"><exclusion pattern=\"^http://www\\.talentsmart\\.com/+(?!css/|eia360(?:$|[?/])|eiqb2/|favicon\\.ico|images/|member(?:/*$|/*\\?|/+(?:login|passretr|register)\\.php)|mev2/|mrv2/refined/+(?:admin|passretr)\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talentopoly.com (partial)\" f=\"Talentopoly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taleo.net (partial)\" f=\"Taleo.net.xml\"><securecookie host=\"^(?:oracle|(?:.+\\.)?tbe)\\.taleo\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taleo.com (partial)\" f=\"Taleo.xml\"><rule from=\"^http://(?:www\\.)?taleo\\.com/$\" to=\"https://www.oracle.com/us/products/applications/taleo/overview/index.html\"/></ruleset>", "<ruleset name=\"Talgov.com\" f=\"Talgov.com.xml\"><securecookie host=\"^(?:www\\.)?talgov\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talk Active (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Talk-Active-mismatches.xml\"><securecookie host=\"^web10\\.dk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?talkactive\\.net/\" to=\"https://talkactive.net/\"/><rule from=\"^http://(?:www\\.)?web10\\.dk/\" to=\"https://web10.dk/\"/></ruleset>", "<ruleset name=\"Talk Active (partial)\" f=\"Talk-Active.xml\"><securecookie host=\"^webmail\\.talkactive\\.net$\" name=\".*\"/><rule from=\"^http://web(12|mail)\\.talkactive\\.net/\" to=\"https://web$1.talkactive.net/\"/></ruleset>", "<ruleset name=\"TalkTalk-Labs.com\" default_off=\"503\" f=\"TalkTalk-Labs.com.xml\"><rule from=\"^http://(?:www\\.)?talktalk-labs\\.com/\" to=\"https://www.talktalk-labs.com/\"/></ruleset>", "<ruleset name=\"TalkTalk (mismatches)\" default_off=\"mismatch\" f=\"TalkTalk-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?talktalktechnology\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?talktalktechnology\\.com/\" to=\"https://www.talktalktechnology.com/\"/></ruleset>", "<ruleset name=\"TalkTalk.co.uk (partial)\" f=\"TalkTalk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TalkTalk Business.co.uk\" f=\"TalkTalk_Business.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"talkhealth partnership.com\" f=\"Talkhealth_partnership.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talking French\" default_off=\"failed ruleset test\" f=\"Talking_French.xml\"><rule from=\"^http://talkingfrench\\.com/\" to=\"https://www.talkingfrench.com/\"/><rule from=\"^http://([^/:@]+)?\\.talkingfrench\\.com/\" to=\"https://$1.talkingfrench.com/\"/></ruleset>", "<ruleset name=\"Talking Points Memo.com (partial)\" f=\"Talking_Points_Memo.com.xml\"><rule from=\"^http://cdn1\\.talkingpointsmemo\\.com/\" to=\"https://d2lix3jnlp95fq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Talkoclock.com (partial)\" default_off=\"expired\" f=\"Talkoclock.com.xml\"><securecookie host=\"^www\\.talkoclock\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?talkoclock\\.com/\" to=\"https://www.talkoclock.com/\"/></ruleset>", "<ruleset name=\"Talky.io\" f=\"Talky.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tallinn University of Technology\" default_off=\"expired, self-signed\" f=\"Tallinn-University-of-Technology.xml\"><securecookie host=\"^www\\.ioc\\.ee$\" name=\".*\"/><securecookie host=\"^ttu\\.ee$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ioc\\.ee/\" to=\"https://www.ioc.ee/\"/><rule from=\"^http://(?:www\\.)?ttu\\.ee/\" to=\"https://ttu.ee/\"/></ruleset>", "<ruleset name=\"Tampa Bay.com (partial)\" f=\"Tampa_Bay.com.xml\"><exclusion pattern=\"^http://www\\.tampabay\\.com/+(?!(?:404\\.page|bay|cars|company|edeals|homes|jobs|marketplace|mediakit|postad|publication|search|shopping|subscribe|tb-two)(?:$|[?/])|components/|favicon\\.ico|iwov-resources/|media/|resources/|specials/$|universal/(?:css|graphics|images|media|nav|static)/|wunderground/)\"/><securecookie host=\"^\\.tampabay\\.com$\" name=\"^s_\\w\\w(?:_.*)?$\"/><rule from=\"^http://(home|job)s\\.tampabay\\.com/+(?:\\?.*)?$\" to=\"https://www.tampabay.com/$1s/\"/><rule from=\"^http://(placead\\.|www\\.)?tampabay\\.com/\" to=\"https://$1tampabay.com/\"/></ruleset>", "<ruleset name=\"Tampa Bay Sod.com\" f=\"Tampa_Bay_Sod.com.xml\"><rule from=\"^http://(www\\.)?tampabaysod\\.com/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1tampabaysod.com/\"/></ruleset>", "<ruleset name=\"Tampermonkey.net\" f=\"Tampermonkey.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^forum\\.tampermonkey\\.net$\" name=\".+\"/></ruleset>", "<ruleset name=\"TanCity.de\" default_off=\"failed ruleset test\" f=\"TanCity.de.xml\"><securecookie host=\"^www\\.tancity\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tancity\\.de/\" to=\"https://www.tancity.de/\"/></ruleset>", "<ruleset name=\"Tandem Calendar\" f=\"Tandem_Calendar.xml\"><securecookie host=\".+\\.intand\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?tandemcal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tandlakarforbundet.se\" default_off=\"failed ruleset test\" f=\"Tandlakarforbundet.se.xml\"><rule from=\"^http://tandlakarforbundet\\.se/\" to=\"https://www.tandlakarforbundet.se/\"/><rule from=\"^http://www\\.tandlakarforbundet\\.se/\" to=\"https://www.tandlakarforbundet.se/\"/></ruleset>", "<ruleset name=\"Tandridge.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Tandridge.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tandridge.gov.uk (partial)\" f=\"Tandridge.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tangible Security\" f=\"Tangible-Security.xml\"><securecookie host=\"^(www\\.)?tangiblesecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tango.me (partial)\" f=\"Tango.me.xml\"><exclusion pattern=\"^http://support\\.tango\\.me/(?!favicon\\.ico|images/|system/)\"/><securecookie host=\"^\\.tango\\.me$\" name=\"(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.tango\\.me$\" name=\".+\"/><rule from=\"^http://support\\.tango\\.me/\" to=\"https://tangome.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TankaFetast.com\" f=\"TankaFetast.com.xml\"><securecookie host=\"^(?:w*\\.)?tankafetast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tanomail.com\" f=\"Tanomail.com.xml\"><securecookie host=\"^(?:tnbc|www)\\.tanomail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tante.cc\" f=\"Tante.cc.xml\"><securecookie host=\"^(connected\\.)?tante\\.cc$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:connected\\.)?tante\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tao Effect.com\" f=\"Tao_Effect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao.com (MCB)\" platform=\"mixedcontent\" f=\"Taobao.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao.com (partial)\" f=\"Taobao.xml\"><securecookie host=\"^\\.taobao\\.com$\" name=\"^ali_ab$\"/><securecookie host=\"^(?:bgt|caipiao|\\.login\\.m|mm|re|mosaic\\.re|temai)\\.taobao\\.com$\" name=\".+\"/><rule from=\"^http://global\\.taobao\\.com/\" to=\"https://g.taobao.com/\"/><rule from=\"^http://logo\\.taobao\\.com/\" to=\"https://img.alicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao CDN.com (partial)\" f=\"Taobao_CDN.com.xml\"><rule from=\"^http://assets\\.taobaocdn\\.com/\" to=\"https://s.tbcdn.cn/\"/><rule from=\"^http://img(?:0\\d)?\\.taobaocdn\\.com/\" to=\"https://img.alicdn.com/\"/></ruleset>", "<ruleset name=\"Tapad (partial)\" f=\"Tapad.xml\"><securecookie host=\"^\\.tapad\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tapatalk.com\" f=\"Tapatalk.xml\"><securecookie host=\"^tapatalk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tape.tv\" f=\"Tape.tv.xml\"><securecookie host=\"^\\.tape\\.tv$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tapgage\" default_off=\"failed ruleset test\" f=\"Tapgage.xml\"><securecookie host=\"^www\\.tapgage\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tapiture.com (partial)\" f=\"Tapiture.com.xml\"><securecookie host=\"^\\.tapiture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tar-jx.bz\" f=\"Tar-jx.bz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terasic.com.tw (partial)\" f=\"Tarasic.com.tw.xml\"><exclusion pattern=\"^http://terasic\\.com\\.tw/+[^?]\"/><securecookie host=\"^www\\.terasic\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?terasic\\.com\\.tw/\" to=\"https://www.terasic.com.tw/\"/></ruleset>", "<ruleset name=\"Target (partial) \" f=\"Target.xml\"><exclusion pattern=\"^http://m-beta-secure\\.target\\.com/\"/><securecookie host=\"^\\.m-secure\\.target\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.target\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+-secure(?:-perf|-stg)?|(?:images-)?babycatalog|(?:baby|m\\.baby|home|patio|toys|wedding)\\.catalogs|college|corporate(?:-admin)?|health|microsites|mrcam|secureconnect|sites|tgtfiles)\\.target\\.com/\" to=\"https://$1.target.com/\"/><rule from=\"^http://m\\.target\\.com/\" to=\"https://m-secure.target.com/\"/><rule from=\"^http://([\\w-]+)-secure(-perf|-stg)?\\.targetimg(\\d)\\.com/\" to=\"https://$1-secure$2.targetimg$3.com/\"/><rule from=\"^http://img(\\d)\\.targetimg\\d\\.com/\" to=\"https://img$1-secure.targetimg$1.com/\"/><rule from=\"^http://static\\.targetimg1\\.com/\" to=\"https://static.targetimg1.com/\"/></ruleset>", "<ruleset name=\"Targeting Performance\" f=\"Target_Performance.xml\"><rule from=\"^http://ad\\.ad-srv\\.net/\" to=\"https://ad.ad-srv.net/\"/><rule from=\"^http://(n2|n34)\\.ad\\.ad-srv\\.net/\" to=\"https://$1.ad-srv.net/\"/></ruleset>", "<ruleset name=\"Targeted Threats.net\" f=\"Targeted_Threats.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taringa (partial)\" default_off=\"failed ruleset test\" f=\"Taringa.xml\"><rule from=\"^http://(?:(?:l|o1)\\.r26\\.net|i\\.t\\.net\\.ar)/\" to=\"https://l.r26.net/\"/><rule from=\"^http://(?:www\\.)?taringa\\.net/(login|recuperar-(?:clave|nick)|registro(?:-reenviar)?)($|\\?|/)\" to=\"https://www.taringa.net/$1$2\"/></ruleset>", "<ruleset name=\"Tarlogic.com\" f=\"Tarlogic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tarsnap\" f=\"Tarsnap.xml\"><rule from=\"^http://(?:www\\.)?tarsnap\\.com/\" to=\"https://www.tarsnap.com/\"/></ruleset>", "<ruleset name=\"Taschenorakel.de\" default_off=\"expired\" platform=\"cacert\" f=\"Taschenorakel.de.xml\"><rule from=\"^http://(?:www\\.)?taschenorakel\\.de/\" to=\"https://taschenorakel.de/\"/></ruleset>", "<ruleset name=\"TaskCluster.net (partial)\" f=\"TaskCluster.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Task Force on Shale Gas.uk\" f=\"Task_Force_on_Shale_Gas.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taskforce.is\" f=\"Taskforce.is.xml\"><securecookie host=\"^\\.taskforce\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taskwarrior (partial)\" f=\"Taskwarrior.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taste of the North End\" default_off=\"mismatch\" f=\"Taste-of-the-North-End.xml\"><rule from=\"^http://(?:www\\.)?tasteofthenorthend\\.org/\" to=\"https://tasteofthenorthend.org/\"/></ruleset>", "<ruleset name=\"TasteKid.com\" f=\"TasteKid.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.tastekid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TataSky\" f=\"TataSky.xml\"><rule from=\"^http://www\\.mytatasky\\.com/\" to=\"https://www.mytatasky.com/\"/></ruleset>", "<ruleset name=\"Tate Publishing.com\" f=\"Tate_Publishing.com.xml\"><securecookie host=\"^(?:www\\.)?tatepublishing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TauCeti.org.au\" f=\"TauCeti.org.au.xml\"><rule from=\"^http://www\\.tauceti\\.org\\.au/\" to=\"https://www.tauceti.org.au/\"/></ruleset>", "<ruleset name=\"Tau Day.com\" default_off=\"mismatched\" f=\"Tau_Day.com.xml\"><securecookie host=\"^tauday\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tauday\\.com/\" to=\"https://www.tauday.com/\"/></ruleset>", "<ruleset name=\"Taunton Deane.gov.uk (partial)\" f=\"Taunton_Deane.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consultldf\\.tauntondeane\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://tauntondeane.objective.co.uk/portal\"/><rule from=\"^http://consultldf\\.tauntondeane\\.gov\\.uk/\" to=\"https://tauntondeane.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tawk.to\" f=\"TawkTo.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TaxPayers' Alliance\" default_off=\"failed ruleset test\" f=\"TaxPayers_Alliance.xml\"><securecookie host=\"(?:www)?\\.taxpayersalliance\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?taxpayersalliance\\.com/\" to=\"https://www.taxpayersalliance.com/\"/></ruleset>", "<ruleset name=\"Tb.cn\" default_off=\"missing certificate chain\" f=\"Tb.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TbCDN.cn\" f=\"TbCDN.cn.xml\"><rule from=\"^http://a\\.tbcdn\\.cn/\" to=\"https://s.tbcdn.cn/\"/><rule from=\"^http://g\\.tbcdn\\.cn/\" to=\"https://g.alicdn.com/\"/><rule from=\"^http://img3\\.tbcdn\\.cn/\" to=\"https://img.alicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tbib.org\" f=\"Tbib.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TblSft.com\" f=\"TblSft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tchibo\" f=\"Tchibo.xml\"><rule from=\"^http://(?:www\\.)?tchibo\\.de/\" to=\"https://www.tchibo.de/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.ch/\" to=\"https://www.tchibo.ch/\"/><rule from=\"^http://(?:www\\.)?fr\\.tchibo\\.ch/\" to=\"https://www.fr.tchibo.ch/\"/><rule from=\"^http://(?:www\\.)?eduscho\\.at/\" to=\"https://www.eduscho.at/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.sk/\" to=\"https://www.tchibo.sk/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.com\\.tr/\" to=\"https://www.tchibo.com.tr/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.pl/\" to=\"https://www.tchibo.pl/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.cz/\" to=\"https://www.tchibo.cz/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.hu/\" to=\"https://www.tchibo.hu/\"/><rule from=\"^http://(?:www\\.)?tchibo-ideas\\.de/\" to=\"https://www.tchibo-ideas.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcl.tk (mixedcontent)\" platform=\"mixedcontent\" f=\"Tcl.tk-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcl.tk (partial)\" f=\"Tcl.tk.xml\"><exclusion pattern=\"^http://(?:www\\.)?tcl\\.tk/+(?!devsite\\.css|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcodevelopment.com\" default_off=\"invalid certificate\" f=\"Tcodevelopment.com.xml\"><rule from=\"^http://(?:www\\.)?tcodevelopment\\.com/\" to=\"https://www.tcodevelopment.com/\"/></ruleset>", "<ruleset name=\"Tdesktop.com\" f=\"Tdesktop.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tdnam.com\" f=\"Tdnam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeX Users Group\" f=\"TeX-Users-Group.xml\"><rule from=\"^http://(?:www\\.)?tug\\.org/\" to=\"https://www.tug.org/\"/></ruleset>", "<ruleset name=\"Tea Party Patriots\" f=\"Tea-Party-Patriots.xml\"><securecookie host=\"^www\\.teapartypatriots\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?teapartypatriots\\.org/\" to=\"https://www.teapartypatriots.org/\"/></ruleset>", "<ruleset name=\"Teachers Assurance\" f=\"Teachers_Assurance.xml\"><securecookie host=\".+\\.teachersassurance\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://teachersassurance\\.co\\.uk/.*\" to=\"https://www.teachersassurance.co.uk/\"/><rule from=\"^http://(customer|securevpn|www)\\.teachersassurance\\.co\\.uk/\" to=\"https://$1.teachersassurance.co.uk/\"/></ruleset>", "<ruleset name=\"Teacups and Trinkets.co.uk\" f=\"Teacups_and_Trinkets.co.uk.xml\"><securecookie host=\"^(?:w*\\.)?teacupsandtrinkets\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teads.tv (partial)\" f=\"Teads.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tealium (partial)\" f=\"Tealium.xml\"><rule from=\"^http://my\\.tealiumiq\\.com/\" to=\"https://my.tealiumiq.com/\"/><rule from=\"^http://tags\\.tiqcdn\\.com/\" to=\"https://tags.tiqcdn.com/\"/></ruleset>", "<ruleset name=\"team-share.net\" f=\"Team-share.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeamBoard.com\" f=\"TeamBoard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeamForge.net (partial)\" f=\"TeamForge.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team Cymru\" f=\"Team_Cymru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team Gaslight.com\" f=\"Team_Gaslight.com.xml\"><rule from=\"^http://www\\.teamgaslight\\.com/\" to=\"https://teamgaslight.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team in Training.org (partial)\" f=\"Team_in_Training.org.xml\"><securecookie host=\"^www\\.teamintraining\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?teamintraining\\.org/\" to=\"https://www.teamintraining.org/\"/></ruleset>", "<ruleset name=\"Teamtailor.com (partial)\" f=\"Teamtailor.com.xml\"><exclusion pattern=\"^http://paradox-interactive\\.teamtailor\\.com/$\"/><securecookie host=\"^\\.teamtailor\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".+\\.teamtailor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamviewer.com\" f=\"Teamviewer.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamweek.com (partial)\" f=\"Teamweek.com.xml\"><securecookie host=\"^\\.new\\.teamweek\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamxlink\" default_off=\"Cert warning\" f=\"Teamxlink.xml\"><rule from=\"^http://(?:www\\.)?teamxlink\\.co\\.uk/\" to=\"https://www.teamxlink.co.uk/\"/></ruleset>", "<ruleset name=\"TeardownIQ.com\" f=\"TeardownIQ.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech-Recipes\" default_off=\"mismatch, self-signed\" f=\"Tech-Recipes.xml\"><securecookie host=\"^www\\.tech-recipes\\.com$\" name=\".*\"/><rule from=\"^http://(?:cloud\\.|www\\.)?tech-recipes\\.com/\" to=\"https://www.tech-recipes.com/\"/></ruleset>", "<ruleset name=\"TechEmpower.com\" f=\"TechEmpower.com.xml\"><rule from=\"^http://techempower\\.com/\" to=\"https://www.techempower.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechEnclave.com\" f=\"TechEnclave.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechFreedom.org\" default_off=\"connection refused\" f=\"TechFreedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechHouse\" f=\"TechHouse.xml\"><securecookie host=\"^(?:.+\\.)?techhouse\\.org$\" name=\".*\"/><rule from=\"^http://techhouse\\.org/\" to=\"https://techhouse.org/\"/><rule from=\"^http://(www)\\.techhouse\\.org/\" to=\"https://$1.techhouse.org/\"/></ruleset>", "<ruleset name=\"TechOnline.com (partial)\" f=\"TechOnline.com.xml\"><rule from=\"^http://media\\.techonline\\.com/\" to=\"https://dpzfphvq26nxh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TechPresident.com\" default_off=\"expired\" f=\"TechPresident.com.xml\"><securecookie host=\"^\\.techpresident\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechRepublic.com (problematic)\" default_off=\"mismatched\" f=\"TechRepublic.com-problematic.xml\"><securecookie host=\"^www\\.techrepublic\\.com$\" name=\".+\"/><rule from=\"^http://www\\.techrepublic\\.com/\" to=\"https://www.techrepublic.com/\"/></ruleset>", "<ruleset name=\"TechRepublic.com (partial)\" default_off=\"failed ruleset test\" f=\"TechRepublic.xml\"><exclusion pattern=\"^http://www\\.techrepublic\\.com/(?!.+\\.(?:ico|jpg|png)(?:$|[?/]))\"/><securecookie host=\"^secure\\.techrepublic\\.com$\" name=\".+\"/><rule from=\"^http://www\\.techrepublic\\.com/\" to=\"https://techrepublic-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechSay.com\" f=\"TechSay.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechTarget (mismatches)\" default_off=\"self-signed\" f=\"TechTarget-mismatches.xml\"><rule from=\"^http://(www\\.)?search(cloudcomputing|datacenter|networking|security|storage)\\.de/\" to=\"https://www.search$2.de/\"/><securecookie host=\"^www\\.search(?:cloudcomputing|datacenter|networking|security|storage)\\.de$\" name=\".*\"/></ruleset>", "<ruleset name=\"TechTarget (partial)\" default_off=\"failed ruleset test\" f=\"TechTarget.xml\"><securecookie host=\"^(?:media|techtargetsummit|www)\\.techtarget\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techtarget\\.com/\" to=\"https://www.techtarget.com/\"/><rule from=\"^http://(media|techtargetsummit)\\.techtarget\\.com/\" to=\"https://$1.techtarget.com/\"/></ruleset>", "<ruleset name=\"TechVerse (partial)\" f=\"TechVerse.xml\"><rule from=\"^http://(?:www\\.)?techverse\\.com\\.au/(chat/|images/|index\\.php\\?(?:.+&)?_a=(?:login|reg)|language/|skins/)\" to=\"https://techverse.com.au/$1\"/></ruleset>", "<ruleset name=\"TechWeb (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TechWeb.xml\"><securecookie host=\"^store\\.drdobbs\\.com$\" name=\".+\"/><securecookie host=\"^ng\\.techweb\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?techwebonlineevents\\.com$\" name=\".*\"/><rule from=\"^http://store\\.drdobbs\\.com/\" to=\"https://store.drdobbs.com/\"/><rule from=\"^http://(i|login|ng)\\.techweb\\.com/\" to=\"https://$1.techweb.com/\"/><rule from=\"^http://(www\\.)?gamasutra\\.com/(blogs/edit/img/|css/|(?:comments/|content/blogs/)?\\w+\\.css|game_sites_superfooter_2012/|(?:db_area/)?images/)\" to=\"https://$1gamasutra.com/$2\"/><rule from=\"^http://img\\.lightreading\\.com/\" to=\"https://d2x7anl33w5mmo.cloudfront.net/\"/><rule from=\"^http://payment\\.lightreading\\.com/\" to=\"https://payment.lightreading.com/\"/><rule from=\"^http://(?:www\\.)?techwebonlineevents\\.com/\" to=\"https://www.techwebonlineevents.com/\"/><rule from=\"^http://twimgs\\.com/\" to=\"https://twimgs.com/\"/></ruleset>", "<ruleset name=\"TechXpress.net (partial)\" f=\"TechXpress.net.xml\"><securecookie host=\"^(?:(?:emailmarketing|mail|support|xm)?\\.)?techxpress\\.net$\" name=\".+\"/><rule from=\"^http://www\\.techxpress\\.net/\" to=\"https://techxpress.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Journey.net\" f=\"Tech_Journey.net.xml\"><securecookie host=\"^(?:www\\.)?techjourney\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Tools for Activism.org\" f=\"Tech_Tools_for_Activism.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech in Asia.com\" f=\"Tech_in_Asia.com.xml\"><securecookie host=\"^(?:www\\.)?techinasia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techdirt.com\" f=\"Techdirt.xml\"><securecookie host=\"^(?:www)?\\.techdirt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techendo.com\" f=\"Techendo.com.xml\"><securecookie host=\"^\\.techendo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techendo\\.com/\" to=\"https://www.techendo.com/\"/><rule from=\"^http://(beta|store)\\.techendo\\.com/\" to=\"https://$1.techendo.com/\"/></ruleset>", "<ruleset name=\"Techidiots.net (partial)\" f=\"Techidiots.xml\"><securecookie host=\"^\\.forum\\.techidiots\\.net$\" name=\".*\"/><rule from=\"^http://techidiots\\.net/\" to=\"https://www.techidiots.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techmeme.com\" default_off=\"failed ruleset test\" f=\"Techmeme.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technet.com (broken)\" default_off=\"broken\" f=\"Technet.com.xml\"><securecookie host=\"^blogs\\.technet\\.com$\" name=\".*\"/><rule from=\"^http://blogs\\.technet\\.com/(.*(?:\\.aspx|\\.xml|/))?$\" to=\"https://blogs.technet.com/$1?Redirected=true\"/><rule from=\"^http://blogs\\.technet\\.com/\" to=\"https://blogs.technet.com/\"/><rule from=\"^http://(?:i\\d?)\\.blogs\\.technet\\.com/\" to=\"https://blogs.technet.com/\"/></ruleset>", "<ruleset name=\"DTU.dk (partial)\" f=\"Technical-University-of-Denmark.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:(?:compute|space)\\.)?dtu\\.dk/+(?!-/media/|gimage\\.ashx|images/)\"/><securecookie host=\"^(?:backend\\.alumnenet|auth|nemid|(?:www\\.)?portalen)\\.dtu\\.dk$\" name=\".+\"/><rule from=\"^http://(space\\.)?dtu\\.dk/\" to=\"https://www.$1dtu.dk/\"/><rule from=\"^http://www\\.portalen\\.dtu\\.dk/\" to=\"https://portalen.dtu.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technical University of Lisbon (self-signed)\" default_off=\"self-signed\" f=\"Technical-University-of-Lisbon-Darkstar.xml\"><rule from=\"^http://(darkstar|tecnica)\\.ist\\.utl\\.pt/\" to=\"https://$1.ist.utl.pt/\"/></ruleset>", "<ruleset name=\"Technical University of Lisbon\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Technical-University-of-Lisbon.xml\"><rule from=\"^http://(www\\.)?(ist\\.|rnl\\.ist\\.)?utl\\.pt/\" to=\"https://www.$2utl.pt/\"/><rule from=\"^http://ftp\\.rnl\\.ist\\.utl\\.pt/\" to=\"https://ftp.rnl.ist.utl.pt/\"/></ruleset>", "<ruleset name=\"Technical.ly (partial)\" f=\"Technical.ly.xml\"><exclusion pattern=\"^http://(?:www\\.)?technical\\.ly/(?:$|\\?|\\d{4}/\\d\\d/\\d\\d/|about|advertising|category|contact-us|directory|ethics|jobs|organization|post-a-job)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technical Community.com\" f=\"Technical_Community.com.xml\"><securecookie host=\"^www\\.technicalcommunity\\.com$\" name=\".+\"/><rule from=\"^http://technicalcommunity\\.com/\" to=\"https://www.technicalcommunity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technical University Munich (partial)\" f=\"Technical_University_Munich.xml\"><securecookie host=\"^(?:in|(?:adm9|ias|sec|www)\\.in|mediatum\\.ub|www(?:\\.lehren?)?)?\\.tum\\.de$\" name=\".+\"/><securecookie host=\"^ias\\.cs\\.tum\\.edu$\" name=\".+\"/><securecookie host=\"^(?:www|ias\\.informatik)\\.tu-muenchen\\.de$\" name=\".+\"/><rule from=\"^http://www(\\.lehren?|\\.piwik)?\\.tum\\.de/\" to=\"https://www$1.tum.de/\"/><rule from=\"^http://((?:(?:ias|sec|www|www21)\\.)?in|mediatum\\.ub)\\.tum\\.de/\" to=\"https://$1.tum.de/\"/><rule from=\"^http://ias\\.cs\\.tum\\.edu/\" to=\"https://ias.cs.tum.edu/\"/><rule from=\"^http://((?:ias|mailmanbroy)\\.informatik|www)\\.tu-muenchen\\.de/\" to=\"https://$1.tu-muenchen.de/\"/><rule from=\"^http://isabelle\\.in\\.tum\\.de/\" to=\"https://isabelle.in.tum.de/\"/></ruleset>", "<ruleset name=\"Techniker Krankenkasse\" f=\"Techniker-Krankenkasse.xml\"><rule from=\"^http://(?:www\\.)?tk\\.de/\" to=\"https://www.tk.de/\"/></ruleset>", "<ruleset name=\"Technische Universität Berlin (partial)\" f=\"Technische_Universitat_Berlin.xml\"><securecookie host=\"^\\.tu-berlin\\.de$\" name=\"^fe_typo_user$\"/><securecookie host=\"^(?:www\\.alumni|exchange|mail|\\.horde-test\\.tubit|\\.webmail)\\.tu-berlin\\.de$\" name=\".+\"/><rule from=\"^http://(mailbox\\.alumni|(?:www\\.)?chemie|exchange|mail|mailbox|(?:www\\.)?mig|(?:(?:aagw|horde-test|wlan|www)\\.)?tubit|webmail|www)\\.tu-berlin\\.de/\" to=\"https://$1.tu-berlin.de/\"/><rule from=\"^http://www\\.(ab|accounting|agrs|aio|ak|angewbiochem|antennen-emv|arbeits-umweltschutz|alumni|architektur|auslandsamt|auslandsamt|avstudiofak1|avt|aw|ba|bahnsysteme|bau|bauinformatik|bauprozessmodelle|baustoffe|becap|behindertenberatung|betreuung-int-stud|bioanorganik|biodiv|bioenergetik|biophys-chemie|biopsych|biotech|boden|bodenkunde|brauwesen|campusradio|career|china|cit|clw|cognition|cv|daf|dbta|dima|eecs|ek-massivbau|ek-stahlbau|ek-verbundstrukturen|elv|energie|energietechnik|energiewirtschaft|energy|ensys|enzymtechnologie|evur|explorationsgeologie|facilities|fak\\d|finance|finanzen|finanzierung|flp|fsd|fsp-wib|geo|geolab|geophysik|geschichte|geschundkunstgesch|ginut|gkwi|glas|gsw|heclinet|hft|histurbanistik|hlb|ht|humanfactors|hydrogeologie|ic|iea|ifkp|iit|ikm|ils|immatrikulation|impetus|ingenieurgeologie|int-admission|ioap|ipa|isti|itp|iz-wib|kbs|kfz|ki|kke|km|kpl|kup|kw|la|lehrerbildung|li|literaturwissenschaft|logistik|marketing|marsys|math|medtech|mineralogie|ml|move-it|mrt|mtv|musikwissenschaft|mwt|nachwuchsbuero|naturwissenschaften|planen-bauen-umwelt|wm)\\.tu-berlin\\.de/\" to=\"https://www.$1.tu-berlin.de/\"/><rule from=\"^http://autodiscover\\.tu-berlin\\.de/\" to=\"https://exchange.tu-berlin.de/\"/></ruleset>", "<ruleset name=\"TechnoPortal.ua (partial)\" f=\"TechnoPortal.ua.xml\"><exclusion pattern=\"^http://i\\.technoportal\\.ua/+(?:$|\\?)\"/><securecookie host=\"^technoportal\\.ua$\" name=\".+\"/><securecookie host=\"^\\.technoportal\\.ua$\" name=\"^(TPFE_(?:event|page|referer)|cookiesAgree)$\"/><rule from=\"^http://i\\.technoportal\\.ua/\" to=\"https://technoportal.ua/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technocrat.net\" f=\"Technocrat.net.xml\"><securecookie host=\"^(?:w*\\.)?technocrat\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechnologyReview.com (partial)\" f=\"TechnologyReview.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http://technologyreview\\.com/\" to=\"https://www.technologyreview.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technolutions.net\" f=\"Technolutions.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technomedia\" f=\"Technomedia.xml\"><securecookie host=\"^www\\.technomedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?technomedia\\.com/\" to=\"https://www.technomedia.com/\"/></ruleset>", "<ruleset name=\"Technorati Media (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"Technorati-Media-problematic.xml\"><rule from=\"^http://(?:www\\.)?technoratimedia\\.com/\" to=\"https://technoratimedia.com/\"/><rule from=\"^http://(?:ad-cdn|uat-net)\\.technoratimedia\\.com/\" to=\"https://uat-net.technoratimedia.com/\"/></ruleset>", "<ruleset name=\"Technorati Media (partial)\" f=\"Technorati-Media.xml\"><rule from=\"^http://ad\\.technoratimedia\\.com/\" to=\"https://ad.rmxads.com/\"/></ruleset>", "<ruleset name=\"Technovelty.org\" f=\"Technovelty.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techopedia.com\" default_off=\"failed ruleset test\" f=\"Techopedia.com.xml\"><securecookie host=\"^(?:cms|www)?\\.techopedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techopedia\\.com/\" to=\"https://www.techopedia.com/\"/><rule from=\"^http://cms\\.techopedia\\.com/\" to=\"https://cms.techopedia.com/\"/></ruleset>", "<ruleset name=\"Techpinions.com\" f=\"Techpinions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techpowerup.com\" f=\"Techpowerup.com.xml\"><rule from=\"^http://(?:www\\.)?techpowerup\\.com/\" to=\"https://www.techpowerup.com/\"/></ruleset>", "<ruleset name=\"The Tech Report (partial)\" f=\"Techreport.com.xml\"><securecookie host=\"^\\.?techreport\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techreport\\.com/\" to=\"https://techreport.com/\"/></ruleset>", "<ruleset name=\"Techslinger.com\" f=\"Techslinger.com.xml\"><securecookie host=\"^www\\.techslinger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"techstats.net\" f=\"Techstats.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techsupportalert\" platform=\"mixedcontent\" f=\"Techsupportalert.xml\"><rule from=\"^http://(?:www\\.)?techsupportalert\\.com/\" to=\"https://www.techsupportalert.com/\"/></ruleset>", "<ruleset name=\"tecnocode.co.uk\" f=\"Tecnocode.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tectonic.com\" f=\"Tectonic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teddy Hyde.com\" default_off=\"expired, mismatched\" f=\"Teddy_Hyde.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teddy Online Judge.net\" default_off=\"missing certificate chain\" f=\"Teddy_Online_Judge.net.xml\"><securecookie host=\"^(?:www\\.)?teddyonlinejudge\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeenDriverSource.org\" default_off=\"failed ruleset test\" f=\"TeenDriverSource.org.xml\"><securecookie host=\"^(?:www\\.)?teendriversource\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teen Revenue.com\" default_off=\"mismatched\" f=\"Teen_Revenue.com.xml\"><securecookie host=\"^nats\\.teenrevenue\\.com$\" name=\".+\"/><rule from=\"^http://(?:nats\\.|www\\.)?teenrevenue\\.com/\" to=\"https://nats.teenrevenue.com/\"/></ruleset>", "<ruleset name=\"Teespring.com (partial)\" f=\"Teespring.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teevox.com\" f=\"Teevox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tehconnection\" default_off=\"failed ruleset test\" f=\"Tehconnection.eu.xml\"><securecookie host=\"^tehconnection\\.eu$\" name=\".*\"/><rule from=\"^http://(?:(static\\.)|www\\.)?tehconnection\\.eu/\" to=\"https://$1tehconnection.eu/\"/></ruleset>", "<ruleset name=\"Tek.no (partial)\" default_off=\"failed ruleset test\" f=\"Tek.no.xml\"><securecookie host=\"^\\.tek\\.no$\" name=\"^CfP$\"/><rule from=\"^http://(static\\.|www\\.)?tek\\.no/\" to=\"https://$1tek.no/\"/><rule from=\"^http://ad\\.tek\\.no/\" to=\"https://adserver.adtech.de/\"/></ruleset>", "<ruleset name=\"TekGoblin\" default_off=\"failed ruleset test\" f=\"TekGoblin.xml\"><rule from=\"^http://(?:(?:\\w+\\.)?tekgoblin|cdn(?:[23])?\\.tekgoblinmedia)\\.com/\" to=\"https://d369bx7nq13k6v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tek Syndicate.com\" f=\"Tek_Syndicate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TelMasters\" f=\"TelMasters.xml\"><securecookie host=\"^(?:www\\.)?telmasters\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TelVue.com\" default_off=\"mismatched\" f=\"TelVue.com.xml\"><rule from=\"^http://(?:www\\.)?telvue\\.com/\" to=\"https://www.telvue.com/\"/></ruleset>", "<ruleset name=\"tele-TASK\" f=\"Tele-TASK.xml\"><rule from=\"^http://tele-task\\.de/[^\\?]*(\\?.*)?\" to=\"https://www.tele-task.de/$1\"/><rule from=\"^http://www\\.tele-task\\.de/\" to=\"https://www.tele-task.de/\"/></ruleset>", "<ruleset name=\"Tele2.lt\" f=\"Tele2.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tele2.se\" f=\"Tele2.se.xml\"><rule from=\"^http://www\\.tele2\\.se/\" to=\"https://www.tele2.se/\"/><rule from=\"^http://tele2\\.se/\" to=\"https://www.tele2.se/\"/></ruleset>", "<ruleset name=\"TeleGeography.com (partial)\" f=\"TeleGeography.com.xml\"><rule from=\"^http://(?:www\\.)?telegeography\\.com/\" to=\"https://www.telegeography.com/\"/></ruleset>", "<ruleset name=\"Telebrands\" f=\"Telebrands.xml\"><securecookie host=\"^(?:www\\.)?telebrands\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telecolumbus\" f=\"Telecolumbus.com.xml\"><securecookie host=\"^(www\\.|ir\\.)?telecolumbus\\.com$\" name=\".+\"/><securecookie host=\"^(www\\.|wohnungsunternehmen\\.)?telecolumbus\\.de$\" name=\".+\"/><securecookie host=\"^(service\\.|webmailer\\.)?telecolumbus\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telecom Industry Dialogue.org\" f=\"Telecom_Industry_Dialogue.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telefónica (mismatches)\" default_off=\"expired, mismatch\" f=\"Telefonica-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?beusergroup\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^survey\\.o2active\\.cz$\" name=\".*\"/><rule from=\"^http://download\\.bethere\\.co\\.uk/\" to=\"https://download.bethere.co.uk/\"/><rule from=\"^http://memberservices\\.beunlimited\\.co\\.uk/\" to=\"https://memberservices.beunlimited.co.uk/\"/><rule from=\"^http://(?:www\\.)?beusergroup\\.co\\.uk/\" to=\"https://beusergroup.co.uk/\"/><rule from=\"^http://obrazky\\.o2active\\.cz/(cs|image)s/\" to=\"https://obrazky.o2active.cz/$1s/\"/><rule from=\"^http://survey\\.o2active\\.cz/\" to=\"https://survey.o2active.cz/\"/></ruleset>", "<ruleset name=\"Telefónica (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Telefonica.xml\"><securecookie host=\"^(?:.*\\.)?bethere\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.(?:chcidoo2|telefonica)\\.cz$\" name=\".*\"/><securecookie host=\"^(?:moje|sso|\\.?www)?\\.o2\\.cz$\" name=\".*\"/><securecookie host=\"^mail\\.o2active\\.cz$\" name=\".*\"/><securecookie host=\"^www\\.o2(?:extra|shop|tv)\\.cz$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?odmenazabobiti\\.cz$\" name=\".*\"/><rule from=\"^http://bethere\\.co\\.uk/\" to=\"https://www.bethere.co.uk/\"/><rule from=\"^http://(avatar|help|www)\\.bethere\\.co\\.uk/\" to=\"https://$1.bethere.co.uk/\"/><rule from=\"^http://(?:www\\.)?(chcidoo2|telefonica)\\.cz/\" to=\"https://www.$1.cz/\"/><rule from=\"^http://windows\\.mouselike\\.org/\" to=\"https://windows.mouselike.org/\"/><rule from=\"^http://(?:(?:www\\.)?cz\\.o2\\.com|o2\\.cz)/\" to=\"https://www.o2.cz/\"/><rule from=\"^http://(moje|www)\\.o2\\.cz/\" to=\"https://$1.o2.cz/\"/><rule from=\"^http://static(2)?\\.o2\\.de/\" to=\"https://static$1.o2.de/\"/><rule from=\"^http://(i|mail)\\.o2active\\.cz/\" to=\"https://$1.o2active.cz/\"/><rule from=\"^http://(?:www\\.)?o2(?:(extra|shop)|(?:-)?(tv))\\.cz/\" to=\"https://www.o2$12.cz/\"/><rule from=\"^http://(www\\.)?odmenazadobiti\\.cz/\" to=\"https://$1odmenazadobiti.cz/\"/><rule from=\"^http://(?:www\\.)?o2\\.co\\.uk/favicon\\.ico\" to=\"https://www.o2.co.uk/favicon.ico\"/><rule from=\"^http://(?:www\\.)?o2\\.sk/\" to=\"https://www.o2.sk/\"/></ruleset>", "<ruleset name=\"Telegr.am\" f=\"Telegr.am.xml\"><securecookie host=\"^telegr\\.am$\" name=\".+\"/><rule from=\"^http://((?:blog|howto|www)\\.)?telegr\\.am/\" to=\"https://$1telegr.am/\"/></ruleset>", "<ruleset name=\"Telegram.com (partial)\" f=\"Telegram.com.xml\"><securecookie host=\"^home\\.telegram\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?telegram\\.com/graphics/(?:header/(frontpageHeader978x136\\.jpg)|nav/(arrv_anim_1\\.gif)|(tg_background_tile\\.gif))\" to=\"https://home.telegram.com/images/$1$2$3\"/><rule from=\"^http://home\\.telegram\\.com/\" to=\"https://home.telegram.com/\"/></ruleset>", "<ruleset name=\"Telegram.me\" f=\"Telegram.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegram.org\" f=\"Telegram.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegraph.co.uk (mismatches)\" default_off=\"expired, mismatched\" f=\"Telegraph-Media-Group-mismatches.xml\"><securecookie host=\"^fashionshop\\.telegraph\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegraph.co.uk (partial)\" f=\"Telegraph-Media-Group.xml\"><exclusion pattern=\"^http://shop\\.telegraph\\.co\\.uk/+(?!$|_imagesDM/|_images[TX]/|DNTEMP/Photos/|account_login\\.cfm|feefo/xmltoxsl/|telegraph\\.css)\"/><securecookie host=\"^\\.(?:\\w+\\.)?telegraph\\.co\\.uk$\" name=\"^(?:tmg_web_trends|__utm\\w)$\"/><securecookie host=\"^(?:announcements|fantasyracing|jobs|recruiters\\.jobs|reporting\\.shop|webtrends)\\.telegraph\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom Malaysia\" f=\"Telekom-Malaysia.xml\"><securecookie host=\"^.*\\.tm\\.com\\.my$\" name=\".+\"/><rule from=\"^http://tm\\.com\\.my/\" to=\"https://www.tm.com.my/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom-Partnerwelt.de\" f=\"Telekom-Partnerwelt.de.xml\"><securecookie host=\"^www\\.telekom-partnerwelt\\.de$\" name=\".+\"/><rule from=\"^http://telekom-partnerwelt\\.de/\" to=\"https://www.telekom-partnerwelt.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom-Profis.de\" f=\"Telekom-Profis.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom-dienste.de\" f=\"Telekom-dienste.de.xml\"><securecookie host=\"^meinkonto\\.telekom-dienste\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom.com (partial)\" f=\"Telekom.com.xml\"><securecookie host=\"^(?:accounts\\.login)?\\.idm\\.telekom\\.com$\" name=\".+\"/><rule from=\"^http://telekom\\.com/\" to=\"https://www.telekom.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom.sk\" default_off=\"failed ruleset test\" f=\"Telekom.sk.xml\"><rule from=\"^http://(?:www\\.)?(?:telekom|telecom|t-com)\\.sk/\" to=\"https://www.telekom.sk/\"/><rule from=\"^http://(mail\\.|zona\\.)(telekom|telecom|t-com)\\.sk/\" to=\"https://$1telekom.sk/\"/></ruleset>", "<ruleset name=\"Telemetry.com\" default_off=\"mismatch\" f=\"Telemetry-mismatches.xml\"><rule from=\"^http://(?:www\\.)?telemetry\\.com/(?=favicon\\.ico|tvspot/|telemetry_site/)\" to=\"https://d25ae8i57rupjv.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?telemetry\\.com/\" to=\"https://www.telemetry.com/\"/></ruleset>", "<ruleset name=\"Telemetry (partial)\" platform=\"mixedcontent\" f=\"Telemetry.xml\"><rule from=\"^http://telemetryverification\\.net/\" to=\"https://www.telemetryverification.net/\"/><rule from=\"^http://([\\w\\-]+)\\.telemetryverification\\.net/\" to=\"https://$1.telemetryverification.net/\"/></ruleset>", "<ruleset name=\"Telenor.se (partial)\" default_off=\"failed ruleset test\" f=\"Telenor.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?telenor\\.se/(?!assets/|favicon\\.ico|images/|js/|privat/stateserver/|published_images/)\"/><securecookie host=\"^minasidor\\.telenor\\.se$\" name=\".+\"/><rule from=\"^http://www\\.euromail\\.se/\" to=\"https://www.euromail.se/\"/><rule from=\"^http://(minasidor\\.|www\\.)?telenor\\.se/\" to=\"https://$1telenor.se/\"/></ruleset>", "<ruleset name=\"Telepigeon.com\" f=\"Telepigeon.com.xml\"><securecookie host=\"^(?:www\\.)?telepigeon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telerik-web-assets.com\" f=\"Telerik-web-assets.com.xml\"><rule from=\"^http://(?:www\\.)?telerik-web-assets\\.com/\" to=\"https://www.telerik-web-assets.com/\"/></ruleset>", "<ruleset name=\"Telerik.com (partial)\" f=\"Telerik.com.xml\"><exclusion pattern=\"^http://blogs\\.telerik\\.com/+(?!Telerik\\.Web\\.UI\\.WebResource\\.axd|images/|prettyPhoto/css/)\"/><exclusion pattern=\"^http://www\\.telerik\\.com/+(?!Telerik\\.Web\\.UI\\.WebResource\\.axd|favicon\\.ico|login(?:$|[?/])|sfimages/)\"/><securecookie host=\"^(?:platform|tfis)\\.telerik\\.com$\" name=\".+\"/><rule from=\"^http://((?:blogs|identity|licenseapi|platform|tfis|www)\\.)?telerik\\.com/\" to=\"https://$1telerik.com/\"/></ruleset>", "<ruleset name=\"Telethon.it (partial)\" f=\"Telethon.it.xml\"><exclusion pattern=\"^http://(?:www\\.)?telethon\\.it/+(?!misc/|modules/|sites/)\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?|_cfduid)$\"/><rule from=\"^http://telethon\\.it/\" to=\"https://www.telethon.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telework.gov.au\" f=\"TeleworkGovAu.xml\"><rule from=\"^http://(?:www\\.)?telework\\.gov\\.au/\" to=\"https://www.telework.gov.au/\"/></ruleset>", "<ruleset name=\"Telex\" f=\"Telex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telfort (partial)\" f=\"Telfort.nl.xml\"><exclusion pattern=\"^http://internet\\.telfort\\.nl/(?!5/css/|5/gfx/)\"/><securecookie host=\"^(?!internet\\.).*\\.telfort\\.nl$\" name=\".+\"/><rule from=\"^http://((?:forum|internet|orderstatus|shop|webmail|www)\\.)?telfort\\.nl/\" to=\"https://$1telfort.nl/\"/><rule from=\"^http://(?:www\\.)?tiscali\\.nl/\" to=\"https://www.telfort.nl/\"/></ruleset>", "<ruleset name=\"Telia.se\" platform=\"mixedcontent\" f=\"Telia.se.xml\"><rule from=\"^http://telia\\.se/\" to=\"https://www.telia.se/\"/><rule from=\"^http://www\\.telia\\.se/\" to=\"https://www.telia.se/\"/></ruleset>", "<ruleset name=\"Telnic\" default_off=\"failed ruleset test\" f=\"Telnic.xml\"><rule from=\"^http://a0\\.webproxy\\.nic\\.tel/\" to=\"https://a0.webproxy.nic.tel/\"/><rule from=\"^http://(?:www\\.)?(?:nic\\.tel|telnic\\.org)/\" to=\"https://www.telnic.org/\"/></ruleset>", "<ruleset name=\"Telstra Corporation (mismatches)\" default_off=\"mismatch\" f=\"Telstra-Corporation-mismatches.xml\"><rule from=\"^http://m\\.sockassist\\.com\\.au/\" to=\"https://m.sockassist.com.au/\"/></ruleset>", "<ruleset name=\"Telstra Corporation (partial)\" default_off=\"failed ruleset test\" f=\"Telstra-Corporation.xml\"><rule from=\"^http://medrx\\.sensis\\.com\\.au/\" to=\"https://medrx.sensis.com.au/\"/><rule from=\"^http://sockassist\\.com\\.au/\" to=\"https://sockassist.com.au/\"/></ruleset>", "<ruleset name=\"Telus (partial)\" f=\"Telus.xml\"><securecookie host=\"^(?:\\.)?(?:www|mobility|mobileidentity|msg|shop)?(?:\\.)?telus\\.com$\" name=\".+\"/><securecookie host=\"^www\\.telushealth\\.co$\" name=\".+\"/><securecookie host=\"^webmail\\.telus\\.net$\" name=\".+\"/><securecookie host=\"^(?:www)?(?:\\.)?telusinternational\\.com$\" name=\".+\"/><rule from=\"^https://telushealth\\.com/\" to=\"https://www.telushealth.com/\"/><rule from=\"^https://telusmobility\\.com/\" to=\"https://www.telusmobility.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Temando.com\" f=\"Temando.com.xml\"><securecookie host=\"^dashboard\\.temando\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Temp Mail\" f=\"Temp-Mail.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Template Monster.com (partial)\" f=\"Template_Monster.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?templatemonster\\.com/(?!cart\\.php|favicon\\.ico|images/|js/|themes/)\"/><securecookie host=\"^\\.templatemonster\\.com$\" name=\"(?:affT?|^__utm\\w)$\"/><securecookie host=\"^\\.?(?:secure|wac)\\.templatemonster\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?templatemonster\\.com/\" to=\"https://secure.templatemonster.com/\"/><rule from=\"^http://scr\\.templatemonster\\.com/\" to=\"https://scrtm-templatemonster.netdna-ssl.com/\"/><rule from=\"^http://wac\\.templatemonster\\.com/\" to=\"https://wac.templatemonster.com/\"/><rule from=\"^http://i\\.tmimgcdn\\.com/\" to=\"https://secure.templatemonster.com/images/\"/><rule from=\"^http://j\\.tmimgcdn\\.com/\" to=\"https://secure.templatemonster.com/js/\"/><rule from=\"^http://t\\.tmimgcdn\\.com/\" to=\"https://themestm-templatemonster.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"TenMarks.com\" f=\"TenMarks.com.xml\"><securecookie host=\"^www\\.tenmarks\\.com$\" name=\"^.+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tenable.com (false MCB)\" platform=\"mixedcontent\" f=\"Tenable.com-falsemixed.xml\"><securecookie host=\"^elearn\\.tenable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tenable.com (partial)\" f=\"Tenable.com.xml\"><exclusion pattern=\"^http://elearn\\.tenable\\.com/+(?!theme/)\"/><securecookie host=\"^(?!elearn)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tendatta.com\" default_off=\"failed ruleset test\" f=\"Tendatta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tangient (partial)\" f=\"Tengient.xml\"><securecookie host=\"^session\\.wikispaces\\.net$\" name=\".+\"/><rule from=\"^http://(?:c1|ssl)\\.wikicdn\\.com/\" to=\"https://ssl.wikicdn.com/\"/><rule from=\"^http://(ssl\\.|www\\.)?wikispaces\\.com/\" to=\"https://$1wikispaces.com/\"/><rule from=\"^http://([\\w\\-]+)\\.wikispaces\\.com/([is]|stylesheet)/\" to=\"https://$1.wikispaces.com/$2/\"/></ruleset>", "<ruleset name=\"Tenon.com\" f=\"Tenon.com.xml\"><rule from=\"^http://(?:www\\.)?tenon\\.com/\" to=\"https://www.tenon.com/\"/></ruleset>", "<ruleset name=\"Tenpay.com (false MCB)\" platform=\"mixedcontent\" f=\"Tenpay.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tenpay.com (partial)\" f=\"Tenpay.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tent.io\" f=\"Tent.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tent.is\" f=\"Tent.is.xml\"><rule from=\"^http://([\\w-]+\\.)?tent\\.is/\" to=\"https://$1tent.is/\"/></ruleset>", "<ruleset name=\"Tenten.vn\" f=\"Tenten.vn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teo\" f=\"Teo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tequipment.NET (partial)\" f=\"Tequipment.NET.xml\"><securecookie host=\"^store\\.tequipment\\.net$\" name=\".+\"/><rule from=\"^http://store\\.tequipment\\.net/\" to=\"https://store.tequipment.net/\"/></ruleset>", "<ruleset name=\"Teracom Consulting\" default_off=\"expired, mismatch\" f=\"Teracom-Consulting.xml\"><rule from=\"^http://(?:www\\.)?teracomconsulting\\.com/\" to=\"https://teracomconsulting.com/\"/></ruleset>", "<ruleset name=\"Terena.org (partial)\" f=\"Terena.org.xml\"><exclusion pattern=\"^http://tnc20(?:0[57-9]|10)\\.terena\\.org/(?!css/|gfx/|js/)\"/><securecookie host=\"^(?:compendium|confluence|crypto-filesender|cryptosender|eventr|filesender|login|tnc15|tnc201[1-4]|wikis?|www)\\.terena\\.org$\" name=\".+\"/><rule from=\"^http://tnc2006\\.terena\\.org/\" to=\"https://www.terena.org/events/tnc2006/\"/><rule from=\"^http://wikis\\.terena\\.org/\" to=\"https://wiki.terena.org/\"/><rule from=\"^http://((?:compendium|confluence|crypto-filesender|cryptosender|eventr|filesender|lenin|login|omega|rykov|test-login|tnc15|tnc20(?:0[5789]|1\\d)|wikis?|www)\\.)?terena\\.org/\" to=\"https://$1terena.org/\"/></ruleset>", "<ruleset name=\"Terminal.com\" f=\"Terminal.com.xml\"><securecookie host=\"^www\\.terminal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terminatio.org\" f=\"Terminatio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terminatorx.org\" f=\"TerminatorX.org.xml\"><rule from=\"^http://(?:www\\.)?terminatorx\\.org/\" to=\"https://terminatorx.org/\"/></ruleset>", "<ruleset name=\"Terra Galleria\" default_off=\"failed ruleset test\" f=\"Terra-Galleria.xml\"><securecookie host=\"^(?:.*\\.)?terragalleria\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra Mail (MX)\" f=\"TerraMailMX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TerraPass (partial)\" default_off=\"failed ruleset test\" f=\"TerraPass.xml\"><exclusion pattern=\"^http://store.terrapass.com/(?![iI]mages/|Shared/|[sS]tore/(?:buttons|i|Templates)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra User Central (MX)\" default_off=\"Breaks site\" f=\"TerraUserCentralMX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra Bank.ru\" f=\"Terra_Bank.ru.xml\"><rule from=\"^http://(?:www\\.)?terrabank\\.ru/\" to=\"https://terrabank.ru/\"/></ruleset>", "<ruleset name=\"terreActive\" f=\"TerreActive.xml\"><rule from=\"^http://(?:www\\.)?terreactive\\.ch/\" to=\"https://www.terreactive.ch/\"/></ruleset>", "<ruleset name=\"Terres Oubliees.com\" f=\"Terres_Oubliees.com.xml\"><securecookie host=\"^(?:w*\\.)?terresoubliees\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?terresoubliees\\.com/\" to=\"https://www.terresoubliees.com/\"/><rule from=\"^http://erp\\.terresoubliees\\.com/\" to=\"https://erp.terresoubliees.com/\"/></ruleset>", "<ruleset name=\"Terse Systems.com\" f=\"Terse_Systems.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terveysportti.fi\" f=\"Terveysportti.fi.xml\"><rule from=\"^http://(?:www\\.)?terveysportti\\.fi/\" to=\"https://www.terveysportti.fi/\"/><rule from=\"^http://(?:www\\.)?terveysportti\\.org/\" to=\"https://www.terveysportti.fi/\"/><rule from=\"^http://(?:www\\.)?terveysportti\\.net/\" to=\"https://www.terveysportti.fi/\"/></ruleset>", "<ruleset name=\"Tesco.com (false MCB)\" platform=\"mixedcontent\" f=\"Tesco.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?tesco\\.com/groceries/\" to=\"https://secure.tesco.com/groceries/\"/></ruleset>", "<ruleset name=\"Tesco (partial)\" f=\"Tesco.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^www\\.giftcards\\.tesco\\.com$\" name=\".\"/><rule from=\"^http://metrics\\.tesco\\.com/\" to=\"https://tesco.122.2o7.net/\"/><rule from=\"^http://\\w+\\.tescoassets\\.com/\" to=\"https://secure.tesco.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesco Bank.com\" f=\"Tesco_Bank.com.xml\"><securecookie host=\"^www\\.tescobank\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tescofinance\\.com/+$\" to=\"https://www.tescobank.com/personal/finance/home.html\"/><rule from=\"^http://(?:www\\.)?tesco(?:bank|finance)\\.com/\" to=\"https://www.tescobank.com/\"/></ruleset>", "<ruleset name=\"Tesco Compare.com\" default_off=\"failed ruleset test\" f=\"Tesco_Compare.com.xml\"><securecookie host=\"^www\\.tescocompare\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tescocompare\\.com/\" to=\"https://www.tescocompare.com/\"/></ruleset>", "<ruleset name=\"Tesco Diets.com\" default_off=\"failed ruleset test\" f=\"Tesco_Diets.com.xml\"><securecookie host=\"^www\\.tescodiets\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesco Help.com\" f=\"Tesco_Help.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesco Photo.com\" default_off=\"failed ruleset test\" f=\"Tesco_Photo.com.xml\"><securecookie host=\"^www\\.tescophoto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tescophoto\\.com/\" to=\"https://www.tescophoto.com/\"/></ruleset>", "<ruleset name=\"Tesco Share and Earn.com\" default_off=\"failed ruleset test\" f=\"Tesco_Share_and_Earn.com.xml\"><securecookie host=\"^(?:w*\\.)?tescoshareandearn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesla Motors.com (partial)\" f=\"Tesla_Motors.xml\"><exclusion pattern=\"^http://www\\.teslamotors\\.com/findus$\"/><exclusion pattern=\"^http://www\\.teslamotors\\.com/(?!(?:mytesla|order|user)(?:$|[?/])|sites/|tesla_theme/)\"/><rule from=\"^http://teslamotors\\.com/\" to=\"https://www.teslamotors.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Test-IPv6.cz (false MCB)\" platform=\"mixedcontent\" f=\"Test-IPv6.cz-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?test-ipv6\\.cz$\" name=\".+\"/><rule from=\"^http://(www\\.)?test-ipv6\\.cz/(?!\\w+\\.css|\\w+\\.js|images/|ipv6widget/|site/)\" to=\"https://$1test-ipv6.cz/\"/></ruleset>", "<ruleset name=\"Test-IPv6.cz (partial)\" f=\"Test-IPv6.cz.xml\"><exclusion pattern=\"^http://(?:www\\.)?test-ipv6\\.cz/(?!\\w+\\.css|\\w+\\.js|images/|ipv6widget/|site/)\"/><securecookie host=\"^(?!www\\.).+\\.test-ipv6\\.cz$\" name=\".+\"/><rule from=\"^http://((?:ds|ipv[46]|www)\\.)?test-ipv6\\.cz/\" to=\"https://$1test-ipv6.cz/\"/></ruleset>", "<ruleset name=\"testCloud.io (partial)\" f=\"TestCloud.io.xml\"><securecookie host=\"^\\.(?:the)?testcloud\\.(?:com|de|io)$\" name=\".+\"/><rule from=\"^http://((?:app|cdn\\d|staticcdn|tester|www)\\.)?testcloud\\.de/\" to=\"https://$1testcloud.de/\"/><rule from=\"^http://((?:app|tester|www)\\.)?testcloud\\.io/\" to=\"https://$1testcloud.io/\"/><rule from=\"^http://(app\\.|www\\.)?thetestcloud\\.com/\" to=\"https://$1thetestcloud.com/\"/></ruleset>", "<ruleset name=\"Test Equipment Depot\" f=\"Test_Equipment_Depot.xml\"><securecookie host=\"^\\.www\\.testequipmentdepot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"testssl.sh\" f=\"Testssl.sh.xml\"><rule from=\"^http://(?:www\\.)?testssl\\.sh/\" to=\"https://testssl.sh/\"/></ruleset>", "<ruleset name=\"Tetu\" default_off=\"failed ruleset test\" f=\"Tetu.xml\"><securecookie host=\"^(?:.+\\.)?tetu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Texaco.com\" f=\"Texaco.com.xml\"><securecookie host=\"^www\\.texaco\\.com$\" name=\".+\"/><rule from=\"^http://texaco\\.com/.*\" to=\"https://www.texaco.com/\"/><rule from=\"^http://www\\.texaco\\.com/\" to=\"https://www.texaco.com/\"/></ruleset>", "<ruleset name=\"Texas Association of Schoolboards\" f=\"Texas-Association-of-School-Boards.xml\"><securecookie host=\"^(?:.*\\.)?tasb\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tasb\\.org/\" to=\"https://www.tasb.org/\"/><rule from=\"^http://store\\.tasb\\.org/\" to=\"https://store-84a5f.mybigcommerce.com/\"/></ruleset>", "<ruleset name=\"Texas Department of State Health Services\" f=\"Texas-Department-of-State-Health-Services.xml\"><securecookie host=\"^www\\.dshs\\.state\\.tx\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dshs\\.state\\.tx\\.us/\" to=\"https://www.dshs.state.tx.us/\"/></ruleset>", "<ruleset name=\"TI.com (partial)\" f=\"Texas-Instruments.xml\"><exclusion pattern=\"^http://www-k\\.ext\\.ti\\.com/(?!sc/technical-support/pic/asia\\.htm|sc/technical-support/pic/japan\\.htm)\"/><exclusion pattern=\"http://reviews\\.ti\\.com/(?!$|\\?)\"/><exclusion pattern=\"^http://www.ti.com/(?:general/docs/)?lit/\"/><exclusion pattern=\"^http://(?:www\\.)?ti\\.com/product(?:$|[?/])\"/><exclusion pattern=\"^http://www.ti.com/tool/\"/><securecookie host=\".+\\.ti\\.com$\" name=\".\"/><rule from=\"^http://(?:www\\.)?national\\.com/.*\" to=\"https://www.ti.com/\"/><rule from=\"^http://ti\\.com/\" to=\"https://www.ti.com/\"/><rule from=\"^http://e2e-uat\\.ti\\.com/\" to=\"https://e2e.ti.com/\"/><rule from=\"^http://www-k\\.ext\\.ti\\.com/sc/technical-support/pic/asia\\.htm(?:\\?.*)?$\" to=\"https://www.ti.com/ww/en/pic/PIC-Asia.html\"/><rule from=\"^http://www-k\\.ext\\.ti\\.com/sc/technical-support/pic/japan\\.htm(?:\\?.*)?$\" to=\"https://www.ti.com/ww/en/pic/PIC-Japan.html\"/><rule from=\"^http://reviews\\.ti\\.com/(?:\\?.*)?$\" to=\"https://focus.ti.com/\"/><rule from=\"^http://videos\\.ti\\.com/[^?]*\" to=\"https://focus.ti.com/general/docs/video/Portal.tsp\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Texas State Library and Archives Commission\" f=\"Texas-State-Library-and-Archives-Commission.xml\"><securecookie host=\"^\\.tsl\\.state\\.tx\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tsl\\.state\\.tx\\.us/\" to=\"https://www.tsl.state.tx.us/\"/></ruleset>", "<ruleset name=\"Texas A&M University (partial)\" f=\"Texas_A_and_M_University.xml\"><exclusion pattern=\"^http://mediamatrix\\.tamu\\.edu/(?!images/|include/|style\\.css)\"/><exclusion pattern=\"^http://sc\\.tamu\\.edu/(?!Images/|inclusions/)\"/><exclusion pattern=\"^http://studentaffairs\\.tamu\\.edu/(?!misc/|modules/|sites/)\"/><exclusion pattern=\"^http://studentlifestudies\\.tamu\\.edu/(?!misc/|modules/|sites/)\"/><exclusion pattern=\"^http://student-rules\\.tamu\\.edu/(?!misc/|modules/|sites/)\"/><exclusion pattern=\"^http://uart\\.tamu\\.edu/(?!misc/|modules/|sites/|user(?:$|\\?|/))\"/><securecookie host=\"^(?:aggiemail|ahso|allucalendar|cas|www\\.cis|\\.doit|ecampusprod|elearningtools|(?:www\\.)?giving|howdy|idp|isaac|itshelp|lms|oalinfo|services|software|studentactivities|apps[46]\\.system|transport|my\\.tti|ttipassword|vpfnweb[23]|wikis)\\.tamu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:aggie(?:honor|mail)|ahso|allucalendar|cas|(?:www\\.)?cis|codemaroon|dmc-assets|doit|ecampusprod|elearningtools|gateway|(?:www\\.)?giving|howdy|idp|hdc|isaac|itaccessibility(?:-new)?|itshelp|lms|mediamatrix|myaggieloans|neo|oalinfo|fc-web\\.operations|sc|services|software|sso|student(?:activities|affairs|lifestudies|-rules)|apps[46]\\.system|training|my\\.tti|ttipassword|uart|voal|vpfnweb[23]|wikis|www)\\.)?tamu\\.edu/\" to=\"https://$1tamu.edu/\"/><rule from=\"^http://(?:cllacdn|liberalarts)\\.tamu\\.edu(?:443)?/\" to=\"https://liberalarts.tamu.edu/\"/><rule from=\"^http://itsdocs\\.tamu\\.edu/(?:.*)\" to=\"https://wikis.tamu.edu/display/itsdocs/ITS+Docs+-+Home\"/><rule from=\"^http://sofc\\.tamu\\.edu/[^\\?]*(\\?.*)?\" to=\"https://studentactivities.tamu.edu/sofc$1\"/><rule from=\"^http://(?:www\\.)?t(ransport|ti)\\.tamu\\.edu/\" to=\"https://t$1.tamu.edu/\"/></ruleset>", "<ruleset name=\"Community-Journalism.net (partial)\" f=\"Texas_Center_for_Community_Journalism.xml\"><securecookie host=\"^\\.community-journalism\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Texas Tribune.org\" f=\"Texas_Tribune.org.xml\"><securecookie host=\"^\\.?texastribune\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?texastribune\\.org/\" to=\"https://www.texastribune.org/\"/><rule from=\"^http://static\\.texastribune\\.org/\" to=\"https://static.texastribune.org/\"/></ruleset>", "<ruleset name=\"TextMagic.com\" f=\"TextMagic.com.xml\"><securecookie host=\".*\\.textmagic\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TextPad.com (partial)\" f=\"TextPad.com.xml\"><securecookie host=\"^(?:www\\.)?textpad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Textbooks.com\" platform=\"mixedcontent\" f=\"Textbooks.com.xml\"><securecookie host=\"^.*\\.textbooks\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?textbooks\\.com/\" to=\"https://www.textbooks.com/\"/><rule from=\"^http://images\\.textbooks\\.com/\" to=\"https://images.textbooks.com/\"/></ruleset>", "<ruleset name=\"Texthelp.com\" f=\"Texthelp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://texthelp\\.com/\" to=\"https://www.texthelp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Textracer.dk\" f=\"Textracer.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TextualApp.com\" f=\"TextualApp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://textualapp\\.com/\" to=\"https://www.textualapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfaforms.com\" f=\"Tfaforms.com.xml\"><securecookie host=\"^(?:www\\.)?tfaforms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfes.org\" f=\"Tfes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tgknt.com\" f=\"Tgknt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tgthr.com\" default_off=\"differs from http\" f=\"Tgthr.com.xml\"><securecookie host=\"^(?:w*\\.)?tgthr\\.com$\" name=\".+\"/><rule from=\"^http://tgthr\\.crbuildsite\\.com/\" to=\"https://tgthr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thai Netizen.org\" f=\"Thai_Netizen.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thalasseo.com\" f=\"Thalasseo.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thalasseo\\.com/\" to=\"https://www.thalasseo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thales Communications\" default_off=\"failed ruleset test\" f=\"Thales-Communications.xml\"><securecookie host=\"^www\\.thalescomminc\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thalescomminc\\.com/\" to=\"https://www.thalescomminc.com/\"/></ruleset>", "<ruleset name=\"Thali project.org\" default_off=\"mismatched\" f=\"Thali_project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thalia Holding\" platform=\"mixedcontent\" f=\"Thalia_Holding.xml\"><rule from=\"^http://buch\\.de/\" to=\"https://www.buch.de/\"/><rule from=\"^http://thalia\\.ch/\" to=\"https://www.thalia.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thalys\" f=\"Thalys.xml\"><securecookie host=\"^(?:.*\\.)?thalys(?:net|thecard)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThankYou.com\" f=\"ThankYou.com.xml\"><securecookie host=\"^(?:rewards|shopping|travel|www)?\\.thankyou\\.com$\" name=\".+\"/><rule from=\"^http://thankyou\\.com/\" to=\"https://www.thankyou.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thankyou4caring.org\" f=\"Thankyou4caring.org.xml\"><securecookie host=\"^\\w+\" name=\".\"/><rule from=\"^http://(\\w+)\\.thankyou4caring\\.org/\" to=\"https://$1.thankyou4caring.org/\"/></ruleset>", "<ruleset name=\"Thawte\" f=\"Thawte.xml\"><rule from=\"^http://(?:www\\.)?thawte\\.com/\" to=\"https://www.thawte.com/\"/></ruleset>", "<ruleset name=\"The ACLU of Idaho\" f=\"The-ACLU-of-Idaho.xml\"><securecookie host=\"^acluidaho\\.org$\" name=\".+\"/><rule from=\"^http://www\\.acluidaho\\.org/\" to=\"https://acluidaho.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Art Institutes (partial)\" f=\"The-Art-Institutes.xml\"><rule from=\"^http://artinstitutes\\.edu/\" to=\"https://www.artinstitutes.edu/\"/><rule from=\"^http://www\\.artinstitutes\\.edu/([iI]mages/|[iI]ncludes/|javascript/|masters-degrees/(images|stylesheets)/|Multimedia|programs-info/form/|[sS]tylesheets/|WebResource\\.axd)\" to=\"https://www.artinstitutes.edu/$2/\"/><rule from=\"^http://content\\.artinstitutes\\.edu/\" to=\"https://content.artinstitutes.edu/\"/></ruleset>", "<ruleset name=\"The Atom Group.com (partial)\" f=\"The-Atom-Group.xml\"><rule from=\"^http://mail\\.theatomgroup\\.com/.*\" to=\"https://mail.google.com/a/theatomgroup.com\"/></ruleset>", "<ruleset name=\"The Awl.com (partial)\" default_off=\"mismatched\" f=\"The-Awl.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Business Journals (partial)\" f=\"The-Business-Journals.xml\"><securecookie host=\"^\\.bizjournals\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^secure\\.bizjournals\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bizjournals\\.com/(bizjournals/images|lib|login|register)/\" to=\"https://www.bizjournals.com/$1/\"/><rule from=\"^http://(mediaapi|metrics|secure)\\.bizjournals\\.com/\" to=\"https://$1.bizjournals.com/\"/><rule from=\"^http://metric\\.bizjournals\\.com/\" to=\"https://bizjournals-com.112.2o7.net/\"/><rule from=\"^http://metrics\\.metric\\.bizjournals\\.combizjournals\\.com/b/ss/bizjournalsglobal%2C(\\w+)/\" to=\"https://bizjournalsglobal-$1.122.2o7.net/b/ss/bizjournalsglobal%2C$1/\"/></ruleset>", "<ruleset name=\"The Butler and the Chef\" default_off=\"mismatch\" f=\"The-Butler-and-the-Chef.xml\"><rule from=\"^http://(?:www\\.)?butlerandthechef\\.com/\" to=\"https://butlerandthechef.com/\"/></ruleset>", "<ruleset name=\"The CISCO Group (partial)\" default_off=\"mismatch\" f=\"The-Cisco-Group.xml\"><rule from=\"^http://(?:www\\.)?thecisogroup\\.com/\" to=\"https://theciscogroup.com/\"/></ruleset>", "<ruleset name=\"The Citizen Lab\" f=\"The-Citizen-Lab.xml\"><rule from=\"^http://(?:www\\.)?citizenlab\\.org/\" to=\"https://citizenlab.org/\"/></ruleset>", "<ruleset name=\"The Cutest Site on the Block\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"The-Cutest-Site-on-the-Block.xml\"><securecookie host=\"^(?:.*\\.)?thecutestsiteontheblock\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thecutestsiteontheblock\\.com/\" to=\"https://www.thecutestsiteontheblock.com/\"/></ruleset>", "<ruleset name=\"The-DMA.org (partial)\" f=\"The-DMA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Handbook.info\" f=\"The-Debian-Administrators-Handbook.xml\"><rule from=\"^http://www\\.debian-handbook\\.info/\" to=\"https://debian-handbook.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Diplomat\" default_off=\"failed ruleset test\" f=\"The-Diplomat.xml\"><securecookie host=\"^thediplomat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thediplomat\\.com/\" to=\"https://thediplomat.com/\"/></ruleset>", "<ruleset name=\"The Escapist Expo\" default_off=\"failed ruleset test\" f=\"The-Escapist-Expo.xml\"><rule from=\"^http://(?:(www\\.)?sec\\.|www\\.)?escapistexpo\\.com/\" to=\"https://$1sec.escapistexpo.com/\"/></ruleset>", "<ruleset name=\"The Event Diva\" default_off=\"expired\" f=\"The-Event-Diva.xml\"><securecookie host=\"^www\\.theeventdiva\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?theeventdiva\\.com/\" to=\"https://www.theeventdiva.com/\"/></ruleset>", "<ruleset name=\"The-FCA.org.uk\" f=\"The-FCA.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Flirble Organisation\" f=\"The-Flirble-Organisation.xml\"><securecookie host=\".*\\.flirble\\.org$\" name=\".*\"/><rule from=\"^http://domreg\\.flirble\\.org/\" to=\"https://domreg-flirble-org.shopco.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Great Courses (mismatches)\" default_off=\"mismatch\" f=\"The-Great-Courses-mismatches.xml\"><rule from=\"^http://reviews\\.thegreatcourses\\.com/\" to=\"https://reviews.thegreatcourses.com/\"/></ruleset>", "<ruleset name=\"The Great Courses (partial)\" f=\"The-Great-Courses.xml\"><rule from=\"^http://(?:www\\.)?thegreatcourses\\.com/tgc/([aA]ccount|cs)s/\" to=\"https://www.thegreatcourses.com/tgc/$1s/\"/></ruleset>", "<ruleset name=\"The Inspiration Room\" default_off=\"expired, self-signed\" f=\"The-Inspiration-Room.xml\"><securecookie host=\"^(?:.*\\.)?theinspirationroom\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?theinspirationroom\\.com/\" to=\"https://theinspirationroom.com/\"/></ruleset>", "<ruleset name=\"The Irish Times\" f=\"The-Irish-Times.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Japan Times (problematic)\" default_off=\"mismatch\" f=\"The-Japan-Times-problematic.xml\"><exclusion pattern=\"http://www\\.japantimes\\.co\\.jp/images/header_title\\.gif\"/><rule from=\"^http://(?:www\\.)?japantimes\\.co\\.jp/\" to=\"https://www.japantimes.co.jp/\"/></ruleset>", "<ruleset name=\"The Japan Times (partial)\" f=\"The-Japan-Times.xml\"><securecookie host=\"^.+\\.japantimes\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://(bookclub|club|form)\\.japantimes\\.co\\.jp/\" to=\"https://$1.japantimes.co.jp/\"/><rule from=\"^http://www\\.japantimes\\.co\\.jp/images/header_title\\.gif\" to=\"https://form.japantimes.co.jp/images/header_title.gif\"/></ruleset>", "<ruleset name=\"The Lean Startup\" default_off=\"expired, self-signed\" f=\"The-Lean-Startup.xml\"><rule from=\"^http://(?:www\\.)?theleanstartup\\.com/\" to=\"https://theleanstartup.com/\"/></ruleset>", "<ruleset name=\"List.co.uk\" f=\"The-List.xml\"><securecookie host=\"^\\.\" name=\"^(?:COOKIE_NOTICE|JSESSIONID)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Nation\" default_off=\"failed ruleset test\" f=\"The-Nation.xml\"><securecookie host=\"^(?:donate|subscribe)\\.thenation\\.com$\" name=\".+\"/><rule from=\"^http://((?:donate|subscribe|www)\\.)?thenation\\.com/\" to=\"https://$1thenation.com/\"/><rule from=\"^http://65\\.98\\.18\\.218/\" to=\"https://upgnation.com/\"/><rule from=\"^http://(?:www\\.)?upgnation\\.com/(?=blank\\.gif|favicon\\.ico|images/|(?:image|login|register)\\.php|skin/|var/)\" to=\"https://www.upgnation.com/\"/></ruleset>", "<ruleset name=\"The National Academies Press (partial)\" default_off=\"broken\" f=\"The-National-Academies-Press.xml\"><securecookie host=\"^download\\.nap\\.edu$\" name=\".+\"/><rule from=\"^http://(?:cart\\.|images\\.|www\\.)?nap\\.edu/\" to=\"https://cart.nap.edu/\"/><rule from=\"^http://(download|secure)\\.nap\\.edu/\" to=\"https://$1.nap.edu/\"/></ruleset>", "<ruleset name=\"The Nature Conservancy (partial)\" f=\"The-Nature-Conservancy.xml\"><securecookie host=\"^shop\\.nature\\.org$\" name=\".*\"/><rule from=\"^http://shop\\.nature\\.org/\" to=\"https://shop.nature.org/\"/><rule from=\"^http://support\\.nature\\.org/images/\" to=\"https://support.nature.org/images/\"/></ruleset>", "<ruleset name=\"The New Yorker (partial)\" f=\"The-New-Yorker.xml\"><rule from=\"^http://(?:www\\.)?newyorker\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.newyorker.com/\"/><rule from=\"^http://(?:www\\.)?newyorker\\.com/(appjs/stats/|online/blogs/[\\w-]+/[\\w-]+\\.(?:jp|pn)g(?:$|\\?)|css/|images/|js/|sandbox/)\" to=\"https://secure.newyorker.com/$1\"/><rule from=\"^http://(result|secure)\\.newyorker\\.com/\" to=\"https://$1.newyorker.com/\"/></ruleset>", "<ruleset name=\"The Next Web.com (partial)\" f=\"The-Next-Web.xml\"><rule from=\"^http://((?:fr|nl|pl|ru|www)\\.)?thenextweb\\.com/(conference/(?:asset|header/image)s|wp-content)/\" to=\"https://$1thenextweb.com/$2/\"/><rule from=\"^http://cdn\\.thenextweb\\.com/\" to=\"https://thenextweb.com/\"/><rule from=\"^http://deals\\.thenextweb\\.com/\" to=\"https://deals.thenextweb.com/\"/><rule from=\"^http://guides\\.thenextweb\\.com/(av|cs|image)s/\" to=\"https://tnextw.accel.io/$1s/\"/><rule from=\"^http://jobs\\.thenextweb\\.com/(Areas|Content|i)/\" to=\"https://my.zartis.com/$1/\"/></ruleset>", "<ruleset name=\"The Open Group (partial)\" f=\"The-Open-Group.xml\"><exclusion pattern=\"^http://(?:www3?\\.)?opengroup\\.org/+(?!austin(?:$|[?/])|images/|onlinepubs/|sites/|stylesheets/)\"/><securecookie host=\"^(?:sso|www2)\\.opengroup\\.org$\" name=\".*\"/><rule from=\"^http://(sso\\.|www[236]?\\.)?opengroup\\.org/\" to=\"https://$1opengroup.org/\"/></ruleset>", "<ruleset name=\"The Public Index\" default_off=\"expired, self-signed\" f=\"The-Public-Index.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?thepublicindex\\.org/\" to=\"https://$1thepublicindex.org/\"/></ruleset>", "<ruleset name=\"The Republic (partial)\" f=\"The-Republic.xml\"><rule from=\"^http://cdn\\.therepublic\\.com/\" to=\"https://c348471.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"The Santa Fe New Mexican\" default_off=\"mismatch\" f=\"The-Santa-Fe-New-Mexican.xml\"><securecookie host=\"^www\\.santafenewmexican\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?santafenewmexican\\.com/\" to=\"https://www.santafenewmexican.com/\"/></ruleset>", "<ruleset name=\"The Shmoo Group (partial)\" platform=\"cacert\" default_off=\"expired\" f=\"The-Shmoo-Group.xml\"><exclusion pattern=\"^http://lists\\.shmoo.com/pipermail\"/><rule from=\"^http://(imap|lists|maxx)\\.shmoo\\.com/\" to=\"https://$1.shmoo.com/\"/></ruleset>", "<ruleset name=\"Skynet.ie\" f=\"The-Skynet-Project.xml\"><securecookie host=\"^\\.?webmail\\.skynet\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Teaching Company (partial)\" f=\"The-Teaching-Company.xml\"><rule from=\"^http://secureimages\\.teach12\\.com/\" to=\"https://secureimages.teach12.com/\"/></ruleset>", "<ruleset name=\"The Vault Bar\" default_off=\"expired, self-signed\" f=\"The-Vault-Bar.xml\"><securecookie host=\"^thevaultbar\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thevaultbar\\.co\\.uk/\" to=\"https://thevaultbar.co.uk/\"/></ruleset>", "<ruleset name=\"The Verge.com (partial)\" platform=\"firefox\" f=\"The-Verge.xml\"><securecookie host=\".*\\.theverge\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www\\.theverge\\.com/comments/load_comments/\"/><rule from=\"^http://theverge\\.com/\" to=\"https://www.theverge.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Washington Examiner (partial)\" f=\"The-Washington-Examiner.xml\"><rule from=\"^http://cdn\\.washingtonexaminer\\.biz/\" to=\"https://d1j4hw6rcy3g1h.cloudfront.net/\"/></ruleset>", "<ruleset name=\"The Wrap (partial) \" default_off=\"failed ruleset test\" f=\"The-Wrap.xml\"><securecookie host=\"^\\.thewrap\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:drupal\\.|www\\.)?thewrap\\.com/\" to=\"https://www.thewrap.com/\"/></ruleset>", "<ruleset name=\"TheAA\" platform=\"mixedcontent\" f=\"TheAA.xml\"><rule from=\"^http://(?:www\\.)?theaa\\.com/\" to=\"https://www.theaa.com/\"/></ruleset>", "<ruleset name=\"The Book Depository\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TheBookDepository.xml\"><rule from=\"^http://bookdepository\\.(co\\.uk|com)/\" to=\"https://bookdepository.$1/\"/><rule from=\"^http://(cache0|cache1|cache2|cache3|images|www)\\.bookdepository\\.(co\\.uk|com)/\" to=\"https://$1.bookdepository.$2/\"/></ruleset>", "<ruleset name=\"The Book People\" platform=\"mixedcontent\" f=\"TheBookPeople.xml\"><rule from=\"^http://(?:www\\.)?thebookpeople\\.co\\.uk/\" to=\"https://www.thebookpeople.co.uk/\"/><rule from=\"^http://images\\.thebookpeople\\.co\\.uk/\" to=\"https://images.thebookpeople.co.uk/\"/></ruleset>", "<ruleset name=\"The Church of Jesus Christ of Latter-day Saints\" platform=\"mixedcontent\" f=\"TheChurchofJesusChristofLatterdaySaints.xml\"><exclusion pattern=\"^http://lds\\.org/ldsorg\"/><securecookie host=\"^(?:.*\\.)?lds\\.org$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?ldscdn\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lds\\.org/\" to=\"https://www.lds.org/\"/><rule from=\"^http://(history|store|tech|institute|seminary)\\.lds\\.org/\" to=\"https://$1.lds.org/\"/><rule from=\"^http://(?:www\\.)?ldscdn\\.org/\" to=\"https://www.ldscdn.org/\"/><rule from=\"^http://(edge|media)\\.ldscdn\\.org/\" to=\"https://$1.ldscdn.org/\"/></ruleset>", "<ruleset name=\"TheCityUK\" f=\"TheCityUK.xml\"><securecookie host=\"^www\\.thecityuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thecityuk\\.com/\" to=\"https://www.thecityuk.com/\"/></ruleset>", "<ruleset name=\"The Document Foundation\" f=\"TheDocumentFoundation.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheEroticReview\" f=\"TheEroticReview.xml\"><rule from=\"^http://(?:www\\.)?theeroticreview\\.com/\" to=\"https://www.theeroticreview.com/\"/><securecookie host=\"^theeroticreview\\.com$\" name=\".*\"/><securecookie host=\"^www\\.theeroticreview\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"TheHut.com (partial)\" f=\"TheHut.com.xml\"><securecookie host=\"^tracking\\.thehut\\.net$\" name=\".+\"/><rule from=\"^http://static\\d\\.thcdn\\.com/\" to=\"https://thehut.pantherssl.com/\"/><rule from=\"^http://(?:www\\.)?thehut\\.com/([\\w-]+\\.info|c-images/|common/|c-scripts/|css/|hutint/)\" to=\"https://www.thehut.com/$1\"/><rule from=\"^http://tracking\\.thehut\\.net/\" to=\"https://tracking.thehut.net/\"/></ruleset>", "<ruleset name=\"TheJournal.ie\" f=\"TheJournal.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thejournal\\.ie/\" to=\"https://www.thejournal.ie/\"/><rule from=\"^http://cdn\\.thejournal\\.ie/\" to=\"https://s3-eu-west-1.amazonaws.com/cdn.thejournal.ie/\"/><rule from=\"^http://s\\d\\.thejournal\\.ie/\" to=\"https://d1icb8fuiosdrj.cloudfront.net/\"/><rule from=\"^http://static\\.thejournal\\.ie/\" to=\"https://b0.thejournal.ie/\"/><rule from=\"^http://thedailyedge\\.thejournal\\.ie/\" to=\"https://www.dailyedge.ie/\"/><rule from=\"^http://thescore\\.thejournal\\.ie/+(?=$|\\?|.+/(?:$|\\?))\" to=\"https://www.the42.ie/\"/><rule from=\"^http://thescore\\.thejournal\\.ie/+([^?]*)\" to=\"https://www.the42.ie/$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Old Reader\" default_off=\"failed ruleset test\" f=\"TheOldReader.xml\"><securecookie host=\"^(?:[^/:@]*\\.)?theoldreader\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?theoldreader\\.com/\" to=\"https://$1theoldreader.com/\"/><rule from=\"^http://s\\.yeoldreader\\.com/\" to=\"https://theoldreader.com/\"/></ruleset>", "<ruleset name=\"ThePermitStore.com\" f=\"ThePermitStore.com.xml\"><securecookie host=\"^(?:[a-zA-Z0-9\\-]*\\.)?thepermitstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Pirate Bay\" f=\"ThePirateBay.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThePirateGoogle\" default_off=\"Certificate mismatch\" f=\"ThePirateGoogle.xml\"><rule from=\"^http://(www\\.)?(thepirategoogle|webtorrentsearch)\\.(mrcarch\\.)?com/\" to=\"https://$2.mrcarch.com/~mrcarchc/$2/\"/></ruleset>", "<ruleset name=\"thePlatform.com (problematic)\" default_off=\"mismatched\" f=\"ThePlatform-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thePlatform.com (partial)\" f=\"ThePlatform.xml\"><securecookie host=\"^(?:console|mps|release)\\.theplatform\\.com$\" name=\".+\"/><rule from=\"^http://support\\.theplatform\\.com/\" to=\"https://delivery.support.theplatform.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Privacy Blog\" f=\"ThePrivacyBlog.xml\"><rule from=\"^http://(?:www\\.)?theprivacyblog\\.com/\" to=\"https://www.theprivacyblog.com/\"/></ruleset>", "<ruleset name=\"TheReadingRoom.com\" f=\"TheReadingRoom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheRealTalk.org\" f=\"TheRealTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheResumator clients (partial)\" f=\"TheResumator.com-clients.xml\"><rule from=\"^http://jobs\\.urbandictionary\\.com/\" to=\"https://urbandictionary.theresumator.com/\"/></ruleset>", "<ruleset name=\"TheResumator.com (partial)\" platform=\"mixedcontent\" f=\"TheResumator.com.xml\"><exclusion pattern=\"^http://support\\.theresumator\\.com/support/\"/><securecookie host=\"^(?:app\\.|www\\.)?theresumator\\.com$\" name=\".*\"/><rule from=\"^http://(app\\.|www\\.)?theresumator\\.com/\" to=\"https://$1theresumator.com/\"/><rule from=\"^http://assets\\.theresumator\\.com/\" to=\"https://d1o2i4ti2oga3l.cloudfront.net/\"/><rule from=\"^http://(\\w+)\\.theresumator\\.com/(css/|favicon\\.ico|img/)\" to=\"https://$1.theresumator.com/$2\"/></ruleset>", "<ruleset name=\"TheSafety.US\" f=\"TheSafety.US.xml\"><securecookie host=\"^thesafety\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thesafety\\.us/\" to=\"https://thesafety.us/\"/></ruleset>", "<ruleset name=\"TheSixthAxis.com\" platform=\"mixedcontent\" f=\"TheSixthAxis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheTrainLine\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TheTrainLine.xml\"><securecookie host=\"^(?:.+\\.)?thetrainline\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thetrainline\\.com/\" to=\"https://www.thetrainline.com/\"/></ruleset>", "<ruleset name=\"TheVideo.me\" f=\"TheVideo.me.xml\"><securecookie host=\"^\\.thevideo\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The 109\" default_off=\"failed ruleset test\" f=\"The_109.xml\"><securecookie host=\"^\\.the109\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The American Prospect\" default_off=\"failed ruleset test\" f=\"The_American_Prospect.xml\"><rule from=\"^http://(?:www\\.)?prospect\\.org/\" to=\"https://prospect.org/\"/></ruleset>", "<ruleset name=\"The American Scholar.org\" f=\"The_American_Scholar.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?theamericanscholar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Appendix.net (partial)\" f=\"The_Appendix.net.xml\"><securecookie host=\"^theappendix\\.net$\" name=\".+\"/><securecookie host=\"^\\.theappendix\\.net$\" name=\"^__qca$\"/><rule from=\"^http://images\\.theappendix\\.net/\" to=\"https://d6hat78o59yti.cloudfront.net/\"/><rule from=\"^http://www\\.theappendix\\.net/\" to=\"https://theappendix.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The ArtStack.com\" f=\"The_ArtStack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Atlantic.com (false MCB)\" platform=\"mixedcontent\" f=\"The_Atlantic.com-falsemixed.xml\"><rule from=\"^http://theatlantic\\.com/\" to=\"https://www.theatlantic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Atlantic.com (partial)\" f=\"The_Atlantic.com.xml\"><rule from=\"^http://assets\\.theatlantic\\.com/\" to=\"https://cdn.theatlantic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Baffler\" default_off=\"failed ruleset test\" f=\"The_Baffler.xml\"><securecookie host=\"^(?:www\\.)?thebaffler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Big Wedding Movie.com\" default_off=\"failed ruleset test\" f=\"The_Big_Wedding_Movie.com.xml\"><rule from=\"^http://(?:www\\.)?thebigweddingmovie\\.com/\" to=\"https://www.thebigweddingmovie.com/\"/></ruleset>", "<ruleset name=\"The Blue Sky Life.com\" default_off=\"expired\" f=\"The_Blue_Sky_Life.com.xml\"><securecookie host=\"^(?:www\\.)?theblueskylife\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Body Shop.co.uk (partial)\" f=\"The_Body_Shop.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?thebodyshop\\.co\\.uk/+(?!404\\.htm|404_\\d\\.jpg|(?:athome|myspace)(?:$|[?/])|checkout/|content/|css/|images/|img/|js/|loyalty/|services/|socialhub/|(?:Script|Web)Resource\\.axd|ws/)\"/><securecookie host=\"^\\.thebodyshop\\.co\\.uk$\" name=\"^(?:TRADEDOUBLER_|__tro)\\w+$\"/><securecookie host=\"^secure\\.thebodyshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?thebodyshop\\.co\\.uk/\" to=\"https://secure.thebodyshop.co.uk/\"/><rule from=\"^http://(?:www\\.)?beautyblog\\.thebodyshop\\.co\\.uk/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://thebodyshop-uk-blog.azurewebsites.net/\"/></ruleset>", "<ruleset name=\"Boston Globe.com (partial)\" f=\"The_Boston_Globe.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Bureau Investigates.com (false MCB)\" platform=\"mixedcontent\" f=\"The_Bureau_Investigates.com-falsemixed.xml\"><rule from=\"^http://www\\.thebureauinvestigates\\.com/\" to=\"https://www.thebureauinvestigates.com/\"/></ruleset>", "<ruleset name=\"The Bureau Investigates.com (partial)\" f=\"The_Bureau_Investigates.com.xml\"><exclusion pattern=\"^http://www\\.thebureauinvestigates\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The CALMzone.net\" f=\"The_CALMzone.net.xml\"><securecookie host=\"^www\\.thecalmzone\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Center for Rights.org\" default_off=\"mismatched\" f=\"The_Center_for_Rights.org.xml\"><rule from=\"^http://(?:www\\.)?thecenterforrights\\.org/\" to=\"https://www.thecenterforrights.org/\"/></ruleset>", "<ruleset name=\"The Changelog.com\" f=\"The_Changelog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The China Story.org\" f=\"The_China_Story.org.xml\"><securecookie host=\"^\\.thechinastory\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Chive.com (partial)\" f=\"The_Chive.com.xml\"><exclusion pattern=\"^http://dating\\.thechive\\.com/+(?!assets/|favicon\\.ico|login/*(?:$|\\?))\"/><securecookie host=\"^\\.thechive\\.com$\" name=\"^__qca$\"/><securecookie host=\"^(?:dating|my)\\.thechive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Chronicles of George\" f=\"The_Chronicles_of_George.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Coast News.com\" f=\"The_Coast_News.com.xml\"><securecookie host=\"^\\.thecoastnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Compassion Club.org\" f=\"The_Compassion_Club.org.xml\"><securecookie host=\"^(?:www\\.)?thecompassionclub\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Conversation\" f=\"The_Conversation.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Creators Project.com\" f=\"The_Creators_Project.com.xml\"><rule from=\"^http://(?:www\\.)?thecreatorsproject\\.com/\" to=\"https://thecreatorsproject.vice.com/\"/><rule from=\"^http://assets\\.thecreatorsproject\\.com/\" to=\"https://dm07ef02yemve.cloudfront.net/\"/></ruleset>", "<ruleset name=\"The DMA.org (partial)\" f=\"The_DMA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Daily Beast.com (partial)\" f=\"The_Daily_Beast.xml\"><rule from=\"^http://(www\\.)?thedailybeast\\.com/(?=(?:articles|cheats)/.+\\.jpg$|content/|favicon\\.ico|etc/)\" to=\"https://$1thedailybeast.com/\"/><rule from=\"^http://cdn\\.thedailybeast\\.com/\" to=\"https://d508l827lzpfo.cloudfront.net/\"/></ruleset>", "<ruleset name=\"The Dark Mod.com (partial)\" f=\"The_Dark_Mod.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Day We Fight Back.org\" f=\"The_Day_We_Fight_Back.org.xml\"><securecookie host=\"^\\.thedaywefightback\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Dilbert Store.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"The_Dilbert_Store.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?thedilbertstore\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?thedilbertstore\\.com/(?!(?:customers/(?:forgot_password|login|new)|javascript_no)/?(?:$|\\?.*)|images/|javascripts/|stylesheets/)\" to=\"https://$1thedilbertstore.com/\"/></ruleset>", "<ruleset name=\"The Dilbert Store.com (partial)\" default_off=\"failed ruleset test\" f=\"The_Dilbert_Store.com.xml\"><rule from=\"^http://(www\\.)?thedilbertstore\\.com/(?=(?:customers/(?:forgot_password|login|new)|javascript_no)/?(?:$|\\?.*)|images/|javascripts/|stylesheets/)\" to=\"https://$1thedilbertstore.com/\"/></ruleset>", "<ruleset name=\"The Drum.com (partial)\" f=\"The_Drom.com.xml\"><rule from=\"^http://(www\\.)?thedrum\\.com/(?=(?:account/login|cart/add/\\d+|store|user/login)(?:$|[?/])|uploads/)\" to=\"https://$1thedrum.com/\"/><rule from=\"^http://static\\d\\.thedrum\\.com/\" to=\"https://www.thedrum.com/\"/></ruleset>", "<ruleset name=\"The Edge Climbing.com\" default_off=\"failed ruleset test\" f=\"The_Edge_Climbing.com.xml\"><securecookie host=\"^(?:www\\.)?theedgeclimbing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Explorer Card.com\" f=\"The_Explorer_Card.com.xml\"><securecookie host=\"^www\\.theexplorercard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The FNF.org\" f=\"The_FNF.org.xml\"><securecookie host=\"^(?:(?:chili|commons|www)\\.)?thefnf\\.org$\" name=\".+\"/><rule from=\"^http://((?:chili|commons|forums|lists|www)\\.)?thefnf\\.org/\" to=\"https://$1thefnf.org/\"/></ruleset>", "<ruleset name=\"The Fappening.sexy\" f=\"The_Fappening.sexy.xml\"><securecookie host=\"^\\.thefappening\\.sexy$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Federalist Papers.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"The_Federalist_Papers.org-falsemixed.xml\"><securecookie host=\"^\\.thefederalistpapers\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Federalist Papers.org (partial)\" f=\"The_Federalist_Papers.org.xml\"><rule from=\"^http://(www\\.)?thefederalistpapers\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1thefederalistpapers.org/\"/></ruleset>", "<ruleset name=\"The Fire.org\" f=\"The_Fire.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Foundry.co.uk\" f=\"The_Foundry.co.uk.xml\"><securecookie host=\"^(?:community)?\\.thefoundry\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The G Cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"The_G_Cloud.com.xml\"><securecookie host=\"^(?:clients|manage-lax)\\.thegcloud\\.com$\" name=\".+\"/><rule from=\"^http://(clients\\.|manage-lax\\.)?thegcloud\\.com/\" to=\"https://$1thegcloud.com/\"/><rule from=\"^http://www\\.thegcloud\\.com/+(?:\\?.*)?$\" to=\"https://clients.thegcloud.com/\"/></ruleset>", "<ruleset name=\"The Gazette.co.uk\" f=\"The_Gazette.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thegazette\\.co\\.uk/\" to=\"https://www.thegazette.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Gear Hunter.co.uk (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"The_Gear_Hunter.co.uk.xml\"><securecookie host=\"^www\\.thegearhunter\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Good Fight.fm\" default_off=\"failed ruleset test\" f=\"The_Good_Fight.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Grand\" default_off=\"failed ruleset test\" f=\"The_Grand.xml\"><securecookie host=\"^thegrandtheatre\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thegrandtheatre\\.com/\" to=\"https://thegrandtheatre.com/\"/></ruleset>", "<ruleset name=\"The Great Courses Plus.com\" f=\"The_Great_Courses_Plus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Great Discontent.com (partial)\" f=\"The_Great_Discontent.com.xml\"><rule from=\"^http://www\\.thegreatdiscontent\\.com/\" to=\"https://thegreatdiscontent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Grommet.com\" f=\"The_Grommet.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?thegrommet\\.com$\" name=\".+\"/><rule from=\"^http://(cdn\\d\\.|www\\.)?thegrommet\\.com/\" to=\"https://$1thegrommet.com/\"/></ruleset>", "<ruleset name=\"The Group\" default_off=\"connection refused\" f=\"The_Group.xml\"><securecookie host=\"^\\.the-group\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?the-group\\.net/\" to=\"https://www.the-group.net/\"/><rule from=\"^http://om\\.the-group\\.net/\" to=\"https://thegroup.112.2o7.net/\"/></ruleset>", "<ruleset name=\"The Guardian.com (partial)\" f=\"The_Guardian.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?theguardian\\.com/+(?!(?:info|science)(?:$|[?/]))\"/><securecookie host=\"^\\.theguardian\\.com$\" name=\"^(?:OAX|RMF[DH]|s_vi)$\"/><securecookie host=\"^(?:(?:\\.|www\\.)?bookshop|\\.?id|oas|\\.?soulmates|\\.witness)\\.theguardian\\.com$\" name=\".+\"/><rule from=\"^http://hits\\.theguardian\\.com/\" to=\"https://guardian.d1.sc.omtrdc.net/\"/><rule from=\"^http://syndication\\.theguardian\\.com/[^?]*\" to=\"https://www.theguardian.com/info/syndication-and-terms-of-use\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hacker Blog.com\" f=\"The_Hacker_Blog.com.xml\"><securecookie host=\"^\\.thehackerblog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hill.com\" default_off=\"failed ruleset test\" f=\"The_Hill.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hoxton.com\" f=\"The_Hoxton.com.xml\"><securecookie host=\"^thehoxton\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Iconic.com.au (partial)\" default_off=\"can't add items to cart\" f=\"The_Iconic.com.au.xml\"><rule from=\"^http://(?:www\\.)?theiconic\\.com\\.au/(?=(?:cart|customer/account)(?:$|[?/])|favicon\\.ico)\" to=\"https://www.theiconic.com.au/\"/><rule from=\"^http://static1?\\.theiconic\\.com\\.au/\" to=\"https://static.theiconic.com.au/\"/></ruleset>", "<ruleset name=\"The Information.com\" f=\"The_Information.com.xml\"><rule from=\"^http://(?:www\\.)?theinformation\\.com/\" to=\"https://www.theinformation.com/\"/></ruleset>", "<ruleset name=\"The Intercept.com\" f=\"The_Intercept.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Internet Co.net\" default_off=\"expired\" f=\"The_Internet_Co.net.xml\"><rule from=\"^http://(?:(dev\\.)|www\\.)?theinternetco\\.net/\" to=\"https://$1theinternetco.net/\"/></ruleset>", "<ruleset name=\"JHU.edu (partial)\" f=\"The_Johns_Hopkins_University.xml\"><exclusion pattern=\"^http://www\\.ams\\.jhu\\.edu/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ams\\.jhu\\.edu/+\" to=\"https://engineering.jhu.edu/ams/\"/><rule from=\"^http://(?:www\\.)?ce\\.jhu\\.edu/[^?]*\" to=\"https://engineering.jhu.edu/civil/\"/><rule from=\"^http://(?:www\\.)?giving\\.jhu\\.edu/+\" to=\"https://rising.jhu.edu/\"/><rule from=\"^http://www\\.hub\\.jhu\\.edu/\" to=\"https://hub.jhu.edu/\"/><rule from=\"^http://(?:www\\.)?it\\.jhu\\.edu/\" to=\"https://it.johnshopkins.edu/\"/><rule from=\"^http://nanjing\\.jhu\\.edu/[^?]*\" to=\"https://www.sais-jhu.edu/graduate-studies/campuses/nanjing-china\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Marshall Project.org\" f=\"The_Marshall_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Monthly.com.au\" f=\"The_Monthly.com.au.xml\"><securecookie host=\"^\\.themonthly\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Movie Db.org\" f=\"The_Movie_Db.org.xml\"><securecookie host=\"^\\.www\\.themoviedb\\.org$\" name=\".+\"/><rule from=\"^http://themoviedb\\.org/\" to=\"https://www.themoviedb.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Nanfang.com\" f=\"The_Nanfang.com.xml\"><securecookie host=\"^\\.thenanfang\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Newsmarket (partial)\" f=\"The_Newsmarket.xml\"><securecookie host=\"^br\\.thenewsmarket\\.com$\" name=\".+\"/><rule from=\"^http://(br|previews)\\.thenewsmarket\\.com/\" to=\"https://$1.thenewsmarket.com/\"/></ruleset>", "<ruleset name=\"The Next Web (problematic)\" default_off=\"mismatched\" f=\"The_Next_Web-problematic.xml\"><exclusion pattern=\"^http://guides\\.thenextweb\\.com/(?:av|cs|image)s/\"/><exclusion pattern=\"^http://jobs\\.thenextweb\\.com/(?:Areas|Content|i)/\"/><rule from=\"^http://(guides|index|jobs)\\.thenextweb\\.com/\" to=\"https://$1.thenextweb.com/\"/></ruleset>", "<ruleset name=\"The Outnet\" f=\"The_Outnet.xml\"><securecookie host=\"^\\.?www\\.theoutnet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?theoutnet\\.com/\" to=\"https://www.theoutnet.com/\"/><rule from=\"^http://(cache|www-lt)\\.theoutnet\\.com/\" to=\"https://$1.theoutnet.com/\"/></ruleset>", "<ruleset name=\"The Parliament Magazine.eu\" f=\"The_Parliament_Magazine.eu.xml\"><rule from=\"^http://(?:www\\.)?theparliamentmagazine\\.eu/\" to=\"https://www.theparliamentmagazine.eu/\"/></ruleset>", "<ruleset name=\"The Patriot Post\" f=\"The_Patriot_Post.xml\"><securecookie host=\"^patriotpost\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patriotpost\\.us/\" to=\"https://patriotpost.us/\"/><rule from=\"^http://(assets\\.patriotpost\\.com|media\\.patriotpost\\.us)/\" to=\"https://s3.amazonaws.com/$1/\"/></ruleset>", "<ruleset name=\"The RSA.org\" f=\"The_RSA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Rock Trading.com\" f=\"The_Rock_Trading.com.xml\"><securecookie host=\"^(?:www\\.)?therocktrading\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Satanic Temple.com (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"The_Satanic_Temple.com.xml\"><securecookie host=\"^(?:www)?\\.thesatanictemple\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thesatanictemple\\.(?:com|org)/\" to=\"https://www.thesatanictemple.com/\"/></ruleset>", "<ruleset name=\"The Saturday Paper.com.au\" f=\"The_Saturday_Paper.com.au.xml\"><securecookie host=\"^\\.thesaturdaypaper\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Security Practice.com\" default_off=\"mismatched\" f=\"The_Security_Practice.com.xml\"><securecookie host=\"^\\.thesecuritypractice\\.com$\" name=\".+\"/><rule from=\"^http://www\\.thesecuritypractice\\.com/\" to=\"https://www.thesecuritypractice.com/\"/></ruleset>", "<ruleset name=\"The Smoking Gun.com\" default_off=\"mismatched\" f=\"The_Smoking_Gun.com.xml\"><rule from=\"^http://(?:www\\.)?thesmokinggun\\.com/\" to=\"https://www.thesmokinggun.com/\"/></ruleset>", "<ruleset name=\"The Star Advisers.com\" f=\"The_Star_Advisers.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Storefront.com (problematic)\" default_off=\"mismatched\" f=\"The_Storefront.com-problematic.xml\"><securecookie host=\"^explore\\.thestorefront\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Storefront.com (partial)\" f=\"The_Storefront.com.xml\"><securecookie host=\"^(?:www)?\\.thestorefront\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Stranger.com (partial)\" f=\"The_Stranger.com.xml\"><exclusion pattern=\"^http://post\\.thestranger\\.com/+(?!$|\\?|favicon\\.ico|foundation/|images/|post/|styles/)\"/><rule from=\"^http://((?:classifieds|post|www)\\.)?thestranger\\.com/\" to=\"https://$1thestranger.com/\"/></ruleset>", "<ruleset name=\"The TFP\" f=\"The_TFP.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Technoskeptic.com\" f=\"The_Technoskeptic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Theme Foundry.com (partial)\" f=\"The_Theme_Foundry.com.xml\"><rule from=\"^http://((?:demo|staging\\.demo|staging|www)\\.)?thethemefoundry\\.com/\" to=\"https://$1thethemefoundry.com/\"/></ruleset>", "<ruleset name=\"The Tin Hat.com\" f=\"The_Tin_Hat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Watershed\" f=\"The_Watershed.xml\"><securecookie host=\".+\\.thewatershed\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn|lp|wsmail|www)\\.)?thewatershed\\.com/\" to=\"https://$1thewatershed.com/\"/><rule from=\"^http://chat\\.thewatershed\\.com/(?:\\?.*)?$\" to=\"https://addictionhelpchat.com/webchatasp/\"/></ruleset>", "<ruleset name=\"The Watershed Residence\" default_off=\"failed ruleset test\" f=\"The_Watershed_Residence.xml\"><securecookie host=\"^thewatershedresidence\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thewatershedresidence\\.com/\" to=\"https://thewatershedresidence.com/\"/></ruleset>", "<ruleset name=\"The Web Index.org\" default_off=\"failed ruleset test\" f=\"The_Web_Index.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Week.com\" f=\"The_Week.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Western World (partial)\" default_off=\"failed ruleset test\" f=\"The_Western_World.xml\"><securecookie host=\"^www\\.thewesternworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Wire.com (false MCB)\" platform=\"mixedcontent\" f=\"The_Wire.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?thewire\\.com/\" to=\"https://www.thewire.com/\"/></ruleset>", "<ruleset name=\"The Wire.com (partial)\" f=\"The_Wire.com.xml\"><securecookie host=\"^\\.thewire\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://cdn\\.thewire\\.com/\" to=\"https://cdn.thewire.com/\"/></ruleset>", "<ruleset name=\"The Work Dept.com\" default_off=\"mismatched\" f=\"The_Work_Dept.com.xml\"><rule from=\"^http://(?:www\\.)?theworkdept\\.com/\" to=\"https://www.theworkdept.com/\"/></ruleset>", "<ruleset name=\"The World According to Nouns\" f=\"The_World_According_to_Nouns.xml\"><securecookie host=\"^(?:www)?\\.danzappone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?danzappone\\.com/\" to=\"https://www.danzappone.com/\"/></ruleset>", "<ruleset name=\"the engine room.org\" f=\"The_engine_room.org.xml\"><securecookie host=\"^(?:www\\.)?theengineroom\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The iPhone Wiki.com\" f=\"The_iPhone_Wiki.com.xml\"><securecookie host=\"^(?:www\\.)?theiphonewiki\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theadex\" f=\"Theadex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"theads.me\" f=\"Theads.me.xml\"><securecookie host=\"^(?:code)?\\.theads\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thebluealliance.com\" f=\"Thebluealliance.com.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://(www\\.)?thebluealliance\\.com/gameday$\"/><exclusion pattern=\"^http://(www\\.)?thebluealliance\\.com/_/.*$\"/></ruleset>", "<ruleset name=\"Thecthulhu.com\" f=\"Thecthulhu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheFind\" default_off=\"failed ruleset test\" f=\"Thefind.xml\"><securecookie host=\"^.*\\.thefind\\.com$\" name=\".*\"/><rule from=\"^http://s\\.tfcdn\\.com/\" to=\"https://www.thefind.com/\"/><rule from=\"^http://blog\\.thefind\\.com/(i|wp-content)/\" to=\"https://s64159.gridserver.com/$1/\"/><rule from=\"^http://((?:img|local|upfront|www)\\.)?thefind\\.com/\" to=\"https://$1thefind.com/\"/></ruleset>", "<ruleset name=\"thefrozenfire.com\" f=\"Thefrozenfire.com.xml\"><securecookie host=\"^\\.thefrozenfire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thehabbos.org\" f=\"Thehabbos.org.xml\"><rule from=\"^http://thehabbos\\.org/\" to=\"https://thehabbos.org/\"/></ruleset>", "<ruleset name=\"The Hacker News.com\" f=\"Thehackernews.com.xml\"><securecookie host=\"^\\.thehackernews\\.com$\" name=\".+\"/><rule from=\"^http://www\\.thehackernews\\.com/\" to=\"https://thehackernews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theme-Fusion.com\" f=\"Theme-Fusion.com.xml\"><securecookie host=\"^\\.?theme-fusion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theme.co (partial)\" f=\"Theme.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?theme\\.co/x/demo(?:|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themes and Co.com\" default_off=\"failed ruleset test\" f=\"Themes_and_Co.com.xml\"><exclusion pattern=\"http://themesandco\\.com/(?!wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themis Group (partial)\" default_off=\"mismatch\" f=\"Themis-Group.xml\"><rule from=\"^http://cdn\\.themis-media\\.com/\" to=\"https://cdn.themis-media.com/\"/></ruleset>", "<ruleset name=\"Themler.com\" f=\"Themler.com.xml\"><securecookie host=\"^answers\\.themler\\.com$\" name=\".+\"/><rule from=\"^http://www\\.themler\\.com/\" to=\"https://themler.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"themuse.com\" f=\"Themuse.com.xml\"><securecookie host=\"^www\\.themuse\\.com$\" name=\".+\"/><rule from=\"^http://themuse\\.com/\" to=\"https://www.themuse.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theora.org\" f=\"Theora.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theory.org\" f=\"Theory.org.xml\"><rule from=\"^http://((?:femail|wiki|www)\\.)?theory\\.org/\" to=\"https://$1theory.org/\"/></ruleset>", "<ruleset name=\"thephone.coop\" f=\"Thephone.coop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thermitic.net (partial)\" f=\"Thermitic.net.xml\"><rule from=\"^http://stats\\.thermitic\\.net/\" to=\"https://stats.thermitic.net/\"/></ruleset>", "<ruleset name=\"Thermo Scientific.com\" f=\"Thermo_Scientific.com.xml\"><securecookie host=\"^(?:www)?\\.thermoscientific\\.com$\" name=\".+\"/><rule from=\"^http://thermoscientific\\.com/\" to=\"https://www.thermoscientific.com/\"/><rule from=\"^http://stats\\.thermoscientific\\.com/\" to=\"https://thermoscientific.d1.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theses.cz\" f=\"Theses.cz.xml\"><securecookie host=\"^theses\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?theses\\.cz/\" to=\"https://theses.cz/\"/></ruleset>", "<ruleset name=\"thesn.net (partial)\" f=\"Thesn.net.xml\"><rule from=\"^http://cdn\\.thesn\\.net/\" to=\"https://ddrm6oy8thgk7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Thetvdb.com\" f=\"Thetvdb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thijs Alkema.de\" default_off=\"failed ruleset test\" f=\"Thijs_Alkema.de.xml\"><rule from=\"^http://www\\.thijsalkema\\.de/\" to=\"https://thijsalkema.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thing.net (false MCB)\" platform=\"mixedcontent\" f=\"Thing.net-falsemixed.xml\"><rule from=\"^http://editions\\.thing\\.net/\" to=\"https://editions.thing.net/\"/></ruleset>", "<ruleset name=\"thing.net (partial)\" f=\"Thing.net.xml\"><rule from=\"^http://((?:editions|isp|mailman|the|thingist|webmail|www)\\.)?thing\\.net/\" to=\"https://$1thing.net/\"/></ruleset>", "<ruleset name=\"ThingLink (partial)\" f=\"ThingLink.xml\"><securecookie host=\"^(?:www)?\\.thinglink\\.com$\" name=\".+\"/><securecookie host=\"^cdn\\.thinglink\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?thinglink\\.com/\" to=\"https://$1thinglink.com/\"/><rule from=\"^http://cdn\\.thinglink\\.me/\" to=\"https://cdn.thinglink.me/\"/></ruleset>", "<ruleset name=\"ThingLink Blog\" default_off=\"mismatched\" f=\"ThingLink_Blog.xml\"><rule from=\"^http://(?:www\\.)?thinglinkblog\\.com/\" to=\"https://thinglinkblog.com/\"/></ruleset>", "<ruleset name=\"Thingiverse (partial)\" f=\"Thingiverse.xml\"><securecookie host=\"^(?:www)?\\.thingiverse\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thingiverse\\.com/\" to=\"https://www.thingiverse.com/\"/><rule from=\"^http://support\\.thingiverse\\.com/\" to=\"https://thingiverse.tenderapp.com/\"/></ruleset>", "<ruleset name=\"Thingsquare\" default_off=\"mismatched\" f=\"Thingsquare.xml\"><rule from=\"^http://(?:www\\.)?thingsquare\\.com/\" to=\"https://thingsquare.com/\"/></ruleset>", "<ruleset name=\"ThinkFaster.co\" f=\"ThinkFaster.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThinkGeek\" f=\"ThinkGeek.xml\"><rule from=\"^http://(?:www\\.)?thinkgeek\\.com/\" to=\"https://www.thinkgeek.com/\"/><securecookie host=\"^(?:.*\\.)?thinkgeek\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"ThinkProgress.org (false MCB)\" platform=\"mixedcontent\" f=\"ThinkProgress.org-falsemixed.xml\"><exclusion pattern=\"^http://thinkprogress\\.com/justice/\\d{4}/\\d\\/\\d\\d/\\d+/[\\w-]+\"/><rule from=\"^http://thinkprogress\\.org/\" to=\"https://thinkprogress.org/\"/></ruleset>", "<ruleset name=\"ThinkUp.com (partial)\" f=\"ThinkUp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Think with Google.com\" f=\"ThinkWithGoogle.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thinking Christian\" f=\"Thinking_Christian.xml\"><securecookie host=\"^(?:\\.?www)?\\.thinkingchristian\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thinkingchristian\\.net/\" to=\"https://www.thinkingchristian.net/\"/></ruleset>", "<ruleset name=\"Third Door Media (mismatches)\" default_off=\"mismatch\" f=\"Third-Door-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?thirddoormedia\\.com/\" to=\"https://thirddoormedia.com/\"/></ruleset>", "<ruleset name=\"Third Door Media (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Third-Door-Media.xml\"><rule from=\"^http://www\\.searchengineland\\.com/\" to=\"https://www.searchengineland.com/\"/><rule from=\"^http://searchengineland\\.com/figz/\" to=\"https://searchengineland.com/figz/\"/><rule from=\"^http://(www\\.)?searchmarketing(expo|now)\\.com/\" to=\"https://$1searchmarketing(expo|now).com/\"/></ruleset>", "<ruleset name=\"ThirdAge (partial)\" default_off=\"failed ruleset test\" f=\"ThirdAge.xml\"><rule from=\"^http://(ww[w3]\\.)?thirdage\\.com/\" to=\"https://$1thirdage.com/\"/><rule from=\"^http://cast\\.thirdage\\.com/\" to=\"https://www.thirdage.com/\"/></ruleset>", "<ruleset name=\"ThirdPresence.com (partial)\" f=\"ThirdPresence.com.xml\"><rule from=\"^http://files\\.thirdpresence\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/files.thirdpresence.com/\"/></ruleset>", "<ruleset name=\"Thirty Meter Telescope (partial)\" f=\"Thirty_Meter_Telescope.xml\"><exclusion pattern=\"^http://(?:www\\.)?tmt\\.org/(?!images/|sites/)\"/><securecookie host=\"^\\.profiles\\.tmt\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"This is my next.com\" f=\"ThisIsMyNext.xml\"><rule from=\"^http://(?:www\\.)?thisismynext\\.com/$\" to=\"https://www.theverge.com/reviews\"/><rule from=\"^http://(?:www\\.)?thisismynext\\.com/\" to=\"https://www.theverge.com/reviews/\"/></ruleset>", "<ruleset name=\"ThisWebHost\" f=\"ThisWebHost.xml\"><securecookie host=\"^(?:.+\\.)?thiswebhost\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thiswebhost\\.com/\" to=\"https://www.thiswebhost.com/\"/></ruleset>", "<ruleset name=\"ThisisColossal.com\" default_off=\"connection refused\" f=\"ThisisColossal.com.xml\"><securecookie host=\"^\\.colossal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?colossal\\.com/\" to=\"https://www.colossal.com/\"/></ruleset>", "<ruleset name=\"Thomas-Krenn.com\" f=\"Thomas-Krenn.com.xml\"><securecookie host=\"^\\.?www\\.thomas-krenn\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thomas-krenn\\.com/\" to=\"https://www.thomas-krenn.com/\"/></ruleset>", "<ruleset name=\"Thomas Cook\" default_off=\"Site no longer exists\" f=\"ThomasCook.xml\"><rule from=\"^http://thomascook\\.com/\" to=\"https://thomascook.com/\"/><rule from=\"^http://(book|ww3|ww7|www)\\.thomascook\\.com/\" to=\"https://$1.thomascook.com/\"/></ruleset>", "<ruleset name=\"ThomasNet.com (partial)\" f=\"ThomasNet.com.xml\"><securecookie host=\"^clientcenter\\.thomasnet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thompson.com\" f=\"Thompson.com.xml\"><securecookie host=\"^www\\.thompson\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thompson\\.com/\" to=\"https://www.thompson.com/\"/></ruleset>", "<ruleset name=\"Thompson Hotels.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Thompson_Hotels.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?thompsonhotels\\.com/\" to=\"https://www.thompsonhotels.com/\"/></ruleset>", "<ruleset name=\"Thompson Hotels.com (partial)\" f=\"Thompson_Hotels.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?thompsonhotels\\.com/+(?!content/)\"/><rule from=\"^http://(?:www\\.)?thompsonhotels\\.com/\" to=\"https://www.thompsonhotels.com/\"/></ruleset>", "<ruleset name=\"Thomson Reuters clients\" default_off=\"mismatch\" f=\"Thomson-Reuters-clients.xml\"><rule from=\"^http://investors\\.marchex\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http://ir\\.monster\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http://(?:ir|media)\\.radioshackcorporation\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http://investor\\.visa\\.com/\" to=\"https://phx.corporate-ir.net/\"/></ruleset>", "<ruleset name=\"Thomson Reuters (mismatches)\" default_off=\"mismatch\" f=\"Thomson-Reuters-mismatches.xml\"><exclusion pattern=\"^http://s[1-4]\\.reutersmedia\\.net/(?:resources/(?:images|media|r)|resources_v2/(?:image|j)s)/\"/><rule from=\"^http://investor\\.marvell\\.com/\" to=\"https://investor.marvell.com/\"/><rule from=\"^http://s[1-4]\\.reutersmedia\\.net/\" to=\"https://s1.reutersmedia.net/\"/></ruleset>", "<ruleset name=\"Thomson Reuters.com (partial)\" f=\"Thomson-Reuters.xml\"><exclusion pattern=\"^http://legalsolutions\\.thomsonreuters\\.com/+(?!favicon\\.ico|law-products/(?:_ui|onlineopinionV5|static|stylesheets)/|medias/)\"/><exclusion pattern=\"^http://newsandinsight\\.thomsonreuters\\.com/(?!favicon\\.ico$|(?:Help|Legal/Login|PrivacyPolicy|TermsOfUse)\\.aspx|uploadedimages/|UserSettings\\.aspx|Web/)\"/><securecookie host=\"^(?:assets\\.gcs|info\\.legalsolutions|myaccount|signon|thehub)\\.thomsonreuters\\.com$\" name=\".+\"/><rule from=\"^http://(assets\\.gcs|insidecareers|lconnect|legalsolutions|info\\.legalsolutions|myaccount|newsandinsight|signon|thehub)\\.thomsonreuters\\.com/\" to=\"https://$1.thomsonreuters.com/\"/></ruleset>", "<ruleset name=\"Thomson.com (partial)\" f=\"Thomson.com.xml\"><securecookie host=\"^(?:safe|(?:images|myaccount)\\.west)\\.thomson\\.com$\" name=\".+\"/><rule from=\"^http://(safe|myaccount\\.west)\\.thomson\\.com/\" to=\"https://$1.thomson.com/\"/></ruleset>", "<ruleset name=\"Thomson Reuters Life Sciences.com\" f=\"Thomson_Reuters_Life_Sciences.com.xml\"><rule from=\"^http://cortellis\\.thomsonreuterslifesciences\\.com/\" to=\"https://cortellis.thomsonreuterslifesciences.com/\"/></ruleset>", "<ruleset name=\"ThoughtStreams.io\" f=\"ThoughtStreams.io.xml\"><securecookie host=\"^thoughtstreams\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThoughtWorks.com\" f=\"ThoughtWorks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thoughtbot.com\" f=\"Thoughtbot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thp.io\" f=\"Thp.io.xml\"><rule from=\"^http://(?:www\\.)?thp\\.io/\" to=\"https://thp.io/\"/></ruleset>", "<ruleset name=\"Thread.com\" f=\"Thread.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threading Building Blocks.org\" f=\"Threading-Building-Blocks.xml\"><securecookie host=\"^\\.threadingbuildingblocks\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threat2Alert.com\" f=\"Threat2Alert.com.xml\"><securecookie host=\"^www\\.threat2alert\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMetrix.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ThreatMetrix.com-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?threatmetrix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMetrix.com (partial)\" default_off=\"failed ruleset test\" f=\"ThreatMetrix.com.xml\"><rule from=\"^http://(www\\.)?threatmetrix\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1threatmetrix.com/\"/></ruleset>", "<ruleset name=\"ThreatPost.com\" f=\"ThreatPost.xml\"><securecookie host=\"^\\.?threatpost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatTrack Security.com\" default_off=\"failed ruleset test\" f=\"ThreatTrack_Security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threatpost.ru\" f=\"Threatpost.ru.xml\"><securecookie host=\"^threatpost\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?threatpost\\.ru/\" to=\"https://threatpost.ru/\"/></ruleset>", "<ruleset name=\"Three\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Three.xml\"><rule from=\"^http://(?:www\\.)?three\\.ie/\" to=\"https://www.three.ie/\"/><rule from=\"^http://threestore\\.three\\.co\\.uk/\" to=\"https://threestore.three.co.uk/\"/></ruleset>", "<ruleset name=\"Threema-forum.de\" f=\"Threema-Forum.de.xml\"><securecookie host=\"^(www\\.)?threema-forum\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threema\" f=\"Threema.xml\"><securecookie host=\"^(www.|gateway.|shop\\.|myid.)?threema\\.ch\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thuisbezorgd.nl\" f=\"Thuisbezorgd.nl.xml\"><securecookie host=\"^(?:w*\\.)?thuisbezorgd\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thumbshots (partial)\" f=\"Thumbshots.xml\"><rule from=\"^http://thumbshots\\.com/\" to=\"https://thumbshots.com/\"/><rule from=\"^http://(www\\.)?thumbshots\\.(?:com|net)/(admin/|DesktopModules/|images/|[pP]ortals/|register\\.aspx|SecureLogin|Telerik\\.Web\\.UI\\.WebResource\\.axd)\" to=\"https://$1thumbshots.com/$2\"/><rule from=\"^http://(www\\.)?thumbshots\\.org/\" to=\"https://$1thumbshots.com/\"/><rule from=\"^http://open\\.thumbshots\\.(?:com|org)/\" to=\"https://open.thumbshots.com/\"/></ruleset>", "<ruleset name=\"Thumbzilla.com\" f=\"Thumbzilla.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunder Ranch Inc.com\" default_off=\"expired\" f=\"ThunderRanch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunderbird-Mail.DE\" f=\"Thunderbird-Mail.DE.xml\"><rule from=\"^http://thunderbird-mail\\.de/\" to=\"https://www.thunderbird-mail.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunderclap.it\" f=\"Thunderclap.it.xml\"><securecookie host=\"^www\\.thunderclap\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunderkick\" default_off=\"failed ruleset test\" f=\"Thunderkick.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thurrott.com\" f=\"Thurrott.com.xml\"><securecookie host=\"^\\.thurrott\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ti.to\" f=\"Ti.to.xml\"><rule from=\"^http://(?:www\\.)?ti(\\.to|to\\.io)/\" to=\"https://ti$1/\"/></ruleset>", "<ruleset name=\"TiMos.me\" f=\"TiMos.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tibet Action.net\" f=\"Tibet_Action.net.xml\"><securecookie host=\"^(?:www)?\\.tibetaction\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tickengo\" default_off=\"failed ruleset test\" f=\"Tickengo.xml\"><securecookie host=\"^tickengo\\.(?:com|fr)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tickengo\\.(ca|com|fr)/\" to=\"https://tickengo.$1/\"/><rule from=\"^http://fr\\.tickengo\\.ca/\" to=\"https://fr.tickengo.ca/\"/></ruleset>", "<ruleset name=\"TickerTech.com\" f=\"TickerTech.com.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?tickertech\\.com/\" to=\"https://secure.tickertech.com/\"/></ruleset>", "<ruleset name=\"Ticker Madness.com\" f=\"Ticker_Madness.com.xml\"><securecookie host=\"^www\\.tickermadness\\.com$\" name=\".+\"/><rule from=\"^http://www\\.tickermadness\\.com/\" to=\"https://www.tickermadness.com/\"/></ruleset>", "<ruleset name=\"TicketOne\" f=\"TicketOne.xml\"><securecookie host=\"^.+\\.ticketone\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ticketone\\.it/\" to=\"https://www.ticketone.it/\"/><rule from=\"^http://secure\\.ticketone\\.it/\" to=\"https://secure.ticketone.it/\"/></ruleset>", "<ruleset name=\"Ticket Driver\" f=\"Ticket_Driver.xml\"><securecookie host=\"^(?:w*\\.)?ticketdriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Ticket Factory\" f=\"Ticket_Factory.xml\"><securecookie host=\"^(?:www\\.)?theticketfactory\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ticket Online\" f=\"Ticket_Online.xml\"><securecookie host=\"^.*\\.ticketonline\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ticketonline\\.de/\" to=\"https://www.ticketonline.de/\"/><rule from=\"^http://secure\\.ticketonline\\.de/\" to=\"https://secure.ticketonline.de/\"/></ruleset>", "<ruleset name=\"Ticketcorner\" f=\"Ticketcorner.xml\"><rule from=\"^http://(?:www\\.)?ticketcorner\\.ch/\" to=\"https://www.ticketcorner.ch/\"/><rule from=\"^http://secure\\.ticketcorner\\.ch/\" to=\"https://secure.ticketcorner.ch/\"/></ruleset>", "<ruleset name=\"Ticketea.com (partial)\" f=\"Ticketea.com.xml\"><securecookie host=\"^www\\.ticketea\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TicketingNetworkEastMidlands\" default_off=\"failed ruleset test\" f=\"TicketingNetworkEastMidlands.xml\"><securecookie host=\"^(?:.+\\.)?(?:ticketingnetworkeastmidlands|ticketing\\.trch)\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://ticketingnetworkeastmidlands\\.co\\.uk/\" to=\"https://ticketingnetworkeastmidlands.co.uk/\"/><rule from=\"^http://www\\.ticketingnetworkeastmidlands\\.co\\.uk/\" to=\"https://www.ticketingnetworkeastmidlands.co.uk/\"/><rule from=\"^http://ticketing\\.trch\\.co\\.uk/\" to=\"https://ticketing.trch.co.uk/\"/></ruleset>", "<ruleset name=\"Ticketmaster (partial)\" f=\"Ticketmaster.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:billetnet\\.dk|billettservice\\.no|lippupalvelu\\.fi|ticketmaster\\.(?:de|nl))/(?!assets/|myAccount|resource/|static/|theme/|tm-\\w\\wprod\\.112\\.2O7\\.net/)\"/><securecookie host=\"^www\\.eticketing\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^\\.ticketmaster\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^de\\.ticketmaster\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:billet(?:net\\.dk|tservice\\.no)|lippupalvelu\\.fi|ticketmaster\\.(?:de|nl))/tm-(\\w\\w)prod\\.112\\.2O7\\.net/\" to=\"https://tm-$1prod.112.2o7.net/\"/><rule from=\"^http://(?:www\\.)?admission\\.com/(resourc|them)e/\" to=\"https://www.admission.com/$1e/\"/><rule from=\"^http://(?:www\\.)?billetnet\\.dk/\" to=\"https://www.billetnet.dk/\"/><rule from=\"^http://(?:www\\.)?eticketing\\.co\\.uk/\" to=\"https://www.eticketing.co.uk/\"/><rule from=\"^http://(?:www\\.)?lippupalvelu\\.fi/\" to=\"https://www.lippupalvelu.fi/\"/><rule from=\"^http://(?:www\\.)?ticket(?:ek|master)\\.cl/\" to=\"https://www.ticketek.cl/\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.(ca|com\\.(?:au|nz|mx)|ie)/favicon-rebrand\\.ico\" to=\"https://www.ticketmaster.$1/favicon-rebrand.ico\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.com/(app/|checkout/|h/|json/|member(?:$|\\?|/))\" to=\"https://www.ticketmaster.com/$1\"/><rule from=\"^http://(ds|mm|secure\\.store)\\.ticketmaster\\.com/\" to=\"https://$1.ticketmaster.com/\"/><rule from=\"^http://metrics\\.ticketmaster\\.com/\" to=\"https://ticketmaster-com.d2.sc.omtrdc.net/\"/><rule from=\"^http://ticketsnow\\.ticketmaster\\.com/(DataProviders/|Scripts/|TopCitiesDropDownListGenerator\\.aspx|UI/)\" to=\"https://ticketsnow.ticketmaster.com/$1\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.co\\.uk/(?:section)?(\\?.*)?$\" to=\"https://www.ticketmaster.co.uk/section/$1\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.co\\.uk/\" to=\"https://www.ticketmaster.co.uk/\"/><rule from=\"^http://reviews\\.ticketmaster\\.co\\.uk/(logging(?:$|\\?)|\\d+-\\w\\w_\\w\\w/\\d+/reviews\\.htm\\?.*format=embedded|static/)\" to=\"https://ticketmaster.ugc.bazaarvoice.com/$1\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.(de|es|nl)/\" to=\"https://www.ticketmaster.$1/\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.dk/\" to=\"https://www.billetnet.dk/\"/><rule from=\"^http://media\\.ticketmaster\\.eu/\" to=\"https://media.ticketmaster.eu/\"/><rule from=\"^http://(?:www\\.)?ticketnet\\.fr/(assets|static)/\" to=\"https://www.ticketnet.fr/$1/\"/><rule from=\"^http://(?:www\\.)?ticketweb\\.com/\" to=\"https://www.ticketweb.com/\"/><rule from=\"^http://(?:www\\.)?ticketweb\\.co\\.uk/(images/|INFO/|giftcards|member|partners/|section/|styles\\.css|twpurple\\.html|ukcontent\\.css|user/gb_northeast/order/|venuepages/|[\\w\\./-]+\\.html$|[\\w-]+/artist/\\d+)\" to=\"https://www.ticketweb.co.uk/$1\"/></ruleset>", "<ruleset name=\"ticketnet.fr (partial)\" f=\"Ticketnet.fr.xml\"><rule from=\"^http://(?:www\\.)?ticketnet\\.fr/(assets|static)/\" to=\"https://www.ticketnet.fr/$1/\"/></ruleset>", "<ruleset name=\"Ticketportal.sk\" f=\"Ticketportal.sk.xml\"><rule from=\"^http://(?:www\\.|ssl\\.)?ticketportal\\.sk/\" to=\"https://ssl.ticketportal.sk/\"/></ruleset>", "<ruleset name=\"Ticketpro (partial)\" f=\"Ticketpro.xml\"><securecookie host=\"^shop\\.ticketpro\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tickets.com (partial)\" default_off=\"failed ruleset test\" f=\"Tickets.com.xml\"><securecookie host=\"^broadcaster\\.email-tickets\\.com$\" name=\".+\"/><securecookie host=\"^purchasecdn\\.tickets\\.com$\" name=\".+\"/><rule from=\"^http://broadcaster\\.email-tickets\\.com/\" to=\"https://broadcaster.email-tickets.com/\"/><rule from=\"^http://(?:www\\.)?tickets\\.com/(images/|user(?:$|[?/]))\" to=\"https://www.tickets.com/$1\"/><rule from=\"^http://facebook\\.tickets\\.com/[^?]*(\\?.*)?\" to=\"https://www.facebook.com/pages/Ticketscom/43749304172$1\"/><rule from=\"^http://(?:frontline\\.)?images\\.tickets\\.com/\" to=\"https://images.tickets.com/\"/><rule from=\"^http://purchasecdn\\.tickets\\.com/\" to=\"https://purchasecdn.tickets.com/\"/><rule from=\"^http://youtube\\.tickets\\.com/[^?]*(\\?.*)?\" to=\"https://www.youtube.com/gototicketsdotcom$1\"/></ruleset>", "<ruleset name=\"Tickets.gwr.com\" f=\"Tickets.gwr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TicketsNow (partial)\" f=\"TicketsNow.xml\"><rule from=\"^http://(www\\.)?ticketsnow\\.com/(UI/)\" to=\"https://$1ticketsnow.com/$2\"/><rule from=\"^http://(www\\.)?ticketsnow\\.com/myTicketsNow/?\" to=\"https://$1ticketsnow.com/myTicketsNow/\"/><rule from=\"^http://(?:secure)?content\\.ticketsnow\\.com/\" to=\"https://securecontent.ticketsnow.com/\"/></ruleset>", "<ruleset name=\"Tictail.com (partial)\" f=\"Tictail.com.xml\"><securecookie host=\"^\\.ticktail\\.com$\" name=\"^(?:__ar_v4|mp_\\w{32}_mixpanel|optimizely\\w+|_te_)$\"/><securecookie host=\"^(?:www\\.)?tictail\\.com$\" name=\".+\"/><rule from=\"^http://(api\\.|www\\.)?tictail\\.com/\" to=\"https://$1tictail.com/\"/><rule from=\"^http://(?:blogassets|external\\.static)\\.tictail\\.com/\" to=\"https://d2q56xp1cg562x.cloudfront.net/\"/><rule from=\"^http://help\\.tictail\\.com/favicon\\.ico\" to=\"https://d3jyn100am7dxp.cloudfront.net/favicon.ico\"/></ruleset>", "<ruleset name=\"Tid.al (mismatched)\" default_off=\"mismatched\" f=\"Tid.al-problematic.xml\"><securecookie host=\"^news\\.tid\\.al$\" name=\".+\"/><rule from=\"^http://news\\.tid\\.al/\" to=\"https://news.tid.al/\"/></ruleset>", "<ruleset name=\"Tid.al (partial)\" f=\"Tid.al.xml\"><securecookie host=\"^tid\\.al$\" name=\".+\"/><rule from=\"^http://tid\\.al/\" to=\"https://tid.al/\"/><rule from=\"^http://cdna\\.tid\\.al/\" to=\"https://1b40d7834cd36cb17272-d318e241556db478f2443eab8244ec10.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"TidBITS\" f=\"TidBITS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tidal HiFi.com\" f=\"Tidal_HiFi.com.xml\"><securecookie host=\"^(?:go\\.|www\\.)?tidalhifi\\.com$\" name=\".+\"/><rule from=\"^http://((?:go|tracking|www)\\.)?tidalhifi\\.com/\" to=\"https://$1tidalhifi.com/\"/></ruleset>", "<ruleset name=\"tidaltv.com (partial)\" f=\"Tidaltv.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tidningsnatet.se (partial)\" f=\"Tidningsnatet.se.xml\"><securecookie host=\"^\\.tidningsnatet\\.se$\" name=\"(?:NXCLICK2|OAX)$\"/><rule from=\"^http://sifomedia\\.tidningsnatet\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"TierraNet.net\" f=\"TierraNet.xml\"><securecookie host=\"^(?:control|support)\\.tierra\\.net$\" name=\".*\"/><rule from=\"^http://tierra\\.net/\" to=\"https://www.tierra.net/\"/><rule from=\"^http://www\\.control\\.tierra\\.net/\" to=\"https://control.tierra.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tieteellisten seurain valtuuskunta\" f=\"Tieteellisten-seurain-valtuuskunta.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tieto.com (partial)\" f=\"Tieto.com.xml\"><exclusion pattern=\"^http://leansystemcommunity\\.portal\\.\"/><securecookie host=\"^\\.tieto\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^\\w+\\.portal\\.tieto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tieto\\.com/(?=customer-area(?:$|[?/])|misc/|profiles/\\w+/modules/|sites/)\" to=\"https://www.tieto.com/\"/><rule from=\"^http://easyedi\\.tieto\\.com/\" to=\"https://easyedi.tietoenator.com/\"/><rule from=\"^http://(\\w+)\\.portal\\.tieto\\.com/\" to=\"https://$1.portal.tieto.com/\"/></ruleset>", "<ruleset name=\"Tietoenator.com (partial)\" default_off=\"failed ruleset test\" f=\"Tietoenator.com.xml\"><rule from=\"^http://easyedi\\.tietoenator\\.com/\" to=\"https://easyedi.tietoenator.com/\"/></ruleset>", "<ruleset name=\"Tigase.org (partial)\" f=\"Tigase.org.xml\"><securecookie host=\"^projects\\.tigase\\.org$\" name=\".+\"/><rule from=\"^http://projects\\.tigase\\.org/\" to=\"https://projects.tigase.org/\"/></ruleset>", "<ruleset name=\"TigerDirect.com (partial)\" f=\"TigerDirect.xml\"><exclusion pattern=\"^http://(?:www\\.)?tigerdirect\\.com/+(?!(?:cgi|secure)(?:$|[?/])|css/)\"/><securecookie host=\"^biz\\.tigerdirect\\.com$\" name=\".+\"/><rule from=\"^http://tigerdirect\\.com/\" to=\"https://www.tigerdirect.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tiggersWelt.net\" f=\"TiggersWelt.net.xml\"><securecookie host=\"^ssl\\.tiggerswelt\\.net$\" name=\".+\"/><rule from=\"^http://webmail\\.tiggerswelt\\.net/\" to=\"https://ssl.tiggerswelt.net/webmail/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tigr.net\" f=\"Tigr.net.xml\"><rule from=\"^http://(?:www\\.)?tigr\\.net/\" to=\"https://tigr.net/\"/></ruleset>", "<ruleset name=\"Tiki-Toki.com\" f=\"Tiki-Toki.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiki.org\" f=\"Tiki.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilburg University\" f=\"Tilburg_University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://osso\\.uvt\\.nl:4443/\" to=\"https://osso.uvt.nl:4443/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tildedave.com\" f=\"Tildedave.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilera (partial)\" default_off=\"connection dropped\" f=\"Tilera.xml\"><securecookie host=\"^support\\.tilera\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilt.com\" f=\"Tilt.com.xml\"><exclusion pattern=\"^http://(?:blog|engineering|ambassador|stories|policies)\\.tilt\\.com\"/><rule from=\"^http://([\\w-]+\\.)?tilt\\.com/\" to=\"https://$1tilt.com/\"/></ruleset>", "<ruleset name=\"Tilted Windmill Press.com\" f=\"Tilted_Windmill_Press.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tim Minchin.com (partial)\" f=\"Tim_Minchin.com.xml\"><rule from=\"^http://cdn1\\.timminchin\\.com/\" to=\"https://d1g9yotx740lzx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tim Roes.de\" f=\"Tim_Roes.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tim Taubert.de\" f=\"Tim_Taubert.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Timbro.se\" default_off=\"broken\" f=\"Timbro.se.xml\"><rule from=\"^http://www\\.timbro\\.se/\" to=\"https://www.timbro.se/\"/><rule from=\"^http://timbro\\.se/\" to=\"https://timbro.se/\"/></ruleset>", "<ruleset name=\"Time2Play.mobi\" f=\"Time2Play.mobi.xml\"><securecookie host=\"^\\.time2play\\.mobi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeTrade.com (partial)\" f=\"TimeTrade.xml\"><exclusion pattern=\"^http://www\\.timetrade\\.com/(?!app/|book/|files/|td(?:$|[?/])|token/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeWeb.com\" f=\"TimeWeb.com.xml\"><securecookie host=\"^\\.timeweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeWeb.ru\" f=\"TimeWeb.xml\"><securecookie host=\"^(?:.*\\.)?timeweb\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeZero.ru\" f=\"TimeZero.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Time Clock Deals.com\" f=\"Time_Clock_Deals.com.xml\"><securecookie host=\"^(?:w*\\.)?timeclockdeals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Time Inc (partial)\" default_off=\"failed ruleset test\" f=\"Time_Inc.xml\"><securecookie host=\"^subscription\\.timeinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Time and Date.com (partial)\" f=\"Time_and_Date.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Times Printing Co. (partial)\" default_off=\"connection refused\" f=\"Times-Printing-Co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Times\" f=\"Times.xml\"><rule from=\"^http://(home|login)\\.thetimes\\.co\\.uk/\" to=\"https://$1.thetimes.co.uk/\"/></ruleset>", "<ruleset name=\"Times Higher Education.com\" f=\"Times_Higher_Education.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://timeshighereducation\\.com/\" to=\"https://www.timeshighereducation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Times Record News (partial)\" default_off=\"failed ruleset test\" f=\"Times_Record_News.xml\"><rule from=\"^http://(?:www\\.)?timesrecordnews\\.com/\" to=\"https://www.timesrecordnews.com/\"/><rule from=\"^http://media\\.timesrecordnews\\.com/\" to=\"https://images.scrippsing.com/\"/></ruleset>", "<ruleset name=\"TimesofMoney\" f=\"TimesofMoney.xml\"><securecookie host=\"^www\\.timesofmoney\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?timesofmoney\\.com/\" to=\"https://www.timesofmoney.com/\"/></ruleset>", "<ruleset name=\"Timex\" f=\"Timex.xml\"><securecookie host=\"^www\\.timex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinEye (partial)\" f=\"TinEye.xml\"><securecookie host=\"^www\\.tineye\\.com$\" name=\".*\"/><rule from=\"^http://www\\.pixid\\.ideeinc\\.com/\" to=\"https://pixid.ideeinc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinder\" f=\"Tinder.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinder Foundation.org (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Tinder_Foundation.org.xml\"><rule from=\"^http://(?:www\\.)?tinderfoundation\\.org/\" to=\"https://www.tinderfoundation.org/\"/></ruleset>", "<ruleset name=\"Tindie.com (partial)\" f=\"Tindie.com.xml\"><securecookie host=\"^www\\.tindie\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinfoil Security.com\" f=\"Tinfoil_Security.com.xml\"><securecookie host=\"^\\.tinfoilsecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ting.com\" f=\"Ting.com.xml\"><securecookie host=\"^(?:.*\\.)?ting\\.com$\" name=\".+\"/><rule from=\"^http://(?:(help\\.|static\\.)|www\\.)?ting\\.com/\" to=\"https://$1ting.com/\"/></ruleset>", "<ruleset name=\"Tinhte.vn\" f=\"Tinhte.vn.xml\"><securecookie host=\"^\\.tinhte\\.vn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinkerSoup.de\" f=\"TinkerSoup.de.xml\"><securecookie host=\"^\\.tinkersoup\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinkerforge.com (partial)\" f=\"Tinkerforge.com.xml\"><rule from=\"^http://(www\\.)?tinkerforge\\.com/(?=shop(?:$|[?/])|static/)\" to=\"https://$1tinkerforge.com/\"/></ruleset>", "<ruleset name=\"Tintup.com\" platform=\"mixedcontent\" f=\"Tintup.com.xml\"><securecookie host=\"^\\.tintup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiny.cc\" f=\"Tiny.cc.xml\"><securecookie host=\"^(?:\\.|www\\.)?tiny\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyBites\" f=\"TinyBites.xml\"><securecookie host=\"^\\.tinybytes\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyChat\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TinyChat.xml\"><exclusion pattern=\"^http://(?:www\\.)?tinychat\\.com/nsfw\"/><exclusion pattern=\"^http://(?:www\\.)?tinychat\\.com/api/find.room/lobby\\?site=nsfw\"/><rule from=\"^http://(?:www\\.)?tinychat\\.com/\" to=\"https://tinychat.com/\"/></ruleset>", "<ruleset name=\"TinyJPG.com\" f=\"TinyJPG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyLetter.com\" f=\"TinyLetter.com.xml\"><securecookie host=\"^app\\.tinyletter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyPNG\" f=\"TinyPNG.xml\"><rule from=\"^http://(?:www\\.)?tinypng\\.com/\" to=\"https://tinypng.com/\"/></ruleset>", "<ruleset name=\"TinyURL.com\" f=\"TinyURL.xml\"><securecookie host=\"^\\.tinyurl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiny Buddha.com (partial)\" default_off=\"failed ruleset test\" f=\"Tiny_Buddha.com.xml\"><rule from=\"^http://cdn\\.tinybuddha\\.com/\" to=\"https://cdn.tinybuddha.com/\"/></ruleset>", "<ruleset name=\"tinyapps.org\" f=\"Tinyapps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinydl\" default_off=\"expired, self-signed\" f=\"Tinydl.xml\"><securecookie host=\"^www\\.tinydl\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?tinydl\\.com/\" to=\"https://www.tinydl.com/\"/></ruleset>", "<ruleset name=\"Tinypass.com (false MCB)\" platform=\"mixedcontent\" f=\"Tinypass.com-falsemixed.xml\"><securecookie host=\"^\\.tinypass\\.com$\" name=\".+\"/><rule from=\"^http://(publisher|www)\\.tinypass\\.com/\" to=\"https://$1.tinypass.com/\"/></ruleset>", "<ruleset name=\"Tinypass.com (partial)\" f=\"Tinypass.com.xml\"><exclusion pattern=\"^http://publisher\\.tinypass\\.com/+(?!guide/(?:assets|media|plugins)/)\"/><exclusion pattern=\"^http://www\\.tinypass\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:cdn|code|dashboard|publisher|www)\\.)?tinypass\\.com/\" to=\"https://$1tinypass.com/\"/></ruleset>", "<ruleset name=\"tinyteenpass.com\" default_off=\"failed ruleset test\" f=\"Tinyteenpass.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tip4Commit.com\" f=\"Tip4Commit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tipico.de\" f=\"Tipico.de.xml\"><securecookie host=\"^\\.tipico\\.de$\" name=\"^affiliateId$\"/><securecookie host=\"^(?:www\\.)?tipico\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tipp10.com\" f=\"Tipp10.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tire Metro\" default_off=\"failed ruleset test\" f=\"Tire_Metro.xml\"><securecookie host=\"^(?:.*\\.)?tiremetroonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tirerack\" f=\"Tirerack.com.xml\"><rule from=\"^http://(?:www\\.)?tirerack\\.com/\" to=\"https://www.tirerack.com/\"/></ruleset>", "<ruleset name=\"Tires N' Wheels\" default_off=\"failed ruleset test\" f=\"Tires_N_Wheels.xml\"><securecookie host=\"^(?:.*\\.)?tiresnwheels\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tisarana Buddhist Monastery\" platform=\"mixedcontent\" f=\"Tisarana.ca.xml\"><securecookie host=\"^(?:www)?(?:\\.)?tisarana\\.ca$\" name=\".+\"/><rule from=\"^http://tisarana\\.ca/wp/wp-content/uploads/(.+)/x(.+)\\.pagespeed.+\" to=\"https://tisarana.ca/wp/wp-content/uploads/$1/$2\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiscali.it (partial)\" f=\"Tiscali.it.xml\"><securecookie host=\"^(?!mail\\.).\" name=\".\"/><rule from=\"^http://incontri\\.tiscali\\.it/\" to=\"https://www.meetic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TitanPad.com\" f=\"TitanPad.com.xml\"><securecookie host=\"^\\.titanpad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Titanfile.com\" f=\"Titanfile.com.xml\"><rule from=\"^http://(?:www\\.)?titanfile\\.com/\" to=\"https://www.titanfile.com/\"/></ruleset>", "<ruleset name=\"Titania.com\" f=\"Titania.com.xml\"><securecookie host=\"^www\\.titania\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?titania\\.com/\" to=\"https://www.titania.com/\"/></ruleset>", "<ruleset name=\"Titanic-Magazin.de\" f=\"Titanic-Magazin.de.xml\"><securecookie host=\"^www\\.titanic-magazin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Titanshare.to\" f=\"Titanshare.to.xml\"><securecookie host=\"^\\.titanshare\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tittygram.com\" f=\"Tittygram.com.xml\"><securecookie host=\"^\\.?tittygram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tittygram.ru\" f=\"Tittygram.ru.xml\"><securecookie host=\"^\\.tittygram\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tizen.org\" f=\"Tizen.org.xml\"><securecookie host=\"^(?:bugs|build|wiki)\\.tizen\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tjoos (partial)\" f=\"Tjoos.xml\"><rule from=\"^http://(www\\.)?tjoos\\.com/([iI])mg/\" to=\"https://$1tjoos.com/$2mg/\"/><rule from=\"^http://store\\.img0\\.tjoos\\.com/\" to=\"https://d1orxobvizj2av.cloudfront.net/\"/><rule from=\"^http://store\\.img1\\.tjoos\\.com/\" to=\"https://d3ivv5oi68ept2.cloudfront.net/\"/><rule from=\"^http://store\\.img2\\.tjoos\\.com/\" to=\"https://d1cqgyjxjycyec.cloudfront.net/\"/><rule from=\"^http://store\\.img3\\.tjoos\\.com/\" to=\"https://d35h6lli6lzgmi.cloudfront.net/\"/></ruleset>", "<ruleset name=\"tl63.co.uk\" default_off=\"connection reset\" f=\"Tl63.co.uk.xml\"><securecookie host=\"^www\\.tl63\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tl63\\.co\\.uk/\" to=\"https://www.tl63.co.uk/\"/></ruleset>", "<ruleset name=\"tld.pl\" f=\"Tld.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tleCDN.net\" f=\"TleCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tls.li\" f=\"Tls.li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tlsfun.de\" f=\"Tlsfun.de.xml\"><rule from=\"^http://([\\w-]+\\.)?tlsfun\\.de/\" to=\"https://$1tlsfun.de/\"/></ruleset>", "<ruleset name=\"Tmall.HK\" f=\"Tmall.HK.xml\"><rule from=\"^http://tmall\\.hk/\" to=\"https://www.tmall.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tmblr.co\" f=\"Tmblr.co.xml\"><rule from=\"^http://tmblr\\.co/+\" to=\"https://www.tumblr.com/\"/></ruleset>", "<ruleset name=\"Tmcnet.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Tmcnet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tmsz.com\" default_off=\"failed ruleset test\" f=\"Tmsz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TnAstatic.com\" f=\"TnAstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TnAflix.com (partial)\" f=\"Tnaflix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tns-counter.ru\" f=\"Tns-counter.ru.xml\"><securecookie host=\"^\\.tns-counter\\.ru$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toFOUR.net\" f=\"ToFOUR.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terms of Service; Didn't Read\" f=\"ToSDR.org.xml\"><rule from=\"^http://(?:www\\.)?tosdr\\.org/\" to=\"https://tosdr.org/\"/></ruleset>", "<ruleset name=\"To BTR.com (partial)\" f=\"To_BTR.com.xml\"><rule from=\"^http://tobtr\\.com/\" to=\"https://secure.blogtalkradio.com/\"/></ruleset>", "<ruleset name=\"The Toad Fly (partial)\" f=\"Toad_Fly.xml\"><rule from=\"^http://(www\\.)?thetoadfly\\.com/(favicon\\.ico|(?:my-account|order-tracking)(?:$|\\?|/)|wp-content/|wp-includes/)\" to=\"https://$1thetoadfly.com/$2\"/></ruleset>", "<ruleset name=\"Tocco AG\" f=\"Tocco.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Todo en Tinta\" default_off=\"failed ruleset test\" f=\"Todo_en_Tinta.xml\"><securecookie host=\"^\\.ahorroentinta\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Todoist\" f=\"Todoist.xml\"><rule from=\"^http://(?:www\\.)?todoist\\.com/\" to=\"https://todoist.com/\"/></ruleset>", "<ruleset name=\"TodoLy\" f=\"Todoly.xml\"><securecookie host=\"^(?:.+\\.)?todo\\.ly$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?todo\\.ly/\" to=\"https://todo.ly/\"/></ruleset>", "<ruleset name=\"TofinoSecurity\" f=\"TofinoSecurity.xml\"><rule from=\"^http://(?:www\\.)?tofinosecurity\\.com/\" to=\"https://www.tofinosecurity.com/\"/></ruleset>", "<ruleset name=\"Toga Hotels (partial)\" f=\"Toga_Hotels.xml\"><rule from=\"^http://(www\\.)?togahotels\\.com/(asset|template)s/\" to=\"https://$1togahotels.com/$2s/\"/></ruleset>", "<ruleset name=\"TogetherJS.com\" f=\"TogetherJS.com.xml\"><rule from=\"^http://www\\.togetherjs\\.com/\" to=\"https://togetherjs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toggl.com\" f=\"Toggl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TokBox.com\" f=\"TokBox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toke.dk\" f=\"Toke.dk.xml\"><rule from=\"^http://kau\\.toke\\.dk/\" to=\"https://kau.toke.dk/\"/></ruleset>", "<ruleset name=\"Toko Bitcoin.com\" f=\"Toko_Bitcoin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?tokobitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tokyo Linux Users Group\" default_off=\"self-signed\" f=\"Tokyo-Linux-Users-Group.xml\"><rule from=\"^http://(?:www\\.)?tlug\\.jp/\" to=\"https://tlug.jp/\"/><rule from=\"^http://lists\\.tlug\\.jp/\" to=\"https://lists.tlug.jp/\"/></ruleset>", "<ruleset name=\"Tokyo University of Science (partial)\" f=\"Tokyo_University_of_Science.xml\"><rule from=\"^http://www\\.tus\\.ac\\.jp/\" to=\"https://www.tus.ac.jp/\"/></ruleset>", "<ruleset name=\"Tokyo Toshokan\" f=\"Tokyotosho.xml\"><rule from=\"^http://(?:www\\.)?tokyotosho\\.info/\" to=\"https://www.tokyotosho.info/\"/><rule from=\"^http://(?:www\\.)?tokyotosho\\.se/\" to=\"https://www.tokyotosho.info/\"/><rule from=\"^http://(?:www\\.)?tokyo-tosho\\.net/\" to=\"https://www.tokyotosho.info/\"/><securecookie host=\"\\.tokyotosho\\.info$\" name=\"trac_.*\"/></ruleset>", "<ruleset name=\"Tolaris.com\" f=\"Tolaris.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tolvutaekni.is\" default_off=\"expired, missing certificate chain\" f=\"Tolvutaekni.xml\"><securecookie host=\"^\\.tolvutaekni\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TomTom.com (partial)\" f=\"TomTom-International.xml\"><securecookie host=\"^tomtom\\.com$\" name=\".+\"/><securecookie host=\"^(?:mydrive|mysport|business|places)?\\.tomtom\\.com$\" name=\".+\"/><securecookie host=\"^(?:es|fr|uk|nl|ru|fi|cz|au|de|se|dk|it|hu|no|tr|in|br|pl|us|pt|gr)?\\.support\\.tomtom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tom Lee.wtf\" f=\"Tom_Lee.wtf.xml\"><securecookie host=\"^\\.tomlee\\.wtf$\" name=\"^(__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tomorrow-Focus-Media.de\" default_off=\"self-signed\" f=\"Tomorrow-Focus-Media.de.xml\"><securecookie host=\"^(?:www\\.)?tomorrow-focus-media\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tompkins-Cortland Community College\" platform=\"mixedcontent\" f=\"Tompkins-CortlandCC.xml\"><rule from=\"^http://(?:www\\.)?tc3\\.edu/\" to=\"https://tc3.edu/\"/></ruleset>", "<ruleset name=\"Tom's of Maine (partial)\" default_off=\"failed ruleset test\" f=\"Toms-of-Maine.xml\"><rule from=\"^http://images\\.tomsofmainestore\\.com/\" to=\"https://images.tomsofmainestore.com/\"/><rule from=\"^http://(www\\.)?tomsofmainestore\\.com/webstore/(a4j/|login\\.do)\" to=\"https://www.tomsofmainestore.com/webstore/$2\"/></ruleset>", "<ruleset name=\"TonerGiant (partial)\" f=\"TonerGiant.xml\"><rule from=\"^http://(www\\.)?tonergiant\\.co\\.uk/(css/|favicon\\.ico|includes/|login\\.asp|media/|version9/|viewBasket\\.asp)\" to=\"https://$1tonergiant.co.uk/$2\"/></ruleset>", "<ruleset name=\"tony.xyz\" default_off=\"failed ruleset test\" f=\"Tony.xyz.xml\"><rule from=\"^http://(?:www\\.)?tony\\.xyz/\" to=\"https://tony.xyz/\"/></ruleset>", "<ruleset name=\"Tony Bianco\" platform=\"mixedcontent\" f=\"TonyBianco.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Zhaocheng Tan\" f=\"TonyZTan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Arcieri.com\" f=\"Tony_Arcieri.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Yang Photography\" default_off=\"mismatched\" f=\"Tony_Yang_Photography.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toofishes.net\" default_off=\"expired\" platform=\"cacert\" f=\"Toofishes.net.xml\"><rule from=\"^http://(?:www\\.)?toofishes\\.net/\" to=\"https://www.toofishes.net/\"/><rule from=\"^http://code\\.toofishes\\.net/\" to=\"https://code.toofishes.net/\"/></ruleset>", "<ruleset name=\"Toogl.com (partial)\" default_off=\"failed ruleset test\" f=\"Toogl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tookapic.com (partial)\" f=\"Tookapic.com.xml\"><securecookie host=\"^\\.tookapic\\.com$\" name=\".+\"/><rule from=\"^http://www\\.tookapic\\.com/\" to=\"https://tookapic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ToolbarBrowser\" default_off=\"mismatched\" f=\"ToolbarBrowser.xml\"><rule from=\"^http://(?:www\\.)?toolbarbrowser\\.com/\" to=\"https://toolbarbrowser.com/\"/></ruleset>", "<ruleset name=\"toonpool.com (expired)\" default_off=\"expired\" f=\"Toonpool-expired.xml\"><exclusion pattern=\"^http://(?:blog|shop)\\.\"/><securecookie host=\"^.*\\.toonpool\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?toonpool\\.com/\" to=\"https://www.toonpool.com/\"/></ruleset>", "<ruleset name=\"toonpool.com (partial)\" default_off=\"failed ruleset test\" f=\"Toonpool.xml\"><rule from=\"^http://shop\\.toonpool\\.com/\" to=\"https://shop.toonpool.com/\"/></ruleset>", "<ruleset name=\"ToorCon.net\" f=\"ToorCon.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"top.de\" f=\"Top.de.xml\"><securecookie host=\"^top\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopBuy.com.au\" f=\"TopBuy.com.au.xml\"><securecookie host=\"^(?:.*\\.)?topbuy\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopCoder.com (partial)\" f=\"TopCoder.xml\"><exclusion pattern=\"^http://help\\.topcoder\\.com/\"/><securecookie host=\"^(?:.*\\.)?topcoder\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopFox.co.uk\" f=\"TopFox.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopOption.com (partial)\" f=\"TopOption.com.xml\"><exclusion pattern=\"^http://www\\.topoption.com/+(?!AppProxy/|ContactUsmediaProxy/|css/|favicon\\.ico|homemediaProxy/|images/)\"/><securecookie host=\"^(?:myaccount\\.|widgets\\.)?topoption\\.com$\" name=\".+\"/><securecookie host=\"^\\.topoption\\.com$\" name=\"^(?:apTracker|campaignId|subCampaignId)$\"/><rule from=\"^http://((?:myaccount|widgets|www)\\.)?topoption\\.com/\" to=\"https://$1topoption.com/\"/></ruleset>", "<ruleset name=\"Top Universities\" default_off=\"expired, mismatched, self-signed\" f=\"Top_Universities.xml\"><rule from=\"^http://(?:www\\.)?topuniversities\\.com/\" to=\"https://www.topuniversities.com/\"/></ruleset>", "<ruleset name=\"TopatoCo\" f=\"TopatoCo.xml\"><securecookie host=\"^(?:www\\.)?topatoco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Topiama.com\" f=\"Topiama.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tor2Web\" f=\"Tor2Web.xml\"><exclusion pattern=\"^http://wiki\\.tor2web\\.org\"/><rule from=\"^http://([^/]+)\\.tor2web\\.(org|com)/\" to=\"https://$1.tor2web.org/\"/></ruleset>", "<ruleset name=\"TorGuard.net\" f=\"TorGuard.xml\"><securecookie host=\"^\\.?torguard\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorLock.com\" f=\"TorLock.com.xml\"><securecookie host=\"^(?:w*\\.)?torlock\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.torlock\\.com/\" to=\"https://tlock-16e3.kxcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torbay.gov.uk (partial)\" f=\"Torbay.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torbit (partial)\" default_off=\"failed ruleset test\" f=\"Torbit.xml\"><securecookie host=\"^\\.torbit\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?odi\\.io|(?:secure\\.|www\\.)?torbit\\.com)/\" to=\"https://secure.torbit.com/\"/><rule from=\"^http://torbit\\.odn\\.io/\" to=\"https://torbit.odn.io/\"/><rule from=\"^http://insight\\.torbit\\.com/\" to=\"https://insight.torbit.com/\"/></ruleset>", "<ruleset name=\"Torcache.net\" f=\"Torcache.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torchbox.com\" f=\"Torchbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torchlight game.com\" default_off=\"expired, self-signed\" f=\"Torchlight_game.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tornado Web.org\" default_off=\"mismatched\" f=\"Tornado_Web.org.xml\"><rule from=\"^http://(?:www\\.)?tornadoweb\\.org/\" to=\"https://www.tornadoweb.org/\"/></ruleset>", "<ruleset name=\"The Star.com (partial)\" f=\"Toronto-Star.xml\"><securecookie host=\"^\\.\" name=\"^s_\\w\"/><rule from=\"^http://thestar\\.com/\" to=\"https://www.thestar.com/\"/><rule from=\"^http://n\\.thestar\\.com/\" to=\"https://s.thestar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tor Project\" f=\"Torproject.xml\"><exclusion pattern=\"^http://torperf\\.torproject\\.org/\"/><securecookie host=\"^(?:.*\\.)?torproject\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?torproject\\.org/\" to=\"https://$1torproject.org/\"/></ruleset>", "<ruleset name=\"Torrent.tm (partial)\" f=\"Torrent.tm.xml\"><securecookie host=\"^\\.torrent\\.tm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentButler\" f=\"TorrentButler.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrent Day\" f=\"TorrentDay.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentFreak.com\" f=\"TorrentFreak.com.xml\"><securecookie host=\"^(?:w*\\.)?torrentfreak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentFunk.com\" f=\"TorrentFunk.com.xml\"><securecookie host=\"^\\.torrentfunk\\.com$\" name=\"\"/><rule from=\"^http://cdn\\.torrentfunk\\.com/\" to=\"https://tfunk-16e3.kxcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentPrivacy.com (partial)\" f=\"TorrentPrivacy.xml\"><exclusion pattern=\"^http://torrentprivacy\\.com/+(?!css/|favicon\\.ico|img/|index\\.php\\?mod=(?:v2_login|v2_support)(?:$|&))\"/><rule from=\"^http://www\\.torrentprivacy\\.com/\" to=\"https://torrentprivacy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentR.eu\" f=\"TorrentR.eu.xml\"><securecookie host=\"^(?:www)?\\.torrentr\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentShack\" f=\"TorrentShack.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentbit.net (partial)\" f=\"Torrentbit.net.xml\"><securecookie host=\"^\\.torrentbit\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrentleechdotorg\" f=\"Torrentleech.org.xml\"><securecookie host=\"^(?:.*\\.)?torrentleech.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrents.to (partial)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Torrents.to.xml\"><securecookie host=\"^\\.torrents\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentsmirror.com\" f=\"Torrentsmirror.xml\"><securecookie host=\"(?:www\\.)?torrentsmirror\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentz-Proxy.com\" f=\"Torrentz-Proxy.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentz.to\" f=\"Torrentz.to.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentz\" f=\"Torrentz.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorreyCommerce.net\" default_off=\"failed ruleset test\" f=\"TorreyCommerce.net.xml\"><securecookie host=\"^\\.torreycommerce\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorreyCommerce (partial)\" default_off=\"failed ruleset test\" f=\"TorreyCommerce.xml\"><rule from=\"^http://(www\\.)?torreycommerce\\.com/(cdn-cgi/ping|css/|store_image/|Public/|Style/)\" to=\"https://$1torreycommerce.com/$2\"/></ruleset>", "<ruleset name=\"Torservers\" f=\"Torservers.xml\"><rule from=\"^http://(?:www\\.)?torservers\\.net/\" to=\"https://www.torservers.net/\"/><rule from=\"^http://blog\\.torservers\\.net/\" to=\"https://blog.torservers.net/\"/></ruleset>", "<ruleset name=\"TortoiseGit.org\" f=\"TortoiseGit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torus Knot.com\" default_off=\"expired\" f=\"Torus_Knot.com.xml\"><rule from=\"^http://(?:www\\.)?torusknot\\.com/\" to=\"https://torusknot.com/\"/></ruleset>", "<ruleset name=\"Toshiba.co.jp (partial)\" f=\"Toshiba.co.jp.xml\"><exclusion pattern=\"^http://www\\.toshiba\\.co\\.jp/index_j3.htm\"/><rule from=\"^http://www\\.toshiba\\.co\\.jp/\" to=\"https://www.toshiba.co.jp/\"/></ruleset>", "<ruleset name=\"Toster.ru\" f=\"Toster.ru.xml\"><rule from=\"^http://www\\.toster\\.ru/\" to=\"https://toster.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TotalBarcode.com\" f=\"TotalBarcode.com.xml\"><securecookie host=\"^www\\.totalbarcode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Boox\" f=\"Total_Boox.xml\"><securecookie host=\"^(?:w*\\.)?totalboox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Choice Hosting (partial)\" f=\"Total_Choice_Hosting.xml\"><securecookie host=\".+\\.totalchoicehosting\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.tchmachines\\.com/\" to=\"https://$1.tchmachines.com/\"/><rule from=\"^http://totalchoicehosting\\.com/\" to=\"https://www.totalchoicehosting.com/\"/><rule from=\"^http://(billing|blog|domains|forums|status|support|www)\\.totalchoicehosting\\.com/\" to=\"https://$1.totalchoicehosting.com/\"/></ruleset>", "<ruleset name=\"Total Eyecare\" f=\"Total_Eyecare.xml\"><securecookie host=\"^(?:w*\\.)?totalicare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Fan Shop.net\" default_off=\"failed ruleset test\" f=\"Total_Fan_Shop.net.xml\"><securecookie host=\"^\\.(?:www\\.)?totalfanshop\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Investor\" default_off=\"failed ruleset test\" f=\"Total_Investor.xml\"><securecookie host=\"^(?:www)?\\.totalinvestor\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?totalinvestor\\.co\\.uk/\" to=\"https://www.totalinvestor.co.uk/\"/><rule from=\"^http://userfiles-m\\.totalinvestor\\.co\\.uk/\" to=\"https://d14vj0hj6x9324.cloudfront.net/\"/><rule from=\"^http://userfiles-s\\.totalinvestor\\.co\\.uk/\" to=\"https://d2w8arlr69kjmg.cloudfront.net/\"/><rule from=\"^http://userfiles-xs\\.totalinvestor\\.co\\.uk/\" to=\"https://d3tydccictwpfl.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Total Web Solutions (partial)\" default_off=\"failed ruleset test\" f=\"Total_Web_Solutions.xml\"><securecookie host=\".+\\.totalwebsecure\\.com$\" name=\".+\"/><securecookie host=\"^store\\.totalwebsolutions\\.com$\" name=\".+\"/><rule from=\"^http://vps-unixweb([1-6])\\.totalhostingplus\\.com/\" to=\"https://vps-unixweb$1.totalhostingplus.com/\"/><rule from=\"^http://(merchant|order)\\.totalwebsecure\\.com/\" to=\"https://$1.totalwebsecure.com/\"/><rule from=\"^http://store\\.totalwebsolutions\\.com/\" to=\"https://store.totalwebsolutions.com/\"/></ruleset>", "<ruleset name=\"Totem\" f=\"Totem.xml\"><securecookie host=\"^(?:.*\\.)?totemapp\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?totemapp\\.com/\" to=\"https://www.totemapp.com/\"/><rule from=\"^http://([\\w\\-]+)\\.totemapp\\.com/\" to=\"https://$1.totemapp.com/\"/></ruleset>", "<ruleset name=\"totse2\" default_off=\"self-signed\" f=\"Totse2.xml\"><securecookie host=\"^totse\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?totse\\.com/\" to=\"https://totse.com/\"/></ruleset>", "<ruleset name=\"TouchCommerce (partial)\" f=\"TouchCommerce.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([\\w\\-]+)\\.inq\\.com/\" to=\"https://$1.inq.com/\"/><rule from=\"^http://go\\.touchcommerce\\.com/(cs|image|r)s/\" to=\"https://na-j.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"TouchNet Information Systems (partial)\" f=\"TouchNet_Information_Systems.xml\"><securecookie host=\"^secure\\.touchnet\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.touchnet\\.com/\" to=\"https://secure.touchnet.com/\"/></ruleset>", "<ruleset name=\"Touchandtravel.de\" f=\"Touchandtravel.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Touchstone Network.net\" f=\"Touchstone_Network.xml\"><securecookie host=\"^idp\\.touchstonenetwork\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tourism and Events Queensland (partial)\" default_off=\"failed ruleset test\" f=\"Tourism_and_Events_Queensland.xml\"><securecookie host=\"^atdw\\.tq\\.com\\.au$\" name=\".+\"/><rule from=\"^http://atdw\\.tq\\.com\\.au/\" to=\"https://atdw.tq.com.au/\"/></ruleset>", "<ruleset name=\"TowerData.com (partial)\" f=\"TowerData.com.xml\"><securecookie host=\"^(?:client|dashboard)\\.towerdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TownNews.com\" f=\"TownNews.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?townnews365\\.com/(?!content/|favicon\\.ico)\"/><securecookie host=\"^townnews365-dot-com\\.bloxcms\\.com$\" name=\".+\"/><securecookie host=\"^secure\\.townnews\\.com$\" name=\".+\"/><rule from=\"^http://(?:townnews365-dot-com\\.bloxcms|(?:www\\.)?townnews365)\\.com/\" to=\"https://townnews365-dot-com.bloxcms.com/\"/><rule from=\"^http://(secure|stats)\\.townnews\\.com/\" to=\"https://$1.townnews.com/\"/><rule from=\"^http://support\\.townnews\\.com/(\\?.*)?$\" to=\"https://secure.townnews.com/support.townnews.com/custlogin/$1\"/><rule from=\"^http://bloximages\\.(chicago2|newyork1)\\.vip\\.townnews\\.com/\" to=\"https://bloximages.$1.vip.townnews.com/\"/></ruleset>", "<ruleset name=\"Townsville Bottom Fishing Charters.com.au (partial)\" default_off=\"failed ruleset test\" f=\"Townsville_Bottom_Fishing_Charters.com.au.xml\"><rule from=\"^http://(www\\.)?townsvillebottomfishingcharters\\.com\\.au/(?=BrowserPreview_tmp_01\\.jpg|cdn-cgi/ping|favicon\\.ico|images/|media/|plugins/|spacer\\.gif|templates/)\" to=\"https://$1townsvillebottomfishingcharters.com.au/\"/></ruleset>", "<ruleset name=\"Tox.chat\" f=\"Tox.chat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tox.im\" f=\"Tox.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toxme.se\" f=\"Toxme.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ToyFoundry (partial)\" default_off=\"failed ruleset test\" f=\"ToyFoundry.xml\"><securecookie host=\"^(?:www\\.)?toyfoundry\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toyota.es (partial)\" f=\"Toyota.es.xml\"><rule from=\"^http://www2\\.toyota\\.es/\" to=\"https://www2.toyota.es/\"/></ruleset>", "<ruleset name=\"Toys R Us.com (partial)\" f=\"Toys_R_Us.com.xml\"><exclusion pattern=\"^http://www\\.toysrus\\.com/+(?!cms_widgets/|css/|favicon\\.ico|graphics/|images/|include/|min-cat/|onlineopinionV5/|product/index\\.jsp|regCookie\\.jsp)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tpd.sk\" f=\"Tpd.sk.xml\"><rule from=\"^http://(?:www\\.)?tpd\\.sk/\" to=\"https://www.tpd.sk/\"/></ruleset>", "<ruleset name=\"Tpfrb.dk\" f=\"Tpfrb.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?tpfrb\\.dk/\" to=\"https://tpfrb.dk/\"/></ruleset>", "<ruleset name=\"Tr.im\" f=\"Tr.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tr0n.net\" default_off=\"self-signed\" f=\"Tr0n.net.xml\"><rule from=\"^http://(?:www\\.)?tr0n\\.net/\" to=\"https://www.tr0n.net/\"/></ruleset>", "<ruleset name=\"TracFone.com (redirects)\" default_off=\"Redirect loop\" f=\"TracFone.com.xml\"><securecookie host=\"^www\\.tracfone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tracfone\\.com/\" to=\"https://www.tracfone.com/\"/></ruleset>", "<ruleset name=\"TracFone Wireless.com (partial)\" f=\"TracFone_Wireless.com.xml\"><securecookie host=\"^media\\.tracfonewireless\\.com$\" name=\".+\"/><rule from=\"^http://media\\.tracfonewireless\\.com/\" to=\"https://media.tracfonewireless.com/\"/></ruleset>", "<ruleset name=\"Trace Register (partial)\" f=\"Trace_Register.xml\"><rule from=\"^http://cdn\\.traceregister\\.com/\" to=\"https://cdn.traceregister.com/\"/></ruleset>", "<ruleset name=\"Trachtenshop24.de\" f=\"Trachtenshop24.de.xml\"><rule from=\"^http://www\\.trachtenshop24\\.de/\" to=\"https://www.trachtenshop24.de/\"/></ruleset>", "<ruleset name=\"Trackalyzer\" f=\"Trackalyzer.xml\"><securecookie host=\"^(?:.*\\.)?trackalyzer\\.com$\" name=\".*\"/><rule from=\"^http://formalyzer\\.com/\" to=\"https://trackalyzer.com/\"/><rule from=\"^http://(www\\.)?trackalyzer\\.com/\" to=\"https://$1trackalyzer.com/\"/><rule from=\"^http://t\\d\\.trackalyzer\\.com/trackalyze(?:_secure)?\\.(asp|js)\" to=\"https://trackalyzer.com/trackalyze_secure.$1\"/><rule from=\"^http://t\\d\\.trackalyzer\\.com/0\\.gif\" to=\"https://trackalyzer.com/0.gif\"/></ruleset>", "<ruleset name=\"Tracker-Software.com\" f=\"Tracker-Software.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrackingPoint (partial)\" f=\"TrackingPoint.xml\"><rule from=\"^http://(?:www\\.)?tracking-point\\.com/(favicon\\.ico|modules/|sites/|(?:labs|user)(?:$|\\?|/))\" to=\"https://tracking-point.com/$1\"/></ruleset>", "<ruleset name=\"Traction-Digital.com (partial)\" f=\"Traction-Digital.com.xml\"><securecookie host=\"^\\.traction-digital\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://cdn\\.transaction-digital\\.com/\" to=\"https://dujdlx1yovuet.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TradeBlock.com\" f=\"TradeBlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeKing.com (partial)\" f=\"TradeKing.com.xml\"><rule from=\"^http://((?:community|investor|static-investor|www)\\.)?tradeking\\.com/\" to=\"https://$1tradeking.com/\"/></ruleset>", "<ruleset name=\"TradeLeaks.com\" f=\"TradeLeaks.com.xml\"><securecookie host=\"^\\.tradeleaks\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeMore Margin.com\" f=\"TradeMore_Margin.com.xml\"><securecookie host=\"^\\.trademoremargin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeNetworks (partial)\" f=\"TradeNetworks.xml\"><securecookie host=\"^billing\\.tradenetworks\\.com$\" name=\".+\"/><rule from=\"^http://(billing|download)\\.tradenetworks\\.com/\" to=\"https://$1.tradenetworks.com/\"/></ruleset>", "<ruleset name=\"TradePub.com (false MCB)\" platform=\"mixedcontent\" f=\"TradePub.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?tradepub\\.com/(?!body_styles\\.css|data/|favicon\\.ico)\" to=\"https://www.tradepub.com/\"/></ruleset>", "<ruleset name=\"Tradedoubler.com (partial)\" f=\"Tradedoubler.xml\"><exclusion pattern=\"^http://(?:anet|clk|clk\\w\\w|imp\\w\\w|pdt|star\\w\\w|tracker)\\.tradedoubler\\.com/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(anet|clk|clk\\w\\w|hst|img|imp\\w\\w|login|pdt|prod|publisher|solutions|star\\w\\w|tracker)\\.tradedoubler\\.com/\" to=\"https://$1.tradedoubler.com/\"/></ruleset>", "<ruleset name=\"tradeinchecker.com\" f=\"Tradeinchecker.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tradelab (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Tradelab-problematic.xml\"><rule from=\"^http://(?:www\\.)?tradelab\\.fr/\" to=\"https://www.tradelab.fr/\"/></ruleset>", "<ruleset name=\"Tradelab (partial)\" f=\"Tradelab.xml\"><rule from=\"^http://cdn\\.tradelab\\.fr/\" to=\"https://cdn.tradelab.fr/\"/></ruleset>", "<ruleset name=\"Trademarkia.com\" f=\"Trademarkia.com.xml\"><rule from=\"^http://(www\\.)?trademarkia\\.com/(?=about-trademarkia/privacy\\.aspx|css/|fancybox/|fonts/|images/|js/|login\\.aspx|services/)\" to=\"https://$1trademarkia.com/\"/></ruleset>", "<ruleset name=\"tradepub.com (partial)\" f=\"Tradepub.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tradepub\\.com/+(?!body_styles\\.css|c/|data/|favicon\\.ico)\"/><rule from=\"^http://tradepub\\.com/\" to=\"https://www.tradepub.com/\"/><rule from=\"^http://img\\.tradepub\\.com/\" to=\"https://netline.cachefly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Holder (partial)\" f=\"Traffic-Holder.xml\"><rule from=\"^http://76\\.9\\.16\\.34/\" to=\"https://secure.trafficholder.com/\"/><rule from=\"^http://(?:secure\\.|www\\.)?trafficholder\\.com/\" to=\"https://secure.trafficholder.com/\"/></ruleset>", "<ruleset name=\"Traffic Shop\" f=\"Traffic-Shop.xml\"><securecookie host=\"^www\\.trafficshop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrafficJunky.net\" f=\"TrafficJunky.xml\"><securecookie host=\"^(?:marketplace|www)\\.trafficjunky\\.net$\" name=\".+\"/><rule from=\"^http://((?:ads|cdn\\d*|marketplace|pt|www)\\.)?trafficjunky\\.net/\" to=\"https://$1trafficjunky.net/\"/></ruleset>", "<ruleset name=\"TrafficPrivacy.com\" f=\"TrafficPrivacy.xml\"><securecookie host=\"^trafficprivacy\\.com$\" name=\".+\"/><rule from=\"^http://www\\.trafficprivacy\\.com/\" to=\"https://trafficprivacy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Factory.biz\" f=\"Traffic_Factory.biz.xml\"><securecookie host=\"^main\\.trafficfactory\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Force.com\" f=\"Traffic_Force.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.ht\\.trafficforce\\.com/\" to=\"https://cdnes.trafficforce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Haus.com (partial)\" f=\"Traffic_Haus.xml\"><securecookie host=\"^syndication\\.traffichaus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Safety Marketing.gov\" default_off=\"mismatched\" f=\"Traffic_Safety_Marketing.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://trafficsafetymarketing\\.gov/\" to=\"https://www.trafficsafetymarketing.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trafficfacts.com\" default_off=\"failed ruleset test\" f=\"Trafficfacts.com.xml\"><rule from=\"^http://rt\\.trafficfacts\\.com/\" to=\"https://rt.trafficfacts.com/\"/></ruleset>", "<ruleset name=\"trafficmaxx (partial)\" f=\"Trafficmaxx.xml\"><securecookie host=\"^.*\\.traffixmaxx\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trail of Bits.com\" f=\"Trail_of_Bits.com.xml\"><securecookie host=\"^\\.trailofbits\\.com$\" name=\".+\"/><rule from=\"^http://trailofbits\\.com/\" to=\"https://www.trailofbits.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Training Industry.com\" f=\"Training_Industry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trakehner-nord-west.de\" f=\"Trakehner-nord-west.de.xml\"><securecookie host=\"^(www\\.)?trakehner-nord-west\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?trakehner-nord-west\\.de/\" to=\"https://www.trakehner-nord-west.de/\"/></ruleset>", "<ruleset name=\"trakk247.com\" default_off=\"failed ruleset test\" f=\"Trakk247.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransIP.nl\" f=\"TransIP.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trans Marine\" f=\"Trans_Marine.xml\"><securecookie host=\"^(?:www)?\\.transmarine\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transact Auto\" default_off=\"connection reset\" f=\"Transact_Auto.xml\"><rule from=\"^http://(?:www\\.)?transactauto\\.com/\" to=\"https://transactauto.com/\"/></ruleset>", "<ruleset name=\"Transcend.org\" f=\"Transcend.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransferWise.com (partial)\" f=\"TransferWise.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"transformationmadeeasy.com (partial)\" f=\"Transformationmadeeasy.com.xml\"><rule from=\"^http://(?:www\\.)?(?:ask-inc|transformationmadeeasy)\\.com/\" to=\"https://www.transformationmadeeasy.com/\"/></ruleset>", "<ruleset name=\"Transformative Works.org (mismatched)\" default_off=\"mismatched\" f=\"Transformative_Works.org-problematic.xml\"><rule from=\"^http://elections\\.transformativeworks\\.org/\" to=\"https://elections.transformativeworks.org/\"/></ruleset>", "<ruleset name=\"Transformative Works.org (partial)\" default_off=\"failed ruleset test\" f=\"Transformative_Works.org.xml\"><rule from=\"^http://(?:www\\.)?transformativeworks\\.org/\" to=\"https://transformativeworks.org/\"/></ruleset>", "<ruleset name=\"Transifex.net (expired)\" default_off=\"expired\" f=\"Transifex.net.xml\"><rule from=\"^http://(?:www\\.)?transifex\\.net/\" to=\"https://www.transifex.net/\"/></ruleset>", "<ruleset name=\"Transifex.com (partial)\" f=\"Transifex.xml\"><securecookie host=\"^www\\.transifex\\.com$\" name=\".+\"/><rule from=\"^http://status\\.transifex\\.com/\" to=\"https://transifex.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transit.land\" f=\"Transit.land.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransitionNetwork.org\" default_off=\"failed ruleset test\" f=\"TransitionNetwork.org.xml\"><rule from=\"^http://(?:www\\.)?transitionnetwork\\.org/\" to=\"https://www.transitionnetwork.org/\"/></ruleset>", "<ruleset name=\"TranslateThi.is (partial)\" f=\"TranslateThi.is.xml\"><rule from=\"^http://x\\.translateth\\.is/\" to=\"https://s3.amazonaws.com/x.translateth.is/\"/></ruleset>", "<ruleset name=\"Translatewiki.net\" default_off=\"failed ruleset test\" f=\"Translatewiki.net.xml\"><rule from=\"^http://(?:www\\.)?translatewiki\\.net/\" to=\"https://translatewiki.net/\"/></ruleset>", "<ruleset name=\"Translation Project.org\" f=\"Translation_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Translink\" default_off=\"failed ruleset test\" f=\"Translink.xml\"><securecookie host=\"^w*\\.translink.co.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?translink\\.co\\.uk/\" to=\"https://www.translink.co.uk/\"/></ruleset>", "<ruleset name=\"Transmission BT.com (partial)\" f=\"Transmission.xml\"><securecookie host=\"^trac\\.transmissionbt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transmode.se\" f=\"Transmode.se.xml\"><rule from=\"^http://(?:www\\.)?transmode\\.se/+\" to=\"https://www.transmode.com/\"/><rule from=\"^http://tac\\.transmode\\.org/\" to=\"https://tac.transmode.org/\"/></ruleset>", "<ruleset name=\"Transmode\" f=\"Transmode.xml\"><securecookie host=\"^(?:.*\\.)?transmode\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transparency.org\" f=\"Transparency.org.xml\"><securecookie host=\"^www\\.transparency\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transparency Toolkit.org\" f=\"Transparency_Toolkit.org.xml\"><securecookie host=\"^\\.transparencytoolkit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TfL.gov.uk (partial)\" f=\"Transport_for_London.xml\"><exclusion pattern=\"^http://(?:art|blog|content|countdown|cyclestories|info|cisitorshop)\\.tfl\\.gov\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transportation.gov\" f=\"Transportation.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transportstyrelsen.se\" platform=\"mixedcontent\" f=\"Transportstyrelsen.se.xml\"><rule from=\"^http://www\\.transportstyrelsen\\.se/\" to=\"https://www.transportstyrelsen.se/\"/><rule from=\"^http://transportstyrelsen\\.se/\" to=\"https://transportstyrelsen.se/\"/></ruleset>", "<ruleset name=\"Transversal.com\" f=\"Transversal.com.xml\"><rule from=\"^http://(?:www\\.)?transversal\\.com/\" to=\"https://www.transversal.com/\"/></ruleset>", "<ruleset name=\"trappedinsidethecomputer.net (partial)\" default_off=\"failed ruleset test\" f=\"Trappedinsidethecomputer.net.xml\"><securecookie host=\"^vishakeswwwabcde\\.trappedinsidethecomputer\\.net$\" name=\".+\"/><rule from=\"^http://vishakeswwwabcde\\.trappedinsidethecomputer\\.net/\" to=\"https://vishakeswwwabcde.trappedinsidethecomputer.net/\"/></ruleset>", "<ruleset name=\"Trash-Mail.com\" f=\"Trash-Mail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trash.net (partial)\" platform=\"cacert\" f=\"Trash.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trashmail\" default_off=\"failed ruleset test\" f=\"Trashmail.xml\"><securecookie host=\"^\\.?ssl\\.trashmail\\.net$\" name=\".+\"/><rule from=\"^http://(?:ssl\\.|www\\.)?trashmail\\.net/\" to=\"https://ssl.trashmail.net/\"/></ruleset>", "<ruleset name=\"Trauer.de\" f=\"Trauer.de.xml\"><rule from=\"^http://(?:www\\.)?trauer\\.de/\" to=\"https://www.trauer.de/\"/><rule from=\"^http://forum\\.trauer\\.de/\" to=\"https://forum.trauer.de/\"/></ruleset>", "<ruleset name=\"TravelBlog\" f=\"TravelBlog.xml\"><securecookie host=\"^.*\\.?travelblog\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travel Doctor\" f=\"TravelDoctor.xml\"><rule from=\"^http://(?:www\\.)?traveldoctor\\.com\\.au/\" to=\"https://www.traveldoctor.com.au/\"/></ruleset>", "<ruleset name=\"TravelNow.com (partial)\" f=\"TravelNow.xml\"><exclusion pattern=\"^http://(?:www\\.)?travelnow\\.com/(?!.+\\.(?:JPG|css|gif|ico|png)(?:$|\\?))\"/><securecookie host=\"^\\.travelnow\\.com$\" name=\"^(?:ServerPool|TACds|TASession|TAUnique)$\"/><securecookie host=\"^\\.www\\.travelnow\\.com$\" name=\"^TASSK$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TravelPod (partial)\" default_off=\"failed ruleset test\" f=\"TravelPod.xml\"><rule from=\"^http://images\\.travelpod\\.com/(?!cgi-bin/|users/)\" to=\"https://images.travelpod.com/\"/></ruleset>", "<ruleset name=\"Travel Plan\" default_off=\"failed ruleset test\" f=\"Travel_Plan.xml\"><securecookie host=\"^(?:www\\.)?travelplan\\.gr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travel Republic (partial)\" f=\"Travel_Republic.xml\"><securecookie host=\"^(?:m|www)?\\.travelrepublic\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://blog\\.travelrepublic\\.co\\.uk/\" to=\"https://www.travelrepublic.co.uk/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travelingnuker.com (partial)\" f=\"Travelingnuker.com.xml\"><securecookie host=\"^(?:www)?\\.travelingnuker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?travelingnuker\\.com/\" to=\"https://www.travelingnuker.com/\"/></ruleset>", "<ruleset name=\"Travelmarket.com (partial)\" f=\"Travelmarket.com.xml\"><securecookie host=\"^tmcomponents\\.travelmarket\\.com$\" name=\".+\"/><rule from=\"^http://tmcomponents\\.travelmarket\\.com/\" to=\"https://tmcomponents.travelmarket.com/\"/></ruleset>", "<ruleset name=\"Travelocity\" f=\"Travelocity.xml\"><securecookie host=\"^www\\.travelocity\\.(com|ca)$\" name=\".+\"/><rule from=\"^http://travelocity\\.(com|ca)/\" to=\"https://www.travelocity.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"travelspecialistsite.com\" default_off=\"missing certificate chain\" f=\"Travelspecialistsite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travelzoo.com (partial)\" f=\"Travelzoo.com.xml\"><securecookie host=\"^ssl\\.travelzoo\\.com$\" name=\".+\"/><rule from=\"^http://(?:ssl\\.|www\\.)?travelzoo\\.com/\" to=\"https://ssl.travelzoo.com/\"/><rule from=\"^http://oascentral\\.travelzoo\\.com/\" to=\"https://oasc06.247realmedia.com/\"/><rule from=\"^http://(?:cache\\.travelzoo|(?:ssl|www)\\.tzoo-img)\\.com/\" to=\"https://ssl.tzoo-img.com/\"/></ruleset>", "<ruleset name=\"Travis-CI.org\" f=\"Travis_CI.xml\"><rule from=\"^http://(?:(api\\.|secure\\.)|www\\.)?travis-ci\\.org/\" to=\"https://$1travis-ci.org/\"/></ruleset>", "<ruleset name=\"Travis F.net\" f=\"Travis_F.net.xml\"><rule from=\"^http://(?:www\\.|(www2\\.))?travisf\\.net/\" to=\"https://$1travisf.net/\"/></ruleset>", "<ruleset name=\"traxarmstrong.com\" f=\"Traxarmstrong.com.xml\"><rule from=\"^http://(?:www\\.)?traxarmstrong\\.com/\" to=\"https://traxarmstrong.com/\"/></ruleset>", "<ruleset name=\"Treasury.gov (partial)\" f=\"Treasury.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://treasury\\.gov/\" to=\"https://www.treasury.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TreasuryDirect.gov\" f=\"Treasurydirect.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TreeHouse I.com\" f=\"TreeHouse_I.com.xml\"><securecookie host=\"^(?:mv|www)\\.treehousei\\.com$\" name=\".+\"/><rule from=\"^http://treehousei\\.com/\" to=\"https://www.treehousei.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trefis\" default_off=\"failed ruleset test\" f=\"Trefis.xml\"><securecookie host=\"^www\\.trefis\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?trefis\\.com/\" to=\"https://www.trefis.com/\"/><rule from=\"^http://cdn\\.trefis\\.com/\" to=\"https://cdn.trefis.com/\"/></ruleset>", "<ruleset name=\"Trekaroo (partial)\" f=\"Trekaroo.xml\"><exclusion pattern=\"^http://(?:www\\.)?trekaroo\\.com/(?!img/|images/|photos/|stylesheets/)\"/><rule from=\"^http://(?:cdn[12]\\.|www\\.)?trekaroo\\.com/\" to=\"https://www.trekaroo.com/\"/></ruleset>", "<ruleset name=\"Trellian (partial)\" f=\"Trellian.xml\"><rule from=\"^http://(?:www\\.)?trellian\\.com/\" to=\"https://www.trellian.com/\"/><rule from=\"^http://bid\\.trellian\\.com/(\\?.*)?$\" to=\"https://www.trellian.com/dsn/index.html$1\"/></ruleset>", "<ruleset name=\"Trello.com\" f=\"Trello.xml\"><securecookie host=\"^(?:www\\.)?trello\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tremor Video.com (partial)\" f=\"Tremor_Video.com.xml\"><rule from=\"^http://investor\\.tremorvideo\\.com/(modul|sit)es/\" to=\"https://tremorvideo.investorhq.businesswire.com/$1es/\"/></ruleset>", "<ruleset name=\"TrendWeight\" f=\"TrendWeight.xml\"><securecookie host=\"^(?:w*\\.)?trendweight\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.com (false MCB)\" platform=\"mixedcontent\" f=\"Trend_Micro-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.eu (false MCB)\" platform=\"mixedcontent\" f=\"Trend_Micro-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.de\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Trend_Micro.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.eu (partial)\" f=\"Trend_Micro.eu.xml\"><exclusion pattern=\"^http://countermeasures\\.trendmicro\\.eu/+(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.com (partial)\" f=\"Trend_Micro.xml\"><exclusion pattern=\"^http://blog\\.trendmicro\\.com/(?![\\w-]+/files/|wp-content/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://feeds\\.trendmicro\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trendin.com\" default_off=\"failed ruleset test\" f=\"Trendin.com.xml\"><securecookie host=\"^(?:www)?\\.trendin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trey Perry.com\" f=\"Trey_Perry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trgt.eu\" f=\"Trgt.eu.xml\"><rule from=\"^http://cdn\\.trgt\\.eu/\" to=\"https://cdn.trgt.eu/\"/></ruleset>", "<ruleset name=\"Tri-CUE\" default_off=\"expired\" f=\"Tri-CUE.xml\"><securecookie host=\"^www\\.tricue\\.com$\" name=\".+\"/><rule from=\"^http://www\\.tricue\\.com/\" to=\"https://www.tricue.com/\"/></ruleset>", "<ruleset name=\"TriDeci\" f=\"TriDeci.xml\"><securecookie host=\"^(?:www\\.)?trideci\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrialFunder.com\" f=\"TrialFunder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrialPay (partial)\" platform=\"mixedcontent\" f=\"TrialPay.xml\"><exclusion pattern=\"^http://(?:www\\.)?trialpay\\.com/productpage/\"/><rule from=\"^http://(?:www\\.)?trialpay\\.com/\" to=\"https://www.trialpay.com/\"/><rule from=\"^http://assets\\.trialpay\\.com/\" to=\"https://d2n8p8eh14pae1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tribal Fusion.com\" f=\"Tribal_Fusion.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://tribalfusion\\.com/\" to=\"https://www.tribalfusion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tribalhosting.net\" f=\"Tribalhosting.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribeca Film.com\" f=\"Tribeca_Film.com.xml\"><securecookie host=\"^tribecafilm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribeca Film Institute.org\" f=\"Tribeca_Film_Institute.org.xml\"><securecookie host=\"^tribecafilminstitute\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribler (partial)\" default_off=\"failed ruleset test\" f=\"Tribler.xml\"><securecookie host=\"^www\\.tribler\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribune (mismatches)\" default_off=\"mismatch\" f=\"Tribune-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?latimes\\.com/(?:favicon\\.ico|hive/|images/|includes/|media/|stylesheets/)\"/><rule from=\"^http://(?:www\\.)?baltimoresun\\.com/\" to=\"https://www.baltimoresun.com/\"/><rule from=\"^http://(?:www\\.)?latimes\\.com/\" to=\"https://www.latimes.com/\"/></ruleset>", "<ruleset name=\"Tribune (partial)\" f=\"Tribune.xml\"><rule from=\"^http://advertise\\.courant\\.com/\" to=\"https://advertise.courant.com/\"/><rule from=\"^http://(?:www\\.)?courant\\.com/includes/uploads/2010/08/3A2C26D5_courant_logo_981x160b\\.jpg$\" to=\"https://advertise.courant.com/portal/page/portal/Hartford%20Courant/Content%20Items/P2P/3A2C26D5_courant_logo_981x160b.jpg\"/><rule from=\"^http://(?:www\\.)?courant\\.com/media/graphic/2009-06/47547079\\.png$\" to=\"https://advertise.courant.com/portal/page/portal/Hartford%20Courant/Content%20Items/P2P/47547079.png\"/><rule from=\"^http://([\\w-]+)\\.signon\\.trb\\.com/\" to=\"https://$1.signon.trb.com/\"/></ruleset>", "<ruleset name=\"Tricolumbia.org\" default_off=\"failed ruleset test\" f=\"Tricolumbia.org.xml\"><securecookie host=\"^(?:www)?\\.tricolumbia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tricolumbia\\.org/\" to=\"https://www.tricolumbia.org/\"/></ruleset>", "<ruleset name=\"Tridium\" default_off=\"failed ruleset test\" f=\"Tridium.xml\"><securecookie host=\"^www\\.tridium\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tridium\\.com/\" to=\"https://www.tridium.com/\"/></ruleset>", "<ruleset name=\"Triggit.com (partial)\" f=\"Triggit.com.xml\"><securecookie host=\"^\\.\" name=\"^trg[psu]$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trillian.im (partial)\" f=\"Trillian.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity College Dublin (partial)\" f=\"Trinity_College_Dublin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity Foundation\" f=\"Trinity_Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity Home.org\" default_off=\"self-signed\" f=\"Trinity_Home.org.xml\"><securecookie host=\"^(?:www\\.)?trinityhome\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?trinityhome\\.org/\" to=\"https://trinityhome.org/\"/></ruleset>", "<ruleset name=\"Triodos.com\" f=\"Triodos.com.xml\"><securecookie host=\"^projects.triodos.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Triodos.nl (partial)\" f=\"Triodos.nl.xml\"><securecookie host=\"^bankieren\\.triodos\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.com (partial)\" f=\"TripAdvisor.xml\"><exclusion pattern=\"^http://(?:cdn\\.|www\\.)?tripadvisor\\.com/+(?!favicon\\.ico|img2?/|(?:Amex|GreenLeaders|Owners|Registration|RegistrationPage|ReviewExpress|TripAdvisorInsights|UserReview)(?:-[^/]*)?(?:$|\\?)|TripAdvisorInsights/|pages/privacy\\.html)\"/><securecookie host=\"^\\.tripadvisor\\.com$\" name=\"^(?:ServerPool|TACds|TASession|TAUnique)$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripHip\" f=\"TripHip.xml\"><securecookie host=\"^(?:www)?\\.triphip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripIt.com\" f=\"TripIt.com.xml\"><securecookie host=\"^(?:careers\\.|www\\.)?tripit\\.com$\" name=\".+\"/><rule from=\"^http://(careers\\.|www\\.)?tripit\\.com/\" to=\"https://$1tripit.com/\"/><rule from=\"^http://help\\.tripit\\.com/\" to=\"https://tripit.zendesk.com/\"/></ruleset>", "<ruleset name=\"tripbod.com (partial)\" f=\"Tripbod.com.xml\"><rule from=\"^http://(www\\.)?tripbod\\.com/(?=(?:\\w\\w/)?beatripbod(?:$|[?/])|favicon\\.ico|img/|js/|min/)\" to=\"https://$1tripbod.com/\"/></ruleset>", "<ruleset name=\"TripleMint.com (partial)\" f=\"TripleMint.com.xml\"><securecookie host=\"^(?:www\\.)?triplemint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Triplebyte.com (partial)\" f=\"Triplebyte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripodo.de (partial)\" f=\"Tripodo.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?tripodo\\.de/+(?!photo/|photo_\\d+_\\w\\.jpg)\"/><rule from=\"^http://(?:www\\.)?tripodo\\.de/\" to=\"https://www.tripodo.de/\"/><rule from=\"^http://bilder-cdn\\.tripodo\\.de/\" to=\"https://d3n4h69ermngjr.cloudfront.net/\"/><rule from=\"^http://static\\.tripodo\\.de/\" to=\"https://d3jjs8jj56ow4v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tripwell.com\" f=\"Tripwell.com.xml\"><securecookie host=\"^\\.tripwell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripwire.com (false MCB)\" platform=\"mixedcontent\" f=\"Tripwire.com-falsemixed.xml\"><securecookie host=\"^www\\.tripwire\\.com$\" name=\".+\"/><rule from=\"^http://tripwire\\.com/\" to=\"https://www.tripwire.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripwire.com (partial)\" f=\"Tripwire.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tripwire\\.com/+state-of-security(?!/wp-content/|wp-includes/)\"/><securecookie host=\"^www\\.tripwire\\.com$\" name=\".+\"/><rule from=\"^http://tripwire\\.com/\" to=\"https://www.tripwire.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trisquel.info (partial)\" f=\"Trisquel.xml\"><securecookie host=\"^(?:devel)?\\.trisquel\\.info$\" name=\".+\"/><rule from=\"^http://(devel\\.|www\\.)?trisquel\\.info/\" to=\"https://$1trisquel.info/\"/><rule from=\"^http://cn\\.archive\\.trisquel\\.info/\" to=\"https://mirrors.ustc.edu.cn/\"/></ruleset>", "<ruleset name=\"Triumph-Adler.de\" f=\"Triumph-Adler.de.xml\"><rule from=\"^http://(?:www\\.)?triumph-adler\\.de/\" to=\"https://www.triumph-adler.de/\"/></ruleset>", "<ruleset name=\"trkclk.net\" f=\"Trkclk.net.xml\"><rule from=\"^http://ads\\.trkclk\\.net/\" to=\"https://ads.adk2.com/\"/><rule from=\"^http://cdn\\.trkclk\\.net/\" to=\"https://d3vg9hiogk70qz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"trklnks.com\" f=\"Trklnks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://trklnks\\.com/\" to=\"https://engine.trklnks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trmm.net\" f=\"Trmm.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trolling Effects.org\" f=\"Trolling_Effects.org.xml\"><rule from=\"^http://(?:www\\.)?trollingeffects\\.org/\" to=\"https://trollingeffects.org/\"/></ruleset>", "<ruleset name=\"Tronix Computers.com\" f=\"Tronix_Computers.com.xml\"><securecookie host=\"^(?:www\\.)?tronixcomputers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Troopers.de\" f=\"Troopers.de.xml\"><rule from=\"^http://(?:www\\.)?troopers\\.de/\" to=\"https://www.troopers.de/\"/></ruleset>", "<ruleset name=\"Tropo (problematic)\" default_off=\"expired, self-signed\" f=\"Tropo-problematic.xml\"><rule from=\"^http://blog\\.tropo\\.com/\" to=\"https://blog.tropo.com/\"/></ruleset>", "<ruleset name=\"Tropo (partial)\" f=\"Tropo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tros.nl\" f=\"Tros.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trove.com (partial)\" f=\"Trove.com.xml\"><securecookie host=\"^(?:id)?\\.trove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"troveread.com\" default_off=\"failed ruleset test\" f=\"Troveread.com.xml\"><rule from=\"^http://troveread\\.com/.*\" to=\"https://socialreader.com/\"/><rule from=\"^http://s\\.troveread\\.com/\" to=\"https://dizqy8916g7hx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Truck Trend.com (partial)\" default_off=\"failed ruleset test\" f=\"Truck_Trend.com.xml\"><rule from=\"^http://image\\.trucktrend\\.com/\" to=\"https://s248.e.akamai.net/f/1664/1785/9/image.trucktrend.com/\"/></ruleset>", "<ruleset name=\"TruckingUnlimited.com (partial)\" default_off=\"failed ruleset test\" f=\"TruckingUnlimited.com.xml\"><rule from=\"^http://static\\.truckingunlimited\\.com/\" to=\"https://www.truckingunlimited.com/\"/></ruleset>", "<ruleset name=\"TrueCrypt.ch\" f=\"TrueCrypt.ch.xml\"><securecookie host=\"^forum\\.truecrypt\\.ch$\" name=\".+\"/><rule from=\"^http://(?:((?:download|forum|wdc)\\.)|www\\.)?truecrypt\\.ch/\" to=\"https://$1truecrypt.ch/\"/></ruleset>", "<ruleset name=\"TrueCrypt 71a.com\" f=\"TrueCrypt_71a.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueLife.com (expired)\" default_off=\"expired\" f=\"TrueLife.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueLife.com (partial)\" f=\"TrueLife.com.xml\"><exclusion pattern=\"^http://(?:home\\.|www\\.)?truelife\\.com/+(?!assets/|streaming_now/|youtube/)\"/><rule from=\"^http://truelife\\.com/\" to=\"https://www.truelife.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueVault.com\" f=\"TrueVault.com.xml\"><rule from=\"^http://((?:api|console|www)\\.)?truevault\\.com/\" to=\"https://$1truevault.com/\"/></ruleset>", "<ruleset name=\"Trueachievements.com\" f=\"Trueachievements.com.xml\"><rule from=\"^http://(?:www\\.)?trueachievements\\.com/\" to=\"https://www.trueachievements.com/\"/></ruleset>", "<ruleset name=\"Truecrypt (partial)\" default_off=\"failed ruleset test\" f=\"Truecrypt.xml\"><rule from=\"^http://(www\\.)?truecrypt\\.org/(bug|donation|image)s/\" to=\"https://$1truecrypt.org/$2s/\"/><rule from=\"^http://forums\\.truecrypt\\.org/templates/\" to=\"https://forums.truecrypt.org/templates/\"/></ruleset>", "<ruleset name=\"Truefactor.io\" f=\"Truefactor.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Truehits.in.th (partial)\" f=\"Truehits.in.th.xml\"><rule from=\"^http://(?:hits|lvs)\\.truehits\\.in\\.th/\" to=\"https://lvs.truehits.in.th/\"/></ruleset>", "<ruleset name=\"truenudists.com\" default_off=\"failed ruleset test\" f=\"Truenudists.com.xml\"><securecookie host=\"^cdncss-socialcomediallc\\.netdna-ssl\\.com$\" name=\".*\"/><securecookie host=\"^www\\.truenudists\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?truenudists\\.com/\" to=\"https://$1truenudists.com/\"/><rule from=\"^http://cdn\\.css\\.truenudists\\.com/\" to=\"https://cdncss-socialcomediallc.netdna-ssl.com/\"/><rule from=\"^http://cdn\\.image\\.truenudists\\.com/\" to=\"https://cdnimg-socialcomediallc.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Truetrophies.com\" f=\"Truetrophies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trulia-cdn.com\" f=\"Trulia-cdn.com.xml\"><rule from=\"^http://(css|static)\\.trulia-cdn\\.com/\" to=\"https://$1.trulia-cdn.com/\"/></ruleset>", "<ruleset name=\"Trumba\" f=\"Trumba.xml\"><securecookie host=\"^www\\.trumba\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?trumba\\.com/\" to=\"https://www.trumba.com/\"/></ruleset>", "<ruleset name=\"Trumpia.com\" f=\"Trumpia.com.xml\"><securecookie host=\"^(?:www\\.)?trumpia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trust-Guard.com (partial)\" f=\"Trust-Guard.com.xml\"><exclusion pattern=\"^http://www\\.trust-guard\\.com/+(?!CSS/|favicon\\.ico|Images/|Other/|Scripts/|Templates/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:members|secure)\\.trust-guard\\.com$\" name=\".\"/><rule from=\"^http://seals\\.trust-guard\\.com/\" to=\"https://c674753.ssl.cf2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trust-IT.gr\" f=\"Trust-IT.gr.xml\"><securecookie host=\"^(?:www)?\\.trust-it\\.gr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustKeeper.net\" f=\"TrustKeeper.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustSign.com.br\" f=\"TrustSign.com.br.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustTheVote.org\" f=\"TrustTheVote.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://w(?:iki|ordpress2)\\.trustthevote\\.org/\" to=\"https://2014.wooconf.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trust Dale.com (partial)\" f=\"Trust_Dale.com.xml\"><rule from=\"^http://static\\.trustdale\\.com/\" to=\"https://d25v41r9zzznmn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Trusted-Introducer.org\" f=\"Trusted-Introducer.org.xml\"><rule from=\"^http://trusted-introducer\\.org/\" to=\"https://www.trusted-introducer.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trusted Shops (partial)\" f=\"Trusted-Shops.xml\"><rule from=\"^http://(?:www\\.)?trustedshops\\.(at|ch|com|co\\.uk|de|es|fr|pl)/(?=assets/|b2c_int/|bewertung/|cms/assets/|merchants/(?:$|\\?)|shoplogo/|\\w\\w/(?:buyer/login\\.html|shop/))\" to=\"https://www.trustedshops.$1/\"/><rule from=\"^http://static\\.trustedshops\\.com/\" to=\"https://static.trustedshops.com/\"/></ruleset>", "<ruleset name=\"TrustedMessenger.com\" f=\"TrustedMessenger.com.xml\"><securecookie host=\"^(?:www)?\\.trustedmessenger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustedSec.com\" f=\"TrustedSec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trusted CS.com\" f=\"Trusted_CS.com.xml\"><rule from=\"^http://(?:www\\.)?trustedcs\\.com/\" to=\"https://www.trustedcs.com/\"/></ruleset>", "<ruleset name=\"Trusted Computing Group.org\" f=\"Trusted_Computing_Group.xml\"><securecookie host=\"^(?:www)?\\.trustedcomputinggroup\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trusted Reviews (partial)\" f=\"Trusted_Reviews.xml\"><exclusion pattern=\"^http://(?:www\\.)?trustedreviews\\.com/(?!css/)\"/><rule from=\"^http://(?:secure\\.|www\\.)?trustedreviews\\.com/\" to=\"https://secure.trustedreviews.com/\"/></ruleset>", "<ruleset name=\"Trusteer.com (partial)\" f=\"Trusteer.com.xml\"><rule from=\"^http://trusteer\\.com/\" to=\"https://www.trusteer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustico.com (partial)\" f=\"Trustico.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustifier.com\" f=\"Trustifier.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustly.com\" f=\"Trustly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustly.se\" f=\"Trustly.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustpilot.com\" f=\"Trustpilot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustwave.com (partial)\" f=\"Trustwave.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustworthy Internet.org\" f=\"Trustworthy-Internet-Movement.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TruthMarket\" default_off=\"buggy\" f=\"TruthMarket.xml\"><securecookie host=\"^(?:www\\.)?truthmarket\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Truth in Advertising\" f=\"Truth_in_Advertising.xml\"><securecookie host=\"^(?:www\\.)?truthinadvertising\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Truthdig.com\" platform=\"mixedcontent\" f=\"Truthdig.xml\"><securecookie host=\"^(?:.*\\.)?truthdig\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Try Celery.com\" f=\"Try_Celery.com.xml\"><securecookie host=\"^(?:www\\.)?trycelery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Try Haskell.org\" f=\"Try_Haskell.org.xml\"><securecookie host=\"^\\.tryhaskell\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Try Superb Green Coffee.com\" f=\"Try_Superb_Green_Coffee.com.xml\"><securecookie host=\"^(?:w*\\.)?trysuperbgreencoffee.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"try Zen99.com\" f=\"Try_Zen99.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trygghansa.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Trygghansa.se.xml\"><rule from=\"^http://(?:www\\.)?trygghansa\\.se/\" to=\"https://www.trygghansa.se/\"/></ruleset>", "<ruleset name=\"tsgstatic.com (partial)\" f=\"Tsgstatic.com.xml\"><rule from=\"^http://[a-c]\\.tsgstatic\\.com/\" to=\"https://d25jbto4vhnqrd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tspr.ng\" f=\"Tspr.ng.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TuXingSun.net\" f=\"TuXingSun.net.xml\"><securecookie host=\"^(?:www\\.)?tuxingsun\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tuakiri.ac.nz (partial)\" f=\"Tuakiri.ac.nz.xml\"><securecookie host=\"^(?:directory\\.|www\\.)?tuakiri\\.ac.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tube4.me\" default_off=\"failed ruleset test\" f=\"Tube4.me.xml\"><securecookie host=\"^\\.tube4\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TubeMogul.com (partial)\" f=\"TubeMogul.com.xml\"><securecookie host=\"^\\.tubemogul\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.tubemogul\\.com/\" to=\"https://ne1.wpc.edgecastcdn.net/001500/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TubeOffline.com\" default_off=\"redirects to http\" f=\"TubeOffline.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tubeoffline\\.com/(?:$|Contact-Pop/|images/|styles1\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tucows (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"Tucows-mismatches.xml\"><rule from=\"^http://(www\\.)?(ispbilling|tucowsinc|yummynames)\\.com/\" to=\"https://$2.com/\"/><rule from=\"^http://forums\\.ispbilling\\.com/\" to=\"https://forums.ispbilling.com/\"/><rule from=\"^http://www\\.opensrs\\.com/blog([\\w/\\-]*)/$\" to=\"https://www.opensrs.com/blog$1/\"/><rule from=\"^http://(?:www\\.)?tucowsdomains\\.com/\" to=\"https://www.tucowsdomains.com/\"/></ruleset>", "<ruleset name=\"Tucows (partial)\" default_off=\"failed ruleset test\" f=\"Tucows.xml\"><rule from=\"^http://(?:www\\.)?contactprivacy\\.com/\" to=\"https://rr-n1-tor.opensrs.net/wp_mailer/\"/><rule from=\"^http://support\\.ispbilling\\.com/\" to=\"https://support.ispbilling.com/\"/></ruleset>", "<ruleset name=\"Tufts.edu (partial)\" f=\"Tufts.edu.xml\"><exclusion pattern=\"^http://(?:directory|whitepages)\\.tufts\\.edu/+(?!css/|favicon\\.ico|images/|main\\.css)\"/><securecookie host=\"^(?:ase|exchange|library|m|medicine|webapps\\.moit|trunk|(?:infoboard-updates|isis)\\.uit)\\.tufts\\.edu$\" name=\".+\"/><rule from=\"^http://medical\\.alumni\\.tufts\\.edu/+\" to=\"https://medicine.tufts.edu/Who-We-Are/Alumnia/\"/><rule from=\"^http://(ase|exchange|it|(?:illiad\\.|www\\.)?library|m|medicine|webapps\\.moit|now|sites|trunk|(?:ests01|infoboard-updates|isis|wikis)\\.uit|whitepages)\\.tufts\\.edu/\" to=\"https://$1.tufts.edu/\"/><rule from=\"^http://directory\\.tufts\\.edu/\" to=\"https://whitepages.tufts.edu/\"/><rule from=\"^http://researchguides\\.library\\.tufts\\.edu/(?=css\\d*/|data/|favicon\\.ico|images/|include/|js\\d*/)\" to=\"https://libguides.com/\"/><rule from=\"^http://uit\\.tufts\\.edu/+\\??$\" to=\"https://it.tufts.edu/\"/></ruleset>", "<ruleset name=\"Tufts Giving.org\" f=\"Tufts_Giving.org.xml\"><rule from=\"^http://(?:www\\.)?tuftsgiving\\.org/\" to=\"https://tuftsgiving.org/\"/></ruleset>", "<ruleset name=\"Tufts Medical Center.org (partial)\" f=\"Tufts_Medical_Center.org.xml\"><securecookie host=\"^www\\.tuftsmedicalcenter\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tuftsmedicalcenter\\.org/\" to=\"https://www.tuftsmedicalcenter.org/\"/></ruleset>", "<ruleset name=\"Tugg.com (partial)\" f=\"Tugg.com.xml\"><securecookie host=\"^\\.tugg\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?tugg\\.com/(assets|system)/\" to=\"https://www.tugg.com/$1/\"/></ruleset>", "<ruleset name=\"Tuleap.net (partial)\" f=\"Tuleap.net.xml\"><securecookie host=\"^(?:www\\.)?tuleap\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tuleap.org\" f=\"Tuleap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tum.de\" default_off=\"failed ruleset test\" f=\"Tum.de.xml\"><rule from=\"^http://(?:www\\.)?tum\\.de/\" to=\"https://www.tum.de/\"/></ruleset>", "<ruleset name=\"Tumblr.com blogs (partial)\" f=\"Tumblr.com_blogs.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumblr.com (partial)\" f=\"Tumblr.xml\"><exclusion pattern=\"^http://assets\\.tumblr\\.com/+assets/scripts/(?!vendor/\\w+/plugins/\\w+/css/)\"/><securecookie host=\"^(?:secure\\.assets|www)\\.tumblr\\.com$\" name=\"^__utmf$\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.srvcs\\.tumblr\\.com$\" name=\".\"/><securecookie host=\"^www\\.tumblr\\.com$\" name=\"^d(?:evicePixelRatio|ocumentWidth)$\"/><rule from=\"^http://data\\.tumblr\\.com/\" to=\"https://gs1.wac.edgecastcdn.net/8019B6/data.tumblr.com/\"/><rule from=\"^http://(?:(?:25|37)\\.)?media\\.tumblr\\.com/\" to=\"https://31.media.tumblr.com/\"/><rule from=\"^http://static\\.tumblr\\.com/\" to=\"https://d2pi0bc9ewx28h.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumri.net\" f=\"Tumri.net.xml\"><securecookie host=\"^\\.tumri\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumutanzi.com\" f=\"Tumutanzi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tune.pk\" f=\"Tune.pk.xml\"><securecookie host=\"^(?:\\.|www\\.)?tune\\.pk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunespeak.com\" f=\"Tunespeak.com.xml\"><securecookie host=\"^\\.(?:staging|tune)speak\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(staging|tune)speak\\.com/\" to=\"https://$1$2speak.com/\"/></ruleset>", "<ruleset name=\"Tuning World\" f=\"Tuning_World.xml\"><securecookie host=\"^(?:www\\.)?tuningworld\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunisia-Sat\" f=\"Tunisia-Sat.xml\"><securecookie host=\"^\\.tunisia-sat\\.com(?:\\.tn)?$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TunnelBear\" f=\"TunnelBear.xml\"><rule from=\"^http://(?:www\\.)?tunnelbear\\.com/\" to=\"https://www.tunnelbear.com/\"/></ruleset>", "<ruleset name=\"HE Tunnel Broker\" f=\"TunnelBroker.xml\"><securecookie host=\"^(?:.*\\.)?tunnelbroker\\.net$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?tunnelbroker\\.(?:com|net)/\" to=\"https://$1tunnelbroker.net/\"/></ruleset>", "<ruleset name=\"Turbine.com\" f=\"Turbine.com.xml\"><securecookie host=\"^\\.trial\\.turbine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurboSquid (partial)\" default_off=\"failed ruleset test\" f=\"TurboSquid.xml\"><exclusion pattern=\"^http://support\\.turbosquid\\.com/(?!generated/)\"/><securecookie host=\"^\\.(?:www\\.)?turbosquid\\.com$\" name=\".+\"/><rule from=\"^http://(support\\.|www\\.)?turbosquid\\.com/\" to=\"https://$1turbosquid.com/\"/><rule from=\"^http://sitefiles\\.turbosquid\\.com/\" to=\"https://d3vuj04fwiko4o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Turbobytes.com (partial)\" f=\"Turbobytes.com.xml\"><securecookie host=\"^my\\.turbobytes\\.com$\" name=\".+\"/><rule from=\"^http://my\\.turbobytes\\.com/\" to=\"https://my.turbobytes.com/\"/></ruleset>", "<ruleset name=\"Turbobytes.net\" default_off=\"failed ruleset test\" f=\"Turbobytes.net.xml\"><rule from=\"^http://az\\.turbobytes\\.net/\" to=\"https://az.turbobytes.net/\"/></ruleset>", "<ruleset name=\"TurkTK.com\" default_off=\"expired\" f=\"TurkTK.com.xml\"><securecookie host=\"^turktk\\.com$\" name=\".+\"/><rule from=\"^http://www\\.turktk\\.com/\" to=\"https://turktk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turn.com (partial)\" f=\"Turn.com.xml\"><securecookie host=\"^\\.turn\\.com$\" name=\"^uid$\"/><rule from=\"^http://turn\\.com/\" to=\"https://www.turn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurnKey Linux.org\" f=\"TurnKey_Linux.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurnTo Networks (partial)\" default_off=\"Breaks lenovo `ask a question'\" f=\"TurnTo_Networks.xml\"><rule from=\"^http://static\\.www\\.turnto\\.com/\" to=\"https://static.www.turnto.com/\"/></ruleset>", "<ruleset name=\"Turn Game Studios\" f=\"Turn_Game_Studios.xml\"><securecookie host=\"^\\.turngs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turn On Social\" default_off=\"failed ruleset test\" f=\"Turn_On_Social.xml\"><securecookie host=\"^\\.?turnonsocial\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn-[\\w-]+\\.)?turnonsocial\\.com/\" to=\"https://turnonsocial.com/\"/></ruleset>", "<ruleset name=\"Turner.com (partial)\" default_off=\"Needs ruleset tests\" f=\"Turner.com.xml\"><exclusion pattern=\"^http://(?:i\\d?|s|z)\\.cdn\\.turner\\.com/.*(?:crossdomain\\.xml|\\.swf)(?:$|\\?)\"/><rule from=\"^http://(?:i\\d?|s|z)\\.cdn\\.turner\\.com/\" to=\"https://s.cdn.turner.com/\"/></ruleset>", "<ruleset name=\"Turris.cz\" f=\"Turris.cz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turtl.it\" f=\"Turtl.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turtlebeach\" f=\"Turtlebeach.xml\"><rule from=\"^http://(support|www)\\.turtlebeach\\.com/\" to=\"https://$1.turtlebeach.com/\"/></ruleset>", "<ruleset name=\"TusFiles.net\" f=\"TusFiles.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutanota.com\" f=\"Tutanota.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutanota.de\" f=\"Tutanota.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutor.com (partial)\" f=\"Tutor.com.xml\"><rule from=\"^http://(?:www\\.)?tutor\\.com/(contact-forms/|favicon\\.ico|get-started(?:$|[?/])|images/|(?:Script|Web)Resource\\.axd|scripts/|styles/)\" to=\"https://www.tutor.com/$1\"/><rule from=\"^http://media\\.tutor\\.com/\" to=\"https://media.tutor.com/\"/></ruleset>", "<ruleset name=\"TutsPlus.com (partial)\" f=\"TutsPlus.com.xml\"><exclusion pattern=\"^http://tutsplus\\.com/+(?!favicon\\.ico|sign_(?:in|up)(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:business|code|design)\\.tutsplus\\.com/+(?!favicon\\.ico)\"/><securecookie host=\"^\\.tutsplus\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://((?:business|cms-assets|code|design|jobs|static|support|www)\\.)?tutsplus\\.com/\" to=\"https://$1tutsplus.com/\"/></ruleset>", "<ruleset name=\"Tuts 4 You.com\" f=\"Tuts_4_You.com.xml\"><securecookie host=\"^\\.(?:forum\\.)?tuts4you\\.com$\" name=\".+\"/><rule from=\"^http://(?:(forum\\.)|www\\.)?tuts4you\\.com/\" to=\"https://$1tuts4you.com/\"/></ruleset>", "<ruleset name=\"Tux.Org (partial)\" default_off=\"self-signed\" f=\"Tux.Org.xml\"><rule from=\"^http://calypso\\.tux\\.org/\" to=\"https://calypso.tux.org/\"/></ruleset>", "<ruleset name=\"TuxFamily.org\" default_off=\"mismatch, self-signed, may need more exclusions\" f=\"TuxFamily.org.xml\"><exclusion pattern=\"^http://(?:download|git|listengine|lists|projects)\\.tuxfamily\\.org/\"/><securecookie host=\"^(?:.*\\.)?anwiki\\.com$\" name=\".*\"/><securecookie host=\"^glx-dock\\.org$\" name=\".*\"/><securecookie host=\"^[\\w\\-]+\\.tuxfamily\\.org$\" name=\".*\"/><securecookie host=\"^bugs\\.vhffs\\.org$\" name=\".*\"/><rule from=\"^http://(?:(bugs\\.|doc\\.|forum\\.)|www\\.)?anwiki\\.com/\" to=\"https://$1anwki.com/\"/><rule from=\"^http://(?:www\\.)?glx-dock\\.org/\" to=\"https://glx-dock.org/\"/><rule from=\"^http://web\\.tuxfamily\\.net/\" to=\"https://web.tuxfamily.net/\"/><rule from=\"^http://([\\w\\-]+)\\.tuxfamily\\.org/\" to=\"https://$1.tuxfamily.org/\"/><rule from=\"^http://bugs\\.vhffs\\.org/\" to=\"https://bugs.vhffs.org/\"/></ruleset>", "<ruleset name=\"TuxIC.nl\" f=\"TuxIC.nl.xml\"><securecookie host=\"^(?:www\\.)?tuxic\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tv-Release\" default_off=\"expired, mismatched, self-signed\" f=\"Tv-Release.xml\"><securecookie host=\"^(?:www\\.)?tv-release\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tv-release\\.net/\" to=\"https://tv-release.net/\"/></ruleset>", "<ruleset name=\"TvTorrents\" f=\"TvTorrents.xml\"><rule from=\"^http://([^/:@]+)?\\.tvtorrents\\.com/\" to=\"https://$1.tvtorrents.com/\"/></ruleset>", "<ruleset name=\"Tvheadend.org\" f=\"Tvheadend.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tvlicensing.co.uk\" default_off=\"failed ruleset test\" f=\"Tvlicensing.co.uk.xml\"><rule from=\"^http://(?:www\\.)?tvlicensing\\.co\\.uk/\" to=\"https://www.tvlicensing.co.uk/\"/></ruleset>", "<ruleset name=\"tvsupport.net\" f=\"Tvsupport.net.xml\"><securecookie host=\"^(?:help\\.|w*\\.)?tvsupport\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twattle.net\" f=\"Twattle.net.xml\"><securecookie host=\"^twattle\\.net$\" name=\".+\"/><rule from=\"^http://www\\.twattle\\.net/\" to=\"https://twattle.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweakHound.com\" f=\"TweakHound.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweakTown.com (partial)\" default_off=\"mismatched\" f=\"TweakTown.com.xml\"><rule from=\"^http://(forum|image)scdn\\.tweaktown\\.com/\" to=\"https://$1scdn.tweaktown.com/\"/></ruleset>", "<ruleset name=\"Tweakers.net\" f=\"Tweakers.net.xml\"><exclusion pattern=\"^http://(?:tweakers|ic\\.tweakimg)\\.net/crossdomain\\.xml$\"/><securecookie host=\"^\\.tweakers\\.net$\" name=\".+\"/><rule from=\"^http://((?:gathering|secure|www)\\.)?tweakers\\.net/\" to=\"https://$1tweakers.net/\"/><rule from=\"^http://(?:www\\.)?(ic\\.)?tweakimg\\.net/\" to=\"https://$1tweakimg.net/\"/></ruleset>", "<ruleset name=\"tweegy.nl\" default_off=\"self-signed\" f=\"Tweegy.nl.xml\"><securecookie host=\"^tweegy\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tweegy\\.nl/\" to=\"https://tweegy.nl/\"/></ruleset>", "<ruleset name=\"TweetAdder.com (partial)\" f=\"TweetAdder.com.xml\"><exclusion pattern=\"^http://tweetadder\\.com/(?!\\d{4}/wp-content/|favicon\\.ico|idevaffiliate(?:$|[?/])|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweetDeck.com\" f=\"TweetDeck.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweetMeme\" default_off=\"expired, mismatch\" f=\"TweetMeme.xml\"><rule from=\"^http://(?:(admin\\.)|www\\.)?tweetmeme\\.com/\" to=\"https://$1tweetmeme.com/\"/></ruleset>", "<ruleset name=\"TweetReach.com (partial)\" f=\"TweetReach.com.xml\"><securecookie host=\"^\\.tweetreach\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|blog|www)\\.)?tweetreach\\.com/\" to=\"https://$1tweetreach.com/\"/></ruleset>", "<ruleset name=\"Twenga-Solutions.com (partial)\" f=\"Twenga-Solutions.com.xml\"><exclusion pattern=\"^http://go\\.twenga-solutions\\.com/+(?!l/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://go\\.twenga-solutions\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twenga.com (false MCB)\" platform=\"mixedcontent\" f=\"Twenga.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twenga.com (partial)\" f=\"Twenga.com.xml\"><exclusion pattern=\"^http://blog\\.twenga\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^\\.\" name=\"^(?:TW_VISITOR_ID|WSID|twr)\"/><rule from=\"^http://(blog|dynstatic|i\\d+|r)\\.twenga\\.com/\" to=\"https://$1.twenga.com/\"/></ruleset>", "<ruleset name=\"Twilight Laboratories\" default_off=\"mismatch, self-signed\" f=\"Twilight-Laboratories.xml\"><rule from=\"^http://twibright\\.com/\" to=\"https://www.twibright.com/\"/><rule from=\"^http://(\\w+)\\.twibright\\.com/\" to=\"https://$1.twibright.com/\"/></ruleset>", "<ruleset name=\"Twilio.com\" f=\"Twilio.xml\"><securecookie host=\"^\\.?www\\.twilio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twimg.com\" f=\"Twimg.com.xml\"><rule from=\"^http://s\\.twimg\\.com/\" to=\"https://d2rdfnizen5apl.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twimler.com\" f=\"Twimler.com.xml\"><securecookie host=\"^\\.twimler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twingly (partial)\" f=\"Twingly.xml\"><securecookie host=\"^api\\.twingly\\.com$\" name=\".+\"/><rule from=\"^http://api\\.twingly\\.com/\" to=\"https://api.twingly.com/\"/></ruleset>", "<ruleset name=\"Twinings (partial)\" default_off=\"failed ruleset test\" f=\"Twinings.xml\"><exclusion pattern=\"^http://shop.twinings.co.uk/(?!fileadmin/|shop/(?:media|skin)/)\"/><securecookie host=\"^(?:www\\.)?twinings\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(shop\\.|www\\.)?twinings\\.co\\.uk/\" to=\"https://$1twinings.co.uk/\"/></ruleset>", "<ruleset name=\"TwinsOrNot.Net\" f=\"TwinsOrNot.Net.xml\"><securecookie host=\"^.*\\.twinsornot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twisp.me\" f=\"Twisp.xml\"><securecookie host=\"^(?:w*\\.)?twisp\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twistage (partial)\" f=\"Twistage.xml\"><securecookie host=\"^console\\.twistage\\.com$\" name=\".+\"/><rule from=\"^http://console\\.twistage\\.com/\" to=\"https://console.twistage.com/\"/></ruleset>", "<ruleset name=\"Twisted4Life\" f=\"Twisted4Life.xml\"><securecookie host=\"^(?:.+\\.)?twisted4life\\.com$\" name=\".*\"/><rule from=\"^http://((?:www\\.)?twisted4life\\.com)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"TwistedMatrix.com\" f=\"TwistedMatrix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TwitCasting (partial)\" f=\"TwitCasting.xml\"><rule from=\"^http://(?:en\\.|ja\\.|pt\\.|www\\.)?twitcasting\\.tv/(css|img|swf)/\" to=\"https://ssl.twitcasting.tv/$1/\"/><rule from=\"^http://(?:movie|ssl)\\.twitcasting\\.tv/\" to=\"https://$1.twitcasting.tv/\"/></ruleset>", "<ruleset name=\"TwitThis.com\" default_off=\"expired\" platform=\"mixedcontent\" f=\"TwitThis.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.twitthis\\.com/\" to=\"https://twitthis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitch.tv\" f=\"Twitch.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitch Installs.com\" f=\"Twitch_Installs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitpic.com (partial)\" f=\"Twitpic.xml\"><securecookie host=\"^\\.twitpic\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitter Counter (partial)\" f=\"Twitter-Counter.xml\"><rule from=\"^http://(?:www\\.)?twittercounter\\.com/((?:blog|embed)(?:$|[\\?/]))\" to=\"https://twittercounter.com/$1\"/></ruleset>", "<ruleset name=\"Twitter.com\" f=\"Twitter.xml\"><exclusion pattern=\"^http://(?:status|app\\.tweet|images\\.tweet)\\.twitter\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitter Community.com\" f=\"Twitter_Community.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitter Inc.com\" f=\"Twitter_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twky.in\" f=\"Twky.in.xml\"><rule from=\"^http://twky\\.in/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"Two Seasons\" default_off=\"mismatch\" f=\"Two-Seasons.xml\"><securecookie host=\"^(?:.*\\.)?twoseasons\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?twoseasons\\.co\\.uk/\" to=\"https://www.twoseasons.co.uk/\"/></ruleset>", "<ruleset name=\"Two Roads\" f=\"Two_Roads.xml\"><securecookie host=\"^\\.2roads\\.com$\" name=\".+\"/><rule from=\"^http://((?:fiber|news|www)\\.)?2roads\\.com/\" to=\"https://$12roads.com/\"/></ruleset>", "<ruleset name=\"Two Sigma.com\" f=\"Two_Sigma.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Two Factor Auth.org\" f=\"Twofactorauth.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twoseventy.net\" f=\"Twoseventy.net.xml\"><securecookie host=\"^\\.twoseventy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twtpoll.com\" f=\"Twtpoll.com.xml\"><securecookie host=\"^(?:www\\.)?twtpoll\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twylah.com\" default_off=\"failed ruleset test\" f=\"Twylah.com.xml\"><securecookie host=\"^(?:www\\.)?twylah\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?twylah\\.com/\" to=\"https://$1twylah.com/\"/><rule from=\"^http://assets0\\.twylah\\.com/\" to=\"https://d2bnh6mf518le4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Txmblr.com\" f=\"Txmblr.com.xml\"><securecookie host=\"^safe\\.txmblr\\.com$\" name=\".+\"/><rule from=\"^http://safe\\.txmblr\\.com/\" to=\"https://safe.txmblr.com/\"/></ruleset>", "<ruleset name=\"Tyk.io\" f=\"Tyk.io.xml\"><securecookie host=\"^\\.tyk\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tyler Cipriani.com\" f=\"Tyler_Cipriani.com.xml\"><rule from=\"^http://www\\.tylercipriani\\.com/\" to=\"https://tylercipriani.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tyndall.ie\" f=\"Tyndall.ie.xml\"><securecookie host=\"^\\.tyndall\\.ie$\" name=\".+\"/><rule from=\"^http://www\\.tyndall\\.ie/\" to=\"https://www.tyndall.ie/\"/></ruleset>", "<ruleset name=\"Tynt (mismatches)\" default_off=\"Akamai certificate\" f=\"Tynt-mismatches.xml\"><rule from=\"^http://tcr\\.tynt\\.com/\" to=\"https://tcr.tynt.com/\"/></ruleset>", "<ruleset name=\"Tynt (partial)\" f=\"Tynt.xml\"><securecookie host=\"^\\.tynt\\.com$\" name=\"^s_\\w\\w\\w?$\"/><securecookie host=\"^id\\.tynt\\.com$\" name=\".+\"/><rule from=\"^http://id\\.tynt\\.com/\" to=\"https://id.tynt.com/\"/></ruleset>", "<ruleset name=\"Työ- ja elinkeinoministeriö\" f=\"Tyo-ja-elinkeinoministerio.xml\"><rule from=\"^http://(?:www\\.)?tem\\.fi/\" to=\"https://www.tem.fi/\"/></ruleset>", "<ruleset name=\"Työttömyyskassojen Yhteisjärjestö\" f=\"Tyottomyyskassojen-yhteistyojarjesto.xml\"><securecookie host=\"^\\.tyj\\.fi$\" name=\"PHPSESSID\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typecast.com (partial)\" f=\"Typecast.com.xml\"><exclusion pattern=\"^http://typecast\\.com/blog/\\w\"/><securecookie host=\"^\\.typecast\\.com$\" name=\"^tca_(?:last_activity|last_visit|tracker)$\"/><securecookie host=\"^typecast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typekit.net\" f=\"Typekit.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typekit.com\" f=\"Typekit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typepad (partial)\" f=\"Typepad.xml\"><exclusion pattern=\"http://www\\.typepad\\.com/(?:services)?(?:$|[\\?/])\"/><rule from=\"^http://(?:www\\.)?typepad\\.com/\" to=\"https://www.typepad.com/\"/></ruleset>", "<ruleset name=\"Typesafe.com (partial)\" f=\"Typesafe.com.xml\"><rule from=\"^http://((?:new|staging|www)\\.)?typesafe\\.com/\" to=\"https://$1typesafe.com/\"/></ruleset>", "<ruleset name=\"Typography.com (partial)\" f=\"Typography.com.xml\"><securecookie host=\"^\\.typography\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?typography\\.com/(?=account(?:$|[?/])|cart/|favicon\\.ico|images/|include/)\" to=\"https://www.typography.com/\"/><rule from=\"^http://(cloud|secure|ssl)\\.typography\\.com/\" to=\"https://$1.typography.com/\"/></ruleset>", "<ruleset name=\"Typotheque.com (partial)\" f=\"Typotheque.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://im\\.typotheque\\.com/\" to=\"https://tptqimages.s3.amazonaws.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U-Bordeaux.fr (partial)\" f=\"U-Bordeaux.fr.xml\"><securecookie host=\"^(?:ent|personnels)\\.u-bordeaux\\.fr$\" name=\".+\"/><rule from=\"^http://u-bordeaux\\.fr/\" to=\"https://www.u-bordeaux.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U-Tokyo.ac.jp (problematic)\" default_off=\"expired\" f=\"U-Tokyo.ac.jp-problematic.xml\"><rule from=\"^http://(user\\.ecc|www\\.itc)\\.u-tokyo\\.ac\\.jp/\" to=\"https://$1.u-tokyo.ac.jp/\"/></ruleset>", "<ruleset name=\"U-Tokyo.ac.jp (partial)\" f=\"U-Tokyo.ac.jp.xml\"><securecookie host=\"^(?:dav[mw]|itc-lms|lecture)\\.ecc\\.u-tokyo\\.ac\\.jp$\" name=\".+\"/><rule from=\"^http://((?:dav[mw]|itc-lms|lecture|ms|ras|secure)\\.ecc|(?:mbc\\.dl|opac\\.dl|gateway|kiku|park-ssl)\\.itc|www\\.nc|payment\\.utf)\\.u-tokyo\\.ac\\.jp/\" to=\"https://$1.u-tokyo.ac.jp/\"/></ruleset>", "<ruleset name=\"U-blox.com\" f=\"U-blox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U by Kotex Australia\" f=\"U-by-Kotex-Australia.xml\"><securecookie host=\"^www\\.ubykotex\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UA.edu (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UA.edu-falsemixed.xml\"><rule from=\"^http://(www\\.)?as\\.au\\.edu/\" to=\"https://$1as.eu.edu/\"/></ruleset>", "<ruleset name=\"UA.edu (problematic)\" default_off=\"mismatched\" f=\"UA.edu-problematic.xml\"><rule from=\"^http://(directory|tour)\\.ua\\.edu/\" to=\"https://$1.ua.edu/\"/></ruleset>", "<ruleset name=\"UA.edu (partial)\" f=\"UA.edu.xml\"><exclusion pattern=\"^http://(?:www\\.)?as\\.ua\\.edu/+home(?!/wp-content/|/wp-includes/)\"/><rule from=\"^http://((?:as|(?:home|www)\\.as|bama|copingpower|fa-webprod\\.fa|mybama|oirax|onlinegiving|secure\\.sa|ssb|www)\\.)?ua\\.edu/\" to=\"https://$1ua.edu/\"/></ruleset>", "<ruleset name=\"UBM-US.net\" f=\"UBM-US.net.xml\"><rule from=\"^http://(dsimg|i)\\.ubm-us\\.net/\" to=\"https://$1.ubm-us.net/\"/></ruleset>", "<ruleset name=\"UBM (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"UBM-mismatches.xml\"><securecookie host=\"^pro\\.darkreading\\.com$\" name=\".*\"/><securecookie host=\"^www\\.drdobbs\\.com$\" name=\".*\"/><securecookie host=\"^oagcargo\\.com$\" name=\".*\"/><securecookie host=\"^ubmaviationnews\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?aircargoworld\\.com/\" to=\"https://www.aircargoworld.com/\"/><rule from=\"^http://pro\\.darkreading\\.com/\" to=\"https://pro.darkreading.com/\"/><rule from=\"^http://www\\.deusm\\.com/\" to=\"https://www.deusm.com/\"/><rule from=\"^http://(?:www\\.)?drdobbs\\.com/\" to=\"https://www.drdobbs.com/\"/><rule from=\"^http://reports\\.informationweek\\.com/((?:asset)?image|cs)s/\" to=\"https://reports.informationweek.com/$1s/\"/><rule from=\"^http://(?:www\\.)?insurancetech\\.com/\" to=\"https://www.insurancetech.com/\"/><rule from=\"^http://(?:www\\.)?oagaviation\\.com/\" to=\"https://www.oagaviation.com/\"/><rule from=\"^http://(?:www\\.)?oag(cargo|travel)\\.com/\" to=\"https://oag$1.com/\"/><rule from=\"^http://(?:www\\.)?ubmaviation\\.com/\" to=\"https://www.ubmaviation.com/\"/><rule from=\"^http://(?:www\\.)?ubmaviationnews\\.com/\" to=\"https://ubmaviationnews.com/\"/><rule from=\"^http://(?:www\\.)?ubmchannel\\.com/(cs|image)s/\" to=\"https://www.ubmchannel.com/$1s/\"/><rule from=\"^http://(?:www\\.)?ubmelectronics(?:\\.techinsights-marketing)?\\.com/(\\d{4}/wordpress/|favicon\\.ico)\" to=\"https://ubmelectronics.techinsights-marketing.com/~techinsi/ubmelectronics/$1\"/></ruleset>", "<ruleset name=\"UBM (partial)\" f=\"UBM.xml\"><securecookie host=\"^events\\.ubm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?events\\.ubm\\.com/\" to=\"https://events.ubm.com/\"/></ruleset>", "<ruleset name=\"UBS.com (partial)\" f=\"UBS.xml\"><exclusion pattern=\"^http://ebanking-us\\.ubs\\.com/\"/><exclusion pattern=\"^http://keyinvest\\.ibb\\.ubs\\.com/(?!images/|styles/)\"/><securecookie host=\"^.*\\.ubs\\.com$\" name=\".+\"/><rule from=\"^http://ubs\\.com/\" to=\"https://www.ubs.com/\"/><rule from=\"^http://(apps[12]?|assetgateway|connect-ch[12]?|ebanking-\\w+|grs|(?:client(?:login|portal)|keyinvest)\\.ibb|jobs|m|neo|onlineservices|privatebank-us|quotes-global2?|quotes-public1?|realty|sbms[12]?|secure|www)\\.ubs\\.com/\" to=\"https://$1.ubs.com/\"/></ruleset>", "<ruleset name=\"UBank\" f=\"UBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCAR.edu\" f=\"UCAR.edu.xml\"><securecookie host=\"^(?:www\\.eol|\\.ncar|www\\.unidata)\\.ucar\\.edu$\" name=\".+\"/><rule from=\"^http://(abuse|www\\.eol|(?:www\\.)?ncar|security|www\\.unidata|www2?)\\.ucar\\.edu/\" to=\"https://$1.ucar.edu/\"/></ruleset>", "<ruleset name=\"UCC.dk\" f=\"UCC.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCC.ie (partial)\" f=\"UCC.ie.xml\"><securecookie host=\"^(?:booleweb|careersfdr|cora|library|lugh|pacadmin|pensionsonline)\\.ucc\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCLA.edu (partial)\" f=\"UCLA.edu.xml\"><exclusion pattern=\"^http://maps\\.ucla\\.edu/+m/\"/><exclusion pattern=\"^http://mwf\\.ucla\\.edu/+(?!css/|img/)\"/><exclusion pattern=\"^http://www\\.recreation\\.ucla\\.edu/+(?!\\?css=|images/|scripts/)\"/><securecookie host=\"^(?:shb\\.ais|kb|(?:www\\.)?osd|dnn\\.uclanet)\\.ucla\\.edu$\" name=\".+\"/><securecookie host=\"^www\\.recreation\\.ucla.edu$\" name=\"^exp_last_(?:activity|visit)$\"/><rule from=\"^http://(?:www\\.)?(admissions?|osd)\\.ucla\\.edu/\" to=\"https://www.$1.ucla.edu/\"/><rule from=\"^http://(www\\.)?(bruintech|ccle|dcp|diversity|events|happenings|library|logon|ucod)\\.ucla\\.edu/\" to=\"https://$1$2.ucla.edu/\"/><rule from=\"^http://(shb\\.ais|sheltie\\.ats|(?:auth-asm1\\.)?auth|docs\\.ccle|welcome\\.diversity|secure5\\.ha|dev\\.happenings|(?:studentweb|wwwprep)\\.it|kb|(?:www-stage|www-test)\\.library|logon-(?:asm|csb)1\\.logon|m|maps|mwf|hr\\.mycareer|(?:secure|www)\\.recreation|computing\\.sscnet|dnn\\.uclanet|www\\.ursa)\\.ucla\\.edu/\" to=\"https://$1.ucla.edu/\"/><rule from=\"^http://guides\\.library\\.ucla\\.edu/(?=css\\d*/|data/|include/|js\\d*/)\" to=\"https://libguides.com/\"/></ruleset>", "<ruleset name=\"UCLA Health\" f=\"UCLA_Health.xml\"><securecookie host=\"^www\\.uclahealth\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uclahealth\\.org/\" to=\"https://www.uclahealth.org/\"/></ruleset>", "<ruleset name=\"UCM.es (partial)\" f=\"UCM.es.xml\"><exclusion pattern=\"^http://biblioteca\\.ucm\\.es/+(?!media/|temas/)\"/><exclusion pattern=\"^http://cisne\\.sim\\.ucm\\.es/+(?!screens/|scripts/)\"/><rule from=\"^http://(biblioteca|pendientedemigracion|cisne\\.sim|www)\\.ucm\\.es/\" to=\"https://$1.ucm.es/\"/></ruleset>", "<ruleset name=\"UCPI.org.uk\" f=\"UCPI.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCSD.edu (self-signed)\" default_off=\"mismatched, self-signed\" f=\"UCSD.edu-self-signed.xml\"><securecookie host=\"^\\.www-cse\\.ucsd\\.edu$\" name=\".+\"/><rule from=\"^http://www\\.iod\\.ucsd\\.edu/\" to=\"https://www.iod.ucsd.edu/\"/><rule from=\"^http://goto\\.ucsd\\.edu/\" to=\"https://goto.ucsd.edu/\"/></ruleset>", "<ruleset name=\"UCSD\" default_off=\"failed ruleset test\" f=\"UCSD.edu.xml\"><exclusion pattern=\"^http://health\\.ucsd\\.edu/_layouts/spsredirect\\.aspx\"/><exclusion pattern=\"^http://extension\\.ucsd\\.edu/+(?!cart/images/|css/|favicon\\.ico|images/|profile/index\\.cfm|programapplications/index\\.cfm)\"/><exclusion pattern=\"^http://hdh\\.ucsd\\.edu/+mobile(?:$|[?/])\"/><exclusion pattern=\"^http://(?:www\\.)?psychology\\.ucsd\\.edu/+(?!favicon\\.ico|_images/|_resources/)\"/><exclusion pattern=\"^http://studenthealth\\.ucsd\\.edu/+(?!css/|favicon\\.ico|img/)\"/><exclusion pattern=\"^http://tuna\\.ucsd\\.edu/+(?!$|\\?)\"/><securecookie host=\"^(?:.+\\.)?a(?:4|cs-webmail)\\.ucsd\\.edu$\" name=\".*\"/><rule from=\"^http://a4\\.ucsd\\.edu/\" to=\"https://a4.ucsd.edu/\"/><rule from=\"^http://(?:acs-)?webmail\\.ucsd\\.edu/\" to=\"https://acs-webmail.ucsd.edu/\"/><rule from=\"^http://altng\\.ucsd\\.edu/\" to=\"https://altng.ucsd.edu/\"/><rule from=\"^http://aventeur\\.ucsd\\.edu/\" to=\"https://aventeur.ucsd.edu/\"/><rule from=\"^http://cinfo\\.ucsd\\.edu/\" to=\"https://cinfo.ucsd.edu/\"/><rule from=\"^http://facilities\\.ucsd\\.edu/\" to=\"https://facilities.ucsd.edu/\"/><rule from=\"^http://gradapply\\.ucsd\\.edu/\" to=\"https://gradapply.ucsd.edu/\"/><rule from=\"^http://graduateapp\\.ucsd\\.edu/\" to=\"https://graduateapp.ucsd.edu/\"/><rule from=\"^http://jacobsstudent\\.ucsd\\.edu/\" to=\"https://jacobsstudent.ucsd.edu/\"/><rule from=\"^http://myucsdchart\\.ucsd\\.edu/\" to=\"https://myucsdchart.ucsd.edu/\"/><rule from=\"^http://sdacs\\.ucsd\\.edu/\" to=\"https://sdacs.ucsd.edu/\"/><rule from=\"^http://shs\\.ucsd\\.edu/\" to=\"https://shs.ucsd.edu/\"/><rule from=\"^http://ted\\.ucsd\\.edu/\" to=\"https://ted.ucsd.edu/\"/><rule from=\"^http://ucsdbkst\\.ucsd\\.edu/\" to=\"https://ucsdbkst.ucsd.edu/\"/><rule from=\"^http://a\\.ucsd\\.edu/\" to=\"https://a.ucsd.edu/\"/><rule from=\"^http://acms\\.ucsd\\.edu/\" to=\"https://acms.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?bookstore\\.ucsd\\.edu/\" to=\"https://bookstore.ucsd.edu/\"/><rule from=\"^http://(www[-\\.])?cs(e)?\\.ucsd\\.edu/\" to=\"https://$1cs$2.ucsd.edu/\"/><rule from=\"^http://(www\\.)?ece\\.ucsd\\.edu(:16080)?/\" to=\"https://$1ece.ucsd.edu/\"/><rule from=\"^http://(www\\.)?hdh\\.ucsd\\.edu/\" to=\"https://$1hdh.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?hds\\.ucsd\\.edu/\" to=\"https://hds.ucsd.edu/\"/><rule from=\"^http://maeweb\\.ucsd\\.edu/\" to=\"https://maeweb.ucsd.edu/\"/><rule from=\"^http://(www\\.)?nanoengineering\\.ucsd\\.edu/\" to=\"https://$1nanoengineering.ucsd.edu/\"/><rule from=\"^http://ne(-?web)?\\.ucsd\\.edu/\" to=\"https://ne$1.ucsd.edu/\"/><rule from=\"^http://roger\\.ucsd\\.edu/\" to=\"https://roger.ucsd.edu/\"/><rule from=\"^http://se\\.ucsd\\.edu/\" to=\"https://se.ucsd.edu/\"/><rule from=\"^http://(www\\.)?structures\\.ucsd\\.edu/\" to=\"https://$1structures.ucsd.edu/\"/><rule from=\"^http://uxt\\.ucsd\\.edu/\" to=\"https://uxt.ucsd.edu/\"/><rule from=\"^http://www-ne\\.ucsd\\.edu/\" to=\"https://www-ne.ucsd.edu/\"/><rule from=\"^http://www-structures\\.ucsd\\.edu/\" to=\"https://www-structures.ucsd.edu/\"/><rule from=\"^http://health\\.ucsd\\.edu/(_layouts/|page_ad/|request_appt|Style\\ Library/|WebResource\\.axd)\" to=\"https://health.ucsd.edu/$1\"/><rule from=\"^http://libraries\\.ucsd\\.edu/digital/\" to=\"https://libraries.ucsd.edu/digital/\"/><rule from=\"^http://studenthealth\\.ucsd\\.edu/secure/\" to=\"https://studenthealth.ucsd.edu/secure/\"/><rule from=\"^http://(www-)?act\\.ucsd\\.edu/(bsl/home|cgi-bin/[A-Za-z]+link\\.pl|classPlanner|marketplace-sso|mytritonlink/view|myTritonlink20|student[A-Z][A-Za-z]+/[A-Za-z]+|travellink/home)\" to=\"https://$1act.ucsd.edu/$2\"/><rule from=\"^http://accesslink\\.ucsd\\.edu/\" to=\"https://altng.ucsd.edu/\"/><rule from=\"^http://financiallink\\.ucsd\\.edu/?$\" to=\"https://www-act.ucsd.edu/cgi-bin/financiallink.pl\"/><rule from=\"^http://marketplace\\.ucsd\\.edu/?$\" to=\"https://www-act.ucsd.edu/marketplace-sso/signon\"/><rule from=\"^http://(?:www\\.)?(?:my)?tritonlink\\.ucsd\\.edu/?$\" to=\"https://act.ucsd.edu/myTritonlink20/display.htm\"/><rule from=\"^http://uclearning\\.ucsd\\.edu/\" to=\"https://a4.ucsd.edu/lms/\"/><rule from=\"^http://(cri|desktop|resnet|software|sysstaff)\\.ucsd\\.edu/\" to=\"https://acms.ucsd.edu/units/$1/\"/><rule from=\"^http://(?:www-)?acs\\.ucsd\\.edu/troublereport/?$\" to=\"https://a.ucsd.edu/troublereport/\"/><rule from=\"^http://www-acs\\.ucsd\\.edu/?$\" to=\"https://acms.ucsd.edu/index.html\"/><rule from=\"^http://www-acs\\.ucsd\\.edu/account-tools/oce-intro\\.shtml$\" to=\"https://acms.ucsd.edu/students/oce-intro.html\"/><rule from=\"^http://www-acs\\.ucsd\\.edu/instructional/?$\" to=\"https://acms.ucsd.edu/students/\"/><securecookie host=\".*\\.ucsd\\.edu\" name=\".*\"/><rule from=\"^http://collections\\.ucsd\\.edu/+(?=$|\\?)\" to=\"https://scripps.ucsd.edu/collections\"/><rule from=\"^http://(?:www\\.)?(chd|ethnicstudies)\\.ucsd\\.edu/\" to=\"https://$1.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?giftplanning\\.ucsd\\.edu/\" to=\"https://ucsd.giftlegacy.com/\"/><rule from=\"^http://(www\\.)?math\\.ucsd\\.edu/\" to=\"https://$1math.ucsd.edu/\"/><rule from=\"^http://psy\\.ucsd\\.edu/+(?:$|\\?.*)\" to=\"https://psychology.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?psychology\\.ucsd\\.edu/\" to=\"https://psychology.ucsd.edu/\"/><rule from=\"^http://scrippsnews\\.ucsd\\.edu/+(?=$|\\?)\" to=\"https://scripps.ucsd.edu/news\"/><rule from=\"^http://scrippsnews\\.ucsd\\.edu/Releases/\" to=\"https://scripps.ucsd.edu/news\"/><rule from=\"^http://(?:www\\.)?supportscripps\\.ucsd\\.edu/[^?]*\" to=\"https://scripps.ucsd.edu/giving\"/><rule from=\"^http://((?:admissions|academicconnections|as|assets|artsandhumanities|biology|blink|caesar|calendar|career|cfr|cgs|cilas|create|crlpsandiego|cseweb|csmp|cwo|dah|dbsportal|disabilities|eaop|ersys-webapps|extension|foundation|giving|globalhealthprogram|health2|healthsciences|hdh|hsreservations|igpp|igppticket|igppwiki|iod|isp|iwdc|jobs|libguides|libraries|lists|m|mailman|mathlink2?|meded|mobile|myextension|myosd|mytritonlink|myucsdchart|ocfr|ocga|onthego|pao|parents|physics|podcast|polisci|preuss|profiles|recreation|rmp|saber|sarc|sciencestudies|scripps|sdawp|ships|socialsciences|student(?:health|parents|s|support)|sustainability|trio|tuna|ucsdfoundation|ui|unex-shibboleth|usmex|usp|www|www-act|www-er|yankelovichcenter)\\.)?ucsd\\.edu/\" to=\"https://$1ucsd.edu/\"/></ruleset>", "<ruleset name=\"UC Hastings.edu (false MCB)\" platform=\"mixedcontent\" f=\"UC_Hastings.edu-falsemixed.xml\"><securecookie host=\"^events\\.uchastings\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UC Hastings.edu (problematic)\" default_off=\"missing certificate chain\" f=\"UC_Hastings.edu-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UC Hastings.edu (partial)\" f=\"UC_Hastings.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCalgary.ca (partial)\" f=\"UCalgary.ca.xml\"><exclusion pattern=\"^http://(?:www\\.)?ucalgary\\.ca/+(?!(?:\\w+/)?(?:files|misc|modules|sites)/|(?:alumni|brand|community|currentstudents|events|facultyandstaff|hr|identity|map|prospectivestudents|pubs|residence|science/user)(?:$|[?/])|favicon\\.ico)\"/><exclusion pattern=\"^http://contacts\\.ucalgary\\.ca/+(?!files/|sites/|user(?:$|[?/]))\"/><exclusion pattern=\"^http://conted\\.ucalgary\\.ca/+(?!\\w+/images/|coursebasket/publicCourseBasket\\.do|css/|favicon\\.ico|images/|javascript/|uc-scripts/|yahoo/)\"/><exclusion pattern=\"^http://(?:haskayne|kb)\\.ucalgary\\.ca/+(?!files/)\"/><exclusion pattern=\"^http://springsummer.ucalgary.ca/+(?!files/)\"/><exclusion pattern=\"^http://ereports2\\.ucalgary\\.ca/+(?!cognoscas/*(?:$|\\?))\"/><securecookie host=\"^(?:acctman|activeliving|arts|cas|prdrps2\\.ehs|eplanning|idp|imagine|itsc|library|llc|netcommunity|oadm|science|static|\\.su|www\\.su)\\.ucalgary\\.ca$\" name=\".+\"/><rule from=\"^http://((?:acctman|activeliving|arts|cas|contacts|conted|www\\.efs|prdrps2\\.ehs|eplanning|ereports2|grad|haskayne|idp|itsc|imagine|kb|library|ling|llc|my|netcommunity|oadm|people|pr1web|science|springsummer|spse|static|wcmprod2|www)\\.)?ucalgary\\.ca(:8445)?/\" to=\"https://$1ucalgary.ca$2/\"/><rule from=\"^http://libguides\\.ucalgary\\.com/(?=css\\d*/|favicon\\.ico|include/|js\\d*/)\" to=\"https://libguides.com/\"/><rule from=\"^http://(?:www\\.)?su\\.ucalgary\\.ca/\" to=\"https://www.su.ucalgary.ca/\"/><rule from=\"^http://www\\.calgaryoutdoorcentre\\.ca/files/\" to=\"https://www.ucalgary.ca/files/\"/></ruleset>", "<ruleset name=\"UCalgary Mag.ca\" f=\"UCalgary_Mag.ca.xml\"><securecookie host=\"^\\.ucalgarymag\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uClinics\" f=\"UClinics.xml\"><securecookie host=\"^(?:app)?\\.uclinics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unreal Development Kit\" default_off=\"failed ruleset test\" f=\"UDK.com.xml\"><rule from=\"^http://(?:www\\.)?udk\\.com/\" to=\"https://udk.com/\"/></ruleset>", "<ruleset name=\"UD Media.de\" f=\"UD_Media.de.xml\"><securecookie host=\"^(?:root|\\.www)\\.udmedia\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?ud-?media\\.de/\" to=\"https://$1udmedia.de/\"/><rule from=\"^http://hilfe\\.udmedia\\.de/[^?]*\" to=\"https://www.udmedia.de/faq/\"/><rule from=\"^http://livechat\\.udmedia\\.de/[^?]*\" to=\"https://messenger.providesupport.com/messenger/udmedia.html\"/><rule from=\"^http://(?:www\\.)?root\\.udmedia\\.de/\" to=\"https://root.udmedia.de/\"/></ruleset>", "<ruleset name=\"UDimg.com\" default_off=\"mismatched\" f=\"UDimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UFC Fit\" default_off=\"failed ruleset test\" f=\"UFC_Fit.xml\"><securecookie host=\"^(?:launchpad|www)\\.ufcfit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UFies.org\" default_off=\"failed ruleset test\" f=\"UFies.org.xml\"><securecookie host=\"^ufies\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ufies\\.org/\" to=\"https://ufies.org/\"/><rule from=\"^http://mail\\.ufies\\.org/[^?]*(\\?.*)?\" to=\"https://ufies.org/mail/$1\"/></ruleset>", "<ruleset name=\"Uni-Hamburg.de\" f=\"UHH-Informatik.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI-Portal.de (partial)\" f=\"UI-Portal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIC.edu (false MCB)\" platform=\"mixedcontent\" f=\"UIC.edu-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIC Bookstore.org\" f=\"UIC_Bookstore.org.xml\"><rule from=\"^http://uicbookstore\\.org/\" to=\"https://www.uicbookstore.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIE\" f=\"UIE.xml\"><securecookie host=\"^(?:.+\\.)?uie\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uie\\.com/\" to=\"https://www.uie.com/\"/></ruleset>", "<ruleset name=\"UIUC.edu (partial)\" f=\"UIUC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.)?(dps|union)\\.uiuc\\.edu/\" to=\"https://$1$2.illinois.edu/\"/><rule from=\"^http://www\\.ks\\.uiuc\\.edu/\" to=\"https://www-s.ks.uiuc.edu/\"/><rule from=\"^http://www\\.mechse\\.uiuc\\.edu/+\" to=\"https://mechanical.illinois.edu/\"/><rule from=\"^http://www\\.uiuc\\.edu/\" to=\"https://illinois.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI CDN.com\" f=\"UI_CDN.com.xml\"><rule from=\"^http://s\\.uicdn\\.com/\" to=\"https://sec-s.uicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI CDN.net\" f=\"UI_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIllinois.edu (false MCB)\" platform=\"mixedcontent\" f=\"UIllinois.edu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIllinois.edu (partial)\" f=\"UIllinois.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(conferences\\.|ogr\\.)?uillinois\\.edu/\" to=\"https://www.$1uillinois.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UImserv.net\" f=\"UImserv.net.xml\"><securecookie host=\"^\\.uimserv\\.net$\" name=\".+\"/><rule from=\"^http://(adclient|adimg|advideo|pixelbox|r|uidbox|uir|logout\\.webde)\\.uimserv\\.net/\" to=\"https://$1.uimserv.net/\"/></ruleset>", "<ruleset name=\"UJF-Grenoble.fr\" f=\"UJF-Grenoble.fr.xml\"><rule from=\"^http://(developpementdurable|liens|www)\\.ujf-grenoble\\.fr/\" to=\"https://$1.ujf-grenoble.fr/\"/></ruleset>", "<ruleset name=\"UK-2 (partial)\" default_off=\"failed ruleset test\" f=\"UK-2.xml\"><securecookie host=\"^\\.uk2\\.net$\" name=\"^controlpanel$\"/><securecookie host=\"^(?:mail|support)\\.uk2\\.net$\" name=\".+\"/><rule from=\"^http://((?:(?:static\\.)?controlpanel|kb|support|www)\\.)?uk2\\.net/\" to=\"https://$1uk2.net/\"/><rule from=\"^http://blog\\.uk2\\.net/\" to=\"https://www.uk2.net/blog/\"/><rule from=\"^http://(?:www\\.)?mail\\.uk2\\.net/\" to=\"https://mail.uk2.net/\"/><rule from=\"^http://(www\\.)?uk2img\\.net/\" to=\"https://$1uk2img.net/\"/></ruleset>", "<ruleset name=\"UK Access Management Federation\" default_off=\"failed ruleset test\" f=\"UK-Access-Management-Federation.xml\"><securecookie host=\"^wayf\\.ukfederation\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://wayf\\.ukfederation\\.org\\.uk/\" to=\"https://wayf.ukfederation.org.uk/\"/></ruleset>", "<ruleset name=\"UK Department for Business, Innovation & Skills\" default_off=\"expired\" f=\"UK-Department-for-Business-Innovation-and-Skills.xml\"><rule from=\"^http://(?:www\\.)?bis\\.gov\\.uk/\" to=\"https://www.bis.gov.uk/\"/></ruleset>", "<ruleset name=\"UK Free Software Network (partial)\" default_off=\"failed ruleset test\" f=\"UK-Free-Software-Network.xml\"><securecookie host=\".*\\.ukfsn\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICO.gov.uk\" default_off=\"missing certificate chain\" f=\"UK-Information-Commissioners-Office.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK Web Solutions Direct\" f=\"UK-Web-Solutions-Direct.xml\"><securecookie host=\"^ukwebsolutionsdirect\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ukwebsolutionsdirect\\.co(?:\\.uk|m)/\" to=\"https://ukwebsolutionsdirect.co.uk/\"/></ruleset>", "<ruleset name=\"UKFast.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"UKFast.co.uk.xml\"><exclusion pattern=\"^http://www\\.ukfast\\.co\\.uk/(?!favicon\\.ico|images/|myukfast\\.html|scripts/|stylesheets/)\"/><securecookie host=\"^(?:my\\.)?ukfast\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?ukfast\\.co\\.uk/\" to=\"https://$1ukfast.co.uk/\"/><rule from=\"^http://images\\.ukfast\\.co\\.uk/\" to=\"https://www.ukfast.co.uk/images/\"/><rule from=\"^http://my2?\\.ukfast\\.co\\.uk/\" to=\"https://my.ukfast.co.uk/\"/></ruleset>", "<ruleset name=\"UKFur\" f=\"UKFur.xml\"><securecookie host=\"^forum\\.ukfur\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.ukfur\\.org/\" to=\"https://forum.ukfur.org/\"/></ruleset>", "<ruleset name=\"UKLINUX.NET (partial)\" default_off=\"expired\" f=\"UKLINUX.xml\"><rule from=\"^http://(?:www\\.)?uklinux\\.net/\" to=\"https://www.uklinux.net/\"/></ruleset>", "<ruleset name=\"UK Local Government (partial)\" f=\"UKLocalGovernment.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UKNOF.org.uk (partial)\" f=\"UKNOF.org.uk.xml\"><rule from=\"^http://(indico|lists|wiki)\\.uknof\\.org\\.uk/\" to=\"https://$1.uknof.org.uk/\"/></ruleset>", "<ruleset name=\"UK Intellectual Property Office\" f=\"UK_Intellectual_Property_Office.xml\"><securecookie host=\"^(?:www\\.)?ipo\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK Ministry of Defence\" f=\"UK_Ministry_of_Defence.xml\"><rule from=\"^http://defenceimagery\\.mod\\.uk/\" to=\"https://www.defenceimagery.mod.uk/\"/><rule from=\"^http://([^/:@]+)?\\.defenceimagery\\.mod\\.uk/\" to=\"https://$1.defenceimagery.mod.uk/\"/></ruleset>", "<ruleset name=\"UK Payments.org.uk\" f=\"UK_Payments.org.uk.xml\"><securecookie host=\"^www\\.ukpayments\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK online centres.com (partial)\" f=\"UK_online_centres.com.xml\"><rule from=\"^http://(www\\.)?ukonlinecentres\\.com/(?=images/|media/|modules/|services/|templates/)\" to=\"https://$1ukonlinecentres.com/\"/></ruleset>", "<ruleset name=\"UL.ie (false MCB)\" platform=\"mixedcontent\" f=\"UL.ie-falsemixed.xml\"><securecookie host=\"^www\\.ul\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ul\\.ie/(?!ee/|favicon\\.ico|styles/)\" to=\"https://www.ul.ie/\"/></ruleset>", "<ruleset name=\"UL.ie (partial)\" f=\"UL.ie.xml\"><securecookie host=\"^\\.ul\\.ie$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?ul\\.ie/(?=ee/|favicon\\.ico|styles/)\" to=\"https://www.ul.ie/\"/></ruleset>", "<ruleset name=\"ULAKBIM.gov.tr (partial)\" default_off=\"self-signed\" f=\"ULAKBIM.gov.tr.xml\"><securecookie host=\"^(?:istatistik|stat)\\.ulakbim\\.gov\\.tr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ulakbim\\.gov\\.tr/\" to=\"https://www.ulakbim.gov.tr/\"/><rule from=\"^http://(ekual|istatistik|stat)\\.ulakbim\\.gov\\.tr/\" to=\"https://$1.ulakbim.gov.tr/\"/></ruleset>", "<ruleset name=\"UMBC.edu (partial)\" f=\"UMBC.edu.xml\"><securecookie host=\"^publications\\.csee\\.umbc\\.edu$\" name=\".+\"/><rule from=\"^http://(assets[1-4]-my|publications\\.csee)\\.umbc\\.edu/\" to=\"https://$1.umbc.edu/\"/><rule from=\"^http://(?:www\\.)?csee\\.umbc\\.edu/\" to=\"https://www.csee.umbc.edu/\"/></ruleset>", "<ruleset name=\"uMonitor\" default_off=\"failed ruleset test\" f=\"UMonitor.xml\"><securecookie host=\"^.*\\.umonitor\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?umonitor\\.com/\" to=\"https://www.umonitor.com/\"/><rule from=\"^http://onelink\\.umonitor\\.com/\" to=\"https://onelink.umonitor.com/\"/></ruleset>", "<ruleset name=\"UN.org\" platform=\"mixedcontent\" f=\"UN.org.xml\"><rule from=\"^http://(?:www\\.)?un\\.org/\" to=\"https://www.un.org/\"/></ruleset>", "<ruleset name=\"UNC.edu (mixed content)\" platform=\"mixedcontent\" f=\"UNC.edu-mixedcontent.xml\"><securecookie host=\"^(?:www\\.)?library\\.unc\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNC.edu (partial)\" f=\"UNC.edu.xml\"><exclusion pattern=\"^http://(?:(?:cmsp|cs|events|global|help|hr|its|its-commons|research)\\.)?unc\\.edu/+(?!favicon\\.ico|files/|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://(?:financeadmin|www\\.(?:onecard|pid))\\.unc\\.edu/+(?!DesktopModules/|[Pp]ortals/|UNCImages/|favicon\\.ico|images/|uncimages/|spacer\\.gif)\"/><exclusion pattern=\"^http://library\\.unc\\.edu/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:connectcarolina|dir|directory|infoporte|itsapps|onecard|onyen|pid|search|selfservice|(?:events|global|help|its2|its-commons)\\.sites|diversity\\.web|webservices)\\.unc\\.edu$\" name=\".+\"/><rule from=\"^http://((?:ccinfo|ccpa|cmsp|connectcarolina(?:www\\.)?cs|dir|directory|diversity|financeadmin|help|hr|infoporte|its|itsapps|its-commons|blogs\\.lib|(?:www\\.)?library|my|obi|(?:www\\.)?onecard|onyen|(?:www\\.)?pid|research|search|selfservice|(?:cs|events|global|help|its2|its-commons)\\.sites|sso|diversity\\.web|webservices|www)\\.)?unc\\.edu/\" to=\"https://$1unc.edu/\"/><rule from=\"^http://calendar\\.lib\\.unc\\.edu/(?=css\\d+|images/)\" to=\"https://unc.libcal.com/\"/></ruleset>", "<ruleset name=\"UNC Lineberger.org\" default_off=\"failed ruleset test\" f=\"UNC_Lineberger.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNDP.org (partial)\" f=\"UNDP.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNFPA.org\" default_off=\"failed ruleset test\" f=\"UNFPA.org.xml\"><rule from=\"^http://www\\.unfpa\\.org/\" to=\"https://www.unfpa.org/\"/><rule from=\"^http://unfpa\\.org/\" to=\"https://www.unfpa.org/\"/></ruleset>", "<ruleset name=\"UNHCR.org (partial)\" default_off=\"mismatched\" f=\"UNHCR.org.xml\"><securecookie host=\"^donate\\.unhcr\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNIDO.org\" f=\"UNIDO.org.xml\"><rule from=\"^http://www\\.unido\\.org/\" to=\"https://www.unido.org/\"/></ruleset>", "<ruleset name=\"UNM.edu (false MCB)\" platform=\"mixedcontent\" f=\"UNM.edu-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?unm\\.edu/\" to=\"https://www.unm.edu/\"/><rule from=\"^http://directory\\.unm\\.edu/\" to=\"https://directory.unm.edu/\"/></ruleset>", "<ruleset name=\"UNM.edu (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"UNM.edu-problematic.xml\"><rule from=\"^http://as2\\.unm\\.edu/\" to=\"https://as2.unm.edu/\"/><rule from=\"^http://(?:www\\.)?(cars|ece)\\.unm\\.edu/\" to=\"https://www.$1.unm.edu/\"/></ruleset>", "<ruleset name=\"UNM.edu (partial)\" f=\"UNM.xml\"><exclusion pattern=\"^http://(?:directory\\.|www\\.)?unm\\.edu/+(?!~emanage/|common/|favicon\\.ico|images_nl/)\"/><rule from=\"^http://(?:www\\.)?unm\\.edu/\" to=\"https://www.unm.edu/\"/><rule from=\"^http://(?:www\\.)?cs\\.unm\\.edu/\" to=\"https://www.cs.unm.edu/\"/><rule from=\"^http://shea\\.unm\\.edu/+\" to=\"https://srs.unm.edu/\"/><rule from=\"^http://(?:www\\.)?soe\\.unm\\.edu/\" to=\"https://soe.unm.edu/\"/><rule from=\"^http://(abqg|cascade|cio|directory|emanage|fastinfo|learningcentral\\.health|help|hscssl|it|loboalerts|login|lynda|my|netid|help\\.people|pinnacle|police|portalchannels|search|shac|srs|studentinfo|unmjobs|webcore|webmaster)\\.unm\\.edu/\" to=\"https://$1.unm.edu/\"/></ruleset>", "<ruleset name=\"UNODC.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UNODC.org.xml\"><rule from=\"^http://www\\.unodc\\.org/\" to=\"https://www.unodc.org/\"/><rule from=\"^http://unodc\\.org/\" to=\"https://www.unodc.org/\"/></ruleset>", "<ruleset name=\"UNSW.edu.au\" f=\"UNSW.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UN Multimedia.org\" f=\"UN_Multimedia.org.xml\"><rule from=\"^http://(control\\.|www\\.)?unmultimedia\\.org/\" to=\"https://$1unmultimedia.org/\"/><rule from=\"^http://downloads\\.unmultimedia\\.org/\" to=\"https://s3.amazonaws.com/downloads.unmultimedia.org/\"/></ruleset>", "<ruleset name=\"UOL.com.br (MCB)\" platform=\"mixedcontent\" f=\"UOL.com.br-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UOL.com.br (partial)\" f=\"UOL.xml\"><exclusion pattern=\"^http://mais\\.uol\\.com\\.br/+(?!stc/)\"/><securecookie host=\"^\\.uol\\.com\\.br$\" name=\"^RMTRK\\.ID$\"/><securecookie host=\"^(?:cadastro|denuncia|(?:sandbox\\.)?pagseguro)\\.uol\\.com\\.br$\" name=\".+\"/><securecookie host=\"^\\.pagseguro\\.uol\\.com\\.br$\" name=\"^(?:LAST_SERVER_HIT|TS\\w+)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UOregon (Partial!)\" f=\"UOregon.xml\"><exclusion pattern=\"^http://aaeo\\.uoregon\\.edu/+(?!adr(?:$|[?/]))\"/><exclusion pattern=\"^http://ba\\.uoregon\\.edu/+(?!favicon\\.ico|misc/|sites/)\"/><exclusion pattern=\"^http://(?:www\\.)?law\\.uoregon\\.edu/+(?!assets/|favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://sapp\\.uoregon\\.edu/+(?!favicon\\.ico|images/|style\\.css)\"/><securecookie host=\"^(?:(?:academicextension|aim|around|blackboard|blogs|calendar|campusops|\\.casadmin|commencement|conferences|counseling|des|digital|emu|ffp|\\.?geogadvising|gradschool|gradweb|healthcenter|inventory|it|oem|studentlife|sustainablemap|svpe|swat|tembo|uonews|uoresearch|webmail|www)\\.)?uoregon\\.edu$\" name=\".+\"/><rule from=\"^http://((?:aaa|aaeo|academicaffairs|academicextension|aim|around|asap|ba|oregoncis|blackboard|blogs|calendar|campusops|career|casadmin|casit(?:docs|forms|jobs|web)?|(?:videos\\.)?cinema|cmae|commencement|conferences|distanceeducation|counseling|des|digital|duckid|duckweb|english|faprod|ffp|geogadvising|gradschool|gradweb|graphicacy|healthcenter|healthycampus|housing|hr2?|inventory|ir|it|pcs|budgetmotel|brp|library|libweb|lcb|lists|lists-prod|odt|oem|pde|proofpoint|sa-web|sapp|scholarsbank|secureserver|shibboleth|studentlife|sustainablemap|svpe|swat|tembo|wiki|systems\\.cs|uodos|uonews|www2\\.lcb|www\\.(cs|law|lcb)|uoresearch|webmail|www)\\.)?uoregon\\.edu/\" to=\"https://$1uoregon.edu/\"/><rule from=\"^http://(ba|safetyweb)\\.uoregon\\.edu/sites/\" to=\"https://$1.uoregon.edu/sites/\"/><rule from=\"^http://ae\\.uoregon\\.edu/\" to=\"https://academicextension.uoregon.edu/\"/><rule from=\"^http://(?:www\\.)?emu\\.uoregon\\.edu/\" to=\"https://emu.uoregon.edu/\"/><rule from=\"^http://giving\\.uoregon\\.edu/(?=$|\\?)\" to=\"https://securelb.imodules.com/s/1540/development/start.aspx?gid=2&pgid=61\"/><rule from=\"^http://giving\\.uoregon\\.edu/\" to=\"https://securelb.imodules.com/\"/><rule from=\"^http://(www\\.)?law\\.uoregon\\.edu/\" to=\"https://$1law.uoregon.edu/\"/><rule from=\"^http://newsletter\\.uoregon\\.edu/.*\" to=\"https://studentlife.uoregon.edu/\"/><rule from=\"^http://parking\\.uoregon\\.edu/(sites|misc|_images)/\" to=\"https://parking.uoregon.edu/$1/\"/><rule from=\"^http://vpsa\\.uoregon\\.edu/[^?]*\" to=\"https://studentlife.uoregon.edu/\"/></ruleset>", "<ruleset name=\"UPC Česká republika s.r.o.\" f=\"UPC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.ie (partial)\" f=\"UPC.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.nl (partial)\" f=\"UPC.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://business\\.upc\\.nl/+\" to=\"https://www.upcbusiness.nl/\"/><rule from=\"^http://overupc\\.upc\\.nl/[^?]*\" to=\"https://www.ziggo.nl/klantenservice/administratief/service/accessoires-shop/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC Business.nl\" f=\"UPC_Business.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPI.com (false MCB)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"UPI.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPI.com (partial)\" default_off=\"expired\" f=\"UPI.com.xml\"><exclusion pattern=\"^http://www\\.upi\\.com/+(?!favicon\\.ico|img/|inc/|upi/dw/css/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPR.edu (self-signed)\" default_off=\"expired, self-signed\" f=\"UPR.edu-problematic.xml\"><securecookie host=\"^(?:webmail\\.)?upr\\.edu$\" name=\".+\"/><rule from=\"^http://((?:mail|webmail|www)\\.)?hpcf\\.upr\\.edu/\" to=\"https://$1hpcf.upr.edu/\"/></ruleset>", "<ruleset name=\"UPS.com (partial)\" default_off=\"failed ruleset test\" f=\"UPS.com.xml\"><exclusion pattern=\"^http://ups.com/$\"/><exclusion pattern=\"^http://www.ups.com/$\"/><securecookie host=\"^www\\.campusship\\.ups\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?ups\\.com/(assets/|favicon\\.ico|img/|styles/|stylesheets/)\" to=\"https://www.ups.com/$2\"/><rule from=\"^http://www(\\.)?apps\\.ups\\.com/\" to=\"https://www$1apps.ups.com/\"/><exclusion pattern=\"^http://www(\\.)?apps\\.ups\\.com/WebTracking/track($|\\?)\"/><rule from=\"^http://(?:www\\.)?campusship\\.ups\\.com/\" to=\"https://www.campusship.ups.com/\"/></ruleset>", "<ruleset name=\"UPU.int (partial)\" f=\"UPU.int.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Úřad průmyslového vlastnictví\" f=\"UPV.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uPatient\" f=\"UPatient.xml\"><securecookie host=\"^(?:app)?\\.upatient\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uProd.biz\" default_off=\"missing certificate chain\" f=\"UProd.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uProxy.org\" f=\"UProxy.org.xml\"><securecookie host=\"^\\.uproxy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uproxy\\.org/\" to=\"https://www.uproxy.org/\"/></ruleset>", "<ruleset name=\"UQ WiMAX\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UQWiMAX.xml\"><rule from=\"^http://(?:www\\.)?uqwimax\\.jp/\" to=\"https://www.uqwimax.jp/\"/></ruleset>", "<ruleset name=\"URAC\" f=\"URAC.xml\"><securecookie host=\"^www\\.urac\\.org$\" name=\".+\"/><rule from=\"^http://urac\\.org/\" to=\"https://www.urac.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"URLParser.com\" default_off=\"mismatched\" f=\"URLParser.com.xml\"><rule from=\"^http://(?:www\\.)?urlparser\\.com/\" to=\"https://urlparser.com/\"/></ruleset>", "<ruleset name=\"URX.com (partial)\" f=\"URX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBO.gov\" f=\"US-CBO.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HUD.gov (partial)\" f=\"US-Department-of-Housing-and-Urban-Development.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?hud\\.gov/\" to=\"https://portal.hud.gov/portal/page/portal/HUD\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Department of Veterans Affairs\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"US-Dept-of-Veterans-Affairs.xml\"><exclusion pattern=\"^http://www\\.va\\.gov/kids(?:$|/)\"/><securecookie host=\"^www\\.(?:ebenefits|vendorportal\\.ecms|vis\\.fsc|1010ez\\.med|myhealth|pay|tms|valu|vba|visn23?)\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^\\.?(?:(?:pki|register)\\.eauth|iris|uploads|www4)\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^(?:\\.|www\\.)?(?:fasttrack|gibill|move|vacanteen|vacareers|voa)\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^www\\.vip\\.vetbiz\\.gov$\" name=\".+\"/><securecookie host=\"^(?:\\.|www\\.)?insurance|(?:tas|vabenefits|vaonce|vip)\\.vba\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^(?:\\.|www\\.)?(?:assessments|login|mst|my|users|vct)\\.aforvets\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^www\\.va\\.gov$\" name=\".+\"/><rule from=\"^https?://(?:www\\.)?va\\.gov/opa/fact/index\\.asp(?:$|\\?)\" to=\"https://www.va.gov/opa/publications/factsheets.asp\"/><rule from=\"^https?://(?:www\\.)?va\\.gov/(?:cbo|CBO)/rates\\.asp(?:$|\\?)\" to=\"https://www.va.gov/CBO/apps/rates/index.asp\"/><rule from=\"^http://www\\.(ebenefits|vendorportal\\.ecms|vis\\.fsc|1010ez\\.med|myhealth|pay|tms|valu|vba|visn23?)\\.va\\.gov/\" to=\"https://www.$1.va.gov/\"/><rule from=\"^http://(iris|uploads|www4)\\.va\\.gov/\" to=\"https://$1.va.gov/\"/><rule from=\"^http://(?:www\\.)?(fasttrack|gibill|move|vacanteen|vacareers|voa)\\.va\\.gov/\" to=\"https://www.$1.va.gov/\"/><rule from=\"^http://(?:www\\.)?vip\\.vetbiz\\.gov/\" to=\"https://www.vip.vetbiz.gov/\"/><rule from=\"^http://(?:www\\.)?(insurance|(?:(?:assessments|login|mst|my|users|vct)\\.)?vaforvets|(?:tas|vabenefits|vaonce|vip)\\.vba)\\.va\\.gov/\" to=\"https://$1.va.gov/\"/><rule from=\"^http://(?:www1?)\\.va\\.gov/\" to=\"https://www.va.gov/\"/></ruleset>", "<ruleset name=\"US-Ignite.org\" f=\"US-Ignite.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Immigration and Customs Enforcement\" f=\"US-Immigration-and-Customs-Enforcement.xml\"><securecookie host=\"^.*\\.ice\\.gov$\" name=\".*\"/><rule from=\"^http://ice\\.gov/\" to=\"https://www.ice.gov/\"/><rule from=\"^http://www\\.ice\\.gov/\" to=\"https://www.ice.gov/\"/></ruleset>", "<ruleset name=\"IC3.gov\" f=\"US-Internet-Crime-Complaint-Ctr.xml\"><securecookie host=\".\\.ic3\\.gov$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEC.gov\" f=\"US-Securities-and-Exchange-Commission.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Selective Service System\" f=\"US-Selective-Service-System.xml\"><securecookie host=\"^(?:.*\\.)?sss\\.gov$\" name=\".+\"/><rule from=\"^http://sss\\.gov/\" to=\"https://www.sss.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Social Forum (partial)\" default_off=\"failed ruleset test\" f=\"US-Social-Forum.xml\"><rule from=\"^http://community\\.ussf2010\\.org/\" to=\"https://community.ussf2010.org/\"/></ruleset>", "<ruleset name=\"US government (mismatches)\" default_off=\"mismatch, self-signed\" f=\"US-government-mismatches.xml\"><rule from=\"^http://democrats\\.intelligence\\.house\\.gov/(profiles|sites)/\" to=\"https://democrats.intelligence.house.gov/$1/\"/><rule from=\"^http://(?:(?:stiesx2-)?ntrs(?:\\.larc)?)\\.nasa\\.gov/\" to=\"https://stiesx2-ntrs.larc.nasa.gov/\"/></ruleset>", "<ruleset name=\"US government (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"US-government.xml\"><securecookie host=\"^questions\\.cms\\.gov$\" name=\".*\"/><securecookie host=\"^safeharbor\\.export\\.gov$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?census\\.gov$\" name=\".*\"/><securecookie host=\"^intelligence\\.house\\.gov$\" name=\".*\"/><securecookie host=\"^wtr\\.nhtsa\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(census|genome)\\.gov/\" to=\"https://www.$1.gov/\"/><rule from=\"^http://(?:www\\.)?cms\\.gov/\" to=\"https://www.cms.gov/\"/><rule from=\"^http://assets\\.cms\\.gov/\" to=\"https://assets.cms.gov/\"/><rule from=\"^http://questions\\.cms\\.gov/\" to=\"https://questions.cms.gov/\"/><rule from=\"^http://(safeharbor|www)\\.export\\.gov/\" to=\"https://$1.export.gov/\"/><rule from=\"^http://intelligence\\.house\\.gov/\" to=\"https://intelligence.house.gov/\"/><rule from=\"^http://wtr\\.nhtsa\\.gov/\" to=\"https://wtr.nhtsa.gov/\"/><rule from=\"^http://postalinspectors\\.uspis\\.gov/\" to=\"https://postalinspectors.uspis.gov/\"/><rule from=\"^http://(www\\.)?uspsoig\\.gov/\" to=\"https://$1uspsoig.gov/\"/><rule from=\"^http://wwws\\.whitehouse\\.gov/\" to=\"https://wwws.whitehouse.gov/\"/></ruleset>", "<ruleset name=\"US military (partial)\" default_off=\"self-signed\" f=\"US-military.xml\"><securecookie host=\"^www\\.pica\\.army\\.mil$\" name=\".*\"/><securecookie host=\"^apps\\.mhf\\.dod\\.mil$\" name=\".*\"/><securecookie host=\"^reg\\.dtic\\.mil$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?dodlive\\.mil$\" name=\".*\"/><rule from=\"^http://www\\.pica\\.army\\.mil/\" to=\"https://www.pica.army.mil/\"/><rule from=\"^http://(?:www\\.)?defensetravel\\.dod\\.mil/\" to=\"https://www.defensetravel.dod.mil/\"/><rule from=\"^http://apps\\.mhf\\.dod\\.mil/\" to=\"https://apps.mhf.dod.mil/\"/><rule from=\"^http://dodlive\\.mil/\" to=\"https://www.dodlive.mil/\"/><rule from=\"^http://([\\w\\-]+)\\.dodlive\\.mil/\" to=\"https://$1.dodlive.mil/\"/><rule from=\"^http://reg\\.dtic\\.mil/\" to=\"https://reg.dtic.mil/\"/><rule from=\"^http://usarmy\\.(?:hs|vo)\\.llnwd\\.net/\" to=\"https://usarmy.hs.llnwd.net/\"/><rule from=\"^http://(?:www\\.)?nrl\\.navy\\.mil/\" to=\"https://www.nrl.navy.mil/\"/></ruleset>", "<ruleset name=\"USA.gov (partial)\" f=\"USA.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAJobs.gov\" f=\"USAJobs.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USA Today.com (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"USA_Today.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?usatoday\\.com/\" to=\"https://www.usatoday.com/\"/><rule from=\"^http://static\\.usatoday\\.com/\" to=\"https://static.usatoday.com/\"/></ruleset>", "<ruleset name=\"USA Today.com (partial)\" f=\"USA_Today.xml\"><rule from=\"^http://onlinestore\\.usatoday\\.com/Net/\" to=\"https://www.nexternal.com/Net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAlliance\" f=\"USAlliance.xml\"><securecookie host=\"^(?:www)?\\.usalliance\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAspending.gov\" f=\"USAspending.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USB.org (partial)\" f=\"USB.org.xml\"><rule from=\"^http://(?:www\\.)?usb\\.org/(?=images/|kstyles/)\" to=\"https://www.usb.org/\"/></ruleset>", "<ruleset name=\"USBank\" f=\"USBank.xml\"><securecookie host=\"^(?:(?:access|mm?|ms2?|onlinebanking|trustnowessentials|wwws?)\\.)?usbank\\.com$\" name=\".+\"/><rule from=\"^http://((?:access|espanol|mm?|ms2?|onlinebanking|trustnowessentials|wwws?)\\.)?usbank\\.com/\" to=\"https://$1usbank.com/\"/></ruleset>", "<ruleset name=\"USC.edu (false MCB)\" platform=\"mixedcontent\" f=\"USC.edu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USConstitution.net (partial)\" f=\"USConstitution.net.xml\"><rule from=\"^http://cdn(?:-7)?\\.usconstitution\\.net/\" to=\"https://d3s15m2pa5pup1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"USDA-ARS\" default_off=\"missing certificate chain\" f=\"USDA-ARS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USENIX\" f=\"USENIX.xml\"><rule from=\"^http://www\\.usenix\\.org/\" to=\"https://www.usenix.org/\"/><rule from=\"^http://usenix\\.org/\" to=\"https://www.usenix.org/\"/></ruleset>", "<ruleset name=\"USE OTR Project.org\" default_off=\"failed ruleset test\" f=\"USE_OTR_Project.org.xml\"><rule from=\"^http://(?:www\\.)?useotrproject\\.org/\" to=\"https://www.useotrproject.org/\"/></ruleset>", "<ruleset name=\"USF CA.edu (partial)\" default_off=\"failed ruleset test\" f=\"USF_CA.edu.xml\"><securecookie host=\"^(?:web\\.|www\\.)?usfca\\.edu$\" name=\".+\"/><rule from=\"^http://(web\\.|www\\.)?usfca\\.edu/\" to=\"https://$1usfca.edu/\"/><rule from=\"^http://hashtag\\.usfca\\.edu/resources/\" to=\"https://www.scoop.it/resources/\"/></ruleset>", "<ruleset name=\"USFreeads (partial)\" f=\"USFreeads.xml\"><rule from=\"^http://(www\\.)?usfreeads\\.com/(favicon\\.ico|files/|modules/|uploads/)\" to=\"https://$1usfreeads.com/$2\"/></ruleset>", "<ruleset name=\"USMA.edu (partial)\" f=\"USMA.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USNI.org (false MCB)\" platform=\"mixedcontent\" f=\"USNI.org-problematic.xml\"><rule from=\"^http://(blog|news)\\.usni\\.org/\" to=\"https://$1.usni.org/\"/></ruleset>", "<ruleset name=\"USNI.org (partial)\" f=\"USNI.org.xml\"><exclusion pattern=\"^http://(?:blog|news)\\.usni\\.org/+(?!\\?mcsf_action=|favicon\\.ico|mc_news\\.css|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?usni\\.org/(?=(?:about|cart|membership|user)(?:$|[?/])|sites/)\" to=\"https://www.usni.org/\"/><rule from=\"^http://(blog|cdn\\d+|news)\\.usni\\.org/\" to=\"https://$1.usni.org/\"/></ruleset>", "<ruleset name=\"USNWC.edu (partial)\" f=\"USNWC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USP.br (partial)\" f=\"USP.br.xml\"><rule from=\"^http://mail\\.usp\\.br/\" to=\"https://mail.usp.br/\"/></ruleset>", "<ruleset name=\"USPS.com\" default_off=\"failed ruleset test\" f=\"USPS.xml\"><securecookie host=\"^(?:.*\\.)?usps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?usps\\.com/\" to=\"https://www.usps.com/\"/><rule from=\"^http://(about|cns|fast|gateway|gateway-cat|moversguide|my|poboxes|sdc|shop|store|tools)\\.usps\\.com/\" to=\"https://$1.usps.com/\"/></ruleset>", "<ruleset name=\"USRowing (partial)\" f=\"USRowing.xml\"><rule from=\"^http://(?:www\\.)?usrowing\\.org/(App_Themes/|jquery-1.4.2\\.js|Libraries/|PopCalendar2008/CSS/|(?:Script|Web)Resource\\.axd|[sS]itefinity/)\" to=\"https://www.usrowing.org/$1\"/></ruleset>", "<ruleset name=\"USTC.edu.cn (partial)\" f=\"USTC.edu.cn.xml\"><rule from=\"^http://(bbs|servers\\.blog|lug|fonts\\.lug|fonts-gstatic\\.lug|mirrors)\\.ustc\\.edu\\.cn/\" to=\"https://$1.ustc.edu.cn/\"/></ruleset>", "<ruleset name=\"USUHS.edu (partial)\" f=\"USUHS.edu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USUHS.mil\" f=\"USUHS.mil.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Bank Client Advocacy\" f=\"US_Bank_Client_Advocacy.xml\"><securecookie host=\"^(?:www)?\\.usbclientadvocacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Citizenship and Immigration Services (partial)\" f=\"US_Citizenship_and_Immigration_Services.xml\"><exclusion pattern=\"^http://infopass\\.uscis\\.gov/(?:$|css/infopass2\\.css)\"/><rule from=\"^http://blog\\.uscis\\.gov/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/><rule from=\"^http://(egov|infopass)\\.uscis\\.gov/\" to=\"https://$1.uscis.gov/\"/></ruleset>", "<ruleset name=\"US Courts.gov (partial)\" f=\"US_Courts.gov.xml\"><rule from=\"^http://cdn\\.ca9\\.uscourts\\.gov/\" to=\"https://d3bsvxk93brmko.cloudfront.net/\"/></ruleset>", "<ruleset name=\"US Currency.gov\" f=\"US_Currency.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DOC.gov (partial)\" f=\"US_Department_of_Commerce.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Treas.gov (partial)\" f=\"US_Department_of_the_Treasury.xml\"><securecookie host=\"^www\\.ots\\.treas\\.gov$\" name=\".+\"/><rule from=\"^http://ots\\.treas\\.gov/\" to=\"https://www.ots.treas.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Fish and Wildlife Service (partial)\" f=\"US_Fish_and_Wildlife_Service.xml\"><rule from=\"^http://(?:www\\.)?fws\\.gov/\" to=\"https://www.fws.gov/\"/></ruleset>", "<ruleset name=\"U.S. Geological Survey\" platform=\"mixedcontent\" f=\"US_Geological_Survey.xml\"><rule from=\"^http://(answers|nccwsc|water)\\.usgs\\.gov/\" to=\"https://$1.usgs.gov/\"/></ruleset>", "<ruleset name=\"US Mint.gov\" f=\"US_Mint.gov.xml\"><securecookie host=\"^(?:catalog|(?:preview|www)\\.catalog|www)\\.usmint\\.gov$\" name=\".+\"/><rule from=\"^http://usmint\\.gov/\" to=\"https://www.usmint.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Mission.gov (partial)\" f=\"US_Mission.gov.xml\"><securecookie host=\"^geneva\\.usmission\\.gov$\" name=\".+\"/><rule from=\"^http://geneva\\.usmission\\.gov/\" to=\"https://geneva.usmission.gov/\"/></ruleset>", "<ruleset name=\"US Nautic (partial)\" f=\"US_Nautic.xml\"><rule from=\"^http://(www\\.)?usnautic\\.com/([cC]ontent/|en/customer/info|en/login|Plugins/|Themes/)\" to=\"https://$1usnautic.com/$2\"/></ruleset>", "<ruleset name=\"U.S. Patent and Trademark Office (partial)\" f=\"US_Patent_and_Trademark_Office.xml\"><securecookie host=\"^.+\\.uspto\\.gov$\" name=\".+\"/><rule from=\"^http://(efs|oedci|ramps|tsdr)\\.uspto\\.gov/\" to=\"https://$1.uspto.gov/\"/><rule from=\"^http://t(?:ar|d)r\\.uspto\\.gov/(?:\\?.*)?$\" to=\"https://tdsr.uspto.gov/\"/></ruleset>", "<ruleset name=\"US Pirates.org\" default_off=\"missing certificate chain\" f=\"US_Pirates.org.xml\"><securecookie host=\".+\\.uspirates\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. State Department (partial)\" default_off=\"mismatched\" f=\"US_State_Department.xml\"><rule from=\"^http://(?:www\\.)?state\\.gov/\" to=\"https://www.state.gov/\"/><rule from=\"^http://oig\\.state\\.gov/\" to=\"https://oig.state.gov/\"/></ruleset>", "<ruleset name=\"US UK ITA.org\" f=\"US_UK_ITA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UT.ee (partial)\" f=\"UT.ee.xml\"><securecookie host=\"^(?:auth|courses|owa)\\.cs\\.ut\\.ee$\" name=\".+\"/><rule from=\"^http://arvutiabi\\.ut\\.ee/.*\" to=\"https://wiki.ut.ee/display/AA/Arvutiabi\"/><rule from=\"^http://www\\.sisu\\.ut\\.ee/\" to=\"https://sisu.ut.ee/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UTSanDiego.com (partial)\" default_off=\"failed ruleset test\" f=\"UTSanDiego.com.xml\"><securecookie host=\"^iservice\\.uniontrib\\.com$\" name=\".+\"/><rule from=\"^http://iservice\\.uniontrib\\.com/\" to=\"https://iservice.uniontrib.com/\"/><rule from=\"^http://(?:www\\.)?utsandiego\\.com/accounts\" to=\"https://www.utsandiego.com/accounts\"/><rule from=\"^http://(dealmedia|media)\\.utsandiego\\.com/\" to=\"https://$1.utsandiego.com/\"/></ruleset>", "<ruleset name=\"UT Dallas.edu (problematic)\" default_off=\"mismatched\" f=\"UT_Dallas.edu-problematic.xml\"><rule from=\"^http://(catalog|honors)\\.utdallas\\.edu/\" to=\"https://$1.utdallas.edu/\"/></ruleset>", "<ruleset name=\"UTwente.nl (partial)\" f=\"UTwente.nl.xml\"><securecookie host=\"^xs\\.utwente\\.nl$\" name=\".+\"/><rule from=\"^http://((?:webhare(?:\\.civ)?|www|www\\.abacus)\\.)?utwente\\.nl/\" to=\"https://$1utwente.nl/\"/><rule from=\"^http://(?:outlook\\.ad|autodiscover(?:\\.\\w+)?|xs|xs2010)\\.utwente\\.nl/.*\" to=\"https://xs.utwente.nl/owa\"/></ruleset>", "<ruleset name=\"UU.nl (partial)\" f=\"UU.nl.xml\"><securecookie host=\"^(?:caracal|(?:4thfloor|betaplanner|betaplannerstage|caracal|caracalstage|www\\.projects|uppersurvey|webfarm)\\.science)\\.uu\\.nl$\" name=\".+\"/><rule from=\"^http://(caracal|wwwsec\\.cs|(?:4thfloor|babaji|betaplanner|betaplannerstage|caracal|caracalstage|fa203|www\\.projects|testweb|upper|uppersurvey|webfarm|webstats)\\.science)\\.uu\\.nl/\" to=\"https://$1.uu.nl/\"/><rule from=\"^http://w(?:eb|ebstage|ww)\\.science\\.uu\\.nl/\" to=\"https://www.science.uu.nl/\"/></ruleset>", "<ruleset name=\"UU.se\" f=\"UU.se.xml\"><securecookie host=\"^www\\.it\\.uu\\.se$\" name=\".+\"/><rule from=\"^http://it\\.uu\\.se/\" to=\"https://www.it.uu.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UVM.edu (partial)\" f=\"UVM.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UVic.ca (partial)\" f=\"UVic.ca.xml\"><rule from=\"^http://(?:www\\.)?uvic\\.ca/\" to=\"https://www.uvic.ca/\"/><rule from=\"^http://(www\\.)?ece\\.uvic\\.ca/~\" to=\"https://$1ece.uvic.ca/~\"/></ruleset>", "<ruleset name=\"UW.edu (partial)\" f=\"UW.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.tacoma\\.uw\\.edu$\" name=\".\"/><rule from=\"^http://honors\\.uw\\.edu/+\" to=\"https://depts.washington.edu/uwhonors/\"/><rule from=\"^http://tacoma\\.uw\\.edu/\" to=\"https://www.tacoma.uw.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UWB.edu (partial)\" f=\"UWB.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://uwb\\.edu/\" to=\"https://www.uwb.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UWinnipeg.ca (partial)\" default_off=\"failed ruleset test\" f=\"UWinnipeg.ca.xml\"><rule from=\"^http://((?:ctlt-resources|ion|nexus|webadv|ww2|www)\\.)?uwinnipeg\\.ca/\" to=\"https://$1uwinnipeg.ca/\"/><rule from=\"^http://indigenous\\.uwinnipeg\\.ca/+(?:\\?.*)?$\" to=\"https://www.uwinnipeg.ca/index/indigenous-programs-services\"/></ruleset>", "<ruleset name=\"U Mag.ca\" f=\"U_Mag.ca.xml\"><rule from=\"^http://(?:www\\.)?umag\\.ca/[^?]*\" to=\"https://www.ucalgarymag.ca/\"/></ruleset>", "<ruleset name=\"ua-hosting.com.ua\" default_off=\"failed ruleset test\" f=\"Ua-hosting.com.ua.xml\"><securecookie host=\"^ua-hosting\\.com\\.ua$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ua-hosting\\.com\\.ua/\" to=\"https://ua-hosting.com.ua/\"/></ruleset>", "<ruleset name=\"University of Akron (partial)\" f=\"Uakron.edu.xml\"><rule from=\"^http://(www\\.|my\\.|zipline\\.|id\\.|support\\.|supportchat\\.|maps\\.|auth\\.|library\\.|ece\\.|www\\.lawalum\\.|wayne\\.|wiep\\.|lists\\.|lawscout\\.|ztv\\.|eohs\\.|springboard\\.|lawclerk\\.|blogs\\.)?uakron\\.edu/\" to=\"https://$1uakron.edu/\"/></ruleset>", "<ruleset name=\"UbCDN.co\" f=\"UbCDN.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UbNt.com (partial)\" f=\"UbNt.com.xml\"><securecookie host=\"^\\.ubnt\\.com$\" name=\"^VISITORID$\"/><securecookie host=\"^(?:community|\\.store)\\.ubnt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberEnt.com (partial)\" f=\"UberEnt.com.xml\"><securecookie host=\"^forums\\.uberent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberMedia.com\" f=\"UberMedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberTags (mismatches)\" default_off=\"mismatch\" f=\"UberTags-mismatches.xml\"><rule from=\"^http://(?:www\\.)?usertags(?:\\.jeremybieger)\\.com/(images|wp-content)/\" to=\"https://ubertags.jeremybieger.com/~jeremybi/ubertags/$1/\"/><rule from=\"^http://cdn\\.usertags\\.com/\" to=\"https://ubertags.jeremybieger.com/~jeremybi/ubertags/\"/></ruleset>", "<ruleset name=\"UberTags (partial)\" f=\"UberTags.xml\"><securecookie host=\"^console\\.ubertags\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.ubertags\\.com/\" to=\"https://$1.ubertags.com/\"/></ruleset>", "<ruleset name=\"Uber Technologies (partial)\" f=\"Uber_Technologies.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uberspace\" f=\"Uberspace.xml\"><securecookie host=\"^(?:.+\\.)?uberspace\\.de$\" name=\".+\"/><rule from=\"^http://(?:helium\\.|www\\.)?uberspace\\.de/\" to=\"https://uberspace.de/\"/><rule from=\"^http://((?:[\\w-]+\\.)?(?:aries|cetus|menkar)|[\\w-]+\\.helium)\\.uberspace\\.de/\" to=\"https://$1.uberspace.de/\"/></ruleset>", "<ruleset name=\"Ubisoft Entertainment (partial)\" platform=\"mixedcontent\" f=\"Ubisoft-Entertainment.xml\"><exclusion pattern=\"^http://(?:forums|www)\\.\"/><securecookie host=\".*\\.ubi\\.com$\" name=\".+\"/><rule from=\"^http://static(1|3|4|6|7|9|10|11|13|14|17)\\.cdn\\.ubi\\.com/\" to=\"https://ubistatic$1-a.akamaihd.net/\"/><rule from=\"^http://static(7|15|16)\\.ubi\\.com/\" to=\"https://s3.amazonaws.com/static$1.ubi.com/\"/><rule from=\"^http://(cs|engineroom|hbe|secure|static\\d(?:\\.cdn)?|support|tools|ubibar|uplay|uts|legal)\\.ubi\\.com/\" to=\"https://$1.ubi.com/\"/></ruleset>", "<ruleset name=\"Ubisoft Group\" f=\"Ubisoft_Group.com.xml\"><securecookie host=\"^\\.ubisoftgroup\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?ubisoftgroup\\.com/\" to=\"https://$1ubisoftgroup.com/\"/><rule from=\"^http://common\\.ubisoftgroup\\.com/\" to=\"https://www.ubisoftgroup.com/comsite_common/\"/></ruleset>", "<ruleset name=\"Ubuntu-DE.org\" f=\"Ubuntu-DE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-EU.org\" f=\"Ubuntu-EU.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-FR.org (false MCB)\" platform=\"mixedcontent\" f=\"Ubuntu-FR.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-FR.org (partial)\" f=\"Ubuntu-FR.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-MATE.Boutique\" f=\"Ubuntu-MATE.Boutique.xml\"><securecookie host=\"^\\.ubuntu-mate\\.boutique$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-MATE.org\" f=\"Ubuntu-MATE.org.xml\"><securecookie host=\"^\\.ubuntu-mate\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-NL.org (CAcert)\" platform=\"cacert\" f=\"Ubuntu-NL.org-cacert.xml\"><exclusion pattern=\"^http://www\\.ubuntu-nl\\.org/+(?!modules/|sites/)\"/><rule from=\"^http://ubuntu-nl\\.org/\" to=\"https://www.ubuntu-nl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-NL.org (partial)\" f=\"Ubuntu-NL.org.xml\"><securecookie host=\"^\\.ubuntu-nl\\.org$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-TR.net (partial)\" f=\"Ubuntu-TR.net.xml\"><securecookie host=\"^forum\\.ubuntu-tr\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu.com (partial)\" f=\"Ubuntu.xml\"><securecookie host=\".\" name=\"^_(?:_utm|gat?$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://shop\\.ubuntu\\.com/\" to=\"https://shop.canonical.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UbuntuUsers.de\" f=\"UbuntuUsers.de.xml\"><securecookie host=\"^(?:.*\\.)?ubuntuusers\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Forums.org (false MCB)\" platform=\"mixedcontent\" f=\"Ubuntu_Forums.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Linux.jp\" f=\"Ubuntu_Linux.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu MATE.Community\" f=\"Ubuntu_MATE.Community.xml\"><securecookie host=\"^\\.?ubuntu-mate\\.community$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ucommand.com\" default_off=\"failed ruleset test\" f=\"Ucommand.com.xml\"><securecookie host=\"^www\\.ucommand\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ucommand\\.com/\" to=\"https://www.ucommand.com/\"/></ruleset>", "<ruleset name=\"Ucuzu.com\" default_off=\"mismatched\" f=\"Ucuzu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udacity.com (mismatches)\" default_off=\"mismatch\" f=\"Udacity.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udacity.com (partial)\" f=\"Udacity.com.xml\"><securecookie host=\"^\\.udacity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udemy.com (partial)\" f=\"Udemy.com.xml\"><securecookie host=\"^(?:about|blog|teach|www)?\\.udemy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universidad Distrital\" platform=\"firefox\" default_off=\"failed ruleset test\" f=\"Udistrital.xml\"><rule from=\"^http://(?:www\\.)?udistrital\\.edu\\.co/\" to=\"https://udistrital.edu.co/\"/></ruleset>", "<ruleset name=\"Uefidk.com\" default_off=\"failed ruleset test\" f=\"Uefidk.com.xml\"><rule from=\"^http://(?:www\\.)?uefidk\\.com/\" to=\"https://www.uefidk.com/\"/></ruleset>", "<ruleset name=\"Uformia\" default_off=\"expired, mismatched, self-signed\" f=\"Uformia.xml\"><securecookie host=\"^uformia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uformia\\.com/\" to=\"https://uformia.com/\"/></ruleset>", "<ruleset name=\"Ugandan government (partial)\" default_off=\"self-signed\" f=\"Ugandan-government.xml\"><securecookie host=\"^(?:.*\\.)?jlos\\.go\\.ug$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?jlos\\.go\\.ug/\" to=\"https://jlos.go.ug/\"/></ruleset>", "<ruleset name=\"Ugenr.dk\" f=\"Ugenr.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ugly Mugs.ie\" default_off=\"self-signed\" f=\"Ugly_Mugs.ie.xml\"><securecookie host=\"^(?:www\\.)?uglymugs\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uglymugs\\.ie/\" to=\"https://uglymugs.ie/\"/></ruleset>", "<ruleset name=\"Uguu.se\" f=\"Uguu.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uhhospitals.org (partial)\" f=\"Uhhospitals.org.xml\"><rule from=\"^http://(www\\.)?uhhospitals\\.org/(_cassette/|favicon\\.ico|(?:.+/)?~/media/)\" to=\"https://$1uhhospitals.org/$2\"/></ruleset>", "<ruleset name=\"Uhrzeit.org (partial)\" default_off=\"failed ruleset test\" f=\"Uhrzeit.org.xml\"><securecookie host=\"^\\.(?:atomic-clock\\.org\\.uk|la-hora\\.org)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atomic-clock\\.org\\.uk/\" to=\"https://www.atomic-clock.org.uk/\"/><rule from=\"^http://(?:www\\.)?la-hora\\.org/\" to=\"https://www.la-hora.org/\"/><rule from=\"^http://(www\\.)?uhrzeit\\.org/(anmeldung|bilder|img|shop|sys)/\" to=\"https://www.uhrzeit.org/$2/\"/><rule from=\"^http://watches\\.uhrzeit\\.org/(?=bilder/|img/|shop/|sys/)\" to=\"https://watches.uhrzeit.org/\"/></ruleset>", "<ruleset name=\"uhub.org\" default_off=\"expired\" f=\"Uhub.xml\"><securecookie host=\"^(?:www\\.)?uhub\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ukash.com\" f=\"Ukash.com.xml\"><securecookie host=\"^(?:direct\\.|mycard\\.|www\\.)?ukash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UkashCardSATIS\" default_off=\"failed ruleset test\" f=\"UkashCardSATIS.xml\"><securecookie host=\"^\\.ukashcardsatis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ukeer.de (partial)\" default_off=\"expired\" f=\"Ukeer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ukr.net\" default_off=\"failed ruleset test\" f=\"Ukr.net.xml\"><rule from=\"^http://((?:counter|mail|www)\\.)?ukr\\.net/\" to=\"https://$1ukr.net/\"/></ruleset>", "<ruleset name=\"Ukrnames.com\" f=\"Ukrnames.com.xml\"><securecookie host=\"^support\\.ukrnames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uksrv.co.uk\" f=\"Uksrv.co.uk.xml\"><securecookie host=\".+\\.uksrv\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://ceres\\.uksrv\\.co\\.uk(:2087)?/\" to=\"https://ceres.uksrv.co.uk$1/\"/><rule from=\"^http://eris\\.uksrv\\.co\\.uk(:2096)?/\" to=\"https://eris.uksrv.co.uk$1/\"/><rule from=\"^http://pluto\\.uksrv\\.co\\.uk/\" to=\"https://pluto.uksrv.co.uk/\"/></ruleset>", "<ruleset name=\"Uline.com (partial)\" f=\"Uline.com.xml\"><rule from=\"^http://(?:www\\.)?uline\\.com/(?=favicon\\.ico|FilesCombiner\\.ashx|[iI]mages/|Product/ContainerBrowseListing\\.aspx|(?:Script|Web)Resource\\.axd|Signin/|WebServices/)\" to=\"https://www.uline.com/\"/></ruleset>", "<ruleset name=\"Ultimate Boot CD.com (partial)\" f=\"Ultimate_Boot_CD.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate Poker\" default_off=\"failed ruleset test\" f=\"Ultimate_Poker.xml\"><securecookie host=\"^(?:upnvportal\\.)?ultimatepoker\\.com$\" name=\".+\"/><rule from=\"^http://(?:(upnvportal\\.)|www\\.)?ultimatepoker\\.com/\" to=\"https://$1ultimatepoker.com/\"/></ruleset>", "<ruleset name=\"UltraDNS.com (partial)\" f=\"UltraDNS.com.xml\"><securecookie host=\"^portal\\.ultradns\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UltraDNS\" f=\"UltraDNS.xml\"><securecookie host=\"^www\\.ultradns\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ultradns\\.(?:com|info)/$\" to=\"https://www.neustar.biz/\"/><rule from=\"^http://(?:www\\.)?ultradns\\.net/\" to=\"https://www.ultradns.net/\"/></ruleset>", "<ruleset name=\"UltraTools.com\" f=\"UltraTools.com.xml\"><securecookie host=\"^www\\.ultratools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultra Facil.com.br\" default_off=\"plaintext reply\" f=\"Ultra_Facil.com.br.xml\"><securecookie host=\"^\\.ultrafacil\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultra HDTV (problematic)\" default_off=\"mismatched\" f=\"Ultra_HDTV-problematic.xml\"><rule from=\"^http://(?:www\\.)?ultrahdtv\\.net/\" to=\"https://ultrahdtv.net/\"/></ruleset>", "<ruleset name=\"Ultra HDTV (partial)\" default_off=\"failed ruleset test\" f=\"Ultra_HDTV.xml\"><rule from=\"^http://cdn\\.ultrahdtv\\.net/\" to=\"https://dcmk2gfkvro5j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ultrabug.fr (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Ultrabug.xml\"><securecookie host=\"^(?:www\\.)?ultrabug\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultrasurf.us\" default_off=\"failed ruleset test\" f=\"Ultrasurf.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ulule\" platform=\"mixedcontent\" f=\"Ulule.xml\"><rule from=\"^http://(www\\.)?ulule\\.com/\" to=\"https://$1ulule.com/\"/><rule from=\"^http://(fr|de|es|it|br)\\.ulule\\.com/\" to=\"https://$1.ulule.com/\"/></ruleset>", "<ruleset name=\"Uma.es\" f=\"Uma.es.xml\"><rule from=\"^http://(?:www\\.)?([^/:@\\.]*)\\.cv\\.uma\\.es/\" to=\"https://$1.cv.uma.es/\"/><rule from=\"^http://www\\.sci\\.uma\\.es/\" to=\"https://www.sci.uma.es/\"/><rule from=\"^http://web\\.satd\\.uma\\.es/\" to=\"https://web.satd.uma.es/\"/></ruleset>", "<ruleset name=\"Umano.me\" f=\"Umano.me.xml\"><securecookie host=\"^(?:www\\.)?umano\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Umbel.com\" f=\"Umbel.com.xml\"><securecookie host=\"^(?:audience|www)\\.umbel\\.com$\" name=\".+\"/><rule from=\"^http://umbel\\.com/\" to=\"https://www.umbel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Umea Hackerspace.se\" platform=\"cacert\" f=\"Umea_Hackerspace.se.xml\"><securecookie host=\"^social\\.umeahackerspace\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Umeå University (partial)\" f=\"Umea_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:student\\.)?umu\\.se/(?!digitalAssets/|DownloadAsset\\.action(?:$|\\?)|static/)\"/><securecookie host=\"^(?:(?:www\\.)?anstalld|www\\.cambro|cas|(?:www\\.)?servicedesk\\.its)\\.umu\\.se$\" name=\".+\"/><rule from=\"^http://((?:www\\.cambro|cas|intra\\.ub|www)\\.?)umu\\.se/\" to=\"https://$1umu.se/\"/><rule from=\"^http://(www\\.)?(anstalld|servicesdesk\\.its|student)\\.umu\\.se/\" to=\"https://$1$2.umu.se/\"/></ruleset>", "<ruleset name=\"unPAC\" default_off=\"connection refused\" f=\"UnPAC.xml\"><securecookie host=\"^www\\.unpac\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unanimis (problematic)\" default_off=\"expired, mismatch, self-signed\" f=\"Unanimis-problematic.xml\"><rule from=\"^http://(?:www\\.)?unanimis\\.co\\.uk/\" to=\"https://www.unanimis.co.uk/\"/></ruleset>", "<ruleset name=\"Unanimis (partial)\" f=\"Unanimis.xml\"><rule from=\"^http://(a|c|d|ssl-a)\\.unanimis\\.co\\.uk/\" to=\"https://$1.unanimis.co.uk/\"/></ruleset>", "<ruleset name=\"Unbit.it (partial)\" platform=\"mixedcontent\" f=\"Unbit.it.xml\"><securecookie host=\".+\\.unbit\\.it$\" name=\".*\"/><rule from=\"^http://www\\.(projects|wiki)\\.unbit\\.it/\" to=\"https://$1.unbit.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unblock-Us.com (partial)\" f=\"Unblock-Us.com.xml\"><securecookie host=\"^(?:affiliate|portal)\\.unblock-us\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unblock-us\\.com/(?=css/|favicon\\.ico|images/)\" to=\"https://d2z2eomnanw2yj.cloudfront.net/\"/><rule from=\"^http://(affiliate|portal)\\.unblock-us\\.com/\" to=\"https://$1.unblock-us.com/\"/><rule from=\"^http://support\\.unblock-us\\.com/favicon\\.ico\" to=\"https://unblock.desk.com/favicon.ico\"/></ruleset>", "<ruleset name=\"UnblockSit.es\" f=\"UnblockSit.es.xml\"><securecookie host=\"^\\.unblocksit\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unblocked\" f=\"Unblocked.xml\"><rule from=\"^https?://([^\\.]+\\.)?unblocked\\.li/\" to=\"https://$1unblocked.red/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unblu.com (partial)\" f=\"Unblu.com.xml\"><rule from=\"^http://start\\.unblu\\.com/\" to=\"https://start.unblu.com/\"/></ruleset>", "<ruleset name=\"Unbounce.com (partial)\" f=\"Unbounce.xml\"><exclusion pattern=\"^http://(?:www\\.)?unbounce\\.com/(?!\\?mcsf_action=main_css|photos/|wp-content/)\"/><securecookie host=\"^go\\.unbounce\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unbounce(?:\\.wpengine\\.netdna-cdn)?\\.com/\" to=\"https://unbounce.wpengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unbound.net\" f=\"Unbound.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unbridled.info\" f=\"Unbridled.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Underground Gamer\" default_off=\"failed ruleset test\" f=\"Undergroundgamer.xml\"><rule from=\"^http://(?:www\\.)?underground-gamer\\.com/\" to=\"https://www.underground-gamer.com/\"/></ruleset>", "<ruleset name=\"Underhanded Crypto.com (partial)\" f=\"Underhanded_Crypto.com.xml\"><securecookie host=\"^\\.underhandedcrypto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Underskog\" f=\"Underskog.xml\"><rule from=\"^http://(?:www\\.)?underskog\\.no/\" to=\"https://underskog.no/\"/></ruleset>", "<ruleset name=\"Understood.org\" f=\"Understood.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Undertone.com (partial)\" f=\"Undertone.xml\"><securecookie host=\"^ads\\.undertone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Underwear Expert (partial)\" f=\"Underwear_Expert.xml\"><rule from=\"^http://cdn\\.underwearexpert\\.com/\" to=\"https://d2szvuirvbmbdl.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Uneddit\" f=\"Uneddit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unglue.it (partial)\" f=\"Unglue.it.xml\"><securecookie host=\"^unglue\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unhosted\" f=\"Unhosted.xml\"><rule from=\"^http://www\\.unhosted\\.org/\" to=\"https://unhosted.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-DuE.de\" f=\"Uni-DuE.de.xml\"><securecookie host=\"^www\\.uni-due\\.de$\" name=\".+\"/><rule from=\"^http://uni-due\\.de/\" to=\"https://www.uni-due.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Goettingen.de (partial)\" f=\"Uni-Goettingen.de.xml\"><rule from=\"^http://karzer\\.uni-goettingen\\.de/\" to=\"https://www.uni-goettingen.de/de/sh/29360.html\"/><rule from=\"^http://www\\.sec\\.informatik\\.uni-goettingen\\.de/\" to=\"https://www.uni-goettingen.de/de/266195.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Hamburg.de (false MCB)\" platform=\"mixedcontent\" f=\"Uni-Hamburg.de-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Hannover.de (partial)\" f=\"Uni-Hannover.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Kl.de (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Uni-Kl.de-falsemixed.xml\"><securecookie host=\"^www\\.uni-kl\\.de$\" name=\".+\"/><rule from=\"^http://www\\.(architektur|www)\\.uni-kl\\.de/(?!favicon\\.ico|fileadmin/|typo3temp/|uploads/)\" to=\"https://www.$1.uni-kl.de/\"/></ruleset>", "<ruleset name=\"Uni-Kl.de (partial)\" f=\"Uni-Kl.de.xml\"><exclusion pattern=\"^http://www\\.(?:architektur\\.)?uni-kl\\.de/+(?!favicon\\.ico|fileadmin/|typo3temp/|uploads/)\"/><securecookie host=\"^(?:fit\\.cs|\\.www\\.fachschaft\\.(?:cs|informatik)|(?:alumni|office|www)\\.kis|(?:alumni\\.|www\\.)?physik|\\.www\\.rhrk)\\.uni-kl\\.de$\" name=\".+\"/><rule from=\"^http://(autodiscover(?:\\.\\w+)?|fit\\.cs|fit\\.informatik|(?:alumni|office)\\.kis|mail|alumni\\.physik|opac\\.ub|(?:lists|svn)\\.unix-ag|wa|(?:abwl|bisor|enpres|hotline|integrierter-studiengang|international|it-service|lff|luc|marketing|nagios|pmo|step|strama|sustain|marketing-forschung|vwl-makro|vwl-mikro|vwl-wipo|zwr)\\.wiwi|www)\\.uni-kl\\.de/\" to=\"https://$1.uni-kl.de/\"/><rule from=\"^http://www\\.alumni\\.uni-kl\\.de/\" to=\"https://alumni.kis.uni-kl.de/\"/><rule from=\"^http://www\\.(architektur|bauing|fs\\.bauing|bio|fachschaft\\.(?:cs|informatik)|chemie|disc|kis|mpa|rhrk|ru|unix-ag)\\.uni-kl\\.de/\" to=\"https://www.$1.uni-kl.de/\"/><rule from=\"^http://(www\\.)?(physik|wiwi)\\.uni-kl\\.de/\" to=\"https://$1$2.uni-kl.de/\"/><rule from=\"^http://www\\.verw\\.uni-kl\\.de/+(?:$|\\?.*)\" to=\"https://www.uni-kl.de/\"/></ruleset>", "<ruleset name=\"Uni-Potsdam.de (expired)\" default_off=\"expired\" f=\"Uni-Potsdam.de-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Saarland.de (partial)\" f=\"Uni-Saarland.de.xml\"><exclusion pattern=\"^http://www\\.uni-saarland\\.de/+(?!favicon\\.ico|fileadmin/|typo3temp/|uploads/)\"/><securecookie host=\"^(?:(?:www\\.)?cispa|(?:epica\\.|www\\.)?cs|(?:www\\.)?cybersicherheit\\.cs|www\\.lsv)\\.uni-saarland\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(mmci\\.)?uni-saarland\\.de/\" to=\"https://www.$1uni-saarland.de/\"/><rule from=\"^http://(www-int\\.coli|(?:epica|www-infsec|www-wjp)\\.cs|datscha|www\\.ls[fv])\\.uni-saarland\\.de/\" to=\"https://$1.uni-saarland.de/\"/><rule from=\"^http://(www\\.)?(cispa|cs|(?:crypto|csl|cybersicherheit|infsec|lbs|sps)\\.cs|cybersicherheit)\\.uni-saarland\\.de/\" to=\"https://$1$2.uni-saarland.de/\"/></ruleset>", "<ruleset name=\"Uni-Wuerzburg.de (partial)\" f=\"Uni-Wuerzburg.de.xml\"><rule from=\"^http://(?:www\\.)?mathematik\\.uni-wuerzburg\\.de/\" to=\"https://www.mathematik.uni-wuerzburg.de/\"/></ruleset>", "<ruleset name=\"Uni-heidelberg.de\" f=\"Uni-heidelberg.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni.Lu (partial)\" f=\"Uni.Lu.xml\"><rule from=\"^http://(hpc|piwik)\\.uni\\.lu/\" to=\"https://$1.uni.lu/\"/></ruleset>", "<ruleset name=\"UniCDN.com\" f=\"UniCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UniStra.fr (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UniStra.fr-falsemixed.xml\"><securecookie host=\"^(?:engees|typodun)\\.unistra\\.fr$\" name=\".+\"/><rule from=\"^http://(engees|typodun|www)\\.unistra\\.fr/\" to=\"https://$1.unistra.fr/\"/></ruleset>", "<ruleset name=\"Uni Leoben.ac.at (partial)\" default_off=\"failed ruleset test\" f=\"Uni_Leoben.ac.at.xml\"><rule from=\"^http://(?:www\\.)?unileoben\\.ac\\.at/\" to=\"https://www.unileoben.ac.at/\"/><rule from=\"^http://(online|usi|usionline)\\.unileoben\\.ac\\.at/\" to=\"https://$1.unileoben.ac.at/\"/></ruleset>", "<ruleset name=\"Unibet.com.au\" f=\"Unibet_Australia.xml\"><securecookie host=\"^(?:\\.?www)?\\.unibet\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uniblue\" f=\"Uniblue.xml\"><rule from=\"^http://(?:www\\.)?uniblue\\.com/\" to=\"https://d2iq4cp2qrughe.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Unica (partial)\" default_off=\"Needs ruleset tests\" f=\"Unica.xml\"><securecookie host=\"^pt\\d+\\.unica\\.com$\" name=\".+\"/><securecookie host=\".*\\.unicaondemand\\.com$\" name=\".+\"/><rule from=\"^http://pt(\\d+)\\.unica\\.com/\" to=\"https://pt$1.unica.com/\"/><rule from=\"^http://(\\d+)\\.unicaondemand\\.com/\" to=\"https://$1.unicaondemand.com/\"/></ruleset>", "<ruleset name=\"Unicef USA.org (partial)\" f=\"Unicef_USA.org.xml\"><exclusion pattern=\"^http://inspiredgifts\\.unicefusa\\.org/+(?!cart(?:$|[?/])|favicon\\.ico|node/|sites/)\"/><exclusion pattern=\"^http://www\\.unicefusa\\.org/+(?!(?:donate|user)(?:$|[?/])|favicon\\.ico|form/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unicom (partial)\" f=\"Unicom.xml\"><rule from=\"^http://totalrecall\\.switchingon\\.com/\" to=\"https://totalrecall.switchingon.com/\"/></ruleset>", "<ruleset name=\"Unified Social.com (partial)\" f=\"Unified_Social.com.xml\"><securecookie host=\"^login\\.unifiedsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unifiedtracking.com\" f=\"Unifiedtracking.com.xml\"><securecookie host=\"^www\\.unifiedtracking\\.com$\" name=\".+\"/><rule from=\"^http://unifiedtracking\\.com/\" to=\"https://www.unifiedtracking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uniform Wares.com\" f=\"Uniform_Wares.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unigine\" f=\"Unigine.xml\"><securecookie host=\"^(?:.*\\.)?unigine\\.com$\" name=\".+\"/><rule from=\"^http://((?:developer|eu4|www)\\.)?unigine\\.com/\" to=\"https://$1unigine.com/\"/></ruleset>", "<ruleset name=\"Unikernel.org (partial)\" f=\"Unikernel.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unilever\" default_off=\"mismatch\" f=\"Unilever.xml\"><rule from=\"^http://(?:www\\.)?unilever\\.com/\" to=\"https://www.unilever.com/\"/><rule from=\"^http://uimg\\.unilever\\.com/\" to=\"https://uimg.unilever.com/\"/></ruleset>", "<ruleset name=\"Unimi.it (partial)\" f=\"Unimi.it.xml\"><securecookie host=\"^securemail\\.unimi\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unimi\\.it/(?=css/|img/|registrazione/\\w+\\.keb)\" to=\"https://www.unimi.it/\"/><rule from=\"^http://(cas|www\\.elearning|securemail)\\.unimi\\.it/\" to=\"https://$1.unimi.it/\"/></ruleset>", "<ruleset name=\"Unindented.org\" f=\"Unindented.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uninett.no (partial)\" f=\"Uninett.xml\"><securecookie host=\"^(?:\\.ansatt|\\.?bildebase|\\.?eureka|nav|openwiki|\\.rt|surveytest|\\.(?:test\\.)?tjenester|\\.www)\\.uninett\\.no$\" name=\".+\"/><rule from=\"^http://www\\.gigacampus\\.no/.*\" to=\"https://openwiki.uninett.no/gigacampus:start\"/><rule from=\"^http://(?:www\\.)?gn3campus\\.uninett\\.no/\" to=\"https://ow.feide.no/geantcampus:start\"/><rule from=\"^http://((?:ansatt|bildebase|ca|cert\\.|www\\.dike|disco|drupal|eureka|metanav|nav|openwiki|(?:api|loggregator|uaa)\\.paas|rt|surveytest|(?:test\\.)?tjenester|www3?|www-ecampus|www-feide)\\.)?uninett\\.no/\" to=\"https://$1uninett.no/\"/></ruleset>", "<ruleset name=\"Unique Filer\" default_off=\"expired, mismatch\" f=\"Unique-Filer.xml\"><rule from=\"^http://(?:www\\.)?uniquefiler\\.com/\" to=\"https://uniquefiler.com/\"/></ruleset>", "<ruleset name=\"UniqueOffersSeychelles\" default_off=\"expired\" f=\"UniqueOffersSeychelles.xml\"><securecookie host=\"^(?:.*\\.)?uniqueoffersghana\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uniqueoffersghana\\.com/\" to=\"https://uniqueoffersghana.com/\"/></ruleset>", "<ruleset name=\"Unique Vintage\" f=\"Unique_Vintage.xml\"><securecookie host=\"^\\.unique-vintage\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unique-vintage\\.com/\" to=\"https://www.unique-vintage.com/\"/></ruleset>", "<ruleset name=\"Uniregistry.com\" f=\"Uniregistry.com.xml\"><securecookie host=\"^uniregistry\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uniregistry.net\" f=\"Uniregistry.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisend.com.mx\" f=\"Unisend.com.mx.xml\"><securecookie host=\"^\\.unisend\\.com\\.mx$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisend.com\" f=\"Unisend.com.xml\"><securecookie host=\"^\\.unisend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisg.ch\" f=\"Unisg.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unister\" f=\"Unister.xml\"><rule from=\"^http://(m|static|w)\\.unister-adservices\\.com/\" to=\"https://$1.unister-adservices.com/\"/></ruleset>", "<ruleset name=\"Unisys.co.jp (partial)\" f=\"Unisys.co.jp.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://unisys\\.co\\.jp/\" to=\"https://www.unisys.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisys.com (partial)\" f=\"Unisys.com.xml\"><securecookie host=\"^www\\.support\\.unisys\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.app3|infoselect|www\\.support)\\.unisys\\.com/\" to=\"https://$1.unisys.com/\"/></ruleset>", "<ruleset name=\"UUA.org (partial)\" f=\"Unitarian_Universalist_Association_of_Congregations.xml\"><rule from=\"^http://uua\\.org/\" to=\"https://www.uua.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United Internet\" f=\"United-Internet.xml\"><securecookie host=\"^www\\.united-internet\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?united-internet\\.de/\" to=\"https://www.united-internet.de/\"/></ruleset>", "<ruleset name=\"United Nations (mismatches)\" default_off=\"mismatch\" f=\"United-Nations-mismatches.xml\"><securecookie host=\"^uncsd2012\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uncsd2012\\.org/\" to=\"https://uncsd2012.org/\"/></ruleset>", "<ruleset name=\"United Nuclear Scientific\" f=\"United-Nuclear-Scientific.xml\"><securecookie host=\"^(?:.*\\.)?unitednuclear\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United San Antonio Federal Credit Union\" f=\"United-San-Antonio-Fed-Credit-Union.xml\"><securecookie host=\"^\\.?unitedsafcu\\.org$\" name=\".+\"/><rule from=\"^http://unitedsafcu\\.org/\" to=\"https://www.unitedsafcu.org/\"/><rule from=\"^http://([\\w\\-]+)\\.unitedsafcu\\.org/\" to=\"https://$1.unitedsafcu.org/\"/></ruleset>", "<ruleset name=\"USDA.gov (partial)\" f=\"United-States-Department-of-Agriculture.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fsa\\.usda\\.gov/\" to=\"https://www.fsa.usda.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United States Department of Energy (partial)\" f=\"United-States-Department-of-Energy.xml\"><securecookie host=\"^(?:www\\.)?directives\\.doe\\.gov$\" name=\".*\"/><rule from=\"^http://(www\\.)?directives\\.doe\\.gov/\" to=\"https://$1directives.doe.gov/\"/><rule from=\"^http://(www\\.)?hss\\.doe\\.gov/includes2/\" to=\"https://$1hss.doe.gov/includes2/\"/></ruleset>", "<ruleset name=\"United States Nuclear Regulatory Commission\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"United-States-Nuclear-Regulatory-Commission.xml\"><rule from=\"^http://(?:forms\\.|www\\.)?nrc\\.gov/\" to=\"https://forms.nrc.gov/\"/></ruleset>", "<ruleset name=\"United.com (partial)\" f=\"United.xml\"><securecookie host=\"^\\.united\\.com$\" name=\"^v1st$\"/><securecookie host=\"^(?:\\.?cruises|hub|mobile|www)\\.united\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United Domains\" f=\"UnitedDomains.xml\"><rule from=\"^http://(?:www\\.)?uniteddomains\\.com/\" to=\"https://www.uniteddomains.com/\"/><rule from=\"^http://www\\.united-domains\\.de/\" to=\"https://www.united-domains.de/\"/></ruleset>", "<ruleset name=\"United Acquisition Services (partial)\" default_off=\"failed ruleset test\" f=\"United_Acquisition_Services.xml\"><rule from=\"^http://mail\\.uas\\.biz/\" to=\"https://mail.uas.biz/\"/></ruleset>", "<ruleset name=\"United Computer Wizards (partial)\" default_off=\"self-signed\" f=\"United_Computer_Wizards.xml\"><rule from=\"^http://(?:www\\.)?ucw\\.cz/\" to=\"https://www.ucw.cz/\"/></ruleset>", "<ruleset name=\"United Nations Office at Vienna (partial)\" f=\"United_Nations_Office_at_Vienna.xml\"><securecookie host=\"^www\\.unvienna\\.org$\" name=\".+\"/><rule from=\"^http://(unvextn2|www)\\.unvienna\\.org/\" to=\"https://$1.unvienna.org/\"/></ruleset>", "<ruleset name=\"United Republic (partial)\" f=\"United_Republic.xml\"><rule from=\"^http://(www\\.)?unitedrepublic\\.org/(donate(?:$|\\?|/)|wp-content/)\" to=\"https://$1unitedrepublic.org/$2\"/></ruleset>", "<ruleset name=\"United Stationers (partial)\" f=\"United_Stationers.xml\"><securecookie host=\"^.+\\.ussco\\.com$\" name=\".+\"/><rule from=\"^http://(content\\.|marketingassets\\.|www\\.)?oppictures\\.com/\" to=\"https://$1oppictures.com/\"/><rule from=\"^http://(?:www\\.)?ussco\\.com/\" to=\"https://www.ussco.com/\"/><rule from=\"^http://(login|sso)\\.ussco\\.com/\" to=\"https://$1.ussco.com/\"/></ruleset>", "<ruleset name=\"unitedplatform.com (partial)\" f=\"Unitedplatform.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unity (partial)\" f=\"Unity.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^https?://unity\\.com/\" to=\"https://www.unity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unitymedia.de\" f=\"Unitymedia.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univ-Brest.fr (partial)\" f=\"Univ-Brest.fr.xml\"><rule from=\"^http://(?:www\\.)?univ-brest\\.fr/\" to=\"https://www.univ-brest.fr/\"/></ruleset>", "<ruleset name=\"Univ-Montp3.fr (partial)\" f=\"Univ-Montp3.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univ-SMB.fr\" f=\"Univ-SMB.fr.xml\"><rule from=\"^http://www\\.univ-smb\\.fr/\" to=\"https://www.univ-smb.fr/\"/></ruleset>", "<ruleset name=\"Univention.de\" f=\"Univention.de.xml\"><securecookie host=\"^www\\.univention\\.de$\" name=\".+\"/><rule from=\"^http://piwik\\.univention\\.de/\" to=\"https://www.piwik.univention.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univers-Libre.net\" default_off=\"expired, missing certificate chain\" platform=\"cacert\" f=\"Univers-Libre.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universal Subtitles\" default_off=\"failed ruleset test\" f=\"UniversalSubtitles.xml\"><rule from=\"^http://universalsubtitles\\.org/\" to=\"https://www.universalsubtitles.org/\"/><rule from=\"^http://(blog|www)\\.universalsubtitles\\.org/\" to=\"https://$1.universalsubtitles.org/\"/><rule from=\"^http://s3\\.www\\.universalsubtitles\\.org/\" to=\"https://s3.amazonaws.com/s3.www.universalsubtitles.org/\"/></ruleset>", "<ruleset name=\"Universe 2.us\" default_off=\"self-signed\" f=\"Universe_2.us.xml\"><securecookie host=\"^universe2\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?universe2\\.us/\" to=\"https://universe2.us/\"/></ruleset>", "<ruleset name=\"Université Laval (partial)\" f=\"Universite_Laval.xml\"><securecookie host=\"authentification\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"capsuleweb\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"connect\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"exchange\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"portaildescours\\.ulaval\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Université catholique de Louvain\" f=\"Universite_catholique_de_Louvain.xml\"><securecookie host=\"^listes-[123]\\.sipr\\.ucl\\.ac\\.be$\" name=\".+\"/><securecookie host=\"^(?:mysqladm|www)\\.uclouvain\\.be$\" name=\".+\"/><rule from=\"^http://listes-([123])\\.sipr\\.ucl\\.ac\\.be/\" to=\"https://listes-$1.sipr.ucl.ac.be/\"/><rule from=\"^http://(?:www\\.)?uclouvain\\.be/\" to=\"https://www.uclouvain.be/\"/><rule from=\"^http://(mysqladm|perso|sites|tools|webhost-test)\\.uclouvain\\.be/\" to=\"https://$1.uclouvain.be/\"/></ruleset>", "<ruleset name=\"UIC.edu (partial)\" f=\"University-Illinois-at-Chicago.xml\"><exclusion pattern=\"^http://media\\.uic\\.edu/ensemble/(?!app/flash/)\"/><exclusion pattern=\"^http://www\\.uic\\.edu/htbin/az(?:\\?|$)\"/><securecookie host=\"^(?!media\\.uic\\.edu$)\\w\" name=\".\"/><rule from=\"^http://hospital\\.uic\\.edu/\" to=\"https://hospital.uillinois.edu/\"/><rule from=\"^http://hr\\.uic\\.edu/\" to=\"https://www.hr.uic.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Southern Indiana (partial)\" f=\"University-Southern-Indiana.xml\"><rule from=\"^http://(?:www\\.)?usi\\.edu/\" to=\"https://www.usi.edu/\"/></ruleset>", "<ruleset name=\"University of Alaska Anchorage (partial)\" default_off=\"Additional testing recommended\" f=\"University-of-Alaska-Anchorage.xml\"><securecookie host=\"^(?:classes|coe|edit|elive|hosting|kb|longdistance|me|owa|student|technology|techsupport|webaccess|www)\\.uaa\\.alaska\\.edu$\" name=\".+\"/><exclusion pattern=\"^http://www\\.uaa\\.alaska\\.edu/map/(?:CampusMap\\.swf|interactive\\.cfm)\"/><rule from=\"^http://(classes|coe|edit|elive|kb|longdistance|me|owa|student|technology|techsupport|webaccess|www)\\.uaa\\.alaska\\.edu/\" to=\"https://$1.uaa.alaska.edu/\"/><rule from=\"^http://edit\\.www\\.uaa\\.alaska\\.edu/\" to=\"https://edit.uaa.alaska.edu/\"/><rule from=\"^http://hosting\\.uaa\\.alaska\\.edu/?$\" to=\"https://www.uaa.alaska.edu/informationtechnologyservices/\"/><rule from=\"^http://hosting\\.uaa\\.alaska\\.edu/(.+)\" to=\"https://hosting.uaa.alaska.edu/$1\"/><rule from=\"^http://moodle\\.uaa\\.alaska\\.edu(?:$|/.*)\" to=\"https://www.uaa.alaska.edu/classes/facultyresources/\"/><rule from=\"^http://womens\\.uaa\\.alaska\\.edu(?:$|/.*)\" to=\"https://www.uaa.alaska.edu/womensstudies/\"/><rule from=\"^https://www\\.uaa\\.alaska\\.edu/map/interactive\\.cfm\" to=\"http://www.uaa.alaska.edu/map/interactive.cfm\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"University of Alaska Jobs (uakjobs.com)\" f=\"University-of-Alaska-Jobs.xml\"><securecookie host=\"^(?:www\\.)?uakjobs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uakjobs\\.com/\" to=\"https://www.uakjobs.com/\"/></ruleset>", "<ruleset name=\"University of Alaska (partial)\" platform=\"mixedcontent\" f=\"University-of-Alaska.xml\"><securecookie host=\"^www\\.uaa\\.alaska\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(uaa\\.)?alaska\\.edu/\" to=\"https://www.$1alaska.edu/\"/><rule from=\"^http://(authserv|(?:www\\.)?(avo|uaonline)|cirt|edir|elmo|email|biotech\\.inbre|lists|service|(?:swf|uaf)-1\\.vpn|yukon)\\.alaska\\.edu/\" to=\"https://$1.alaska.edu/\"/><rule from=\"^http://lib\\.uaa\\.alaska\\.edu/\" to=\"https://consortiumlibrary.org/\"/></ruleset>", "<ruleset name=\"University of Applied Sciences Rapperswil (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"University-of-Applied-Sciences-Rapperswil-mismatches.xml\"><securecookie host=\"^ita\\.hsr\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ita\\.hsr\\.ch/\" to=\"https://ita.hsr.ch/\"/></ruleset>", "<ruleset name=\"University of Applied Sciences Rapperswil\" f=\"University-of-Applied-Sciences-Rapperswil.xml\"><securecookie host=\"^www\\.hsr\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hsr\\.ch/\" to=\"https://www.hsr.ch/\"/><rule from=\"^http://log\\.hsr\\.ch/\" to=\"https://log.hsr.ch/\"/></ruleset>", "<ruleset name=\"Bern University (expired)\" default_off=\"expired\" f=\"University-of-Bern-expired.xml\"><rule from=\"^http://www\\.students\\.unibe\\.ch/\" to=\"https://www.students.unibe.ch/\"/></ruleset>", "<ruleset name=\"University of Bern (partial)\" f=\"University-of-Bern.xml\"><securecookie host=\"^.*\\.unibe\\.ch$\" name=\".*\"/><rule from=\"^http://(cmslive3|www\\.(?:kommunikation|phil(?:hist|hum|nat)|psy|rechtswissenschaft|risiko|uniaktuell|vetsuisse|wiso|zuw))\\.unibe\\.ch/\" to=\"https://$1.unibe.ch/\"/><rule from=\"^http://(?:www\\.)?(id|medizin|ub)\\.unibe\\.ch/\" to=\"https://www.$1.unibe.ch/\"/><rule from=\"^http://www\\.medienmitteilungen\\.unibe\\.ch/\" to=\"https://www.kommunikation.unibe.ch/content/medien/medienmitteilungen/index_ger.html\"/><rule from=\"^http://www\\.uni(link|press)\\.unibe\\.ch/\" to=\"https://www.kommunikation.unibe.ch/content/publikationen/uni$1/index_ger.html\"/></ruleset>", "<ruleset name=\"Berkeley.edu (partial)\" f=\"University-of-California-Berkeley.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:c|eec)s\\.berkeley\\.edu/.+\"/><exclusion pattern=\"^http://graduation\\.berkeley\\.edu/.+\"/><exclusion pattern=\"^http://www\\.berkeley\\.edu/+(?!favicon\\.ico|images/|news2/|pdf/)\"/><securecookie host=\"^(?:(?!www\\.berkeley\\.edu$)\\w.*|\\.events|(?:\\.fortuna)?\\.security)\\.berkeley\\.edu$\" name=\".\"/><rule from=\"^http://www\\.(are|give)\\.berkeley\\.edu/\" to=\"https://$1.berkeley.edu/\"/><rule from=\"^http://bmail\\.berkeley\\.edu/.*\" to=\"https://mail.google.com/a/berkeley.edu\"/><rule from=\"^http://cal1card\\.berkeley\\.edu/+([^?]*).*\" to=\"https://services.housing.berkeley.edu/c1c/$1\"/><rule from=\"^http://callcenter\\.berkeley\\.edu/$\" to=\"https://give.berkeley.edu/browse/index.cfm?u=191\"/><rule from=\"^http://(cs|eecs|ocf)\\.berkeley\\.edu/\" to=\"https://www.$1.berkeley.edu/\"/><rule from=\"^http://graduation\\.berkeley\\.edu/$\" to=\"https://commencement.berkeley.edu/\"/><rule from=\"^http://mirrors\\.berkeley\\.edu/$\" to=\"https://mirrors.ocf.berkeley.edu/\"/><rule from=\"^http://visitors\\.berkeley\\.edu/\" to=\"https://visit.berkeley.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of California (mismatches)\" default_off=\"mismatched\" f=\"University-of-California-mismatches.xml\"><securecookie host=\"^www1\\.cnsi\\.ucla\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www1?\\.)?cnsi\\.ucla\\.edu/\" to=\"https://www1.cnsi.ucla.edu/\"/></ruleset>", "<ruleset name=\"University of California (partial)\" f=\"University-of-California.xml\"><exclusion pattern=\"^http://extension\\.ucsb\\.edu/(?!css/|images/|portal/)\"/><securecookie host=\"^(?:.*\\.)?ics\\.uci\\.edu$\" name=\".+\"/><securecookie host=\"^(?:www\\.admissions|analytics\\.oist)\\.ucsb\\.edu$\" name=\".+\"/><securecookie host=\"^wepawet\\.cs\\.ucsb\\.edu$\" name=\".+\"/><rule from=\"^http://(archive\\.|www\\.)?ics\\.uci\\.edu/\" to=\"https://$1ics.uci.edu/\"/><rule from=\"^http://(?:www\\.)?admissions\\.ucsb\\.edu/\" to=\"https://www.admissions.ucsb.edu/\"/><rule from=\"^http://(wepawet\\.cs|www\\.cs|apps\\.education|extension|ftp|secure\\.lsit|analytics\\.oist)\\.ucsb\\.edu/\" to=\"https://$1.ucsb.edu/\"/><rule from=\"^http://login\\.proxy\\.library\\.ucsb\\.edu(?::\\d+)?/\" to=\"https://login.proxy.library.ucsb.edu/\"/></ruleset>", "<ruleset name=\"Cam.ac.uk (partial)\" f=\"University-of-Cambridge.xml\"><exclusion pattern=\"^http://www\\.damtp\\.cam\\.ac\\.uk/$\"/><exclusion pattern=\"^http://www\\.damtp\\.cam\\.ac\\.uk/+(?!global/)\"/><exclusion pattern=\"^http://(?:www\\.)?jesus\\.cam\\.ac\\.uk/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://www\\.wolfson\\.cam\\.ac\\.uk/+(?!sites/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://((?:camsis|damtp|jesus)\\.)?cam\\.ac\\.uk/\" to=\"https://www.$1cam.ac.uk/\"/><rule from=\"^http://print-server\\.st-edmunds\\.cam\\.ac\\.uk:9192/\" to=\"https://print-server.st-edmunds.cam.ac.uk:9192/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Central Florida (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Central-Florida.xml\"><securecookie host=\"^(?:admissions|bot|brand|cdn|communityrelations|fsi|hospitality|my|smca|today|universityheader)\\.ucf\\.edu$\" name=\".*\"/><rule from=\"^http://((?:admissions|bot|brand|cdn|communityrelations|fsi|hospitality|my|today|smca|universityheader|www)\\.)?ucf\\.edu/\" to=\"https://$1ucf.edu/\"/></ruleset>", "<ruleset name=\"UChicago.edu (self-signed)\" default_off=\"self-signed\" f=\"University-of-Chicago-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UChicago.edu (partial)\" f=\"University-of-Chicago.xml\"><securecookie host=\".*\\.uchicago\\.edu$\" name=\".*\"/><rule from=\"^http://(ci\\.|proxy\\.)?uchicago\\.edu/\" to=\"https://www.$1uchicago.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Colorado-at-Boulder.xml\"><securecookie host=\"^laspwebmail\\.colorado\\.edu$\" name=\".+\"/><rule from=\"^http://(www\\.)?colorado\\.edu/(misc|profiles|sites)/\" to=\"https://$1colorado.edu/$2/\"/><rule from=\"^http://(fiske|jila|laspwebmail|oceanus)\\.colorado\\.edu/\" to=\"https://$1.colorado.edu/\"/></ruleset>", "<ruleset name=\"University of Copenhagen (partial)\" f=\"University-of-Copenhagen.xml\"><securecookie host=\"^\\w.*\\.ku\\.dk$\" name=\".*\"/><rule from=\"^http://(www2\\.adm|intranet)\\.ku\\.dk/\" to=\"https://$1.ku.dk/\"/></ruleset>", "<ruleset name=\"University of Delaware (partial)\" f=\"University-of-Delaware.xml\"><securecookie host=\"^(?:extension|.*\\.nss)\\.udel\\.edu$\" name=\".+\"/><rule from=\"^http://((?:ag|extension|web\\.facilities|\\w+\\.nss|www)\\.)?udel\\.edu/\" to=\"https://$1udel.edu/\"/><rule from=\"^http://www\\.facilities\\.udel\\.edu/(App_Themes|[dD]ata|Secure)/\" to=\"https://www.facilities.udel.edu/$1/\"/></ruleset>", "<ruleset name=\"University of Eastern Finland (partial)\" f=\"University-of-Eastern-Finland.xml\"><securecookie host=\"^www\\.uef\\.fi$\" name=\".*\"/><rule from=\"^http://cs\\.joensuu\\.fi/\" to=\"https://cs.joensuu.fi/\"/><rule from=\"^http://(?:www\\.)?uef\\.fi/\" to=\"https://www.uef.fi/\"/></ruleset>", "<ruleset name=\"University of Exeter (partial)\" f=\"University-of-Exeter.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:psychology|sshs)\\.\"/><securecookie host=\"^(?:.*\\.)?exeter\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://empslocal\\.ex(?:eter)?\\.ac\\.uk/\" to=\"https://empslocal.ex.ac.uk/\"/><rule from=\"^http://([\\w-]+\\.)?ex(?:eter)?\\.ac\\.uk/\" to=\"https://$1exeter.ac.uk/\"/><rule from=\"^http://(?:www\\.)?([\\w-]+\\.)ex(?:eter)?\\.ac\\.uk/\" to=\"https://$1exeter.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Florida (expired)\" default_off=\"expired, self-signed\" f=\"University-of-Florida-expired.xml\"><rule from=\"^http://(?:www\\.)?(admin|hscj)\\.ufl\\.edu/\" to=\"https://$1.ufl.edu/\"/></ruleset>", "<ruleset name=\"University of Florida (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Florida.xml\"><securecookie host=\"^\\w[\\w\\.]*\\.ufl\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(cise|crc|fa|isis|uff)\\.ufl\\.edu/\" to=\"https://www.$1.ufl.edu/\"/><rule from=\"^http://lists\\.ufl\\.edu/archives/net-managers-l\\.html\" to=\"https://lists.ufl.edu/cgi-bin/wa?A0=NET-MANAGERS-L\"/><rule from=\"^http://((?:labs|lss)\\.at|catalog|counceling|evaluations|service\\.gatorlink|gradschool|security\\.health|(?:alerts|asc|etd|static)\\.helpdesk|infosec|test\\.isis|alerts\\.it|lists|login|my|net-services|nms(?:-console)?\\.ns|open-systems|(?:images|style)\\.webadmin|webmail)\\.ufl\\.edu/\" to=\"https://$1.ufl.edu/\"/><rule from=\"^http://forwardtogether\\.(?:health|sites\\.medinfo)\\.ufl\\.edu/\" to=\"https://forwardtogether.sites.medinfo.ufl.edu/\"/><rule from=\"^http://(?:www\\.)?ufalumni\\.ufl\\.edu/($|App_Themes/|images/|login\\.aspx|membersonly/register|resources/|styles/|WebResource\\.axd|[\\w\\-\\./]+/$)\" to=\"https://www.ufalumni.ufl.edu/$1\"/><rule from=\"^http://www\\.shands\\.org/\" to=\"https://www.shands.org/\"/></ruleset>", "<ruleset name=\"University of Groningen (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Groningen.xml\"><rule from=\"^http://(www\\.)?rug\\.nl/(_definition/|sterrenkunde/([!_]css|_shared/|onderwijs/index!login))\" to=\"https://$1rug.nl/$2\"/><rule from=\"^http://(?:www\\.)?astro\\.rug\\.nl/\" to=\"https://www.astro.rug.nl/\"/></ruleset>", "<ruleset name=\"University of Helsinki (partial)\" f=\"University-of-Helsinki.xml\"><rule from=\"^http://helsinki\\.fi/\" to=\"https://www.helsinki.fi/\"/><rule from=\"^http://www\\.helsinki\\.fi/(css/|images/)\" to=\"https://www.helsinki.fi/$1\"/><rule from=\"^http://(alma|alumniverkosto|blogs|www-db2)\\.helsinki\\.fi/\" to=\"https://$1.helsinki.fi/\"/><rule from=\"^http://(?:www\\.)?cs\\.helsinki\\.fi/\" to=\"https://www.cs.helsinki.fi/\"/></ruleset>", "<ruleset name=\"Herts.ac.uk (partial)\" f=\"University-of-Hertfordshire.xml\"><rule from=\"^http://go\\.herts\\.ac\\.uk/(?=\\w)\" to=\"https://web-apps.herts.ac.uk/go/?go=\"/><rule from=\"^http://(?:www\\.)?studynet(1|2)?\\.herts\\.ac\\.uk/\" to=\"https://www.studynet$1.herts.ac.uk/\"/><rule from=\"^http://(www\\.studentrecord|web-apps)\\.herts\\.ac\\.uk/\" to=\"https://$1.herts.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Idaho (partial)\" f=\"University-of-Idaho.xml\"><securecookie host=\"^\\w.*\\.uidaho\\.edu$\" name=\".+\"/><rule from=\"^http://((?:sitecore|vandalweb|www\\.(?:dfa|sci|uiweb|webedit)|www2?\\.sites|www)\\.)?uidaho\\.edu/\" to=\"https://$1uidaho.edu/\"/><rule from=\"^http://www\\.its\\.uidaho\\.edu/$\" to=\"https://www.uidaho.edu/its\"/></ruleset>", "<ruleset name=\"Illinois.edu (partial)\" f=\"University-of-Illinois-at-Urbana-Champaign.xml\"><exclusion pattern=\"^http://illinois\\.edu/(?:$|\\?)\"/><exclusion pattern=\"^http://illinois.edu/(?:arts(?:$|[?/])|shortUrl/forward)\"/><exclusion pattern=\"^http://computing\\.scs\\.illinois\\.edu/+(?!$|\\?|content/|misc/|sites/)\"/><exclusion pattern=\"^http://vetmed\\.illinois\\.edu/+(?!wp-content/)\"/><securecookie host=\".\\.illinois\\.edu$\" name=\".\"/><rule from=\"^http://www\\.(business|chbe|cs|engineering|studentaffairs)\\.illinois\\.edu/\" to=\"https://$1.illinois.edu/\"/><rule from=\"^http://(earth|ece|lis|mrp)\\.illinois\\.edu/\" to=\"https://www.$1.illinois.edu/\"/><rule from=\"^http://(?:www\\.)?housing\\.illinois\\.edu/\" to=\"https://www-s.housing.illinois.edu/\"/><rule from=\"^http://(?:www\\.)?mechse\\.illinois\\.edu/\" to=\"https://mechanical.illinois.edu/\"/><rule from=\"^http://police\\.illinois\\.edu/\" to=\"https://dps.illinois.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Kansas (partial)\" f=\"University-of-Kansas.xml\"><rule from=\"^http://(assets\\.drupal|technology|web)\\.ku\\.edu/\" to=\"https://$1.ku.edu/\"/></ruleset>", "<ruleset name=\"University of Manitoba (partial)\" platform=\"mixedcontent\" f=\"University-of-Manitoba.xml\"><rule from=\"^http://((?:aurora|(?:angel|baninb1|home|webapps|webware|wiki)\\.cc|iridium|jump|myuminfo|www)\\.)?umanitoba\\.ca/\" to=\"https://$1umanitoba.ca/\"/></ruleset>", "<ruleset name=\"University of Mary Washington blogs\" default_off=\"expired, mismatch\" f=\"University-of-Mary-Washington-blogs.xml\"><securecookie host=\"^(?:.*\\.)?umwblogs\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mcclurken\\.org/\" to=\"https://mcclurken.org/\"/><rule from=\"^http://(eagleeye|jamesfarmer)\\.umw\\.edu/\" to=\"https://$1.umw.edu/\"/><rule from=\"^http://(?:www\\.)?umwblogs\\.org/\" to=\"https://umwblogs.org/\"/><rule from=\"^http://([\\w\\-]+)\\.umwblogs\\.org/\" to=\"https://$1.umwblogs.org/\"/></ruleset>", "<ruleset name=\"University of Mary Washington (partial)\" f=\"University-of-Mary-Washington.xml\"><securecookie host=\"^.*\\.umw\\.edu$\" name=\".*\"/><rule from=\"^http://((?:academics|adminfinance|admissions|advancement|athletics|business|cas|dahlgren|diversity|eaglenet|economicdevelopment|(?:educ|found)ation|giving|libraries|president|provost|publications|research|sacs|students|sustainability|technology|www)\\.)?umw\\.edu/\" to=\"https://$1umw.edu/\"/></ruleset>", "<ruleset name=\"UMd.edu (partial)\" f=\"University-of-Maryland.xml\"><exclusion pattern=\"^http://helpdesk\\.umd\\.edu/+(?!favicon\\.ico|images/|web\\.support/)\"/><exclusion pattern=\"^http://kb\\.umd\\.edu/+(?!\\d)\"/><exclusion pattern=\"^http://www\\.lib\\.umd\\.edu/+(?!binaries/|css/|images/)\"/><exclusion pattern=\"^http://www\\.provost\\.umd\\.edu/+(?!favicon\\.ico|images/|includes/|masthead\\.jpg|photos/|resources/)\"/><exclusion pattern=\"^http://terpconnect\\.umd\\.edu/(?!~)\"/><exclusion pattern=\"^http://thestamp\\.umd\\.edu/+(?!DesktopModules/|[Pp]ortals/(?:_default/Skins/|_default/default\\.css|0/Documents/|0/Images/|0/[^/]*\\.(?:jp|pn)g)|favicon\\.ico|icons/|images/)\"/><securecookie host=\"^(?:(?:ejobs|id-card|login|www)\\.)?umd\\.edu$\" name=\".\"/><rule from=\"^http://ares\\.umd\\.edu/\" to=\"https://was-3.umd.edu/\"/><rule from=\"^http://www\\.(giving|thestamp)\\.umd\\.edu/\" to=\"https://$1.umd.edu/\"/><rule from=\"^http://kb\\.umd\\.edu/+(\\d+)(?:\\?.*)?\" to=\"https://www.itsc.umd.edu/MRcgi/MRTicketPage.pl?USER=&MRP=0&PROJECTID=1&MR=$1\"/><rule from=\"^http://password\\.umd\\.edu/[^?]*\" to=\"https://www.it.umd.edu/password\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Massachusetts Amherst (mismatches)\" default_off=\"mismatch\" f=\"University-of-Massachusetts-Amherst-mismatches.xml\"><rule from=\"^http://(?:www\\.)?umassathletics\\.com/\" to=\"https://www.umassathletics.com/\"/><rule from=\"^http://(?:www\\.)?umassmag\\.com/\" to=\"https://umassmag.com/\"/></ruleset>", "<ruleset name=\"University of Massachusetts Amherst (partial)\" f=\"University-of-Massachusetts-Amherst.xml\"><securecookie host=\"^.*\\.umass\\.edu$\" name=\".*\"/><securecookie host=\"^www\\.umassulearn\\.net$\" name=\".*\"/><rule from=\"^http://umassathletics\\.cstv\\.com/\" to=\"https://umassathletics.cstv.com/\"/><rule from=\"^http://((?:blogs|moodle|(?:(?:hds|hds05|spark|udrive|umail|umweb-3|www)\\.)?oit|(?:webapp|www)\\.spire|umii|www\\.umii)\\.)?umass\\.edu/\" to=\"https://$1umass.edu/\"/><rule from=\"^http://(www\\.)?umassulearn\\.net/\" to=\"https://$1umassulearn.net/\"/></ruleset>", "<ruleset name=\"UMich.edu (partial)\" f=\"University-of-Michigan.xml\"><securecookie host=\"^.+\\.umich\\.edu$\" name=\".+\"/><rule from=\"^http://(cse|lsa)\\.umich\\.edu/\" to=\"https://www.$1.umich.edu/\"/><rule from=\"^http://www\\.(ctools|weblogin)\\.umich\\.edu/\" to=\"https://$1.umich.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Minho (mismatches)\" default_off=\"self-signed\" f=\"University-of-Minho-mismatches.xml\"><rule from=\"^http://cesium\\.di\\.uminho\\.pt/\" to=\"https://cesium.di.uminho.pt/\"/></ruleset>", "<ruleset name=\"UMN.edu (partial)\" f=\"University-of-Minnesota.xml\"><securecookie host=\"^www\\.dtc\\.umn\\.edu$\" name=\".+\"/><rule from=\"^http://dtc\\.umn\\.edu/\" to=\"https://www.dtc.umn.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of North Texas (partial)\" platform=\"mixedcontent\" f=\"University-of-North-Texas.xml\"><rule from=\"^http://(?:www\\.)?((?:ci|coe|hsc|library)\\.)?unt\\.edu/\" to=\"https://www.$1unt.edu/\"/><rule from=\"^http://(?:www\\.)?((?:studyabroad\\.admin)|afrotc|ally|ams|announce|annualreport|anthropology|c3b|calendar|call|careercenter|chile|citc|clear|compliance|conduct|coop|copyright|courses|dcbest|deanofstudents|development|dining|discoverypark|dos|dplife|eagleconnect|ecampus(?:support)?|edo|ee|efec|emds|emergency|endow|eng|engineering|essc|etec|facilities|factbook|financialaid|forms|gallery|gartner|greeklife|healthcenter|home|honors|hr|(?:cme|profile)\\.hsc|iarta|ieli|imaging|info|inhouse|international|internships|inthenews|itunes|jaguarconnect|faculty(?:jobs)?|jazz|jobs|journalism|kddi|larc|learningcenter|(?:irservices|iii)\\.library|(?:(?:classes|moodle)\\.)?lt|messaging|moneymanagement|mtse|music|my|my[fl]s|northtexan|orgs|osprey|paccar|pacs|policy|pps|reac|records|recsports|research|reslife|rms|rtvf|security|smartenergy|spanishmedia|sportpsych|staffcouncil|src|student(?:activities|affairs|legal)|surfaces|sustainable|tams|tara|tcet|telecom|texasbest|thecblor|tours|transfer(?:institute|now)|transition|trio|tsgs|txcdk|union|unt(?:onthesquare|preview|system)|veteranscenter|virtualtour|volunteer|vpaa|vpsd|vtl|web[23]|webadmin|wiki|psychology)\\.unt\\.edu/\" to=\"https://$1.unt.edu/\"/><rule from=\"^http://(?:www\\.)?unt\\.edu/policy/UNT_Policy/volume\\d/(\\d+)_(\\d+)\\.html$\" to=\"https://policy.unt.edu/policy/$1-$2\"/><rule from=\"^http://(?:www\\.)?unt\\.edu/policy/UNT_Policy/volume\\d/(\\d+)_(\\d+)_(\\d+)\\.html$\" to=\"https://policy.unt.edu/policy/$1-$2-$3\"/></ruleset>", "<ruleset name=\"University of Ottawa (partial)\" f=\"University-of-Ottawa.xml\"><rule from=\"^http://web5\\.uottawa\\.ca/\" to=\"https://web5.uottawa.ca/\"/></ruleset>", "<ruleset name=\"Ox.ac.uk (partial)\" f=\"University-of-Oxford.xml\"><exclusion pattern=\"^http://www\\.bfriars\\.ox\\.ac\\.uk/+(?!horde/)\"/><exclusion pattern=\"^http://(?:www\\.)?biop\\.ox\\.ac\\.uk/(?!coot)\"/><exclusion pattern=\"^http://solo(?:-prd)?\\.bodleian\\.ox\\.ac\\.uk/+(?!cgi-bin/|pds\\?|shib/)\"/><exclusion pattern=\"^http://www\\.oxfordtoday\\.ox\\.ac\\.uk/+(?!favicon\\.ico|sites/)\"/><exclusion pattern=\"^http://www\\.ox\\.ac\\.uk/+(?!favicon\\.ico|sites/)\"/><securecookie host=\"^\\.www2\\.physics\\.\" name=\".\"/><rule from=\"^http://(?:www\\.)?biop\\.ox\\.ac\\.uk/coot\" to=\"https://www2.mrc-lmb.cam.ac.uk/Personal/pemsley/coot\"/><rule from=\"^http://mail\\.bfriars\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www.bfriars.ox.ac.uk/horde/\"/><rule from=\"^http://www-astro\\.physics\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www2.physics.ox.ac.uk/research/astrophysics\"/><exclusion pattern=\"^http://www-astro\\.physics.ox.ac.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPenn.edu (mismatches)\" default_off=\"mismatch\" f=\"University-of-Pennsylvania-mismatches.xml\"><rule from=\"^http://repository\\.upenn\\.edu/\" to=\"https://repository.upenn.edu/\"/></ruleset>", "<ruleset name=\"UPenn.edu (partial)\" f=\"University-of-Pennsylvania.xml\"><exclusion pattern=\"^http://www\\.library\\.upenn\\.edu/(?!images/|styles/)\"/><securecookie host=\"^(?:weblogin\\.pennkey|\\.www\\.sas)\\.upenn\\.edu$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?cis|www\\.college|medley\\.isc-seo|www\\.library|weblogin\\.pennkey|(?:fission|www)\\.sas|w(?:ebmail|ww)\\.seas)\\.upenn\\.edu/\" to=\"https://$1.upenn.edu/\"/></ruleset>", "<ruleset name=\"University of South Florida (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"University-of-South-Florida-mismatches.xml\"><rule from=\"^http://((?:brs|rc)\\.blog|scholarcommons|wusfnews\\.wusf)\\.usf\\.edu/\" to=\"https://$1.usf.edu/\"/></ruleset>", "<ruleset name=\"University of South Florida (partial)\" default_off=\"failed ruleset test\" f=\"University-of-South-Florida.xml\"><securecookie host=\"^(?:\\w.*\\.)?usf(?:sp)?\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lib\\.usf\\.edu/\" to=\"https://www.lib.usf.edu/\"/><rule from=\"^http://(my|mysites|netid|usfsts|usfweb2|webauth)\\.usf\\.edu/\" to=\"https://$1.usf.edu/\"/><rule from=\"^http://(?:www\\.)?stpete\\.usf\\.edu/\" to=\"https://www.usfsp.edu/\"/><rule from=\"^http://((?:dev|vpn|www)\\.)?usfsp\\.edu/\" to=\"https://$1usfsp.edu/\"/><rule from=\"^http://sharemypc\\.(?:stpete\\.usf|usfsp)\\.edu/\" to=\"https://sharemypc.stpete.usf.edu/\"/></ruleset>", "<ruleset name=\"University of Southampton (partial)\" f=\"University-of-Southampton.xml\"><securecookie host=\"^(?:.*\\.)?soton\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.southampton\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?noc\\.ac\\.uk/\" to=\"https://noc.ac.uk/\"/><rule from=\"^http://(?:www\\.)?soton\\.ac\\.uk/\" to=\"https://www.soton.ac.uk/\"/><rule from=\"^http://secure\\.ecs\\.soton\\.ac\\.uk/\" to=\"https://secure.ecs.soton.ac.uk/\"/><rule from=\"^http://(www\\.)?jobs\\.soton\\.ac\\.uk/\" to=\"https://$1jobs.soton.ac.uk/\"/><rule from=\"^http://(?:www\\.)?noc\\.soton\\.ac\\.uk/\" to=\"https://www.noc.soton.ac.uk/\"/><rule from=\"^http://(?:www\\.)?sussed\\.soton\\.ac\\.uk/\" to=\"https://sussed.soton.ac.uk/\"/><rule from=\"^http://www\\.southampton\\.ac\\.uk(?:\\:443)?/\" to=\"https://www.southampton.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Southern California (mismatches)\" default_off=\"mismatch\" platform=\"mixedcontent\" f=\"University-of-Southern-California-mismatches.xml\"><rule from=\"^http://(?:www\\.)?think(?:usc\\.com/(?:~thinkusc/)?|\\.usc\\.edu)/wp-content/\" to=\"https://thinkusc.com/~thinkusc/wp-content/\"/></ruleset>", "<ruleset name=\"USC.edu (partial)\" f=\"University-of-Southern-California.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://usc\\.edu/\" to=\"https://www.usc.edu/\"/><rule from=\"^http://www\\.dornsife\\.usc\\.edu/\" to=\"https://dornsife.usc.edu/\"/><rule from=\"^http://service\\.marshall\\.usc\\.edu/.*\" to=\"https://uscmarshall.service-now.com/\"/><rule from=\"^http://mypassword\\.provost\\.usc\\.edu:9251/\" to=\"https://mypassword.provost.usc.edu:9251/\"/><rule from=\"^http://policies\\.usc\\.edu/\" to=\"https://policy.usc.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Strasbourg (partial)\" f=\"University-of-Strasbourg.xml\"><exclusion pattern=\"^http://engees\\.unistra\\.fr/+(?!favicon\\.ico|site/(?:favicon\\.ico|fileadmin/|typo3temp/|uploads/))\"/><exclusion pattern=\"^http://typodun\\.unistra\\.fr/+(?!fileadmin/|typo3conf/)\"/><exclusion pattern=\"^http://www\\.unistra\\.fr/+plans(?!/commun/|styles/)\"/><securecookie host=\"^(?:guide-etudiant|icube|inscriptions|mathinfo|reseau-alumni|services-numeriques|typodun2012|www)\\.unistra\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unistra\\.fr/\" to=\"https://www.unistra.fr/\"/><rule from=\"^http://(agenda|alumni|engees|guide-etudiant|icube|icube-intranet|inscriptions|mathinfo|physique-ingenierie|reseau-alumni|services-numeriques)\\.unistra\\.fr/\" to=\"https://$1.unistra.fr/\"/><rule from=\"^http://lsiit-cnrs\\.unistra\\.fr/+\" to=\"https://icube.unistra.fr/\"/><rule from=\"^http://icube-intranet\\.u-strasbg\\.fr/\" to=\"https://icube-intranet.unistra.fr/\"/><rule from=\"^http://typodun30\\.u-strasbg\\.fr/\" to=\"https://typodun2012.unistra.fr/\"/></ruleset>", "<ruleset name=\"University of Strathclyde (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Strathclyde.xml\"><rule from=\"^http://www\\.strath\\.ac\\.uk/\" to=\"https://www.strath.ac.uk/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.edu (self-signed)\" default_off=\"self-signed\" f=\"University-of-Stuttgart-self-signed.xml\"><securecookie host=\"^www\\.icp\\.uni-stuttgart\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?icp\\.uni-stuttgart\\.de/$\" to=\"https://www.icp.uni-stuttgart.de/~icp/\"/><rule from=\"^http://(?:www\\.)?icp\\.uni-stuttgart\\.de/\" to=\"https://www.icp.uni-stuttgart.de/\"/><rule from=\"^http://(mobox|fex\\.rus)\\.uni-stuttgart\\.de/\" to=\"https://$1.uni-stuttgart.de/\"/><rule from=\"^http://www\\.stud\\.uni-stuttgart\\.de/(css|img)/\" to=\"https://www.stud.uni-stuttgart.de/$1/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.de (partial)\" f=\"University-of-Stuttgart.xml\"><securecookie host=\"^\\.uni-stuttgart\\.de$\" name=\"^BALANCEID$\"/><rule from=\"^http://(cert\\.)?uni-stuttgart\\.de/\" to=\"https://$1uni-stuttgart.de/\"/><rule from=\"^http://www\\.uni-stuttgart\\.de/(favicon\\.ico|piwik/|res/)\" to=\"https://www.uni-stuttgart.de/$1\"/><rule from=\"^http://www\\.rus\\.uni-stuttgart\\.de/(css|img)/\" to=\"https://www.rus.uni-stuttgart.de/$1/\"/></ruleset>", "<ruleset name=\"University of Texas Southwestern Medical Center (partial)\" f=\"University-of-Texas-Southwestern-Medical-Center.xml\"><securecookie host=\"^.+\\.swmed\\.edu$\" name=\".+\"/><securecookie host=\"^mutagenetix\\.utsouthwestern\\.edu$\" name=\".+\"/><rule from=\"^http://(ais|myutsouthwestern)\\.swmed\\.edu/\" to=\"https://$1.swmed.edu/\"/><rule from=\"^http://(?:www\\.)?utsouthwestern\\.edu/intranet(?:$|/.*)\" to=\"https://myutsouthwestern.swmed.edu/\"/><rule from=\"^http://(mutagenetix|www4)\\.utsouthwestern\\.edu/\" to=\"https://$1.utsouthwestern.edu/\"/></ruleset>", "<ruleset name=\"University of Texas System\" default_off=\"failed ruleset test\" f=\"University-of-Texas-System.xml\"><securecookie host=\"^(?:.*\\.)?utsystem\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Texas at Austin (mismatches)\" default_off=\"mismatch, self-signed\" f=\"University-of-Texas-at-Austin-mismatches.xml\"><rule from=\"^http://(?:affirmed|www)\\.as\\.utexas\\.edu/\" to=\"https://affirmed.as.utexas.edu/\"/><rule from=\"^http://www\\.cpge\\.utexas\\.edu/\" to=\"https://www.cpge.utexas.edu/\"/></ruleset>", "<ruleset name=\"University of Texas at Austin (partial)\" f=\"University-of-Texas-at-Austin.xml\"><securecookie host=\"^.*\\.utexas\\.edu$\" name=\".*\"/><rule from=\"^http://((?:(?:autodiscover|wmail|ww4)\\.austin|(?:www\\.)?(?:biosci|che|cm|cs|edb|energy|engr|finearts|ig|ischool|laits|landmarks|mccombs|ph|soa)|blogs|(?:advisorycouncil|elements|vhost)\\.cns|courses|steelresearch\\.geo|giving|ideas|\\w+\\.ig|[\\w-]+\\.its|(?:apps|edger)\\.jsg|knightcenter|sites\\.la|\\w+\\.lib|login|m|mail|registrar|rtf|security|smartvoice|(?:(?:m|portal|team|www)\\.)?tacc|techstaff|utdirect|utmail|get\\.utmail|webmail|webspace|wikis|www|auth\\.www)\\.)?utexas\\.edu/\" to=\"https://$1utexas.edu/\"/><rule from=\"^http://(?:www\\.)?advertising\\.utexas\\.edu/(modul|sit)es/\" to=\"https://advertising.utexas.edu/$1es/\"/><rule from=\"^http://(www\\.)?(bealonghorn|commstudies|communication|csd|journalism)\\.utexas\\.edu/(modul|sit)es/\" to=\"https://$1$2.utexas.edu/$3es/\"/><rule from=\"^http://directory\\.utexas\\.edu/(?:.*)\" to=\"https://www.utexas.edu/directory/\"/><rule from=\"^http://(?:www\\.)?la\\.utexas\\.edu/(?:.*)\" to=\"https://www.utexas.edu/cola\"/><rule from=\"^http://lib\\.utexas\\.edu/\" to=\"https://www.lib.utexas.edu/\"/><rule from=\"^http://(?:www\\.)?(jsg|ma)\\.utexas\\.edu/\" to=\"https://www.$1.utexas.edu/\"/><rule from=\"^http://(?:www\\.)?music\\.utexas\\.edu/\" to=\"https://ww4.austin.utexas.edu/\"/></ruleset>", "<ruleset name=\"University of Texas at Dallas (partial)\" f=\"University-of-Texas-at-Dallas.xml\"><securecookie host=\"^(?:(?:autodiscover|elearning(?:pilot|staging|test)?|sis-portal-prod|webmail|www)\\.)?utdallas\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?utdallas\\.edu/\" to=\"https://www.utdallas.edu/\"/><rule from=\"^http://(autodiscover|coursebook|dali|dox|eforms|elearning(?:pilot|staging|test)?|eval|galaxy|go|goto|input|oue|pages|policy|provost|ptg|qep|rodin|sis-portal-prod|v|webmail)\\.utdallas\\.edu/\" to=\"https://$1.utdallas.edu/\"/><rule from=\"^http://sacs(?:coc)?\\.utdallas\\.edu/\" to=\"https://sacs.utdallas.edu/\"/></ruleset>", "<ruleset name=\"Utah.edu (partial)\" f=\"University-of-Utah.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(cs|alumni)\\.utah\\.edu/\" to=\"https://www.$1.utah.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Virginia (partial)\" f=\"University-of-Virginia.xml\"><securecookie host=\"^(?:sisuva\\.admin|collab\\.itc)\\.virginia\\.edu$\" name=\".+\"/><rule from=\"^http://(sisuva\\.admin|www\\.cs|mail\\.eservices|gwis|(?:collab|eventcal)\\.itc|www\\.its|lists|www\\.mail|netbadge|news|admin\\.people|rabi\\.phys|standard\\.pki|uvaemergency)\\.virginia\\.edu/\" to=\"https://$1.virginia.edu/\"/><rule from=\"^http://(?:www\\.)?itc\\.virginia\\.edu/\" to=\"https://www.itc.virginia.edu/\"/><rule from=\"^http://its\\.virginia\\.edu/(?=css/|images/)\" to=\"https://www.its.virginia.edu/\"/></ruleset>", "<ruleset name=\"Washington.edu (problematic)\" default_off=\"mismatched, self-signed\" f=\"University-of-Washington-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington.edu (partial)\" f=\"University-of-Washington.xml\"><exclusion pattern=\"http://(?:www\\.)?washington\\.edu/home/siteinfo/form\"/><exclusion pattern=\"^http://depts.washington.edu/gpss/(?!sites/)\"/><exclusion pattern=\"^http://digital\\.lib\\.washington\\.edu/findingaids/\"/><exclusion pattern=\"^http://www\\.ee\\.washington\\.edu/+(?![^/]+/|favicon\\.ico)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^(?!depts\\.|www\\.ee\\.)\\w\" name=\".\"/><rule from=\"^http://(cs|hfs|law)\\.washington\\.edu/\" to=\"https://www.$1.washington.edu/\"/><rule from=\"^http://www\\.jsis\\.washington\\.edu/\" to=\"https://jsis.washington.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Waterloo (partial)\" f=\"University-of-Waterloo.xml\"><rule from=\"^http://((?:cecspilot\\.cecssys|crysp|csclub|(?:www\\.)?cs|(?:www\\.)?math|ripple|www)\\.)?uwaterloo\\.ca/\" to=\"https://$1uwaterloo.ca/\"/><rule from=\"^http://campaign\\.uwaterloo\\.ca/(?=$|\\?)\" to=\"https://uwaterloo.ca/support/\"/><rule from=\"^http://cecs\\.uwaterloo\\.ca/.*\" to=\"https://uwaterloo.ca/co-operative-education\"/><rule from=\"^http://development\\.uwaterloo\\.ca/[^?]*(?=$|\\?)\" to=\"https://uwaterloo.ca/support/\"/><rule from=\"^http://hr\\.uwaterloo\\.ca/[^?]*(?=$|\\?)\" to=\"https://uwaterloo.ca/human-resources/\"/><rule from=\"^http://info\\.uwaterloo\\.ca/+(?=$|\\?)\" to=\"https://uwaterloo.ca/central-stores/\"/></ruleset>", "<ruleset name=\"University of Western Australia (partial)\" f=\"University-of-Western-Australia.xml\"><securecookie host=\"^static\\.weboffice\\.uwa\\.edu\\.au$\" name=\".*\"/><rule from=\"^http://static\\.weboffice\\.uwa\\.edu\\.au/\" to=\"https://static.weboffice.uwa.edu.au/\"/></ruleset>", "<ruleset name=\"University of Wisconsin–Milwaukee (partial)\" f=\"University-of-Wisconsin-Milwaukee.xml\"><securecookie host=\"\\.uwm\\.edu$\" name=\".+\"/><rule from=\"^http://www\\.uwm\\.edu/\" to=\"https://www4.uwm.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University College London (partial)\" f=\"University_College_London.xml\"><rule from=\"^http://(?:www\\.)?ucl\\.ac\\.uk/\" to=\"https://www.ucl.ac.uk/\"/></ruleset>", "<ruleset name=\"University Computer Club (partial)\" f=\"University_Computer_Club.xml\"><rule from=\"^http://matt\\.ucc\\.asn\\.au/\" to=\"https://matt.ucc.asn.au/\"/></ruleset>", "<ruleset name=\"Buffalo.edu (partial)\" f=\"University_at_Buffalo.xml\"><exclusion pattern=\"^http://(?:www\\.)?student-affairs\\.buffalo\\.edu/+(?!$|\\?|(?:\\w+/)?(?:images|style)/|genemail(?:$|\\?))\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.ubfoundation\\.buffalo\\.edu/\" to=\"https://ubfoundation.buffalo.edu/\"/><rule from=\"^http://ubjobs\\.buffalo\\.edu/\" to=\"https://www.ubjobs.buffalo.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Applied Sciences Kiel\" f=\"University_of_Applied_Sciences_Kiel.xml\"><securecookie host=\"^(?:(?:(?:www)?|(?:www\\.)?(?:email|student)|hrzsophos\\.hrz\\.isc|ida|modulanmeldung|module|vpn)\\.)?fh-kiel.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fh-kiel\\.de/\" to=\"https://www.fh-kiel.de/\"/><rule from=\"^http://(?:www\\.)?(email|student)\\.fh-kiel\\.de/\" to=\"https://$1.fh-kiel.de/\"/><rule from=\"^http://(ida|hrzsophos\\.hrz\\.isc|modulanmeldung|module|vpn)\\.fh-kiel\\.de/\" to=\"https://$1.fh-kiel.de/\"/></ruleset>", "<ruleset name=\"University of Arizona (partial)\" f=\"University_of_Arizona.xml\"><rule from=\"^http://(www\\.)?cs\\.arizona\\.edu/\" to=\"https://$1cs.arizona.edu/\"/><rule from=\"^http://hirise-pds\\.lpl\\.arizona\\.edu/(\\?.*)?$\" to=\"https://hirise.lpl.arizona.edu/PDS/$1\"/><rule from=\"^http://hirise(?:-pds)?\\.lpl\\.arizona\\.edu/\" to=\"https://hirise.lpl.arizona.edu/\"/><rule from=\"^http://(pirlwww|www)\\.lpl\\.arizona\\.edu/\" to=\"https://$1.lpl.arizona.edu/\"/></ruleset>", "<ruleset name=\"University of Bath (partial)\" f=\"University_of_Bath.xml\"><rule from=\"^http://(?:www\\.)?bath\\.ac\\.uk/(assets/|common/|external/|favicon\\.ico|graphics/|news/system/|system/)\" to=\"https://www.bath.ac.uk/$1\"/></ruleset>", "<ruleset name=\"Bris.ac.uk (partial)\" f=\"University_of_Bristol.xml\"><securecookie host=\"^(?:www\\.alumni|shop)\\.bris\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?survey\\.bris\\.ac\\.uk/\" to=\"https://www.survey.bris.ac.uk/\"/><rule from=\"^http://(www\\.alumni|shop)\\.bris\\.ac\\.uk/\" to=\"https://$1.bris.ac.uk/\"/></ruleset>", "<ruleset name=\"University of California, San Francisco (problematic)\" default_off=\"mismatched\" f=\"University_of_California_San_Francisco-problematic.xml\"><securecookie host=\"^\\.postdocs\\.ucsf\\.edu$\" name=\".+\"/><rule from=\"^http://(postdocs|support)\\.ucsf\\.edu/\" to=\"https://$1.ucsf.edu/\"/></ruleset>", "<ruleset name=\"University of California, San Francisco (partial)\" f=\"University_of_California_San_Francisco.xml\"><securecookie host=\"^(?:\\.asuc|\\.career|dp|\\.edtech|\\.finaid|\\.graduate|\\.gsa|\\.insideguide|\\.interprofessional|\\.isso|\\.?it|\\.learn|makeagift|\\.oir|\\.registrar|\\.?saa|\\.sac|\\.sds|\\.ssmb|studenthealth|www)\\.ucsf\\.edu$\" name=\".+\"/><rule from=\"^http://ucsf\\.edu/\" to=\"https://www.ucsf.edu/\"/><rule from=\"^http://makeagift\\.ucsf\\.edu/(?:site/PageServer)?(?:\\?pagename=page_not_found)?$\" to=\"https://makeagift.ucsf.edu/site/PageServer?pagename=A1_API_GeneralGivingForm\"/><rule from=\"^http://(asuc|career|dp|edtech|finaid|graduate|gsa|insideguide|interprofessional|isso|it|learn|makeagift|myaccess|oir|registrar|saa|sac|sds|ssmb|studenthealth|warnme|www)\\.ucsf\\.edu/\" to=\"https://$1.ucsf.edu/\"/><rule from=\"^http://www\\.(career|warnme)\\.ucsf\\.edu/\" to=\"https://$1.ucsf.edu/\"/></ruleset>", "<ruleset name=\"University of California, Santa Cruz (problematic)\" default_off=\"expired, self-signed\" f=\"University_of_California_Santa_Cruz-problematic.xml\"><securecookie host=\"^\\.physicalsecurity\\.ucsc\\.edu$\" name=\".+\"/><rule from=\"^http://(archaea|keys\\.pbsci|physicalsecurity)\\.ucsc\\.edu/\" to=\"https://$1.ucsc.edu/\"/></ruleset>", "<ruleset name=\"UCSC.edu (partial)\" f=\"University_of_California_Santa_Cruz.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cruzbuy\\.ucsc\\.edu/.*\" to=\"https://financial.ucsc.edu/Pages/Launch_CruzBuy.aspx\"/><rule from=\"^http://cruzpay\\.ucsc\\.edu/.*\" to=\"https://financial.ucsc.edu/Pages/Launch_CruzPay.aspx\"/><rule from=\"^http://email\\.ucsc\\.edu/.*\" to=\"https://mail.google.com/a/ucsc.edu\"/><rule from=\"^http://itrequest\\.ucsc\\.edu/[^?]*\" to=\"https://ucsc.service-now.com/ess/\"/><rule from=\"^http://(oca|soe)\\.ucsc\\.edu/\" to=\"https://www.$1.ucsc.edu/\"/><rule from=\"^http://ugr\\.ucsc\\.edu/\" to=\"https://ugr.ue.ucsc.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Cape Town (partial)\" f=\"University_of_Cape_Town.xml\"><exclusion pattern=\"^http://(?:www\\.)?icts\\.uct\\.ac\\.za/(?!alerts\\.php|favicon\\.ico|images/|modules\\.php\\?name=Your_Account|themes/)\"/><securecookie host=\"^(?:mail|netstorage|password|www\\.staff|uctgwacc|vula|www)\\.uct\\.ac\\.za$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(icts\\.)?uct\\.ac\\.za/\" to=\"https://www.$1uct.ac.za/\"/><rule from=\"^http://(autodiscover|chrysalis|mail|netstorage|srvslspsw001|www\\.staff|uctgwacc|vula)\\.uct\\.ac\\.za/\" to=\"https://$1.uct.ac.za/\"/><rule from=\"^http://(?:www\\.)?hr\\.uct\\.ac\\.za/(favicon\\.ico|images/|scripts/)\" to=\"https://www.uct.ac.za/$1\"/><rule from=\"^http://www\\.mail\\.uct\\.ac\\.za/([^/]*)(?:\\?.*)?$\" to=\"https://mail.uct.ac.za/owa/$1\"/><rule from=\"^http://(?:www\\.)?password\\.uct\\.ac\\.za/\" to=\"https://password.uct.ac.za/\"/><rule from=\"^http://staffonline\\.uct\\.ac\\.za/.*\" to=\"https://srvslspsw002.uct.ac.za:483/staff/signon.html\"/><rule from=\"^http://srvslspsw001\\.uct\\.ac\\.za:483/\" to=\"https://srvslspsw001.uct.ac.za:483/\"/><rule from=\"^http://www\\.vula\\.uct\\.ac\\.za/(?:\\?.*)$\" to=\"https://vula.uct.ac.za/portal\"/></ruleset>", "<ruleset name=\"University of Central Lancashire\" default_off=\"failed ruleset test\" f=\"University_of_Central_Lancashire.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Cincinatti (partial)\" f=\"University_of_Cincinatti.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:intmed|med|researchcompliance)\\.uc\\.edu/(?!App_(?:Master|Themes)/|Libraries/|[sS]itefinity/|WebResource\\.axd)\"/><securecookie host=\"^(?!(?:www\\.)?(?:intmed|med|researchcompliance)\\.).+\\.uc\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uc\\.edu/\" to=\"https://www.uc.edu/\"/><rule from=\"^http://(admissions|(?:www\\.)?(?:health|med|medcenter|pharmacy|researchcompliance)|intmed|ucdirectory)\\.uc\\.edu/\" to=\"https://$1.uc.edu/\"/></ruleset>", "<ruleset name=\"University of Derby (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"University_of_Derby-problematic.xml\"><rule from=\"^http://ask\\.derby\\.ac\\.uk/\" to=\"https://ask.derby.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Derby (partial)\" f=\"University_of_Derby.xml\"><securecookie host=\"^.+\\.derby\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(erecruitment|password|pssprd|students|udo)\\.derby\\.ac\\.uk(:8030)?/\" to=\"https://$1.derby.ac.uk$2/\"/></ruleset>", "<ruleset name=\"University of Erlangen-Nuremberg (partial)\" f=\"University_of_Erlangen-Nuremberg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?(?:blog\\.fau|(?:blogs?|home)\\.uni-erlangen)\\.de/\" to=\"https://blogs.fau.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Georgia (partial)\" platform=\"mixedcontent\" f=\"University_of_Georgia.xml\"><rule from=\"^http://news\\.uga\\.edu/\" to=\"https://news.uga.edu/\"/></ruleset>", "<ruleset name=\"University of Greifswald (partial)\" f=\"University_of_Greifswald.xml\"><securecookie host=\"^ilias\\.uni-greifswald\\.de$\" name=\".+\"/><rule from=\"^http://(ilias|t3cl-hgw\\.rz|typo3cluster\\.rz)\\.uni-greifswald\\.de/\" to=\"https://$1.uni-greifswald.de/\"/></ruleset>", "<ruleset name=\"University of Grenada (partial)\" f=\"University_of_Grenada.xml\"><securecookie host=\"^\\.?cruetic\\.ugr\\.es$\" name=\".+\"/><rule from=\"^http://cruetic\\.ugr\\.es/\" to=\"https://cruetic.ugr.es/\"/></ruleset>", "<ruleset name=\"University of Houston (partial)\" f=\"University_of_Houston.xml\"><securecookie host=\"^.+\\.uh\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uh\\.edu/\" to=\"https://ssl.uh.edu/\"/><rule from=\"^http://(accessuh|fp\\.mh|myuh|(?:forms|mail|mynsm|mynsmstore|nsmit)\\.nsm|www\\.opt|ssl|vnet)\\.uh\\.edu/\" to=\"https://$1.uh.edu/\"/><rule from=\"^http://(?:www\\.)?nsm\\.uh\\.edu/\" to=\"https://nsm.uh.edu/\"/><rule from=\"^http://(?:www\\.)?(bauer|coe|egr|law|tech)\\.uh\\.edu/\" to=\"https://www.$1.uh.edu/\"/></ruleset>", "<ruleset name=\"University of Iowa (partial)\" f=\"University_of_Iowa.xml\"><exclusion pattern=\"^http://its\\.uiowa\\.edu/+(?!favicon\\.ico|files/|sites/)\"/><rule from=\"^http://(its|www\\.dna\\.its|itsecurity|tippie|wiki)\\.uiowa\\.edu/\" to=\"https://$1.uiowa.edu/\"/></ruleset>", "<ruleset name=\"Kent.ac.uk (partial)\" f=\"University_of_Kent.xml\"><securecookie host=\"^\\.kent\\.ac\\.uk$\" name=\"^cadata[\\dA-F]{32}$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cs\\.kent\\.ac\\.uk/\" to=\"https://www.cs.kent.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.ac.uk (partial)\" f=\"University_of_Leeds.xml\"><exclusion pattern=\"^http://business\\.leeds\\.ac\\.uk/+(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\"/><exclusion pattern=\"^http://campus\\.leeds\\.ac\\.uk/(?!$|(?:accessibility-statement|legal)\\.htm)\"/><exclusion pattern=\"^http://(?:www\\.)?chase\\.leeds\\.ac\\.uk/(?!-/|archive/images/)\"/><exclusion pattern=\"^http://(?:www\\.)?see\\.leeds\\.ac\\.uk/+\\?\"/><exclusion pattern=\"^http://ses\\.leeds\\.ac\\.uk/+(?!images/|site/)\"/><securecookie host=\".+\\.leeds\\.ac\\.uk$\" name=\".\"/><rule from=\"^http://((?:digitalis|environment|epocs|pvac)\\.)?leeds\\.ac\\.uk/\" to=\"https://www.$1leeds.ac.uk/\"/><rule from=\"^http://adm\\.leeds\\.ac\\.uk/.*\" to=\"https://www.leeds.ac.uk/\"/><rule from=\"^http://www\\.(business|cipeg|leedsportal|portal|stringeditions)\\.leeds\\.ac\\.uk/\" to=\"https://$1.leeds.ac.uk/\"/><rule from=\"^http://campus\\.leeds\\.ac\\.uk/$\" to=\"https://www.leeds.ac.uk/forstaff/\"/><rule from=\"^http://campus\\.leeds\\.ac\\.uk/accessibility-statement\\.htm\" to=\"https://www.leeds.ac.uk/accessibility/\"/><rule from=\"^http://campus\\.leeds\\.ac\\.uk/legal\\.htm\" to=\"https://www.leeds.ac.uk/terms/\"/><rule from=\"^http://www\\.ee\\.leeds\\.ac\\.uk/[^?]*\" to=\"https://www.engineering.leeds.ac.uk/electronic\"/><rule from=\"^http://helpdesk\\.leeds\\.ac\\.uk/.*\" to=\"https://it.leeds.ac.uk/\"/><rule from=\"^http://(?:www\\.)?see\\.leeds\\.ac\\.uk/+(?=$|\\?)\" to=\"https://www.see.leeds.ac.uk/home/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Leicester (partial)\" f=\"University_of_Leicester.xml\"><securecookie host=\"^physics\\.le\\.ac\\.uk\" name=\".+\"/><rule from=\"^http://(?:www\\.)?le\\.ac\\.uk/\" to=\"https://www.le.ac.uk/\"/><rule from=\"^http://((?:www\\.)?myleicester|s?www2)\\.le\\.ac\\.uk/\" to=\"https://$1.le.ac.uk/\"/><rule from=\"^http://(?:www\\.)?physics\\.le\\.ac\\.uk/\" to=\"https://physics.le.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Louisville (partial)\" f=\"University_of_Louisville.xml\"><securecookie host=\"^.*\\.louisville\\.edu$\" name=\".+\"/><rule from=\"^http://((?:blackboard(?:temp)?|cardmail|emailarchive|exchange|paprod|sharepoint|ulink|www)\\.)?louisville\\.edu/\" to=\"https://$1louisville.edu/\"/><rule from=\"^http://admissions\\.louisville\\.edu/(?:.*)\" to=\"https://louisville.edu/admissions/\"/></ruleset>", "<ruleset name=\"University of Maine (partial)\" f=\"University_of_Maine.xml\"><securecookie host=\"^.+\\.umaine\\.edu$\" name=\".+\"/><rule from=\"^http://((?:mainestreetcs|peportal|plugged-in\\.umext|www)\\.)?umaine\\.edu/\" to=\"https://$1umaine.edu/\"/><rule from=\"^http://(?:www\\.)?(calendar(?:-dev)?|extension|go)\\.umaine\\.edu/\" to=\"https://$1.umaine.edu/\"/><rule from=\"^http://extensionpubs\\.umext\\.maine\\.edu/(?:$|\\?.*)\" to=\"https://epos2-phx.sequoiars.com/ePOS?store=413&form=shared3%2findex.html\"/><rule from=\"^http://extensionpubs\\.umext\\.maine\\.edu/ePOS\" to=\"https://epos2-phx.sequoiars.com/ePOS\"/></ruleset>", "<ruleset name=\"Maine.edu (problematic)\" default_off=\"self-signed\" f=\"University_of_Maine_System-problematic.xml\"><rule from=\"^http://(online|thinkmissionexcellence)\\.maine\\.edu/\" to=\"https://$1.maine.edu/\"/></ruleset>", "<ruleset name=\"Maine.edu (partial)\" f=\"University_of_Maine_System.xml\"><exclusion pattern=\"^http://(?:umsweb2013lb\\.its\\.|www\\.)?maine\\.edu/+(?!favicon\\.ico|peoplesearch(?:$|\\?|/)|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:peportal|think)\\.maine\\.edu$\" name=\".+\"/><rule from=\"^http://maine\\.edu/.*\" to=\"https://www.maine.edu/\"/><rule from=\"^http://umsweb2013lb\\.its\\.maine\\.edu/\" to=\"https://www.maine.edu/\"/><rule from=\"^http://(learn|mainestreet|peportal|staticweb|think|www)\\.maine\\.edu/\" to=\"https://$1.maine.edu/\"/></ruleset>", "<ruleset name=\"University of Mainz (false MCB)\" platform=\"mixedcontent\" f=\"University_of_Mainz-falsemixed.xml\"><rule from=\"^http://www(\\.sfv|\\.sport|\\.zdv)?\\.uni-mainz\\.de/(?!\\w+\\.css|\\w+\\.js|Bilder_(?:allgemein|zentral)/|config/|favicon\\.ico|Illustrationen/|pix/)\" to=\"https://www$1.uni-mainz.de/\"/></ruleset>", "<ruleset name=\"University of Mainz (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"University_of_Mainz-problematic.xml\"><rule from=\"^http://www\\.e-learning\\.uni-mainz\\.de/\" to=\"https://www.e-learning.uni-mainz.de/\"/></ruleset>", "<ruleset name=\"University of Mainz (partial)\" f=\"University_of_Mainz.xml\"><exclusion pattern=\"^http://www(?:\\.sfv|\\.sport|\\.zdv)?\\.uni-mainz\\.de/(?!\\w+\\.css|\\w+\\.js|Bilder_(?:allgemein|zentral)/|config/|favicon\\.ico|Illustrationen/|pix/)\"/><exclusion pattern=\"^http://(?:lokalsystem(?:-test)?|pica[78]1)\\.ub\\.uni-mainz\\.de/(?!cgi-bin/|OPC-IMAGES(?:-NEW)?/)\"/><securecookie host=\"^(?:ilias|opac(?:-test)?\\.ub|pica[78]\\.ub)\\.uni-mainz\\.de$\" name=\".+\"/><rule from=\"^http://(ilias|www\\.(?:pruefungsamt\\.jura|sfv|staff|students)|(?:(?:lokalsystem|opac)(?:-test)?|pica[78]1?)\\.ub|pa\\.wiwi|www|(?:webstats|www|wwwvh)\\.zdv)\\.uni-mainz\\.de/\" to=\"https://$1.uni-mainz.de/\"/></ruleset>", "<ruleset name=\"University of Manchester (partial)\" f=\"University_of_Manchester.xml\"><securecookie host=\"^login\\.manchester\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?manchester\\.ac\\.uk/([\\w-]+\\.(?:jpg|JPG)$|favicon\\.ico|media(?:library)?/)\" to=\"https://www.manchester.ac.uk/$1\"/><rule from=\"^http://(assets|(?:cdt|staffnet|utopia|www)\\.cs|login)\\.manchester\\.ac\\.uk/\" to=\"https://$1.manchester.ac.uk/\"/></ruleset>", "<ruleset name=\"University of North Carolina at Greensboro (partial)\" f=\"University_of_North_Carolina_at_Greensboro.xml\"><securecookie host=\"^(?:baeservices|banweb|blackboard|communityengagement|\\.library|newsandfeatures|provost|web)\\.uncg\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uncg\\.edu/\" to=\"https://www.uncg.edu/\"/><rule from=\"^http://(alumni|baeservices|banweb|blackboard|communityengagement|fsv|giveto|hrl|its|library|newsandfeatures|oedi|online|provost|research|ure|web)\\.uncg\\.edu/\" to=\"https://$1.uncg.edu/\"/><rule from=\"^http://inspirechange\\.uncg\\.edu/(\\?.*)?$\" to=\"https://ure.uncg.edu/features/$1\"/></ruleset>", "<ruleset name=\"University of Notre Dame (partial)\" f=\"University_of_Notre_Dame.xml\"><exclusion pattern=\"^http://riskmgt\\.nd\\.ed/+(?!favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://calendar\\.nd\\.edu/+(?!(?:[\\w.]+/)?themes/)\"/><exclusion pattern=\"^http://(?:www\\.)?gsu\\.nd\\.edu/+(?!assets/|favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://performingarts\\.nd\\.edu/+(?!css/|favicon\\.ico|images/)\"/><exclusion pattern=\"^http://policy\\.nd\\.edu/+(?!assets/|favicon\\.ico)\"/><securecookie host=\"^(?:ame|applymsba|applymsf|apps|EkAnalytics|business|webapp\\.business|cbe|inside-p\\.cc|ceees|cse|www\\.ee|engineering|grc|www\\.irsurvey|law|(?:encore|innopac)?\\.law|least|library|(?:ejl|guides|onesearch|xerxes)\\.library|applymsba|applymsf|was|wireless)\\.nd\\.edu$\" name=\".+\"/><rule from=\"^http://((?:accounts|acms|admissions|africana|al|ame|annualreport2013|applymsba|applymsf|apps|architect|architecture|assyst|auxiliaryoperations|biology|blogs|budget|buildingcommunities|business|webapp\\.business|buy|calendar|campus(?:mail|ministry|safety)|careercenter|cbe|inside-p\\.cc|ccf|ccsp|cee|ceees|cemetery|centerformath|centerforsocialconcerns|centralreceiving|chemistry|classics|commencement|communitystandards|conductor|continuousimprovement|controller|creativecomputing|creekhouse|creo|cse|cslc|csrs?|disabilityservices|diversity|donate|dulac|emergency|endeavor|energy|engineering|english|equity|facultyhandbook|fieldhousemall|finance|financialaid|flowershop|food|fsntserv\\.foodserv|fys|generalservices|globalhealth|gradlife|graduateschool|green|help|homeunderthedome|honorcode|housing|hr|greentree\\.hr|iei|inside|international|investment|irish(?:1card|language|online|studies)|www\\.irsurvey|issa|jobs|kaneb|kellogg|lafortune|(?:encore|innopac)\\.law|learning|least|(?:alephprod|asset|bic|chemistry|discover|ejl|engineering|eresources|factotum|guides|link|m|onesearch|radlab|xerxes)\\.library|listserv|login|magazine|marcomm|marketplace|medieval|msba|msf|msps|nanovic|ndfd|ndsp|news|newsinfo|och|offcampus|oit|oithelp|old2gold|osa|ospir|ott|patentlaw|performingarts|physics|playlikeachampion|policy|politicalscience|postdocs|precollege|preprofessional|president|prism|realestate|recsports|recycling|remix|renovare|research|riskmanagement|riskmgt|sac|sakai|sakailogin|sao|science|search|shakespeare|shop|sniteartmuseum|socialconcerns|sociology|sp|solution|sri|stemeducation|step|stepancenter|strategicplan|studentaccounts|studentaffairs|studentemployment|supporting|surplus|transportation|travel|treasury|trio|ucc?|uhs|utilities|was|webfile|weddingplanner|wellness|wiki|wireless|www3?|youthsports)\\.)?nd\\.edu/\" to=\"https://$1nd.edu/\"/><rule from=\"^http://(?:cancerresearch|harpercancer)\\.nd\\.edu/\" to=\"https://harpercancer.nd.edu/\"/><rule from=\"^http://(?:communityrelations|publicaffairs)\\.nd\\.edu/\" to=\"https://publicaffairs.nd.edu/\"/><rule from=\"^http://(?:www\\.)?(corecurriculum|dante|gsu|latinostudies|law|news|opac|provost|registrar|today)\\.nd\\.edu/\" to=\"https://$1.nd.edu/\"/><rule from=\"^http://(?:www\\.)?ee\\.nd\\.edu/\" to=\"https://www.ee.nd.edu/\"/><rule from=\"^http://(?:enlighten|forum2008)\\.nd\\.edu/\" to=\"https://forum2008.nd.edu/\"/><rule from=\"^http://givingtond\\.nd\\.edu/.*\" to=\"https://supporting.nd.edu/\"/><rule from=\"^http://gmail\\.nd\\.edu/.*\" to=\"https://mail.google.com/a/nd.edu\"/><rule from=\"^http://(www\\.)?(library)\\.nd\\.edu/\" to=\"https://$1$2.nd.edu/\"/><rule from=\"^http://orlh\\.nd\\.edu/\" to=\"https://housing.nd.edu/\"/><rule from=\"^http://www\\.rarebooks\\.nd\\.edu/+(?:$|\\?.*)\" to=\"https://www.library.nd.edu/rarebooks/index.shtml\"/><rule from=\"^http://www\\.undpress\\.nd\\.edu/+(?:$|\\?.*)\" to=\"https://www3.undpress.nd.edu//index.php\"/></ruleset>", "<ruleset name=\"University of Oslo\" f=\"University_of_Oslo.xml\"><rule from=\"^http://((?:(?:www\\.)?(?:apollon|mn|ub)|heim\\.ifi|studweb|www)\\.)?uio\\.no/\" to=\"https://$1uio.no/\"/><rule from=\"^http://(?:www\\.)?ifi\\.uio\\.no/(?=$|\\?.*)\" to=\"https://mn.uio.no/ifi/\"/><rule from=\"^http://(?:www\\.)?ifi\\.uio\\.no/it/(?:$|hjemmeside\\.html$|(\\?.*))\" to=\"https://mn.uio.no/ifi/tjenester/it/$1\"/><rule from=\"^http://(?:www\\.)?matnat\\.uio\\.no/\" to=\"https://www.mn.uio.no/\"/></ruleset>", "<ruleset name=\"University of Passau (partial)\" f=\"University_of_Passau.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:rz\\.)?uni-passau\\.de/(?:$|\\?)\"/><securecookie host=\"^www\\.(?:rz\\.)?uni-passau\\.de$\" name=\"^fe_typo_user$\"/><rule from=\"^http://(?:www\\.)?(rz\\.)?uni-passau\\.de/\" to=\"https://www.$1uni-passau.de/\"/><rule from=\"^http://(blog|uniblog\\.rzblogs)\\.uni-passau\\.de/\" to=\"https://$1.uni-passau.de/\"/><rule from=\"^http://(?:www\\.)?students\\.uni-passau\\.de/(\\?.*)?$\" to=\"https:///www.uni-passau.de/hochschulgruppen.html$1\"/></ruleset>", "<ruleset name=\"University of Pittsburgh (partial)\" f=\"University_of_Pittsburgh.xml\"><securecookie host=\"^(?:(?:www\\.)?(?:cs|my)|web\\.cs)\\.pitt\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:people\\.|web\\.|www\\.)?cs|(?:www\\.)?my|pre|www)\\.)?pitt\\.edu/\" to=\"https://$1pitt.edu/\"/><rule from=\"^http://(?:www\\.)?accounts\\.pitt\\.edu/\" to=\"https://accounts.pitt.edu/\"/></ruleset>", "<ruleset name=\"Uni-Potsdam.de (partial)\" f=\"University_of_Potsdam.xml\"><exclusion pattern=\"^http://www\\.jura\\.uni-potsdam\\.de/+(?!favicon\\.ico|_layout/|_medien/)\"/><securecookie host=\"^(?:www\\.hpi|(?:www\\.)?pep|puls|\\.webmail)\\.uni-potsdam\\.de$\" name=\".+\"/><rule from=\"^http://(hpi\\.)?uni-potsdam\\.de/\" to=\"https://www.$1uni-potsdam.de/\"/><rule from=\"^http://jura\\.uni-potsdam\\.de/\" to=\"https://www.uni-potsdam.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Puerto Rico (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Puerto_Rico.xml\"><securecookie host=\"^(?:www\\.)?laeditorialupr\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.upr\\.edu$\" name=\".+\"/><rule from=\"^http://(www\\.)?laeditorialupr\\.com/\" to=\"https://$1laeditorialupr.com/\"/><rule from=\"^http://(fondodotal|patsiprod)\\.upr\\.edu/\" to=\"https://$1.upr.edu/\"/></ruleset>", "<ruleset name=\"University of Reading\" f=\"University_of_Reading.xml\"><securecookie host=\"^www\\.reading\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reading\\.ac\\.uk/\" to=\"https://www.reading.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Rostock (partial)\" f=\"University_of_Rostock.xml\"><securecookie host=\"^(?:email|lsf|studip|webapp)\\.uni-rostock\\.de$\" name=\".+\"/><rule from=\"^http://(autodiscover|email|lsf|mail|aktivierung\\.rz|passwd\\.rz|pwd\\.rz|studip|webapp)\\.uni-rostock\\.de/\" to=\"https://$1.uni-rostock.de/\"/></ruleset>", "<ruleset name=\"University of Salford (partial)\" f=\"University_of_Salford.xml\"><securecookie host=\"^\\.www\\.salford\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(usir|webhost|www)\\.salford\\.ac\\.uk/\" to=\"https://$1.salford.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Saskatchewan (partial)\" f=\"University_of_Saskatchewan.xml\"><rule from=\"^http://(?:www\\.)?usask\\.ca/\" to=\"https://www.usask.ca/\"/></ruleset>", "<ruleset name=\"University of Sheffield (partial)\" f=\"University_of_Sheffield.xml\"><securecookie host=\"^(?:onlineshop|portal)\\.shef\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://((?:guide\\.dcs|onlineshop|portal|www)\\.)?shef\\.ac\\.uk/\" to=\"https://$1shef.ac.uk/\"/><rule from=\"^http://(www\\.)?sheffield\\.ac\\.uk/\" to=\"https://$1sheffield.ac.uk/\"/><rule from=\"^http://portal\\.sheffield\\.ac\\.uk/\" to=\"https://portal.shef.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Tampa\" f=\"University_of_Tampa.xml\"><securecookie host=\"^.+\\.ut\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ut\\.edu/\" to=\"https://www.ut.edu/\"/><rule from=\"^http://(jobs|sfs|spartanweb)\\.ut\\.edu/\" to=\"https://$1.ut.edu/\"/></ruleset>", "<ruleset name=\"University of Tennessee, Knoxville\" default_off=\"failed ruleset test\" f=\"University_of_Tennessee_Knoxville.xml\"><securecookie host=\"^(?:autodiscover|(?:icl|www)\\.cs|capricorn\\.dii|webapps\\.dii|(?:www\\.)?directory|ds|myutk|oit2|tiny|tmail)\\.utk\\.edu$\" name=\".+\"/><rule from=\"^http://((?:autodiscover|webapps\\.dii|icl\\.eecs|(?:www\\.)?directory|ds|(?:www\\.)?eecs|help|(?:www\\.)?lib|listserv|myutk|online|oit2?|remedy|secure|tiny|tmail|volmail|www)\\.)?utk\\.edu/\" to=\"https://$1utk.edu/\"/></ruleset>", "<ruleset name=\"University of Tennessee System (partial)\" f=\"University_of_Tennessee_System.xml\"><securecookie host=\"^(?:autodiscover|irisweb|my)\\.tennessee\\.edu$\" name=\".+\"/><rule from=\"^http://(andi|autodiscover|irisweb|its|my|security|utap1)\\.tennessee\\.edu/\" to=\"https://$1.tennessee.edu/\"/></ruleset>", "<ruleset name=\"UToronoto.ca (problematic)\" default_off=\"expired, mismatched\" f=\"University_of_Toronto-problematic.xml\"><exclusion pattern=\"^http://map\\.utoronto\\.ca/(?!/?_assets/)\"/><rule from=\"^http://(?:www\\.)?(family|fnh|vpstudentsblog)\\.utoronto\\.ca/\" to=\"https://www.$1.utoronto.ca/\"/><rule from=\"^http://answers\\.library\\.utoronto\\.ca/(?!css\\d*/|data/|js/)\" to=\"https://answers.library.utoronto.ca/\"/><rule from=\"^http://(main\\.library|map|roundcube\\.utsc)\\.utoronto\\.ca/\" to=\"https://$1.utoronto.ca/\"/></ruleset>", "<ruleset name=\"UToronto.ca (partial)\" f=\"University_of_Toronto.xml\"><exclusion pattern=\"^http://(?:www\\.)?utoronto\\.ca/(?!favicon\\.ico|__shared/)\"/><exclusion pattern=\"^http://(?:www\\.)?news\\.utoronto\\.ca/(?!sites/)\"/><exclusion pattern=\"^http://campusroomfinder\\.studentlife\\.utoronto\\.ca/(?![cC]ontent/|Login|[sS]cripts/)\"/><securecookie host=\"^(?!\\.library\\.|campusroomfinder\\.studentlife\\.).+\\.utoronto\\.ca$\" name=\".+\"/><securecookie host=\"^\\.library\\.utoronto\\.ca$\" name=\"^__utm\\w$\"/><rule from=\"^http://((?:2learn|alert|(?:www\\.)?(?:bluebook|careers|cns|events|lamp2?|news|oise|portal|studentlife|ulife|utorid|utsc)|connect|www\\.employers\\.careers|www\\.cs|support\\.icicle|main\\.its|(?:focus|link|login|myaccount|payfines|tspace)\\.library|m\\.lms|cus\\.oise|(?:sws|www)\\.rosi|(?:blogs|campusroomfinder)\\.studentlife|www\\.utm|(?:ctl|intranet|joomla|webapps|webmail)\\.utsc|voting|weblogin|webmail|www)\\.)?utoronto\\.ca/\" to=\"https://$1utoronto.ca/\"/><rule from=\"^http://inbox\\.alumni\\.utoronto\\.ca/(?:.*)\" to=\"https://mail.google.com/a/alumni.utoronto.ca\"/><rule from=\"^http://(?:www\\.)?donate\\.utoronto\\.ca/\" to=\"https://donate.utoronto.ca/\"/><rule from=\"^http://www\\.erin\\.utoronto\\.ca/\" to=\"https://www.utm.utoronto.ca/\"/><rule from=\"^http://(answer|guide)s\\.library\\.utoronto\\.ca/(css\\d*|data|js)/\" to=\"https://lib$1s.com/$2/\"/><rule from=\"^http://(?:www\\.)?sa\\.utoronto\\.ca/\" to=\"https://www.studentlife.utoronto.ca/\"/><rule from=\"^http://utcc\\.utoronto\\.ca/\" to=\"https://cns.utoronto.ca/\"/><rule from=\"^http://squirrelmail\\.utsc\\.utoronto\\.ca/\" to=\"https://webmail.utsc.utoronto.ca/\"/></ruleset>", "<ruleset name=\"University of Tübingen (problematic)\" default_off=\"invalid cert\" f=\"University_of_Tuebingen-problematic.xml\"><rule from=\"^http://www\\.zdv\\.uni-tuebingen\\.de/\" to=\"https://www.zdv.uni-tuebingen.de/\"/></ruleset>", "<ruleset name=\"University of Tübingen (partial)\" f=\"University_of_Tuebingen.xml\"><securecookie host=\"^\\.uni-tuebingen\\.de$\" name=\"^fe_typo_user$\"/><securecookie host=\"^epv-welt\\.uni-tuebingen\\.de$\" name=\".+\"/><rule from=\"^http://(?:zdv\\.|www\\.)?uni-tuebingen\\.de/\" to=\"https://www.uni-tuebingen.de/\"/><rule from=\"^http://(campus\\.verwaltung|epv-welt)\\.uni-tuebingen\\.de/\" to=\"https://$1.uni-tuebingen.de/\"/></ruleset>", "<ruleset name=\"University of Waikato (partial)\" f=\"University_of_Waikato.xml\"><securecookie host=\"^.+\\.waikato\\.ac\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?waikato\\.ac\\.nz/\" to=\"https://www.waikato.ac.nz/\"/><rule from=\"^http://(cookie|tools\\.its|mngt|www\\.mngt)\\.waikato\\.ac\\.nz/\" to=\"https://$1.waikato.ac.nz/\"/><rule from=\"^http://research\\.waikato\\.ac\\.nz/($|\\?)\" to=\"https://www.waikato.ac.nz/research/$1\"/></ruleset>", "<ruleset name=\"University of Warwick (partial)\" f=\"University_of_Warwick.xml\"><exclusion pattern=\"^http://www2\\.warwick\\.ac\\.uk/(?!.+\\.(?:gif|jpg|png)|brands/|static_war/)\"/><securecookie host=\"^(?:idp|onlinepayment)\\.warwick\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://((?:go|idp|onlinepayment|websignon|www2?)\\.)?warwick\\.ac\\.uk/\" to=\"https://$1warwick.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Wisconsin-Madison\" f=\"University_of_Wisconsin-Madison.xml\"><exclusion pattern=\"^http://pages\\.cs\\.wisc\\.edu/+~\"/><rule from=\"^http://((?:condor-wiki|htcondor-wiki|pages|research)\\.cs|discovery|(www\\.)?doit|go|kb|learnuw|(ecs|search)\\.library|login|my|mywebspace|wayf|wiscmail)\\.wisc\\.edu/\" to=\"https://$1.wisc.edu/\"/><rule from=\"^http://(?:www\\.)?(cs|housing|library|math)\\.wisc\\.edu/\" to=\"https://www.$1.wisc.edu/\"/></ruleset>", "<ruleset name=\"University of Wollongong\" f=\"University_of_Wollongong.xml\"><securecookie host=\"^sols\\.uow\\.edu\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of York\" f=\"University_of_York.xml\"><rule from=\"^http://www\\.york\\.ac\\.uk/\" to=\"https://www.york.ac.uk/\"/></ruleset>", "<ruleset name=\"universityadmissions.se\" f=\"Universityadmissions.se.xml\"><securecookie host=\"^www\\.universityadmissions.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?universityadmissions\\.se/\" to=\"https://www.universityadmissions.se/\"/></ruleset>", "<ruleset name=\"Univie.ac.at (partial)\" f=\"Univie.ac.at.xml\"><exclusion pattern=\"^http://blog\\.univie\\.ac\\.at/+(?!backend/|favicon\\.ico)\"/><exclusion pattern=\"^http://data\\.univie\\.ac\\.at/index\\.html\"/><securecookie host=\"^(?:aufnahmeverfahren|www\\.bpc|chemie|cs|ctl|forschungsnewsletter|informatik|international|kalender|medienportal|public|sbterminals|studentpoint|studien(?:service)?-lehrwesen|univis|weblogin|www|zid)\\.univie\\.ac\\.at$\" name=\".+\"/><rule from=\"^http://((?:aufnahmeverfahren|bibliothek|blog|www\\.bpc|cs|ctl|data|forschungsnewsletter|informatik|international|intra|kalender|medienportal|online|public|sbterminals|studentpoint|studien(?:service)?-lehrwesen|www\\.tbi|univis|weblogin|webmail|www|zid)\\.)?univie\\.ac\\.at//\" to=\"https://$1univie.ac.at/\"/></ruleset>", "<ruleset name=\"unix4lyfe.org\" f=\"Unix4lyfe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unixmen.com\" f=\"Unixmen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNIZAR.es\" f=\"Unizar.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unknowncheats.me\" f=\"Unknowncheats.me.xml\"><securecookie host=\"^(?:www)?\\.unknowncheats\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnlimitedHost (partial)\" default_off=\"failed ruleset test\" f=\"UnlimitedHost.xml\"><rule from=\"^http://apollo\\.unlimitedhost\\.asia/\" to=\"https://apollo.unlimitedhost.asia/\"/></ruleset>", "<ruleset name=\"Unlimited 401k.com (false MCB)\" platform=\"mixedcontent\" f=\"Unlimited_401k.com.xml\"><securecookie host=\"^\\.unlimited401k\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unmitigated Risk.com\" f=\"Unmitigated_Risk.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uno.im\" f=\"Uno.im.xml\"><securecookie host=\"^\\.(?:pbx\\.|www\\.)?uno\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnoEuro.com (partial)\" f=\"UnoEuro.com.xml\"><securecookie host=\"^\\.unoeuro\\.com$\" name=\".+\"/><rule from=\"^http://((?:de|en|lu|no|static|sv|www)\\.)?unoeuro\\.com/\" to=\"https://$1unoeuro.com/\"/></ruleset>", "<ruleset name=\"unop.uk\" f=\"Unop.uk.xml\"><securecookie host=\"^\\.unop\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnrealIRCD.org\" f=\"UnrealIRCD.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unreal Engine.com\" f=\"Unreal_Engine.xml\"><securecookie host=\"^(?:(?:answers|forums|wiki|www)\\.)?unrealengine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unreality TV\" default_off=\"connection refused\" f=\"Unreality_TV.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unrestrict.li\" f=\"Unrestrict.li.xml\"><securecookie host=\"^\\.unr(?:estrict)?\\.li$\" name=\".+\"/><rule from=\"^http://(www\\.)?unr(estrict)?\\.li/\" to=\"https://$1unr$2.li/\"/></ruleset>", "<ruleset name=\"Unsearcher.org\" default_off=\"mismatched\" f=\"Unsearcher.org.xml\"><securecookie host=\"^unsearcher\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unsearcher\\.org/\" to=\"https://unsearcher.org/\"/></ruleset>", "<ruleset name=\"Unseen.is (partial)\" f=\"Unseen.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untangle.com (partial)\" f=\"Untangle.com.xml\"><securecookie host=\"^\\.\" name=\"^ubvt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untappd.com (partial)\" f=\"Untappd.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untergeschoss.ch\" f=\"Untergeschoss.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unthem\" f=\"Unthem.xml\"><rule from=\"^http://api\\.unthem\\.com/\" to=\"https://api.unthem.com/\"/></ruleset>", "<ruleset name=\"Unvanquished.net\" default_off=\"self-signed\" f=\"Unvanquished.net.xml\"><securecookie host=\"^\\.unvanquished\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unvanquished\\.net/\" to=\"https://unvanquished.net/\"/><rule from=\"^http://forum\\.unvanquished\\.net/\" to=\"https://unvanquished.net/forum/\"/></ruleset>", "<ruleset name=\"Unwanted Witness.or.ug\" f=\"Unwanted_Witness.or.ug.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unwire\" f=\"Unwire.xml\"><securecookie host=\"^portal\\.unwire\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UofLPhysicians.com\" f=\"UofLPhysicians.com.xml\"><securecookie host=\"^www\\.uoflphysicians\\.com$\" name=\".+\"/><rule from=\"^http://uoflphysicians\\.com/\" to=\"https://www.uoflphysicians.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Michigan Health - uofmhealth.org (partial)\" f=\"UofMHealth.org.xml\"><securecookie host=\"^(www)?\\.uofmhealth\\.org$\" name=\".+\"/><rule from=\"^http://uofmhealth\\.org/\" to=\"https://www.uofmhealth.org/\"/><rule from=\"^http://myuofmhealth\\.org/\" to=\"https://www.myuofmhealth.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"up0.net\" f=\"Up0.net.xml\"><rule from=\"^http://up0\\.net/\" to=\"https://www.up0.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Up1.ca\" f=\"Up1.ca.xml\"><securecookie host=\"^\\.up1\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"upSploit.com\" default_off=\"connection reset\" f=\"UpSploit.com.xml\"><securecookie host=\"^\\.upsploit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UpToLike.com\" f=\"UpToLike.com.xml\"><securecookie host=\"^(?:\\.w\\.|www\\.)?uptolike\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upaiyun.com\" f=\"Upaiyun.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upay\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Upay.co.uk.xml\"><rule from=\"^http://(?:www\\.)?upay\\.co\\.uk/\" to=\"https://www.upay.co.uk/\"/><rule from=\"^http://(?:www\\.)?upaymobile\\.co\\.uk/\" to=\"https://www.upaymobile.co.uk/\"/></ruleset>", "<ruleset name=\"Upcase.com\" f=\"Upcase.com.xml\"><securecookie host=\"^upcase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Update Framework.com\" f=\"Update_Framework.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upgraded Self.com\" f=\"Upgraded_Self.com.xml\"><securecookie host=\"^www\\.upgradedself\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?upgradedself\\.com/\" to=\"https://www.upgradedself.com/\"/></ruleset>", "<ruleset name=\"upic.me (partial)\" f=\"Upic.me.xml\"><exclusion pattern=\"^http://upic\\.me/+(?!count/|favicon\\.ico|i/|images/|js/|jsgzip/|skins/|t/|tw/i/)\"/><securecookie host=\"^\\.upic\\.me$\" name=\"^__utm\\w\"/><rule from=\"^http://(?:th\\.|(www\\.))?upic\\.me/\" to=\"https://$1upic.me/\"/></ruleset>", "<ruleset name=\"upickem.net (partial)\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"Upickem.net.xml\"><securecookie host=\"^.*\\.upickem\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uplay.ubi.com\" default_off=\"failed ruleset test\" f=\"Uplay.ubi.com.xml\"><rule from=\"^http://(?:www\\.)?uplay\\.ubi\\.com/\" to=\"https://www.uplay.ubi.com/\"/></ruleset>", "<ruleset name=\"Uplink Labs.net\" f=\"Uplink_Labs.net.xml\"><rule from=\"^http://uplinklabs\\.net/\" to=\"https://www.uplinklabs.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UploadHero.co (partial)\" default_off=\"expired\" f=\"UploadHero.co.xml\"><rule from=\"^http://s\\.uploadhero\\.com?/\" to=\"https://s.uploadhero.com/\"/></ruleset>", "<ruleset name=\"uploaded.net (partial)\" f=\"Uploaded.net.xml\"><securecookie host=\"^uploaded\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uploading.com (partial)\" default_off=\"failed ruleset test\" f=\"Uploading.com.xml\"><securecookie host=\"^\\.uploading\\.com$\" name=\".+\"/><rule from=\"^http://(?:(api\\.)|www\\.)?uploading\\.com/\" to=\"https://$1uploading.com/\"/></ruleset>", "<ruleset name=\"UppSite.com\" default_off=\"default page\" f=\"UppSite.xml\"><securecookie host=\"^(?:www\\.)?uppsite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upplandsvasby.se\" f=\"Upplandsvasby.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uppsalahem.se\" f=\"Uppsalahem.se.xml\"><rule from=\"^http://uppsalahem\\.se/\" to=\"https://www.uppsalahem.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UpsideOut.com (partial)\" f=\"UpsideOut.com.xml\"><rule from=\"^http://tally\\.upsideout\\.com/\" to=\"https://tally.upsideout.com/\"/></ruleset>", "<ruleset name=\"upsilon.cc\" f=\"Upsilon.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upstart\" f=\"Upstart.xml\"><securecookie host=\"^(?:www)?\\.upstart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?upstart\\.com/\" to=\"https://www.upstart.com/\"/></ruleset>", "<ruleset name=\"Uptilo\" f=\"Uptilo.xml\"><securecookie host=\"^(?:.*\\.)?uptilo\\.com$\" name=\".+\"/><rule from=\"^http://(esm\\.|www\\.)?uptilo\\.com/\" to=\"https://$1uptilo.com/\"/><rule from=\"^http://assets\\.uptilo\\.com/\" to=\"https://d3rvd86gsdneth.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Upton Home Hardware\" default_off=\"expired, self-signed\" f=\"Upton-Home-Hardware.xml\"><rule from=\"^http://(?:www\\.)?uptonhomehardware\\.co\\.uk/\" to=\"https://uptonhomehardware.co.uk/\"/></ruleset>", "<ruleset name=\"Upvoted.com\" f=\"Upvoted.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upworthy.com (partial)\" f=\"Upworthy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"upx69.com\" f=\"Upx69.com.xml\"><securecookie host=\"^(?:w*\\.)?upx69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"upxth.com (false MCB)\" default_off=\"expired, mismatched, self-signed\" platform=\"mixedcontent\" f=\"Upxth.com.xml\"><securecookie host=\"^(?:www)?\\.upxth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?upxth\\.com/\" to=\"https://www.upxth.com/\"/></ruleset>", "<ruleset name=\"Urban Dictionary.com\" f=\"Urban-Dictionary.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:origin\\.)?urbandictionary\\.com/\" to=\"https://www.urbandictionary.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UrbanTerror.info (partial)\" platform=\"mixedcontent\" f=\"UrbanTerror.info.xml\"><rule from=\"^http://(?:www\\.)?urbanterror\\.info/((?:cache|css|files|images|members/register)/|downloads/.+\\.zip\\?key=[\\da-f]+)\" to=\"https://www.urbanterror.info/$1\"/></ruleset>", "<ruleset name=\"Urban Villa.nl\" f=\"Urban_Villa.nl.xml\"><securecookie host=\"^\\.urbanvilla\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Urbanartcloud\" f=\"Urbanartcloud.com.xml\"><rule from=\"^http://(www\\.)?urbanartcloud\\.com/\" to=\"https://urbanartcloud.com/\"/></ruleset>", "<ruleset name=\"URL2PNG\" f=\"Url2Png.xml\"><rule from=\"^http://url2png\\.com/\" to=\"https://www.url2png.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"urlQuery\" f=\"UrlQuery.xml\"><securecookie host=\"^urlquery\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?urlquery\\.net/\" to=\"https://urlquery.net/\"/></ruleset>", "<ruleset name=\"UrlTrends\" f=\"UrlTrends.xml\"><securecookie host=\"^(?:www\\.)?urltrends\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Urospace (partial)\" default_off=\"failed ruleset test\" f=\"Urospace.xml\"><securecookie host=\"^prima\\.urospace\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?urospace\\.de/\" to=\"https://urospace.de/\"/><rule from=\"^http://prima\\.urospace\\.net:2083/\" to=\"https://prima.urospace.net:2083/\"/></ruleset>", "<ruleset name=\"US-Cert.gov\" f=\"Us-cert.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Cyber Challenge\" default_off=\"Bad Cert\" f=\"Us_Cyber_Challenge.xml\"><rule from=\"^http://(?:www\\.)?uscyberchallenge\\.org/\" to=\"https://www.uscyberchallenge.org/\"/></ruleset>", "<ruleset name=\"Us Magazine.com (partial)\" f=\"Us_Magazine.com.xml\"><exclusion pattern=\"^http://(?:assets-s3|www)\\.usmagazine\\.com/+(?!css/|favicon\\.ico|images/|uploads/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Weekly subscriptions.com\" f=\"Us_Weekly_subscriptions.com.xml\"><securecookie host=\"^www\\.usweeklysubscriptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?usweeklysubscriptions\\.com/\" to=\"https://www.usweeklysubscriptions.com/\"/></ruleset>", "<ruleset name=\"Usablenet.com\" f=\"Usablenet.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Use-Enco.com\" default_off=\"failed ruleset test\" f=\"Use-Enco.com.xml\"><securecookie host=\"^(?:www)?\\.use-enco\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?use-enco\\.com/\" to=\"https://www.use-enco.com/\"/></ruleset>", "<ruleset name=\"useCryptos.com\" f=\"UseCryptos.com.xml\"><securecookie host=\"^\\.usecryptos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UseResponse.com (false MCB)\" platform=\"mixedcontent\" f=\"UseResponse.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.useresponse\\.com$\" name=\".+\"/><rule from=\"^http://www\\.useresponse\\.com/\" to=\"https://www.useresponse.com/\"/></ruleset>", "<ruleset name=\"UseResponse.com (partial)\" f=\"UseResponse.com.xml\"><exclusion pattern=\"^http://www\\.useresponse\\.com/+(?!favicon\\.ico|public/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Use SSH 001.com\" f=\"Use_SSH_001.com.xml\"><securecookie host=\"^www\\.usessh001\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenet-Crawler.com\" f=\"Usenet-Crawler.com.xml\"><securecookie host=\"^www\\.usenet-crawler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenet Junction\" f=\"Usenet-Junction.xml\"><securecookie host=\"^(?:www\\.)?usenetjunction\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenet.nl (partial)\" f=\"Usenet.nl.xml\"><rule from=\"^http://(?:www\\.)?usenet\\.nl/\" to=\"https://www.usenet.nl/\"/><rule from=\"^http://en\\.usenet\\.nl/+register-now/*(?:$|\\?.*)\" to=\"https://en.usenet.nl/registration/\"/><rule from=\"^http://de\\.usenet\\.nl/+jetzt-anmelden/*(?:$|\\?.*)\" to=\"https://de.usenet.nl/anmeldung/\"/><rule from=\"^http://es\\.usenet\\.nl/+registrese-ahora/*(?:$|\\?.*)\" to=\"https://es.usenet.nl/registro/\"/><rule from=\"^http://fr\\.usenet\\.nl/+inscription-maintenant/*(?:$|\\?.*)\" to=\"https://fr.usenet.nl/inscription/\"/><rule from=\"^http://it\\.usenet\\.nl/+registratevi-ora/*(?:$|\\?.*)\" to=\"https://it.usenet.nl/registrazione/\"/><rule from=\"^http://nl\\.usenet\\.nl/+nu-aanmelden/*(?:$|\\?.*)\" to=\"https://nl.usenet.nl/aanmelding/\"/><rule from=\"^http://(\\w\\w)\\.usenet\\.nl/(?=(?:aanmelding|anmeldung|inscription|registration|registrazione|registro)(?:$|[?/])|(?:assistenza/modulo-di-assistenza|service/formulaire-assistance|service/support-form|service/support-formular|service/support-formulier|servicio/formulario-de-soporte)/*(?:$|\\?)|UNF/|unf/)\" to=\"https://$1.usenet.nl/\"/></ruleset>", "<ruleset name=\"UsenetServer\" f=\"UsenetServer.xml\"><securecookie host=\"^.*\\.usenetserver\\.com$\" name=\".*\"/><rule from=\"^http://((?:accounts|globalsearch|www)\\.)?usenetserver\\.com/\" to=\"https://$1usenetserver.com/\"/></ruleset>", "<ruleset name=\"User-agents.org\" default_off=\"self-signed\" f=\"User-agents.org.xml\"><rule from=\"^http://(?:www\\.)?user-agents\\.org/\" to=\"https://www.user-agents.org/\"/></ruleset>", "<ruleset name=\"UserEcho.com\" f=\"UserEcho.xml\"><securecookie host=\"^(?:blog\\.|feedback\\.|www\\.)?userecho\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserScape\" f=\"UserScape.xml\"><securecookie host=\"^\\.userscape\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserScripts.org\" default_off=\"failed ruleset test\" f=\"UserScripts.xml\"><exclusion pattern=\"^http://(?:www\\.)?userscripts\\.org/scripts/source/\"/><rule from=\"^http://www\\.userscripts\\.org/\" to=\"https://userscripts.org/\"/><rule from=\"^http://userscripts\\.org/\" to=\"https://userscripts.org/\"/></ruleset>", "<ruleset name=\"User Local (partial)\" f=\"User_Local.xml\"><securecookie host=\"^\\.nakanohito\\.jp$\" name=\"^AP$\"/><rule from=\"^http://(b)?s\\.nakanohito\\.jp/\" to=\"https://$1s.nakanohito.jp/\"/><rule from=\"^http://b0\\d\\.nakanohito\\.jp/\" to=\"https://bs.nakanohito.jp/\"/></ruleset>", "<ruleset name=\"userfox\" default_off=\"failed ruleset test\" f=\"Userfox.xml\"><securecookie host=\"^app\\.userfox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?userfox\\.com/\" to=\"https://www.userfox.com/\"/><rule from=\"^http://(app|manage)\\.userfox\\.com/\" to=\"https://$1.userfox.com/\"/><rule from=\"^http://static\\.userfox\\.com/\" to=\"https://d2y71mjhnajxcg.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Userium.com\" f=\"Userium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Userlike.com\" f=\"Userlike.com.xml\"><securecookie host=\"^(?:www\\.)?userlike\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Userreport.com\" f=\"Userreport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"userscontent.net\" f=\"Userscontent.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usersnap.com\" f=\"Usersnap.com.xml\"><securecookie host=\"^api\\.usersnap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uservoice clients\" default_off=\"mismatched\" f=\"Uservoice-clients.xml\"><exclusion pattern=\"^http://ideas\\.joomla\\.org/track\\.gif\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uservoice (partial)\" f=\"Uservoice.xml\"><exclusion pattern=\"^http://(?:blog|email|developer)\\.uservoice\\.com\"/><securecookie host=\"^.*\\.uservoice\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uservoice\\.com/images/\" to=\"https://cdn.uservoice.com/images/\"/><rule from=\"^http://(?!www\\.)(\\w+)\\.uservoice\\.com/\" to=\"https://$1.uservoice.com/\"/></ruleset>", "<ruleset name=\"usesthis.com\" f=\"Usesthis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ushahidi.com (partial)\" f=\"Ushahidi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ushmm.org\" default_off=\"403\" f=\"Ushmm.org.xml\"><securecookie host=\"^ushmm\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ushmm\\.org/\" to=\"https://ushmm.org/\"/></ruleset>", "<ruleset name=\"uslaw.link\" f=\"Uslaw.link.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usmile.at\" default_off=\"needs clearnet testing\" f=\"Usmile.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UsplusU.com\" default_off=\"mismatched\" f=\"UsplusU.com.xml\"><securecookie host=\"^\\.(?:www\\.)?usplusu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UsrJoy\" f=\"UsrJoy.xml\"><securecookie host=\"^(?:.+\\.)?usrjoy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?usrjoy\\.com/\" to=\"https://www.usrjoy.com/\"/></ruleset>", "<ruleset name=\"Ustatik.com\" f=\"Ustatik.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ustream.tv (mismatches)\" default_off=\"mismatch\" f=\"Ustream-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ustream.tv (buggy)\" default_off=\"breaks video\" f=\"Ustream.xml\"><exclusion pattern=\"^http://www\\.ustream\\.tv/(?!blog/wp-content/|embed/|en_US/|platform/)\"/><rule from=\"^http://support\\.ustream\\.tv/+(?=$|\\?)\" to=\"https://ustream.zendesk.com/home\"/><rule from=\"^http://support\\.ustream\\.tv/+\" to=\"https://ustream.zendesk.com/\"/><rule from=\"^http://static-cdn(1|2)\\.ustream\\.tv/\" to=\"https://secure-static-cdn$1.ustream.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utah Education Network (partial)\" default_off=\"failed ruleset test\" f=\"Utah-Education-Network.xml\"><securecookie host=\"^online\\.uen\\.org$\" name=\".*\"/><rule from=\"^http://uen\\.org/\" to=\"https://www.eun.org/\"/><rule from=\"^http://(?:www\\.)?uen\\.org/(css|images)/\" to=\"https://www.uen.org/$2/\"/><rule from=\"^http://online\\.uen\\.org/\" to=\"https://online.uen.org/\"/></ruleset>", "<ruleset name=\"utfs.org (partial)\" platform=\"cacert\" f=\"Utfs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utica College\" f=\"Utica.xml\"><rule from=\"^http://(?:www\\.)?utica\\.edu/\" to=\"https://utica.edu/\"/></ruleset>", "<ruleset name=\"Utopia-Web (partial)\" default_off=\"failed ruleset test\" f=\"Utopia-Web.xml\"><securecookie host=\"^secure\\.utopia-web\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.utopia-web\\.com/\" to=\"https://secure.utopia-web.com/\"/></ruleset>", "<ruleset name=\"Utopia.ai\" default_off=\"connection dropped\" f=\"Utopia.xml\"><securecookie host=\"^\\.utopia\\.ai$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utopia net.org\" f=\"Utopia_net.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UvA.nl (partial)\" f=\"UvA.nl.xml\"><rule from=\"^http://(?:www\\.)?uva\\.nl/\" to=\"https://www.uva.nl/\"/><rule from=\"^http://ray\\.ic\\.uva\\.nl/\" to=\"https://id.uva.nl/\"/><rule from=\"^http://staff\\.science\\.uva\\.nl/+(?:$|\\?.*)\" to=\"https://staff.fnwi.uva.nl/\"/><rule from=\"^http://(?:www\\.)?student\\.uva\\.nl/\" to=\"https://student.uva.nl/\"/><rule from=\"^http://email\\.student\\.uva\\.nl/.*\" to=\"https://mail.google.com/a/student.uva.nl\"/><rule from=\"^http://(blackboard|extranet|staff\\.fnwi|id|medewerker|mijn|mytimetable|rooster|staff\\.science|secure|m\\.sis|(?:www\\.)?staff|static|student|d(?:atabases|iensten)\\.uba)\\.uva\\.nl/\" to=\"https://$1.uva.nl/\"/></ruleset>", "<ruleset name=\"UvCDN.com\" f=\"UvCDN.com.xml\"><securecookie host=\"^\\.uvcdn\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://assets(\\d)\\.uvcdn\\.com/\" to=\"https://assets$1.uvcdn.com/\"/></ruleset>", "<ruleset name=\"v-identity.com\" f=\"V-identity.com.xml\"><rule from=\"^http://(?:www\\.)?v-identity\\.com/\" to=\"https://www.v-identity.com/\"/><rule from=\"^http://cdn\\.v-identity\\.com/\" to=\"https://cdn.v-identity.com/\"/></ruleset>", "<ruleset name=\"V2 Cigs (partial)\" f=\"V2-Cigs.xml\"><securecookie host=\"^money\\.v2cigs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?v2cigs\\.com/$\" to=\"https://www.v2cigs.com/index.php\"/><rule from=\"^http://(?:www\\.)?v2cigs\\.com/(addons/|javascript/|lib/|prefetcher/|(?:(?:account|cart|giftcertificates|index|login)\\.php|security\\.html)(?:$|\\?)|templates/)\" to=\"https://www.v2cigs.com/$1\"/><rule from=\"^http://(money|whoson-gw)\\.v2cigs\\.com/\" to=\"https://$1.v2cigs.com/\"/></ruleset>", "<ruleset name=\"v2ex.co\" f=\"V2ex.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"v2ex.com (partial)\" f=\"V2ex.xml\"><securecookie host=\"^(?:workspace\\.|www\\.)?v2ex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"V3.co.uk (partial)\" f=\"V3.co.uk.xml\"><rule from=\"^http://(?:www\\.)?v3\\.co\\.uk/(images/loading\\.gif|IMG/)\" to=\"https://incmai.incisivemedia.com/$1\"/></ruleset>", "<ruleset name=\"V6ak.com\" f=\"V6ak.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VARCentral.com.au (partial)\" f=\"VARCentral.com.au.xml\"><rule from=\"^http://origin\\.varcentral\\.com\\.au/\" to=\"https://origin.varcentral.com.au/\"/></ruleset>", "<ruleset name=\"VA Loan Captain\" f=\"VA_Loan_Captain.xml\"><securecookie host=\"^\\.(?:www\\.)?valoancaptain\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VBG.de\" f=\"VBG.de.xml\"><securecookie host=\"^www\\.vbg\\.de$\" name=\".+\"/><rule from=\"^http://vbg\\.de/\" to=\"https://www.vbg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vBSEO (partial)\" f=\"VBSEO.xml\"><exclusion pattern=\"^http://(?:www\\.)?vbseo\\.com/(?!clientscript/|(?:cron|css|image)\\.php|images/|(?:imag|styl)es_homepage/|register(?:$|\\?|/))\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?vbseo\\.com/\" to=\"https://$1vbseo.com/\"/></ruleset>", "<ruleset name=\"VB static.co\" f=\"VB_static.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vBulletin\" f=\"VBulletin.xml\"><securecookie host=\"^(?:.*\\.)?vbulletin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VC-Server\" f=\"VC-Server.xml\"><securecookie host=\"^(?:(?:www|vpsmanager)\\.)?vc-server\\.de$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?vc-kundencenter\\.de$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?vc-kundenservice\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VCAB.com (partial)\" f=\"VCAB.com.xml\"><rule from=\"^http://secure\\.vcab\\.com/\" to=\"https://secure.vcab.com/\"/></ruleset>", "<ruleset name=\"VCD.org\" f=\"VCD.org.xml\"><securecookie host=\"^www\\.vcd\\.org$\" name=\".+\"/><securecookie host=\"^mobilitaet2050\\.vcd\\.org\" name=\".+\"/><rule from=\"^https?://www\\.60plus\\.vcd\\.org/\" to=\"https://60plus.vcd.org/\"/><rule from=\"^https?://www\\.lastenrad\\.vcd\\.org/\" to=\"https://lastenrad.vcd.org/\"/><rule from=\"^https?://www\\.mobilitaet2050\\.vcd\\.org/\" to=\"https://mobilitaet2050.vcd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VCE.com (partial)\" f=\"VCE.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?vce\\.com/(?!asset/|campaigns/|favicon\\.ico|login(?:$|\\?|/)|(?:[sS]cript|[wW]eb)[rR]esource\\.axd|[wW]eb[mM]ethods\\.aspx)\"/><rule from=\"^http://(static\\.|www\\.)?vce\\.com/\" to=\"https://$1vce.com/\"/><rule from=\"^http://support\\.vce\\.com/\" to=\"https://vce.secure.force.com/\"/></ruleset>", "<ruleset name=\"VDI-Wissensforum.de\" f=\"VDI-Wissensforum.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VDQ Bulbs.com\" f=\"VDQ_Bulbs.com.au.xml\"><securecookie host=\"^(?:w*\\.)?vdqbulbs\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VDV.de (partial)\" f=\"VDV.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://vdv\\.de/\" to=\"https://www.vdv.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VDownloader\" f=\"VDownloader.xml\"><securecookie host=\"^\\.?vdownloader\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?vdownloader\\.(?:com|es)/\" to=\"https://$1vdownloader.com/\"/></ruleset>", "<ruleset name=\"VEGAS INC\" default_off=\"expired, mismatched, self-signed\" f=\"VEGAS_INC.xml\"><rule from=\"^http://(?:www\\.)?vegasinc\\.com/\" to=\"https://www.vegasinc.com/\"/><rule from=\"^http://(?:asset|media|photo)\\.vegasinc\\.com/\" to=\"https://asset.vegasinc.com/\"/></ruleset>", "<ruleset name=\"VEVO\" f=\"VEVO.xml\"><rule from=\"^http://(?:www\\.)?vevo\\.com/\" to=\"https://www.vevo.com/\"/><rule from=\"^http://(?:img\\.|s)?cache\\.vevo\\.com/\" to=\"https://scache.vevo.com/\"/></ruleset>", "<ruleset name=\"VFEmail.net\" f=\"VFEmail.net.xml\"><securecookie host=\"^(?:\\.|\\.www\\.)?vfemail\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VG WORT.de\" f=\"VG-WORT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://vg\\d\\d\\.met\\.vgwort\\.de/\" to=\"https://ssl-vg03.met.vgwort.de/\"/><rule from=\"^http://((?:ssl-vg\\d\\d\\.met|schulbuchportal|tom|www)\\.)?vgwort\\.de/\" to=\"https://$1vgwort.de/\"/></ruleset>", "<ruleset name=\"VG.no\" f=\"VG.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VGO Com.com (partial)\" f=\"VGO_Com.com.xml\"><securecookie host=\"^controlpanel\\.vgocom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VHL Central\" f=\"VHLCentral.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VIAF.org\" f=\"VIAF.org.xml\"><rule from=\"^http://www\\.viaf\\.org/\" to=\"https://viaf.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VIPserv.org\" f=\"VIPserv.org.xml\"><rule from=\"^http://((?:webmail|www)\\.)?vipserv\\.org/\" to=\"https://$1vipserv.org/\"/><rule from=\"^http://x14\\.eu/\" to=\"https://vipserv.org/\"/></ruleset>", "<ruleset name=\"VIRURL\" default_off=\"failed ruleset test\" f=\"VIRURL.xml\"><securecookie host=\"^spn\\.sr$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?virurl\\.com$\" name=\".+\"/><rule from=\"^http://spn\\.sr/\" to=\"https://spn.sr/\"/><rule from=\"^http://(www\\.)?virurl\\.com/\" to=\"https://$1virurl.com/\"/></ruleset>", "<ruleset name=\"VK (partial, old)\" default_off=\"possibly superseded\" f=\"VK-old.xml\"><securecookie host=\"^.*\\.vk\\.com$\" name=\".*\"/><rule from=\"^http://p(p|s)\\.userapi\\.com/\" to=\"https://p$1.userapi.com/\"/><rule from=\"^http://st0\\.userapi\\.com/\" to=\"https://vk.com/\"/><rule from=\"^http://(?:www\\.)?userapi\\.com/\" to=\"https://vk.com/\"/><rule from=\"^http://((?:login|m|www)\\.)?vk\\.com/\" to=\"https://$1vk.com/\"/><rule from=\"^http://(www\\.)?vkontakte\\.ru/\" to=\"https://$1vkontakte.ru/\"/></ruleset>", "<ruleset name=\"VK.me\" default_off=\"mismatched\" f=\"VK.me.xml\"><exclusion pattern=\"^http://cs\\w*\\.vk.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VK.se (partial)\" f=\"VK.se.xml\"><securecookie host=\"^etidning\\.vk\\.se$\" name=\".+\"/><rule from=\"^http://etidning\\.vk\\.se/\" to=\"https://etidning.vk.se/\"/><rule from=\"^http://sifomedia\\.vk\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"VK.com\" f=\"VK.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VKontakte.ru\" f=\"VKontakte.ru.xml\"><rule from=\"^http://(www\\.)?vkontakte\\.ru/\" to=\"https://$1vk.com/\"/></ruleset>", "<ruleset name=\"VMware.com (partial)\" f=\"VMware.xml\"><exclusion pattern=\"^http://(?:forum|info|ir|kb|nlblogs|partnerlocator|vcloud)\\.vmware\\.com/\"/><exclusion pattern=\"^http://store\\.vmware\\.com/(?!DRHM/Storefront/Site/|favicon\\.ico|promo/)\"/><securecookie host=\"^(?!store\\.)(?:.*\\.)?vmware\\.com$\" name=\".+\"/><rule from=\"^http://vmware\\.com/+\" to=\"https://www.vmware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VMware Blogs.com\" f=\"VMware_Blogs.com.xml\"><securecookie host=\"^www\\.vmwareblogs\\.com$\" name=\".+\"/><rule from=\"^http://vmwareblogs\\.com/+\" to=\"https://www.vmwareblogs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VOICE Daily Deals.com\" f=\"VOICE-Daily-Deals.xml\"><securecookie host=\".*\\.voicedailydeals\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPAC.org\" f=\"VPAC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN-Service.us\" f=\"VPN-Service.us.xml\"><securecookie host=\"^\\.vpn-service\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN4ALL\" f=\"VPN4ALL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNCompare.co.uk\" f=\"VPNCompare.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNGlobe.com\" f=\"VPNGlobe.com.xml\"><securecookie host=\"^(?:my)?\\.vpnglobe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNReactor.com\" f=\"VPNReactor.xml\"><securecookie host=\"^(?:.*\\.)?vpnreactor\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNSearch.net\" default_off=\"failed ruleset test\" f=\"VPNSearch.net.xml\"><securecookie host=\"^(?:w*\\.)?vpnsearch\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vpnsearch\\.net/\" to=\"https://vpnsearch.net/\"/></ruleset>", "<ruleset name=\"VPNSecure.me\" f=\"VPNSecure.me.xml\"><securecookie host=\"^(?:\\.|www\\.)?vpnsecure\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNService.ru\" default_off=\"failed ruleset test\" f=\"VPNService.ru.xml\"><securecookie host=\"^\\.vpnservice\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN Critic.com\" f=\"VPN_Critic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN Reviewer.com\" f=\"VPN_Reviewer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPS.net (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"VPS.net-problematic.xml\"><securecookie host=\"^(?:www\\.)?vps\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPS.net (partial)\" f=\"VPS.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VR.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"VR.se.xml\"><rule from=\"^http://www\\.vr\\.se/\" to=\"https://www.vr.se/\"/><rule from=\"^http://vr\\.se/\" to=\"https://www.vr.se/\"/></ruleset>", "<ruleset name=\"VSCo.co\" f=\"VSCo.co.xml\"><securecookie host=\"^vsco\\.co$\" name=\".+\"/><rule from=\"^http://(www\\.)?vsco\\.co/\" to=\"https://$1vsco.co/\"/><rule from=\"^http://static\\d\\.vsco\\.co/\" to=\"https://d1484tg77u0d9i.cloudfront.net/\"/></ruleset>", "<ruleset name=\"VSIP Program.com\" f=\"VSIP_Program.com.xml\"><securecookie host=\"^vsipprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTB.com\" default_off=\"mismatched\" f=\"VTB.com.xml\"><securecookie host=\"(?:.*\\.)?vtb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTB Russia.ru\" default_off=\"mismatched\" f=\"VTB_Russia.ru.xml\"><securecookie host=\"^\\.vtbrussia\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTCSec.ru\" f=\"VTCSec.ru.xml\"><rule from=\"^http://(?:www\\.)?vtcsec\\.ru/\" to=\"https://vtcsec.ru/\"/></ruleset>", "<ruleset name=\"VTEC Direct.com\" default_off=\"expired, missing certificate chain\" platform=\"mixedcontent\" f=\"VTEC-Direct.xml\"><securecookie host=\"^\\.vtecdirect\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTLUUG.org\" f=\"VTLUUG.org.xml\"><rule from=\"^http://(?:(milton\\.)|www\\.)?vtluug\\.org/\" to=\"https://$1vtluug.org/\"/></ruleset>", "<ruleset name=\"VTech.com\" f=\"VTech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTunnel\" f=\"VTunnel.xml\"><securecookie host=\"^(?:.*\\.)?vtunnel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VU.nl (partial)\" f=\"VU.nl.xml\"><securecookie host=\"^www\\.(?:cs|few)\\.vu\\.nl$\" name=\".+\"/><rule from=\"^http://(www\\.)?vu\\.nl/+(?=\\w\\w/css/|\\w\\w/[Ii]mages/)\" to=\"https://$1vu.nl/\"/><rule from=\"^http://(?:www\\.)?(cs|falw|fbw|few|godgeleerdheid|let|psy)\\.vu\\.nl/\" to=\"https://www.$1.vu.nl/\"/><rule from=\"^http://(?:www\\.)?fpp\\.vu\\.nl/+(?=$|\\?)\" to=\"https://www.psy.vu.nl/\"/><rule from=\"^http://vunet\\.vu\\.nl/\" to=\"https://vunet.vu.nl/\"/></ruleset>", "<ruleset name=\"VUTBr.cz (partial)\" f=\"VUTBr.cz.xml\"><securecookie host=\".+\\.vutbr\\.cz$\" name=\".+\"/><rule from=\"^http://net\\.vutbr\\.cz/\" to=\"https://www.net.vutbr.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VVCap\" default_off=\"connection reset\" f=\"VVCap.xml\"><rule from=\"^http://(?:www\\.)?vvcap\\.net/\" to=\"https://vvcap.net/\"/></ruleset>", "<ruleset name=\"VZP.cz\" f=\"VZP.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vabali.de (partial)\" f=\"Vabali.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VacationRoost\" f=\"VacationRoost.xml\"><rule from=\"^http://ajax\\.vacationroost\\.com/\" to=\"https://ajax.vacationroost.com/\"/></ruleset>", "<ruleset name=\"vacenza.com (partial)\" f=\"Vacenza.com.xml\"><rule from=\"^http://(?:www\\.)?vacenza\\.com/([cC]ontent/|account/signin)\" to=\"https://www.vacenza.com/$1\"/><rule from=\"^http://tracking\\.vacenza\\.com/\" to=\"https://tracking.vacenza.com/\"/></ruleset>", "<ruleset name=\"Vagrant Cloud.com\" f=\"Vagrant_Cloud.com.xml\"><securecookie host=\"^vagrantcloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vagrantup.com (partial)\" f=\"Vagrantup.com.xml\"><securecookie host=\"^\\.vagrantup\\.com$\" name=\".+\"/><rule from=\"^http://vagrantup\\.com/\" to=\"https://www.vagrantup.com/\"/><rule from=\"^http://downloads\\.vagrantup\\.com/\" to=\"https://vagrant-downloads.herokuapp.com/\"/><rule from=\"^http://files\\.vagrantup\\.com/\" to=\"https://s3.amazonaws.com/files.vagrantup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"valME.io\" f=\"ValME.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valdhaus.co\" f=\"Valdhaus.co.xml\"><securecookie host=\"^\\.valdhaus\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vale of Glamorgan.gov.uk (partial)\" f=\"Vale_of_Glamorgan.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valley First CU.org\" f=\"Valley_First_CU.org.xml\"><securecookie host=\"^(?:www\\.)?valleyfirstcu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiolle.fi (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Valtiolle.fi-problematic.xml\"><rule from=\"^http://heli\\.valtiolle\\.fi/\" to=\"https://haku.valtiolle.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiolle.fi (partial)\" f=\"Valtiolle.fi.xml\"><securecookie host=\"^(?:www\\.)?valtiolle\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtion taloudellinen tutkimuskeskus\" f=\"Valtion-taloudellinen-tutkimuskeskus.xml\"><securecookie host=\"^(?:www\\.)?vatt\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiontalouden tarkastusvirasto\" default_off=\"failed ruleset test\" f=\"Valtiontalouden-tarkastusvirasto.xml\"><securecookie host=\"^www\\.vtv\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vtv\\.fi/\" to=\"https://www.vtv.fi/\"/></ruleset>", "<ruleset name=\"Value Applications\" f=\"Value-Applications.xml\"><securecookie host=\"^(?:.*\\.)?valueapplications\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?valueapplications\\.com/\" to=\"https://www.valueapplications.com/\"/></ruleset>", "<ruleset name=\"Value-Domain.com (partial)\" f=\"Value-Domain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ValueClick (mismatches)\" default_off=\"Akamai\" f=\"ValueClick-mismatches.xml\"><securecookie host=\"(?:.*\\.)?(?:adrxmedia|modernlivingmedia|momsmedia)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(adrx|modernliving|moms)media\\.com/\" to=\"https://www.$1media.com/\"/><rule from=\"^http://gocart\\.valueclickmedia\\.com/\" to=\"https://gocart.valueclickmedia.com/\"/><rule from=\"^http://cdn-origin\\.snv\\.vcmedia\\.com/\" to=\"https://cdn-origin.snv.vcmedia.com/\"/></ruleset>", "<ruleset name=\"ValueClick (partial)\" f=\"ValueClick.xml\"><securecookie host=\"^\\.apmebf\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.(?:fastclick|mediaplex|valueclick(?:media)?)\\.(?:com|net)$\" name=\".+\"/><securecookie host=\"^admin\\.valueclickmedia\\.com$\" name=\".+\"/><rule from=\"^http://(mp|rd)\\.apmebf\\.com/\" to=\"https://$1.apmebf.com/\"/><rule from=\"^http://(?:www\\.)?(?:fast|value)click(media)?\\.com/\" to=\"https://www.valueclick$1.com/\"/><rule from=\"^http://(?:secure\\.)?cdn\\.fastclick\\.net/\" to=\"https://secure.cdn.fastclick.net/\"/><rule from=\"^http://(?:media|secure)\\.fastclick\\.net/\" to=\"https://secure.fastclick.net/\"/><rule from=\"^http://sp\\.fastclick\\.net/\" to=\"https://sp.fastclick.net/\"/><rule from=\"^http://(adfarm|altfarm|app|img|mojofarm)\\.mediaplex\\.com/\" to=\"https://$1.mediaplex.com/\"/><rule from=\"^http://(?:secure\\.)?img-cdn\\.mediaplex\\.com/\" to=\"https://secure.img-cdn.mediaplex.com/\"/><rule from=\"^http://(?:www\\.)?mediaplex\\.com/\" to=\"https://www.mediaplex.com/\"/><rule from=\"^http://(?:secure-)?cdn\\.mplxtms\\.com/\" to=\"https://secure-cdn.mplxtms.com/\"/><rule from=\"^http://admin\\.valueclickmedia\\.com/\" to=\"https://admin.valueclickmedia.com/\"/></ruleset>", "<ruleset name=\"ValueCommerce (partial)\" f=\"ValueCommerce.xml\"><securecookie host=\"^\\.valuecommerce\\.com$\" name=\"^VCIDENTITY$\"/><securecookie host=\"^www\\.valuecommerce\\.ne\\.jp$\" name=\".+\"/><rule from=\"^http://valuecommerce\\.(com|ne\\.jp)/\" to=\"https://www.valuecommerce.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ValueHost.ru\" f=\"ValueHost.ru.xml\"><securecookie host=\"^\\.?www\\.valuehost\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ValueShop.co.uk\" f=\"ValueShop.co.uk.xml\"><securecookie host=\"^www\\.valueshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?valueshop\\.co\\.uk/\" to=\"https://www.valueshop.co.uk/\"/></ruleset>", "<ruleset name=\"Valued Opinions\" f=\"Valued_Opinions.xml\"><rule from=\"^http://(?:www\\.)?valuedopinions\\.co\\.uk/\" to=\"https://www.valuedopinions.co.uk/\"/><rule from=\"^http://adtracker\\.valuedopinions\\.co\\.uk/\" to=\"https://adtracker.valuedopinions.co.uk/\"/></ruleset>", "<ruleset name=\"Valuedial.com\" f=\"Valuedial.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valve (expired)\" default_off=\"expired\" f=\"Valve-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valve Software.com (partial)\" default_off=\"Breaks some games\" f=\"Valve.xml\"><securecookie host=\"^developer\\.valvesoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VanDyke.com\" f=\"VanDyke.com.xml\"><securecookie host=\"^(?:forums|secure)\\.vandyke\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"van Haaren.net (partial)\" f=\"Van_Haaren.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Van Lanschot.com\" f=\"Van_Lanschot.com.xml\"><securecookie host=\"^(?:www\\.)?vanlanschot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Van Lanschot.nl\" f=\"Van_Lanschot.nl.xml\"><securecookie host=\"^(?:www\\.)?vanlanschot\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vanlanschot\\.nl/\" to=\"https://www.vanlanschot.nl/\"/></ruleset>", "<ruleset name=\"Van Winkles.com\" f=\"Van_Winkles.com.xml\"><securecookie host=\"^\\.?vanwinkles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanco-Asiapac.com (partial)\" default_off=\"failed ruleset test\" f=\"Vanco-Asiapac.com.xml\"><rule from=\"^http://o-zone\\.vanco-asiapac\\.com/\" to=\"https://o-zone.vanco-asiapac.com/\"/></ruleset>", "<ruleset name=\"Vanco.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Vanco.co.uk.xml\"><securecookie host=\"^o-zone\\.vanco\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://o-zone\\.vanco\\.co\\.uk/\" to=\"https://o-zone.vanco.co.uk/\"/></ruleset>", "<ruleset name=\"Vanderbilt.edu (false MCB)\" platform=\"mixedcontent\" f=\"Vanderbilt.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanderbilt.edu (partial)\" f=\"Vanderbilt.org.xml\"><securecookie host=\"^events\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^www\\.mc\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^mc\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^my\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^phonedirectory\\.vanderbilt\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanilla Forums (partial)\" f=\"Vanilla-Forums.xml\"><exclusion pattern=\"^http://(?:www\\.)?vanillaforums\\.com/(?:$|info(?:$|/))\"/><rule from=\"^http://autostatic\\.vanilladev\\.com/\" to=\"https://autostatic.vanilladev.com/\"/><rule from=\"^http://(www\\.)?vanillaforums\\.com/\" to=\"https://$1vanillaforums.com/\"/><rule from=\"^http://cdn\\.v(?:anillaforums\\.com|ni\\.la)/\" to=\"https://c3409409.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://autostatic-cl1\\.vanilladev\\.com/(\\w+)\\.vanillaforums\\.com/\" to=\"https://$1.vanillaforums.com/\"/></ruleset>", "<ruleset name=\"VanillaMastercard\" f=\"VanillaMastercard.xml\"><rule from=\"^http://([^/:@\\.]+)\\.vanillamastercard\\.com/\" to=\"https://$1.vanillamastercard.com/\"/></ruleset>", "<ruleset name=\"Vanillicon.com\" f=\"Vanillicon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanity Fair (partial)\" f=\"Vanity-Fair.xml\"><securecookie host=\"^.*\\.vanityfair\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.vanityfair\\.com/\" to=\"https://secure.vanityfair.com/\"/><rule from=\"^http://stats2\\.vanityfair\\.com/\" to=\"https://vanityfair-com.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Vantiv.com (partial)\" f=\"Vantiv.com.xml\"><rule from=\"^http://((?:(?:www\\.)?clientconnection|sales|www)\\.)?vantiv\\.com/\" to=\"https://$1vantiv.com/\"/></ruleset>", "<ruleset name=\"Vara.nl (partial)\" f=\"Vara.nl.xml\"><exclusion pattern=\"^http://humortv\\.vara\\.nl/+(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\"/><securecookie host=\"^(?:media-service|omroep|static|www)\\.vara\\.nl$\" name=\".+\"/><securecookie host=\"^\\.(?:shop|tickets)\\.vara\\.nl$\" name=\"^frontend$\"/><rule from=\"^http://(humortv|media-service|omroep|shop|static|tickets|www)\\.vara\\.nl/\" to=\"https://$1.vara.nl/\"/></ruleset>", "<ruleset name=\"Varian.com (partial)\" f=\"Varian.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Variety.com (partial)\" f=\"Variety.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.variety\\.com/\" to=\"https://variety.com/\"/><rule from=\"^http://haas\\.variety\\.com/\" to=\"https://haas.reedbusiness.nl/\"/><rule from=\"^http://images\\d?\\.variety\\.com/\" to=\"https://dxcdzflj3dom3.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Variety Latino.com\" f=\"Variety_Latino.com.xml\"><rule from=\"^http://www\\.varietylatino\\.com/\" to=\"https://varietylatino.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Variomedia.de\" f=\"Variomedia.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varnish-Cache.org\" f=\"Varnish-Cache.org.xml\"><securecookie host=\"^www\\.varnish-cache\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varnish-Software.com (partial)\" f=\"Varnish-Software.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varuste.net\" f=\"Varuste.net.xml\"><securecookie host=\"^www\\.varuste\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varusteleka.fi\" f=\"Varusteleka.fi.xml\"><securecookie host=\"^www\\.varusteleka\\.fi$\" name=\".+\"/><rule from=\"^http://www\\.varusteleka\\.fi/\" to=\"https://www.varusteleka.fi/\"/></ruleset>", "<ruleset name=\"Vast (partial)\" f=\"Vast.xml\"><securecookie host=\"^(?:.*\\.)?vast\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(?:staticv\\.net|vast\\.com)/\" to=\"https://www.vast.com/\"/><rule from=\"^http://img\\.vast\\.com/\" to=\"https://img.vast.com/\"/></ruleset>", "<ruleset name=\"dsply.com\" f=\"Vast_Interactive.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vates.fr\" f=\"Vates.fr.xml\"><securecookie host=\"^piwik\\.vates\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vault.cca.edu\" default_off=\"failed ruleset test\" f=\"Vault.cca.edu.xml\"><rule from=\"^http://vault\\.cca\\.edu/\" to=\"https://vault.cca.edu/\"/></ruleset>", "<ruleset name=\"Vault project.io\" f=\"Vault_project.io.xml\"><securecookie host=\"^\\.vaultproject\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vayable.com\" f=\"Vayabe.com.xml\"><securecookie host=\"^www\\.vayable\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vayable\\.com/\" to=\"https://www.vayable.com/\"/></ruleset>", "<ruleset name=\"VB-Paradise.de\" f=\"Vb-paradise.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vc.ru\" f=\"Vc.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vcommerce (partial)\" f=\"Vcommerce.xml\"><securecookie host=\"^www\\.vcommerce\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vcommerce\\.com/\" to=\"https://www.vcommerce.com/\"/><rule from=\"^http://content\\.vcommerce\\.com/\" to=\"https://s3.amazonaws.com/content.vcommerce.com/\"/></ruleset>", "<ruleset name=\"Vdio.com\" f=\"Vdio.xml\"><rule from=\"^http://(?:www\\.)?vdio\\.com/+([^?]*).*\" to=\"https://www.rdio.com/$1\"/></ruleset>", "<ruleset name=\"Vdopia\" default_off=\"failed ruleset test\" f=\"Vdopia.xml\"><exclusion pattern=\"^http://i2\\.vdopia\\.com/(?!js/)\"/><securecookie host=\"^(?:.+\\.)?vdopia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ivdopia\\.com/\" to=\"https://www.ivdopia.com/\"/><rule from=\"^http://(?:i2\\.|serve\\.|(online\\.|sb\\.|www\\.))?vdopia\\.com/\" to=\"https://$1vdopia.com/\"/><rule from=\"^http://(?:cdn|mobile(\\.sb)?)\\.vdopia\\.com/\" to=\"https://mobile$1.vdopia.com/\"/></ruleset>", "<ruleset name=\"Vdoth.com\" f=\"Vdoth.com.xml\"><securecookie host=\"^(?:w*\\.)?vdoth\\.com$\" name=\".+\"/><rule from=\"^http://www\\.clipth\\.net/\" to=\"https://www.vdoth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ve Interactive.com (partial)\" f=\"Ve_Interactive.xml\"><securecookie host=\"^(?:mail|vecapture|vecontact|vemerchant)\\.veinteractive\\.com$\" name=\".+\"/><rule from=\"^http://(cdsusa|config1|configusa|drs2|mail|rcs|vecapture|vecontact|vemerchant)\\.veinteractive\\.com/\" to=\"https://$1.veinteractive.com/\"/></ruleset>", "<ruleset name=\"Veber.co.uk\" f=\"Veber.co.uk.xml\"><securecookie host=\"^(?:www\\.)?veber\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vector Media Group\" f=\"Vector-Media-Group.xml\"><rule from=\"^http://(?:www\\.)?vectormediagroup\\.com/\" to=\"https://www.vectormediagroup.com/\"/></ruleset>", "<ruleset name=\"VSEO GmbH\" f=\"Veeseo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vegas Deal Hunter.com\" default_off=\"connection refused\" f=\"Vegas_Deal_Hunter.xml\"><securecookie host=\"^\\.vegasdealhunter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vegas Partner Lounge\" f=\"Vegas_Partner_Lounge.xml\"><securecookie host=\"^(?:.+\\.)?vegaspartnerlounge\\.com$\" name=\".+\"/><rule from=\"^http://((?:secure|starpartner|www)\\.)?vegaspartnerlounge\\.com/\" to=\"https://$1vegaspartnerlounge.com/\"/></ruleset>", "<ruleset name=\"VehBidz (partial)\" platform=\"mixedcontent\" f=\"VehBidz.xml\"><rule from=\"^http://(?:www\\.)?vehbidz\\.com/((?:login|members_area|register)\\.php|themes/|uplimg/)\" to=\"https://www.vehbidz.com/$1\"/></ruleset>", "<ruleset name=\"Vehicle Visuals.com\" default_off=\"self-signed\" f=\"Vehicle_Visuals.com.xml\"><rule from=\"^http://(?:www\\.)?vehiclevisuals\\.com/\" to=\"https://www.vehiclevisuals.com/\"/></ruleset>", "<ruleset name=\"Veil-Framework.com\" f=\"Veil-Framework.com.xml\"><securecookie host=\"^(?:www\\.)?veil-framework\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vektorbank.com\" default_off=\"failed ruleset test\" f=\"Vektorbank.com.xml\"><securecookie host=\"^\\.vektorbank\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velaro.com (mismatches)\" default_off=\"mismatch\" f=\"Velaro-mismatches.xml\"><exclusion pattern=\"^http://community\\.velaro\\.com/velaro\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velaro.com (partial)\" f=\"Velaro.xml\"><securecookie host=\".*\\.velaro.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velleman Group (partial)\" default_off=\"failed ruleset test\" f=\"Velleman-Group.xml\"><securecookie host=\"^www\\.hqpower\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hqpower\\.eu/\" to=\"https://www.hqpower.eu/\"/><securecookie host=\"^www\\.perel\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?perel\\.eu/\" to=\"https://www.perel.eu/\"/><rule from=\"^http://(?:www\\.)?velleman\\.be/\" to=\"https://www.velleman.eu/\"/><rule from=\"^http://portal\\.velleman\\.be/$\" to=\"https://portal.velleman.eu/ServicePortal/\"/><rule from=\"^http://portal\\.velleman\\.be/(.+)\" to=\"https://portal.velleman.eu/$1\"/><securecookie host=\"^(?:portal|www)\\.velleman\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?velleman\\.eu/\" to=\"https://www.velleman.eu/\"/><rule from=\"^http://portal\\.velleman\\.eu/$\" to=\"https://portal.velleman.eu/ServicePortal/\"/><rule from=\"^http://portal\\.velleman\\.eu/(.+)\" to=\"https://portal.velleman.eu/$1\"/><securecookie host=\"^www\\.vellemanusa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vellemanusa\\.com/\" to=\"https://www.vellemanusa.com/\"/></ruleset>", "<ruleset name=\"velmedia.net (partial)\" default_off=\"self-signed\" f=\"Velmedia.net.xml\"><securecookie host=\"^ad\\.velmedia\\.net$\" name=\".+\"/><rule from=\"^http://(?:(ad\\.)|www\\.)?velmedia\\.net/\" to=\"https://$1velmedia.net/\"/></ruleset>", "<ruleset name=\"Velocity Micro\" f=\"Velocity-Micro.xml\"><securecookie host=\"^www\\.velocitymicro\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?velocitymicro\\.com/\" to=\"https://www.velocitymicro.com/\"/></ruleset>", "<ruleset name=\"Veloviewer.com\" f=\"Veloviewer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velox-Project.eu\" f=\"Velox-Project.eu.xml\"><rule from=\"^http://(?:www\\.)?velox-project\\.eu/\" to=\"https://www.velox-project.eu/\"/></ruleset>", "<ruleset name=\"Velum Media (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Velum-Media.xml\"><securecookie host=\"^www\\.smallnetbuilder\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?smallnetbuilder\\.com/\" to=\"https://www.smallnetbuilder.com/\"/></ruleset>", "<ruleset name=\"Velvet Cache.org (partial)\" f=\"Velvet_Cache.org.xml\"><rule from=\"^http://static\\.velvetcache\\.org/\" to=\"https://s3.amazonaws.com/static.velvetcache.org/\"/></ruleset>", "<ruleset name=\"Vendercom (partial)\" f=\"Vendercom.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vendetta Online (partial)\" platform=\"mixedcontent\" f=\"Vendetta-Online.xml\"><securecookie host=\"^(?:.*\\.)?vendetta-online\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?vendetta-online\\.com/\" to=\"https://$1vendetta-online.com/\"/><rule from=\"^http://images\\.vendetta-online\\.com/\" to=\"https://vendetta-online.com/\"/></ruleset>", "<ruleset name=\"Vendo Services (mismatches)\" default_off=\"mismatch\" f=\"Vendo-Services-mismatches.xml\"><rule from=\"^http://secure([45])\\.vend-o\\.com/\" to=\"https://secure$1.vend-o.com/\"/><rule from=\"^http://(?:www\\.)?vendosupport\\.com/\" to=\"https://vendosupport.com/\"/></ruleset>", "<ruleset name=\"Vendo Services (partial)\" f=\"Vendo-Services.xml\"><securecookie host=\"^\\.vend-o\\.com$\" name=\"^VENDO_OMNI$\"/><securecookie host=\"^(?:backoffice|secure3?)\\.vend-o\\.com$\" name=\".+\"/><securecookie host=\"^start\\.vendoservices\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Venmo.com (partial)\" f=\"Venmo.com.xml\"><rule from=\"^http://((?:developer|help|www)\\.)?venmo\\.com/\" to=\"https://$1venmo.com/\"/></ruleset>", "<ruleset name=\"ventivmedia.com\" f=\"Ventivmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ventoso.org\" default_off=\"mismatch\" f=\"Ventoso.org.xml\"><securecookie host=\"^ventoso\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ventoso\\.org/\" to=\"https://ventoso.org/\"/></ruleset>", "<ruleset name=\"Ventra Chicago.com\" f=\"Ventra_Chicago.com.xml\"><securecookie host=\"^(?:www)?\\.ventrachicago\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VentureBeat.com (partial)\" f=\"VentureBeat.xml\"><exclusion pattern=\"^http://venturebeat\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^events\\.venturebeat\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"venuscafem.com\" default_off=\"expired, mismatched\" f=\"Venuscafem.com.xml\"><securecookie host=\"^www\\.venuscafem\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?venuscafem\\.com/\" to=\"https://venuscafem.com/\"/></ruleset>", "<ruleset name=\"VeraSafe.com (partial)\" f=\"VeraSafe.com.xml\"><exclusion pattern=\"^http://www\\.verasafe\\.com/+(?!favicon\\.ico|images/|(?:contactus|dispute-submission|login|register|remind|reset)(?:$|[?/])|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veracode.com\" f=\"Veracode.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://veracode\\.com/\" to=\"https://www.veracode.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verbling.com\" f=\"Verbling.com.xml\"><securecookie host=\".*\\.verbling\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verbraucher-sicher-online.de\" f=\"Verbraucher-Sicher-Online.xml\"><rule from=\"^http://(?:www\\.)?verbraucher-sicher-online\\.de/\" to=\"https://www.verbraucher-sicher-online.de/\"/></ruleset>", "<ruleset name=\"Verbraucherzentrale Nordrhein-Westfalen\" f=\"Verbraucherzentrale_Nordrhein-Westfalen.xml\"><rule from=\"^http://(www\\.)?(meine|ratgeber)-verbraucherzentrale\\.de/\" to=\"https://$1$2-verbraucherzentrale.de/\"/><rule from=\"^http://(www\\.)?vz-nrw\\.de/\" to=\"https://$1vz-nrw.de/\"/></ruleset>", "<ruleset name=\"Verdad Media\" f=\"Verdad_Media.xml\"><rule from=\"^http://(?:www\\.)?verdadmedia\\.com/\" to=\"https://www.verdadmedia.com/\"/></ruleset>", "<ruleset name=\"Vereinigte IKK\" default_off=\"failed ruleset test\" f=\"Vereinigte-IKK.xml\"><rule from=\"^http://(?:www\\.)?vereinigte-ikk\\.de/\" to=\"https://www.vereinigte-ikk.de/\"/></ruleset>", "<ruleset name=\"Verified Voting\" f=\"Verified-Voting.xml\"><securecookie host=\"^(?:www\\.)?verifiedvoting(?:foundation)?\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?verifiedvoting(foundation)?\\.org/\" to=\"https://$1verifiedvoting$2.org/\"/></ruleset>", "<ruleset name=\"Verigames.com\" f=\"Verigames.com.xml\"><securecookie host=\"^\\.verigames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verio (partial)\" f=\"Verio.xml\"><exclusion pattern=\"^http://(?:www\\.)?verio\\.com/(?!images/|myverio/|order/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VeriSign (partial)\" f=\"Verisign.xml\"><exclusion pattern=\"^http://verisigntransition101\\.verisign\\.[\\w.]{2,6}/\"/><exclusion pattern=\"^http://[\\w-]*ocsp\\.verisign\\.com\"/><securecookie host=\"^(?:.*\\.)?verisign(?:inc)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?verisign\\.([\\w.]{2,6})/\" to=\"https://www.verisign.$1/\"/><rule from=\"^http://([\\w-]+)\\.verisign\\.([\\w.]{2,6})/\" to=\"https://$1.verisign.$2/\"/><rule from=\"^http://knowledge\\.verisign-grs\\.com/\" to=\"https://knowledge.verisign-grs.com/\"/><rule from=\"^http://(?:www\\.)?verisign(inc|-japan-domain)\\.com/\" to=\"https://www.verisign$1.com/\"/></ruleset>", "<ruleset name=\"Verisign Labs.com (partial)\" f=\"Verisign_Labs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verivox (partial)\" f=\"Verivox.xml\"><securecookie host=\"^partner\\.vxcp\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?verivox\\.de/(i/|(?:login|PasswordReset|Register)\\.aspx)\" to=\"https://www.verivox.de/$1\"/><rule from=\"^http://(css|img)\\.vxcdn\\.com/\" to=\"https://$1.vxcdn.com/\"/><rule from=\"^http://partner\\.vxcp\\.de/\" to=\"https://partner.vxcp.de/\"/></ruleset>", "<ruleset name=\"Verizon (partial)\" f=\"Verizon.xml\"><exclusion pattern=\"^http://collaborateext(?:stg)?\\.verizon\\.com/(?:$|\\?|aims/main/ext_index\\.jsp)\"/><exclusion pattern=\"^http://www22\\.verizon\\.com/(?:Foryourhome/MyAccount/Unprotected|investor/DocServlet|secure/pages/viewbill)/\"/><exclusion pattern=\"^http://www98\\.verizon\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://business\\.verizon\\.net/.*SMBPortalWeb/login$\"/><securecookie host=\"^(?:enterprisecenter|espanol|forums|responsibility|signin|smallbusiness|webmail)\\.verizon\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?verizon\\.net$\" name=\".+\"/><rule from=\"^http://(?:www(?:22)?\\.)?verizon\\.com/(?:$|\\?.*)\" to=\"https://www22.verizon.com/home/verizonglobalhome/ghp_landing.aspx\"/><rule from=\"^http://(?:www(22|98)?\\.)?verizon\\.com/\" to=\"https://www$1.verizon.com/\"/><rule from=\"^http://(auth|collaborateext(?:stg)?|enterprisecenter|entertainmentlogin|espanol|forums|responsibility|smallbusiness|signon|webmail)\\.verizon\\.com/\" to=\"https://$1.verizon.com/\"/><rule from=\"^http://(?:www\\.)?verizon\\.net/\" to=\"https://www.verizon.net/\"/><rule from=\"^http://(static-)?business\\.verizon\\.net/\" to=\"https://$1business.verizon.net/\"/><rule from=\"^http://businessforums\\.verizon\\.net/html/\" to=\"https://forums.verizon.com/html/\"/><rule from=\"^http://(?:www\\.)?verizonbusiness\\.com/(gfx|support/myaccount|templates)/\" to=\"https://www.verizonbusiness.com/$1/\"/></ruleset>", "<ruleset name=\"Verizon Enterprise (partial)\" f=\"Verizon_Enterprise.xml\"><rule from=\"^http://(?:www\\.)?verizonenterprise\\.com/Support(?:\\?.*)?$\" to=\"https://www.verizonenterprise.com/Support/\"/><rule from=\"^http://(?:www\\.)?verizonenterprise\\.com/(gfx|Support|templates)/\" to=\"https://www.verizonenterprise.com/$1/\"/></ruleset>", "<ruleset name=\"Verizon Wireless\" f=\"Verizon_Wireless.xml\"><exclusion pattern=\"http://www\\.verizonwireless\\.com/landingpages/verizon-messages/\"/><exclusion pattern=\"http://s7.vzw.com/\"/><securecookie host=\"^.*\\.verizonwireless\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.vzw\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?v(?:erizonwireless|zw)\\.com/\" to=\"https://www.verizonwireless.com/\"/><rule from=\"^http://(aboutus|b2b|billpaysvc|businessportals|community|login|m|mblogin|mediastore|myaccount|news|opennetwork|products|psearch|ringtones|sanalytics|support|videos|wbillpay|wizard|vzwworkshops)\\.verizonwireless\\.com/\" to=\"https://$1.verizonwireless.com/\"/><rule from=\"^http://analytics\\.verizonwireless\\.com/\" to=\"https://verizonwireless.112.2o7.net/\"/><rule from=\"^http://(aboutus|alerts|b2b|ecache|espanol2?|mediaimages|picture|text|wallpaper)\\.vzw\\.com/\" to=\"https://$1.vzw.com/\"/><rule from=\"^http://(?:www\\.)?(lte|trade-in)\\.vzw\\.com/\" to=\"https://www.$1.vzw.com/\"/><rule from=\"^http://scache\\.vzw\\.com/\" to=\"https://scache.vzw.com/\"/></ruleset>", "<ruleset name=\"Verkkomaksut.fi (partial)\" f=\"Verkkomaksut.fi.xml\"><securecookie host=\"^(?:\\.?payment)?\\.verkkomaksut\\.fi$\" name=\".+\"/><rule from=\"^http://(img|payment)\\.verkkomaksut\\.fi/\" to=\"https://$1.verkkomaksut.fi/\"/></ruleset>", "<ruleset name=\"Verkkouutiset.fi\" default_off=\"mismatched\" f=\"Verkkouutiset.fi.xml\"><rule from=\"^http://(?:www\\.)?verkkouutiset\\.fi/\" to=\"https://www.verkkouutiset.fi/\"/></ruleset>", "<ruleset name=\"Veronika Maine\" f=\"VeronikaMaine.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veronmaksajat\" default_off=\"failed ruleset test\" f=\"Veronmaksajat.xml\"><securecookie host=\"^www\\.veronmaksajat\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?veronmaksajat\\.fi/\" to=\"https://www.veronmaksajat.fi/\"/></ruleset>", "<ruleset name=\"VersaCart Systems\" f=\"VersaCart_Systems.xml\"><securecookie host=\"^\\.versacart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VersionEye.com\" f=\"VersionEye.com.xml\"><securecookie host=\"^www\\.versioneye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verslu.is\" f=\"Verslu.is.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Versus Technologies\" default_off=\"failed ruleset test\" f=\"Versus-Technologies.xml\"><securecookie host=\"^(?:.*\\.)?vstech\\.net$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?vstech\\.net/\" to=\"https://$1vstech.net/\"/></ruleset>", "<ruleset name=\"Vertical Acuity (mismatches)\" default_off=\"mismatch\" f=\"Vertical-Acuity-mismatches.xml\"><rule from=\"^http://(?:www\\.)?verticalacuity\\.com/\" to=\"https://www.verticalacuity.com/\"/></ruleset>", "<ruleset name=\"Vertical Acuity (partial)\" default_off=\"failed ruleset test\" f=\"Vertical-Acuity.xml\"><rule from=\"^http://scripts\\.verticalacuity\\.com/\" to=\"https://d2frbsrahs9p5r.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Vertical Media (partial)\" default_off=\"failed ruleset test\" f=\"Vertical-Media.xml\"><rule from=\"^http://mail\\.verticalmedia\\.com/\" to=\"https://mail.verticalmedia.com/\"/></ruleset>", "<ruleset name=\"Vertical Web Media\" platform=\"mixedcontent\" f=\"Vertical-Web-Media.xml\"><securecookie host=\"^(?:.*\\.)?internetretailer\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?internetretailer\\.com/\" to=\"https://www.internetretailer.com/\"/></ruleset>", "<ruleset name=\"VerticalResponse\" f=\"VerticalResponse.xml\"><rule from=\"^http://cts\\.vresp\\.com/\" to=\"https://cts.vresp.com/\"/></ruleset>", "<ruleset name=\"Vertical Response.com (partial)\" f=\"Vertical_Response.com.xml\"><rule from=\"^http://vr\\.force\\.com/\" to=\"https://vr.force.com/\"/><rule from=\"^http://helpcenter\\.verticalresponse\\.com/(?=/*$|/*\\?)\" to=\"https://vr.force.com/community/Communities/Welcome\"/><rule from=\"^http://marketing\\.verticalresponse\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjf.marketo.com/\"/><rule from=\"^http://support\\.verticalresponse\\.com/$\" to=\"https://vr.force.com/community/\"/><rule from=\"^http://(img-ak|vr2)\\.verticalresponse\\.com/\" to=\"https://$1.verticalresponse.com/\"/></ruleset>", "<ruleset name=\"Vertriebsassistent.de (partial)\" f=\"Vertriebsassistent.de.xml\"><securecookie host=\"^stats\\.vertriebsassistent\\.de$\" name=\".+\"/><rule from=\"^http://(app|stats)\\.vertriebsassistent\\.de/\" to=\"https://$1.vertriebsassistent.de/\"/></ruleset>", "<ruleset name=\"Veruta.com\" f=\"Veruta.com.xml\"><rule from=\"^http://(adserver|w\\.p)\\.veruta\\.com/\" to=\"https://$1.veruta.com/\"/></ruleset>", "<ruleset name=\"Verve Hosting.com (problematic)\" default_off=\"expired, missing certificate chain\" f=\"Verve_Hosting.com-problematic.xml\"><rule from=\"^http://www\\.vervehosting\\.com/\" to=\"https://vervehosting.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verve Hosting.com (partial)\" f=\"Verve_Hosting.xml\"><securecookie host=\"^cms\\.vervehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verwaltung Online\" f=\"Verwaltung_Online.xml\"><securecookie host=\"^(?:www\\.)?bund\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verzekeringssite.nl (partial)\" default_off=\"failed ruleset test\" f=\"Verzekeringssite.nl.xml\"><securecookie host=\"^(?:www)?\\.verzekeringssite\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?verzekeringssite\\.nl/(?!blog)\" to=\"https://www.verzekeringssite.nl/\"/></ruleset>", "<ruleset name=\"CurdBee.com (partial)\" default_off=\"untrusted root\" f=\"Vesess.xml\"><securecookie host=\"^\\w+\\.curdbee\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesica\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Vesica.xml\"><securecookie host=\"^vesica\\.ws$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesper Marine\" f=\"Vesper_Marine.xml\"><securecookie host=\"^\\.vespermarine\\.co(?:m\\.au|\\.nz|\\.uk)$\" name=\".+\"/><rule from=\"^http://(www\\.)?vespermarine\\.co(m\\.au|\\.nz|\\.uk)/\" to=\"https://$1vespermarine.co$2/\"/></ruleset>", "<ruleset name=\"Vessel\" f=\"Vessel.xml\"><securecookie host=\"^\\.vesselbags\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesta CP.com\" f=\"Vesta_CP.com.xml\"><securecookie host=\".*\\.vestacp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VetDepot.com\" f=\"VetDepot.com.xml\"><securecookie host=\"^(?:www)?\\.vetdepot\\.com$\" name=\".+\"/><rule from=\"^http://vetdepot\\.com/\" to=\"https://www.vetdepot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veterans-Aid.net\" f=\"Veterans-Aid.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veuwer\" f=\"Veuwer.xml\"><securecookie host=\"^veuwer\\.com$\" name=\".*\"/><rule from=\"^http://www\\.veuwer\\.com/\" to=\"https://veuwer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vexxhost.com (partial)\" f=\"Vexxhost.com.xml\"><securecookie host=\"^secure\\.vexxhost\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.vexxhost\\.com/\" to=\"https://secure.vexxhost.com/\"/></ruleset>", "<ruleset name=\"viaForensics.com\" f=\"ViaForensics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ViaMichelin.com (partial)\" f=\"ViaMichelin.com.xml\"><securecookie host=\"^download\\.viamichelin\\.com$\" name=\".+\"/><rule from=\"^http://(ccu|download|webservices)\\.viamichelin\\.com/\" to=\"https://$1.viamichelin.com/\"/></ruleset>", "<ruleset name=\"Viaverio.com\" default_off=\"failed ruleset test\" f=\"ViaVerio.com.xml\"><rule from=\"^http://(?:www\\.)?viaverio\\.com/\" to=\"https://www.viaverio.com/\"/><securecookie host=\"^(?:.*\\.)?viaverio\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Viacom\" f=\"Viacom.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"http://api.mtvnn.com/v2/mrss\"/></ruleset>", "<ruleset name=\"Viaduct.io\" f=\"Viaduct.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vianet Group (partial)\" default_off=\"expired, self-signed\" f=\"Vianet-Group.xml\"><rule from=\"^http://(?:www\\.)?(?:brulines|vianet)fuelsolutions\\.com/\" to=\"https://www.vianetfuelsolutions.com/\"/><rule from=\"^http://(?:www\\.)?vianet\\.co\\.uk/\" to=\"https://www.vianet.co.uk/\"/></ruleset>", "<ruleset name=\"Viber (partial)\" f=\"Viber.xml\"><rule from=\"^http://(?:www\\.)?viber\\.com/\" to=\"https://www.viber.com/\"/><rule from=\"^http://(?:helpme|support)\\.viber\\.com/\" to=\"https://viber.kayako.com/\"/></ruleset>", "<ruleset name=\"Vibrant\" f=\"Vibrant.xml\"><securecookie host=\"^(?:www\\.)?vibrantmedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vice.com (problematic)\" default_off=\"expired, mismatched\" f=\"Vice-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vice.com (partial)\" f=\"Vice.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.vice\\.com/\" to=\"https://d1qzzfctbfyh6r.cloudfront.net/\"/><rule from=\"^http://link\\.vice\\.com/+(?=$|\\?)\" to=\"https://vice.com/\"/><rule from=\"^http://link\\.vice\\.com/\" to=\"https://cb.sailthru.com/\"/><rule from=\"^http://assets\\.thump\\.vice\\.com/\" to=\"https://df5qbu832tmne.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vichan.net (partial)\" f=\"Vichan.net.xml\"><rule from=\"^http://(au|int|pl)\\.vichan\\.net/\" to=\"https://$1.vichan.net/\"/></ruleset>", "<ruleset name=\"Victi.ms (partial)\" default_off=\"failed ruleset test\" f=\"Victi.ms.xml\"><securecookie host=\"^(?:www\\.)?victi\\.ms$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victor Chandler International\" default_off=\"failed ruleset test\" f=\"Victor-Chandler.xml\"><securecookie host=\"^(?:.*\\.)?banners\\.victor\\.com$\" name=\".*\"/><securecookie host=\"^webmail\\.vcint\\.com$\" name=\".*\"/><rule from=\"^http://betvictor\\.com/\" to=\"https://www.betvictor.com/\"/><rule from=\"^http://www\\.betvictor\\.com/(images/|[\\w/]+/account/new)\" to=\"https://www.betvictor.com/$1\"/><rule from=\"^http://assets([123])\\.image-repository\\.com/\" to=\"https://assets$1.image-repository.com/\"/><rule from=\"^http://vcint\\.com/\" to=\"https://vcint.com/\"/><rule from=\"^http://(?:webmail|www)\\.vcint\\.com/\" to=\"https://webmail.vcint.com/\"/><rule from=\"^http://banners\\.victor\\.com/\" to=\"https://banners.victor.com/\"/></ruleset>", "<ruleset name=\"VictorOps.com\" f=\"VictorOps.com.xml\"><securecookie host=\"^\\.victorops\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorias Secret.com (partial)\" f=\"Victorias_Secret.xml\"><securecookie host=\"^(?:espanol|secure|\\.?www)?\\.victoriassecret\\.com$\" name=\".+\"/><rule from=\"^http://espanol\\.victoriassecret\\.com/.*\" to=\"https://www.victoriassecret.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorias Secret Canada.ca\" f=\"Victorias_Secret_Canada.ca.xml\"><securecookie host=\"^(?:www\\.)?victoriassecretcanada\\.ca$\" name=\".+\"/><rule from=\"^http://victoriassecretcanada\\.ca/\" to=\"https://www.victoriassecretcanada.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorinox\" f=\"Victorinox.xml\"><rule from=\"^http://victorinox\\.com/\" to=\"https://www.victorinox.com/\"/><rule from=\"^http://(images|static|www)\\.victorinox\\.com/\" to=\"https://$1.victorinox.com/\"/></ruleset>", "<ruleset name=\"Vid.ly (partial)\" f=\"Vid.ly.xml\"><securecookie host=\"\\.vid\\.ly$\" name=\".+\"/><rule from=\"^http://(?:(m\\.)|www\\.)?vid\\.ly/\" to=\"https://$1vid.ly/\"/><rule from=\"^http://cf\\.cdn\\.vid\\.ly/\" to=\"https://d3fenhwk93s16g.cloudfront.net/\"/><rule from=\"^http://s\\.vid\\.ly/\" to=\"https://d132d9vcg4o0oh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Vid.me\" f=\"Vid.me.xml\"><securecookie host=\"^\\.vid\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VidStore (partial)\" f=\"VidStore.xml\"><securecookie host=\"^ads\\.vidstore\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.vidstore\\.com/\" to=\"https://ads.vidstore.com/\"/></ruleset>", "<ruleset name=\"Vida y Salud.com (partial)\" f=\"Vida_y_Salud.com.xml\"><rule from=\"^http://(?:www\\.)?vidaysalud\\.com/wp-content/\" to=\"https://www.vidaysalud.com/wp-content/\"/></ruleset>", "<ruleset name=\"Vidahost (partial)\" f=\"Vidahost.xml\"><securecookie host=\"^(?:my|www)\\.vidahost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidarholen.net\" default_off=\"self-signed\" f=\"Vidarholen.net.xml\"><rule from=\"^http://(?:www\\.)?vidarholen\\.net/\" to=\"https://vidarholen.net/\"/></ruleset>", "<ruleset name=\"Vidble.com\" f=\"Vidble.com.xml\"><securecookie host=\"^(?:www\\.)?vidble\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viddler.com (mismatches)\" default_off=\"mismatched\" f=\"Viddler.com-mismatches.xml\"><securecookie host=\"^blog\\.viddler\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.viddler\\.com/\" to=\"https://blog.viddler.com/\"/></ruleset>", "<ruleset name=\"Viddler.com (partial)\" f=\"Viddler.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?viddler\\.com/(?!embed/|favicon\\.ico|login(?:$|[?/])|mini/|plans|vidgets/)\"/><securecookie host=\"^(?:support|www)\\.viddler\\.com$\" name=\".+\"/><rule from=\"^http://((?:\\w+\\.cdn-ec|cdn-static(?:-\\d\\d)?|cdn-thumbs|support|www)\\.)?viddler\\.com/\" to=\"https://$1viddler.com/\"/><rule from=\"^http://vidgets\\.viddler\\.com/(?=\\?.*)$\" to=\"https://www.viddler.com/vidgets/\"/></ruleset>", "<ruleset name=\"VideoBloom.com (partial)\" f=\"VideoBloom.com.xml\"><rule from=\"^http://my\\.videobloom\\.com/\" to=\"https://my.videobloom.com/\"/></ruleset>", "<ruleset name=\"VideoGameGeek.com\" f=\"VideoGameGeek.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?videogamegeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoGold.de\" default_off=\"expired\" f=\"VideoGold.de.xml\"><securecookie host=\"^(?:www\\.)?videogold\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoHub.tv (partial)\" f=\"VideoHub.tv.xml\"><securecookie host=\"^(?:data|\\.?portal)\\.videohub\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoLAN.org (partial)\" f=\"VideoLAN.xml\"><exclusion pattern=\"^http://(?:ganesh|rsync|stats)\\.videolan\\.org/(?!$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:ganesh|rsync|stats)\\.videolan\\.org/$\" to=\"https://www.videolan.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoPP.com (partial)\" default_off=\"failed ruleset test\" f=\"VideoPP.com.xml\"><securecookie host=\"^videopp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?videopp\\.com/\" to=\"https://videopp.com/\"/></ruleset>", "<ruleset name=\"VideoPros\" default_off=\"expired\" f=\"VideoPros.xml\"><securecookie host=\"^(?:www\\.)?videopros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Video Aided Instruction\" f=\"Video_Aided_Instruction.xml\"><securecookie host=\"^www\\.videoaidedinstruction\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?videoaidedinstruction\\.com/\" to=\"https://www.videoaidedinstruction.com/\"/></ruleset>", "<ruleset name=\"Video Dean\" default_off=\"failed ruleset test\" f=\"Video_Dean.xml\"><securecookie host=\"^(?:www)?\\.video-dean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Video Interchange\" default_off=\"expired\" f=\"Video_Interchange.xml\"><rule from=\"^http://(?:www\\.)?videointerchange\\.com/\" to=\"https://videointerchange.com/\"/></ruleset>", "<ruleset name=\"Videodroid.org\" f=\"Videodroid.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videoemail.com\" f=\"Videoemail.com.xml\"><securecookie host=\"^sc\\.videoemail\\.com$\" name=\".+\"/><rule from=\"^http://sc\\.videoemail\\.com/\" to=\"https://sc.videoemail.com/\"/></ruleset>", "<ruleset name=\"Videolicious.com\" f=\"Videolicious.com.xml\"><securecookie host=\"^videolicious\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videoly.co\" f=\"Videoly.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videoplaza.tv (partial)\" f=\"Videoplaza.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videotron.ca (partial)\" f=\"Videotron.ca.xml\"><securecookie host=\"^courrielweb\\.videotron\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videotron.com (partial)\" f=\"Videotron.com.xml\"><exclusion pattern=\"^http://www\\.videotron\\.com/+(?!client/|resources/|vcom/)\"/><securecookie host=\"^(?:clavardage|courrielweb|illicoweb)\\.videotron\\.com$\" name=\".+\"/><rule from=\"^http://videotron\\.com/\" to=\"https://www.videotron.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidi Emi.com (partial)\" f=\"Vidi_Emi.xml\"><securecookie host=\"^snap\\.vidiemi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vidplay.net\" default_off=\"self-signed\" f=\"Vidplay.net.xml\"><securecookie host=\"^\\.vidplay\\.net$\" name=\".+\"/><rule from=\"^http://vidplay\\.net/\" to=\"https://vidplay.net/\"/></ruleset>", "<ruleset name=\"Vidup.me (false MCB)\" platform=\"mixedcontent\" f=\"Vidup.me-falsemixed.xml\"><securecookie host=\"^\\.vidup\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidup.me (partial)\" f=\"Vidup.me.xml\"><rule from=\"^http://vidup\\.me/\" to=\"https://www.vidup.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidyard.com\" f=\"Vidyard.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vie Pratique.fr (partial)\" default_off=\"failed ruleset test\" f=\"Vie_Pratique.fr.xml\"><securecookie host=\"^(?:gourmand|www)?\\.viepratique\\.fr$\" name=\".+\"/><rule from=\"^http://(?:sf\\d\\.|www\\.)?viepratique\\.fr/\" to=\"https://www.viepratique.fr/\"/><rule from=\"^http://gourmand\\.viepratique\\.fr/\" to=\"https://gourmand.viepratique.fr/\"/></ruleset>", "<ruleset name=\"Vienna University of Technology (partial)\" f=\"Vienna_University_of_Technology.xml\"><exclusion pattern=\"^http://www.zid\\.tuwien\\.ac\\.at/sts/(?!campussoftware|studentensoftware)\"/><securecookie host=\"^(?:\\.mail\\.student|\\.webmail|www)\\.tuwien\\.ac\\.at$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tuwien\\.ac\\.at/\" to=\"https://www.tuwien.ac.at/\"/><rule from=\"^http://(mail|pop|mail\\.student|webmail|(?:ui|www)\\.zid|(?:mail|webstats)\\.zserv)\\.tuwien\\.ac\\.at/\" to=\"https://$1.tuwien.ac.at/\"/></ruleset>", "<ruleset name=\"Viestintavirasto.fi\" f=\"Viestintavirasto.fi.xml\"><securecookie host=\"^www\\.viestintavirasto\\.fi$\" name=\".+\"/><rule from=\"^http://viestintavirasto\\.fi/\" to=\"https://www.viestintavirasto.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"View Central.com (partial)\" f=\"View_Central.com.xml\"><securecookie host=\"^(?:admin|inter)\\.viewcentral\\.com$\" name=\".+\"/><rule from=\"^http://(admin|inter)\\.viewcentral\\.com/\" to=\"https://$1.viewcentral.com/\"/></ruleset>", "<ruleset name=\"VigLink.com\" f=\"VigLink.xml\"><exclusion pattern=\"^http://support\\.viglink\\.com/+(?!assets/|favicon\\.ico|images/|registration(?:$|[?/])|system/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.viglink\\.com/+\" to=\"https://www.viglink.com/blog\"/><rule from=\"^http://support\\.viglink\\.com/\" to=\"https://viglink.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VikingVPN.com\" f=\"VikingVPN.com.xml\"><securecookie host=\"^vikingvpn\\.com$\" name=\".+\"/><rule from=\"^http://vikingvpn\\.com/\" to=\"https://vikingvpn.com/\"/><rule from=\"^http://www\\.vikingvpn\\.com/+(?=\\?.+)\" to=\"https://vikingvpn.com/\"/><rule from=\"^http://www\\.vikingvpn\\.com/.*\" to=\"https://vikingvpn.com/\"/></ruleset>", "<ruleset name=\"Vidling\" default_off=\"mismatch\" f=\"Vildling.xml\"><securecookie host=\"^vidling\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vidling\\.com/\" to=\"https://vidling.com/\"/></ruleset>", "<ruleset name=\"Villa Saint Exupéry (mismatches)\" default_off=\"mismatch\" f=\"Villa-Saint-Exupery-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villa Saint Exupéry (partial)\" f=\"Villa-Saint-Exupery.xml\"><securecookie host=\"^www\\.villahostels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villas.com\" f=\"Villas.com.xml\"><securecookie host=\"^(\\.[\\w\\-]+)?\\.villas\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?villas\\.com/\" to=\"https://$1villas.com/\"/><rule from=\"^http://([\\w\\-]+)\\.vcomstatic\\.com/\" to=\"https://$1.vcomstatic.com/\"/></ruleset>", "<ruleset name=\"Vimention.com (partial)\" default_off=\"failed ruleset test\" f=\"Vimention.com.xml\"><rule from=\"^http://(?:www\\.)?vimention\\.com/\" to=\"https://vimention.com/\"/><rule from=\"^http://(users|pictures|static-eu1|static)\\.vimention\\.com/\" to=\"https://$1.vimention.com/\"/><rule from=\"^http://(?:www\\.)?vimention\\.mobi/\" to=\"https://m.vimention.com/\"/></ruleset>", "<ruleset name=\"Vimeo\" f=\"Vimeo.xml\"><securecookie host=\"^\\.(?:player\\.)?vimeo\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vimeo Pro.com\" f=\"Vimeo_Pro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vin DiCarlo (partial)\" default_off=\"redirects to http\" f=\"Vin-DiCarlo.xml\"><securecookie host=\"^(?:.*\\.)?3questionsgetthegirl\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vindico.com\" default_off=\"mismatched\" f=\"Vindico.com.xml\"><rule from=\"^http://(?:www\\.)?vindico\\.com/\" to=\"https://vindico.com/\"/></ruleset>", "<ruleset name=\"Vindico suite.com\" f=\"Vindico_suite.com.xml\"><securecookie host=\"^\\.vindicosuite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vine.co (partial)\" f=\"Vine.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vineyard Vines.com\" f=\"Vineyard_Vines.com.xml\"><securecookie host=\"^(?:m|www)\\.vineyardvines\\.com$\" name=\".+\"/><rule from=\"^http://vineyardvines\\.com/\" to=\"https://www.vineyardvines.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vinilox.eu\" default_off=\"missing certificate chain\" platform=\"cacert\" f=\"Vinilox.eu.xml\"><securecookie host=\"^status\\.vinilox\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vinumeris.com\" f=\"Vinumeris.com.xml\"><securecookie host=\"^(?:www\\.)?vinumeris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vinuthomas.com (partial)\" default_off=\"mismatch\" f=\"Vinuthomas.com.xml\"><rule from=\"^http://blogs\\.vinuthomas\\.com/\" to=\"https://blogs.vinuthomas.com/\"/></ruleset>", "<ruleset name=\"Violet Darkling.com\" f=\"Violet_Darkling.com.xml\"><securecookie host=\"^\\.(?:www\\.)?violetdarkling\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Violet Indigo\" f=\"Violet_Indigo.xml\"><securecookie host=\"^(?:www)?\\.violetindigo\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:static2?\\.|(www\\.))?violetindigo\\.com\\.au/\" to=\"https://$1violetindigo.com.au/\"/></ruleset>", "<ruleset name=\"VipVPN.com\" default_off=\"expired\" f=\"VipVPN.com.xml\"><securecookie host=\"^vipvpn\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vipvpn\\.com/\" to=\"https://vipvpn.com/\"/></ruleset>", "<ruleset name=\"Vippy.co\" f=\"Vippy.co.xml\"><securecookie host=\"^\\.?vippy\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vippy\\.co/\" to=\"https://vippy.co/\"/><rule from=\"^http://cdn1\\.vippy\\.co/\" to=\"https://s1r30b2exd0ux4.cloudfront.net/\"/><rule from=\"^http://cdn2\\.vippy\\.co/\" to=\"https://d19noydrgsp9ie.cloudfront.net/\"/><rule from=\"^http://cdn3\\.vippy\\.co/\" to=\"https://s2u565w4df8lrm.cloudfront.net/\"/><rule from=\"^http://cdn4\\.vippy\\.co/\" to=\"https://dfe23o0oezpl4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"VirWoX.com\" f=\"VirWoX.com.xml\"><securecookie host=\"^(?:www\\.)?virwox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virag.si\" f=\"Virag.si.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vircurex.com\" f=\"Vircurex.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?vircurex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virgin (mismatches)\" default_off=\"mismatch\" f=\"Virgin-mismatches.xml\"><rule from=\"^http://(answer|review)s\\.virginmobileusa\\.com/\" to=\"https://$1s.virginmobileusa.com/\"/></ruleset>", "<ruleset name=\"Virgin Australia\" f=\"VirginAustralia.xml\"><rule from=\"^http://virginaustralia\\.com/\" to=\"https://www.virginaustralia.com/\"/><rule from=\"^http://(insurance|www)\\.virginaustralia\\.com/\" to=\"https://$1.virginaustralia.com/\"/></ruleset>", "<ruleset name=\"Virgin Mobile\" f=\"VirginMobile.xml\"><securecookie host=\"^.*\\.virginmobileusa\\.com$\" name=\".*\"/><rule from=\"^http://(?:www(1)?\\.)?virginmobileusa\\.com/\" to=\"https://www$1.virginmobileusa.com/\"/><rule from=\"^http://(espanol|origin-www-ls|shop)\\.virginmobileusa\\.com/\" to=\"https://$1.virginmobileusa.com/\"/><rule from=\"^http://newsroom\\.virginmobileusa\\.com/sites/\" to=\"https://virginmobileusa.newshq.businesswire.com/sites/\"/><rule from=\"^http://www\\.virginmobile\\.com\\.au/\" to=\"https://www.virginmobile.com.au/\"/></ruleset>", "<ruleset name=\"Virgin Media.com (partial)\" f=\"Virgin_Media.com.xml\"><securecookie host=\"^\\.virginmedia\\.com$\" name=\"^(?:gpv_p\\w|s_\\w+)$\"/><securecookie host=\"^(?:da|help|identity|my|national)\\.virginmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virgin Media.ie\" f=\"Virgin_Media.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virginia Mason Hospital & Medical Center\" f=\"Virginia-Mason-Hospital.xml\"><securecookie host=\"^(?:.*\\.)?virginiamason\\.org$\" name=\".+\"/><rule from=\"^http(?:://(?:www\\.)?|s://)virginiamason\\.org/\" to=\"https://www.virginiamason.org/\"/></ruleset>", "<ruleset name=\"VT.edu (partial)\" f=\"Virginia-Polytechnic-Institute-and-State-University.xml\"><securecookie host=\"^(?:(?:m?\\.)?addison|auth|www\\.(?:bioinformatics|vbi)|(?:\\.vectorborne)?\\.fralin|(?:help|secure)?\\.research|(?:\\.ibc|\\.oesrc)?\\.researchcompliance)\\.vt\\.edu$\" name=\".+\"/><rule from=\"^http://(bioinformatics\\.|vbi\\.)?vt\\.edu/\" to=\"https://www.$1vt.edu/\"/><rule from=\"^http://www\\.cnr\\.vt\\.edu/\" to=\"https://cnre.vt.edu/\"/><rule from=\"^http://www\\.oesrc\\.researchcompliance\\.vt\\.edu/\" to=\"https://oesrc.researchcompliance.vt.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virk.dk (partial)\" f=\"Virk.dk.xml\"><securecookie host=\"^(?:data|hjaelp|indberet|startvaekst)\\.virk\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virool.com (partial)\" f=\"Virool.com.xml\"><securecookie host=\"^(?:channel|tools)?\\.virool\\.com$\" name=\".+\"/><rule from=\"^http://((?:channel|tools|www)\\.)?virool\\.com/\" to=\"https://$1virool.com/\"/></ruleset>", "<ruleset name=\"virt-manager.org\" f=\"Virt-manager.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtkick.io\" f=\"VirtKick.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?virtkick\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtkick.com\" f=\"Virtkick.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Privacy Office\" f=\"Virtual-Privacy-Office.xml\"><rule from=\"^http://(?:www\\.)?datenschutz\\.de/\" to=\"https://www.datenschutz.de/\"/></ruleset>", "<ruleset name=\"Virtual-Server.org\" f=\"Virtual-Server.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualBox.org\" f=\"VirtualBox.xml\"><securecookie host=\"^\\.forums\\.virtualbox\\.org$\" name=\".+\"/><securecookie host=\"^\\.www\\.virtualbox\\.org$\" name=\".+\"/><rule from=\"^http://virtualbox\\.org/\" to=\"https://www.virtualbox.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualBoxImages.com\" f=\"VirtualBoxImages.com.xml\"><securecookie host=\"^\\.virtualboximages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualQube.com\" f=\"VirtualQube.com.xml\"><securecookie host=\"^(?:www\\.)?virtualqube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualTourist (partial)\" f=\"VirtualTourist.xml\"><exclusion pattern=\"^http://members\\.virtualtourist\\.com/(?!_assets/|m/j/|m/nl/)\"/><securecookie host=\"^vpn\\.virtualtourist\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?virtualtourist\\.com/ajax/\" to=\"https://www.virtualtourist.com/ajax/\"/><rule from=\"^http://(meetings|members|vpn)\\.virtualtourist\\.com/\" to=\"https://$1.virtualtourist.com/\"/><rule from=\"^http://(?:(?:cdn\\d|p)\\.v|(?:cache|p)\\.virtual)tourist\\.com/\" to=\"https://members.virtualtourist.com/_assets/\"/></ruleset>", "<ruleset name=\"Virtual Inventions.com\" default_off=\"expired\" f=\"Virtual_Inventions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual News Center.com\" default_off=\"redirects to http\" f=\"Virtual_News_Center.xml\"><exclusion pattern=\"^http://(?:www\\.)?virtualnewscenter\\.com/+(?:$|wp-content/|wp-login\\.php)\"/><rule from=\"^http://virtualnewscenter\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://virtualnewscenter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Sprits\" default_off=\"failed ruleset test\" f=\"Virtual_Spirits.xml\"><securecookie host=\"^(?:www\\.)?virtualspirits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Earth.net\" f=\"Virtualearth.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?virtualearth\\.net/.*\" to=\"https://www.bing.com/maps/\"/><rule from=\"^http://fb\\.ecn\\.api\\.tiles\\.virtualearth\\.net/\" to=\"https://api.tiles.virtualearth.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtualization Review.com\" f=\"Virtualization_Review.com.xml\"><securecookie host=\"^virtualizationreview\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirusTotal.com (partial)\" f=\"VirusTotal.xml\"><securecookie host=\"^www\\.virustotal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?virustotal\\.com/\" to=\"https://www.virustotal.com/\"/></ruleset>", "<ruleset name=\"Virus Bulletin\" f=\"Virus_Bulletin.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^https?://virusbtn\\.com/\" to=\"https://www.virusbtn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virus Tracker.net\" f=\"Virus_Tracker.net.xml\"><securecookie host=\"^virustracker\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virusec.com\" default_off=\"failed ruleset test\" f=\"Virusec.com.xml\"><rule from=\"^http://www\\.escan\\.com/\" to=\"https://www.virusec.com/\"/><rule from=\"^http://escan\\.com/\" to=\"https://www.virusec.com/\"/><rule from=\"^http://virusec\\.com/\" to=\"https://www.virusec.com/\"/><rule from=\"^http://www\\.virusec\\.com/\" to=\"https://www.virusec.com/\"/></ruleset>", "<ruleset name=\"Visa (partial)\" f=\"Visa.xml\"><rule from=\"^http://(?:www\\.)?visa\\.com/\" to=\"https://www.visa.com/\"/><rule from=\"^http://corporate\\.visa\\.com/_(cs|image)s/\" to=\"https://corporate.visa.com/_$1s/\"/><rule from=\"^http://usa\\.visa\\.com/(css|ext|img|merchants)/\" to=\"https://usa.visa.com/$1/\"/><rule from=\"^https://usa\\.visa\\.com/(?=about_visa/|download/|personal/|sitewide/)\" to=\"http://usa.visa.com/\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"VisaHQ\" f=\"VisaHQ.xml\"><rule from=\"^http://visahq\\.com/\" to=\"https://www.visahq.com/\"/><rule from=\"^http://([^/:@]+)?\\.visahq\\.com/\" to=\"https://$1.visahq.com/\"/></ruleset>", "<ruleset name=\"Visa Buxx.com (partial)\" f=\"Visa_Buxx.com.xml\"><securecookie host=\"^usbank\\.visabuxx\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?visabuxx\\.com/$\" to=\"https://usa.visa.com/personal/cards/prepaid/visa_buxx.html\"/><rule from=\"^http://usbank\\.visabuxx\\.com/\" to=\"https://usbank.visabuxx.com/\"/></ruleset>", "<ruleset name=\"Visa Europe.com (partial)\" f=\"Visa_Europe.xml\"><rule from=\"^http://(?:www\\.)?visaeurope\\.com/(?=(?:\\w\\w/idoc\\.ashx|\\w\\w/member_area\\.aspx|assets|favicon\\.ico|plugins|templates|WebResource\\.axd)(?:$|[?/]))\" to=\"https://www.visaeurope.com/\"/></ruleset>", "<ruleset name=\"Visa to Vietnam\" f=\"Visa_to_Vietnam.xml\"><securecookie host=\"^(?:w*\\.)?visatovietnam\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visaforchina.org\" f=\"Visaforchina.org.xml\"><rule from=\"^http://visaforchina\\.org/\" to=\"https://www.visaforchina.org/\"/><rule from=\"^http://([^/:@]+)?\\.visaforchina\\.org/\" to=\"https://$1.visaforchina.org/\"/></ruleset>", "<ruleset name=\"Visalia Times-Delta\" default_off=\"failed ruleset test\" f=\"Visalia_Times-Delta.xml\"><securecookie host=\"^.+\\.visaliatimesdelta\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?visaliatimesdelta\\.com/\" to=\"https://www.visaliatimesdelta.com/\"/><rule from=\"^http://advertise\\.visaliatimesdelta\\.com/\" to=\"https://advertise.visaliatimesdelta.com/\"/><rule from=\"^http://deals\\.visaliatimesdelta\\.com/\" to=\"https://visalia.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"VisiStat.com (partial)\" default_off=\"failed ruleset test\" f=\"VisiStat.com.xml\"><securecookie host=\"^(?:www\\.)?visistat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sa-as\\.com/tracking/\" to=\"https://www.visistat.com/tracking/\"/><rule from=\"^http://(sniff\\.|www\\.)?visistat\\.com/\" to=\"https://$1visistat.com/\"/><rule from=\"^http://s(?:niff|tats)\\.visistat\\.com/\" to=\"https://sniff.visistat.com/\"/><rule from=\"^http://demo\\.visistat\\.com/\" to=\"https://www.visistat.com/demo-login.php\"/></ruleset>", "<ruleset name=\"Visiba.com\" f=\"Visiba.com.xml\"><securecookie host=\"^www\\.visiba\\.com$\" name=\"^\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visible Measures (partial)\" default_off=\"failed ruleset test\" f=\"Visible-Measures.xml\"><securecookie host=\"^auth\\.visiblemeasures\\.com$\" name=\".+\"/><rule from=\"^http://(auth|cdn)\\.visiblemeasures\\.com/\" to=\"https://$1.visiblemeasures.com/\"/><rule from=\"^http://(?:od2|video\\.od)\\.visiblemeasures\\.com/\" to=\"https://video.od.visiblemeasures.com/\"/><rule from=\"^http://(?:www\\.)?viewablemedia\\.net/\" to=\"https://www.viewablemedia.net/\"/><rule from=\"^http://ad\\.viewablemedia\\.net/\" to=\"https://ad.viewablemedia.net/\"/></ruleset>", "<ruleset name=\"VisibleGains.com (partial)\" f=\"VisibleGains.com.xml\"><securecookie host=\"^my\\.visiblegains\\.com$\" name=\".+\"/><rule from=\"^http://(my|player)\\.visiblegains\\.com/\" to=\"https://$1.visiblegains.com/\"/></ruleset>", "<ruleset name=\"Visible Technologies\" f=\"Visible_Technologies.xml\"><securecookie host=\"^\\.visibletechnologies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Airlines\" default_off=\"failed ruleset test\" f=\"VisionAirlines.xml\"><rule from=\"^http://(?:www\\.)?visionairlines\\.com/\" to=\"https://www.visionairlines.com/\"/></ruleset>", "<ruleset name=\"Vision Art Forum.com (partial)\" f=\"Vision_Art_Forum.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?visionartforum\\.com/(?:content\\.php)?(?:\\?.*)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Critical.com\" f=\"Vision_Critical.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Critical Panels.com\" f=\"Vision_Critical_Panels.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visit the Capitol.gov\" f=\"Visit_the_Capitol.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visitestonia.com (partial)\" f=\"Visitestonia.com.xml\"><rule from=\"^http://(prelive\\.|www\\.)?visitestonia\\.com/\" to=\"https://$1visitestonia.com/\"/><rule from=\"^http://cache\\.visitestonia\\.com/\" to=\"https://d1y50j8vst3j8d.cloudfront.net/\"/><rule from=\"^http://static[12]\\.visitestonia\\.com/\" to=\"https://d3otexg1kysjv4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Vispa (self-signed)\" default_off=\"self-signed\" f=\"Vispa-self-signed.xml\"><securecookie host=\"^webmail\\.vispa\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.vispa\\.com/\" to=\"https://webmail.vispa.com/\"/></ruleset>", "<ruleset name=\"Vispa (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Vispa.xml\"><securecookie host=\"^secure\\.vispa\\.net\\.uk$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?vispa(?:host|shop)\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.vispa\\.net\\.uk/\" to=\"https://secure.vispa.net.uk/\"/><rule from=\"^http://www\\.vispahost\\.com/\" to=\"https://www.vispahost.com/\"/><rule from=\"^http://(www\\.)?vispashop\\.com/\" to=\"https://$1vispashop.com/\"/></ruleset>", "<ruleset name=\"Vistech Communications\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Vistech-Communications.xml\"><securecookie host=\"^(?:.*\\.)?vistech\\.net$\" name=\".*\"/><rule from=\"^http://(?:bundy\\.|www\\.)?vistech\\.net/\" to=\"https://bundy.vistech.net/\"/></ruleset>", "<ruleset name=\"Visual Paradigm\" default_off=\"failed ruleset test\" f=\"Visual-Paradigm.xml\"><securecookie host=\"^www\\.visual-paradigm\\.com$\" name=\".*\"/><rule from=\"^http://s1\\.linkvp\\.com/\" to=\"https://d1dlalugb0z2hd.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?visual-paradigm\\.com/\" to=\"https://www.visual-paradigm.com/\"/></ruleset>", "<ruleset name=\"Visual Website Optimizer (partial)\" f=\"VisualWebsiteOptimizer.xml\"><exclusion pattern=\"^http://visualwebsiteoptimizer\\.com/(?:$|.+/$|(?:about-us|affiliates|careers|case-studies|(?:certified-|tech-)?partners|comparison|customers|faqs|feature(?:-list|s)|ideafox|privacy-policy|terms-conditions|testimonials)\\.php(?:$|\\?))\"/><securecookie host=\"^[^w].*\\.visualwebsiteoptimizer\\.com$\" name=\".*\"/><rule from=\"^http://(?:(dev\\.|v2\\.)|www\\.)?visualwebsiteoptimizer\\.com/\" to=\"https://$1visualwebsiteoptimizer.com/\"/></ruleset>", "<ruleset name=\"Visual Revenue (partial)\" f=\"Visual_Revenue.xml\"><securecookie host=\"^\\.platform\\.visualrevenue\\.com$\" name=\".+\"/><rule from=\"^http://platform\\.visualrevenue\\.com/\" to=\"https://platform.visualrevenue.com/\"/></ruleset>", "<ruleset name=\"Visual Studio.com (partial)\" f=\"Visual_Studio.com.xml\"><securecookie host=\"^\\.code\\.visualstudio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visualising Advocacy.org\" f=\"Visualising_Advocacy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VitalAds (partial)\" default_off=\"failed ruleset test\" f=\"VitalAds.xml\"><securecookie host=\"^(?:.*\\.)?vitalads\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VitalMend.com (partial)\" f=\"VitalMend.com.xml\"><rule from=\"^http://(www\\.)?vitalmend\\.com/(?=favicon\\.ico|images/|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1vitalmend.com/\"/></ruleset>", "<ruleset name=\"Vital Gamers.com\" default_off=\"self-signed\" f=\"Vital_Gamers.com.xml\"><rule from=\"^http://(?:www\\.)?vitalgamers\\.com/\" to=\"https://vitalgamers.com/\"/></ruleset>", "<ruleset name=\"Vitalwerks (mismatches)\" default_off=\"mismatch\" f=\"Vitalwerks-mismatches.xml\"><rule from=\"^http://(?:www\\.)?c(anyouseeme|heckip)\\.org/\" to=\"https://c$1.org/\"/></ruleset>", "<ruleset name=\"Vitalwerks (partial)\" f=\"Vitalwerks.xml\"><rule from=\"^http://cdn\\.no-ip\\.com/\" to=\"https://noipcdn.s3.amazonaws.com/\"/><rule from=\"^http://(?:www\\.)?no-ip\\.com/(client/|company/[^$]|favicon\\.ico|images/|login|(?:1click|newUser)\\.php)\" to=\"https://www.no-ip.com/$1\"/></ruleset>", "<ruleset name=\"Vitamin T\" platform=\"mixedcontent\" f=\"Vitamin-T.xml\"><securecookie host=\"^vitamintalent\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vitamintalent\\.com/\" to=\"https://vitamintalent.com/\"/></ruleset>", "<ruleset name=\"Vitamin D Council\" f=\"Vitamin_D_Council.xml\"><securecookie host=\"^(?:www\\.)?vitamindcouncil\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vitamin Shoppe.com (partial)\" default_off=\"failed ruleset test\" f=\"Vitamin_Shoppe.xml\"><securecookie host=\"^(?:m|www)?\\.vitaminshoppe\\.com\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vitaminshoppe\\.com/\" to=\"https://www.vitaminshoppe.com/\"/><rule from=\"^http://m\\.vitaminshoppe\\.com/\" to=\"https://m.vitaminshoppe.com/\"/></ruleset>", "<ruleset name=\"Vitelity\" f=\"Vitelity.xml\"><rule from=\"^http://portal\\.vitelity\\.net/\" to=\"https://portal.vitelity.net/\"/></ruleset>", "<ruleset name=\"Vivaciti (partial)\" f=\"Vivaciti.xml\"><exclusion pattern=\"^http://www\\.vivaciti\\.net/forum/$\"/><securecookie host=\"^vivaciti\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vivaciti\\.net/\" to=\"https://vivaciti.net/\"/></ruleset>", "<ruleset name=\"Vivaldi.net\" f=\"Vivaldi.net.xml\"><securecookie host=\"^\\.?vivaldi\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viveris.fr\" f=\"Viveris.fr.xml\"><securecookie host=\"^www\\.viveris\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?viveris\\.fr/\" to=\"https://www.viveris.fr/\"/></ruleset>", "<ruleset name=\"Viviscal\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Viviscal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vizury.com (partial)\" f=\"Vizury.com.xml\"><securecookie host=\"^\\.vizury\\.com$\" name=\"^(?:OAID|r|vizid|vizp|vs)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vizzit.se\" f=\"Vizzit.se.xml\"><rule from=\"^http://www\\.vizzit\\.se/\" to=\"https://www.vizzit.se/\"/></ruleset>", "<ruleset name=\"Vliegtickets.nl\" f=\"Vliegtickets.nl.xml\"><rule from=\"^http://vliegtickets\\.nl/\" to=\"https://www.vliegtickets.nl/\"/><rule from=\"^http://([^/:@]+)\\.vliegtickets\\.nl/\" to=\"https://$1.vliegtickets.nl/\"/></ruleset>", "<ruleset name=\"Vm.ag\" f=\"Vm.ag.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vmail.me\" f=\"Vmail.me.xml\"><rule from=\"^http://(?:www\\.)?vmail\\.me/\" to=\"https://www.vmail.me/\"/></ruleset>", "<ruleset name=\"vmcdn.de\" f=\"Vmcdn.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vmmpxl.com\" f=\"Vmmpxl.com.xml\"><securecookie host=\"^secimg\\.vmmpxl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vn5socks.com\" default_off=\"failed ruleset test\" f=\"Vn5socks.com.xml\"><securecookie host=\"^www\\.vn5socks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoIPDistributor.net\" f=\"VoIPDistributor.net.xml\"><securecookie host=\"^\\.?voipdistributor\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voat.co\" f=\"Voat.co.xml\"><securecookie host=\"^(?:\\.|www\\.)?voat\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocaroo.com\" default_off=\"mismatched\" f=\"Vocaroo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocativ.com (partial)\" f=\"Vocativ.com.xml\"><exclusion pattern=\"^http://www\\.vocativ\\.com/+(?!\\?PageSpeed=noscript|content/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.co.nz (partial)\" f=\"Vodafone.co.nz.xml\"><exclusion pattern=\"^http://search\\.vodafone\\.co\\.nz/+(?!$|\\?)\"/><securecookie host=\"^(?:.*\\.)?vodafone\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://forum\\.vodafone\\.co\\.nz/+\" to=\"https://community.vodafone.co.nz/\"/><rule from=\"^http://search\\.vodafone\\.co\\.nz/.*\" to=\"https://www.vodafone.co.nz/search\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.co.uk (partial)\" f=\"Vodafone.co.uk.xml\"><securecookie host=\"^\\.vodafone\\.co\\.uk$\" name=\"^vf_returning_visitor$\"/><securecookie host=\".+\\.vodafone\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://rewardz\\.vodafone\\.co\\.uk/+\" to=\"https://rewards.vodafone.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.de (partial)\" f=\"Vodafone.de.xml\"><exclusion pattern=\"^http://m\\.vodafone\\.de/+(?!$|\\?)\"/><securecookie host=\"^\\.vodafone\\.de$\" name=\"^(?:DYN_USER_(?:CONFIRM|ID)|oshop|s_vi)$\"/><securecookie host=\"^(?:dsl|dslshop|forum|hilfe|shop|www)\\.vodafone\\.de$\" name=\".+\"/><rule from=\"^http://www\\.dsl(shop)?\\.vodafone\\.de/\" to=\"https://dsl$1.vodafone.de/\"/><rule from=\"^http://m\\.vodafone\\.de/+\" to=\"https://www.vodafone.de/mobil/privat/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.ie (partial)\" f=\"Vodafone.ie.xml\"><securecookie host=\"^(?:.+\\.)?vodafone\\.ie$\" name=\".+\"/><rule from=\"^http://vodafone\\.ie/\" to=\"https://www.vodafone.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.com (partial)\" f=\"Vodafone.xml\"><securecookie host=\"^developer\\.vodafone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vodafone\\.com/+(?=$|\\?)\" to=\"https://www.vodafone.com/content/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voffka.com (partial)\" f=\"Voffka.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vogel.de\" f=\"Vogel.de.xml\"><securecookie host=\"^(?:www\\.)?vogel\\.de$\" name=\".+\"/><rule from=\"^http://((?:files|images|www)\\.)?vogel\\.de/\" to=\"https://$1vogel.de/\"/></ruleset>", "<ruleset name=\"Voice.fi (broken)\" default_off=\"breaks site, cert expired\" f=\"Voice.fi.xml\"><rule from=\"^http://voice\\.fi/\" to=\"https://voice.fi/\"/><rule from=\"^http://www\\.voice\\.fi/\" to=\"https://www.voice.fi/\"/></ruleset>", "<ruleset name=\"VoiceFive\" f=\"VoiceFive.xml\"><securecookie host=\"^(?:.*\\.)?voicefive\\.com$\" name=\".*\"/><rule from=\"^http://(ar\\.|www\\.)?voicefive\\.com/\" to=\"https://$1voicefive.com/\"/><rule from=\"^http://s?b\\.voicefive\\.com/\" to=\"https://sb.voicefive.com/\"/></ruleset>", "<ruleset name=\"VoiceThread.com (partial)\" f=\"VoiceThread.com.xml\"><securecookie host=\"^\\.voicethread\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voice Republic.com (partial)\" f=\"Voice_Republic.com.xml\"><securecookie host=\"^(?:www\\.)?voicerepublic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voices.com (partial)\" f=\"Voices.com.xml\"><rule from=\"^http://(?:www\\.)?voices\\.com/((?:answers|apps|articles|client|community|company|css|directory|ebooks|find|help|images|img|industries|infographics|languages|login|newsroom|rates|resources|royalty-free-music|rss|rss_feeds|scripts|security|service|signup|site_map|tag|talents|videos)(?:$|[\\?/])|(?:faq|surepay)\\./html(?:$|\\?)|talent/\\w)\" to=\"https://www.voices.com/$1\"/></ruleset>", "<ruleset name=\"Volatile Systems.com (problematic)\" default_off=\"expired, mismatched\" f=\"Volatile_Systems.com-problematic.xml\"><rule from=\"^http://lists\\.volatilesystems\\.com/\" to=\"https://lists.volatilesystems.com/\"/></ruleset>", "<ruleset name=\"Volatile Systems.com (partial)\" default_off=\"failed ruleset test\" f=\"Volatile_Systems.com.xml\"><securecookie host=\"^www\\.volatilesystems\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?volatilesystems\\.com/\" to=\"https://www.volatilesystems.com/\"/></ruleset>", "<ruleset name=\"Volcano eCigs\" platform=\"mixedcontent\" f=\"VolcanoEcigs.xml\"><rule from=\"^http://(?:www\\.)?volcanoecigs\\.com/\" to=\"https://www.volcanoecigs.com/\"/></ruleset>", "<ruleset name=\"Volexity.com (partial)\" f=\"Volexity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volgistics (partial)\" f=\"Volgistics.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://)volgistics\\.com/\" to=\"https://www.volgistics.com/\"/></ruleset>", "<ruleset name=\"Volksverschlüsselung\" f=\"Volksverschluesselung.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volkswagen Bank\" platform=\"mixedcontent\" f=\"VolkswagenBank.xml\"><rule from=\"^http://(?:www\\.)?volkswagenbank\\.de/\" to=\"https://www.volkswagenbank.de/\"/><rule from=\"^http://online-banking\\.volkswagenbank\\.de/\" to=\"https://online-banking.volkswagenbank.de/\"/></ruleset>", "<ruleset name=\"Volotea.com\" f=\"Volotea.com.xml\"><securecookie host=\"^(?:www)?\\.volotea\\.com$\" name=\".+\"/><rule from=\"^http://((?:auto|cars|coches|media|static|voitures|www)\\.)?volotea\\.com/\" to=\"https://$1volotea.com/\"/></ruleset>", "<ruleset name=\"HP Security Voltage\" f=\"Voltage.com.xml\"><securecookie host=\"^www\\.voltage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voltaic Systems.com (partial)\" f=\"Voltaic_Systems.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volunteer² (partial)\" f=\"Volunteer2.xml\"><rule from=\"^http://(?:app\\.volunteer2|(?:www\\.)?myvolunteerpage)\\.com/\" to=\"https://app.volunteer2.com/\"/><rule from=\"^http://cdn\\.volunteer2\\.com/\" to=\"https://cdn.volunteer2.com/\"/></ruleset>", "<ruleset name=\"Volunteer Centers of Michigan\" default_off=\"mismatched\" f=\"Volunteer_Centers_of_Michigan.xml\"><securecookie host=\"^mivolunteers\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mivolunteers\\.org/\" to=\"https://mivolunteers.org/\"/></ruleset>", "<ruleset name=\"Volunteer Matters.com\" default_off=\"failed ruleset test\" f=\"Volunteer_Matters.xml\"><securecookie host=\"^(?:www\\.)?volunteermatters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volusion (partial)\" f=\"Volusion.xml\"><securecookie host=\"^(?:.*\\.)?volusion\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://(store\\.|www\\.)?volusion\\.co\\.uk/\" to=\"https://$1volusion.co.uk/\"/><rule from=\"^http://volusion\\.com/\" to=\"https://www.volusion.com/\"/><rule from=\"^http://(cdn3|forums|my|store|vchangedesign|www)\\.volusion\\.com/\" to=\"https://$1.volusion.com/\"/></ruleset>", "<ruleset name=\"Vonage\" platform=\"mixedcontent\" f=\"Vonage.xml\"><rule from=\"^http://(?:www\\.)?vonage\\.com/\" to=\"https://www.vonage.com/\"/><rule from=\"^http://(?:www\\.)?vonage\\.co\\.uk/\" to=\"https://www.vonage.co.uk/\"/><rule from=\"^http://(?:www\\.)?vonage\\.ca/\" to=\"https://www.vonage.ca/\"/></ruleset>", "<ruleset name=\"vooPlayer.com\" f=\"VooPlayer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voodoo.com (partial)\" f=\"Voodoo.com.xml\"><securecookie host=\"^\\.voodoo\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?voodoo\\.com/\" to=\"https://secure.voodoo.com/\"/></ruleset>", "<ruleset name=\"Voodoo Ping.com\" default_off=\"expired\" f=\"Voodoo_Ping.com.xml\"><securecookie host=\"^(?:w*\\.)?voodooping\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vook.com\" default_off=\"failed ruleset test\" f=\"Vook.com.xml\"><rule from=\"^http://((?:store|tool|www)\\.)?vook\\.com/\" to=\"https://$1vook.com/\"/></ruleset>", "<ruleset name=\"Voost!\" f=\"Voost.xml\"><securecookie host=\"^\\.voo\\.st$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vorpal.io\" f=\"Vorpal.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VosCast.com\" f=\"VosCast.com.xml\"><securecookie host=\"^(?:w*\\.)?voscast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoteWatch.eu\" default_off=\"failed ruleset test\" f=\"VoteWatch.eu.xml\"><securecookie host=\"^www\\.votewatch\\.eu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?votewatch\\.eu/\" to=\"https://www.votewatch.eu/\"/></ruleset>", "<ruleset name=\"voterVOICE\" platform=\"mixedcontent\" f=\"VoterVOICE.xml\"><rule from=\"^http://(?:www\\.)?votervoice\\.net/\" to=\"https://www.votervoice.net/\"/></ruleset>", "<ruleset name=\"VouchedFor.co.uk\" f=\"VouchedFor.co.uk.xml\"><securecookie host=\"^\\.vouchedfor\\.co\\.uk$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vovici.com (partial)\" default_off=\"failed ruleset test\" f=\"Vovici.com.xml\"><rule from=\"^http://(desktop\\.|system\\.)?(www\\.)?vovici\\.com/\" to=\"https://$1vovici.com/\"/></ruleset>", "<ruleset name=\"Vox-CDN.com\" f=\"Vox-CDN.com.xml\"><rule from=\"^http://cdn(\\d)\\.vox-cdn\\.com/\" to=\"https://cdn$1.vox-cdn.com/\"/></ruleset>", "<ruleset name=\"Vox.com\" default_off=\"redirects to http\" f=\"Vox.com.xml\"><exclusion pattern=\"^http://www\\.vox\\.com/(?:$|\\?|\\d{4}/(?:\\d\\d?/){2}\\d+/[\\w-]+(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^__[qu].*\"/><rule from=\"^http://vox\\.com/\" to=\"https://www.vox.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vox Media.com (false MCB)\" platform=\"mixedcontent\" f=\"Vox_Media.com.xml\"><exclusion pattern=\"^http://www\\.voxmedia\\.com/(?:$|\\?)\"/><rule from=\"^http://voxmedia\\.com/\" to=\"https://www.voxmedia.com/\"/><rule from=\"^http://ea-cdn\\.voxmedia\\.com/\" to=\"https://d8wuu9msfgurd.cloudfront.net/\"/><rule from=\"^http://cdn\\.hymnal\\.voxmedia\\.com/\" to=\"https://d3jpjf0yeaswad.cloudfront.net/\"/><rule from=\"^http://jobs\\.voxmedia\\.com/[^?]*\" to=\"https://www.voxmedia.com/careers\"/><rule from=\"^http://status\\.voxmedia\\.com/\" to=\"https://voxmedia.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voxel.net (broken)\" default_off=\"broken\" f=\"Voxel.xml\"><securecookie host=\"^(?:.*\\.)?vox(?:cdn\\.com|el\\.net)$\" name=\".*\"/><rule from=\"^http://(www\\.|portal\\.)?voxel\\.net/\" to=\"https://$1voxel.net/\"/><rule from=\"^http://(\\d[\\-\\w]*)\\.voxcdn\\.com/\" to=\"https://$1.voxcdn.com/\"/></ruleset>", "<ruleset name=\"Voxer (partial)\" f=\"Voxer.xml\"><securecookie host=\".+\\.voxer\\.com$\" name=\".+\"/><rule from=\"^http://((?:business|one|support|web|www)\\.)?voxer\\.com/\" to=\"https://$1voxer.com/\"/><rule from=\"^http://dev-10\\.voxer\\.com/assets/\" to=\"https://voxer.com/assets/\"/></ruleset>", "<ruleset name=\"Voxility.com\" f=\"Voxility.com.xml\"><rule from=\"^http://(?:www\\.)?voxility\\.com/\" to=\"https://www.voxility.com/\"/></ruleset>", "<ruleset name=\"Voyage-Prive.co.uk\" f=\"Voyage-Prive.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://voyage-prive\\.co\\.uk/\" to=\"https://www.voyage-prive.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voyage-Prive.com\" f=\"Voyage-Prive.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://voyage-prive\\.com/\" to=\"https://www.voyage-prive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voyage-Prive.it\" f=\"Voyage-Prive.it.xml\"><securecookie host=\"^\\.votage-prive\\.it$\" name=\"^PHPSESSID$\"/><securecookie host=\"^www\\.votage-prive\\.it$\" name=\"^ablim$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://voyage-prive\\.it/\" to=\"https://www.voyage-prive.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voyage Group.com\" f=\"Voyage_Group.com.xml\"><rule from=\"^http://www\\.voyagegroup\\.com/\" to=\"https://voyagegroup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voys.nl\" f=\"Voys.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vozpopuli.com\" f=\"Vozpopuli.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vpnbook.com\" f=\"Vpnbook.com.xml\"><securecookie host=\"^(?:webproxy)?\\.vpnbook\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vpnbook\\.com/\" to=\"https://www.vpnbook.com/\"/><rule from=\"^http://webproxy\\.vpnbook\\.com/\" to=\"https://webproxy.vpnbook.com/\"/></ruleset>", "<ruleset name=\"vpsBoard.com\" f=\"VpsBoard.com.xml\"><securecookie host=\"^(?:www\\.)?vpsboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vr.org (partial)\" f=\"Vr.org.xml\"><securecookie host=\"^www\\.vr\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vsexshop.ru (partial)\" f=\"Vsexshop.ru.xml\"><rule from=\"^http://(?:[lm]\\.vimgs|vsexshop)\\.ru/images/\" to=\"https://vsexshop.ru/images/\"/></ruleset>", "<ruleset name=\"Vtiger.com\" f=\"Vtiger.com.xml\"><securecookie host=\"^(?:\\.|forums\\.|www\\.)?vtiger\\.com$\" name=\".+\"/><rule from=\"^http://((?:blogs|discussions|forums|wiki|www)\\.)?vtiger\\.com/\" to=\"https://$1vtiger.com/\"/></ruleset>", "<ruleset name=\"Vtracy\" default_off=\"failed ruleset test\" f=\"Vtracy.de.xml\"><rule from=\"^http://vtracy\\.de/\" to=\"https://vtracy.de/\"/><rule from=\"^http://red\\.vtracy\\.de/\" to=\"https://red.vtracy.de/\"/></ruleset>", "<ruleset name=\"VuFind.org\" default_off=\"failed ruleset test\" f=\"VuFind.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vub.sk\" default_off=\"failed ruleset test\" f=\"Vub.sk.xml\"><rule from=\"^http://(?:www\\.)?vub\\.sk/\" to=\"https://www.vub.sk/\"/><rule from=\"^http://nib\\.vub\\.sk/\" to=\"https://nib.vub.sk/\"/></ruleset>", "<ruleset name=\"Vueling\" f=\"Vueling.xml\"><rule from=\"^http://vueling\\.com/\" to=\"https://vueling.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.vueling\\.com/\" to=\"https://$1.vueling.com/\"/></ruleset>", "<ruleset name=\"VulnHub.com\" f=\"VulnHub.com.xml\"><securecookie host=\"^\\.vulnhub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vulnscan.org\" f=\"Vulnscan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vultr.com\" f=\"Vultr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vulture.com (partial)\" f=\"Vulture.com.xml\"><securecookie host=\"^\\.vulture\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://stats\\.vulture\\.com/\" to=\"https://vulture-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"Vumanity.net (partial)\" f=\"Vumanity.net.xml\"><securecookie host=\"^\\.vumanity\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vungle.com (false MCB)\" platform=\"mixedcontent\" f=\"Vungle.com-falsemixed.xml\"><securecookie host=\"^\\.vungle\\.com$\" name=\".+\"/><rule from=\"^http://(blog|www)\\.vungle\\.com/\" to=\"https://$1.vungle.com/\"/></ruleset>", "<ruleset name=\"Vungle (partial)\" f=\"Vungle.xml\"><exclusion pattern=\"^http://(?:blog|www)\\.vungle\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^v\\.vungle\\.com$\" name=\".+\"/><rule from=\"^http://(v\\.|www\\.)?vungle\\.com/\" to=\"https://$1vungle.com/\"/><rule from=\"^http://blog\\.vungle\\.com/\" to=\"https://www.vungle.com/blog/\"/></ruleset>", "<ruleset name=\"Vuze.com (false MCB)\" platform=\"mixedcontent\" f=\"Vuze.com-falsemixed.xml\"><securecookie host=\"^\\.vuze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vuze.com (partial)\" f=\"Vuze.xml\"><securecookie host=\"^\\.vuze\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\".+\\.vuze\\.com$\" name=\".+\"/><rule from=\"^http://vuze\\.com/\" to=\"https://www.vuze.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vwd services.com (partial)\" f=\"Vwd_services.com.xml\"><rule from=\"^http://charting\\.vwdservices\\.com/\" to=\"https://charting.vwdservices.com/\"/></ruleset>", "<ruleset name=\"vwp.su\" f=\"Vwp.su.xml\"><securecookie host=\"^\\.vwp\\.su$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VxStream-Sandbox.com\" f=\"VxStream-Sandbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vzaar.com (partial)\" f=\"Vzaar.xml\"><securecookie host=\"^view\\.vzaar\\.com$\" name=\".+\"/><rule from=\"^http://static\\.vzaar\\.com/\" to=\"https://s3.amazonaws.com/static.vzaar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W-x.Co\" f=\"W-x.co.xml\"><rule from=\"^http://s\\.w-x\\.co/\" to=\"https://s.w-x.co/\"/></ruleset>", "<ruleset name=\"W.org\" f=\"W.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w00tads.com\" f=\"W00tads.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w1.fi\" f=\"W1.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W3.org (partial)\" f=\"W3C.xml\"><rule from=\"^http://(?:www\\.)?w3\\.org/\" to=\"https://www.w3.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W3Counter.com\" f=\"W3Counter.com.xml\"><securecookie host=\"^(?:www\\.)?w3counter\\.com$\" name=\"^AWSELB$\"/><securecookie host=\"^\\.w3counter\\.com$\" name=\"^(?:__cfduid|__qca|_\\d+_visitFlag|cf_clearance)$\"/><securecookie host=\"^www\\.w3counter\\.com$\" name=\"^symfony$\"/><securecookie host=\"^(?:\\.|www\\.)?w3counter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W4a.fr\" f=\"W4a.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w55c.net\" f=\"W55c.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WAE+\" default_off=\"connection reset\" f=\"WAE_Plus.xml\"><securecookie host=\"^\\.waeplus\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WANdisco.com (partial)\" f=\"WANdisco.com.xml\"><securecookie host=\"^support\\.wandisco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WAPY (partial)\" default_off=\"expired, self-signed\" f=\"WAPY.xml\"><rule from=\"^http://(?:dev1\\.|www\\.)?wapy\\.com/(css|imagedb|images)/\" to=\"https://wapy.com/$1/\"/></ruleset>", "<ruleset name=\"W.A.S.T.E.\" default_off=\"self-signed\" f=\"WASTE.xml\"><rule from=\"^http://(?:www\\.)?waste\\.org/\" to=\"https://waste.org/\"/></ruleset>", "<ruleset name=\"WAYF.dk (partial)\" f=\"WAYF.dk.xml\"><securecookie host=\"^janus\\.wayf\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WB Play.com\" f=\"WB_Play.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WD2go.com\" f=\"WD2go.com.xml\"><securecookie host=\"^www\\.wd2go\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wd2go\\.com/\" to=\"https://www.wd2go.com/\"/></ruleset>", "<ruleset name=\"WDWS (partial)\" f=\"WDWS.xml\"><rule from=\"^http://(?:www\\.)?wdws\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.wdws.com/$1\"/></ruleset>", "<ruleset name=\"WEBxMedia\" f=\"WEBxMedia.xml\"><securecookie host=\"^\\.webxmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WEDOS\" f=\"WEDOS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WE Forum.org (partial)\" f=\"WE_Forum.org.xml\"><securecookie host=\"^\\.weforum\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WF NC News.com\" platform=\"mixedcontent\" f=\"WF_NC_News.com.xml\"><securecookie host=\"^\\.wfncnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHATWG.org\" f=\"WHATWG.org.xml\"><rule from=\"^http://whatwg\\.org/\" to=\"https://whatwg.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHI CDN.com\" f=\"WHI_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHMCS.com (partial)\" f=\"WHMCS.xml\"><securecookie host=\"^(?:.*\\.)?whmcs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHMS-FM (partial)\" f=\"WHMS-FM.xml\"><rule from=\"^http://(?:www\\.)?whms\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.whms.com/$1\"/></ruleset>", "<ruleset name=\"WHO.int (broken)\" default_off=\"broken\" f=\"WHO.int.xml\"><rule from=\"^http://www\\.who\\.int/\" to=\"https://www.who.int/\"/><rule from=\"^http://who\\.int/\" to=\"https://www.who.int/\"/></ruleset>", "<ruleset name=\"WHSmith (partial)\" f=\"WHSmith.xml\"><exclusion pattern=\"^http://(?:www\\.)?whsmith\\.co\\.uk/(?!App_Themes/|(?:Books|CatalogAndSearch|E?Products|GiftCardProducts|Voting)(?:$|\\?|/)|favicon\\.ico|GiftsGamesAndToys/\\w|[iI]mages/|Script/|StationeryAndCards/\\w|[sS]upport/|WebResource\\.axd)\"/><securecookie host=\"^(?:www\\.)?magazines\\.whsmith\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?whsmith\\.co\\.uk/\" to=\"https://secure.whsmith.co.uk/\"/><rule from=\"^http://(www\\.)?magazines\\.whsmith\\.co\\.uk/\" to=\"https://$1magazines.whsmith.co.uk/\"/></ruleset>", "<ruleset name=\"WHYY.org\" f=\"WHYY.org.xml\"><securecookie host=\"^\\.whyy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?whyy\\.org/\" to=\"https://www.whyy.org/\"/></ruleset>", "<ruleset name=\"WIMM.com (partial)\" f=\"WIMM.com.xml\"><securecookie host=\"^\\.?my\\.wimm\\.com$\" name=\".+\"/><rule from=\"^http://my\\.wimm\\.com/\" to=\"https://my.wimm.com/\"/></ruleset>", "<ruleset name=\"WIPmania\" f=\"WIPmania.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WLD CDN.net\" f=\"WLD_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WLxrs.com\" f=\"WLxrs.com.xml\"><rule from=\"^http://(\\w+)\\.wlxrs\\.com/\" to=\"https://$1.wlxrs.com/\"/></ruleset>", "<ruleset name=\"WM Jobs.co.uk\" f=\"WM_Jobs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WNYC.org\" f=\"WNYC.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WOW Analytics.co.uk (partial)\" f=\"WOW_Analytics.co.uk.xml\"><rule from=\"^http://(app|t|test\\.t)\\.wowanalytics\\.co\\.uk/\" to=\"https://$1.wowanalytics.co.uk/\"/></ruleset>", "<ruleset name=\"WP Engine.com\" f=\"WP-Engine.xml\"><exclusion pattern=\"^http://([\\w.-]+)\\.([\\w-]+)\\.wpengine\\.com\"/><securecookie host=\"^(?:.*\\.)?wpengine\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.wpengine\\.com/\" to=\"https://wpengine.com/\"/><rule from=\"^http://press\\.wpengine\\.com/\" to=\"https://wpengine.totemapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP-Tao.com\" f=\"WP-Tao.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP.pl (problematic)\" default_off=\"mismatched\" f=\"WP.pl-problematic.xml\"><securecookie host=\"^diety\\.wp\\.pl$\" name=\".+\"/><rule from=\"^http://diety\\.wp\\.pl/\" to=\"https://diety.wp.pl/\"/></ruleset>", "<ruleset name=\"WP.pl (partial)\" f=\"WP.pl.xml\"><exclusion pattern=\"^http://profil\\.wp\\.pl/(?!css/|favicon\\.ico|(?:login|obrazek|rejestracja)\\.html)\"/><securecookie host=\"^\\.wp\\.pl$\" name=\"^statid$\"/><securecookie host=\"^(?!profil\\.)\\w\" name=\".\"/><securecookie host=\"^\\.pasazfin\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WPML.org\" f=\"WPML.org.xml\"><rule from=\"^http://www\\.wpml\\.org/\" to=\"https://wpml.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WPP.com\" f=\"WPP.xml\"><securecookie host=\"^(?:inside|www)\\.wpp\\.com$\" name=\".+\"/><rule from=\"^http://wpp\\.com/\" to=\"https://www.wpp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP Engine Status.com\" f=\"WP_Engine_Status.com.xml\"><rule from=\"^http://(?:www\\.)?wpenginestatus\\.com/\" to=\"https://wpenginestatus.com/\"/></ruleset>", "<ruleset name=\"WP Software.net\" f=\"WP_Software.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP VulnDB.com\" f=\"WP_VulnDB.com.xml\"><rule from=\"^http://(?:www\\.)?wpvulndb\\.com/\" to=\"https://wpvulndb.com/\"/></ruleset>", "<ruleset name=\"WP digital.net (partial)\" f=\"WP_digital.net.xml\"><rule from=\"^http://css\\.wpdigital\\.net/\" to=\"https://ssl.washingtonpost.com/\"/><rule from=\"^http://echoapi\\.wpdigital\\.net/\" to=\"https://api.echoenabled.com/\"/></ruleset>", "<ruleset name=\"WPdev.ms (partial)\" f=\"WPdev.ms.xml\"><rule from=\"^http://wpdev\\.ms/$\" to=\"https://bitly.com/\"/></ruleset>", "<ruleset name=\"WRAL.com\" default_off=\"failed ruleset test\" f=\"WRAL.com.xml\"><securecookie host=\"^\\.wral\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?wral\\.com/\" to=\"https://$1wral.com/\"/><rule from=\"^http://wwwcache\\.wral\\.com/\" to=\"https://www.wral.com/\"/></ruleset>", "<ruleset name=\"WSO2.com (partial)\" f=\"WSO2.com.xml\"><exclusion pattern=\"^http://wso2\\.com/+(?!favicon\\.ico|user(?:$|[?/]))\"/><rule from=\"^http://((?:connect|\\w\\.content|support|www)\\.)?wso2\\.com/\" to=\"https://$1wso2.com/\"/></ruleset>", "<ruleset name=\"WSWS.org\" f=\"WSWS.xml\"><rule from=\"^http://wsws\\.org/\" to=\"https://www.wsws.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WTFuzz.com\" f=\"WTFUzz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WTF is my IP.com\" f=\"WTFismyIP.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WTO.org (partial)\" f=\"WTO.org.xml\"><securecookie host=\"^(?:docs|erecruitment|etraining)\\.wto\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WU Payment Solutions.com (expired)\" default_off=\"expired\" f=\"WU_Payment_Solutions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWE.com (partial)\" f=\"WWE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWTE (partial)\" default_off=\"failed ruleset test\" f=\"WWTE.xml\"><securecookie host=\"^\\.(?:travel\\.)?wwte1\\.com$\" name=\".+\"/><securecookie host=\"^uk\\.wwte4\\.com$\" name=\".+\"/><securecookie host=\"^\\.?euro\\.wwte7\\.com$\" name=\".+\"/><securecookie host=\"^aus\\.wwte8\\.com$\" name=\".+\"/><securecookie host=\"^se\\.wwte9\\.com$\" name=\".+\"/><rule from=\"^http://media\\.wwte\\.com/\" to=\"https://media.wwte.com/\"/><rule from=\"^http://(travel\\.|www\\.)?wwte1\\.com/\" to=\"https://$1wwte1.com/\"/><rule from=\"^http://www\\.wwte(?:2|3|1\\d)\\.com/(?:default\\.htm|pubspec/scripts/default\\.asp)?(?:\\?.*)?$\" to=\"https://travel.wwte1.com/pubspec/scripts/eap.asp?eapid=0-30001\"/><rule from=\"^http://wwte4\\.com/(\\?.*)?$\" to=\"https://uk.wwte4.com/Default.aspx$1\"/><rule from=\"^http://uk\\.wwte4\\.com/\" to=\"https://uk.wwte4.com/\"/><rule from=\"^http://wwte7\\.com/(\\?.*)?$\" to=\"https://euro.wwte7.com/Default.aspx$1\"/><rule from=\"^http://euro\\.wwte7\\.com/\" to=\"https://euro.wwte7.com/\"/><rule from=\"^http://wwte8\\.com/(\\?.*)?$\" to=\"https://aus.wwte8.com/Default.aspx$1\"/><rule from=\"^http://aus\\.wwte8\\.com/\" to=\"https://aus.wwte8.com/\"/><rule from=\"^http://wwte9\\.com/(\\?.*)?$\" to=\"https://se.wwte9.com/Default.aspx$1\"/><rule from=\"^http://wwte10\\.com/(?:default\\.htm|pubspec/scripts/default\\.asp)?(?:\\?.*)?$\" to=\"https://travel.wwte1.com/pubspec/scripts/eap.asp?eapid=0-30001\"/><rule from=\"^http://travel\\.wwte10\\.com/\" to=\"https://travel.wwte10.com/\"/></ruleset>", "<ruleset name=\"WaBi.com\" f=\"WaBi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WaPo Labs.com (partial)\" f=\"WaPo_Labs.com.xml\"><rule from=\"^http://bunsen\\.wapolabs\\.com/\" to=\"https://d2pe20ur0h0p8p.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Waag.org\" default_off=\"missing certificate chain\" f=\"Waag.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wachovia.com (partial)\" f=\"Wachovia.xml\"><securecookie host=\"^myed\\.wachovia\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wacken.com (partial)\" f=\"Wacken.com.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://www\\.wacken\\.com/anfahrt-widget/index-(de|en)\\.php\"/></ruleset>", "<ruleset name=\"Waeckerlin.org\" f=\"Waeckerlin.org.xml\"><rule from=\"^http://(?:marc\\.|www\\.)?waeckerlin\\.org/\" to=\"https://marc.waeckerlin.org/\"/></ruleset>", "<ruleset name=\"Waffle.io\" f=\"Waffle.io.xml\"><securecookie host=\"^\\.?waffle\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waffles.fm\" f=\"Waffles.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wageworks.com\" f=\"Wageworks.com.xml\"><rule from=\"^http://(www\\.)?wageworks\\.com/\" to=\"https://www.wageworks.com/\"/></ruleset>", "<ruleset name=\"Wagner College\" f=\"Wagner.xml\"><rule from=\"^http://(?:www\\.)?wagner\\.edu/\" to=\"https://wagner.edu/\"/></ruleset>", "<ruleset name=\"Wahanda.net (partial)\" f=\"Wahanda.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waindigo.org\" f=\"Waindigo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waitrose.com (partial)\" f=\"Waitrose.com.xml\"><rule from=\"^http://(?:www\\.)?waitrose\\.com/(?=content/|favicon\\.ico|(?:errors/error_)?images/|home/mywaitrose/|(?:shop/(?:GetCustomerOrders|MyAccount|MyAddresses)|webapp/wcs/stores/servlet/LogonForm)(?:$|\\?))\" to=\"https://www.waitrose.com/\"/></ruleset>", "<ruleset name=\"Waitrose Direct.com (partial)\" f=\"Waitrose_Direct.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?waitrosedirect\\.com/+(?!favicon\\.ico|info/|wcsstore/SharedStoreFront/Custom/|webapp/)\"/><rule from=\"^http://(?:images\\.|www\\.)?waitrosedirect\\.com/\" to=\"https://www.waitrosedirect.com/\"/></ruleset>", "<ruleset name=\"WakaTime.com\" f=\"WakaTime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wakelet.com\" f=\"Wakelet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wal.co\" f=\"Wal.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wald.intevation.org\" f=\"Wald.Intevation.org.xml\"><securecookie host=\"^wald\\.intevation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walder Wyss.com\" f=\"Walder_Wyss.com.xml\"><rule from=\"^http://(?:www\\.)?walderwyss\\.com/\" to=\"https://www.walderwyss.com/\"/></ruleset>", "<ruleset name=\"Wales.gov.uk (partial)\" f=\"Wales.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walgreens (partial)\" f=\"Walgreens.xml\"><exclusion pattern=\"^http://(?:www\\.)?walgreens\\.com/(?!common/|images/)\"/><securecookie host=\"^\\.walgreens\\.com$\" name=\"^s_\\w\\w$\"/><rule from=\"^http://((?:img2|news|www)\\.)?walgreens\\.com/\" to=\"https://$1walgreens.com/\"/></ruleset>", "<ruleset name=\"Walking Men\" f=\"Walking_Men.xml\"><securecookie host=\"^\\.walkingmen\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?walkingmen\\.com/\" to=\"https://www.walkingmen.com/\"/></ruleset>", "<ruleset name=\"wallabag.org (partial)\" f=\"Wallabag.org.xml\"><exclusion pattern=\"^http://doc\\.wallabag\\.org/+(?!css/)\"/><securecookie host=\"^\\.wallabag\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wallet.La\" f=\"Wallet.La.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WalletGenerator.net\" default_off=\"missing certificate chain\" f=\"WalletGenerator.net.xml\"><rule from=\"^http://www\\.walletgenerator\\.net/\" to=\"https://walletgenerator.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walmart.com (false MCB)\" platform=\"mixedcontent\" f=\"Walmart.com-falsemixed.xml\"><securecookie host=\"^help\\.walmart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walmart.com (partial)\" f=\"Walmart.com.xml\"><exclusion pattern=\"^http://www\\.walmart\\.com/+(?!client_side_redirect\\.gsp|(?:account|cservice)(?:$|[?/])|favicon\\.ico|i/|logout\\.do)\"/><exclusion pattern=\"^http://help\\.walmart\\.com/+(?!euf/(?:assets|rightnow)/|favicon\\.ico)\"/><securecookie host=\"^(?:accionistas|beacon\\.affil|affiliates|beacon\\.(?:beta|classrooms)|corporate|(?:cms|es)\\.corporate|corporativo|foundation|es\\.foundation|fundacion|news|es\\.news|noticias|savingscatcher|beacon\\.s(?:avingscatcher|tage)|stock|es\\.stock|suppliercenter)\\.walmart\\.com$\" name=\".+\"/><rule from=\"^http://walmart\\.com/\" to=\"https://www.walmart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walmart images.com\" f=\"Walmart_images.com.xml\"><securecookie host=\"^secure\\.walmartimages\\.com$\" name=\".+\"/><rule from=\"^http://i2?\\.walmartimages\\.com/\" to=\"https://i-secure.walmartimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waltham Forest.gov.uk (partial)\" f=\"Waltham_Forest.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://walthamforest\\.gov\\.uk/\" to=\"https://www.walthamforest.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walthers\" default_off=\"failed ruleset test\" f=\"Walthers.xml\"><rule from=\"^http://(?:www\\.)?walthers\\.com/\" to=\"https://walthers.com/\"/></ruleset>", "<ruleset name=\"Wamba.com (partial)\" f=\"Wamba.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wamba CDN.net (partial)\" f=\"Wamba_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wand.com\" f=\"Wand.com.xml\"><securecookie host=\"^(?:www\\.)?wand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wanglibao.com\" f=\"Wanglibao.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wangyin.com (partial)\" f=\"Wangyin.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://wangyin\\.com/+\" to=\"https://www.wangyin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WaniKani\" f=\"Wanikani.com.xml\"><rule from=\"^http://(www\\.)?wanikani\\.com/\" to=\"https://www.wanikani.com/\"/></ruleset>", "<ruleset name=\"Wantful\" default_off=\"failed ruleset test\" f=\"Wantful.xml\"><securecookie host=\"^(?:.*\\.)?wantful\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"play War Z.com\" f=\"War_Z.xml\"><securecookie host=\"^(?:account)?\\.playwarz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warez-BB.org (problematic)\" default_off=\"expired\" f=\"Warez-BB.org-problematic.xml\"><securecookie host=\"^www\\.warez-bb\\.org$\" name=\".+\"/><rule from=\"^http://img9\\.warez-bb\\.org/\" to=\"https://img9.warez-bb.org/\"/><rule from=\"^http://(?:www\\.)?warez-bb\\.org/\" to=\"https://www.warez-bb.org/\"/></ruleset>", "<ruleset name=\"Warframe.com\" f=\"Warframe.com.xml\"><securecookie host=\"^\\.warframe\\.com$\" name=\".+\"/><rule from=\"^http://store\\.warframe\\.com/\" to=\"https://digital-extremes.myshopify.com/\"/><rule from=\"^http://support\\.warframe\\.com/.*\" to=\"https://digitalextremes.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wargaming.net\" default_off=\"failed ruleset test\" f=\"Wargaming.net.xml\"><securecookie host=\"^wargaming\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wargaming\\.com/\" to=\"https://wargaming.com/\"/><rule from=\"^http://((?:eu|na|ru|sea|www)\\.)?wargaming\\.net/\" to=\"https://$1wargaming.net/\"/></ruleset>", "<ruleset name=\"warmcat.com\" f=\"Warmcat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WarmlyYours\" f=\"WarmlyYours.xml\"><securecookie host=\"^.*\\.warmlyyours\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warner Artists\" f=\"Warner-Artists.xml\"><rule from=\"^http://(?:www\\.)?warnerartists\\.com/\" to=\"https://www.warnerartists.com/\"/></ruleset>", "<ruleset name=\"Warner Bros.com (partial)\" f=\"Warner_Bros.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"warosu.org\" f=\"Warosu.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warrington.gov.uk (partial)\" f=\"Warrington.gov.uk.xml\"><securecookie host=\"^(?!\\.warrington\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WartStick.com (false MCB)\" platform=\"mixedcontent\" f=\"WartStick.com.xml\"><securecookie host=\"^\\.wartstick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warwickshire Police\" f=\"WarwickshirePolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wz2100.net (partial)\" f=\"Warzone2100.xml\"><securecookie host=\"^(?:.*\\.)?wz2100\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wash Post.com (partial)\" f=\"Wash_Post.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington Post Company (mismatches)\" default_off=\"mismatched\" f=\"Washington-Post-Company-mismatches.xml\"><rule from=\"^http://(?:www\\.)?washingtonpostmedia\\.com/\" to=\"https://www.washingtonpostmedia.com/\"/><rule from=\"^http://(?:www\\.)?washpostco\\.com/\" to=\"https://www.washpostco.com/\"/></ruleset>", "<ruleset name=\"Washington Post.com (partial)\" f=\"Washington-Post-Company.xml\"><exclusion pattern=\"^http://www\\.washingtonpost\\.com/(?:sf/national/+[^/]|wp-srv/graphics/templates/mobile/css/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://metrics\\.washingtonpost\\.com/\" to=\"https://washingtonpost.112.2o7.net/\"/><rule from=\"^http://wp-eng-static\\.washingtonpost\\.com/\" to=\"https://d2t2kgdkdgawhh.cloudfront.net/\"/><rule from=\"^http://www\\.washingtonpost\\.com/sf/national/$\" to=\"https://www.washingtonpost.com/national/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Washington Times (partial)\" f=\"Washington_Times.xml\"><securecookie host=\"^(?:iservices|subscription)\\.washingtontimes\\.com$\" name=\".+\"/><rule from=\"^http://(iservices|subscription)\\.washingtontimes\\.com/\" to=\"https://$1.washingtontimes.com/\"/></ruleset>", "<ruleset name=\"WUStL.edu (problematic)\" default_off=\"mismatched, self-signed\" f=\"Washington_University_in_St_Louis-problematic.xml\"><exclusion pattern=\"^http://(?:digitalcommons|openscholarship)\\.wustl\\.edu/assets/\"/><securecookie host=\"^(?:digitalcommons|\\.?meded\\.dom|openscholarship|helpdesk\\.|samfox|\\.?lli\\.ucollege)\\.wustl\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WUStL.edu (partial)\" f=\"Washington_University_in_St_Louis.xml\"><exclusion pattern=\"^http://www\\.ot\\.wustl\\.edu/(?!css/|fonts/|images/|js/|mm/images/|RadControls/|(?:Script|Web)Resource\\.axd|UltimateSearchInclude/)\"/><exclusion pattern=\"^http://tlcenter\\.wustl\\.edu/+(?!coursebasket/publicCourseBasket\\.do|css/|images/|portal(?:$|[?/])|restricted/|srs/upload/)\"/><securecookie host=\"^\\.mir\\.wustl\\.edu$\" name=\"^cadata[\\dA-F]{32}$\"/><securecookie host=\"^(?!ot\\.|www\\.ot\\.|tlcenter\\.)\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance|__qca)$\"/><securecookie host=\"^\\.secure\\.biostat\\.wustl\\.edu$\" name=\".\"/><rule from=\"^http://www\\.(alumni|biostatistics|bulletinoftheschoolofmedicine|diningservices)\\.wustl\\.edu/.*\" to=\"https://$1.wustl.edu/\"/><rule from=\"^http://(?:www\\.)?artsci\\.wustl\\.edu/\" to=\"https://computing.artsci.wustl.edu/\"/><exclusion pattern=\"^http://(?:www\\.)?artsci\\.wustl\\.edu/(?!sites/)\"/><rule from=\"^http://(?:www\\.becker|beckerweb2?)\\.wustl\\.edu/(?:\\?.*)?$\" to=\"https://becker.wustl.edu/\"/><rule from=\"^http://(?:www\\.becker|beckerweb2?)\\.wustl\\.edu/.*\" to=\"https://becker.wustl.edu/wip/404.html\"/><rule from=\"^http://(?:www\\.biology|biology4)\\.wustl\\.edu/.*\" to=\"https://wubio.wustl.edu/\"/><exclusion pattern=\"^http://(?:www\\.biology|biology4)\\.wustl\\.edu/+(?!$|\\?)\"/><rule from=\"^http://www\\.(cait|card|communityservice|complianceoffice|careercenter|careers|codeofconduct|cornerstone|ehs|eliotsocietyvolunteer|emergency|engineering|facultysenate|gephardtinstitute|getinvolved|glo|i-?cares|illiad|library|law|medicine|pacs|parents|parking|oiss|oisshome|police|publichealth|registrar|sc|schoolpartnership|spa|spokane|sustainability|teachingcenter|ucollege|undergraduatecouncil|visitor|wulife|wupd|wusmhealth)\\.wustl\\.edu/\" to=\"https://$1.wustl.edu/\"/><rule from=\"^http://catalog\\.wustl\\.edu/\" to=\"https://spokane.wustl.edu/\"/><rule from=\"^http://digitalcommons\\.wustl\\.edu/\" to=\"https://dcwustl.bepress.com/\"/><exclusion pattern=\"^http://digitalcommons\\.wustl\\.edu/(?!assets/)\"/><rule from=\"^http://evals\\.wustl\\.edu/[^?]*\" to=\"https://asapps.artsci.wustl.edu/evals/login.asp\"/><rule from=\"^http://hipaa\\.wustl\\.edu/\" to=\"https://secpriv.wusm.wustl.edu/privacy/default.aspx\"/><rule from=\"^http://myreslife\\.wustl\\.edu/+\" to=\"https://reslife.wustl.edu/\"/><exclusion pattern=\"^http://myreslife\\.wustl\\.edu/+(?!$|\\?)\"/><rule from=\"^http://openscholarship\\.wustl\\.edu/\" to=\"https://dcwustlmain.bepress.com/\"/><exclusion pattern=\"^http://openscholarship\\.wustl\\.edu/(?!assets/)\"/><rule from=\"^http://(mir|ot)\\.wustl\\.edu/\" to=\"https://www.$1.wustl.edu/\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+$\" to=\"https://outlook.office365.com/owa/?realm=samfox.wustl.edu&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=samfox.wustl.edu&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+(.+)\" to=\"https://outlook.office365.com/$1&realm=samfox.wustl.edu&vd=autodiscover\"/><rule from=\"^http://(?:www\\.)?studentrecords\\.wustl\\.edu/AcadCalendar\" to=\"https://registrar.wustl.edu/academic-calendars/\"/><rule from=\"^http://(?:www\\.)?studentrecords\\.wustl\\.edu/\" to=\"https://registrar.wustl.edu/\"/><exclusion pattern=\"^http://(?:www\\.)?studentrecords\\.wustl\\.edu/(?!$|\\?|AcadCalendar(?:$|\\?))\"/><rule from=\"^http://swi\\.ucollege\\.wustl\\.edu/\" to=\"https://summerschool.wustl.edu/swi/\"/><rule from=\"^http://ur\\.wustl\\.edu/+\" to=\"https://undergradresearch.wustl.edu/\"/><exclusion pattern=\"^http://ur\\.wustl\\.edu/+(?!$|\\?)\"/><rule from=\"^http://fpp\\.wusm\\.wustl\\.edu/\" to=\"https://fpp.wustl.edu/\"/><rule from=\"^http://wusmproserv\\.wustl\\.edu/+\" to=\"https://facilities.med.wustl.edu/security/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington University in St. Louis Alumni Association\" f=\"Washington_University_in_St_Louis_Alumni_Association.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?wustlconnections\\.com/[^?]*\" to=\"https://alumni.wustl.edu/Pages/default.aspx\"/></ruleset>", "<ruleset name=\"Wasilczyk.pl\" f=\"Wasilczyk.pl.xml\"><securecookie host=\"^\\.blog\\.wasilczyk\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watch Medier.dk\" f=\"WatchMedier.xml\"><rule from=\"^http://www\\.watchmedier\\.dk/\" to=\"https://watchmedier.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WatchMaxx\" f=\"Watchmaxx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Water-Challenge.com (partial)\" f=\"Water-Challenge.com.xml\"><rule from=\"^http://(www\\.)?water-challenge\\.com/(image\\.axd|Styles/|themes/)\" to=\"https://$1water-challenge.com/$2\"/></ruleset>", "<ruleset name=\"Water.org (partial)\" f=\"Water.org.xml\"><exclusion pattern=\"^http://(?:give\\.|www\\.)?water\\.org/(?!favicon\\.ico|media/|static/)\"/><securecookie host=\"^contribute\\.water\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?water\\.org/\" to=\"https://water.org/\"/><rule from=\"^http://(contribut|giv)e\\.water\\.org/\" to=\"https://$1e.water.org/\"/></ruleset>", "<ruleset name=\"Water Marquee\" f=\"Water_Marquee.xml\"><securecookie host=\"^(?:.*\\.)?watermarquee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waterfox project.org\" f=\"Waterfox_project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watershed\" default_off=\"failed ruleset test\" f=\"Watershed.xml\"><rule from=\"^http://(?:www\\.)?watershed\\.co\\.uk/\" to=\"https://www.watershed.co.uk/\"/><rule from=\"^http://piwik\\.watershed\\.co\\.uk/\" to=\"https://piwik.watershed.co.uk/\"/></ruleset>", "<ruleset name=\"Watkins.edu\" default_off=\"failed ruleset test\" f=\"Watkins.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watsi.org\" f=\"Watsi.org.xml\"><rule from=\"^http://(?:www\\.)?watsi\\.org/\" to=\"https://watsi.org/\"/></ruleset>", "<ruleset name=\"Watson Institute.org\" default_off=\"expired, self-signed\" f=\"Watson_Institute.org.xml\"><securecookie host=\"^watsoninstitute\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?watsoninstitute\\.org/\" to=\"https://watsoninstitute.org/\"/></ruleset>", "<ruleset name=\"Wattpad.com (partial)\" f=\"Wattpad.com.xml\"><securecookie host=\"^(?:shop|www)?\\.wattpad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wauland.de\" f=\"Wauland.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WaveCon.de\" f=\"WaveCon.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wavpin\" f=\"Wavpin.xml\"><securecookie host=\"^\\.wavpin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WayTools.com\" f=\"WayTools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"waymoot.org\" f=\"Waymoot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wayskinny.com\" f=\"Wayskinny.com.xml\"><securecookie host=\"^\\.?wayskinny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wazapp\" default_off=\"mismatched, self-signed\" f=\"Wazapp.xml\"><rule from=\"^http://(?:www\\.)?wazapp\\.im/\" to=\"https://wazapp.im/\"/></ruleset>", "<ruleset name=\"Waze.com (partial)\" f=\"Waze.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westdeutscher Rundfunk\" f=\"Wdr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We-Energies.com\" f=\"We-Energies.com.xml\"><securecookie host=\"^(?:profile|www)\\.we-energies\\.com$\" name=\".+\"/><rule from=\"^http://we-energies\\.com/\" to=\"https://www.we-energies.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Heart It.com\" f=\"We-Heart-It.xml\"><securecookie host=\"^\\.?weheartit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeChat (partial)\" default_off=\"failed ruleset test\" f=\"WeChat.xml\"><rule from=\"^http://((?:admin|compass\\.admin|api|file\\d|login|res|support|video|web\\d?|webpush\\d?|www)\\.)?wechat\\.com/\" to=\"https://$1wechat.com/\"/></ruleset>", "<ruleset name=\"WeGotEd.com\" default_off=\"expired\" f=\"WeGotEd.com.xml\"><securecookie host=\"^(?:www\\.)?wegoted\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeGotWax.com\" default_off=\"failed ruleset test\" f=\"WeGotWax.com.xml\"><securecookie host=\"^(?:www)?\\.wegotwax.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wegotwax\\.com/\" to=\"https://www.wegotwax.com/\"/></ruleset>", "<ruleset name=\"WeMonIt.de\" f=\"WeMonIt.de.xml\"><securecookie host=\"^(?:www\\.)?wemonit\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WePay (partial)\" f=\"WePay.xml\"><securecookie host=\"^.+\\.wepay\\.com$\" name=\".+\"/><rule from=\"^http://((?:stage|static|support|t|www)\\.)?wepay\\.com/\" to=\"https://$1wepay.com/\"/></ruleset>", "<ruleset name=\"WeRoSys.de (partial)\" f=\"WeRoSys.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeSwap.com\" f=\"WeSwap.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeTransfer\" f=\"WeTransfer.xml\"><securecookie host=\"^(?:www\\.)?wetransfer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Use Coins.com\" f=\"WeUseCoins.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Are Wizards.io\" f=\"We_Are_Wizards.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Fight Censorship (partial)\" default_off=\"failed ruleset test\" f=\"We_Fight_Censorship.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Need to Know.info\" f=\"We_Need_to_Know.info.xml\"><securecookie host=\"^\\.weneedtoknow\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We The Goondas.in\" f=\"We_The_Goondas.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"weakdh.org\" f=\"Weakdh.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weather Underground (buggy)\" default_off=\"breaks storm reports\" f=\"Weather-Underground.xml\"><rule from=\"^http://(?:icons(?:-ak)?\\.|www\\.)?w(?:underground|xug)\\.com/(css/|i/wu?/|(?:login|members/signup)\\.asp(?:$|\\?))\" to=\"https://www.wunderground.com/$1\"/></ruleset>", "<ruleset name=\"Weather.com (partial)\" f=\"Weather.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weather.gov (partial)\" f=\"Weather.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeatherSpark\" f=\"WeatherSpark.xml\"><rule from=\"^http://(?:www\\.)?weatherspark\\.com/\" to=\"https://weatherspark.com/\"/></ruleset>", "<ruleset name=\"Weather Decision Technologies\" f=\"Weather_Decision_Technologies.xml\"><rule from=\"^http://support\\.wdtinc\\.com/(?:$|\\?.*)\" to=\"https://wdt.zendesk.com/\"/><rule from=\"^http://weather\\.wdtinc\\.com/\" to=\"https://weather.wdtinc.com/\"/></ruleset>", "<ruleset name=\"Weatherzone (partial)\" f=\"Weatherzone.xml\"><exclusion pattern=\"^http://resources\\.weatherzone\\.com\\.au/(?:images/widgets/graphics|wz/images/(?:ads|openx|widgets/graphics))/\"/><rule from=\"^http://weatherzone\\.com\\.au/\" to=\"https://www.weatherzone.com.au/\"/><rule from=\"^http://www\\.weatherzone\\.com\\.au/(customise\\.jsp|i(mag|nclud)es/|join/)\" to=\"https://www.weatherzone.com.au/$1\"/><rule from=\"^http://resources\\.weatherzone\\.com\\.au/(?:wz/)?i(mag|nclud)es/\" to=\"https://www.weatherzone.com.au/i$1es/\"/></ruleset>", "<ruleset name=\"Web Hosting Search (partial)\" default_off=\"failed ruleset test\" f=\"Web-Hosting-Search.xml\"><rule from=\"^http://stat\\.webhostingsearch\\.com/\" to=\"https://webhostingsearch.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Web Hosting Talk (partial)\" f=\"Web-Hosting-Talk.xml\"><securecookie host=\"^\\.webhostingtalk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Inspector.com\" f=\"Web-Inspector.xml\"><securecookie host=\"^(?:app|www)\\.webinspector\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Power (partial)\" default_off=\"failed ruleset test\" f=\"Web-Power.xml\"><securecookie host=\"^www\\.webpower\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webpower\\.nl/\" to=\"https://www.webpower.nl/\"/></ruleset>", "<ruleset name=\"Web Reservations International (partial)\" default_off=\"Breaks site\" f=\"Web-Reservations-International.xml\"><securecookie host=\"^secure\\.bookhostels\\.com$\" name=\".*\"/><securecookie host=\"^vsecure\\.hostelworld\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.webresint\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.bookhostels\\.com/\" to=\"https://secure.bookhostels.com/\"/><rule from=\"^http://(?:images\\.hostel(?:s|world)|(?:images|static)\\.webresint)\\.com/\" to=\"https://static.webresint.com/\"/><rule from=\"^http://(?:vsecure|www)\\.hostelworld\\.com/\" to=\"https://vsecure.hostelworld.com/\"/><rule from=\"^http://ccd\\.hwstatic\\.com/\" to=\"https://ucd.hwstatic.com/\"/><rule from=\"^http://scd\\.hwstatic\\.com/\" to=\"https://icd.hwstatic.com/\"/><rule from=\"^http://shccd\\.hwstatic\\.com/\" to=\"https://ihccd.hwstatic.com/\"/><rule from=\"^http://(icd|ihccd|ucd)\\.hwstatic\\.com/\" to=\"https://$1.hwstatic.com/\"/><rule from=\"^http://secure\\.webresint\\.com/\" to=\"https://secure.webresint.com/\"/></ruleset>", "<ruleset name=\"Web-Stat.net\" f=\"Web-Stat.net.xml\"><securecookie host=\"^\\.web-stat\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?web-stat\\.net/\" to=\"https://www.web-stat.net/\"/></ruleset>", "<ruleset name=\"web-hosting.com (partial)\" f=\"Web-hosting.com.xml\"><securecookie host=\"^support\\.web-hosting\\.com$\" name=\".+\"/><rule from=\"^http://kb\\.web-hosting\\.com/\" to=\"https://web-hosting.simplekb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"web-registry.com\" default_off=\"failed ruleset test\" f=\"Web-registry.com.xml\"><rule from=\"^http://(?:www\\.)?web-registry\\.com/\" to=\"https://web-registry.com/\"/></ruleset>", "<ruleset name=\"web-services.com.au\" f=\"Web-servers.com.au.xml\"><securecookie host=\".*\\.web-servers\\.com\\.au$\" name=\".+\"/><rule from=\"^http://s(\\d+)\\.web-servers\\.com\\.au/\" to=\"https://s$1.web-servers.com.au/\"/></ruleset>", "<ruleset name=\"web-stat.com\" f=\"Web-stat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web.com (expired)\" default_off=\"expired\" f=\"Web.com-expired.xml\"><rule from=\"^http://webhosting\\.web\\.com/\" to=\"https://webhosting.web.com/\"/></ruleset>", "<ruleset name=\"Web.com (partial)\" f=\"Web.com.xml\"><securecookie host=\"^(?:.*\\.)?web\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?web\\.com/\" to=\"https://www.web.com/\"/><rule from=\"^http://(support|webmail)\\.web\\.com/\" to=\"https://$1.web.com/\"/><rule from=\"^http://wpc\\.016b\\.edgecastcdn\\.net/00016B/\" to=\"https://ne1.wpc.edgecastcdn.net/00016B/\"/></ruleset>", "<ruleset name=\"web.de (buggy)\" f=\"Web.de.xml\"><securecookie host=\"^(?:.*\\.)?web\\.de$\" name=\".+\"/><exclusion pattern=\"^http://(www\\.)web.de/magazine/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web4U\" f=\"Web4U.xml\"><rule from=\"^http://web4u\\.cz/\" to=\"https://www.web4u.cz/\"/><rule from=\"^http://(\\w+)\\.web4u\\.cz/\" to=\"https://$1.web4u.cz/\"/><securecookie host=\"^\\w*\\.web4u\\.cz$\" name=\".*\"/></ruleset>", "<ruleset name=\"Web4all.fr\" f=\"Web4all.fr.xml\"><securecookie host=\"^(?:guides|manager|push|travaux|webmail)?\\.web4all\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebAlert.jp\" f=\"WebAlert.jp.xml\"><securecookie host=\"^panel\\.webalert\\.jp$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webalert\\.jp/[^?]*\" to=\"https://panel.webalert.jp/\"/><rule from=\"^http://(panel|seal)\\.webalert\\.jp/\" to=\"https://$1.webalert.jp/\"/></ruleset>", "<ruleset name=\"WebAssign\" f=\"WebAssign.xml\"><securecookie host=\"webassign\\.net\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webassign\\.net/\" to=\"https://webassign.net/\"/><rule from=\"^http://demo\\.webassign\\.net/\" to=\"https://demo.webassign.net/\"/></ruleset>", "<ruleset name=\"WebChuck hosting.com (partial)\" default_off=\"expired, self-signed\" f=\"WebChuck_hosting.com.xml\"><securecookie host=\"^\\.apps\\.webchuckhosting\\.com$\" name=\".+\"/><rule from=\"^http://apps\\.webchuckhosting\\.com/\" to=\"https://apps.webchuckhosting.com/\"/></ruleset>", "<ruleset name=\"WebCijfers.nl\" f=\"WebCijfers.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebCitz\" f=\"WebCitz.xml\"><securecookie host=\"^(?:w*\\.)?webcitz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebD.AM\" f=\"WebD.AM.xml\"><rule from=\"^http://static[1-4]\\.webd\\.am/\" to=\"https://d10w0pvim185fa.cloudfront.net/\"/></ruleset>", "<ruleset name=\"WebDAM DB.com\" default_off=\"failed ruleset test\" f=\"WebDAM_DB.com.xml\"><securecookie host=\"^secure\\.webdamdb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebDevStudios.com\" f=\"WebDevStudios.xml\"><securecookie host=\"^(?:www\\.)?webdevstudios\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebEx Communications\" f=\"WebEx-Communications.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.webex\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?webex\\.com/\" to=\"https://$1webex.com/\"/></ruleset>", "<ruleset name=\"WebFWD.org (partial)\" f=\"WebFWD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Faction\" f=\"WebFaction.xml\"><rule from=\"^http://((?:blog|docs|help|my|www)\\.)?webfaction\\.com/\" to=\"https://$1webfaction.com/\"/></ruleset>", "<ruleset name=\"WebGo.de\" f=\"WebGo.xml\"><securecookie host=\"^(www\\.|website\\.|www\\.website|login\\.|support\\.)?webgo\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebGo24.de\" f=\"WebGo24.de.xml\"><securecookie host=\"^(www\\.|support\\.|login\\.|hilfe\\.|partner\\.)?webgo24\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebHost4Life\" f=\"WebHost4Life.xml\"><securecookie host=\"^\\.webhost4life\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebHostingStuff.com (partial)\" default_off=\"Needs ruleset tests\" f=\"WebHostingStuff.xml\"><exclusion pattern=\"^http://www\\.webhostingstuff\\.com/(?!images/|socialmedia\\.html|stuffstyle\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebINK.com (partial)\" f=\"WebINK.com.xml\"><securecookie host=\"^(?:www\\.)?webink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebKite.com (partial)\" f=\"WebKite.com.xml\"><securecookie host=\"^\\.admin\\.webkite\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|auth|errors|fb|iago|jafar|results|www)\\.)?webkite\\.com/\" to=\"https://$1webkite.com/\"/></ruleset>", "<ruleset name=\"WebMD (partial)\" f=\"WebMD.xml\"><securecookie host=\"^(?:as|doctor|healthmanager|member)\\.webmd\\.com$\" name=\".+\"/><rule from=\"^http://(as|css|doctor|healthmanager|img|member)\\.webmd\\.com/\" to=\"https://$1.webmd.com/\"/><rule from=\"^http://ls\\.turn\\.com/\" to=\"https://oasc18.247realmedia.com/\"/><rule from=\"^http://std\\.o\\.webmd\\.com/\" to=\"https://webmdglobal.122.2o7.net/\"/></ruleset>", "<ruleset name=\"WebMD Health\" f=\"WebMD_Health.xml\"><securecookie host=\"^(?:www)?\\.webmdhealth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webmdhealth\\.com/\" to=\"https://www.webmdhealth.com/\"/></ruleset>", "<ruleset name=\"WebMD Health Services\" f=\"WebMD_Health_Services.xml\"><securecookie host=\"^(?:insights|www)\\.webmdhealthservices\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webmdhealthservices\\.com/\" to=\"https://www.webmdhealthservices.com/\"/><rule from=\"^http://insights\\.webmdhealthservices\\.com/\" to=\"https://insights.webmdhealthservices.com/\"/></ruleset>", "<ruleset name=\"WebM Project.org (partial)\" default_off=\"mismatched\" f=\"WebM_Project.org.xml\"><rule from=\"^http://(?:www\\.)?webmproject\\.org/\" to=\"https://www.webmproject.org/\"/></ruleset>", "<ruleset name=\"WebMediaBrands (partial)\" default_off=\"broken\" f=\"WebMediaBrands.xml\"><rule from=\"^http://(?:www\\.)?devx\\.com/(assets/|icom_includes/|styles/)\" to=\"https://www.devx.com/\"/><rule from=\"^http://assets\\.devx\\.com/\" to=\"https://assets.devx.com/\"/></ruleset>", "<ruleset name=\"WebMerge.me\" f=\"WebMerge.me.xml\"><securecookie host=\"^(?:www)?\\.webmerge\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebMoney (partial)\" f=\"WebMoney.xml\"><securecookie host=\".+\\.w(?:ebmoney\\.ru|mtransfer\\.com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebNMS.com\" f=\"WebNMS.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebPG.org\" f=\"WebPG.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebPlatform.org\" f=\"WebPlatform.xml\"><rule from=\"^http://webplatform\\.org/\" to=\"https://www.webplatform.org/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\w\" name=\".\"/></ruleset>", "<ruleset name=\"WebProspector (partial)\" f=\"WebProspector.xml\"><exclusion pattern=\"^http://www\\.webprospector\\.de/(?!app/|(?:preise-)?bestellen|css/|img/|js/|kostenlos-(?:flatrate-)?testen|pixel\\.php)\"/><securecookie host=\"^mein\\.webprospector\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebRTC-Experiment.com\" f=\"WebRTC-Experiment.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSanity.com (partial)\" default_off=\"self-signed\" f=\"WebSanity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websense.com (partial)\" f=\"WebSense.xml\"><securecookie host=\"^.*\\.websense\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSharks-Inc.com\" f=\"WebSharks-Inc.com.xml\"><securecookie host=\"^affiliates\\.websharks-inc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebShop Revolution\" default_off=\"failed ruleset test\" f=\"WebShopRevolution.com.xml\"><rule from=\"^http://webshoprevolution\\.com/\" to=\"https://webshoprevolution.com/\"/><rule from=\"^http://([\\w-]+)\\.webshoprevolution\\.com/\" to=\"https://$1.webshoprevolution.com/\"/></ruleset>", "<ruleset name=\"WebSite.ws\" f=\"WebSite.ws.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://website\\.ws/\" to=\"https://www.website.ws/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSocial.ly (partial)\" f=\"WebSocial.ly.xml\"><rule from=\"^http://([\\w-]+\\.)?websocially\\.com/(assets/|sign-up(?:$|\\?|/)|wp-content/)\" to=\"https://$1websocially.com/$2\"/></ruleset>", "<ruleset name=\"WebSocket.org\" f=\"WebSocket.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSpectator.com\" f=\"WebSpectator.com.xml\"><securecookie host=\"^\\.webspectator\\.com$\" name=\".+\"/><rule from=\"^http://((?:scripts|services|www)\\.)?webspectator\\.com/\" to=\"https://$1webspectator.com/\"/></ruleset>", "<ruleset name=\"WebStarts\" f=\"WebStarts.xml\"><securecookie host=\"^(?:www\\.)?webstarts\\.com$\" name=\".+\"/><rule from=\"^http://(?:static\\.|(www\\.))?webstarts\\.com/\" to=\"https://$1webstarts.com/\"/></ruleset>", "<ruleset name=\"WebSupport.at (partial)\" f=\"WebSupport.at.xml\"><securecookie host=\".+\\.websupport\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSupport.cz\" f=\"WebSupport.cz.xml\"><securecookie host=\".+\\.websupport\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebTrust.org (partial)\" f=\"WebTrust.xml\"><exclusion pattern=\"^http://(?:cert|entrust)\\.webtrust\\.org/(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebType (mismatches)\" default_off=\"bluehost certificate\" f=\"WebType-mismatches.xml\"><rule from=\"^http://blog\\.webtype\\.com/\" to=\"https://blog.webtype.com/~webtypec/blog/\"/></ruleset>", "<ruleset name=\"WebType.com (partial)\" f=\"WebType.xml\"><exclusion pattern=\"^http://www\\.webtype\\.com/(?!global/|local/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebUrbanist.com (partial)\" default_off=\"self-signed\" f=\"WebUrbanist.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?weburbanist\\.com/(?!wp-content/)\"/><rule from=\"^http://(?:img\\.|www\\.)?weburbanist\\.com/\" to=\"https://weburbanist.com/\"/></ruleset>", "<ruleset name=\"WebWeWant.org\" f=\"WebWeWant.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebXakep.Net\" default_off=\"failed ruleset test\" f=\"WebXakep.Net.xml\"><securecookie host=\"^\\.(?:infotech-team\\.com|webxakep\\.net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?(infotech-team\\.com|webxakep\\.net)/\" to=\"https://$1$2/\"/></ruleset>", "<ruleset name=\"WebZilla.com\" f=\"WebZilla.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Design Marketing\" f=\"Web_Design_Marketing.xml\"><securecookie host=\"^\\.webdesignmarketing.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Forest.eu\" f=\"Web_Forest.eu.xml\"><securecookie host=\"^webforest\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webforest\\.eu/\" to=\"https://webforest.eu/\"/></ruleset>", "<ruleset name=\"WebFoundation.org (partial)\" platform=\"mixedcontent\" f=\"Web_Foundation.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Hosting Geeks.com\" f=\"Web_Hosting_Geeks.com.xml\"><securecookie host=\"^webhostinggeeks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webhostinggeeks\\.com/\" to=\"https://webhostinggeeks.com/\"/><rule from=\"^http://acf\\.webhostinggeeks\\.com/\" to=\"https://d2qa8wpyt2chna.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Web Hosting Pad (partial)\" f=\"Web_Hosting_Pad.xml\"><exclusion pattern=\"^http://(?:www\\.)?webhostingpad\\.com/(?!\\w+\\.css$|images/)\"/><securecookie host=\"^s(?:ecure|upport)\\.webhostingpad\\.com$\" name=\".+\"/><rule from=\"^http://((?:livesupport|secure|support|www)\\.)?webhostingpad\\.com/\" to=\"https://$1webhostingpad.com/\"/></ruleset>", "<ruleset name=\"Web Service Award (partial)\" default_off=\"failed ruleset test\" f=\"Web_Service_Award.xml\"><rule from=\"^http://ssl\\.webserviceaward\\.com/\" to=\"https://ssl.webserviceaward.com/\"/></ruleset>", "<ruleset name=\"Web Tune Factory\" f=\"Web_Tune_Factory.xml\"><rule from=\"^http://(?:www\\.)?w-tune\\.com/\" to=\"https://www.w-tune.com/\"/></ruleset>", "<ruleset name=\"Web of Knowledge\" default_off=\"failed ruleset test\" f=\"Web_of_Knowledge.xml\"><securecookie host=\"^.*\\.webofknowledge\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?isiknowledge\\.com/\" to=\"https://$1isiknowledge.com/\"/><rule from=\"^http://((?:apps|cm|ets|images|sub3|wcs|www)\\.)?webofknowledge\\.com/\" to=\"https://$1webofknowledge.com/\"/></ruleset>", "<ruleset name=\"Webarch.net\" f=\"Webarch.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webarchitects.coop\" f=\"Webarchitects.coop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webby Awards (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Webby-Awards.xml\"><securecookie host=\"^www\\.webbyawards\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webbyawards\\.com/\" to=\"https://www.webbyawards.com/\"/></ruleset>", "<ruleset name=\"WebcamBoys (partial)\" default_off=\"failed ruleset test\" f=\"WebcamBoys.xml\"><securecookie host=\"^\\.webcamboys\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webcompat.com\" f=\"Webcompat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webcontrolcenter.com\" f=\"Webcontrolcenter.com.xml\"><securecookie host=\"^(?:.+\\.)?webcontrolcenter\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?webcontrolcenter\\.com/\" to=\"https://$1webcontrolcenter.com/\"/></ruleset>", "<ruleset name=\"Webcruiter (partial)\" f=\"Webcruiter.xml\"><securecookie host=\"^(?:www\\.)?webcruiter\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webento\" default_off=\"failed ruleset test\" f=\"Webento.xml\"><securecookie host=\"^(?:.*\\.)?webento\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webfest Global.com\" default_off=\"connection dropped\" f=\"Webfest_Global.xml\"><securecookie host=\"^www\\.webfestglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webfusion (partial)\" default_off=\"failed ruleset test\" f=\"Webfusion.xml\"><securecookie host=\"^www\\.webfusion\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(www\\.)?webfusion(-support)?\\.co\\.uk/\" to=\"https://$1webfusion$2.co.uk/\"/><rule from=\"^http://fusion\\.webfusion-secure\\.co\\.uk/\" to=\"https://fusion.webfusion-secure.co.uk/\"/></ruleset>", "<ruleset name=\"Webgility (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Webgility.xml\"><rule from=\"^http://(www\\.)?(portal\\.)?webgility\\.com/\" to=\"https://$2webgility.com/\"/><securecookie host=\"^portal\\.webgility\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Webglobe.sk\" f=\"Webglobe.sk.xml\"><rule from=\"^http://(?:www\\.)?webglobe\\.sk/\" to=\"https://www.webglobe.sk/\"/></ruleset>", "<ruleset name=\"webhost.biz\" f=\"Webhost.biz.xml\"><securecookie host=\"^manage\\.webhost\\.biz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webhost\\.biz/+\" to=\"https://www.ixwebhosting.com/\"/><rule from=\"^http://manage\\.webhost\\.biz/.*\" to=\"https://www.ixwebhosting.com/\"/></ruleset>", "<ruleset name=\"WebhostOne\" f=\"WebhostOne.xml\"><securecookie host=\"^(?:www\\.)?(?:kcc\\.)?webhostone\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webhostone\\.de/\" to=\"https://www.webhostone.de/\"/><rule from=\"^http://(?:www\\.)?kcc\\.webhostone\\.de/\" to=\"https://kcc.webhostone.de/\"/></ruleset>", "<ruleset name=\"webhostlist.de\" f=\"Webhostlist.de.xml\"><securecookie host=\"^(?:www)?\\.webhostlist\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webhungary.hu\" f=\"Webhungary.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webjet\" f=\"Webjet.xml\"><securecookie host=\"^.*\\.webjet\\.(com\\.au|co\\.nz)$\" name=\".+\"/><rule from=\"^http://webjet\\.(com\\.au|co\\.nz)/\" to=\"https://www.webjet.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webkit.org\" f=\"Webkit.org.xml\"><securecookie host=\"^(?:bugs|trac|www)?\\.webkit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webkit\" default_off=\"shows default page\" f=\"Webkit.xml\"><securecookie host=\"^pageloc\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weblate.org\" f=\"Weblate.org.xml\"><rule from=\"^http://(?:(docs\\.|hosted\\.)|www\\.)?weblate\\.org/\" to=\"https://$1weblate.org/\"/></ruleset>", "<ruleset name=\"Weblog Awards\" f=\"Weblog_Awards.xml\"><securecookie host=\"^\\.weblogawards\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webmagazin.de (partial)\" f=\"Webmagazin.de.xml\"><rule from=\"^http://(www\\.)?webmagazin\\.de/(?=sites/|(?:cart|jobs|user)(?:$|[?/]))\" to=\"https://$1webmagazin.de/\"/></ruleset>", "<ruleset name=\"Webmail.loxinfo.co.th\" f=\"Webmail-Loxinfo.xml\"><rule from=\"^http://webmail\\.loxinfo\\.co\\.th/\" to=\"https://webmail.loxinfo.co.th/\"/></ruleset>", "<ruleset name=\"Webmasterplan.com\" f=\"Webmasterplan.com.xml\"><securecookie host=\"^\\.\" name=\"^affili_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmate.io\" default_off=\"mismatched, missing certificate chain, self-signed\" f=\"Webmate.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webmetrics.com\" f=\"Webmetrics.com.xml\"><securecookie host=\"^www2\\.webmetrics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webmetrics\\.com/[^?]*\" to=\"https://www.neustar.biz/services/web-performance\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmon.com\" f=\"Webmon.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webnium.co.jp\" f=\"Webnium.co.jp.xml\"><securecookie host=\"^\\.webnium\\.co\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webonic.hu\" f=\"Webonic.hu.xml\"><securecookie host=\".\\.webonic\\.hu$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weboolu (partial)\" default_off=\"failed ruleset test\" f=\"Weboolu.xml\"><securecookie host=\"^(?:w*\\.)?weboolu(?:inc)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weborama.fr (partial)\" f=\"Weborama.xml\"><securecookie host=\"^\\.\\w+\\.solution\\.weborama\\.fr$\" name=\".*\"/><rule from=\"^http://(?:a|el)static\\.weborama\\.fr/\" to=\"https://gs1.wpc.edgecastcdn.net/001F34/\"/><rule from=\"^http://perf\\.weborama\\.fr/\" to=\"https://webo.solution.weborama.fr/\"/><rule from=\"^http://static\\.weborama\\.fr/\" to=\"https://ssl.weborama.fr/\"/><rule from=\"^http://(cstatic|\\w+\\.solution|ssl)\\.weborama\\.fr/\" to=\"https://$1.weborama.fr/\"/></ruleset>", "<ruleset name=\"Webpay.cl (partial)\" f=\"Webpay.cl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webroot.com (partial)\" default_off=\"failed ruleset test\" f=\"Webroot.com.xml\"><exclusion pattern=\"^http://www\\.webroot\\.com/(?!favicon\\.ico|shared/)\"/><securecookie host=\"^community\\.webroot\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|community|www)\\.)?webroot\\.com/\" to=\"https://$1webroot.com/\"/></ruleset>", "<ruleset name=\"Webropolsurveys.com\" f=\"Webropolsurveys.com.xml\"><rule from=\"^http://(?:www\\.)?webropolsurveys\\.com/\" to=\"https://www.webropolsurveys.com/\"/></ruleset>", "<ruleset name=\"webrtcHacks.com\" f=\"WebrtcHacks.com.xml\"><securecookie host=\"^\\.webrtchacks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webs (Mixed Content)\" platform=\"mixedcontent\" f=\"Webs-MixedContent.xml\"><securecookie host=\"^members\\.webs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webs (partial)\" f=\"Webs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websec Weekly.org\" f=\"Websec_Weekly.org.xml\"><securecookie host=\"^\\.websecweekly\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websecurify.com\" f=\"Websecurify.com.xml\"><securecookie host=\"^(?:suite)?\\.websecurify\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webshopapp.com\" f=\"Webshopapp.com.xml\"><rule from=\"^http://([\\w-]+\\.)?webshopapp\\.com/\" to=\"https://$1webshopapp.com/\"/></ruleset>", "<ruleset name=\"website-start.de\" f=\"Website-start.de.xml\"><securecookie host=\"^cms01\\.website-start\\.de$\" name=\".+\"/><rule from=\"^http://c(dn|ms01)\\.website-start\\.de/\" to=\"https://c$1.website-start.de/\"/></ruleset>", "<ruleset name=\"WebsiteAlive (partial)\" f=\"WebsiteAlive.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://websitealive(\\d+)\\.com/\" to=\"https://www.websitealive$1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebsiteGrowers.com\" default_off=\"failed ruleset test\" f=\"WebsiteGrowers.com.xml\"><securecookie host=\"^(?:www)?\\.websitegrowers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Website Pipeline (partial)\" f=\"Website_Pipeline.xml\"><securecookie host=\"^extranet\\.websitepipeline\\.com$\" name=\".+\"/><securecookie host=\"^gweb03\\.webstorepackage\\.com$\" name=\".+\"/><rule from=\"^http://extranet\\.websitepipeline\\.com/\" to=\"https://extranet.websitepipeline.com/\"/><rule from=\"^http://gweb03\\.webstorepackage\\.com/\" to=\"https://gweb03.webstorepackage.com/\"/></ruleset>", "<ruleset name=\"websitesettings.com\" f=\"Websitesettings.com.xml\"><securecookie host=\"^www\\.websitesettings\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"websmithing.com\" f=\"Websmithing.com.xml\"><securecookie host=\"^(?:www\\.)?websmithing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webspace4All\" f=\"Webspace4All.xml\"><securecookie host=\"^www\\.webspace4all\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webspace4all\\.eu/\" to=\"https://www.webspace4all.eu/\"/></ruleset>", "<ruleset name=\"Webspace4Clans.de (partial)\" f=\"Webspace4Clans.de.xml\"><securecookie host=\"^\\.webspace4clans\\.de$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?webspace4clans\\.de/(?=components/|favicon\\.ico|images/|index\\.php\\?option=com_aicontactsafe&sTask=captcha&task=captcha&pf=1&r_id=\\d+&lang=\\w\\w&format=raw|index\\.php/(?:domainparking|hosting|only-mail)(?:$|[?/]|\\.html)|modules/|plugins/|templates/|ticketsystem(?:$|[?/]))\" to=\"https://webspace4clans.de/\"/></ruleset>", "<ruleset name=\"webstat.com\" f=\"Webstat.com.xml\"><rule from=\"^http://(?:hv3|secure)\\.webstat\\.com/\" to=\"https://secure.webstat.com/\"/></ruleset>", "<ruleset name=\"The Webstaurant Store (partial)\" default_off=\"failed ruleset test\" f=\"Webstaurant_Store.xml\"><exclusion pattern=\"^http://(?:www\\.)?webstaurantstore\\.com/(?:favicon\\.ico|myaccount\\.html|template/)\"/><rule from=\"^http://(cdn\\.|cdnimg\\.|www\\.)?webstaurantstore\\.com/\" to=\"https://$1webstaurantstore.com/\"/></ruleset>", "<ruleset name=\"websterwood.com\" default_off=\"expired\" platform=\"cacert\" f=\"Websterwood.com.xml\"><rule from=\"^http://(?:www\\.)?websterwood\\.com/+\" to=\"https://blog.websterwood.com/\"/><rule from=\"^http://blog\\.websterwood\\.com/\" to=\"https://blog.websterwood.com/\"/></ruleset>", "<ruleset name=\"webstyle.ch\" f=\"Webstyle.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSupport.sk\" f=\"Websupport_sk_cz_at_hu.xml\"><securecookie host=\".\\.websupport\\.sk$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webtask.io (partial)\" f=\"Webtask.io.xml\"><securecookie host=\"^\\.webtask\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtatic.com\" f=\"Webtatic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webthumbnail.org\" default_off=\"missing certificate chain\" f=\"Webthumbnail.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtimeclock.com\" f=\"Webtimeclock.com.xml\"><securecookie host=\"^(?:w*\\.)?webtimeclock\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtracker.jp\" f=\"Webtracker.jp.xml\"><securecookie host=\"^www\\.webtracker\\.jp$\" name=\".+\"/><rule from=\"^http://i\\.t\\.webtracker\\.jp/\" to=\"https://a.t.webtracker.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebtraffIQ.com (partial)\" f=\"WebtraffIQ.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?webtraffiq\\.com/(?!images/|styles/)\"/><securecookie host=\"^secure\\.webtraffiq\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:dev\\.)?secure\\.|www\\.)?webtraffiq\\.com/\" to=\"https://secure.webtraffiq.com/\"/></ruleset>", "<ruleset name=\"Webtraffic.se (partial)\" f=\"Webtraffic.se.xml\"><securecookie host=\"^\\.webtraffic\\.se$\" name=\"(?:CfP|JEB2)$\"/><securecookie host=\"^\\.adsby\\.webtraffic\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtranslateit\" f=\"Webtranslateit.xml\"><rule from=\"^http://(?:www\\.)?webtranslateit\\.com/\" to=\"https://webtranslateit.com/\"/></ruleset>", "<ruleset name=\"Webtraxs.com (partial)\" f=\"Webtraxs.com.xml\"><securecookie host=\"^www\\.webtraxs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webtraxs\\.com/\" to=\"https://www.webtraxs.com/\"/></ruleset>", "<ruleset name=\"Webtrekk.net\" f=\"Webtrekk.net.xml\"><securecookie host=\".\\.webtrekk\\.net$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtrends.com (partial)\" f=\"Webtrends.com.xml\"><securecookie host=\"^\\.webtrends\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^(?:blog|cdn|engage|help|itservices|m|portal|producthelp|releasenotes|sharepoint|\\.?www)\\.webtrends\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtrendslive.com\" f=\"Webtrendslive.com.xml\"><securecookie host=\".*\\.webtrendslive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtrh.cz\" f=\"Webtrh.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtru.st Keyserver\" default_off=\"mismatch\" f=\"Webtru.st.xml\"><rule from=\"^http://www\\.pgp\\.webtru\\.st/\" to=\"https://pgp.webtru.st/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webyog.com\" f=\"Webyog.com.xml\"><securecookie host=\"^www\\.webyog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wed.is\" f=\"Wed.is.xml\"><securecookie host=\"^\\.?wed\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeeChat.org\" f=\"WeeChat.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weebly.com (mixed content)\" platform=\"mixedcontent\" f=\"Weebly-mixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?weebly\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?weebly\\.com/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weebly.com (partial)\" f=\"Weebly.xml\"><exclusion pattern=\"^http://www\\.weebly\\.com/(?!editor/(?:app|font|image|librarie)s|favicon\\.ico|footer_signup\\.php|images/)\"/><securecookie host=\"^\\.weebly\\.com$\" name=\"^sto-id$\"/><securecookie host=\"^www\\.weebly\\.com$\" name=\"^wt-\\w{6}$\"/><rule from=\"^http://((?:mobileapi|secure|teffect|www)\\.)?weebly\\.com/\" to=\"https://$1weebly.com/\"/></ruleset>", "<ruleset name=\"WeedTraQR.com\" f=\"WeedTraQR.com.xml\"><securecookie host=\"^weedtraqr\\.com$\" name=\".+\"/><rule from=\"^http://www\\.weedtraqr\\.com/\" to=\"https://weedtraqr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Week Plan\" f=\"Week_Plan.xml\"><securecookie host=\"^\\.weekplan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Weekend Edition.com.au (partial)\" f=\"Weekend_Edition.xml\"><exclusion pattern=\"^http://theweekendedition\\.com\\.au/+(?!favicon\\.ico|subscribe(?:$|[?/])|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeeklyPlus.com (partial)\" default_off=\"connection dropped\" f=\"WeeklyPlus.xml\"><rule from=\"^http://(www\\.)?weeklyplus\\.com/(\\w+/membership|members)(?=$|\\?)\" to=\"https://$1weeklyplus.com/$2/\"/><rule from=\"^http://(www\\.)?weeklyplus\\.com/(?=\\w+/membership/|cdn-cgi/|members/|themes/)\" to=\"https://$1weeklyplus.com/\"/></ruleset>", "<ruleset name=\"Wego Health.com (mismatched)\" default_off=\"mismatched\" f=\"Wego_Health.com-problematic.xml\"><rule from=\"^http://blog\\.wegohealth\\.com/\" to=\"https://blog.wegohealth.com/\"/></ruleset>", "<ruleset name=\"Wego Health.com (partial)\" f=\"Wego_Health.com.xml\"><exclusion pattern=\"^http://awards\\.wegohealth\\.com/+(?!nominees(?:$|\\?))\"/><securecookie host=\"^\\.wegohealth\\.com$\" name=\".+\"/><rule from=\"^http://((?:awards|tv|www)\\.)?wegohealth\\.com/\" to=\"https://$1wegohealth.com/\"/></ruleset>", "<ruleset name=\"Weibo.com (mixed content)\" platform=\"mixedcontent\" f=\"Weibo.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hr\\.weibo\\.com/\" to=\"https://weihr.sinaapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weibo.com (partial)\" f=\"Weibo.com.xml\"><securecookie host=\"^(?:upload\\.api|yahoo\\.tw)\\.weibo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weiss Research\" default_off=\"failed ruleset test\" f=\"Weiss-Research.xml\"><securecookie host=\"^.*\\.moneyandmarkets\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?moneyandmarkets\\.com/\" to=\"https://$1moneyandmarkets.com/\"/><rule from=\"^http://((?:cdn|images|www)\\.)?weissinc\\.com/\" to=\"https://$1weissinc.com/\"/></ruleset>", "<ruleset name=\"Weizmann Institute of Science (partial)\" f=\"Weizmann-Institute-of-Science.xml\"><rule from=\"^http://www\\.weizmann\\.ac\\.il/pages/\" to=\"https://www.weizmann.ac.il/pages/\"/></ruleset>", "<ruleset name=\"Welcome to MetLife.com\" f=\"Welcome_to_MetLife.com.xml\"><rule from=\"^http://(?:www\\.)?welcometometlife\\.com/\" to=\"https://welcometometlife.com/\"/></ruleset>", "<ruleset name=\"Walk.sc\" default_off=\"mismatched\" f=\"Welk.sc.xml\"><rule from=\"^http://pp(2|3)?\\.walk\\.sc/\" to=\"https://pp$1.walk.sc/\"/></ruleset>", "<ruleset name=\"wellbid.com\" f=\"Wellbid.com.xml\"><securecookie host=\"^(?:w*\\.)?wellbid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wellcome Trust Sanger Institute (partial)\" f=\"Wellcome-Trust-Sanger-Institute.xml\"><securecookie host=\"^www\\.sanger\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sanger\\.ac\\.uk/\" to=\"https://www.sanger.ac.uk/\"/></ruleset>", "<ruleset name=\"Wellingborough.gov.uk (partial)\" f=\"Wellingborough.gov.uk.xml\"><securecookie host=\"^(?!\\.wellingborough\\.gov\\.uk$)\\.\" name=\"\\.\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wello.com\" f=\"Wello.com.xml\"><securecookie host=\"^(?:www)?\\.wello\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wells Fargo.com\" f=\"WellsFargo.xml\"><securecookie host=\".*\\.wellsfargo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weltbild.ch\" f=\"Weltbild.ch.xml\"><securecookie host=\"^(?:.*\\.)?weltbild\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?weltbild\\.ch/\" to=\"https://www.weltbild.ch/\"/></ruleset>", "<ruleset name=\"wemakeprice.com (partial)\" f=\"Wemakeprice.com.xml\"><rule from=\"^http://image\\.wemakeprice\\.com/\" to=\"https://image.wemakeprice.com/\"/></ruleset>", "<ruleset name=\"wemfbox.ch (partial)\" f=\"Wemfbox.ch.xml\"><securecookie host=\"^\\.wemfbox\\.ch$\" name=\"^i00$\"/><securecookie host=\"^\\w+-ssl\\.wemfbox\\.ch$\" name=\".+\"/><rule from=\"^http://(\\w+)-ssl\\.wemfbox\\.ch/\" to=\"https://$1-ssl.wemfbox.ch/\"/></ruleset>", "<ruleset name=\"Wemineltc.com\" f=\"Wemineltc.com.xml\"><rule from=\"^http://(?:www\\.)?wemineltc\\.com/\" to=\"https://www.wemineltc.com/\"/><securecookie host=\"^(?:www\\.)?wemineltc\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Wennect.info\" f=\"Wennect.info.xml\"><rule from=\"^http://(?:(admin\\.)|www\\.)?wennect\\.info/\" to=\"https://$1wennect.info/\"/></ruleset>", "<ruleset name=\"weoInvoice\" platform=\"mixedcontent\" f=\"Weoinvoice.xml\"><rule from=\"^http://(?:www\\.)?weoinvoice\\.com/\" to=\"https://www.weoinvoice.com/\"/></ruleset>", "<ruleset name=\"Werstreamt.es\" f=\"Werstreamt.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Battle for Wesnoth (partial)\" platform=\"cacert\" default_off=\"Needs ruleset tests\" f=\"Wesnoth.xml\"><exclusion pattern=\"^http://(?:addons|replays)\\.wesnoth\\.org/icons/$\"/><exclusion pattern=\"^http://(?:units|wiki)\\.wesnoth\\.org/skins/$\"/><rule from=\"^http://(?:((?:addonlist|bugs|changelog|dev(?:-addons|docs)|eclipse|gettext|irclogs|manual|patches|stable-(?:addons|changelog)|(?:web)?svn|wesnothd)\\.)|www\\.)?wesnoth\\.org/\" to=\"https://$1wesnoth.org/\"/><rule from=\"^http://(addons|replays)\\.wesnoth\\.org/icons/\" to=\"https://$1.wesnoth.org/icons/\"/><rule from=\"^http://(?:units|wiki)\\.wesnoth\\.org/skins/\" to=\"https://wesnoth.org/mw/skins/\"/><rule from=\"^http://wiki\\.wesnoth\\.org/favicon\\.ico$\" to=\"https://wiki.wesnoth.org/favicon.ico\"/></ruleset>", "<ruleset name=\"West-Lindsey.gov.uk (partial)\" f=\"West-Lindsey.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Jet\" f=\"WestJet.xml\"><rule from=\"^http://westjet\\.com/\" to=\"https://www.westjet.com/\"/><rule from=\"^http://(hg|www)\\.westjet\\.com/\" to=\"https://$1.westjet.com/\"/></ruleset>", "<ruleset name=\"West Mercia Police\" f=\"WestMerciaPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Midlands Police\" f=\"WestMidlandsPolice.xml\"><rule from=\"^http://(www\\.)?west-midlands\\.police\\.uk/\" to=\"https://www.west-midlands.police.uk/\"/></ruleset>", "<ruleset name=\"West Devon.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"West_Devon.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?westdevon\\.gov\\.uk/+(?!\\w+/(?:images/|scripts/.+\\.css|template/)|civica/Bundles/|media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Orange History\" default_off=\"mismatched\" f=\"West_Orange_History.xml\"><securecookie host=\"^westorangehistory\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?westorangehistory\\.com/\" to=\"https://westorangehistory.com/\"/></ruleset>", "<ruleset name=\"West Sussex.gov.uk (partial)\" f=\"West_Sussex.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Virginia University (problematic)\" default_off=\"mismatched\" f=\"West_Virginia_University-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?assets\\.slate\\.wvu\\.edu/resources/\"/><securecookie host=\"^(?:beta\\.campusmap|(?:benefits(?:admin)?|classcomp|employee(?:relation|wellnes)s|employmentservices|medicalmanagement|mountaineertemps|studentemployment|tnd)\\.hr|(?:oric|osp)\\.research|simpleforms\\.scripts|assets\\.slate|web\\.ur)\\.wvu\\.edu$\" name=\".+\"/><rule from=\"^http://(beta\\.campusmap|employmentservices\\.hr|simpleforms\\.scripts)\\.wvu\\.edu/\" to=\"https://$1.wvu.edu/\"/><rule from=\"^http://(?:www\\.)?((?:benefits(?:admin)?|classcomp|employee(?:relation|wellnes)s|employment|medicalmanagement|mountaineertemps|studentemployment|tnd)\\.hr|(?:oric|osp)\\.research|assets\\.slate|web\\.ur)\\.wvu\\.edu/\" to=\"https://$1.wvu.edu/\"/></ruleset>", "<ruleset name=\"West Virginia University (partial)\" f=\"West_Virginia_University.xml\"><securecookie host=\"^\\.wvu\\.edu$\" name=\"^(?:fos\\.secure\\.web\\.server|slate_\\w{32}|_wvutodaystaging_1\\.0\\.0)$\"/><securecookie host=\"^(?:about|admissions|apply|brand|cal|calendar|careerservices|cas|connect|eberly|emergency|facebook|ferpa|finaid|financialaid|grad|hr|(?:exweb|www)\\.hsc|itunes|kc|law|(?:enginecms|mediasite(?:hscmed)?|reserves|systems)\\.lib|www\\.libraries|map|mix|mixinfo|myapps|myid|nanosafe|research(?:office)?|sharedresearchfacilities|slate|slatecms|studentaccounts|tour|twitter|webservices|wvudownloads|wvugw|wvutoday|www)\\.wvu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:about|apply|brand|cal|calendar|careerservices|cas|connect|facebook|ferpa|financialaid|grad|(?:autodiscover|exweb|sole|www)\\.hsc|kc|(?:enginecms|mediasite(?:hscmed)?|reserves|systems)\\.lib|map|mixinfo|myaccess|myapps|myid|nanosafe|researchoffice|sharedresearchfacilities|tour|twitter|webservices|wvudownloads|wvugw|www)\\.)?wvu\\.edu/\" to=\"https://$1wvu.edu/\"/><rule from=\"^http://(?:www\\.)?(admissions|eberly|emergency|finaid|hr|itunes|law|mix|oit|protected|research|slate|slatecms|studentaccounts|wvutoday)\\.wvu\\.edu/\" to=\"https://$1.wvu.edu/\"/><rule from=\"^http://libguides\\.wvu\\.edu/(css\\d*/|data/|favicon\\.ico|images/|include/|js\\d*/)\" to=\"https://libguides.com/$1\"/><rule from=\"^http://(?:www\\.)?libraries\\.wvu\\.edu/\" to=\"https://www.libraries.wvu.edu/\"/><rule from=\"^http://medicine\\.hsc\\.wvu\\.edu/(?:\\?.*)$\" to=\"https://www.hsc.wvu.edu/som\"/><rule from=\"^http://www\\.simpleforms\\.scripts\\.wvu\\.edu/(?!\\?).+\" to=\"https://www.wvu.edu/error/404.html\"/><rule from=\"^http://(?:www\\.)?assets\\.slate\\.wvu\\.edu/resources/\" to=\"https://slate.wvu.edu/resources/\"/><rule from=\"^http://www\\.slate\\.wvu\\.edu/[^?]*(\\?.*)?\" to=\"https://slate.wvu.edu/$1\"/></ruleset>", "<ruleset name=\"West Yorkshire Observatory.org\" f=\"West_Yorkshire_Observatory.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.westyorkshireobservatory\\.org/\" to=\"https://westyorkshireobservatory.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westconsin Credit Union\" f=\"Westconsin_Credit_Union.xml\"><securecookie host=\"^\\.westconsincu\\.org$\" name=\".+\"/><securecookie host=\"^www\\.westconsincuhb\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?westconsincu\\.org/\" to=\"https://$1westconsincu.org/\"/><rule from=\"^http://(?:www\\.)?westconsincuhb\\.org/\" to=\"https://www.westconsincuhb.org/\"/></ruleset>", "<ruleset name=\"Western Union.com (partial)\" f=\"Western_Union.xml\"><securecookie host=\"^\\.westernunion\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:agentportal|(?:demo\\.)?globalpay|marketing|online|secure|wumt)\\.westernunion\\.com$\" name=\".+\"/><rule from=\"^http://metrics\\.westernunion\\.com/\" to=\"https://westernunion-com.d1.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WestlandUtrecht Bank\" platform=\"mixedcontent\" f=\"WestlandUtrecht.xml\"><rule from=\"^http://(?:www\\.)?westlandutrecht(?:bank)?\\.nl/\" to=\"https://www.westlandutrechtbank.nl/\"/><rule from=\"^http://(?:www\\.)?mijnwestlandutrecht\\.nl/\" to=\"https://mijnwestlandutrecht.nl/\"/></ruleset>", "<ruleset name=\"Westlaw.com (partial)\" default_off=\"failed ruleset test\" f=\"Westlaw.com.xml\"><securecookie host=\"^(?:(?:lawschool|[1m]\\.next|store|text|web2|west|www)\\.)?westlaw\\.com$\" name=\".*\"/><rule from=\"^http://((?:lawschool|[1m]\\.next|onepass|(?:images\\.)?store|text|web2|west|www)\\.)?westlaw\\.com/\" to=\"https://$1westlaw.com/\"/></ruleset>", "<ruleset name=\"Westlotto.com\" f=\"Westlotto.xml\"><rule from=\"^http://wlresults\\.westlotto\\.com/\" to=\"https://wlresults.westlotto.com/\"/></ruleset>", "<ruleset name=\"Westminster.gov.uk (partial)\" f=\"Westminster.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://westminster\\.gov\\.uk/\" to=\"https://www.westminster.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westoxon.gov.uk\" f=\"Westoxon.gov.uk.xml\"><exclusion pattern=\"^http://forms\\.westoxon\\.gov\\.uk/$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westpac\" f=\"Westpac.xml\"><rule from=\"^http://westpac\\.com\\.au/\" to=\"https://www.westpac.com.au/\"/><rule from=\"^http://(businessonline|info|introducers|m\\.onlineinvesting|onlineinvesting|services|www)\\.westpac\\.com\\.au/\" to=\"https://$1.westpac.com.au/\"/></ruleset>", "<ruleset name=\"WetStone Technologies\" f=\"WetStone-Technologies.xml\"><securecookie host=\"^www\\.wetstonetech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weta Workshop\" f=\"Weta-Workshop.xml\"><securecookie host=\"^www\\.wetanz\\.com$\" name=\".+\"/><rule from=\"^http://wetanz\\.com/\" to=\"https://www.wetanz.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wg cdn.net\" f=\"Wg_cdn.net.xml\"><rule from=\"^http://(?:www\\d|secure)\\.wgcdn\\.net/\" to=\"https://secure.wgcdn.net/\"/></ruleset>", "<ruleset name=\"whamcat\" default_off=\"self-signed\" f=\"Whamcat.xml\"><rule from=\"^http://(?:www\\.)?whamcat\\.com/\" to=\"https://whamcat.com/\"/></ruleset>", "<ruleset name=\"Whappodo.COM! GmbH\" f=\"Whappodo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatBrowser.org\" f=\"WhatBrowser.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatCD\" f=\"WhatCD.xml\"><rule from=\"^http://(?:www\\.)?what\\.cd/\" to=\"https://what.cd/\"/><rule from=\"^http://(m|ssl)\\.what\\.cd/\" to=\"https://$1.what.cd/\"/></ruleset>", "<ruleset name=\"WhatDoTheyKnow.com\" f=\"WhatDoTheyKnow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatIsMyIP\" platform=\"mixedcontent\" f=\"WhatIsMyIP.xml\"><securecookie host=\"^(?:.*\\.)?whatismyip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whatbox.ca\" f=\"Whatbox.ca.xml\"><rule from=\"^http://((?:m|ssl|www)\\.)?whatbox\\.ca/\" to=\"https://$1whatbox.ca/\"/></ruleset>", "<ruleset name=\"Whatimg.com\" f=\"Whatimg.com.xml\"><rule from=\"^http://(?:www\\.)?whatimg\\.com/\" to=\"https://whatimg.com/\"/></ruleset>", "<ruleset name=\"WhatsApp.com\" f=\"WhatsApp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whats My Chain Cert.com\" f=\"Whats_My_Chain_Cert.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whats My DNS.net\" f=\"Whats_My_DNS.net.xml\"><securecookie host=\"^www\\.whatsmydns\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wheel.sk\" f=\"Wheel.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Where.com\" f=\"Where.com.xml\"><securecookie host=\"^\\.where\\.com$\" name=\"^m_p_tc$\"/><securecookie host=\"^ad\\.where\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Where 2 Get It (partial)\" f=\"Where_2_Get_It.xml\"><securecookie host=\"^\\.(?:hosted|ignite)\\.where2getit\\.com$\" name=\".+\"/><rule from=\"^http://(direct|hosted|ignite)\\.where2getit\\.com/\" to=\"https://$1.where2getit.com/\"/><rule from=\"^http://mobile\\.where2getit\\.com/([\\w-]+)/(images|javascript)/\" to=\"https://hosted.where2getit.com/$1/$2/\"/><rule from=\"^http://static\\.where2getit\\.com/w2gi/\" to=\"https://hosted.where2getit.com/w2gi/\"/></ruleset>", "<ruleset name=\"Which? (partial)\" f=\"Which.xml\"><exclusion pattern=\"^http://staticwhich\\.co\\.uk/+(?:$|\\?)\"/><exclusion pattern=\"^http://blogs\\.which\\.co\\.uk/+(?!\\w+/(?:(?:login|register)(?:$|[?/])|wp-(?:content|includes)/)|favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.which\\.co\\.uk/+(?!assets/|components/eprivacy\\.html|favicon\\.ico|(?:login|signup)(?:$|[?/])|media/)\"/><securecookie host=\"^which\\.net$\" name=\"^SQMSESSID$\"/><securecookie host=\"^(?:www\\.)?staticwhich\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?staticwhich\\.co\\.uk/\" to=\"https://$1staticwhich.co.uk/\"/><rule from=\"^http://((?:blogs|info|www)\\.)?which\\.co\\.uk/\" to=\"https://$1which.co.uk/\"/><rule from=\"^http://search\\.which\\.co\\.uk/(?=favicon\\.ico|sli_styles\\.css)\" to=\"https://which.resultspage.com/\"/><rule from=\"^http://(www\\.)?which\\.net/(?=(?:about|services|support)(?:$|[?/])|assets/|favicon\\.ico|images/|styles/)\" to=\"https://$1which.net/\"/><rule from=\"^http://(?:www\\.)?which\\.net/(?=(?:account|webmail)(?:$|[?/]))\" to=\"https://www.which.net/\"/><rule from=\"^http://static\\.which\\.net/\" to=\"https://www.staticwhich.co.uk/\"/><rule from=\"^http://subscribe\\.which\\.net/+[^?]*\" to=\"https://www.which.net/account\"/></ruleset>", "<ruleset name=\"Which MBA.com (partial)\" f=\"Which_MBA.com.xml\"><exclusion pattern=\"^http://whichmba\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.whichmba\\.com$\" name=\".+\"/><rule from=\"^http://whichmba\\.com/+\" to=\"https://www.economist.com/whichmba\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WilliamHill (partial)\" f=\"WhippleHill.xml\"><exclusion pattern=\"^http://www2\\.whipplehill\\.com/(?:\\?.*)?$\"/><rule from=\"^http://www2\\.whipplehill\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http://schoolpress\\.cdn\\.whipplehill\\.net/\" to=\"https://s3.amazonaws.com/schoolpress.cdn.whipplehill.net/\"/></ruleset>", "<ruleset name=\"Whirlpool\" f=\"Whirlpool.xml\"><securecookie host=\"^\\.whirlpool\\.net\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whiskey Media (partial)\" default_off=\"failed ruleset test\" f=\"Whiskey-Media.xml\"><rule from=\"^http://auth\\.(comicvine|whiskeymedia)\\.com/\" to=\"https://auth.$1.com/\"/><rule from=\"^http://media\\.(comicvine|screened|corp\\.whiskeymedia)\\.com/\" to=\"https://s3.amazonaws.com/media.$1.com/\"/><rule from=\"^http://files\\.tested\\.com/\" to=\"https://ddjhyz888xk1m.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Whisper Gifts (partial)\" f=\"Whisper-Gifts.xml\"><rule from=\"^http://whispergifts\\.com/\" to=\"https://whispergifts.com/\"/><rule from=\"^http://www\\.whispergifts/(media/|whisper/(?:login|manage|signup))\" to=\"https://www.whispergifts/$1\"/></ruleset>", "<ruleset name=\"Whisper.sh (partial)\" f=\"Whisper.sh.xml\"><securecookie host=\"^whisper\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhisperSystems (partial)\" f=\"WhisperSystems.xml\"><rule from=\"^http://(www\\.)?whispersystems\\.org/\" to=\"https://$1whispersystems.org/\"/><rule from=\"^http://support\\.whispersystems\\.org/(?=favicon\\.ico|images/)\" to=\"https://openwhispersystems.desk.com/\"/></ruleset>", "<ruleset name=\"WhistleOut (partial)\" f=\"WhistleOut.xml\"><rule from=\"^http://(www\\.)?whistleout\\.co(m|m\\.au|\\.uk)/(blog/wp-content/|css/|ImageLibrary/)\" to=\"https://$1whistleout.co$2/$3\"/><rule from=\"^http://resources([123])\\.whistleout\\.com/\" to=\"https://resources$1.whistleout.com/\"/></ruleset>", "<ruleset name=\"WhiteFence.com (partial)\" default_off=\"failed ruleset test\" f=\"WhiteFence.com.xml\"><securecookie host=\"^ox-d\\.whitefence\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?whitefence\\.com/\" to=\"https://www.whitefence.com/\"/><rule from=\"^http://ox-d\\.whitefence\\.com/\" to=\"https://ox-d.whitefence.com/\"/></ruleset>", "<ruleset name=\"WhiteHat Security\" f=\"WhiteHat_Security.xml\"><securecookie host=\"^(?:blog|info)\\.whitehatsec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The White House\" f=\"WhiteHouse.gov.xml\"><securecookie host=\"^.*\\.whitehouse\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"White Hot Hair.co.uk (partial)\" f=\"White_Hot_Hair.co.uk.xml\"><rule from=\"^http://(?:www\\.)?whitehothair\\.co\\.uk/(?=$|\\?|address-details\\.aspx|App_Portals/|[aA]pp_[tT]hemes/|login\\.aspx|WebResource\\.axd)\" to=\"https://www.whitehothair.co.uk/\"/></ruleset>", "<ruleset name=\"White Lisbon.com\" f=\"White_Lisbon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whitehathouston.com\" platform=\"cacert\" f=\"Whitehathouston.com.xml\"><rule from=\"^http://whitehathouston\\.com/\" to=\"https://www.whitehathouston.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitelabel.net\" f=\"Whitelabel.net.xml\"><securecookie host=\"^\\.?whitelabel\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whiteout.io\" f=\"Whiteout.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitepages.com (partial)\" f=\"Whitepages.com.xml\"><exclusion pattern=\"^http://pro\\.whitepages\\.com/+(?!wp-content/)\"/><securecookie host=\"^(?:apiportal|secure)\\.whitepages\\.com$\" name=\".+\"/><rule from=\"^http://whitepages\\.com/\" to=\"https://www.whitepages.com/\"/><rule from=\"^http://www\\.pro\\.whitepages\\.com/+\" to=\"https://pro.whitepages.com/\"/><rule from=\"^http://www\\.support\\.whitepages\\.com/\" to=\"https://support.whitepages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Who.is\" f=\"Who.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhoSampled.com (partial)\" f=\"WhoSampled.com.xml\"><rule from=\"^http://(www\\.)?whosampled\\.com/(?=accounts/(?:login|registration)(?:$|[?/])|static/)\" to=\"https://$1whosampled.com/\"/></ruleset>", "<ruleset name=\"who do you.trust\" f=\"Who_do_you.trust.xml\"><securecookie host=\"^(?:www\\.)?whodoyou\\.trust$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whoisology\" f=\"Whoisology.xml\"><securecookie host=\"^whoisology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whole Earth Catalog\" default_off=\"mismatch\" f=\"Whole-Earth-Catalog.xml\"><securecookie host=\"^wholeearth\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wholeearth\\.com/\" to=\"https://wholeearth.com/\"/></ruleset>", "<ruleset name=\"Whole Earth 'Lectronic Link (partial)\" f=\"Whole_Earth_Lectronic_Link.xml\"><securecookie host=\"^(?:iris|user)\\.well\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?well\\.com/(images/|(?:cgi-bin/)?newpass/|well\\.css)\" to=\"https://www.well.com/$1\"/><rule from=\"^http://(iris|user)\\.well\\.com/\" to=\"https://$1.well.com/\"/></ruleset>", "<ruleset name=\"Whole Foods Market.com\" f=\"Whole_Foods_Market.com.xml\"><securecookie host=\"^users\\.wholefoodsmarket\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wholesale Labels.com (partial)\" f=\"Wholesale_Labels.com.xml\"><rule from=\"^http://(www\\.)?wholesalelabels\\.com/(?=favicon\\.ico|images/|include/)\" to=\"https://$1wholesalelabels.com/\"/></ruleset>", "<ruleset name=\"Whonix.org\" f=\"Whonix.org.xml\"><securecookie host=\"^(?:www\\.)?whonix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whos.amung.us (partial)\" f=\"Whos.amung.us.xml\"><exclusion pattern=\"^http://whos\\.amung\\.us/(?!colorgen/|favicon\\.ico|flash/|pro/login/|show/|swidget/)\"/><rule from=\"^http://feeds\\.amung\\.us/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhosOn.com (partial)\" f=\"WhosOn.com.xml\"><rule from=\"^http://(chat|gateway[3-9]?|gateway1[01])\\.whoson\\.com/\" to=\"https://$1.whoson.com/\"/></ruleset>", "<ruleset name=\"Whos Hiring.io\" f=\"Whos_Hiring.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?whoshiring\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whosgamingnow.net\" f=\"Whosgamingnow.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wi-Fi Alliance\" f=\"Wi-Fi-Alliance.xml\"><securecookie host=\"^(?:certifications|www)\\.wi-fi\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wi-fi\\.org/\" to=\"https://www.wi-fi.org/\"/><rule from=\"^http://certifications\\.wi-fi\\.org/\" to=\"https://certifications.wi-fi.org/\"/></ruleset>", "<ruleset name=\"WiFiDB.net\" f=\"WiFiDB.net.xml\"><rule from=\"^http://wifidb\\.net/.*\" to=\"https://github.com/pferland/WiFiDB/\"/><rule from=\"^http://www\\.wifidb\\.net/+\" to=\"https://github.com/pferland/WiFiDB/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiFi Pineapple.com\" f=\"WiFi_Pineapple.com.xml\"><securecookie host=\"^www\\.wifipineapple\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiGLE.net\" f=\"WiGLE.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiMP.no (partial)\" f=\"WiMP.no.xml\"><securecookie host=\"^(?:www\\.)?wimp\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiMP Music.com (partial)\" f=\"WiMP_Music.com.xml\"><securecookie host=\"^(?:www\\.)?wimpmusic\\.com$\" name=\".+\"/><rule from=\"^http://((?:images|play|www)\\.)?wimpmusic\\.com/\" to=\"https://$1wimpmusic.com/\"/></ruleset>", "<ruleset name=\"WiMo.com\" f=\"WiMo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiTopia.net\" f=\"WiTopia.net.xml\"><securecookie host=\"^my\\.witopia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?witopia\\.net/\" to=\"https://www.witopia.net/\"/><rule from=\"^http://my\\.witopia\\.net/\" to=\"https://my.witopia.net/\"/></ruleset>", "<ruleset name=\"Wicked Lasers\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Wicked-Lasers.xml\"><securecookie host=\"^\\.?www\\.wickedlasers\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wicked Fiber\" default_off=\"failed ruleset test\" f=\"Wicked_Fiber.xml\"><securecookie host=\"^(?:www\\.)?wickedfiber\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wickr.com\" f=\"Wickr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Widgetbox.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Widgetbox.com.xml\"><securecookie host=\"^www\\.widgetbox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?widget(box|server)\\.com/\" to=\"https://www.widget$1.com/\"/><rule from=\"^http://pub\\.widgetbox\\.com/\" to=\"https://pub.widgetbox.com/\"/><rule from=\"^http://support\\.widgetbox\\.com/generated/\" to=\"https://generated.zendesk.com/generated/\"/><rule from=\"^http://(cdn|p|t)\\.widgetserver\\.com/\" to=\"https://$1.widgetserver.com/\"/></ruleset>", "<ruleset name=\"WiebeTech.com\" default_off=\"self-signed\" f=\"WiebeTech.com.xml\"><rule from=\"^http://(?:www\\.)?weibetech\\.com/\" to=\"https://www.weibetech.com/\"/></ruleset>", "<ruleset name=\"WienIT EDV Dienstleistungsgesellschaft mbH\" f=\"Wien-IT.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WifiLib\" f=\"WifiLib.xml\"><rule from=\"^http://(www\\.)?wifilib\\.(com|fr)/\" to=\"https://$1wifilib.com/\"/></ruleset>", "<ruleset name=\"Wigan.gov.uk (partial)\" f=\"Wigan.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://wigan\\.gov\\.uk/\" to=\"https://www.wigan.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiggle (partial)\" f=\"Wiggle.xml\"><securecookie host=\"^ajax\\.wiggle\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wiggle\\.co\\.uk/(favicon\\.ico|h/|secure/)\" to=\"https://www.wiggle.co.uk/$1\"/><rule from=\"^http://(ajax|s|s-dyni)\\.wiggle\\.co\\.uk/\" to=\"https://$1.wiggle.co.uk/\"/><rule from=\"^http://www\\.wigglestatic\\.com/\" to=\"https://www.wigglestatic.com/\"/></ruleset>", "<ruleset name=\"Wiiings.com\" f=\"Wiiings.com.xml\"><securecookie host=\"^(?:dms|dms-[dq]|int-mas|mas|stage-mas|www)\\.wiiings\\.com$\" name=\".+\"/><rule from=\"^http://wiiings\\.com/\" to=\"https://www.wiiings.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WikiFur\" f=\"WikiFur.xml\"><securecookie host=\"^(?:[a-z][a-z]\\.)?wikifur\\.com$\" name=\".+\"/><rule from=\"^http://([a-z][a-z]\\.)?wikifur\\.com/\" to=\"https://$1wikifur.com/\"/></ruleset>", "<ruleset name=\"wikiHow.com (partial)\" default_off=\"mismatched\" f=\"WikiHow.com.xml\"><rule from=\"^http://(?:pad\\d\\.|www\\.)?w(?:hstatic|ikihow)\\.com/(?=extensions/|favicon\\.ico|images/|skins/)\" to=\"https://www.wikihow.com/\"/></ruleset>", "<ruleset name=\"WikiLeaks.org\" f=\"WikiLeaks.xml\"><securecookie host=\"^(?:w*\\.)?wikileaks\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikia (broken)\" default_off=\"no longer supports SSL\" f=\"Wikia.xml\"><exclusion pattern=\"^http://images\\.wikia\\.com/(?:favicon\\.ico|\\w+/\\w\\w/images/)\"/><securecookie host=\"^.*\\.wikia\\.com$\" name=\".+\"/><rule from=\"^http://(?:slot\\d\\.)?images\\d?\\.wikia\\.nocookie\\.net/\" to=\"https://images.wikia.com/\"/><rule from=\"^http://(?:www\\.)?wikia\\.com/\" to=\"https://www.wikia.com/\"/><rule from=\"^http://([\\w-]+)\\.wikia\\.com/\" to=\"https://$1.wikia.com/\"/></ruleset>", "<ruleset name=\"wikidevi.com\" default_off=\"needs clearnet testing\" f=\"Wikidevi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikidot (partial)\" platform=\"mixedcontent\" f=\"Wikidot.xml\"><exclusion pattern=\"^http://blog\\.wikidot\\.com/(?:$|blog:.+[^/].*)\"/><exclusion pattern=\"^http://snippets\\.wikidot\\.com/(?:$|.+[^:].*)\"/><rule from=\"^http://([\\w\\-_]+\\.)?wdfiles\\.com/\" to=\"https://$1wdfiles.com/\"/><rule from=\"^http://(?:\\d)\\.([\\w\\-_]+)\\.wdfiles\\.com/\" to=\"https://$1.wdfiles.com/\"/><rule from=\"^http://wikidot\\.com/\" to=\"https://www.wikidot.com/\"/><rule from=\"^http://([\\w\\-_]+)\\.wikidot\\.com/local-\" to=\"https://$1.wikidot.com/local-\"/><rule from=\"^http://(blog|snippets|static(-\\d)?|www)\\.wikidot\\.com/\" to=\"https://$1.wikidot.com/\"/><securecookie host=\".*\\.wdfiles\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Wikileaks Party (partial)\" f=\"Wikileaks_Party.xml\"><rule from=\"^http://(www\\.)?wikileaksparty\\.org\\.au/(component|form|image|plugin|template)s/\" to=\"https://$1wikileaksparty.org.au/$2s/\"/></ruleset>", "<ruleset name=\"Wikimedia\" f=\"Wikimedia.xml\"><exclusion pattern=\"^http://(?:apt|parsoid-lb\\.eqiad|status|ubuntu)\\.wikimedia\\.org\"/><exclusion pattern=\"^http://blog\\.wikimedia\\.de/\"/><exclusion pattern=\"^http://tools\\.wikimedia\\.de/\"/><securecookie host=\"^(?:www\\.)?mediawiki\\.org$\" name=\".+\"/><securecookie host=\"^\\.wik(?:ibooks|idata|imedia|imediafoundation|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\\.org$\" name=\"^GeoIP$\"/><securecookie host=\"^(?:[^@:/]+\\.)?wik(?:ibooks|idata|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\\.org$\" name=\".+\"/><securecookie host=\"^(?:species|commons|meta|incubator|wikitech)\\.wikimedia\\.org$\" name=\".+\"/><securecookie host=\"^wikimediafoundation\\.org$\" name=\".+\"/><rule from=\"^http://(en|fr)wp\\.org/\" to=\"https://$1.wikipedia.org/wiki/\"/><rule from=\"^http://links\\.email\\.donate\\.wikimedia\\.org/\" to=\"https://www.links.mkt41.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikinvest\" f=\"Wikinvest.xml\"><securecookie host=\"^\\.www\\.wikinvest\\.com$\" name=\".+\"/><rule from=\"^http://(?:ad\\.|cdn\\.|www\\.)?wikinvest\\.com/\" to=\"https://www.wikinvest.com/\"/></ruleset>", "<ruleset name=\"WikiSpooks.com\" f=\"Wikispooks.xml\"><securecookie host=\"^(?:.*\\.)?wikispooks\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?wikispooks\\.com/\" to=\"https://$1wikispooks.com/\"/></ruleset>", "<ruleset name=\"Wikivs.com\" f=\"Wikivs.com.xml\"><rule from=\"^http://(?:www\\.)?wikivs\\.com/\" to=\"https://www.wikivs.com/\"/></ruleset>", "<ruleset name=\"Wild West Domains.com\" f=\"Wild-West-Domains.xml\"><securecookie host=\".*\\.wildwestdomains\\.com$\" name=\".*\"/><rule from=\"^http://(e|web)mail\\.wildwestdomains\\.com/\" to=\"https://login.secureserver.net/index.php?app=wbe&domain=$1mail.wildwestdomains.com\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WildArchives.com\" f=\"WildArchives.com.xml\"><securecookie host=\"^\\.wildarchives\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wild Planet Photo Magazine\" f=\"WildPlanetPhotoMagazine.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WildStar online.com\" f=\"WildStar-online.com.xml\"><rule from=\"^http://(?:www\\.)?wildstar-online\\.com/\" to=\"https://www.wildstar-online.com/\"/><rule from=\"^http://(forums|shop|static|support)\\.wildstar-online\\.com/\" to=\"https://$1.wildstar-online.com/\"/></ruleset>", "<ruleset name=\"Wild Apricot.org\" f=\"Wild_Apricot.org.xml\"><securecookie host=\"^wildapricot\\.org$\" name=\".+\"/><rule from=\"^http://(?:(f\\.)|www\\.)?wildapricot\\.org/\" to=\"https://$1wildapricot.org/\"/></ruleset>", "<ruleset name=\"Wildcard Corp.com\" f=\"Wildcard_Corp.com.xml\"><securecookie host=\"^\\.wildcardcorp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WBS-law.de\" f=\"Wilde_Beuger_Solmecke.xml\"><securecookie host=\"^www\\.wbs-law\\.de$\" name=\".+\"/><rule from=\"^http://wbs-law\\.de/\" to=\"https://www.wbs-law.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilders Security Forums\" f=\"Wilders-Security-Forums.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wildfiregames.com\" f=\"Wildfiregames.com.xml\"><securecookie host=\"^(www\\.|releases\\.)?wildfiregames\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiley (partial)\" default_off=\"failed ruleset test\" f=\"Wiley.xml\"><securecookie host=\"^sp\\.onlinelibrary\\.wiley\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wiley\\.com/(?:remcover\\.cg|WileyRemoteAPI/Cover\\.rap)i\\?isbn=(\\d{8})(\\w\\w)\" to=\"https://media.wiley.com/product_data/coverImage/$2/$1/$1$2.jpg\"/><rule from=\"^http://hesupport\\.wiley\\.com/(?:\\?.*)?$\" to=\"https://higheredwiley.custhelp.com/\"/><rule from=\"^http://onlinelibrary\\.wiley\\.com/store/([\\d\\.]+)(/[^/]+)?/asset/\" to=\"https://onlinelibrarystatic.wiley.com/store/$1$2/asset/\"/><rule from=\"^http://(images|sp\\.onlinelibrary|onlinelibrarystatic)\\.wiley\\.com/\" to=\"https://$1.wiley.com/\"/></ruleset>", "<ruleset name=\"wilhelm-gym.net\" default_off=\"failed ruleset test\" f=\"Wilhelm-gym.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Will Leather Goods\" f=\"Will_Leather_Goods.xml\"><securecookie host=\"^(?:.*\\.)?willleathergoods\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Willamette Week\" default_off=\"expired, self-signed\" f=\"Willamette_Week.xml\"><securecookie host=\"^www\\.wweek\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wweek\\.com/\" to=\"https://www.wweek.com/\"/></ruleset>", "<ruleset name=\"Willhaben.at (partial)\" f=\"Willhaben.at.xml\"><securecookie host=\"^mobile\\.willhaben\\.at$\" name=\".+\"/><rule from=\"^http://mobile\\.willhaben\\.at/\" to=\"https://mobile.willhaben.at/\"/></ruleset>", "<ruleset name=\"William Hill.com (mismatches)\" default_off=\"mismatch\" f=\"William-Hill-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"William Hill.com (partial)\" f=\"William-Hill.xml\"><exclusion pattern=\"^http://sports\\.williamhill\\.com/(?!acc/)\"/><securecookie host=\"^\\.williamhill\\.com$\" name=\"^(?:banner_(?:domain)?click|clickinfo|fd_click|exp_\\w+)\"/><securecookie host=\"^(?:ads2|www)\\.williamhill\\.com$\" name=\".\"/><rule from=\"^http://williamhill\\.com/\" to=\"https://www.williamhill.com/\"/><rule from=\"^http://cacheserve\\.williamhill\\.com/\" to=\"https://serve.williamhill.com/\"/><rule from=\"^http://whdn\\.williamhill\\.com/\" to=\"https://secdn.williamhill.com/\"/><exclusion pattern=\"^http://whdn\\.williamhill\\.com/+(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Williams College (self-signed)\" default_off=\"self-signed, mismatch\" platform=\"mixedcontent\" f=\"Williams-College-self-signed.xml\"><rule from=\"^http://(archives|biology|ces|chapin|chemistry|committees|communications|conferences|dean|dean-faculty|facultynotes|hmf|hr|library|math|mobile-services|oit|parents|physics|president|science|sustainability)\\.williams\\.edu/\" to=\"https://$1.williams.edu/\"/></ruleset>", "<ruleset name=\"Williams College (partial)\" f=\"Williams-College.xml\"><securecookie host=\"^\\w+\\.williams\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?williams\\.edu/\" to=\"https://www.williams.edu/\"/><rule from=\"^http://(admission|cf|francis|glow|it|roomscheduler|sarah|sites|wcma|web|webprspct)\\.williams\\.edu/\" to=\"https://$1.williams.edu/\"/><rule from=\"^http://people\\.williams\\.edu/\" to=\"https://sites.williams.edu/\"/></ruleset>", "<ruleset name=\"Willow Garage (partial)\" default_off=\"failed ruleset test\" f=\"Willow-Garage.xml\"><securecookie host=\"^(?:www)?\\.willowgarage\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?willowgarage\\.com/\" to=\"https://www.willowgarage.com/\"/></ruleset>", "<ruleset name=\"WilmerHale.com\" f=\"WilmerHale.com.xml\"><securecookie host=\"^www\\.wilmerhale\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilmington University (partial)\" default_off=\"failed ruleset test\" f=\"Wilmington_University.xml\"><rule from=\"^http://(?:www\\.)?wilmu\\.edu/\" to=\"https://www.wilmu.edu/\"/><rule from=\"^http://(?:www\\.)?webcampus\\.wilmu\\.edu/\" to=\"https://webcampus.wilmu.edu/\"/></ruleset>", "<ruleset name=\"Wilson Center.org\" f=\"Wilson_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wimdu.co.uk\" f=\"Wimdu.co.uk.xml\"><securecookie host=\"^[.w]*\\.wimdu\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wimp.com (partial)\" default_off=\"self-signed\" f=\"Wimp.com.xml\"><securecookie host=\"^\\.wimp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win-is.com\" f=\"Win-is.com.xml\"><securecookie host=\"^cp\\.win-is\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win-rd.jp\" f=\"Win-rd.jp.xml\"><securecookie host=\"^cp8?\\.win-rd\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win-sv.jp\" f=\"Win-sv.jp.xml\"><securecookie host=\"^cp\\.win-sv\\.jp$\" name=\".+\"/><rule from=\"^http://win-sv\\.jp/\" to=\"https://cp.win-sv.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinPcap.org\" f=\"WinPcap.xml\"><securecookie host=\"^\\.winpcap\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinRAR\" default_off=\"failed ruleset test\" f=\"WinRAR.xml\"><securecookie host=\"^.*\\.win-rar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?win-rar\\.com/\" to=\"https://www.win-rar.com/\"/></ruleset>", "<ruleset name=\"WinSCP\" f=\"WinSCP.xml\"><securecookie host=\"(^|\\.)winscp\\.net$\" name=\".+\"/><rule from=\"^http://www\\.winscp\\.net/\" to=\"https://winscp.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinSuperSite.com (partial)\" f=\"WinSuperSite.com.xml\"><rule from=\"^http://(?:www\\.)?winsupersite\\.com/(?=site-files/|sites/)\" to=\"https://winsupersite.com/\"/></ruleset>", "<ruleset name=\"WinTieWin\" default_off=\"failed ruleset test\" f=\"WinTieWin.xml\"><securecookie host=\"^\\.wintiewin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinZip.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"WinZip.com-falsemixed.xml\"><securecookie host=\"^\\.winzip\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?winzip\\.com/(?!cgi-bin/|.+/css/|favicon\\.ico|lang\\.json|static/)\" to=\"https://$1winzip.com/\"/></ruleset>", "<ruleset name=\"WinZip.com (partial)\" default_off=\"failed ruleset test\" f=\"WinZip.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?winzip\\.com/(?!cgi-bin/|.+/css/|favicon\\.ico|lang\\.json|static/|/win/\\w\\w/order\\.cgi)\"/><securecookie host=\"^\\.store\\.winzip\\.com$\" name=\".+\"/><rule from=\"^http://(store\\.|www\\.)?winzip\\.com/\" to=\"https://$1winzip.com/\"/><rule from=\"^http://image(?:wz)?\\.winzip\\.com/\" to=\"https://winzip.com/\"/><rule from=\"^http://inst\\.winzip\\.com/\" to=\"https://inst.avg.com/\"/><rule from=\"^http://install\\.winzip\\.com/\" to=\"https://98acdc60cb7e28f9e56a-c9c8355414dceb2e62093c8746e20714.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Winbond.com\" f=\"Winbond.com.xml\"><securecookie host=\"^www\\.winbond\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wincent.com\" f=\"Wincent.com.xml\"><rule from=\"^http://(?:www\\.)?wincent\\.com/\" to=\"https://wincent.com/\"/></ruleset>", "<ruleset name=\"Wind\" default_off=\"failed ruleset test\" f=\"Wind.com.gr.xml\"><securecookie host=\"^www\\.wind\\.com\\.gr$\" name=\".*\"/><rule from=\"^http://www\\.wind\\.com\\.gr/\" to=\"https://www.wind.com.gr/\"/></ruleset>", "<ruleset name=\"Wind River.com (problematic)\" default_off=\"expired, mismatched\" f=\"Wind_River.com-problematic.xml\"><securecookie host=\"^windriver\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http://(?:(secure\\.)|www\\.)?windriver\\.com/\" to=\"https://$1windriver.com/\"/></ruleset>", "<ruleset name=\"Wind River.com (partial)\" f=\"Wind_River.com.xml\"><securecookie host=\"^developer\\.windriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Maker.org (mismatches)\" default_off=\"mismatch\" platform=\"cacert\" f=\"Window-Maker-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Maker.org (partial)\" platform=\"cacert\" f=\"Window-Maker.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Window Switch\" f=\"Window_Switch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.winswitch\\.org/\" to=\"https://winswitch.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows.com\" f=\"Windows.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows.net\" f=\"Windows.net.xml\"><rule from=\"^http://(?:www\\.)?windows\\.net/$\" to=\"https://www.microsoft.com/net\"/><rule from=\"^http://(\\w+)\\.blob\\.core\\.windows\\.net/\" to=\"https://$1.blob.core.windows.net/\"/></ruleset>", "<ruleset name=\"Windows Azure.com\" f=\"Windows_Azure.xml\"><securecookie host=\"^(?:www\\.remoteapp)?\\.windowsazure\\.com$\" name=\".+\"/><rule from=\"^http://windowsazure\\.com/\" to=\"https://www.windowsazure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows IT Pro (partial)\" f=\"Windows_IT_Pro.xml\"><rule from=\"^http://(?:www\\.)?windowsitpro\\.com/(cart/checkout(?:$|\\?|/)|site-files/|sites/)\" to=\"https://windowsitpro.com/$1\"/></ruleset>", "<ruleset name=\"Windows Phone.com\" f=\"Windows_Phone.xml\"><securecookie host=\".+\\.windowsphone\\.com$\" name=\".+\"/><rule from=\"^http://windowsphone\\.com/\" to=\"https://www.windowsphone.com/\"/><rule from=\"^http://images\\.partner\\.windowsphone\\.com/\" to=\"https://wmoxy.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows Secrets.com (partial)\" f=\"Windows_Secrets.com.xml\"><rule from=\"^http://(www\\.)?windowssecrets\\.com/(?=favicon\\.ico|subscription-preferences(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1windowssecrets.com/\"/></ruleset>", "<ruleset name=\"Windstream Business.com (partial)\" f=\"Windstream_Business.xml\"><securecookie host=\"^\\.windstreambusiness\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.windstreambusiness\\.com$\" name=\".+\"/><rule from=\"^http://windstreambusiness\\.com/\" to=\"https://www.windstreambusiness.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windstream Communications (partial)\" f=\"Windstream_Communications.xml\"><securecookie host=\"^(?:\\.?rebates|www)\\.windstream\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?windstream\\.com/\" to=\"https://www.windstream.com/\"/><rule from=\"^http://rebates\\.windstream\\.com/.*\" to=\"https://rebates.windstream.com/\"/></ruleset>", "<ruleset name=\"Wine-Staging\" f=\"Wine-Staging.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wine Australia Corporation\" f=\"WineAustraliaCorporation.xml\"><rule from=\"^http://(?:www\\.)?wineaustralia\\.com/\" to=\"https://www.wineaustralia.com/\"/></ruleset>", "<ruleset name=\"WineHQ.org\" f=\"WineHQ.xml\"><securecookie host=\"^(?:appdb|\\.bugs|\\.forum)\\.winehq\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wingolog.org\" f=\"Wingolog.org.xml\"><rule from=\"^http://(?:www\\.)?wingolog\\.org/\" to=\"https://wingolog.org/\"/></ruleset>", "<ruleset name=\"Wingware.com (partial)\" f=\"Wingware.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.wingware\\.com/\" to=\"https://wingware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Winhawille.edu.hel.fi\" f=\"Winhawille.edu.hel.fi.xml\"><rule from=\"^http://winhawille\\.edu\\.hel\\.fi/\" to=\"https://winhawille.edu.hel.fi/\"/></ruleset>", "<ruleset name=\"Winhistory Forum\" f=\"Winhistory-Forum.xml\"><securecookie host=\"^\\.?www\\.winhistory-forum\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Winner.com (partial)\" f=\"Winner.com.xml\"><exclusion pattern=\"^http://casino\\.winner\\.com/(?!media/)\"/><exclusion pattern=\"^http://poker\\.winner\\.com/(?!style/|tpl/)\"/><exclusion pattern=\"^http://static\\.winner\\.com/www/\"/><securecookie host=\"^\\.winner\\.com$\" name=\"^banner_.+\"/><securecookie host=\".+\\.winner\\.com$\" name=\".+\"/><rule from=\"^http://((?:banner|chat-winner|m)?casino|cdn-bingo|login|m|mbingo|poker|secure|service|static|wap)\\.winner\\.com/\" to=\"https://$1.winner.com/\"/><rule from=\"^http://(?:secure)?(bingo|games|livecasino|mobile)\\.winner\\.com/\" to=\"https://secure$1.winner.com/\"/><rule from=\"^http://cachepoker\\.winner\\.com/\" to=\"https://poker.winner.com/\"/></ruleset>", "<ruleset name=\"Winoptions.com (partial)\" default_off=\"failed ruleset test\" f=\"Winoptions.com.xml\"><rule from=\"^http://cms\\.winoptions\\.com/(?=appProxy/|css/|favicon\\.ico|/?homemediaProxy/|images/|mediaProxy/)\" to=\"https://cms.winoptions.com/\"/></ruleset>", "<ruleset name=\"Wippies Webmail\" default_off=\"failed ruleset test\" f=\"Wippies.xml\"><rule from=\"^http://webmail\\.wippies\\.com/\" to=\"https://webmail.wippies.com/\"/></ruleset>", "<ruleset name=\"Wire.com (partial)\" f=\"Wire.com.xml\"><securecookie host=\"^(?:sunrise|www)\\.wire\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wire\\.com/\" to=\"https://www.wire.com/\"/><rule from=\"^http://su(nrise|pport)\\.wire\\.com/\" to=\"https://su$1.wire.com/\"/></ruleset>", "<ruleset name=\"WireEdit.com\" f=\"WireEdit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireclub.com\" f=\"Wireclub.com.xml\"><securecookie host=\"^www\\.wireclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wired (false MCB, partial)\" platform=\"mixedcontent\" f=\"Wired.xml\"><securecookie host=\"^subscriptions\\.wired\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wired\\.com/\" to=\"https://www.wired.com/\"/><rule from=\"^http://s(ecure|ubscribe|ubcriptions)\\.wired\\.com/\" to=\"https://s$1.wired.com/\"/><rule from=\"^http://cdni\\.wired\\.co\\.uk/\" to=\"https://d2f0ban6dhfdsw.cloudfront.net/\"/><rule from=\"^http://wrd\\.cm/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"WiredMinds (partial)\" f=\"WiredMinds.xml\"><exclusion pattern=\"^http://(?:www\\.)?wiredminds\\.de/(?!/?assets/|favicon\\.ico)\"/><securecookie host=\"\\.wiredminds\\.de$\" name=\"^WMSESSNAME$\"/><securecookie host=\"^(?:st1|test|wm)\\.wiredminds\\.de$\" name=\".+\"/><rule from=\"^http://((?:st1|test|wm|wmapp|www)\\.)?wiredminds\\.de/\" to=\"https://$1wiredminds.de/\"/></ruleset>", "<ruleset name=\"WiredSafety.org\" f=\"WiredSafety.org.xml\"><securecookie host=\"^(?:www\\.)?wiredsafety\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireless.org.au (partial)\" f=\"Wireless.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireless Leiden.nl (CAcert)\" platform=\"cacert\" f=\"Wireless_Leiden.nl-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireless Leiden.nl (partial)\" f=\"Wireless_Leiden.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireshark.org\" f=\"Wireshark.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wirral.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Wirral.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://democracy\\.wirral\\.gov\\.uk:443/\" to=\"https://democracy.wirral.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wirral.gov.uk (partial)\" f=\"Wirral.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wishabi\" f=\"Wishabi.xml\"><securecookie host=\"^\\.merchants\\.wishabi\\.ca$\" name=\".+\"/><rule from=\"^http://f\\.wishabi\\.ca/\" to=\"https://s3.amazonaws.com/f.wishabi.ca/\"/><rule from=\"^http://f1\\.wishabi\\.ca/\" to=\"https://d2e0sxz09bo7k2.cloudfront.net/\"/><rule from=\"^http://(analytic|(?:editorials\\.)?merchant)s\\.wishabi\\.ca/\" to=\"https://$1s.wishabi.ca/\"/></ruleset>", "<ruleset name=\"Wishlist Granted.com\" default_off=\"failed ruleset test\" f=\"Wishlist_Granted.com.xml\"><rule from=\"^http://(?:www\\.)?wishlistgranted\\.com/\" to=\"https://wishlistgranted.com/\"/></ruleset>", "<ruleset name=\"Wishpot.com\" f=\"Wishpot.com.xml\"><securecookie host=\"^(?:it|uk|www)?\\.wishpot\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wishpot\\.com/\" to=\"https://www.wishpot.com/\"/><rule from=\"^http://(it|uk)\\.wishpot\\.com/\" to=\"https://$1.wishpot.com/\"/></ruleset>", "<ruleset name=\"WISS\" f=\"Wiss.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wistia.net\" f=\"Wistia.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wistia.com (partial)\" f=\"Wistia.xml\"><exclusion pattern=\"^http://home\\.wistia\\.com/(?!images/)\"/><securecookie host=\"^(?:embed-ssl|prime)\\.wistia\\.com$\" name=\".+\"/><rule from=\"^http://embed\\.wistia\\.com/\" to=\"https://wistia.sslcs.cdngc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wit.ai\" f=\"Wit.ai.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WithSIX.com (Partial)\" f=\"WithSIX.xml\"><exclusion pattern=\"^http://withsix\\.com/+(?!gopremium(?:$|[?/]))\"/><exclusion pattern=\"^http://connect\\.withsix\\.com/+(?!(?:login|register)(?:$|[?/])|me/)\"/><securecookie host=\"^dev\\.withsix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"With Google.com\" f=\"With_Google.com.xml\"><securecookie host=\"^[\\w-]+\\.withgoogle\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?withgoogle\\.com/\" to=\"https://$1withgoogle.com/\"/></ruleset>", "<ruleset name=\"Withknown.com\" f=\"Withknown.com.xml\"><exclusion pattern=\"^http://(?:assets|docs|stream)\\.withknown\\.com/\"/><rule from=\"^http://([\\w-]+\\.)?withknown\\.com/\" to=\"https://$1withknown.com/\"/></ruleset>", "<ruleset name=\"Witness.org\" default_off=\"expired, mismatched, self-signed\" f=\"Witness.org.xml\"><securecookie host=\"^\\.?witness\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wix.com (partial)\" f=\"Wix.xml\"><exclusion pattern=\"^http://www\\.wix\\.com/+(?!favicon\\.ico|(?:my-account|signin|support)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http://tracking\\.wix\\.com/\" to=\"https://wix.go2cloud.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wix static.com\" f=\"Wix_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wizard Internet Services (partial)\" f=\"Wizard-Internet-Services.xml\"><rule from=\"^http://mail\\.wizard\\.ca/\" to=\"https://www.cityemail.com/\"/><rule from=\"^http://secure\\.wizard\\.ca/\" to=\"https://secure.wizard.ca/\"/></ruleset>", "<ruleset name=\"Wizards of the Coast (expired)\" default_off=\"expired\" f=\"Wizards-of-the-Coast-problematic.xml\"><rule from=\"^http://community\\.wizards\\.com/\" to=\"https://community.wizards.com/\"/></ruleset>", "<ruleset name=\"Wizards of the Coast (partial)\" default_off=\"failed ruleset test\" f=\"Wizards.xml\"><securecookie host=\"^(?:.+\\.)?wizards\\.com$\" name=\".+\"/><rule from=\"^http://(accounts\\.|www\\.)?wizards\\.com/\" to=\"https://$1wizards.com/\"/><rule from=\"^http://images\\.community\\.wizards\\.com/\" to=\"https://images.onesite.com/\"/></ruleset>", "<ruleset name=\"Wizbang\" f=\"Wizbang.xml\"><securecookie host=\"^\\.wizbangblog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wizbang Pop\" f=\"Wizbang_Pop.xml\"><securecookie host=\"^\\.wizbangpop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wj32.org\" f=\"Wj32.org.xml\"><securecookie host=\"^(www\\.|nyc-lane\\.|git\\.)?wj32\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wk3.org\" f=\"Wk3.org.xml\"><securecookie host=\"^wk3\\.org$\" name=\".+\"/><rule from=\"^http://wk3\\.org/\" to=\"https://wk3.org/\"/></ruleset>", "<ruleset name=\"WoSign.cn\" f=\"WoSign.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoSign.com (partial)\" f=\"WoSign.com.xml\"><rule from=\"^http://((?:api2?|bbs|buy|certlogin|login|m|my|partner|support|www)\\.)?wosign\\.com/\" to=\"https://$1wosign.com/\"/></ruleset>", "<ruleset name=\"Woahh\" default_off=\"failed ruleset test\" f=\"Woahh.xml\"><securecookie host=\"^\\.woahh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolfire Games (partial)\" default_off=\"expired, mismatch\" f=\"Wolfire-Games.xml\"><rule from=\"^http://(?:www\\.)?wolfire\\.com/\" to=\"https://www.wolfire.com/\"/><rule from=\"^http://(blog|trac)\\.wolfire\\.com/\" to=\"https://$1.wolfire.com/\"/></ruleset>", "<ruleset name=\"Wolfram.com (partial) \" f=\"Wolfram.com.xml\"><securecookie host=\"^user\\.wolfram\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wolfram\\.com/\" to=\"https://www.wolfram.com/\"/><rule from=\"^http://user\\.wolfram\\.com/\" to=\"https://user.wolfram.com/\"/><rule from=\"^http://reference\\.wolfram\\.com/\" to=\"https://reference.wolfram.com/\"/></ruleset>", "<ruleset name=\"Wolfram Alpha.com (experimental)\" default_off=\"Breaks login\" f=\"Wolfram_Alpha.xml\"><exclusion pattern=\"^http://www\\d\\w?\\.wolframalpha\\.com/input/(?:pod|recalculate)\\.jsp\"/><securecookie host=\"^\\.wolframalpha\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:volunteer|www)\\.wolframalpha\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wolframalpha\\.com/\" to=\"https://www.wolframalpha.com/\"/><rule from=\"^http://(volunteer|www\\d\\w?)\\.wolframalpha\\.com/\" to=\"https://$1.wolframalpha.com/\"/></ruleset>", "<ruleset name=\"Wolfram CDN.com\" f=\"Wolfram_CDN.com.xml\"><rule from=\"^http://www\\.wolframcdn\\.com/\" to=\"https://www.wolframcdn.com/\"/></ruleset>", "<ruleset name=\"Wolframcloud.com\" f=\"Wolframcloud.com.xml\"><rule from=\"^http://(?:www\\.)?wolframcloud\\.com/\" to=\"https://www.wolframcloud.com/\"/><rule from=\"^http://programming\\.wolframcloud\\.com/\" to=\"https://programming.wolframcloud.com/\"/></ruleset>", "<ruleset name=\"Wolframscience.com\" f=\"Wolframscience.com.xml\"><rule from=\"^http://(?:www\\.)?wolframscience\\.com/\" to=\"https://www.wolframscience.com/\"/></ruleset>", "<ruleset name=\"Wolfson Microelectronics (partial)\" default_off=\"connection refused\" f=\"Wolfson-Microelectronics.xml\"><securecookie host=\"^www\\.wolfsonmicro\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wolrdssl.net (partial)\" f=\"Wolrdssl.net.xml\"><exclusion pattern=\"^http://www\\.wolrdssl\\.net/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoltLab.com\" f=\"WoltLab.com.xml\"><securecookie host=\"^(?:www)?\\.woltlab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolverhampton.gov.uk (partial)\" f=\"Wolverhampton.gov.uk.xml\"><exclusion pattern=\"^http://m\\.wolverhampton\\.gov\\.uk/+(?!CHttpHandler\\.ashx|(?:article/(?:1165/Contact-form|2614/Request-a-new-bin|4771/Report-a-missed-bin|5115/Website-feedback|6/Login)|reportflytipping)(?:$|[?/])|media/|wolverhampton/(?:css/|images/|scripts/.+\\.css))\"/><exclusion pattern=\"^http://(?:www\\.)?wolverhampton\\.gov\\.uk/+(?!(?:article/6/Login|myaccount)(?:$|[?/])|media/|moderngov/wcc/|wolverhampton/(?:css|images|template)/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!m\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http://wolverhampton\\.gov\\.uk/\" to=\"https://www.wolverhampton.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Women Innovate Mobile\" default_off=\"mismatch\" f=\"Women-Innovate-Mobile.xml\"><rule from=\"^http://(?:www\\.)?womeninnovatemobile\\.com/(display|layout|storage|universal)/\" to=\"https://womeninnovatemobile.com/$1/\"/></ruleset>", "<ruleset name=\"Women Sex Pova.com (partial)\" f=\"Women_Sex_Pova.com.xml\"><rule from=\"^http://(www\\.)?womensexpova\\.com/(?=assets/|favicon\\.ico|public/)\" to=\"https://$1womensexpova.com/\"/></ruleset>", "<ruleset name=\"Women on Web\" f=\"Women_on_Web.xml\"><securecookie host=\"^www\\.womenonweb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Womenonwaves.org\" f=\"Womenonwaves.org.xml\"><rule from=\"^http://(?:www\\.)?womenonwaves\\.org/\" to=\"https://www.womenonwaves.org/\"/></ruleset>", "<ruleset name=\"Womens Aid.com (partial)\" f=\"Womens-Aid.xml\"><exclusion pattern=\"^http://www\\.womensaid\\.ie/+(?!common/|donate(?:$|[?/])|imglibrary/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Women's Health Specialists (partial)\" f=\"Womens_Health_Specialists.xml\"><rule from=\"^http://(?:www\\.)?womenshealthspecialists\\.org/(app/|css/|images/|scripts/|.+\\?type=pdf)\" to=\"https://www.womenshealthspecialists.org/$1\"/></ruleset>", "<ruleset name=\"Womenshealth.de\" platform=\"mixedcontent\" f=\"Womenshealth.de.xml\"><rule from=\"^http://www\\.womenshealth\\.de/\" to=\"https://www.womenshealth.de/\"/><rule from=\"^http://images\\.womenshealth\\.de/\" to=\"https://images.womenshealth.de/\"/></ruleset>", "<ruleset name=\"Wonderlandmovies\" f=\"Wonderlandmovies.xml\"><securecookie host=\"^(?:www)?\\.wonderlandmovies\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wonderlandmovies\\.de/\" to=\"https://www.wonderlandmovies.de/\"/></ruleset>", "<ruleset name=\"Wonderwall.com (partial)\" default_off=\"expired, untrusted root\" f=\"Wonderwall.com.xml\"><rule from=\"^http://static\\d?\\.wonderwall\\.com/\" to=\"https://wonderwall.msn.com/\"/></ruleset>", "<ruleset name=\"Wonga.com\" f=\"Wonga.com.xml\"><securecookie host=\"^www\\.wonga\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wonga\\.com/\" to=\"https://www.wonga.com/\"/></ruleset>", "<ruleset name=\"WooConf.com (partial)\" f=\"WooConf.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?wooconf\\.com/+(?!_static/|wp-content/)\"/><exclusion pattern=\"^http://2014\\.wooconf\\.com/+(?!_static/|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WooThemes (partial)\" f=\"WooThemes.xml\"><rule from=\"^http://(www\\.)?woothemes\\.com/wp-(content|includes)/\" to=\"https://$1woothemes.com/wp-$2/\"/><rule from=\"^http://wcdocs\\.woothemes\\.com/\" to=\"https://woocommercedoc.wpengine.com/\"/></ruleset>", "<ruleset name=\"Woobox.com (partial)\" f=\"Woobox.com.xml\"><exclusion pattern=\"^http://blog\\.woobox\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^(?:\\.|www\\.)?woobox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wood Green.org.uk (partial)\" f=\"Wood_Green.org.uk.xml\"><rule from=\"^http://(?:www\\.)?woodgreen\\.org\\.uk/(?=assets/|favicon\\.ico|images/|stylesheets/)\" to=\"https://www.woodgreen.org.uk/\"/></ruleset>", "<ruleset name=\"Wood Green Shop.org.uk\" f=\"Wood_Green_Shop.org.uk.xml\"><securecookie host=\"^secure\\.woodgreenshop\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?woodgreenshop\\.org\\.uk/\" to=\"https://secure.woodgreenshop.org.uk/\"/></ruleset>", "<ruleset name=\"Wood Tree Swings\" f=\"Wood_Tree_Swings.xml\"><securecookie host=\"^\\.?woodtreeswing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wooga (partial)\" f=\"Wooga.xml\"><rule from=\"^http://cdn(?:12|-mkt)\\.wooga\\.com/\" to=\"https://cdn-mkt.wooga.com/\"/></ruleset>", "<ruleset name=\"Woolworths Australia\" f=\"Woolworths-AU.xml\"><securecookie host=\"^.*\\.woolworths\\.com\\.au$\" name=\".+\"/><securecookie host=\"^.*\\.woolworthsonline\\.com\\.au$\" name=\".+\"/><securecookie host=\"^(www\\.)?everydayrewards\\.com\\.au$\" name=\".+\"/><rule from=\"^http://woolworths\\.com\\.au/\" to=\"https://www.woolworths.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woopra.com (partial)\" f=\"Woopra.xml\"><securecookie host=\"^(?:w*\\.)?woopra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woot (partial)\" f=\"Woot.xml\"><rule from=\"^http://(?:www\\.)?w[0o]{2}t\\.com/((?:account|App_Themes|Blog|Forums|[iI]mages|Search)(?:$|/)|(?:blog/rss|Jobs|Recalls|SponsorUs|Terms|WhatIsWoot|WriteUs)\\.aspx)\" to=\"https://www.woot.com/$1\"/><rule from=\"^http://(account|members)\\.woot\\.com/\" to=\"https://$1.woot.com/\"/><rule from=\"^http://(avatar|images\\.deals|(?:gzip\\.)?static)\\.woot\\.com/\" to=\"https://s3.amazonaws.com/$1.woot.com/\"/></ruleset>", "<ruleset name=\"Wopsa (partial)\" default_off=\"http redirect\" f=\"Wopsa.xml\"><securecookie host=\"kundarea\\.wopsa\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worcester Polytechnic Institute (partial)\" f=\"Worcester-Polytechnic-Institute.xml\"><securecookie host=\"^my\\.wpi\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wpi\\.edu/\" to=\"https://www.wpi.edu/\"/><rule from=\"^http://my\\.wpi\\.edu/\" to=\"https://my.wpi.edu/\"/></ruleset>", "<ruleset name=\"WordCamp (partial)\" f=\"WordCamp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WordPress blogs\" default_off=\"mismatch\" f=\"WordPress-blogs.xml\"><securecookie host=\"^dictionaryblog\\.cambridge\\.org$\" name=\".*\"/><securecookie host=\"^eatocracy\\.cnn\\.com$\" name=\".*\"/><securecookie host=\"^hackaday\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?9to5mac\\.com/\" to=\"https://9to5mac.com/\"/><rule from=\"^http://(?:www\\.)?annotum\\.org/\" to=\"https://annotum.org/\"/><rule from=\"^http://blog\\.ansibleworks\\.com/\" to=\"https://blog.ansibleworks.com/\"/><rule from=\"^http://(?:www\\.)?armservers\\.com/\" to=\"https://armservers.com/\"/><rule from=\"^http://blog\\.bandcamp\\.com/\" to=\"https://blog.bandcamp.com/\"/><rule from=\"^http://(?:www\\.)?blogmaverick\\.com/\" to=\"https://blogmaverick.com/\"/><rule from=\"^http://dictionaryblog\\.cambridge\\.org/\" to=\"https://dictionaryblog.cambridge.org/\"/><rule from=\"^http://(?:www\\.)?charles-carreon\\.com/\" to=\"https://charles-carreon.com/\"/><rule from=\"^http://(eatocracy|tech\\.fortune|globalpublicsquare)\\.cnn\\.com/\" to=\"https://$1.cnn.com/\"/><rule from=\"^http://(?:www\\.)?codepoet\\.com/\" to=\"https://codepoet.com/\"/><rule from=\"^http://(?:www\\.)?dietrolldie\\.com/\" to=\"https://dietrolldie.com/\"/><rule from=\"^http://news\\.efinancialcareers\\.com/\" to=\"https://news.efinancialcareers.com/\"/><rule from=\"^http://(?:www\\.)?emubrightfutures\\.org/\" to=\"https://emubrightfutures.org/\"/><rule from=\"^http://blog\\.feedly\\.com/\" to=\"https://blog.feedly.com/\"/><rule from=\"^http://(?:www\\.)?fightcopyrighttrolls\\.com/\" to=\"https://fightcopyrighttrolls.com/\"/><rule from=\"^http://safeandsavvy\\.f-secure\\.com/\" to=\"https://safeandsavvy.f-secure.com/\"/><rule from=\"^http://(?:www\\.)?fusion\\.net/\" to=\"https://fusion.net/\"/><rule from=\"^http://blog\\.gitorious\\.org/\" to=\"https://blog.gitorious.org/\"/><rule from=\"^http://blog\\.gravity\\.com/\" to=\"https://blog.gravity.com/\"/><rule from=\"^http://(?:www\\.)?hackaday\\.com/\" to=\"https://hackaday.com/\"/><rule from=\"^http://(?:www\\.)?irrlab\\.com/\" to=\"https://irrlab.com/\"/><rule from=\"^http://(?:www\\.)?johnrennie\\.net/\" to=\"https://johnrennie.net/\"/><rule from=\"^http://(?:www\\.)?krystalstatus\\.co\\.uk/\" to=\"https://krystalstatus.co.uk/\"/><rule from=\"^http://(?:www\\.)?lbo-news\\.com/\" to=\"https://lbo-news.com/\"/><rule from=\"^http://blog\\.legacy\\.com/\" to=\"https://blog.legacy.com/\"/><rule from=\"^http://blog\\.loomio\\.org/\" to=\"https://blog.loomio.org/\"/><rule from=\"^http://blog\\.magellanmodels\\.com/\" to=\"https://blog.magellanmodels.com/\"/><rule from=\"^http://blog\\.nanigans\\.com/\" to=\"https://blog.nanigans.com/\"/><rule from=\"^http://(?:www\\.)?nypost\\.com/\" to=\"https://nypost.com/\"/><rule from=\"^http://(?:www\\.)?observer\\.com/\" to=\"https://observer.com/\"/><rule from=\"^http://blog\\.onlive\\.com/\" to=\"https://blog.onlive.com/\"/><rule from=\"^http://blog\\.opendz\\.org/\" to=\"https://blog.opendz.org/\"/><rule from=\"^http://blog\\.opengroup\\.org/\" to=\"https://blog.opengroup.org/\"/><rule from=\"^http://blog\\.peopleschoice\\.com/\" to=\"https://blog.peopleschoice.com/\"/><rule from=\"^http://(?:www\\.)?perspectives-project\\.org/\" to=\"https://perspectives-project.org/\"/><rule from=\"^http://(magazine|servicesblog)\\.redhat\\.com/\" to=\"https://$1.redhat.com/\"/><rule from=\"^http://blog\\.rstudio\\.org/\" to=\"https://blog.rstudio.org/\"/><rule from=\"^http://blog\\.safariflow\\.com/\" to=\"https://blog.safariflow.com/\"/><rule from=\"^http://blog\\.side\\.cr/\" to=\"https://blog.side.cr/\"/><rule from=\"^http://blog\\.suitabletech\\.com/\" to=\"https://blog.suitabletech.com/\"/><rule from=\"^http://(?:www\\.)?techcrunch\\.com/\" to=\"https://techcrunch.com/\"/><rule from=\"^http://(business|entertainment|healthland|ideas|keepingscore|life|lightbox|nation|newsfeed|science|style|swampland|techland|thepage|world)\\.time\\.com/\" to=\"https://$1.time.com/\"/><rule from=\"^http://blog\\.tinypic\\.com/\" to=\"https://blog.tinypic.com/\"/><rule from=\"^http://(?:www\\.)?tppinfo\\.org/\" to=\"https://tppinfo.org/\"/><rule from=\"^http://(dee|support)\\.uidaho\\.edu/\" to=\"https://$1.uidaho.edu/\"/><rule from=\"^http://blog\\.verticalacuity\\.com/\" to=\"https://blog.verticalacuity.com/\"/><rule from=\"^http://(?:www\\.)?wordpress\\.tv/\" to=\"https://wordpress.tv/\"/><rule from=\"^http://blog\\.wordpress\\.tv/\" to=\"https://blog.wordpress.tv/\"/><rule from=\"^http://blog\\.zamzar\\.com/\" to=\"https://blog.zamzar.com/\"/></ruleset>", "<ruleset name=\"WordPress (partial)\" f=\"WordPress.xml\"><exclusion pattern=\"^http://(?:[^/:@\\.]+\\.)?wordpress\\.com/latex\\.php(?:\\?.*)?$\"/><exclusion pattern=\"^http://s-plugins\\.wordpress\\.org/\"/><securecookie host=\"^wordpress\\.com$\" name=\"^wordpress_homepage$\"/><securecookie host=\"^\\.wordpress\\.com$\" name=\"^(?:km_\\w\\w|kvcd|optimizely\\w+)$\"/><securecookie host=\"^wordpress\\.org$\" name=\".+\"/><securecookie host=\".*\\.wordpress\\.(?:com|org)$\" name=\"^__utm\\w$\"/><rule from=\"^http://wordpress\\.(com|org)/\" to=\"https://wordpress.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.(blog|files)\\.wordpress\\.com/\" to=\"https://$1.$2.wordpress.com/\"/><rule from=\"^http://(\\w+)\\.blog\\.files\\.wordpress\\.com/\" to=\"https://$1-blog.files.wordpress.com/\"/><rule from=\"^http://s\\.wordpress\\.(com|org)/\" to=\"https://www.wordpress.$1/\"/><rule from=\"^http://s\\d\\.wordpress\\.(com|org)/\" to=\"https://secure.wordpress.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.wordpress\\.(com|org)/\" to=\"https://$1.wordpress.$2/\"/><rule from=\"^http://s\\.stats\\.wordpress\\.com/\" to=\"https://stats.wordpress.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.(trac|svn)\\.wordpress\\.org/\" to=\"https://$1.$2.wordpress.org/\"/><rule from=\"^http://(i[012]|s\\d*)\\.wp\\.com/\" to=\"https://$1.wp.com/\"/></ruleset>", "<ruleset name=\"The Word Pro\" f=\"Word_Pro.xml\"><securecookie host=\"^\\.thewordpro\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thewordpro\\.com/\" to=\"https://www.thewordpro.com/\"/></ruleset>", "<ruleset name=\"Word to the Wise.com (partial)\" f=\"Word_to_the_Wise.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wordentropy.org\" f=\"Wordentropy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wordfence.com\" f=\"Wordfence.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wordnik\" f=\"Wordnik.xml\"><securecookie host=\"^(?:www)?\\.wordnik\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WordsAPI.com\" f=\"WordsAPI.com.xml\"><securecookie host=\"^\\.wordsapi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Work4 Labs\" f=\"Work4_Labs.xml\"><securecookie host=\"^(?:\\.?www)?\\.work4labs.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorkKafe.com\" default_off=\"mismatched\" f=\"WorkKafe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorkWithColor.com\" default_off=\"mismatch, self-signed\" f=\"WorkWithColor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workable.com (partial)\" f=\"Workable.com.xml\"><exclusion pattern=\"^http://(?:blog|resources|support)\\.workable\\.com/\"/><securecookie host=\"^(?:\\.|www\\.)?workable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"workaround.org\" f=\"Workaround.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workforce Hosting.com (partial)\" f=\"Workforce_Hosting.com.xml\"><securecookie host=\"^sdsurf\\.workforcehosting\\.com$\" name=\".+\"/><rule from=\"^http://sdsurf\\.workforcehosting\\.com/\" to=\"https://sdsurf.workforcehosting.com/\"/></ruleset>", "<ruleset name=\"Workiva.com\" f=\"Workiva.com.xml\"><securecookie host=\"^\\.workiva\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workplace Giving\" platform=\"mixedcontent\" f=\"Workplace-Giving.xml\"><rule from=\"^http://(?:www\\.)?workplacegiving\\.co\\.uk/\" to=\"https://www.workplacegiving.co.uk/\"/></ruleset>", "<ruleset name=\"Workplace Gender Equality Agency\" default_off=\"failed ruleset test\" f=\"WorkplaceGenderEqualityAgency.xml\"><rule from=\"^http://(?:www\\.)?wgea\\.gov\\.au/\" to=\"https://www.wgea.gov.au/\"/></ruleset>", "<ruleset name=\"Works That Work.com\" f=\"Works_That_Work.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldCat.org\" f=\"WorldCat.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Community Grid\" f=\"WorldCommunityGrid.xml\"><securecookie host=\"^\\.worldcommunitygrid\\.org$\" name=\".+\"/><rule from=\"^http://worldcommunitygrid\\.org/\" to=\"https://www.worldcommunitygrid.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldDAB.org\" f=\"WorldDAB.org.xml\"><securecookie host=\"^\\.worlddab\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldMate.com\" f=\"WorldMate.com.xml\"><rule from=\"^http://(?:www\\.)?worldmate\\.com/\" to=\"https://www.worldmate.com/\"/><rule from=\"^http://cdn\\.worldmate\\.com/\" to=\"https://cdn.worldmate.com/\"/></ruleset>", "<ruleset name=\"WorldNow.com (partial)\" f=\"WorldNow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World of Games\" f=\"WorldOfGames.xml\"><rule from=\"^http://(?:www\\.)?wog\\.ch/\" to=\"https://www.wog.ch/\"/></ruleset>", "<ruleset name=\"WorldRemit.com\" f=\"WorldRemit.com.xml\"><securecookie host=\"^(?:agents|www)\\.worldremit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?worldremit\\.com/\" to=\"https://www.worldremit.com/\"/><rule from=\"^http://agents\\.worldremit\\.com/\" to=\"https://agents.worldremit.com/\"/></ruleset>", "<ruleset name=\"World Cube Association.org\" f=\"World_Cube_Association.org.xml\"><securecookie host=\"^www\\.worldcubeassociation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Development Movement\" default_off=\"failed ruleset test\" f=\"World_Development_Movement.xml\"><securecookie host=\"^\\.wdm\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The World Food Prize\" f=\"World_Food_Prize.xml\"><securecookie host=\"^(?:www\\.)?worldfoodprize\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Landscape Architecture\" f=\"World_Landscape_Architecture.xml\"><securecookie host=\"^\\.worldlandscapearchitect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Precision Instruments (partial)\" default_off=\"mismatched\" f=\"World_Precision_Instruments.xml\"><securecookie host=\"^store\\.wpiinc\\.com$\" name=\".+\"/><rule from=\"^http://store\\.wpiinc\\.com/\" to=\"https://store.wpiinc.com/\"/></ruleset>", "<ruleset name=\"World Television\" f=\"World_Television.xml\"><securecookie host=\"^streamstudio\\.world-television\\.com$\" name=\".+\"/><rule from=\"^http://(doddsegrads|streamstudio)\\.world-television\\.com/\" to=\"https://$1.world-television.com/\"/></ruleset>", "<ruleset name=\"World e-ID Congress\" default_off=\"expired, self-signed\" f=\"World_e-ID_Congress.xml\"><securecookie host=\"^www\\.worlde-idcongress\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?worlde-idcongress\\.com/\" to=\"https://www.worlde-idcongress.com/\"/></ruleset>", "<ruleset name=\"World for Pets.com.au\" f=\"World_for_Pets.com.au.xml\"><securecookie host=\"^www\\.worldforpets\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World of Warplanes (partial)\" f=\"World_of_Warplanes.xml\"><exclusion pattern=\"^http://(?:www\\.)?worldofwarplanes.(?:com|eu|ru)/(?!(?:auth|captcha|registration)(?:$|\\?|/)|dcont/|l?static/)\"/><securecookie host=\"^forum\\.worldofwarplanes\\.(?:com|eu|ru)$\" name=\".+\"/><rule from=\"^http://(?:(forum\\.|support\\.)|www\\.)?worldofwarplanes\\.(com|ru)/\" to=\"https://$1worldofwarplanes.$2/\"/><rule from=\"^http://(forum\\.|www\\.)?worldofwarplanes\\.eu/\" to=\"https://$1worldofwarplanes.eu/\"/></ruleset>", "<ruleset name=\"World of Warships (partial)\" f=\"World_of_Warships.xml\"><securecookie host=\"^forum\\.worldofwarships\\.(?:com|eu|ru)$\" name=\".+\"/><rule from=\"^http://forum\\.worldofwarships\\.(com|eu|ru)/\" to=\"https://forum.worldofwarships.$1/\"/></ruleset>", "<ruleset name=\"Worldhealth.net\" f=\"Worldhealth.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worldreader.org (partial)\" f=\"Worldreader.org.xml\"><rule from=\"^http://cdn\\.worldreader\\.org/\" to=\"https://d2rw7b0vuslxd3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Worn Through.com\" default_off=\"mismatch\" f=\"Worn-Through.xml\"><rule from=\"^http://(?:www\\.)?wornthrough\\.com/\" to=\"https://www.wornthrough.com/\"/></ruleset>", "<ruleset name=\"WorstPills.org\" f=\"WorstPills.org.xml\"><rule from=\"^http://(?:www\\.)?worstpills\\.org/\" to=\"https://www.worstpills.org/\"/></ruleset>", "<ruleset name=\"Woz.ch\" f=\"Woz.ch.xml\"><rule from=\"^http://(?:www\\.)?woz\\.ch/\" to=\"https://www.woz.ch/\"/></ruleset>", "<ruleset name=\"wpX.ne.jp\" f=\"WpX.ne.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wpmudev.org\" f=\"Wpmudev.org.xml\"><securecookie host=\"^\\.?premium\\.wpmudev\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wpmudev\\.org/.*\" to=\"https://premium.wpmudev.org/\"/><rule from=\"^http://premium\\.wpmudev\\.org/\" to=\"https://premium.wpmudev.org/\"/></ruleset>", "<ruleset name=\"wpveda.com\" f=\"Wpveda.com.xml\"><securecookie host=\"^\\.wpveda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WrapBootstrap.com (partial)\" f=\"WrapBootstrap.com.xml\"><securecookie host=\"^wrapbootstrap\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wrapbootstrap\\.com/\" to=\"https://wrapbootstrap.com/\"/></ruleset>", "<ruleset name=\"wrapadviser.co.uk\" f=\"Wrapadviser.co.uk.xml\"><securecookie host=\".+\\.wrapadviser\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.wrapadviser\\.co\\.uk/\" to=\"https://$1.wrapadviser.co.uk/\"/></ruleset>", "<ruleset name=\"wrating.com\" f=\"Wrating.com.xml\"><securecookie host=\"^\\.\" name=\"^vjsid$\"/><rule from=\"^http://sohu\\.wrating\\.com/\" to=\"https://dsl.wrating.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"writeLaTeX.com\" f=\"Writelatex.com.xml\"><rule from=\"^http://(?:www\\.)?writelatex\\.com/\" to=\"https://www.writelatex.com/\"/></ruleset>", "<ruleset name=\"Wrong Planet.net (broken MCB, partial)\" platform=\"mixedcontent\" f=\"Wrong_Planet.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?wrongplanet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wrzuta.pl (partial)\" f=\"Wrzuta.pl.xml\"><exclusion pattern=\"^http://(?:www\\.)?wrzuta\\.pl/(?!static/)\"/><rule from=\"^http://(?:ssl\\.|www\\.)?wrzuta\\.pl/\" to=\"https://ssl.wrzuta.pl/\"/></ruleset>", "<ruleset name=\"wservices.ch\" f=\"Wservices.ch.xml\"><securecookie host=\".+\\.wservices\\.ch$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?wservices\\.ch/\" to=\"https://$1wservices.ch/\"/></ruleset>", "<ruleset name=\"Wtop.com (partial)\" f=\"Wtop.com.xml\"><rule from=\"^http://(www\\.)?wtop\\.com/(?=css/|emedia/|favicon\\.ico|images/|jqueryO/)\" to=\"https://$1wtop.com/\"/></ruleset>", "<ruleset name=\"wtpx-Telekom.com\" f=\"Wtpx-Telekom.com.xml\"><securecookie host=\"^www\\.wtpx-telekom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wuala\" f=\"Wuala.xml\"><securecookie host=\"^(?:(?:www|forum|stats|support|thumb\\d+)\\.)?wuala\\.com$\" name=\".*\"/><rule from=\"^http://wuala\\.com/\" to=\"https://wuala.com/\"/><rule from=\"^http://(www|cdn|forum|stats|support|thumb\\d+)\\.wuala\\.com/\" to=\"https://$1.wuala.com/\"/></ruleset>", "<ruleset name=\"Wufoo\" f=\"Wufoo.xml\"><exclusion pattern=\"^http://help\\.\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?wufoo\\.com/\" to=\"https://$1wufoo.com/\"/></ruleset>", "<ruleset name=\"Wunderkraut.fi\" f=\"Wunderkraut.fi.xml\"><securecookie host=\"^\\.wunderkraut\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wunderlist (partial)\" f=\"Wunderlist.xml\"><securecookie host=\"^www\\.wunderlist\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wunderlist\\.com/\" to=\"https://www.wunderlist.com/\"/></ruleset>", "<ruleset name=\"Wurfljs\" f=\"Wurfljs.com.xml\"><rule from=\"^http://(www\\.)?wurfljs\\.com/\" to=\"https://wurfljs.com/\"/></ruleset>", "<ruleset name=\"Wush.Net\" f=\"Wush.Net.xml\"><securecookie host=\"^(?:(?:status|support|www)\\.)?wush\\.net$\" name=\".+\"/><rule from=\"^http://((?:billing|portal|support|www)\\.)?wush\\.net/\" to=\"https://$1wush.net/\"/><rule from=\"^http://status\\.wush\\.net/+\" to=\"https://portal.wush.net/\"/></ruleset>", "<ruleset name=\"www.cable-tv-deals.com\" default_off=\"failed ruleset test\" f=\"Www.cable-tv-deals.com.xml\"><securecookie host=\"^\\.cable-tv-deals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyenet\" default_off=\"expired\" f=\"Wyenet.xml\"><securecookie host=\"^(?:.*\\.)?wyenet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wyenet\\.(?:co\\.uk|net)/\" to=\"https://www.wyenet.co.uk/\"/></ruleset>", "<ruleset name=\"Wykop.pl (partial)\" default_off=\"failed ruleset test\" f=\"Wykop.pl.xml\"><securecookie host=\"^(?:www\\.)?wykop\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyndham (mismatches)\" default_off=\"mismatches\" f=\"Wyndham-mismatches.xml\"><rule from=\"^http://(?:www\\.)?landalskilife\\.(com|fr)/(bp|db|favicons|img)/\" to=\"https://www.landalskilife.$1/$2/\"/><rule from=\"^http://(?:www\\.)?ourvacationcentre\\.net/\" to=\"https://www.ourvacationcentre.net/~ourvacat/\"/><rule from=\"^http://(?:rcicruiseholidays\\.ourvacationcentre\\.net|(?:www\\.)?rcicruiseholidays\\.com)/\" to=\"https://rcicruiseholidays.ourvacationcentre.net/~ourvacat/rcicruise/\"/><rule from=\"^http://(?:www\\.)?wyndhamjobs\\.com/\" to=\"https://www.wyndhamjobs.com/\"/></ruleset>", "<ruleset name=\"Wyndham (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Wyndham.xml\"><exclusion pattern=\"^http://(?:www\\.)?landalskilife\\.(?:com|fr)/\"/><exclusion pattern=\"^http://www\\.wyndhamvrap\\.\"/><securecookie host=\"^(?:.*\\.)?(?:canvasholidays|cheznous|cottages(?:direct|4you)|english-country-cottages|hoseasons|(?:individual-|james)villas)\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?competitionsbywyndham\\.com\\.au$\" name=\".*\"/><securecookie host=\"^secure\\.landal\\.com$\" name=\".*\"/><securecookie host=\"^www\\.ourvacationstore\\.com$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?ovscruise\\.com$\" name=\".*\"/><securecookie host=\"^new\\.wyndhamvrap\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(canvasholidays|cheznous|cottages(?:4you|direct|election)|(?:english|french|irish|italian|scottish|welsh)-country-cottages|(?:individual-|james)villas|villas4you)\\.co\\.uk/\" to=\"https://www.$1.co.uk/\"/><rule from=\"^http://(www\\.)?competitionsbywyndham\\.com\\.au/\" to=\"https://$1competitionsbywyndham.com.au/\"/><rule from=\"^http://blog\\.cottages4you\\.co\\.uk/\" to=\"https://blog.cottages4you.co.uk/\"/><rule from=\"^http://(?:www\\.)?((?:easy|welcome)cottages|resortquestsecure|secureholidays|worldmarkbywyndham|wyndhamrentals)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://(images\\.|www\\.)?hoseasons\\.co\\.uk/\" to=\"https://$1hoseasons.co.uk/\"/><rule from=\"^http://landal(skilife)?\\.(\\w[\\w^z]\\w?)/\" to=\"https://www.landal$1.$2/\"/><rule from=\"^http://www\\.landal(skilife)?\\.(\\w[\\w^z]\\w?)/(bp|db|favicons|img)/\" to=\"https://www.landal$1.$2/$3/\"/><rule from=\"^http://(?:www\\.)?landal(?:skilife)?\\.cz/\" to=\"https://www.landal.cz/\"/><rule from=\"^http://landal(campings|parkshop)\\.([bd]e|nl)/\" to=\"https://www.landal$1.$2/\"/><rule from=\"^http://www\\.landacampings\\.([bd]e|nl)/(css|favicons|img)/\" to=\"https://www.landalcampings.$1/$2/\"/><rule from=\"^http://(?:www\\.)?landalparkshop\\.de/\" to=\"https://www.landal.de/\"/><rule from=\"^http://secure\\.landal\\.com/\" to=\"https://secure.landal.com/\"/><rule from=\"^http://(?:www\\.)?landalgreenparks\\.com/\" to=\"https://www.landal.com/\"/><rule from=\"^http://(www\\.)?mijnlandal\\.nl/\" to=\"https://$1mijnlandal.nl/\"/><rule from=\"^http://(www\\.)?ovscruise\\.com/\" to=\"https://$1ovscruise.com/\"/><rule from=\"^http://prep\\.rci\\.com/\" to=\"https://prep.rci.com/\"/><rule from=\"^http://(www\\.)?rcitravelstore\\.co\\.uk/(images/|includes/|managebooking/login\\.asp|shortlist/)\" to=\"https://$1rcitravelstore.co.uk/$2\"/><rule from=\"^http://wyndham\\.com/\" to=\"https://www.wyndham.com/\"/><rule from=\"^http://www\\.wyndham\\.com/(cms_content|hotels/images|resources)\" to=\"https://www.wyndham.com/$1/\"/><rule from=\"^http://wynres\\.wyndham\\.com/\" to=\"https://wynres.wyndham.com/\"/><rule from=\"^http://(hotels|new)\\.wyndhamvrap\\.com/\" to=\"https://$1.wyndhamvrap.com/\"/></ruleset>", "<ruleset name=\"WyzAnt (partial)\" f=\"WyzAnt.xml\"><rule from=\"^http://wyzant\\.com/\" to=\"https://www.wyzant.com/\"/><rule from=\"^http://www\\.wyzant\\.com/(DES/|(image|[gG]raphic|Les)s/|combiner\\.ashx|EmailTutor\\.aspx|(Script|Web)Resource\\.axd)\" to=\"https://www.wyzant.com/$1\"/></ruleset>", "<ruleset name=\"WyzerMe\" f=\"WyzerMe.xml\"><securecookie host=\"^www\\.wyzerme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wza.us\" platform=\"cacert\" f=\"Wza.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X-Cart.com (partial)\" f=\"X-Cart.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.demostore\\.x-cart\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X PRIZE.org (partial)\" f=\"X-PRIZE-Foundation.xml\"><exclusion pattern=\"^http://oceandiscovery\\.xprize\\.org/+(?!files/|misc/|profiles/\\w+/themes/|sites/)\"/><exclusion pattern=\"^http://www\\.xprize\\.org/+(?!donate(?:/?$|\\?)|files/|profiles/\\w+/themes/|sites/)\"/><securecookie host=\"^oceandiscoveryportal\\.xprize\\.org$\" name=\".\"/><rule from=\"^http://xprize\\.org/\" to=\"https://www.xprize.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-blog.jp\" default_off=\"mismatched\" f=\"X-blog.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-info.org\" f=\"X-info.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x10Hosting.com (partial)\" f=\"X10Hosting.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X2Go.org\" default_off=\"untrusted root\" f=\"X2Go.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://x2go\\.org/\" to=\"https://www.x2go.org/\"/><rule from=\"^http://bugs\\.x2go\\.org/\" to=\"https://packages.x2go.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAGYL.com\" f=\"XAGYL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAGYL.us\" f=\"XAGYL.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAP.com\" f=\"XAP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xCAT.nl\" default_off=\"expired, missing certificate chain\" f=\"XCAT.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XCDN.co\" f=\"XCDN.co.xml\"><securecookie host=\"^\\.xcdn\\.co$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XCart.com\" f=\"XCart.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XChatData.net\" f=\"XChatData.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XDA-Developers.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"XDA-Developers.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?xda-developers\\.com/+(?:favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:www\\.)?xda-developers\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?xda-developers\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1xda-developers.com/\"/></ruleset>", "<ruleset name=\"XDA Developers (partial)\" f=\"XDA-Developers.xml\"><exclusion pattern=\"^http://(?:www\\.)?xda-developers\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://forum\\.xda-developers\\.com/(?!clientscript/|css/|favicon\\.ico|images/)\"/><rule from=\"^http://(forum\\.|www\\.)?xda-developers\\.com/\" to=\"https://$1xda-developers.com/\"/><rule from=\"^http://(?:images|(?:(?:buttons|cdn|icons|img\\d?)\\.)?media)\\.xda-developers\\.com/\" to=\"https://forum.xda-developers.com/\"/><rule from=\"^http://cdn\\.www\\.xda-developers\\.com/\" to=\"https://www.xda-developers.com/\"/></ruleset>", "<ruleset name=\"XE (partial)\" f=\"XE.xml\"><rule from=\"^http://(?:www\\.)?xe\\.com/(themes/|xetrade/(?:help/)?login)\" to=\"https://www.xe.com/$1\"/><rule from=\"^http://fx2\\.xe\\.com/\" to=\"https://fx2.xe.com/\"/><rule from=\"^http://s\\.xe\\.com/\" to=\"https://gp1.wac.edgecastcdn.net/00157D/\"/></ruleset>", "<ruleset name=\"XEU.com (partial)\" f=\"XEU.com.xml\"><securecookie host=\"^\\.shop\\.xeu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (self-signed)\" default_off=\"self-signed\" f=\"XFCE.org-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (partial)\" f=\"XFCE.org.xml\"><securecookie host=\"^(?:.*\\.)xfce\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XGaming.com\" f=\"XGaming.xml\"><securecookie host=\"^www\\.xgaming\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xH CDN.com (partial)\" f=\"XH_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster.com (partial)\" f=\"XHamster.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?xhamster\\.com/+(?!favicon\\.ico|login\\.php|signup\\.php)\"/><exclusion pattern=\"^http://static\\.xhamster\\.com/crossdomain\\.xml\"/><securecookie host=\"^\\.xhamster\\.com$\" name=\"^(?:splash-\\d+|stats|uvts)$\"/><securecookie host=\"^partners\\.xhamster\\.com$\" name=\".\"/><rule from=\"^http://suggestions\\.xhamster\\.com/\" to=\"https://xhamster.uservoice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster Premium Pass.com (partial)\" f=\"XHamster_Premium_Pass.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.xhamsterpremiumpass\\.com/\" to=\"https://static.xhamster.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XILO.net (partial)\" default_off=\"failed ruleset test\" f=\"XILO-Communications.xml\"><securecookie host=\"^discuss\\.xilo\\.net$\" name=\".+\"/><rule from=\"^http://login\\.xilo\\.net/\" to=\"https://my.xilo.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XLHost.com (partial)\" f=\"XLHost.com.xml\"><securecookie host=\"^grande\\.xlhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XM-CDN.com\" f=\"XM-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XM.com\" f=\"XM.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://xm\\.com/\" to=\"https://www.xm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMLGold.eu\" f=\"XMLGold.eu.xml\"><securecookie host=\"^(?:www\\.|\\.)?xmlgold\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMMS2.org\" f=\"XMMS2.org.xml\"><securecookie host=\"^bugs\\.xmms2\\.org$\" name=\".+\"/><rule from=\"^http://www\\.xmms2\\.org/\" to=\"https://xmms2.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMOS.com (partial)\" f=\"XMOS.xml\"><exclusion pattern=\"^http://www\\.xmos\\.com/+(?!download/|favicon\\.ico|files/|misc/|register|sites/|system/|/user/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.jp\" f=\"XMPP.jp.xml\"><securecookie host=\"^(?:www\\.)?xmpp\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.net\" f=\"XMPP.net.xml\"><rule from=\"^http://www\\.xmpp\\.net/\" to=\"https://xmpp.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.org (partial)\" f=\"XMPP.org.xml\"><securecookie host=\"^xmpp\\.org$\" name=\".+\"/><rule from=\"^http://www\\.xmpp\\.org/\" to=\"https://xmpp.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.ru.net\" f=\"XMPP.ru.net.xml\"><securecookie host=\"^\\.xmpp\\.ru\\.net$\" name=\".+\"/><rule from=\"^http://xmpp\\.ru\\.net/\" to=\"https://www.xmpp.ru.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMind.net (partial)\" f=\"XMind.net.xml\"><exclusion pattern=\"^http://www\\.xmind\\.net/(?:blog|download)(?:$|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMission.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"XMission.com-problematic.xml\"><securecookie host=\"^accounting\\.xmission\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMission.com (partial)\" f=\"XMission.xml\"><securecookie host=\"^(?:.*\\.)?xmission\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XNET s.r.o.\" f=\"XNET.cz.xml\"><rule from=\"^http://www\\.xnet\\.cz/\" to=\"https://xnet.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XO.com (partial)\" f=\"XO-Communications.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XPD.se\" f=\"XPD.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XPic only.com\" f=\"XPic_only.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XS4ALL.nl (partial)\" f=\"XS4ALL.xml\"><securecookie host=\".\\.xs4all\\.nl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XSSposed.org\" f=\"XSSposed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xVideosx.tv\" f=\"XVideosx.tv.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xagasoft.com\" default_off=\"expired, missing certificate chain\" f=\"Xagasoft.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xakep.ru\" f=\"Xakep.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xamarin.com (partial)\" f=\"Xamarin.com.xml\"><exclusion pattern=\"^http://planet\\.xamarin\\.com/+(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|ARRAffinity)$\"/><rule from=\"^http://iosapi\\.xamarin\\.com/[^?]*\" to=\"https://developer.xamarin.com/api/root/ios-unified/\"/><rule from=\"^http://macapi\\.xamarin\\.com/[^?]*\" to=\"https://developer.xamarin.com/api/root/monomac-lib\"/><rule from=\"^http://support\\.xamarin\\.com/[^?]*\" to=\"https://xamarin.com/support\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xapo.com\" f=\"Xapo.com.xml\"><rule from=\"^http://help\\.xapo\\.com/\" to=\"https://support.xapo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xara.com (MCB)\" platform=\"mixedcontent\" f=\"Xara.com-mixedcontent.xml\"><exclusion pattern=\"^http://www\\.xara\\.com/readxaraonlinecookie\\.php\"/><securecookie host=\"^\\.xara\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://xara\\.com/\" to=\"https://www.xara.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xara.com (partial)\" f=\"Xara.com.xml\"><securecookie host=\"^\\.xara\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xara online.com (partial)\" platform=\"mixedcontent\" default_off=\"expired\" f=\"Xara_online.com.xml\"><rule from=\"^http://app\\.xaraonline\\.com/\" to=\"https://secure.xaraonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xato.net\" f=\"Xato.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xav.com\" f=\"Xav.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xavisys.com\" f=\"Xavisys.xml\"><securecookie host=\"^xavisys\\.com$\" name=\".*\"/><rule from=\"^http://www\\.xavisys\\.com/\" to=\"https://xavisys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xbee.net\" default_off=\"mismatched\" f=\"Xbee.net.xml\"><securecookie host=\"^(?:thehive\\.|www\\.)?xbee\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xbetsport.com\" f=\"Xbetsport.com.xml\"><securecookie host=\"^(?:w*\\.)?xbetsport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xbox.com (partial)\" f=\"Xbox.xml\"><exclusion pattern=\"^http://rewards\\.xbox\\.com/(?!css/|favicon\\.ico|join-now|(?:localized_)?media/)\"/><securecookie host=\"^\\.xbox\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^(?:help|live|music|myservice)\\.xbox\\.com$\" name=\".+\"/><rule from=\"^http://(compas|nxeasset)s\\.xbox\\.com/\" to=\"https://$1s-ssl.xbox.com/\"/><rule from=\"^http://feedback\\.xbox\\.com/\" to=\"https://feedbacklogin.xbox.com/\"/><rule from=\"^http://o\\.xbox\\.com/\" to=\"https://xbox-com.112.2o7.net/\"/><rule from=\"^http://piflc\\.xbox\\.com/\" to=\"https://piflc.xboxlive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xbox Live.com (partial)\" f=\"Xbox_Live.com.xml\"><rule from=\"^http://(avatar|compass)\\.xboxlive\\.com/\" to=\"https://$1-ssl.xboxlive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xdebug.org\" f=\"Xdebug.org.xml\"><securecookie host=\"^(bugs\\.)?xdebug\\.org\" name=\".+\"/><rule from=\"^http://www\\.xdebug\\.org/\" to=\"https://xdebug.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xdomain.ne.jp\" f=\"Xdomain.ne.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xelerence.com\" f=\"Xelerance.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xemail.de\" default_off=\"missing certificate chain\" f=\"Xemail.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen-Orchestra.com\" f=\"Xen-Orchestra.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XenServer.org\" f=\"XenServer.org.xml\"><securecookie host=\"^crowd\\.xenserver\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen Project.org (partial)\" f=\"Xen_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen VPS.com\" f=\"Xen_VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xeneris.net (partial)\" f=\"Xeneris.net.xml\"><securecookie host=\"^(?:kronix|\\.mail)\\.xeneris\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XenForo.com\" f=\"Xenforo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xengrade.com (partial)\" f=\"Xengrade.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xeno Gamers.org\" f=\"Xeno_Gamers.org.xml\"><securecookie host=\"^\\.?xenogamers\\.org$\" name=\".+\"/><rule from=\"^http://(img\\d\\.|www\\.)?xenogamers\\.org/\" to=\"https://$1xenogamers.org/\"/></ruleset>", "<ruleset name=\"Xenobite.eu\" f=\"Xenobite.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xenomai.org\" f=\"Xenomai.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xero mag.com\" f=\"Xero_mag.com.xml\"><securecookie host=\"^www\\.xeromag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xetra.com (partial)\" f=\"Xetra.com.xml\"><exclusion pattern=\"^http://www\\.xetra\\.com/+(?!blob/|image/|resources/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xetum.com (partial)\" f=\"Xetum.com.xml\"><rule from=\"^http://(www\\.)?xetum\\.com/(?=[^?/]+/+[^?/]+|checkout(?:$|[?/])|favicon\\.ico|static/)\" to=\"https://$1xetum.com/\"/></ruleset>", "<ruleset name=\"Xfire.com (partial)\" default_off=\"missing certificate chain\" f=\"Xfire.xml\"><securecookie host=\"^(?:www\\.)?xfire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xg4ken.com\" f=\"Xg4ken.com.xml\"><securecookie host=\"^\\d+\\.xg4ken\\.com$\" name=\".+\"/><rule from=\"^http://(\\d\\d)\\.xg4ken\\.com/\" to=\"https://$1.xg4ken.com/\"/></ruleset>", "<ruleset name=\"XiTi.com (partial)\" f=\"XiTi.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:idrxvr|tmst)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://logc142\\.xiti\\.com/\" to=\"https://logs1142.xiti.com/\"/><rule from=\"^http://logc2\\.xiti\\.com/\" to=\"https://logs2.xiti.com/\"/><rule from=\"^http://logi10\\.xiti\\.com/\" to=\"https://logs13.xiti.com/\"/><rule from=\"^http://logc20[56]\\.xiti\\.com/\" to=\"https://logs1204.xiti.com/\"/><rule from=\"^http://log[ci]242\\.xiti\\.com/\" to=\"https://logs1242.xiti.com/\"/><rule from=\"^http://log[ci]\\d+\\.xiti\\.com/\" to=\"https://logs.xiti.com/\"/><rule from=\"^http://(logs\\d*|secured75|v75)\\.xiti\\.com/\" to=\"https://$1.xiti.com/\"/></ruleset>", "<ruleset name=\"Xignite.com (partial)\" f=\"Xignite.xml\"><exclusion pattern=\"^http://www\\.xignite\\.com/(?:$|\\?|Documents/|market-data/|Products/|Support/)\"/><rule from=\"^http://cdn\\.xignite\\.com/\" to=\"https://d238gk3mw72oe2.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xine-project.org\" f=\"Xine-project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xing\" f=\"Xing.xml\"><securecookie host=\".*\\.xing\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?xing\\.com/\" to=\"https://$1xing.com/\"/><rule from=\"^http://x1\\.xingassets\\.com/\" to=\"https://x1.xingassets.com/\"/></ruleset>", "<ruleset name=\"Xiph.org\" f=\"Xiph.org.xml\"><securecookie host=\"^.*\\.xiph\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xiscosoft.es\" platform=\"cacert\" default_off=\"missing certificate chain\" f=\"Xiscosoft.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xively.com\" f=\"Xively.com.xml\"><securecookie host=\"^(?:\\.personal\\.|www\\.)?xively\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xm1 Math.net\" default_off=\"mismatched\" f=\"Xm1_Math.net.xml\"><securecookie host=\"^(?:www\\.)?xm1math\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xmarks.com (partial)\" f=\"Xmarks.xml\"><securecookie host=\"^(?:.*\\.)?xmarks.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xnet-x.net\" f=\"Xnet-x.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.xnet-x\\.net/\" to=\"https://xnet-x.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xnimg.cn\" f=\"Xnimg.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(a|s)\\.xnimg\\.cn/\" to=\"https://ssl.$1.xnimg.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xparkmedia.com\" f=\"Xparkmedia.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xperia Studio (partial)\" f=\"Xperia_Studio.xml\"><rule from=\"^http://(?:www\\.)?xperiastudio\\.com/wp-content/\" to=\"https://www.xperiastudio.com/wp-content/\"/></ruleset>", "<ruleset name=\"Xperience Days\" default_off=\"failed ruleset test\" f=\"Xperience-Days.xml\"><securecookie host=\"^secure\\.xperiencedays\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.xperiencedays\\.com/\" to=\"https://secure.xperiencedays.com/\"/><rule from=\"^http://(?:static\\.|www\\.)?xperiencedays\\.com/\" to=\"https://secure.xperiencedays.com/\"/></ruleset>", "<ruleset name=\"Xplosion.de\" f=\"Xplosion_interactive.xml\"><securecookie host=\".\\.xplosion\\.de$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xplr.com\" default_off=\"expired\" f=\"Xplr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xpra.org\" f=\"Xpra.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xramp.com\" f=\"Xramp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xREL.to\" f=\"Xrel.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xroxy.com\" default_off=\"expired\" f=\"Xroxy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xsens.com (partial)\" f=\"Xsens.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xserver (partial)\" f=\"Xserver.xml\"><exclusion pattern=\"^http://(?:www\\.)?xserver\\.(?:co|ne)\\.jp/(?:\\?.*)?$\"/><rule from=\"^http://(www\\.)?xserver\\.(co|ne)\\.jp/\" to=\"https://$1xserver.$2.jp/\"/></ruleset>", "<ruleset name=\"Xsolla.com (partial)\" f=\"Xsolla.xml\"><securecookie host=\"^(?:.+\\.)?xsolla\\.com$\" name=\".\"/><securecookie host=\"\\.\" name=\"^(?:__utm|_gat?$|AdRoll_vs$)\"/><rule from=\"^http://blog\\.xsolla\\.com/\" to=\"https://xsolla.com/blog/\"/><rule from=\"^http://status\\.xsolla\\.com/\" to=\"https://xsolla.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xt:Commerce (mismatches)\" default_off=\"mismatch\" f=\"Xt-Commerce-mismatches.xml\"><securecookie host=\"^www\\.xt-commerce\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?xt-commerce\\.co\\.uk/\" to=\"https://www.xt-commerce.co.uk/\"/></ruleset>", "<ruleset name=\"xt:Commerce (false MCB)\" platform=\"mixedcontent\" f=\"Xt-Commerce.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://xt-commerce\\.com/\" to=\"https://www.xt-commerce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XtGem.com (problematic)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"XtGem.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XtGem.com (partial)\" f=\"XtGem.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.xtgem\\.com/\" to=\"https://xtgem.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xtendmedia.com\" f=\"Xtendmedia.com.xml\"><rule from=\"^http://ad\\.xtendmedia\\.com/\" to=\"https://ad.rmxads.com/\"/></ruleset>", "<ruleset name=\"Xtenit (partial)\" f=\"Xtenit.xml\"><rule from=\"^http://([\\w-]+)\\.secure\\.xtenit\\.com/\" to=\"https://$1.secure.xtenit.com/\"/></ruleset>", "<ruleset name=\"xtnetwork.fr\" f=\"Xtnetwork.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XTREMEPAPERS.com\" f=\"Xtremepapers.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xtube.com\" platform=\"mixedcontent\" f=\"Xtube.com.xml\"><exclusion pattern=\"^http://cdn\\d\\.static\\.xtube\\.com/(?!img/|newcss/|newjs/|theme/|xtube/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\d\\.static\\.xtube\\.com/\" to=\"https://www.xtube.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xtwo.ne.jp (partial)\" f=\"Xtwo.ne.jp.xml\"><exclusion pattern=\"^http://www\\.xtwo\\.ne\\.jp/(?:\\?.*)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xumaa.com\" default_off=\"mismatched\" f=\"Xumaa.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xww.ro\" f=\"Xww.ro.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.xww\\.ro/\" to=\"https://xww.ro/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xxx24hr.com\" f=\"Xxx24hr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xxxbunker.com (partial)\" f=\"Xxxbunker.com.xml\"><exclusion pattern=\"^http://759425240\\.r\\.cdn77\\.net/(?:css/|images/tbc_|js/)\"/><exclusion pattern=\"^http://(?:www\\.)?xxxbunker\\.com/(?!\\w{8,}(?:-\\d)?\\.jpg|css/|(?:ajaxCommand|dmca|download|forgotPassword|iframePlayer|joinUs|privacy|video(?:List|Player|Vote))\\.php|favicon\\.ico|js/)\"/><rule from=\"^http://(?:109\\.201\\.146\\.247|759425240\\.r\\.cdn77\\.net)/\" to=\"https://xxxbunker.com/\"/><rule from=\"^http://(?:www\\.)?xxxbunker\\.com/js/functions_(\\d{4})\\.js\" to=\"https://xxxbunker.cachefly.net/js/functions_$1.js\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xyntekinc.com\" default_off=\"Certificate mismatch\" f=\"Xyntekinc.com.xml\"><rule from=\"^http://(?:www\\.)?xyntekinc\\.com/\" to=\"https://xyntekinc.com/\"/><securecookie host=\"^(?:www\\.)?xyntekinc\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Xyratex.com\" f=\"Xyratex.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"y6xjgkgwj47us5ca.onion\" platform=\"mixedcontent\" f=\"Y6xjgkgwj47us5ca.onion.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yBitcoin.com\" f=\"YBitcoin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?ybitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yBitcoin Magazine.com\" f=\"YBitcoin_Magazine.com.xml\"><securecookie host=\"^ybitcoinmagazine\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ybitcoinmagazine\\.com/\" to=\"https://ybitcoinmagazine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YCharts.com\" f=\"YCharts.com.xml\"><securecookie host=\"^ycharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YEAH!\" f=\"YEAH.xml\"><rule from=\"^http://(?:www\\.)?yeahtv\\.com/\" to=\"https://www.yeahtv.com/\"/></ruleset>", "<ruleset name=\"YGTech.Tools\" f=\"YGTech.Tools.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YIFY-Torrent.org\" f=\"YIFY-Torrent.org.xml\"><securecookie host=\"^\\.yify-torrent\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YJtag.jp\" f=\"YJtag.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YMCA of Greater St. Louis\" default_off=\"missing certificate chain\" f=\"YMCA_of_Greater_St_Louis.xml\"><securecookie host=\"^(?!\\.ymcastlouis\\.org$).\" name=\".\"/><rule from=\"^http://ymcastlouis\\.org/\" to=\"https://www.ymcastlouis.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YMCMB Official Merch\" f=\"YMCMB_Official_Merch.xml\"><rule from=\"^http://(?:www\\.)?ymcmbofficial\\.com/stores/(account_login\\.php|images/|skins_ymcmb/)\" to=\"https://www.ymcmbofficial.com/stores/$1\"/></ruleset>", "<ruleset name=\"YMcdn.com\" f=\"YMcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YMstat.com\" f=\"YMstat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YP bot.net (partial)\" f=\"YP_bot.net.xml\"><exclusion pattern=\"^http://media-cache\\.ypbot\\.net/\"/><rule from=\"^http://(?:static\\.solfoinc\\.netdna-cdn\\.com|st[12]?\\.ypbot\\.net)/\" to=\"https://solfo.pimg.net/\"/></ruleset>", "<ruleset name=\"YTS.to\" f=\"YTS.to.xml\"><securecookie host=\"^.*\\.yts\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YT Channel Embed.com (partial)\" f=\"YT_Channel_Embed.com.xml\"><exclusion pattern=\"^http://ytchannelembed\\.com/+(?!favicon\\.ico|wp-content/|ytce-gallery\\.php)\"/><rule from=\"^http://www\\.ytchannelembed\\.com/\" to=\"https://ytchannelembed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YUI Library\" default_off=\"refused\" f=\"YUI_Library.xml\"><securecookie host=\"^yuilibrary\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ya.ru (partial)\" f=\"Ya.ru.xml\"><securecookie host=\"^(?:auto|realty)\\.ya\\.ru$\" name=\".+\"/><rule from=\"^http://ya\\.ru/\" to=\"https://www.ya.ru/\"/><rule from=\"^http://(?:www\\.ewent|(?:www\\.)?(?:e[vw]|iv)ents)\\.ya\\.ru/+\" to=\"https://events.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?m\\.metro\\.ya\\.ru/[^?]*\" to=\"https://m.soft.yandex.ru/metro/\"/><rule from=\"^http://sobitia\\.ya\\.ru/+\" to=\"https://events.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?site\\.ya\\.ru/[^?]*\" to=\"https://site.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YaDi.sk\" f=\"YaDi.sk.xml\"><securecookie host=\"^(?:www\\.)?yadi\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yabause.org\" default_off=\"mismatched, self-signed\" f=\"Yabause.org.xml\"><securecookie host=\"^forums\\.yabause\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yabumi.cc\" f=\"Yabumi.cc.xml\"><securecookie host=\"^\\.yabumi\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yacuna.com\" f=\"Yacuna.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yadro.ru (partial)\" f=\"Yadro.ru.xml\"><securecookie host=\"^\\.yadro\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yagi-antennas.com\" default_off=\"self-signed\" f=\"Yagi-antennas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaha.no\" f=\"Yaha.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo-help.jp\" f=\"Yahoo-help.jp.xml\"><securecookie host=\"^www\\.yahoo-help\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.com (false MCB)\" platform=\"mixedcontent\" f=\"Yahoo.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.com.tw (partial)\" f=\"Yahoo.com.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.net (partial)\" f=\"Yahoo.net.xml\"><securecookie host=\"^hk\\.promotion\\.yahoo\\.net$\" name=\"^YLBID$\"/><securecookie host=\"(?:(?:fashion|promo)\\.tw\\.campaign|tw\\.discount|.+-c\\.c\\.yom\\.mail|hk\\.promotion)\\.yahoo\\.net$\" name=\".+\"/><rule from=\"^http://br\\.games\\.yahoo\\.net/img/\" to=\"https://secure.atrativa.com.br/img/\"/><rule from=\"^http://(\\w\\w\\.autocosmos|(?:m\\.)?tw\\.bigdeals|(?:fashion|house|games\\.m|marketing|promo|travel|yimg)\\.tw\\.campaign|espanol\\.cine|cinema|tw\\.(?:rimg\\.)?discount|tw\\.uimg\\.fashion|tw\\.urcosme\\.fashion|tw\\.(?:quote|screener)\\.finance|tw\\.gamedb\\.games|(?:es|fr|uk)\\.games|investor|[\\w-]+\\.c\\.yom\\.mail|tw\\.music|hk\\.promotion|(?:lib|order)\\.store|s\\.wc)\\.yahoo\\.net/\" to=\"https://$1.yahoo.net/\"/><rule from=\"^http://tw\\.(house|marketing)\\.campaign\\.yahoo\\.net/+\" to=\"https://$1.tw.campaign.yahoo.net/\"/><rule from=\"^http://developer\\.yahoo\\.net/[^?]*\" to=\"https://developer.yahoo.com/\"/><rule from=\"^http://uk\\.slot\\.games\\.yahoo\\.net/\" to=\"https://yahoogames.minver.com/\"/><rule from=\"^http://uk\\.health\\.lifestyle\\.yahoo\\.net/images/\" to=\"https://s.yimg.com/lq/lib/lsl/i/uk/\"/><rule from=\"^http://rp1\\.monday\\.vip\\.tw1\\.yahoo\\.net/\" to=\"https://tw.m.yimg.com/\"/></ruleset>", "<ruleset name=\"Yahoo! (partial)\" f=\"Yahoo.xml\"><exclusion pattern=\"^http://(?:www\\.)?totaltravel\\.com/images/\"/><exclusion pattern=\"^http://(?:(?:cn|kr|tw)\\.adspecs|(?:co|espanol|mx)\\.astrology|kr\\.mobile)\\.yahoo\\.com/\"/><exclusion pattern=\"^http://ca\\.local\\.yahoo\\.com/\"/><exclusion pattern=\"^http://cn\\.overview\\.mail\\.yahoo\\.com/\"/><exclusion pattern=\"^http://(?:br|es)\\.safely\\.yahoo\\.com/\"/><securecookie host=\"^ads\\.yahoo\\.com$\" name=\"^B$\"/><securecookie host=\"^\\.yahoo\\.com$\" name=\"^(?:AO|B|SSL)$\"/><securecookie host=\"^(?:ads|\\.analytics|\\w\\w\\.celebridades|\\w\\w\\.cinema|commercecentral|\\.contributor|tw\\.ysm\\.emarketing|everything|\\w\\w\\.financas|games|help|\\w\\w\\.help|homes|\\w\\w\\.local|\\.mail|\\.maps|\\.maktoob|movies|\\.?news|\\w\\w.news|\\.playerio|profile|(?:us-locdrop|video)\\.query|images\\.search|fr\\.images\\.search|\\.toolbar|\\.\\w\\w\\.tv|\\.uk|\\.?us|tw\\.uwant|\\.www)\\.yahoo\\.com$\" name=\".+\"/><securecookie host=\"^\\.bid\\.yahoo\\.com$\" name=\"^twRecentHistory$\"/><securecookie host=\"^\\.auctions\\.yahoo\\.com$\" name=\"^hkRecentHistory$\"/><securecookie host=\"^\\.zenfs\\.com$\" name=\"^BX$\"/><rule from=\"^http://i\\.acdn\\.us/\" to=\"https://s.yimg.com/ck/\"/><rule from=\"^http://(?:www\\.)?(?:rocket|y)mail\\.com/\" to=\"https://mail.yahoo.com/\"/><rule from=\"^http://(?:www\\.)?totaltravel\\.co(?:m|\\.uk)/\" to=\"https://au.totaltravel.yahoo.com/\"/><rule from=\"^http://builder\\.totaltravel\\.com/\" to=\"https://builder.totaltravel.com/\"/><rule from=\"^http://fr\\.actualites\\.yahoo\\.com/.*\" to=\"https://fr.news.yahoo.com/\"/><rule from=\"^http://advertisingcentral\\.yahoo\\.com/+(?=$|\\?)\" to=\"https://advertising.yahoo.com/\"/><rule from=\"^http://(?:cl|co|pe|ve)\\.answers\\.yahoo\\.com/+\" to=\"https://espanol.answers.yahoo.com/\"/><rule from=\"^http://(au|nz)\\.astrology\\.yahoo\\.com/[^?]*\" to=\"https://$1.lifestyle.yahoo.com/horoscopes/\"/><rule from=\"^http://ca\\.astrology\\.yahoo\\.com/.*\" to=\"https://ca.shine.yahoo.com/horoscope/\"/><rule from=\"^http://(ar|mx)\\.autos\\.yahoo\\.com/+\" to=\"https://$1.autocosmos.yahoo.net/\"/><rule from=\"^http://(de|fr)\\.autos\\.yahoo\\.com/+\" to=\"https://$1.cars.yahoo.com/\"/><rule from=\"^http://(au|nz)\\.biz\\.yahoo\\.com/[^?]*\" to=\"https://$1.finance.yahoo.com/news\"/><rule from=\"^http://(ar|au|br|ca|cl|de|fr|es|hk|id|ie|in|it|jp|mx|my|no|nz|ph|sg|tw|uk|us|vn)\\.careers\\.yahoo\\.com/+\" to=\"https://careers.yahoo.com/$1/\"/><rule from=\"^http://malaysia\\.careers\\.yahoo\\.com/+\" to=\"https://careers.yahoo.com/my/\"/><rule from=\"^http://qc\\.careers\\.yahoo\\.com/+\" to=\"https://careers.yahoo.com/ca/\"/><rule from=\"^http://cars\\.yahoo\\.com/\" to=\"https://autos.yahoo.com/\"/><rule from=\"^http://(?:tw\\.help\\.cc|help\\.cc\\.tw)\\.yahoo\\.com/.*\" to=\"https://help.yahoo.com/kb/index?page=home&locale=zh_TW\"/><rule from=\"^http://cn\\.yahoo\\.com/+\" to=\"https://sg.yahoo.com/\"/><rule from=\"^http://(?:cine|espanol\\.movies)\\.yahoo\\.com/+\" to=\"https://es-us.cine.yahoo.com/\"/><rule from=\"^http://(?:cl|co|pe|ve)\\.deportes\\.yahoo\\.com/+\" to=\"https://es-us.deportes.yahoo.com/\"/><rule from=\"^http://es\\.deportes\\.yahoo\\.com/+\" to=\"https://es.eurosport.yahoo.com/\"/><rule from=\"^http://www\\.developer\\.yahoo\\.com/[^?]*\" to=\"https://developer.yahoo.com/\"/><rule from=\"^http://au\\.dir\\.yahoo\\.com/+([^?]*).*\" to=\"https://au.search.yahoo.com/web?fr=$1\"/><rule from=\"^http://(?:dk|no|ru)\\.yahoo\\.com/+\" to=\"https://www.yahoo.com/\"/><rule from=\"^http://e1\\.yahoo\\.com/+\" to=\"https://espanol.yahoo.com/\"/><rule from=\"^http://hk\\.ent\\.yahoo\\.com/+\" to=\"https://hk.celebrity.yahoo.com/\"/><rule from=\"^http://java\\.europe\\.yahoo\\.com/\" to=\"https://adgallery.zenfs.com/\"/><rule from=\"^http://fr\\.eurosport\\.yahoo\\.com/\" to=\"https://fr.sports.yahoo.com/\"/><rule from=\"^http://es\\.everything\\.yahoo\\.com/.*\" to=\"https://es.todo.yahoo.com/\"/><rule from=\"^http://fantasysports\\.yahoo\\.com/(?=$|\\?)\" to=\"https://sports.yahoo.com/fantasy\"/><rule from=\"^http://es\\.laliga\\.fantasysports\\.yahoo\\.com/+\" to=\"https://es.eurosport.yahoo.com/fantasy/la-liga/\"/><rule from=\"^http://feedback\\.yahoo\\.com/\" to=\"https://yahoo.uservoice.com/\"/><rule from=\"^http://(i)?chart\\.finance\\.yahoo\\.com/\" to=\"https://$1chart.yahoo.com/\"/><rule from=\"^http://connectedtv\\.yahoo\\.com/[^?]*\" to=\"https://smarttv.yahoo.com/\"/><rule from=\"^http://kr\\.finance\\.yahoo\\.com/\" to=\"https://tools.search.yahoo.com/kr-eol.html\"/><rule from=\"^http://(au|nz)\\.food\\.yahoo\\.com/\" to=\"https://$1.lifestyle.yahoo.com/food/\"/><rule from=\"^http://de\\.games\\.yahoo\\.com/+\" to=\"https://de.spiele.yahoo.com/\"/><rule from=\"^http://(?:id|malaysia|nz|ph)\\.games\\.yahoo\\.com/+\" to=\"https://games.yahoo.com/\"/><rule from=\"^http://ie\\.(finance|groups|lifestyle)\\.yahoo\\.com/.*\" to=\"https://uk.$1.yahoo.com/\"/><rule from=\"^http://au\\.(?:answer|forum)s\\.yahoo\\.com/[^?]*\" to=\"https://au.answers.yahoo.com/\"/><rule from=\"^http://kr\\.(?:gugi|maps|searchad)\\.yahoo\\.com/.*\" to=\"https://tools.search.yahoo.com/kr-eol.html\"/><rule from=\"^http://fr\\.help\\.yahoo\\.com/+\" to=\"https://help.yahoo.com/l/fr/yahoo/helpcentral/\"/><rule from=\"^http://help\\.cc\\.hk\\.yahoo\\.com/.*\" to=\"https://help.yahoo.com/kb/index?page=home&locale=zh_HK\"/><rule from=\"^http://(?:home|realestate)\\.yahoo\\.com/+\" to=\"https://homes.yahoo.com/\"/><rule from=\"^http://(ar|es-us|mx)\\.lifestyle\\.yahoo\\.com/+\" to=\"https://$1.mujer.yahoo.com/\"/><rule from=\"^http://ca\\.(?:lifestyle|shine)\\.yahoo\\.com/\" to=\"https://ca.shine.yahoo.com/\"/><rule from=\"^http://fr\\.local\\.yahoo\\.com/.*\" to=\"https://fr.yahoo.com/\"/><rule from=\"^http://es\\.maps\\.yahoo\\.com/.*\" to=\"https://es.search.yahoo.com/search/es?p=callejero+itinerarios&y=y\"/><rule from=\"^http://in\\.maps\\.yahoo\\.com/.*\" to=\"https://maps.yahoo.com/\"/><rule from=\"^http://mx\\.maps\\.yahoo\\.com/+\" to=\"https://espanol.maps.yahoo.com/\"/><rule from=\"^http://nz\\.maps\\.yahoo\\.com/+\" to=\"https://nz.search.yahoo.com/search/maps/\"/><rule from=\"^http://ie\\.messenger\\.yahoo\\.com/.*\" to=\"https://uk.messenger.yahoo.com/\"/><rule from=\"^http://nz\\.messenger\\.yahoo\\.com/[^?].*\" to=\"https://messenger.yahoo.com/\"/><rule from=\"^http://ie\\.mobile\\.yahoo\\.com/.*\" to=\"https://uk.mobile.yahoo.com/\"/><rule from=\"^http://tw\\.music\\.yahoo\\.com/+\" to=\"https://tw.music.yahoo.net/\"/><rule from=\"^http://(?:axis|(?:dk|no)\\.mobile|dk\\.news)\\.yahoo\\.com/.*\" to=\"https://www.yahoo.com/\"/><rule from=\"^http://es\\.movies\\.yahoo\\.com/+\" to=\"https://es.cine.yahoo.com/\"/><rule from=\"^http://(br|fr|it)\\.movies\\.yahoo\\.com/+\" to=\"https://$1.cinema.yahoo.com/\"/><rule from=\"^http://dps\\.msg\\.yahoo\\.com/\" to=\"https://ycpi-mail-dps.msg.yahoo.com/\"/><rule from=\"^http://hk\\.(?:music|tv)\\.yahoo\\.com/.*\" to=\"https://hk.celebrity.yahoo.com/music/\"/><rule from=\"^http://(ar|br|co|es|mx|pe)\\.news\\.yahoo\\.com/+\" to=\"https://$1.noticias.yahoo.com/\"/><rule from=\"^http://ie\\.news\\.yahoo\\.com/.*\" to=\"https://uk.news.yahoo.com/n/news_ireland.html\"/><rule from=\"^http://on\\.yahoo\\.com/+\" to=\"https://pilotx1.yahoo.com/\"/><rule from=\"^http://rds?\\.yahoo\\.com/\" to=\"https://us.rd.yahoo.com/\"/><rule from=\"^http://(ar|cl|co|es-us|mx|pe|ve)\\.safely\\.yahoo\\.com/+\" to=\"https://$1.seguridad.yahoo.com/\"/><rule from=\"^http://malaysia\\.safely\\.yahoo\\.com/+\" to=\"https://my.safely.yahoo.com/\"/><rule from=\"^http://cn\\.search\\.yahoo\\.com/.*\" to=\"https://sg.search.yahoo.com/\"/><rule from=\"^http://kr\\.(?:images\\.)?search\\.yahoo\\.com/.*\" to=\"https://kr.search.yahoo.com/\"/><rule from=\"^http://my\\.images\\.search\\.yahoo\\.com/\" to=\"https://malaysia.images.search.yahoo.com/\"/><rule from=\"^http://nz\\.maps\\.search\\.yahoo\\.com/+\" to=\"https://nz.search.yahoo.com/\"/><rule from=\"^http://my\\.search\\.yahoo\\.com/+\" to=\"https://malaysia.search.yahoo.com/\"/><rule from=\"^http://(de|es|fr|it|uk)\\.solutions\\.yahoo\\.com/[^?]*\" to=\"https://$1.adspecs.yahoo.com/\"/><rule from=\"^http://sport\\.yahoo\\.com/+\" to=\"https://sports.yahoo.com/\"/><rule from=\"^http://(de|es|uk)\\.sports\\.yahoo\\.com/+\" to=\"https://$1.eurosport.yahoo.com/\"/><rule from=\"^http://in\\.sports\\.yahoo\\.com/+$\" to=\"https://cricket.yahoo.com/\"/><rule from=\"^http://au\\.todaytonight\\.yahoo\\.com/+\\??$\" to=\"https://au.news.yahoo.com/today-tonight/\"/><rule from=\"^http://au\\.todaytonight\\.yahoo\\.com/[^?]*\" to=\"https://au.news.yahoo.com/today-tonight/\"/><rule from=\"^http://(au|nz)\\.travel\\.yahoo\\.com/[^?]*\" to=\"https://$1.totaltravel.yahoo.com/\"/><rule from=\"^http://ca\\.travel\\.yahoo\\.com/+\" to=\"https://travel.yahoo.com/\"/><rule from=\"^http://(my|ph)\\.travel\\.yahoo\\.com/.*\" to=\"https://$1.news.yahoo.com/travel/\"/><rule from=\"^http://uk\\.travel\\.yahoo\\.com/.*\" to=\"https://uk.lifestyle.yahoo.com/travel/\"/><rule from=\"^http://ca\\.tv\\.yahoo\\.com/+\" to=\"https://tv.yahoo.com/\"/><rule from=\"^http://pe\\.tv\\.yahoo\\.com/+\" to=\"https://es-us.tv.yahoo.com/\"/><rule from=\"^http://((?:br|ca|de|es|es-us|fr|it|mx|uk)\\.)?video\\.yahoo\\.com/+\" to=\"https://$1screen.yahoo.com/\"/><rule from=\"^http://(ar|co|in)\\.video\\.yahoo\\.com/.*\" to=\"https://$1.screen.yahoo.com/\"/><rule from=\"^http://au\\.video\\.yahoo\\.com/.*\" to=\"https://au.tv.yahoo.com/plus7/\"/><rule from=\"^http://[pv]e\\.video\\.yahoo\\.com/+\" to=\"https://es-us.screen.yahoo.com/\"/><rule from=\"^http://hk\\.video\\.yahoo\\.com/.*\" to=\"https://help.yahoo.com/kb/index?page=home&locale=zh_HK\"/><rule from=\"^http://my\\.video\\.yahoo\\.com/\" to=\"https://malaysia.video.yahoo.com/\"/><rule from=\"^http://nz\\.video\\.yahoo\\.com/+(?:\\?.*)?$\" to=\"https://nz.news.yahoo.com/video/\"/><rule from=\"^http://(ar|es)\\.weather\\.yahoo\\.com/+\" to=\"https://$1.tiempo.yahoo.com/\"/><rule from=\"^http://(cl|co|mx|pe|ve)\\.weather\\.yahoo\\.com/+\" to=\"https://$1.clima.yahoo.com/\"/><rule from=\"^http://espanol\\.weather\\.yahoo\\.com/+\" to=\"https://es-us.clima.yahoo.com/\"/><rule from=\"^http://(fr|it)\\.weather\\.yahoo\\.com/+\" to=\"https://$1.meteo.yahoo.com/\"/><rule from=\"^http://tw\\.weather\\.yahoo\\.com/.*\" to=\"https://tw.news.yahoo.com/weather-forecast/\"/><rule from=\"^http://widgets\\.yahoo\\.com/[^?]*\" to=\"https://www.yahoo.com/\"/><rule from=\"^http://((?:\\w\\w|fr-ca\\.actualites|address|\\w\\w\\.address|admanager|(?:\\w\\w|global)\\.adserver|adspecs|\\w+\\.adspecs|\\w+\\.adspecs-new|advertising|\\w\\w\\.advertising|beap\\.adx|c5a?\\.ah|(?:s-)?cookex\\.amp|(?:[aosz]|apac|y3?)\\.analytics|anc|answers|(?:\\w\\w|espanol|malaysia)\\.answers|antispam|\\w\\w\\.antispam|vn\\.antoan|au\\.apps|global\\.ard|astrology|\\w\\w\\.astrology|hk\\.(?:(?:info|f1\\.master|f1\\.page|search|store|edit\\.store|user)\\.)?auctions|autos|\\w\\w\\.autos|ar\\.ayuda|(?:clicks\\.beap|csc\\.beap|pn1|row|us)\\.bc|tw\\.bid|tw\\.(?:campaign|master|mb|page|search|store|user)\\.bid|(?:m\\.)?tw\\.bigdeals|tw\\.billing|biz|boss|(?:tw\\.partner|tw)\\.buy|(?:\\w\\w\\.)?calendar|careers|\\w\\w\\.cars|(?:\\w\\w|es-us)\\.celebridades|(?:\\w\\w\\.)?celebrity|tw\\.charity|i?chart|(?:\\w\\w|es-us)\\.cine|\\w\\w\\.cinema|(?:\\w\\w|es-us)\\.clima|migration\\.cn|(?:deveopers\\.)?commercecentral|br\\.contribuidores|(?:uk\\.)?contributor|csync|au\\.dating|(?:\\w\\w|es-us)\\.deportes|developer|tw\\.dictionary|dir|downloads|s-b\\.dp|(?:eu\\.|na\\.|sa\\.|tw\\.)?edit|tw\\.(?:ysm\\.)?emarketing|en-maktoob|\\w\\w\\.entertainment|espanol|edit\\.europe|eurosport|(?:de|es|it|uk)\\.eurosport|everything|\\w\\w\\.everything|\\w+\\.fantasysports|au\\.fango|tw\\.fashion|br\\.financas|finance|(?:\\w\\w|tw\\.chart|espanol|tw\\.futures|streamerapi)\\.finance|(?:\\w\\w|es-us)\\.finanzas|nz\\.rss\\.food|nz\\.forums|games|(?:au|ca|uk)\\.games|geo|gma|groups|(?:\\w\\w|asia|espanol|es-us|fr-ca|moderators)\\.groups|health|help|(?:\\w\\w|secure)\\.help|homes|(?:tw|tw\\.v2)\\.house|info|\\w\\w\\.info|tw\\.tool\\.ks|au\\.launch|legalredirect|(?:\\w\\w)\\.lifestyle|(?:gh\\.bouncer\\.)?login|us\\.l?rd|local|\\w\\w\\.local|m|r\\.m|\\w\\w\\.m|mail|(?:\\w\\w\\.overview|[\\w-]+(?:\\.c\\.yom)?)\\.mail|maktoob|malaysia|tw\\.(?:user\\.)?mall|maps|(?:\\w\\w|espanol|sgws2)\\.maps|messenger|(?:\\w\\w|malaysia)\\.messenger|\\w\\w\\.meteo|mlogin|mobile|(?:\\w\\w|espanol|malaysia)\\.mobile|tw\\.(?:campaign\\.)?money|tw\\.movie|movies|(?:au|ca|nz|au\\.rss|nz\\.rss|tw|uk)\\.movies|[\\w.-]+\\.msg|(?:\\w\\w|es-us)\\.mujer|music|ca\\.music|[\\w-]+\\.musica|my|add\\.my|us\\.my|de\\.nachrichten|ucs\\.netsvs|news|(?:au|ca|fr|gr|hk|in|nz|ph|nz\\.rss|sg|tw|uk)\\.news|cookiex\\.ngd|(?:\\w\\w|es-us)\\.noticias|omg|(?:\\w\\w|es-us)\\.omg|au\\.oztips|rtb\\.pclick|pilotx1|pipes|play|playerio|privacy|profile|tw\\.promo|(?:au|hk|nz)\\.promotions|publishing|(?:analytics|mailapps|media|ucs|us-locdrop|video)\\.query|hk\\.rd|(?:\\w\\w\\.|fr-ca\\.)?safely|screen|(?:\\w\\w|es-us)\\.screen|scribe|search|(?:\\w\\w|w\\w\\.blog|\\w\\w\\.dictionary|finance|\\w\\w\\.finance|images|\\w\\w\\.images|\\w\\w\\.knowledge|\\w\\w\\.lifestyle|\\w\\w\\.local|malaysia|movies|\\w\\w\\.movies|news|\\w\\w\\.news|malaysia\\.news|r|recipes|\\w\\w\\.recipes|shine|shopping|\\w\\w\\.shopping|sports|\\w\\w\\.sports|tools|au\\.tv|video|\\w\\w\\.video|malaysia\\.video)\\.search|sec|lh\\.secure|rtb\\.pclick\\.secure|security|tw\\.security|\\w\\w\\.seguranca|\\w\\w\\.seguridad|es-us\\.seguridad|\\w\\w\\.seguro|tw\\.serviceplus|settings|shine|ca\\.shine|shopping|ca\\.shopping|\\w+\\.sitios|dashboard\\.slingstone|(?:au\\.|order\\.)?smallbusiness|smarttv|rd\\.software|de\\.spiele|sports|subscribe|(?:au|ca|fr|hk|nz|ph|profiles|au\\.rss|nz\\.rss|tw)\\.sports|tw\\.stock|au\\.thehype|\\w\\w\\.tiempo|es\\.todo|toolbar|(?:\\w\\w|data|malaysia)\\.toolbar|(?:au|nz)\\.totaltravel|transparency|travel|tw\\.travel||tv|(?:ar|au|de|fr|es|es-us|it|mx|nz|au\\.rss|uk)\\.tv|tw\\.uwant|(?:mh|nz|qos|yep)\\.video|weather|(?:au|ca|hk|in|nz|sg|ph|uk|us)\\.weather|de\\.wetter|www|au\\.yel|video\\.media\\.yql|dmros\\.ysm)\\.)?yahoo\\.com/\" to=\"https://$1yahoo.com/\"/><rule from=\"^http://([\\w-]+)\\.yahoofs\\.com/\" to=\"https://$1.yahoofs.com/\"/><rule from=\"^http://yhoo\\.it/\" to=\"https://bit.ly/\"/><rule from=\"^http://(\\w+)\\.zenfs\\.com/\" to=\"https://$1.zenfs.com/\"/></ruleset>", "<ruleset name=\"Yahoo APIs.com (partial)\" f=\"Yahoo_APIs.xml\"><exclusion pattern=\"^http://yui\\.yahooapis\\.com/+(?!2\\.7\\.0/build/fonts/|pure/)\"/><rule from=\"^http://yahooapis\\.com/.*\" to=\"https://developer.yahoo.com/\"/><rule from=\"^http://yui\\.yahooapis\\.com/\" to=\"https://yui-s.yahooapis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.co.JP (partial)\" f=\"Yahoo_Japan.xml\"><exclusion pattern=\"^http://custom\\.search\\.yahoo\\.co\\.jp/(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://omiai\\.yahoo\\.co\\.jp/(?!favicon\\.ico|profile/create)\"/><securecookie host=\"^\\.yahoo\\.co\\.jp$\" name=\"^B$\"/><securecookie host=\"^\\.forms\\.business\\.yahoo\\.co\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yakala.co (partial)\" f=\"Yakala.co.xml\"><securecookie host=\"^(?:.*\\.)?yakala\\.co$\" name=\".+\"/><rule from=\"^http://yakala\\.co/\" to=\"https://www.yakala.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yale.edu (partial)\" f=\"Yale_University.xml\"><securecookie host=\"^seatgen\\.law\\.yale\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaler.net (partial)\" f=\"Yaler.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yamgo.com\" f=\"Yamgo.com.xml\"><securecookie host=\"^yamgo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yamli API\" f=\"YamliAPI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yammer.com (problematic)\" default_off=\"mismatched\" f=\"Yammer-problematic.xml\"><rule from=\"^http://feedback\\.yammer\\.com/\" to=\"https://research.yammer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yammer.com\" f=\"Yammer.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.yammer\\.com/(?:\\?.*)?$\" to=\"https://about.yammer.com/yammer-blog/\"/><rule from=\"^http://blog\\.yammer\\.com/\" to=\"https://about.yammer.com//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.by (partial)\" f=\"Yandex.by.xml\"><securecookie host=\"^(?:auto|city|internet|mail|rabota|realty|translate)\\.yandex\\.by$\" name=\".+\"/><rule from=\"^http://www\\.browser\\.yandex\\.by/\" to=\"https://browser.yandex.by/\"/><rule from=\"^http://m(obile)?\\.yandex\\.by/[^?]*\" to=\"https://m$1.yandex.ru/\"/><rule from=\"^http://opera\\.yandex\\.by/+\" to=\"https://opera.yandex.ru/\"/><rule from=\"^http://www\\.rasp\\.yandex\\.by/+\" to=\"https://rasp.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?(site|webmaster)\\.yandex\\.by/[^?]*\" to=\"https://$1.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.com.tr (partial)\" f=\"Yandex.com.tr.xml\"><securecookie host=\"^(?:ceviri|city|contact2|gorod|haber|internet|m|mail|market|(?:www\\.)?master|mobile?|oto|\\.?www)\\.yandex\\.com\\.tr$\" name=\".+\"/><rule from=\"^http://www\\.browser\\.yandex\\.com\\.tr/+\" to=\"https://browser.yandex.com.tr/\"/><rule from=\"^http://m\\.ceviri\\.yandex\\.com\\.tr/\" to=\"https://ceviri.yandex.com.tr/\"/><rule from=\"^http://expert\\.yandex\\.com\\.tr/+\" to=\"https://uzman.yandex.com.tr/\"/><rule from=\"^http://feedback\\.yandex\\.com\\.tr/+\" to=\"https://contact.yandex.com.tr/\"/><rule from=\"^http://gazeta\\.yandex\\.com\\.tr/.*\" to=\"https://haber.yandex.com.tr/mynews\"/><rule from=\"^http://help\\.yandex\\.com\\.tr/+\" to=\"https://yardim.yandex.com.tr/\"/><rule from=\"^http://www\\.mobil\\.yandex\\.com\\.tr/+\" to=\"https://mobil.yandex.com.tr/\"/><rule from=\"^http://(?:www\\.)?mobile\\.yandex\\.com\\.tr/+\" to=\"https://mobil.yandex.com.tr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.com.ua (partial)\" f=\"Yandex.com.ua.xml\"><rule from=\"^http://(?:www\\.)?browser\\.yandex\\.com\\.ua/+\" to=\"https://browser.yandex.ua/\"/><rule from=\"^http://(?:www\\.)?mobile\\.yandex\\.com\\.ua/\" to=\"https://mobile.yandex.ua/\"/><rule from=\"^http://www\\.taras\\.yandex\\.com\\.ua/\" to=\"https://taras.yandex.com.ua/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.com (partial)\" f=\"Yandex.com.xml\"><securecookie host=\"^(?:\\.contest|feedback2|mail|partner\\.market|master|www\\.master|partner|tech|translate)\\.yandex\\.com$\" name=\".+\"/><rule from=\"^http://www\\.(browser|constructor\\.maps|video|webmaster)\\.yandex\\.com/\" to=\"https://$1.yandex.com/\"/><rule from=\"^http://(?:www\\.)?site\\.yandex\\.com/[^?]*\" to=\"https://site.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.kz (partial)\" f=\"Yandex.kz.xml\"><securecookie host=\"^\\.yandex\\.kz$\" name=\"^yabs-frequency$\"/><securecookie host=\"^(?:auto|city|feedback2|gorod|internet|islands|mail|www\\.master|pogoda|rabota|m\\.rabota|realty|slovari|m\\.slovari|translate)\\.yandex\\.kz$\" name=\".+\"/><rule from=\"^http://www\\.browser\\.yandex\\.kz/\" to=\"https://browser.yandex.kz/\"/><rule from=\"^http://m(obile)?\\.yandex\\.kz/[^?]*\" to=\"https://m$1.yandex.ru/\"/><rule from=\"^http://opera\\.yandex\\.kz/+\" to=\"https://opera.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?(site|webmaster|yaca)\\.yandex\\.kz/[^?]*\" to=\"https://$1.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.mobi\" f=\"Yandex.mobi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.net (partial)\" f=\"Yandex.net.xml\"><exclusion pattern=\"^http://(?:jgo|vec\\d+|stv\\d+)\\.maps\\.yandex\\.net/\"/><exclusion pattern=\"^http://[^.]+-tub(?:-[^.]+)?\\.yandex\\.net/\"/><exclusion pattern=\"^http://suggest-[a-z]+\\.yandex\\.net/\"/><exclusion pattern=\"^http://[^.]+\\.video\\.yandex\\.net/\"/><exclusion pattern=\"^http://st\\.kp\\.yandex\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http://st\\.kp\\.yandex\\.net/shab/chart_settings/\"/><exclusion pattern=\"^http://(?:direct|elements?|mobile\\.photo|pythonbp)\\.yandex\\.net/\"/><rule from=\"^http://(?:www\\.)?yandex\\.net/+\" to=\"https://yandex.ru/\"/><rule from=\"^http://(?:www\\.)?([^.]+)\\.yandex\\.net/\" to=\"https://$1.yandex.net/\"/><rule from=\"^http://(internetometr\\.download\\.cdn|sandbox\\.api\\.maps|0\\d\\.pvec\\.maps)\\.yandex\\.net/\" to=\"https://$1.yandex.net/\"/><rule from=\"^http://([^.]+)\\.([^.]+)\\.yandex\\.net/\" to=\"https://$1.$2.yandex.net/\"/></ruleset>", "<ruleset name=\"Yandex.st\" f=\"Yandex.st.xml\"><rule from=\"^http://(?:www\\.)?([^.]+)\\.yandex\\.st/\" to=\"https://$1.yandex.st/\"/><rule from=\"^http://(?:www\\.)?yandex\\.st/\" to=\"https://yandex.st/\"/></ruleset>", "<ruleset name=\"Yandex.ua (partial)\" f=\"Yandex.ua.xml\"><securecookie host=\"^\\.yandex\\.ua$\" name=\"^(?:geo_sync|yabs-frequency)$\"/><securecookie host=\"^(?:(?:auto|city|gorod|mail|mobile|slovari|stat|translate|\\.?www)\\.)?yandex\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex\" f=\"Yandex.xml\"><exclusion pattern=\"^http://uslugi\\.yandex\\.ru/($|arr\\.png|index\\.css)\"/><exclusion pattern=\"^http://(?:bar-widgets|cards|cs-ellpic|cs-thumb|dzen|encyclopedia|lingvo|ll|mirror|newmoscow|news|openid|presocial|wdgt)\\.yandex\\.ru/\"/><exclusion pattern=\"^http://video\\.yandex\\.ru/iframe/\"/><exclusion pattern=\"^http://streaming\\.video\\.yandex\\.ru/\"/><exclusion pattern=\"^http://[^.]+\\.video\\.yandex\\.ru/q-upload/\"/><exclusion pattern=\"^http://narod\\d*\\.yandex\\.ru/\"/><exclusion pattern=\"^http://suggest(?!-maps\\.)(?:-[a-z]+)?\\.yandex\\.ru/\"/><exclusion pattern=\"^http://content\\.webmaster\\.yandex\\.ru/\"/><exclusion pattern=\"^http://m\\.yandex\\.ru/\"/><exclusion pattern=\"^http://(?:copy|hghltd|print|market-click\\d+|wrz)\\.yandex\\.ru/\"/><exclusion pattern=\"^http://panoramas\\.api-maps\\.yandex\\.ru\"/><exclusion pattern=\"^http://(?:jgo|vec\\d+|stv\\d+)\\.maps\\.yandex\\.ru/\"/><exclusion pattern=\"^http://[^.]+-tub(?:-[^.]+)?\\.yandex\\.ru/\"/><exclusion pattern=\"^http://(?:business|collection|kapersky|large|market|nahodki|navigator|online|punto|zakladki)\\.yandex\\.ru/\"/><exclusion pattern=\"^http://soft\\.yandex\\.ru/\"/><exclusion pattern=\"http://(?:apps|(?:android-)?us\\.apps|appsearch|bm|contact2?|dns|family|gazeta|interactive-answers|m\\.internet|islands|kaspersky|labs|(?:m|www)\\.market|(?:m|pda)\\.money|(?:m|pda|www)\\.news|notanymore|op|prestable-pogoda|api\\.rasp|repo|shad|static-maps|terms|uslugi|webcal|interactive-answers\\.webmaster)\\.yandex\\.ru/\"/><securecookie host=\"(?:academy|afisha|auto|pda\\.auto|bs|\\.?captcha|(?:intern\\.|shad\\.)?contest|display|events|feedback2|\\.?hw|(?:ipv[46]\\.)?internet|mail|pda\\.mail|partner\\.market|(?:www\\.)?master|mc|mobile|pass|pogoda|rabota|m\\.rabota|\\.?suggests\\.rasp|realty|partner\\.realty|slovari|startups|stat|(?:developer\\.)?tech|translate|\\.video)\\.yandex\\.ru$\" name=\".*\"/><rule from=\"^http://dict\\.yandex\\.ru/+\" to=\"https://slovari.yandex.ru/\"/><rule from=\"^http://www\\.ewent\\.yandex\\.ru/\" to=\"https://www.ewent.yandex.ru/\"/><rule from=\"^http://favicon\\.yandex\\.ru/\" to=\"https://favicon.yandex.net/\"/><rule from=\"^http://(?:www\\.)?m\\.metro\\.yandex\\.ru/[^?]*\" to=\"https://m.soft.yandex.ru/metro/\"/><rule from=\"^http://mobile-feedback\\.yandex\\.ru/\" to=\"https://m.feedback.yandex.ru/\"/><rule from=\"^http://skype\\.yandex\\.ru/+\" to=\"https://yandex.ru/promo/skype/\"/><rule from=\"^http://twitter\\.yandex\\.ru/+\" to=\"https://www.yandex.ru/\"/><rule from=\"^http://upics\\.yandex\\.ru/\" to=\"https://upics.yandex.net/\"/><rule from=\"^http://(www\\.)?(academy|adresa|atlas|ewents|[ei]vents?|export|fotki|internet|karti|maps|(?:beta|constructor|m|n|router-quality)\\.maps|master|metro|mshad|music|maps\\.pda|pogoda|prefetch-maps|probki|research|site|startups|tech|tv|video|weather|yaca)\\.yandex\\.ru/\" to=\"https://$1$2.yandex.ru/\"/><rule from=\"^http://((?:\\d\\.downloader\\.disk|sandbox\\.api\\.maps|www)\\.)?yandex\\.ru/\" to=\"https://$1yandex.ru/\"/><rule from=\"^http://(?:www\\.)?([^.]+)\\.yandex\\.ru/\" to=\"https://$1.yandex.ru/\"/><rule from=\"^http://([^.]+)\\.([^.]+)\\.yandex\\.ru/\" to=\"https://$1.$2.yandex.ru/\"/></ruleset>", "<ruleset name=\"Yandex ad exchange.net\" f=\"Yandex_ad_exchange.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yannick.net\" default_off=\"redirects to http\" f=\"Yannick.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?yannick\\.net/(?:$|css/|images/)\"/><securecookie host=\"^\\.yannick\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaprobki.ru (partial)\" f=\"Yaprobki.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yard Digital.com\" default_off=\"expired, self-signed\" f=\"Yard_Digital.com.xml\"><securecookie host=\"^yarddigital\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yarddigital\\.com/\" to=\"https://yarddigital.com/\"/></ruleset>", "<ruleset name=\"Yastatic.net\" f=\"Yastatic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yawnbox.com\" f=\"Yawnbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ybin.me\" f=\"Ybin.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yeah.net\" default_off=\"mismatched\" f=\"Yeah.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yeah\\.net/\" to=\"https://www.yeah.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yed24hr.com\" default_off=\"mismatched, self-signed\" f=\"Yed24hr.com.xml\"><securecookie host=\"^(?:w*\\.)?yed24hr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mov(?:24hr|zeed)\\.com/\" to=\"https://www.yed24hr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yedxxx24hr.com\" f=\"Yedxxx24hr.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?yedxxx24hr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yellow Pages IMA (partial)\" f=\"Yellow-Pages-IMA.xml\"><exclusion pattern=\"^http://www\\.localsearchassociation\\.org/(?!Integrations/|Modules/|SiteTypes/Default\\.master\\.css\\.aspx|[Uu]ploads/[Pp]ublic/)\"/><rule from=\"^http://(?:www\\.)?ypassociation\\.org/\" to=\"https://localsearchassociation.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YellowBot.com (partial)\" f=\"YellowBot.xml\"><securecookie host=\"^login\\.yellowbot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YellowPages.ca (problematic)\" default_off=\"mismatched\" f=\"YellowPages.ca-problematic.xml\"><securecookie host=\"^(?:\\w+\\.aws\\.|www\\.)?yellowpages\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yellowpages\\.ca/\" to=\"https://www.yellowpages.ca/\"/><rule from=\"^http://(\\w+)\\.aws\\.yellowpages\\.ca/\" to=\"https://$1.aws.yellowpages.ca/\"/></ruleset>", "<ruleset name=\"YellowPages.ca (partial)\" f=\"YellowPages.ca.xml\"><securecookie host=\"^\\.yellowpages\\.ca$\" name=\"^psid_ypca$\"/><securecookie host=\"^secure\\.yellowpages\\.ca$\" name=\".+\"/><rule from=\"^http://secure\\.yellowpages\\.ca/\" to=\"https://secure.yellowpages.ca/\"/></ruleset>", "<ruleset name=\"Yellow Pages Opt Out.com\" f=\"Yellow_Pages_Opt_Out.com.xml\"><securecookie host=\"^(?:.*\\.)?yellowpagesoptout\\.com$\" name=\".*\"/><rule from=\"^http://yellowpagesoptout\\.com/\" to=\"https://www.yellowpagesoptout.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yelp (partial)\" f=\"Yelp.xml\"><exclusion pattern=\"^http://(?:www\\.)?yelp\\.com/(?!(?:forgot|login|signup)(?:$|\\?|/))\"/><securecookie host=\"^\\.biz\\.yelp\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(biz\\.)?yelp\\.com/\" to=\"https://$1$2yelp.com/\"/><rule from=\"^http://s3-media(\\d)\\.ak\\.yelpcdn\\.com/\" to=\"https://s3-media$1.ak.yelpcdn.com/\"/></ruleset>", "<ruleset name=\"Yemeksepeti.com\" f=\"Yemeksepeti.xml\"><securecookie host=\"^(?:.*\\.)?yemeksepeti\\.com$\" name=\".*\"/><rule from=\"^http://yemeksepeti\\.com/\" to=\"https://www.yemeksepeti.com/\"/><rule from=\"^http://images\\.yemeksepetim\\.com/\" to=\"https://images.yemeksepeti.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yeshiva University\" f=\"Yeshiva.xml\"><rule from=\"^http://(?:www\\.)?yu\\.edu/\" to=\"https://yu.edu/\"/></ruleset>", "<ruleset name=\"yespic69.com\" f=\"Yespic69.com.xml\"><securecookie host=\"^(?:w*\\.)?yespic69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ygnition (partial)\" f=\"Ygnition.xml\"><securecookie host=\"^(?:.*\\.)?ygnition\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yho.com\" f=\"Yho.com.xml\"><securecookie host=\"^yho\\.com$\" name=\".+\"/><rule from=\"^http://yho\\.com/\" to=\"https://yho.com/\"/></ruleset>", "<ruleset name=\"YieldSelect.com\" default_off=\"missing certificate chain\" f=\"YieldSelect.com.xml\"><securecookie host=\"^(?:www\\.)?yieldselect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YieldBot (partial)\" f=\"Yieldbot.xml\"><rule from=\"^http://cdn\\.yb0t\\.com/\" to=\"https://dqckmuwjiytix.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yieldlab.de\" default_off=\"expired, self-signed\" f=\"Yieldlab.de.xml\"><securecookie host=\"^www\\.yieldlab\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yieldlab.net\" f=\"Yieldlab.net.xml\"><securecookie host=\"^\\.yieldlab\\.net$\" name=\"^id$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yieldoptimizer.com\" f=\"Yieldoptimizer.com.xml\"><securecookie host=\"^\\.yieldoptimizer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yimg.com (partial)\" f=\"Yimg.com.xml\"><securecookie host=\"^\\.s\\.yimg\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.yimg\\.com/\" to=\"https://s.yimg.com/\"/><rule from=\"^http://(?:d\\d?|(?:a\\.)?l\\d?|us\\.(?:a2|i1|js2?))\\.yimg\\.com/(?:a|d|us(?:\\.js)?\\.yimg\\.com)/\" to=\"https://s.yimg.com/lq/\"/><rule from=\"^http://(?:d\\d?|au\\.i1|(?:a\\.)?l\\d?|mail)\\.yimg\\.com/(ao|bm|ck|cv|dh|ea|ep|f|fv|fz|iu|jc|kj|kx|lo|mi|mq|na|nt|ok|pj|pp|pu|qa|qj|qk|qo|rb|rf|rq|rx|rz|sr|ss|tu|ugcwidgets|zz|aunz\\.yimg\\.com)/\" to=\"https://s.yimg.com/$1/\"/><rule from=\"^http://(?:d\\d?|(?:a\\.)?l\\d?|us\\.(?:a1|js1?)|mail|xa)\\.yimg\\.com/(bb|bt|dg|(?:eur|us)\\.yimg\\.com|fg|fp|[ghijqt]|gh|ho|j[ghn]|kq|lh|lm|ml|nn|nq|os|pb|pv|qb|qw|qx|qz|r[luw]|sc|ts)/\" to=\"https://s.yimg.com/zz/$1/\"/><rule from=\"^http://(tw\\.bid|tw\\.buy|ci-[\\da-f]{10}-\\d{8}\\.http\\.atlas\\.cdn|ec|ext|tw\\.m|s(?:1|2|3|ec|p)?|tw|qos\\.video)\\.yimg\\.com/\" to=\"https://$1.yimg.com/\"/><rule from=\"^http://s?(ep|xh|xp)\\.yimg\\.com/\" to=\"https://s$1.yimg.com/\"/><rule from=\"^http://movienewsletters\\.o\\.yimg\\.com/\" to=\"https://www.movienewsletters.net/\"/><rule from=\"^https://s\\.yimg\\.com/common/img/\" to=\"https://s.yimg.com/kj/ydn/common/img/\"/></ruleset>", "<ruleset name=\"Yimg.jp (partial)\" f=\"Yimg.jp.xml\"><exclusion pattern=\"^http://.+\\..+\\.c\\.yimg\\.jp/\"/><rule from=\"^http://(?:a[hi]?|[ik])\\.yimg\\.jp/\" to=\"https://s.yimg.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yle.fi (partial)\" f=\"Yle.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ynet.io\" f=\"Ynet.io.xml\"><securecookie host=\"^\\.ynet\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yocto Project.org (partial)\" f=\"Yocto_Project.org.xml\"><securecookie host=\"^(?:.*\\.)?yoctoproject\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugzilla|eula-downloads|git|lists|wiki|www)\\.)?yoctoproject\\.org/\" to=\"https://$1yoctoproject.org/\"/></ruleset>", "<ruleset name=\"Yokl.com\" f=\"Yokl.com.xml\"><securecookie host=\"^yokl\\.com$\" name=\".+\"/><rule from=\"^http://www\\.yokl\\.com/\" to=\"https://yokl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoklAPI.com\" f=\"YoklAPI.com.xml\"><rule from=\"^http://yoklapi\\.com/\" to=\"https://api.yokl.com/\"/></ruleset>", "<ruleset name=\"Yooco.de\" f=\"Yooco.de.xml\"><securecookie host=\"^(www\\.)?yooco\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoox.biz\" f=\"Yoox.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yopto.com\" default_off=\"mismatched\" f=\"Yopto.com.xml\"><securecookie host=\"^(?:www)\\.yopto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"York College of Nebraska\" default_off=\"Certificates are invalid\" f=\"York.xml\"><rule from=\"^http://(?:www\\.)?york\\.edu/\" to=\"https://york.edu/\"/></ruleset>", "<ruleset name=\"York College of New York\" default_off=\"missing certificate chain\" f=\"YorkNY.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"York Fitness\" f=\"York_Fitness.xml\"><securecookie host=\"^www\\.yorkfitness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yosemite News.info\" f=\"Yosemite_News.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yospace.com (partial)\" f=\"Yospace.com.xml\"><securecookie host=\"^cds1\\.yospace\\.com$\" name=\".+\"/><rule from=\"^http://cds1\\.yospace\\.com/\" to=\"https://cds1.yospace.com/\"/></ruleset>", "<ruleset name=\"Yotsuba Archiver (mismatches)\" default_off=\"mismatch\" f=\"Yotsuba-Archiver-mismatches.xml\"><rule from=\"^http://noodlebox\\.dyndns\\.info/\" to=\"https://noodlebox.dyndns.info/\"/><rule from=\"^http://(?:www\\.)?installgentoo\\.net/\" to=\"https://www.installgentoo.net/\"/><rule from=\"^http://youshould\\.installgentoo\\.net/\" to=\"https://youshould.installgentoo.net/\"/></ruleset>", "<ruleset name=\"Yotsuba Archiver (partial)\" default_off=\"failed ruleset test\" f=\"Yotsuba-Archiver.xml\"><rule from=\"^http://archive\\.installgentoo\\.net/\" to=\"https://archive.installgentoo.net/\"/></ruleset>", "<ruleset name=\"Yottaa.net (partial)\" f=\"Yottaa.net.xml\"><rule from=\"^http://cdn-(eu|[\\da-f]{12})\\.yottaa\\.net/\" to=\"https://cdn-$1.yottaa.net/\"/></ruleset>", "<ruleset name=\"Yottaa (partial)\" f=\"Yottaa.xml\"><securecookie host=\"^apps(?:-dev|-dev-new)?\\.yottaa\\.com$\" name=\".+\"/><rule from=\"^http://ap(i|ps)(-dev|-dev-new)?\\.yottaa\\.com/\" to=\"https://ap$1$2.yottaa.com/\"/></ruleset>", "<ruleset name=\"YouCanBook.Me\" f=\"YouCanBook.Me.xml\"><securecookie host=\".+\\.youcanbook\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouCaring.com (partial)\" f=\"YouCaring.com.xml\"><exclusion pattern=\"^http://www\\.youcaring\\.com/+(?!create-fundraiser\\.aspx|create-fundraiser-account\\.aspx|emergency-fundraiser/[\\w-]+/\\d+/donate|external-link\\.htm|favicon\\.ico|img/)\"/><exclusion pattern=\"^http://static\\.youcaring\\.com/js/\"/><securecookie host=\"^youcaring\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouGov.de\" f=\"YouGov.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouMail.com (partial)\" f=\"YouMail.xml\"><securecookie host=\"^\\.youmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"You Need A Budget\" f=\"YouNeedABudget.xml\"><exclusion pattern=\"^http://(www\\.)?youneedabudget\\.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouSendIt\" default_off=\"failed ruleset test\" f=\"YouSendIt.xml\"><securecookie host=\"^(?:www)?\\.yousendit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yousendit\\.com/\" to=\"https://www.yousendit.com/\"/><rule from=\"^http://a15\\.ysicdo002\\.com/\" to=\"https://a15.ysicdo002.com/\"/></ruleset>", "<ruleset name=\"YouTube\" f=\"YouTube.xml\"><exclusion pattern=\"^http://www\\.youtube\\.com/apiplayer\"/><securecookie host=\"^\\.youtube\\.com\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouVersion\" f=\"YouVersion.xml\"><securecookie host=\"^(?:www)?\\.(?:bible|youversion)\\.com$\" name=\".+\"/><securecookie host=\"^\\.biblesociety\\.co\\.za$\" name=\"^_youversion-web_session$\"/><rule from=\"^http?://(?:www\\.)?(bible|yourversion)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://bibles\\.biblesociety\\.co\\.za/\" to=\"https://bibles.biblesociety.co.za/\"/></ruleset>", "<ruleset name=\"YouVisit.com\" f=\"YouVisit.com.xml\"><securecookie host=\"^(?:www\\.)?youvisit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"You Betrayed us.org\" f=\"You_Betrayed_us.org.xml\"><securecookie host=\"^\\.youbetrayedus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youku.com (partial)\" platform=\"mixedcontent\" f=\"Youku.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youm7.com (partial)\" f=\"Youm7.com.xml\"><securecookie host=\"^\\.youm7\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youmix (partial)\" default_off=\"failed ruleset test\" f=\"Youmix.xml\"><rule from=\"^http://(t\\.(album|track)|static)\\.youmix\\.co\\.uk/\" to=\"https://s3.amazonaws.com/$1.youmix.co.uk/\"/></ruleset>", "<ruleset name=\"Young-Pirates.Eu\" f=\"Young-Pirates.Eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoungMinds.org.uk\" default_off=\"failed ruleset test\" f=\"YoungMinds.org.uk.xml\"><securecookie host=\"^www\\.youngminds\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?youngminds\\.org\\.uk/\" to=\"https://www.youngminds.org.uk/\"/></ruleset>", "<ruleset name=\"Young Rewired State.org\" f=\"Young_Rewired_State.org.xml\"><securecookie host=\"^\\.?youngrewiredstate\\.org$\" name=\".+\"/><rule from=\"^http://www\\.youngrewiredstate\\.org/\" to=\"https://youngrewiredstate.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"younited.com (partial)\" f=\"Younited.com.xml\"><securecookie host=\"^\\.younited\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|app|community|ticket|www)\\.)?younited\\.com/\" to=\"https://$1younited.com/\"/></ruleset>", "<ruleset name=\"Your-File-System.com\" f=\"Your-File-System.com.xml\"><securecookie host=\"^(?:www\\.)?your-file-system\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Freedom\" f=\"Your-Freedom.xml\"><rule from=\"^http://(?:www\\.)?your-freedom\\.net/\" to=\"https://www.your-freedom.net/\"/></ruleset>", "<ruleset name=\"Your Mailing List Provider\" f=\"Your-Mailing-List-Provider.xml\"><securecookie host=\"^(?:chiclet|www)\\.ymlp\\.com$\" name=\".+\"/><rule from=\"^(?:https://|http://(?:www\\.)?)ymlp\\.com/\" to=\"https://www.ymlp.com/\"/><rule from=\"^http://chiclet\\.ymlp\\.com/\" to=\"https://chiclet.ymlp.com/\"/><rule from=\"^http://(?:www\\.)?yourmailinglistprovider\\.com/\" to=\"https://www.ymlp.com/\"/></ruleset>", "<ruleset name=\"YourBittorrent.com (partial)\" f=\"YourBittorrent.xml\"><securecookie host=\"^\\.yourbittorrent\\.com$\" name=\".+\"/><rule from=\"^http://www\\.yourbittorrent\\.com/\" to=\"https://yourbittorrent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourMechanic.com\" f=\"YourMechanic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourMembership.com\" default_off=\"missing certificate chain\" f=\"YourMembership.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourPSHome.net\" default_off=\"self-signed\" f=\"YourPSHome.net.xml\"><securecookie host=\"^www\\.yourpshome\\.net$\" name=\".+\"/><rule from=\"^http://cdn\\.yourpshome\\.net/\" to=\"https://www.yourpshome.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Date Link\" default_off=\"failed ruleset test\" f=\"Your_Date_Link.xml\"><securecookie host=\"^(?:w*\\.)?yourdatelink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"your Karma.com\" f=\"Your_Karma.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Local Edge.com\" default_off=\"failed ruleset test\" f=\"Your_Local_Edge.com.xml\"><securecookie host=\"^\\.yourlocaledge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yourlocaledge\\.com/\" to=\"https://yourlocaledge.com/\"/></ruleset>", "<ruleset name=\"Your Logical Fallacy Is.com (partial)\" f=\"Your_Logical_Fallacy_Is.com.xml\"><rule from=\"^http://www\\.yourlogicalfallacyis\\.com/\" to=\"https://yourlogicalfallacyis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Sole.com\" f=\"Your_Sole.com.xml\"><securecookie host=\"^\\.yoursole\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yoursole\\.com/\" to=\"https://secure.yoursole.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Support Services.co.uk\" f=\"Your_Support_Services.co.uk.xml\"><rule from=\"^http://(?:www\\.)?yoursupportservices\\.co\\.uk/\" to=\"https://www.yoursupportservices.co.uk/\"/></ruleset>", "<ruleset name=\"Your Video Host.com (false MCB)\" platform=\"mixedcontent\" f=\"Your_Video_Host.com.xml\"><securecookie host=\"^\\.yourvideohost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourcounciljobs.co.uk\" f=\"Yourcounciljobs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourfone.de\" f=\"Yourfone.de.xml\"><securecookie host=\"^.*\\.yourfone\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yourfone\\.de/\" to=\"https://www.yourfone.de/\"/><rule from=\"^http://(?:www\\.)?(gfx|handyshop|hilfe)\\.yourfone\\.de/\" to=\"https://$1.yourfone.de/\"/></ruleset>", "<ruleset name=\"Yourhosting\" f=\"Yourhosting.xml\"><securecookie host=\"^.*\\.yourhosting\\.nl$\" name=\".*\"/><rule from=\"^http://webmail\\.server1\\.firstfind\\.nl/(?:.*)\" to=\"https://webmail.yourhosting.nl/\"/><rule from=\"^http://(webmail\\.|www\\.)?yourhosting\\.nl/\" to=\"https://$1yourhosting.nl/\"/></ruleset>", "<ruleset name=\"YoursAV.com\" f=\"YoursAV.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoursAV.me\" default_off=\"self-signed\" f=\"YoursAV.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoursAV.net\" default_off=\"self-signed\" f=\"YoursAV.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yourvideofile.org\" f=\"Yourvideofile.org.xml\"><rule from=\"^http://(?:www\\.)?yourvideofile\\.org/\" to=\"https://www.yourvideofile.org/\"/></ruleset>", "<ruleset name=\"yroo.com\" f=\"Yroo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?yroo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youngstown State University (partial)\" platform=\"mixedcontent\" f=\"Ysu.edu.xml\"><rule from=\"^http://(www\\.)?ysu\\.edu/\" to=\"https://swww.ysu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youngstown State University Bookstore\" default_off=\"failed ruleset test\" f=\"Ysubookstore.com.xml\"><rule from=\"^http://(?:www\\.)?ysubookstore\\.com/\" to=\"https://www.ysubookstore.com/\"/></ruleset>", "<ruleset name=\"yt-dl.org\" f=\"Yt-dl.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yubico.com (partial)\" f=\"Yubico.xml\"><securecookie host=\"^(?:.+\\.)?yubico\\.com$\" name=\".*\"/><rule from=\"^http://static\\.yubico\\.com/\" to=\"https://www.yubico.com/static/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yuku (partial)\" f=\"Yuku.xml\"><rule from=\"^http://(images|static)\\.yuku\\.com/\" to=\"https://s3.amazonaws.com/$1.yuku.com/\"/></ruleset>", "<ruleset name=\"Yumpu.com (partial)\" f=\"Yumpu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YunOS.com (false MCB)\" platform=\"mixedcontent\" f=\"YunOS.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YunOS.com (partial)\" f=\"YunOS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yunbi.com (partial)\" f=\"Yunbi.com.xml\"><securecookie host=\"^yunbi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www|yun)\\.yunbi\\.com/\" to=\"https://yunbi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YunoHost.org\" f=\"YunoHost.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yuri.org.uk\" f=\"Yuri.org.uk.xml\"><rule from=\"^http://www\\.yuri\\.org\\.uk/\" to=\"https://www.yuri.org.uk/\"/></ruleset>", "<ruleset name=\"ywxi.net\" f=\"Ywxi.net.xml\"><securecookie host=\"^cdn\\.ywxi\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZB45.nl\" f=\"ZB45.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zCarot.com\" f=\"ZCarot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZComm.org\" f=\"ZComm.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDNet (partial)\" f=\"ZDNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?zdnet\\.com\\.au/(?!secure-au\\.imrworldwide\\.com/)\"/><rule from=\"^http://(?:www\\.)?zdnet\\.com\\.au/secure-au\\.imrworldwide\\.com/\" to=\"https://secure-au.imrworldwide.com/\"/><rule from=\"^http://om\\.zdnet\\.com\\.au/\" to=\"https://zdau-zdnetbeta.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDTronic.com\" f=\"ZDTronic.xml\"><securecookie host=\".\\.zdtronic\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDbb.net\" f=\"ZDbb.net.xml\"><securecookie host=\"^\\.zdbb\\.net$\" name=\".+\"/><rule from=\"^http://static\\.zdbb\\.net/\" to=\"https://d8r7hw7bvlsxi.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDmcirc.com\" default_off=\"missing certificate chain\" f=\"ZDmcirc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZERODIUM.com\" f=\"ZERODIUM.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZMap.io\" f=\"ZMap.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZONZA.tv\" f=\"ZONZA.tv.xml\"><securecookie host=\"^[.w]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZOUM.ca\" f=\"ZOUM.xml\"><securecookie host=\"^(?:www\\.)?zoum\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZPChips.com\" default_off=\"broken\" f=\"ZPChips.com.xml\"><securecookie host=\"^\\.zpchips\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZQTK.net\" f=\"ZQTK.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZTunnel.com\" f=\"ZTunnel.xml\"><securecookie host=\"^(?:w*\\.)?ztunnel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUNO BANK AG\" f=\"ZUNO_BANK_AG.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUS.pl (partial)\" f=\"ZUS.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZXIDP.org\" default_off=\"missing certificate chain\" f=\"ZXIDP.org.xml\"><rule from=\"^http://(?:www\\.)?zxidp\\.org/\" to=\"https://zxidp.org/\"/></ruleset>", "<ruleset name=\"ZYVOXassist.com\" f=\"ZYVOXassist.com.xml\"><rule from=\"^http://zyvoxassist\\.com/\" to=\"https://www.zyvoxassist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zZounds.com\" f=\"ZZounds.com.xml\"><securecookie host=\"^(?:delivery)?\\.zzounds\\.com$\" name=\".+\"/><rule from=\"^http://c1\\.zzounds\\.com/\" to=\"https://c5.zzounds.com/\"/><rule from=\"^http://c2\\.zzounds\\.com/\" to=\"https://c6.zzounds.com/\"/><rule from=\"^http://c3\\.zzounds\\.com/\" to=\"https://c7.zzounds.com/\"/><rule from=\"^http://c4\\.zzounds\\.com/\" to=\"https://c8.zzounds.com/\"/><rule from=\"^http://cachepe\\.zzounds\\.com/\" to=\"https://delivery.zzounds.com/\"/><rule from=\"^http://((?:c\\d+|delivery|www)\\.)?zzounds\\.com/\" to=\"https://$1zzounds.com/\"/></ruleset>", "<ruleset name=\"Z Natural Foods.com\" f=\"Z_Natural_Foods.com.xml\"><securecookie host=\"^\\.znaturalfoods\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zabbix.com (partial)\" f=\"Zabbix.xml\"><exclusion pattern=\"^http://(?:www\\.)?zabbix\\.com/(?!forum(?:$|[?/]))\"/><securecookie host=\"^(?:www\\.)?zabbix\\.com$\" name=\"^bbsessionhash$\"/><securecookie host=\"^support\\.zabbix\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zacks Investment Research (partial)\" f=\"Zacks_Investment_Research.xml\"><securecookie host=\"^\\.zacks\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://(?:www\\.)?zacks\\.com/(css/|(?:[\\w-]+/)?images/|registration)\" to=\"https://www.zacks.com/$1\"/><rule from=\"^http://(smetrics|1\\.widget3|woas)\\.zacks\\.com/\" to=\"https://$1.zacks.com/\"/><rule from=\"^http://cloud\\.staticzacks\\.net/\" to=\"https://b7d61a7c6b8c307bf531-a92a66b9587e2a0aa805bd4e70b98407.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Zadara Storage.com (false MCB)\" platform=\"mixedcontent\" f=\"Zadara_Storage.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zadara Storage.com (partial)\" f=\"Zadara_Storage.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zaehlwerk.net\" f=\"Zaehlwerk.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zagony.ru\" default_off=\"self-signed\" f=\"Zagony.ru.xml\"><securecookie host=\"^\\.?zagony\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?zagony\\.ru/\" to=\"https://zagony.ru/\"/></ruleset>", "<ruleset name=\"Zaif.jp\" f=\"Zaif.jp.xml\"><securecookie host=\"^zaif\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zakir D.com\" f=\"Zakir_D.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zam Network (partial)\" f=\"Zam.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zamg.ac.at\" f=\"Zamg.ac.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zamzar.com (partial)\" f=\"Zamzar.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?zamzar\\.com/+(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?zamzar\\.com/blank\\.htm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zanesville Times Recorder.com (partial)\" f=\"Zanesville_Times_Recorder.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zanox.com (false MCB)\" platform=\"mixedcontent\" f=\"Zanox.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zanox.com (partial)\" f=\"Zanox.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zap2it.com (partial)\" default_off=\"expired, mismatched\" f=\"Zap2it.xml\"><securecookie host=\"^www\\.zap2it\\.com$\" name=\".+\"/><rule from=\"^http://image-cdn\\.zap2it\\.com/\" to=\"https://d1mxyp5ceukbya.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZapChain.com\" f=\"ZapChain.com.xml\"><rule from=\"^http://zapchain\\.com/\" to=\"https://www.zapchain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Zap Lab.com\" f=\"Zap_Lab.xml\"><securecookie host=\"^(?:.*\\.)?thezaplab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zapier.com\" f=\"Zapier.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zappos (partial)\" f=\"Zappos.xml\"><rule from=\"^http://(?:www\\.)?zappos\\.com/(account(?:$|\\?|/)|(?:assets|boutiques|css|images|imgs?|styles)/)\" to=\"https://secure-www.zappos.com/$1\"/><rule from=\"^http://(?:www\\.)?zappos\\.com/[\\w\\-]+/imgs/\" to=\"https://secure-www.zappos.com/imgs/\"/><rule from=\"^http://secure-www\\.zappos\\.com/\" to=\"https://secure-www.zappos.com/\"/><rule from=\"^http://(?:a[123]?|l[34])\\.zassets\\.com/\" to=\"https://secure-www.zappos.com/\"/></ruleset>", "<ruleset name=\"Zaption\" f=\"Zaption.xml\"><securecookie host=\"^(?:www)?\\.zaption\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zapunited (partial)\" f=\"Zapunited.xml\"><rule from=\"^http://(www\\.)?zapunited\\.com/(w/)\" to=\"https://$1zapunited.com/$2\"/><rule from=\"^http://(?:www\\.)?media\\.zapunited\\.com/\" to=\"https://media.zapunited.com/\"/></ruleset>", "<ruleset name=\"Zarafa.com\" f=\"Zarafa.com.xml\"><securecookie host=\"^(?:(?:^community|forums|\\.portal|www)?\\.)?zarafa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zarb.org (partial)\" default_off=\"self-signed\" f=\"Zarb.org.xml\"><securecookie host=\"^www\\.zarb\\.org$\" name=\".+\"/><rule from=\"^http://zarb\\.org/\" to=\"https://www.zarb.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zareason.com\" default_off=\"failed ruleset test\" f=\"Zareason.com.xml\"><securecookie host=\"^\\.zareason\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zark Zork.com (expired)\" default_off=\"expired\" f=\"Zark_Zork.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zark Zork.com (partial)\" f=\"Zark_Zork.com.xml\"><rule from=\"^http://www\\.zarkzork\\.com/\" to=\"https://zarkzork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zataz.com (false MCB)\" platform=\"mixedcontent\" f=\"Zataz.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zataz.com (partial)\" f=\"Zataz.xml\"><exclusion pattern=\"^http://eromang\\.zataz\\.com/+(?!wp-content/)\"/><securecookie host=\"\\.zataz\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"archives\\.zataz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zayo.com (mixed content)\" platform=\"mixedcontent\" f=\"Zayo.com.xml\"><securecookie host=\"^(?:www)?\\.zayo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zazzle (mismatches)\" default_off=\"mismatch\" f=\"Zazzle-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?artsprojekt\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?artsprojekt\\.com/\" to=\"https://www.artsprojekt.com/\"/></ruleset>", "<ruleset name=\"Zazzle.com (partial)\" f=\"Zazzle.xml\"><exclusion pattern=\"^http://www\\.zazzle\\.com/(?!assets/|(\\w+\\+)?cases|c[ro]/|create|css/|custom/|keychains|(kitchen|\\w+\\+holiday)\\+gifts|lgn/|macbook\\+sleeves|m[ky]/|newcustomgifts|pd/|pillows|rlv/|svc/|zazzleblack|\\w+-\\d{10,20})\"/><securecookie host=\"^forum.zazzle\\.com$\" name=\".+\"/><securecookie host=\"^\\.www\\.zazzle\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://track\\.www\\.zazzle\\.com/\" to=\"https://www-zazzle-com.112.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zcache.com\" f=\"Zcache.com.xml\"><rule from=\"^http://asset\\.zcache\\.com/\" to=\"https://www.zazzle.com/\"/><rule from=\"^http://rlv\\.zcache\\.com/\" to=\"https://www.zazzle.com/rlv/\"/></ruleset>", "<ruleset name=\"Zdassets.com\" f=\"Zdassets.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zdroják.cz\" f=\"Zdrojak.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zedo (partial)\" f=\"Zedo.xml\"><securecookie host=\"^(?:target)?\\.zedo\\.com$\" name=\".+\"/><rule from=\"^http://axp\\.zedo\\.com/\" to=\"https://saxp.zedo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zee Agency.com (partial)\" f=\"Zee_Agency.com.xml\"><rule from=\"^http://cdn\\.zeeagency\\.com/\" to=\"https://d3ntwnijawp16n.cloudfront.net/\"/></ruleset>", "<ruleset name=\"zeedpic69.com\" default_off=\"connection dropped\" f=\"Zeedpic69.com.xml\"><securecookie host=\"^(?:w*\\.)?zeedpic69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zefflin.com\" f=\"Zefflin.com.xml\"><securecookie host=\"^\\.\" name=\"^__(?:qca$|utm)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://zefflin\\.com/\" to=\"https://www.zefflin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeit.de (partial)\" f=\"Zeit.de.xml\"><securecookie host=\"^(?:\\.premium|shop)\\.zeit\\.de$\" name=\".+\"/><rule from=\"^http://(inserieren|premium|shop|ssl)\\.zeit\\.de/\" to=\"https://$1.zeit.de/\"/><rule from=\"^http://images\\.zeit\\.de/\" to=\"https://ssl.zeit.de/images.zeit.de/\"/></ruleset>", "<ruleset name=\"Zeltser.com\" f=\"Zeltser.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zemanta (partial)\" f=\"Zemanta.xml\"><rule from=\"^http://img\\.zemanta\\.com/\" to=\"https://s3.amazonaws.com/img.zemanta.com/\"/><rule from=\"^http://content\\.zemanta\\.com/\" to=\"https://d25rszouhfu52v.cloudfront.net/\"/><rule from=\"^http://i\\.zemanta\\.com/\" to=\"https://d1r7mnnsvydqxs.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Zen.co.uk (partial)\" f=\"Zen-Internet.xml\"><securecookie host=\"(?:.*\\.)?zen\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenCDN.net\" f=\"ZenCDN.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenCache.com\" f=\"ZenCache.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenMate.com (partial)\" f=\"ZenMate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zen-Cart.com (partial)\" f=\"Zen_Cart.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zencoder.com (partial)\" f=\"Zencoder.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://help\\.zencoder\\.com/\" to=\"https://app.zencoder.com/docs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zend.com (partial)\" f=\"Zend.xml\"><securecookie host=\"^\\.zend\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^\\.shop\\.zend\\.com$\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://zend\\.com/\" to=\"https://www.zend.com/\"/><rule from=\"^http://static\\.zend\\.com/shop/\" to=\"https://shop-zend.pantherssl.com/\"/><rule from=\"^http://static\\.zend\\.com/\" to=\"https://static-zend.pantherssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zend2.com\" f=\"Zend2.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendesk.com clients (partial)\" f=\"Zendesk.com-clients.xml\"><rule from=\"^http://support\\.photobucket\\.com/(assets|external|generated|images|registration|system)/\" to=\"https://photobucket.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Zendesk.com (partial)\" f=\"Zendesk.com.xml\"><exclusion pattern=\"^http://video\\.zendesk\\.com/\"/><securecookie host=\"^\\.zendesk\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^p\\dassets\\.zendesk\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.zendesk\\.com/\" to=\"https://d16cvnquvjw7pr.cloudfront.net/\"/><rule from=\"^http://radar\\.zendesk\\.com/\" to=\"https://zendesk.github.io/radar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendition.net\" f=\"Zendition.net.xml\"><securecookie host=\"^(?:www)?\\.zendition\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendy Labs\" f=\"Zendy_Labs.xml\"><securecookie host=\"^(?:w*\\.)?zendylabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zenfolio (partial)\" default_off=\"Needs ruleset tests\" f=\"Zenfolio.xml\"><exclusion pattern=\"^http://cdn\\.zenfolio\\.net/crossdomain\\.xml\"/><rule from=\"^http://cdn\\.zenfolio\\.net/\" to=\"https://secure.zenfolio.com/\"/><rule from=\"^http://(?:www\\.)?zenfolio\\.com/zf/(?=css/|img/|login\\.aspx)\" to=\"https://secure.zenfolio.com/zf/\"/><rule from=\"^http://(?:www\\.)?zenfolio\\.com/zf/transfer/s/\" to=\"https://secure.zenfolio.com/zf/\"/><rule from=\"^http://secure\\.zenfolio\\.com/\" to=\"https://secure.zenfolio.com/\"/><rule from=\"^http://\\w+\\.zenfolio\\.com/img/\" to=\"https://secure.zenfolio.com/img/\"/><rule from=\"^http://\\w+\\.zenfolio\\.com/cdn/\" to=\"https://www.zenfolio.com/cdn/\"/></ruleset>", "<ruleset name=\"Zenger.nl (partial)\" f=\"Zenger.nl.xml\"><rule from=\"^http://www\\.zenger\\.nl/+\" to=\"https://www.axelarnbak.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeniMax Media (mismatches)\" default_off=\"mismatch\" f=\"ZeniMax-Media-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?(?:bethblog|dishonored|elderscrolls|zenimax)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(bethblog|dishonored|elderscrolls|zenimax(?:online)?)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://jobs\\.zenimax\\.com/\" to=\"https://jobs.zenimax.com/\"/></ruleset>", "<ruleset name=\"ZeniMax Media (partial)\" f=\"ZeniMax-Media.xml\"><rule from=\"^https?://static\\.zenimax\\.com/\" to=\"https://d1z7bw3wiqzsm4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Zeno's Forensic Site\" default_off=\"failed ruleset test\" f=\"Zenos_Forensic_Site.xml\"><securecookie host=\"^(?:www\\.)?forensic\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zenspider.com (partial)\" platform=\"cacert\" f=\"Zenspider.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.com (partial)\" f=\"Zentyal.com.xml\"><securecookie host=\"^\\.store\\.zentyal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.org (partial)\" f=\"Zentyal.org.xml\"><securecookie host=\"^(?:forum|tracker|wiki)\\.zentyal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerigo.com\" f=\"Zerigo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeringo.com\" default_off=\"self-signed\" f=\"Zeringo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerista.com (partial)\" f=\"Zerista.xml\"><exclusion pattern=\"^http://www\\.zerista\\.com/\"/><rule from=\"^http://(\\w+)\\.zerista\\.com/\" to=\"https://$1.zerista.com/\"/></ruleset>", "<ruleset name=\"Zero Robotics\" default_off=\"failed ruleset test\" f=\"Zero-Robotics.xml\"><securecookie host=\"^(?:.*\\.)?zerorobotics\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroBin.net\" f=\"ZeroBin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroBlock.com\" f=\"ZeroBlock.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.zeroblock\\.com/\" to=\"https://zeroblock.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroC.com\" f=\"ZeroC.com.xml\"><rule from=\"^http://www\\.zeroc\\.com/\" to=\"https://www.zeroc.com/\"/></ruleset>", "<ruleset name=\"ZeroCater.com (partial)\" f=\"ZeroCater.com.xml\"><rule from=\"^http://zerocater\\.com/\" to=\"https://www.zerocater.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroNet.io\" f=\"ZeroNet.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroTier.com\" f=\"ZeroTier.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zero Day Initiative.com (partial)\" f=\"Zero_Day_Initiative.com.xml\"><rule from=\"^http://(www\\.)?zerodayinitiative\\.com/(?=css/|favicon\\.ico|img/|portal(?:$|[?/]))\" to=\"https://$1zerodayinitiative.com/\"/></ruleset>", "<ruleset name=\"zeromq (partial)\" default_off=\"failed ruleset test\" f=\"Zeromq.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zerties.org (partial)\" default_off=\"self-signed\" f=\"Zerties.org.xml\"><rule from=\"^http://zerties\\.org/\" to=\"https://www.zerties.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerve\" f=\"Zerve.xml\"><rule from=\"^http://(?:www\\.)?zerve\\.com/(cookie_check\\.php|(?:directory/)?(?:css|img)/|raa/raa3_2\\.php)\" to=\"https://www.zerve.com/$1\"/><rule from=\"^http://img-static\\.cdn\\.zerve\\.com/\" to=\"https://d3ks0ua4wrpv20.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Zerzar.com\" default_off=\"mismatched, self-signed\" f=\"Zerzar.xml\"><securecookie host=\"^(?:www)?\\.zerzar.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeta.Systems (partial)\" f=\"Zeta.Systems.xml\"><securecookie host=\"^secure\\.zeta\\.systems$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zetetic.net\" f=\"Zetetic.net.xml\"><rule from=\"^http://zetetic\\.net/\" to=\"https://www.zetetic.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeusHash.com\" f=\"ZeusHash.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zeuscat.com\" f=\"Zeuscat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeusClicks.com (partial)\" default_off=\"missing certificate chain\" f=\"Zeusclicks.com.xml\"><securecookie host=\"^ads2\\.zeusclicks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZynCDN.com (partial)\" f=\"ZgnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zhihu (partial)\" f=\"Zhihu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zidisha.org (partial)\" f=\"Zidisha.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziedot.lv\" f=\"Ziedot.lv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziff Davis (mismatches)\" default_off=\"mismatched\" f=\"Ziff-Davis-mismatches.xml\"><securecookie host=\"^www\\.extremetech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?extremetech\\.com/\" to=\"https://www.extremetech.com/\"/></ruleset>", "<ruleset name=\"Ziff Davis (partial)\" f=\"Ziff-Davis.xml\"><rule from=\"^http://static\\.adziff\\.com/\" to=\"https://d3dd6h0gw79f7z.cloudfront.net/\"/><rule from=\"^http://metrics\\.geek\\.com/\" to=\"https://geek-com.122.2o7.net/\"/><rule from=\"^http://metrics\\.pcmag\\.com/\" to=\"https://ziffdavis-com.112.2o7.net/\"/><rule from=\"^http://static\\.ziffdavis\\.com/\" to=\"https://static.ziffdavis.com/\"/></ruleset>", "<ruleset name=\"Ziggo.com\" f=\"Ziggo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziggo.nl\" f=\"Ziggo.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziggo Zakelijk.nl\" f=\"Ziggo_Zakelijk.nl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zillow (problematic)\" default_off=\"mismatched\" f=\"Zillow-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zillow (partial)\" default_off=\"Breaks overlays\" f=\"Zillow.xml\"><exclusion pattern=\"^http://(?:www\\.)?zillow\\.com/(?!.*\\$LoginLink|favicon\\.ico|(?:advertising|advice(?:pages|-thread)|agents|app|corp|directory|fhs-loan|foreclosures|for-sale-by-owner|help|home-(?:equity-loan|improvement-dueling-digs)|howto|imaging|learnmore|local-info|make-me-move|mobile|mortgage-(?:calculator|glossary|rates)|post-re(?:al-estate|ntal)-listings|refinance|search|static|visuals|webtools)(?:$|\\?|/))\"/><securecookie host=\"^engineering\\.zillow\\.com$\" name=\".+\"/><rule from=\"^http://((?:engineering|mortgageapi|rentalapp|www)\\.)?zillow\\.com/\" to=\"https://$1zillow.com/\"/><rule from=\"^http://photos\\d?\\.zillow\\.com/\" to=\"https://photos.zillow.com/\"/><rule from=\"^http://(www\\.)?zillowstatic\\.com/\" to=\"https://$1zillowstatic.com/\"/></ruleset>", "<ruleset name=\"Zilog.com\" f=\"Zilog.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zimbatm.com\" f=\"Zimbatm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zimbra (false MCB)\" platform=\"mixedcontent\" f=\"Zimbra.xml\"><securecookie host=\"^(?:.*\\.)?zimbra\\.com$\" name=\".+\"/><rule from=\"^http://files2?\\.zimbra\\.com/\" to=\"https://s3.amazonaws.com/files.zimbra.com/\"/><rule from=\"^http://([^/:@\\.]+\\.)?zimbra\\.com/\" to=\"https://$1zimbra.com/\"/><rule from=\"^http://(?:www\\.)?zimbrablog\\.com/\" to=\"https://blog.zimbra.com/\"/></ruleset>", "<ruleset name=\"Zimperium\" f=\"Zimperium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zing Checkout.com (broken)\" default_off=\"connection refused\" f=\"Zing_Checkout.com-problematic.xml\"><securecookie host=\"^\\.zingcheckout\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?zingcheckout\\.com/\" to=\"https://zingcheckout.com/\"/></ruleset>", "<ruleset name=\"Zing Checkout.com (partial)\" f=\"Zing_Checkout.com.xml\"><rule from=\"^http://app\\.zingcheckout\\.com/\" to=\"https://app.zingcheckout.com/\"/></ruleset>", "<ruleset name=\"Zipcar.com\" f=\"Zipcar.xml\"><exclusion pattern=\"^http://members\\.zipcar\\.com/+(?!$|\\?|apply|images/|regist|styles/)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|ad_)\"/><securecookie host=\"^(?!members\\.)\\w\" name=\".\"/><rule from=\"^http://zipcar\\.com/\" to=\"https://www.zipcar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zipler.ru\" f=\"Zipler.ru.xml\"><securecookie host=\"^www\\.zipler\\.ru$\" name=\".+\"/><rule from=\"^http://zipler\\.ru/\" to=\"https://www.zipler.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziplist.com\" f=\"Ziplist.com.xml\"><rule from=\"^http://(?:www\\.)?ziplist\\.com/\" to=\"https://www.ziplist.com/\"/></ruleset>", "<ruleset name=\"Zipy.co.il\" f=\"Zipy.co.il.xml\"><securecookie host=\"^www\\.zipy\\.co\\.il$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zissousecure.com\" f=\"Zissousecure.com.xml\"><securecookie host=\".+\\.zissousecure\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zlatkovic.com\" f=\"Zlatkovic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zlavadna.sk\" f=\"Zlavadna.sk.xml\"><rule from=\"^http://(?:www\\.)?zlavadna\\.sk/\" to=\"https://www.zlavadna.sk/\"/></ruleset>", "<ruleset name=\"Zlavy.odpadnes.sk\" f=\"Zlavy.odpadnes.sk.xml\"><rule from=\"^http://(?:www\\.|zlavy\\.)?odpadnes\\.sk/\" to=\"https://zlavy.odpadnes.sk/\"/></ruleset>", "<ruleset name=\"Zmanda.com (partial)\" f=\"Zmanda.xml\"><securecookie host=\"^(?:(?:forums|mysqlbackup|\\.?network|wiki))\\.zmanda\\.com$\" name=\".+\"/><rule from=\"^http://mysqlbackup\\.zmanda\\.com/+(?:\\??$|(index\\.php(?:$|[?/])))\" to=\"https://wiki.zmanda.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zocalopublicsquare (disabled)\" default_off=\"expired cert\" f=\"Zocalopublicsquare.xml\"><rule from=\"^http://(?:www\\.)?zocalopublicsquare\\.org/\" to=\"https://zocalopublicsquare.org/\"/></ruleset>", "<ruleset name=\"Zoho (mismatched)\" default_off=\"mismatched\" f=\"Zoho-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho.jp\" f=\"Zoho.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho.com (partial)\" f=\"Zoho.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.(blogs|creator|forums)\\.zoho\\.com/\" to=\"https://$1.zoho.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho Corp.com\" f=\"Zoho_Corp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho Discussions.com\" f=\"Zoho_Discussions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.zohodiscussions\\.com/\" to=\"https://zohodiscussions.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho static.com\" f=\"Zoho_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoklet.net\" default_off=\"connection dropped\" f=\"Zoklet.net.xml\"><securecookie host=\"^(?:.*\\.)?zoklet\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?zoklet\\.net/\" to=\"https://www.zoklet.net/\"/></ruleset>", "<ruleset name=\"Zom.im\" f=\"Zom.im.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zomato.com (partial)\" f=\"Zomato.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zombie Watch.org\" f=\"Zombie-Watch.xml\"><securecookie host=\"^www\\.zombeewatch\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zone-H.org\" f=\"Zone-H.org.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZoneEdit.com (partial)\" f=\"ZoneEdit.xml\"><securecookie host=\"^(?:cp|support)\\.zoneedit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoner.fi\" f=\"Zoner.fi.xml\"><securecookie host=\"^(?:oma|tuki|www)\\.zoner\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zong.com (partial)\" f=\"Zong.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zonglovani.info\" f=\"Zonglovani.info.xml\"><rule from=\"^http://(?:www\\.)?zonglovani\\.info/\" to=\"https://zonglovani.info/\"/></ruleset>", "<ruleset name=\"Zonomi.com (partial)\" f=\"Zonomi.xml\"><exclusion pattern=\"^http://zonomi\\.com/+(?!css/|favicon\\.ico|images/|r/css$|type-face/)\"/><rule from=\"^http://www\\.zonomi\\.com/\" to=\"https://zonomi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zooko.com\" default_off=\"connection dropped\" f=\"Zooko.com.xml\"><securecookie host=\"^zooko\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zooku.ro\" f=\"Zooku.xml\"><securecookie host=\"^(?:.+\\.)?zooku\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZSL.org (partial)\" f=\"Zoological_Society_of_London.xml\"><securecookie host=\"^www\\.zsl\\.org$\" name=\".+\"/><rule from=\"^http://zsl\\.org/\" to=\"https://www.zsl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoom.com.br (partial)\" f=\"Zoom.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZoomEye.org (partial)\" f=\"ZoomEye.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoomerang.com\" f=\"Zoomerang.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoomshare.com (partial)\" default_off=\"missing certificate chain\" f=\"Zoomshare.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zooniverse.org (partial)\" f=\"Zooniverse.xml\"><securecookie host=\"^.+\\.zooniverse\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoosk.com\" f=\"Zoosk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zopa (partial)\" f=\"Zopa.xml\"><rule from=\"^http://(?:uk\\.|www\\.)?zopa\\.com/\" to=\"https://uk.zopa.com/\"/><securecookie host=\"^\\.zopa\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Zopim\" f=\"Zopim.xml\"><securecookie host=\"^.*\\.zopim\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|blog|cdn|classic|dashboard|de\\d\\d|status\\d*|tickets|us\\d\\d|v2|wiki|www)\\.)?zopim\\.com/\" to=\"https://$1zopim.com/\"/></ruleset>", "<ruleset name=\"Zorpia (false MCB)\" platform=\"mixedcontent\" f=\"Zorpia.xml\"><securecookie host=\".*\\.zorpia\\.com$\" name=\".+\"/><rule from=\"^http://((?:en|h150|lrg131|me|mini|search|t[hn]s|www)\\.)?zorpia\\.com/\" to=\"https://$1zorpia.com/\"/><rule from=\"^http://(?:static\\.zorpia|(?:ec\\.)?static\\.zpcdn)\\.com/\" to=\"https://zorpia.com/\"/><rule from=\"^http://(?:ec\\.)?(h150|t[hn]s)\\.zpcdn\\.com/\" to=\"https://$1.zorpia.com/\"/><rule from=\"^http://lrg131\\.zpcdn\\.com/\" to=\"https://lrg131.zorpia.com/\"/></ruleset>", "<ruleset name=\"ZorroVPN.com\" f=\"ZorroVPN.com.xml\"><securecookie host=\"^\\.zorrovpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zotero.org\" f=\"Zotero.xml\"><securecookie host=\"^(?:.*\\.)?zotero\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zozs.se\" f=\"Zozs.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zscaler.com (partial)\" f=\"Zscaler.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><rule from=\"^http://info\\.zscaler\\.com/+(?:\\?.*)?$\" to=\"https://www.zscaler.com/\"/><rule from=\"^http://info\\.zscaler\\.com/\" to=\"https://na-abm.marketo.com/\"/><exclusion pattern=\"^http://info\\.zscaler\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zsim.de\" f=\"Zsim.de.xml\"><securecookie host=\"^(?:www\\.)?zsim\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zst.com.br\" f=\"Zst.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zt03.net (partial)\" f=\"Zt03.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zueri wie neu.ch\" f=\"Zueri_wie_neu.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina.com (partial)\" default_off=\"mismatched\" platform=\"cacert mixedcontent\" f=\"Zugaina-mismatches.xml\"><rule from=\"^http://(?:www\\.)?zugaina\\.com/\" to=\"https://zugaina.com/\"/></ruleset>", "<ruleset name=\"Zugaina.org (expired)\" platform=\"cacert\" default_off=\"expired\" f=\"Zugaina.org-problematic.xml\"><rule from=\"^http://zugaina\\.org/\" to=\"https://www.zugaina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina (partial)\" f=\"Zugaina.xml\"><rule from=\"^http://gentoo\\.zugaina\\.org/\" to=\"https://gpo.zugaina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuhah.com\" f=\"Zuhah.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zulius.com\" f=\"Zulius.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zumzi.com\" f=\"Zumzi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuse-Crew.de\" f=\"Zuse-Crew.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zwame.pt (partial)\" f=\"Zwame.pt.xml\"><exclusion pattern=\"^http://forum\\.zwame\\.pt/+(?!css\\.php|data/|styles/)\"/><exclusion pattern=\"^http://(?:jogos|podcast|portal|pr)\\.zwame\\.pt/+(?!favicon\\.ico|wp-content/)\"/><exclusion pattern=\"^http://magazine.zwame.pt/+(?!images/)\"/><securecookie host=\"^\\.zwame\\.pt$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zwiebelfreunde.de\" f=\"Zwiebelfreunde.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zwmail.de\" f=\"Zwmail.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.zwmail\\.de/[^?]*\" to=\"https://www.zaehlwerk.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zyado.com\" f=\"Zyado.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylom.com (partial)\" f=\"Zylom.com.xml\"><rule from=\"^http://cdn\\.media\\.zylom\\.com/\" to=\"https://media.zylom.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylon.net (false MCB)\" platform=\"mixedcontent\" f=\"Zylon.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylon.net (partial)\" f=\"Zylon.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?zylon\\.net/+(?!default\\.css|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zynga.tm\" default_off=\"mismatched\" f=\"Zynga.tm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zynga.com (partial)\" f=\"Zynga.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zynga Player Support.com\" f=\"Zynga_Player_Support.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"acast.com\" f=\"acast.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://acast\\.com/\" to=\"https://www.acast.com/\"/><rule from=\"^http://status\\.acast\\.com/\" to=\"https://acast.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accel-PPP.org\" f=\"accel-ppp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Achaea\" f=\"achaea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24\" f=\"active24.xml\"><rule from=\"^http://active24\\.cz/\" to=\"https://www.active24.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"administrator.de\" f=\"administrator.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adswitcher.com\" f=\"adswitcher.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsymptotic.com\" f=\"adsymptotic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adult Swim.com\" platform=\"mixedcontent\" f=\"adultswim.xml\"><securecookie host=\"^www\\.adultswim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aetolia\" f=\"aetolia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afip.gob.ar (false MCB)\" platform=\"mixedcontent\" f=\"afip.gob.ar-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://afip\\.gob\\.ar/\" to=\"https://www.afip.gob.ar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afip.gob.ar (partial)\" f=\"afip.gob.ar.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Age UK.org.uk (partial)\" f=\"ageuk.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agilisys.co.uk (partial)\" f=\"agilisys.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aircrack-ng.org (partial)\" f=\"aircrack-ng.org.xml\"><securecookie host=\"^(?:forum|trac)\\.aircrack-ng\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allAfrica (partial)\" f=\"allAfrica.xml\"><rule from=\"^http://(?:www\\.)?allafrica\\.com/(commerce/user/(?:manage|subscribe)|static)/\" to=\"https://allafrica.com/$1/\"/></ruleset>", "<ruleset name=\"Allianz.com (partial)\" f=\"allianz.com.xml\"><exclusion pattern=\"^http://www\\.agcs\\.allianz\\.com/+(?!assets/|css/|images/|sign-up-for-updates/+$)\"/><securecookie host=\"^(?!www\\.agcs\\.)\\w\" name=\".\"/><rule from=\"^http://www\\.azt\\.allianz\\.com/\" to=\"https://azt.allianz.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.com.mx\" f=\"amazon.com.mx.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ambitious About Autism.org.uk\" f=\"ambitiousaboutautism.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ambitiousaboutautism\\.org\\.uk/\" to=\"https://www.ambitiousaboutautism.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMC Networks.com (partial)\" f=\"amcnetworks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ameba.jp (false MCB)\" platform=\"mixedcontent\" f=\"ameba.jp-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ameba\\.jp/\" to=\"https://www.ameba.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anchor.net.au\" f=\"anchor.net.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anibis.ch (partial)\" f=\"anibis.ch.xml\"><exclusion pattern=\"^http://www\\.anibis\\.ch/+(?!\\w\\w/login\\.aspx|ui/Anibis/css-public)\"/><securecookie host=\"^m\\.anibis\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anime News Network\" f=\"animenewsnetwork.xml\"><securecookie host=\"^www\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^fast\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^admin\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn01\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn02\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn03\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^m\\.animenewsnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANZ.co.nz (partial)\" f=\"anz.co.nz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://anz\\.co\\.nz/\" to=\"https://www.anz.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apprenticeships.scot\" f=\"apprenticeships.scot.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://apprenticeships\\.scot/\" to=\"https://www.apprenticeships.scot/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arhivach\" f=\"arhivach.org.xml\"><securecookie host=\"(.+\\.)?arhivach\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmA 2 (Partial)\" default_off=\"Bad Cert\" f=\"arma2.com.xml\"><rule from=\"^http://(?:www\\.)?arma2\\.com/\" to=\"https://www.arma2.com/\"/></ruleset>", "<ruleset name=\"ArmA Tactics (Partial)\" default_off=\"Bad Cert\" f=\"armatactics.com.xml\"><rule from=\"^http://(?:www\\.)?armatactics\\.com/\" to=\"https://www.armatactics.com/\"/></ruleset>", "<ruleset name=\"Arms Control.org\" f=\"armscontrol.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arne Swinnen.net\" f=\"arneswinnen.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arretsurimages.net\" f=\"arretsurimages.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arte (partial)\" platform=\"mixedcontent\" f=\"arte.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assured\" f=\"assured.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atlseccon\" f=\"atlseccon.xml\"><rule from=\"^http://(www\\.)?atlseccon\\.com/\" to=\"https://atlseccon.com/\"/></ruleset>", "<ruleset name=\"ATM IA.com\" f=\"atmia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audioboom.com\" f=\"audioboom.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.audioboom\\.com/\" to=\"https://audioboom.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avco Systems.com\" f=\"avcosystems.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aviation Weather.gov (partial)\" f=\"aviationweather.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avicoder.me\" f=\"avicoder.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avoin ministeriö\" default_off=\"expired\" f=\"avoinministerio.xml\"><securecookie host=\"^www\\.avoinministerio\\.fi\" name=\".*\"/><rule from=\"^http://avoinministerio\\.fi/\" to=\"https://www.avoinministerio.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avoinyliopisto.fi\" f=\"avoinyliopisto.xml\"><rule from=\"^http://(?:www\\.)?avoinyliopisto\\.fi/\" to=\"https://www.avoinyliopisto.fi/\"/><securecookie host=\"^(?:www)?\\.avoinyliopisto\\.fi\" name=\".*\"/></ruleset>", "<ruleset name=\"Aylesbury Vale DC.gov.uk (partial)\" f=\"aylesburyvaledc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://account\\.aylesburyvaledc\\.gov\\.uk/+(?=$|\\?)\" to=\"https://account.aylesburyvaledc.gov.uk/business/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"azalead.com\" f=\"azalead.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"b-linked.bbyo.org\" default_off=\"breaks for non-logged-in users\" f=\"b-linked.bbyo.org.xml\"><rule from=\"^http://(www\\.)?b-linked\\.bbyo\\.org/\" to=\"https://b-linked.bbyo.org/\"/></ruleset>", "<ruleset name=\"Bad Dragon.com (partial)\" f=\"bad-dragon.com.xml\"><exclusion pattern=\"^http://bad-dragon\\.com/$\"/><securecookie host=\"^\\.bad-dragon\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bandaancha.eu\" f=\"bandaancha.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnardos.org.uk (partial)\" f=\"barnardos.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://barnardos\\.org\\.uk/\" to=\"https://www.barnardos.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnet.gov.uk\" f=\"barnet.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://barnet\\.gov\\.uk/\" to=\"https://www.barnet.gov.uk/\"/><rule from=\"^http://committeepapers\\.barnet\\.gov\\.uk/\" to=\"https://barnet.moderngov.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnsley.gov.uk (partial)\" f=\"barnsley.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://barnsley\\.gov\\.uk/\" to=\"https://www.barnsley.gov.uk/\"/><rule from=\"^http://consult\\.barnsley\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://barnsley.objective.co.uk/portal\"/><rule from=\"^http://consult\\.barnsley\\.gov\\.uk/\" to=\"https://barnsley.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Basildon.gov.uk (partial)\" f=\"basildon.gov.uk.xml\"><exclusion pattern=\"^http://www\\.basildon\\.gov\\.uk/+(?!\\w+/(?:css|images|template)/|CHttpHandler\\.ashx|media/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bato.to\" f=\"bato.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedford.gov.uk (partial)\" f=\"bedford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.athleticstadium\\.bedford\\.gov\\.uk/.*\" to=\"https://www.bedford.gov.uk/leisure_and_culture/leisure_and_fitness_facilities/athletic_stadium.aspx\"/><rule from=\"^http://www\\.robinsonpool\\.bedford\\.gov\\.uk/.*\" to=\"https://www.bedford.gov.uk/leisure_and_culture/leisure_and_fitness_facilities/swimming_pools/robinson_pool.aspx\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedford Corn Exchange.co.uk\" f=\"bedfordcornexchange.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beej.us\" f=\"beej.us.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beers of Europe\" platform=\"mixedcontent\" f=\"beersofeurope.co.uk.xml\"><rule from=\"^http://www\\.beersofeurope\\.co\\.uk/\" to=\"https://www.beersofeurope.co.uk/\"/></ruleset>", "<ruleset name=\"benchmarkjs.com\" f=\"benchmarkjs.com.xml\"><rule from=\"^http://(?:www\\.)?benchmarkjs\\.com/\" to=\"https://benchmarkjs.com/\"/><securecookie host=\"^benchmarkjs\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"bet365.es\" f=\"bet365.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bet365 Affiliates.com\" f=\"bet365affiliates.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bet365affiliates\\.com/\" to=\"https://www.bet365affiliates.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Science.org\" f=\"betterscience.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beyond Binary.io\" f=\"beyondbinary.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bezrealitky.cz\" f=\"bezrealitky.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bger.ch\" f=\"bger.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bider & Tanner\" f=\"biderundtanner.ch.xml\"><rule from=\"^http://biderundtanner\\.ch/\" to=\"https://www.biderundtanner.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bikeability.org.uk\" f=\"bikeability.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birmingham.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"birmingham.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birmingham.gov.uk (partial)\" f=\"birmingham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><rule from=\"^http://consult\\.birmingham\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://birmingham.objective.co.uk/portal\"/><rule from=\"^http://consult\\.birmingham\\.gov\\.uk/\" to=\"https://birmingham.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCasa.com (partial)\" f=\"bitcasa.xml\"><exclusion pattern=\"^http://(?:blog|developer\\.blog|forums|l)\\.bitcasa\\.com/\"/><securecookie host=\"^(?:developer\\.|www\\.)?bitcasa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinTrezor.com\" f=\"bitcointrezor.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmixer\" f=\"bitmixer.io.xml\"><securecookie host=\"bitmixer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizx.info\" f=\"bizx.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blackarrowsoftware.com\" f=\"blackarrowsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BLAKE2.net\" f=\"blake2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bleachbit.org\" f=\"bleachbit.org.xml\"><rule from=\"^http://bleachbit\\.org/\" to=\"https://www.bleachbit.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blindseeker.com\" f=\"blindseeker.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BNL.gov (partial)\" f=\"bnl.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.phobos\\.bnl\\.gov/+\" to=\"https://www.bnl.gov/phobos/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnw.im\" f=\"bnw.im.xml\"><securecookie host=\"^bnw\\.im$\" name=\".*\"/><rule from=\"^http://www\\.bnw\\.im/\" to=\"https://bnw.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BookIt Secure.com\" f=\"bookitsecure.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookware3000\" f=\"bookware3000.ca.xml\"><securecookie host=\"^([\\w-]+)\\.bookware3000\\.ca$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.bookware3000\\.ca/\" to=\"https://$1.bookware3000.ca/\"/><exclusion pattern=\"^http://canbead\\.bookware3000\\.ca/\"/></ruleset>", "<ruleset name=\"Boston Fed.org (partial)\" f=\"bostonfed.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boundary Devices.com\" f=\"boundarydevices.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bplaced\" f=\"bplaced.xml\"><securecookie host=\"^www\\.bplaced\\.net$\" name=\".*\"/><rule from=\"^http://bplaced\\.net/\" to=\"https://www.bplaced.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bracknell-Forest.gov.uk (partial)\" f=\"bracknell-forest.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.bracknell-forest\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://bracknell-forest-consult.objective.co.uk/portal\"/><rule from=\"^http://consult\\.bracknell-forest\\.gov\\.uk/\" to=\"https://bracknell-forest-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrassRing.com\" f=\"brassring.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brave.com\" f=\"brave.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrianChristner.io\" f=\"brianchristner.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Browser-Update.org\" f=\"browser-update.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brunel.ac.uk (partial)\" f=\"brunel.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"btjunkie\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"btjunkie.xml\"><rule from=\"^http://dl\\.btjunkie\\.org/\" to=\"https://dl.btjunkie.org/\"/><rule from=\"^http://(?:www\\.)?btjunkie\\.org/\" to=\"https://btjunkie.org/\"/></ruleset>", "<ruleset name=\"buchhaus.ch\" f=\"buchhaus.ch.xml\"><rule from=\"^http://buchhaus\\.ch/\" to=\"https://www.buchhaus.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bukkit.org (partial)\" f=\"bukkit.org.xml\"><exclusion pattern=\"^http://dev\\.bukkit\\.org/+(?!artisan/|favicon\\.ico|media/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?!dev\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bunkus.org\" f=\"bunkus.org.xml\"><securecookie host=\"^www\\.bunkus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bury.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"bury.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bury.gov.uk (partial)\" f=\"bury.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?bury\\.gov\\.uk/+(?![Bb]ury/(?:css|[Ii]mages|template)/|favicon\\.ico|media/)\"/><securecookie host=\"^\\.\" name=\"^(?:III_EXPT_FILE|III_SESSION_ID|SESSION_LANGUAGE)$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Businessclick.com\" f=\"businessclick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://businessclick\\.com/\" to=\"https://www.businessclick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bux.cz\" f=\"bux.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buy A Plan.co.uk\" default_off=\"needs clearnet testing\" f=\"buyaplan.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buy with Confidence.gov.uk\" f=\"buywithconfidence.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bypassingcensorshipinthe.uk\" f=\"bypassingcensorshipinthe.uk.xml\"><securecookie host=\"^.*\\.bypassingcensorshipinthe\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CADlink.com\" f=\"cadlink.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campus Technology.com\" f=\"campustechnology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cancer Research UK.org (partial)\" f=\"cancerresearchuk.org.xml\"><exclusion pattern=\"^http://donateinmemory\\.cancerresearchuk\\.org/+(?!\\w+/(?:images|styles)|(?:create-a-page|login)/*(?:$|\\?|/p/))\"/><exclusion pattern=\"^http://myprojects\\.cancerresearchuk\\.org/+(?!favicon\\.ico|public/|register(?:$|[?/])|templates/|uploads/)\"/><exclusion pattern=\"^http://publications\\.cancerresearchuk\\.org/+(?!CSS/|Login\\.aspx|Scripts/.+\\.css|SiteImages/|downloads/[Pp]roduct/|admin/Images/)\"/><exclusion pattern=\"http://raceforlife\\.cancerresearchuk\\.org/+(?!\\w+/assets/(?:css|img)/|.+/groups/.+/documents/digitalmedia/|konakart-images/|rfl/forms/shop/)\"/><exclusion pattern=\"^http://(?:www\\.)?cancerresearchuk\\.org/+(?!(?:cr_weblayout/(?:megamenu/)?images/|prod_consump/(?:groups/.+/(?:image|stylesheet)|images|megamenu/stylesheets|resources)/|sites/))\"/><securecookie host=\"^\\.\" name=\"^(?:__qca|_gat?)$\"/><securecookie host=\"^(?:crukip|egms|\\.giftshop|survey)\\.\" name=\".\"/><rule from=\"^http://cancerresearchuk\\.org/\" to=\"https://www.cancerresearchuk.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CANDDi.com (partial)\" f=\"canddi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://canddi\\.com/\" to=\"https://www.canddi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canon.com.au (partial)\" f=\"canon.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:staff)?store\\.\" name=\".\"/><rule from=\"^http://worldofeas\\.canon\\.com\\.au/[^?]*\" to=\"https://www.canon.com.au/worldofeos/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capita Discovery.co.uk\" f=\"capitadiscovery.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.capitadiscovery\\.co\\.uk/\" to=\"https://capitadiscovery.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff.gov.uk (partial)\" f=\"cardiff.gov.uk.xml\"><exclusion pattern=\"^http://formerly\\.cardiff\\.gov\\.uk/+(?!favicon\\.ico|template/)\"/><securecookie host=\"^(?!formerly\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care Careers Devon.org.uk\" f=\"carecareersdevon.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care International.org.uk (partial)\" f=\"careinternational.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"carrefour.es\" f=\"carrefour.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cash.ch\" f=\"cash.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBS Corporation.com (partial)\" f=\"cbscorporation.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdbaby.com\" f=\"cdbaby.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDC.gov (partial)\" f=\"cdc.gov.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_\\w)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mtrics\\.cdc\\.gov/\" to=\"https://cdc.112.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cede\" f=\"cede.ch.xml\"><rule from=\"^http://(?:www\\.)?cede\\.ch/\" to=\"https://www.cede.ch/\"/></ruleset>", "<ruleset name=\"Centrify.com (partial)\" f=\"centrify.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|ARRAffinity)$\"/><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><rule from=\"^http://centrify\\.com/\" to=\"https://www.centrify.com/\"/><rule from=\"^http://edge\\.centrify\\.com/\" to=\"https://d1bymqnf4zi2cz.cloudfront.net/\"/><rule from=\"^http://feeds\\.centrify\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://info\\.centrify\\.com/+(?:\\?.*)?$\" to=\"https://www.centrify.com/\"/><rule from=\"^http://info\\.centrify\\.com/\" to=\"https://na-sjg.marketo.com/\"/><exclusion pattern=\"^http://info\\.centrify\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://uptime\\.centrify\\.com/\" to=\"https://cetrify.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CEOP.police.uk\" f=\"ceop.police.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certificate Details.com\" f=\"certificatedetails.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Český hosting\" f=\"cesky-hosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ch.ch\" f=\"ch.ch.xml\"><securecookie host=\"^(?:www\\.)?\\.ch\\.ch$\" name=\".+\"/><rule from=\"^http://ch\\.ch/\" to=\"https://www.ch.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ch\\.ch/\" to=\"https://$1.ch.ch/\"/></ruleset>", "<ruleset name=\"Chatlio.com\" f=\"chatlio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.chatlio\\.com/\" to=\"https://chatlio.statuspage.io/\"/><rule from=\"^http://www\\.chatlio\\.com/\" to=\"https://chatlio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkbox.com\" f=\"checkbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkmyrota\" f=\"checkmyrota.xml\"><rule from=\"^http:\" to=\"https:\"/><rule from=\"^https://(?:www\\.)?checkmyrota\\.com/\" to=\"https://checkmyrota.com/\"/></ruleset>", "<ruleset name=\"Cheshire West and Chester.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"cheshirewestandchester.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire West and Chester.gov.uk (partial)\" f=\"cheshirewestandchester.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:consult|mylimehouse)\\.cheshirewestandchester\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://epnbc-consult.objective.co.uk/portal\"/><rule from=\"^http://(?:consult|mylimehouse)\\.cheshirewestandchester\\.gov\\.uk/\" to=\"https://epnbc-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chesterfield.gov.uk (partial)\" f=\"chesterfield.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChinaFile.com (partial)\" f=\"chinafile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHRnet.com\" f=\"chrdnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens Advice.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"citizensadvice.org.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens Advice.org.uk (partial)\" f=\"citizensadvice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citra-emu.org\" f=\"citra-emu.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civica.co.uk (partial)\" f=\"civica.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civica LG.com.au (partial)\" f=\"civicalg.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civil Service.gov.uk (partial)\" f=\"civilservice.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:(?:my|resources|www)\\.)?civilservice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/civil-service\"/><exclusion pattern=\"^http://(?:(?:my|resources|www)\\.)?civilservice\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://faststream\\.civilservice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/faststream\"/><exclusion pattern=\"^http://faststream\\.civilservice\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://gcloud\\.civilservice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/how-to-use-cloudstore\"/><exclusion pattern=\"^http://gcloud\\.civilservice\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://it\\.civilservice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/organisations/civil-service-government-it-profession/about/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CLAS Consultants\" default_off=\"failed ruleset test\" f=\"clasconsultants.net.xml\"><securecookie host=\"^(?:.*\\.)?clasconsultants\\.net$\" name=\".+\"/><rule from=\"^http://clasconsultants\\.net/\" to=\"https://www.clasconsultants.net/\"/><rule from=\"^http://([^/:@]+)?\\.clasconsultants\\.net/\" to=\"https://$1.clasconsultants.net/\"/></ruleset>", "<ruleset name=\"CloudShark.org\" f=\"cloudshark.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeIgniter.com (false MCB)\" f=\"codeigniter.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.forum\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeIgniter.com (partial)\" f=\"codeigniter.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coinmarketcap.com\" f=\"coinmarketcap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comdirect bank\" f=\"comdirect.xml\"><rule from=\"^http://(?:www\\.)?comdirect\\.de/\" to=\"https://www.comdirect.de/\"/><rule from=\"^http://kunde\\.comdirect\\.de/\" to=\"https://kunde.comdirect.de/\"/></ruleset>", "<ruleset name=\"Communities.gov.uk (partial)\" f=\"communities.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Companic.nl\" default_off=\"missing certificate chain\" f=\"companic.nl.xml\"><securecookie host=\"^\\.\" name=\"^osCsid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComputerBild.de\" f=\"computerbild.de.xml\"><rule from=\"^http://computer-bild\\.de/\" to=\"https://computerbild.de/\"/><rule from=\"^http://www\\.computer-bild\\.de/\" to=\"https://www.computerbild.de/\"/><rule from=\"^http://i\\.computer-bild\\.de/\" to=\"https://i.computerbild.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect to Support.org (partial)\" f=\"connecttosupport.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Content Reserve.com\" f=\"contentreserve.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contrast Security.com\" f=\"contrastsecurity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://contrastsecurity\\.com/\" to=\"https://www.contrastsecurity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copeland.gov.uk (partial)\" f=\"copeland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coralproject\" f=\"coralproject.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cotswold.gov.uk (partial)\" f=\"cotswold.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.cotswold\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://cotswold.objective.co.uk/portal\"/><rule from=\"^http://consult\\.cotswold\\.gov\\.uk/\" to=\"https://cotswold.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Course Directory Provider Portal.org.uk\" f=\"coursedirectoryproviderportal.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covent Garden.london\" f=\"coventgarden.london.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coventry.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"coventry.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coventry.gov.uk (partial)\" f=\"coventry.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://coventry\\.gov\\.uk/\" to=\"https://www.coventry.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpaste\" f=\"cpaste.xml\"><securecookie host=\"^cpaste\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craig Murray.org.uk\" f=\"craigmurray.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craig Smith.net\" f=\"craigsmith.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crazespaces.pw\" f=\"crazespaces.pw.xml\"><securecookie host=\"^(www\\.)?crazespaces\\.pw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crick.ac.uk\" f=\"crick.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://webmail\\.crick\\.ac\\.uk/+\" to=\"https://emea.centrify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cross Keys Homes.co.uk\" f=\"crosskeyshomes.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://crosskeyshomes\\.co\\.uk/\" to=\"https://www.crosskeyshomes.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCoding\" f=\"cryptocoding.xml\"><securecookie host=\"^cryptocoding\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoTec.com\" f=\"cryptotec.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptovpn.me\" f=\"cryptovpn.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSC Portal.org.uk\" f=\"cscportal.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuckoo Sandbox.org\" f=\"cuckoosandbox.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cwrap.org\" f=\"cwrap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyberpowerpc.com\" f=\"cyberpowerpc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Edge.ie\" f=\"dailyedge.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://dailyedge\\.ie/\" to=\"https://www.dailyedge.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data.gov.uk (partial)\" f=\"data.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Exchange Wales.org.uk\" f=\"dataexchangewales.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataMotion.com (partial)\" f=\"datamotion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"daydeal\" f=\"daydeal.ch.xml\"><rule from=\"^http://(?:www\\.)?daydeal\\.ch/\" to=\"https://www.daydeal.ch/\"/></ruleset>", "<ruleset name=\"DCERPC\" f=\"dcerpc.org.xml\"><rule from=\"^http://(?:www\\.)?dcerpc\\.org/\" to=\"https://www.dcerpc.org/\"/></ruleset>", "<ruleset name=\"DCT.org.uk\" f=\"dct.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DD-WRT.com (self-signed)\" default_off=\"self-signed\" f=\"dd-wrt.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deSEC\" f=\"deSEC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"declaredthoughtfulness.co\" f=\"declaredthoughtfulness.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delovie Linii (transport company)\" f=\"dellin.ru.xml\"><securecookie host=\"(.+\\.)?dellin\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://m\\.dellin\\.ru/.*\"/></ruleset>", "<ruleset name=\"dennogumi.org\" f=\"dennogumi.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"derStandard.at (partial)\" f=\"derstandard.at.xml\"><exclusion pattern=\"^http://derstandard\\.at/$\"/><exclusion pattern=\"^http://www\\.derstandard\\.at/$\"/><exclusion pattern=\"^http://mobil\\.derstandard\\.at/$\"/><rule from=\"^http://(www\\.)?derstandard\\.at/(ajax|css|img|js|kursinfo|wetter/Content/img)/\" to=\"https://derstandard.at/$2/\"/><rule from=\"^http://mobil\\.derstandard\\.at/(ajax|css|img|js|kursinfo|wetter/Content/img)/\" to=\"https://mobil.derstandard.at/$1/\"/><rule from=\"^http://epaper\\.derstandard\\.at/\" to=\"https://epaper.derstandard.at/\"/><rule from=\"^http://images\\.derstandard\\.at/\" to=\"https://images.derstandard.at/\"/><rule from=\"^http://livestat\\.derstandard\\.at/\" to=\"https://livestat.derstandard.at/\"/></ruleset>", "<ruleset name=\"deutschepost\" f=\"deutschepost.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deutschland-spielt.de\" f=\"deutschland-spielt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devalate.com\" f=\"devalate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devon Jobs.gov.uk (partial)\" f=\"devonjobs.gov.uk.xml\"><exclusion pattern=\"^http://www\\.devonjobs\\.gov\\.uk/+(?!(?:CommonFileStorage(?:Fil|Imag)eGrab|ForgottenPassword|Register|Signin)\\.aspx|categories(?:$|[?/])|(?:[\\w-]+/)?client/\\d+/(?:css|graphics|upload)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFT.gov.uk (partial)\" f=\"dft.gov.uk.xml\"><exclusion pattern=\"^http://shop\\.dft\\.gov\\.uk/+(?!THINKShop/(?:_assets/css|_assets/images|ProductImages)/)\"/><securecookie host=\"^(?!shop\\.)\\w\" name=\".\"/><rule from=\"^http://bikeability\\.dft\\.gov\\.uk/+\" to=\"https://bikeability.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHHS.gov (partial)\" f=\"dhhs.gov.xml\"><rule from=\"^http://(?:www\\.)?ori\\.dhhs\\.gov/\" to=\"https://ori.hhs.gov/\"/></ruleset>", "<ruleset name=\"DHI-scotland.com\" f=\"dhi-scotland.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dietmardreier.de\" f=\"dietmardreier.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"divShare.com\" platform=\"mixedcontent\" f=\"divShare.xml\"><securecookie host=\"^(?:.*\\.)?divshare\\.com$\" name=\".*\"/><rule from=\"^http://divshare\\.com/\" to=\"https://www.divshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNAinfo.com\" f=\"dnainfo.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dnainfo\\.com/\" to=\"https://www.dnainfo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dolphin Browser\" f=\"dolphin.com.xml\"><securecookie host=\"^(www\\.)?dolphin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain Discount 24\" f=\"domaindiscount24.xml\"><securecookie host=\"^(www\\.|webmail\\.|login\\.)?domaindiscount24\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSite.com\" f=\"domainsite.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"donmai.us\" f=\"donmai.us.xml\"><securecookie host=\"^(?:danbooru|safebooru)?\\.donmai\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?donmai\\.us/\" to=\"https://danbooru.donmai.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\".swiss\" f=\"dot.swiss.xml\"><rule from=\"^http://nic\\.swiss/\" to=\"https://www.nic.swiss/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dribper.com\" f=\"dribper.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dudley FoI.org.uk\" f=\"dudleyfoi.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Due-North.com (partial)\" f=\"due-north.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"durchmesser.ch\" f=\"durchmesser.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-ShopBrokers\" default_off=\"failed ruleset test\" f=\"e-ShopBrokers.xml\"><securecookie host=\"^www\\.eshopbrokers\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eshopbrokers\\.co\\.uk/\" to=\"https://www.eshopbrokers.co.uk/\"/></ruleset>", "<ruleset name=\"e-pay Capita.com\" f=\"e-paycapita.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eBid.net\" f=\"eBid.net.xml\"><rule from=\"^http://([A-Za-z]+\\.)?ebid\\.net/\" to=\"https://$1ebid.net/\"/></ruleset>", "<ruleset name=\"eGenix.com\" f=\"eGenix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eHarmony (partial)\" f=\"eHarmony.xml\"><exclusion pattern=\"^http://(?:advice|photos)\\.eharmony\\.com/\"/><exclusion pattern=\"^http://www\\.eharmony\\.com/\"/><securecookie host=\"^(?:.*\\.)?eharmony\\.com$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.eharmony\\.com/\" to=\"https://$1.eharmony.com/\"/></ruleset>", "<ruleset name=\"eHoiva\" f=\"eHoiva.fi.xml\"><rule from=\"^http://(?:www\\.)?ehoiva\\.fi/\" to=\"https://ehoiva-fi.directo.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eHow (partial)\" platform=\"mixedcontent\" f=\"eHow.xml\"><securecookie host=\"^www\\.ehow\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?ehow\\.com/\" to=\"https://$1ehow.com/\"/><rule from=\"^http://(?:test\\d-)?(?:img|v5-static)\\.ehow(?:cdn)?\\.com/\" to=\"https://www.ehow.com/\"/></ruleset>", "<ruleset name=\"eNovance\" f=\"eNovance.xml\"><securecookie host=\"^(?:.*\\.)?eno(?:cloud|vance)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?enocloud\\.com/\" to=\"https://www.enovance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePUAP.gov.pl (partial)\" f=\"ePUAP.gov.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eagereyes.org\" f=\"eagereyes.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"earthvpn.com\" f=\"earthvpn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Sussex.gov.uk (partial)\" f=\"eastsussex.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.new\\.\" name=\".\"/><rule from=\"^http://eastsussex\\.gov\\.uk/\" to=\"https://www.eastsussex.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Sussex 1 Space.co.uk\" f=\"eastsussex1space.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://eastsussex1space\\.co\\.uk/\" to=\"https://www.eastsussex1space.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Sussex Learning.org.uk\" f=\"eastsussexlearning.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eastsussexlearning\\.org\\.uk/\" to=\"https://www.eastsussexlearning.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EatNow.com.au\" f=\"eatnow.com.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Echo24.cz\" f=\"echo24.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDEKA (partial)\" f=\"edeka.xml\"><exclusion pattern=\"^http://edeka\\.de/$\"/><exclusion pattern=\"^http://www\\.edeka\\.de/$\"/><exclusion pattern=\"^http://www\\.edeka-verbund\\.de/$\"/><rule from=\"^http://(www\\.)?edeka\\.de/media/\" to=\"https://www.edeka.de/media/\"/><rule from=\"^http://(www\\.)?edeka-verbund\\.de/Unternehmen/media/\" to=\"https://www.edeka-verbund.de/Unternehmen/media/\"/><rule from=\"^http://bms\\.edeka\\.de/\" to=\"https://bms.edeka.de/\"/><rule from=\"^http://mein\\.edeka\\.de/\" to=\"https://mein.edeka.de/\"/><rule from=\"^http://static\\.edeka\\.de/\" to=\"https://static.edeka.de/\"/></ruleset>", "<ruleset name=\"Edge.ie\" f=\"edge.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Education.gov.uk (partial)\" f=\"education.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?education\\.gov\\.uk/+(?!$|\\?|(?:help|piwik)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><securecookie host=\"^www\\.\" name=\"^PIWIK_\"/><rule from=\"^http://aka\\.education\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/department-for-education\"/><exclusion pattern=\"^http://aka\\.education\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EForms.gov.ie\" f=\"eforms.gov.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eigenLab\" f=\"eigenLab.xml\"><securecookie host=\"^(?:[^:@\\.]+\\.)?eigenlab\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELEKTRO PALOUČEK\" f=\"elektro-paloucek.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elkosmas.gr\" default_off=\"failed ruleset test\" f=\"elkosmasgr.xml\"><rule from=\"^http://(?:www\\.)?elkosmas\\.gr/\" to=\"https://elkosmas.gr/\"/></ruleset>", "<ruleset name=\"Elttam.com.au\" f=\"elttam.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Email-Compare the Market.com\" f=\"email-comparethemarket.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"empirehost.me\" f=\"empirehost.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt The Planet.com\" default_off=\"needs clearnet testing\" f=\"encrypt-the-planet.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radio Energy\" platform=\"mixedcontent\" f=\"energy.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energylinx.co.uk\" f=\"energylinx.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ensi- ja turvakotien liitto\" f=\"ensijaturvakotienliitto.xml\"><rule from=\"^http://(?:www\\.)?ensijaturvakotienliitto\\.fi/\" to=\"https://ensijaturvakotienliitto-fi.directo.fi/\"/><rule from=\"^http://ensijaturvakotienliitto-fi\\.directo\\.fi/\" to=\"https://ensijaturvakotienliitto-fi.directo.fi/\"/><securecookie host=\"ensijaturvakotienliitto-fi\\.directo\\.fi\" name=\".*\"/></ruleset>", "<ruleset name=\"E.ON IT Hungary\" f=\"eon.xml\"><securecookie host=\"^www\\.eon-hungaria\\.com$\" name=\".*\"/><rule from=\"^http://www\\.eon-hungaria\\.com/\" to=\"https://www.eon-hungaria.com/\"/></ruleset>", "<ruleset name=\"etherpad.fr\" f=\"etherpad.fr.xml\"><rule from=\"^http://(?:www\\.)?etherpad\\.fr/\" to=\"https://etherpad.fr/\"/></ruleset>", "<ruleset name=\"Eugene Kolo.com\" f=\"eugenekolo.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EU most wanted.eu\" f=\"eumostwanted.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eurobilltracker.com\" f=\"eurobilltracker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe-Consommateurs.eu\" default_off=\"mismatched, self-signed\" f=\"europe-consommateurs.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europeana.eu (partial)\" platform=\"mixedcontent\" f=\"europeana.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eveonline.com (partial)\" f=\"eveonline.com.xml\"><exclusion pattern=\"^http://(?:fanfest)\\.eveonline\\.com/\"/><rule from=\"^http://(?:www\\.)?eveonline\\.com/\" to=\"https://www.eveonline.com/\"/><rule from=\"^http://(forums|community|truestory|wiki|secure|gate|support)\\.eveonline\\.com/\" to=\"https://$1.eveonline.com/\"/></ruleset>", "<ruleset name=\"evilsocket.net\" f=\"evilsocket.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ewebcart.com\" f=\"ewebcart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"exsila\" f=\"exsila.ch.xml\"><rule from=\"^http://(?:www\\.)?exsila\\.ch/\" to=\"https://www.exsila.ch/\"/></ruleset>", "<ruleset name=\"f4map.com\" f=\"f4map.com.xml\"><securecookie host=\"^(www\\.|demo\\.)f4map\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fail0verflow\" f=\"fail0verflow.xml\"><rule from=\"^http://(?:www\\.)?fail0verflow\\.com/\" to=\"https://fail0verflow.com/\"/></ruleset>", "<ruleset name=\"fakena.me\" f=\"fakena.me.xml\"><securecookie host=\"^fakena\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FARA.gov (partial)\" f=\"fara.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"febo.com\" f=\"febo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fiddler2.com\" f=\"fiddler2.com.xml\"><securecookie host=\"^(?:www\\.)?fiddler2\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filecrypt.cc\" f=\"filecrypt.cc.xml\"><securecookie host=\"^(www\\.)?filecrypt\\.cc\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanzcheck.de\" f=\"finanzcheck.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find IP-Address.com\" default_off=\"missing certificate chain\" f=\"findip-address.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finlex\" platform=\"mixedcontent\" f=\"finlex.xml\"><rule from=\"^http://(?:www\\.)?finlex\\.fi/\" to=\"https://www.finlex.fi/\"/></ruleset>", "<ruleset name=\"Firmstep.com (MCB)\" platform=\"mixedcontent\" f=\"firmstep.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:epetitionslincolnshire|richmondshire)\\.\" name=\".\"/><rule from=\"^http://www\\.douglas\\.firmstep\\.com/\" to=\"https://douglas.firmstep.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firmstep.com (partial)\" f=\"firmstep.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://firmstep\\.com/\" to=\"https://www.firmstep.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flinkster\" f=\"flinkster.xml\"><rule from=\"^http://www\\.flinkster\\.de/\" to=\"https://www.flinkster.de/\"/></ruleset>", "<ruleset name=\"Florida Lobbyist.gov\" f=\"floridalobbyist.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FL Senate.gov (partial)\" f=\"flsenate.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food.gov.uk (partial)\" f=\"food.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"foodsharing.de\" f=\"foodsharing.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForgeRock.com (partial)\" f=\"forgerock.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"forum-3dcenter.org\" f=\"forum-3dcenter.org.xml\"><rule from=\"^http://forum-3dcenter\\.org/\" to=\"https://www.forum-3dcenter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fossies.org\" f=\"fossies.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraedom-CDN.com\" f=\"fraedom-cdn.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraedom.com (partial)\" f=\"fraedom.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www2\\.fraedom\\.com/+(?:\\?.*)?$\" to=\"https://www.fraedom.com/\"/><rule from=\"^http://www2\\.fraedom\\.com/\" to=\"https://pi.pardot.com/\"/><exclusion pattern=\"^http://www2\\.fraedom\\.com/+(?!$|\\?|l/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freecode.club\" f=\"freecode.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freedesktop.org (false MCB)\" platform=\"mixedcontent\" f=\"freedesktop.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freenode\" f=\"freenode.xml\"><securecookie host=\"\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".\\.freenode\\.(net|org)$\" name=\".\"/><securecookie host=\"\\.freenode\\.org$\" name=\".+\"/><rule from=\"^http://freenode\\.org/\" to=\"https://www.freenode.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freewebsitetemplates.com\" f=\"freewebsitetemplates.com.xml\"><rule from=\"^http://(?:www\\.)?freewebsitetemplates\\.com/\" to=\"https://www.freewebsitetemplates.com/\"/></ruleset>", "<ruleset name=\"freshmeat.club\" f=\"freshmeat.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"froggyNET.com\" default_off=\"shows another domain\" f=\"froggyNET.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fronter.com (partial)\" f=\"fronter.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FT-static.com (partial)\" f=\"ft-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FT.com (MCB)\" platform=\"mixedcontent\" f=\"ft.com-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ftp.rnl.tecnico.ulisboa.pt\" f=\"ftp.rnl.tecnico.ulisboa.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fun Over IP.net\" f=\"funoverip.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Site Compat.com\" f=\"fxsitecompat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GAMECRAFT.CZ\" f=\"gamecraft.cz.xml\"><rule from=\"^http://www\\.gamecraft\\.cz/\" to=\"https://gamecraft.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gargoyle-Router.com\" f=\"gargoyle.xml\"><securecookie host=\"^\\.gargoyle-router\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garmin\" f=\"garmin.xml\"><rule from=\"^http://(?:www\\.)?garmin\\.com/\" to=\"https://www.garmin.com/\"/><rule from=\"^http://([^/:@]*)\\.garmin\\.com/\" to=\"https://$1.garmin.com/\"/></ruleset>", "<ruleset name=\"gazellegames.net\" f=\"gazellegames.xml\"><rule from=\"^http://(?:www\\.)?gazellegames\\.net/\" to=\"https://gazellegames.net/\"/></ruleset>", "<ruleset name=\"GCSip.com\" f=\"gcsip.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geenstijl\" f=\"geenstijl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"genua.de\" f=\"genua.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geo IP Tool.com (partial)\" f=\"geoiptool.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Gophish.com\" f=\"getgophish.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Mondo.co.uk\" f=\"getmondo.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Nikola.com\" f=\"getnikola.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"giffgaff\" f=\"giffgaff.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIMP\" f=\"gimp.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Girls Out West.com (false MCB)\" platform=\"mixedcontent\" f=\"girlsoutwest.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://forums\\.girlsoutwest\\.com/\" to=\"https://forum.girlsoutwest.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glasgow Consult.co.uk\" f=\"glasgowconsult.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://glasgowconsult\\.co\\.uk/\" to=\"https://www.glasgowconsult.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glittering.Blue\" f=\"glittering.blue.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.glittering\\.blue/\" to=\"https://glittering.blue/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GLL Jobs.org\" f=\"glljobs.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go!Mokulele\" default_off=\"failed ruleset test\" f=\"goMokulele.xml\"><rule from=\"^http://(?:www\\.)?iflygo\\.com/\" to=\"https://www.iflygo.com/\"/></ruleset>", "<ruleset name=\"go Hugo.io\" f=\"gohugo.io.xml\"><securecookie host=\"^\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goldenpass.ch\" f=\"goldenpass.xml\"><rule from=\"^http://goldenpass\\.ch/\" to=\"https://www.goldenpass.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goldesel.to\" f=\"goldesel.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Great-Yarmouth.gov.uk (partial)\" f=\"great-yarmouth.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?great-yarmouth\\.gov\\.uk/+(?!media/|themes/)\"/><securecookie host=\"^[^.wg]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"green.ch\" f=\"green.ch.xml\"><rule from=\"^http://www\\.colocation-datacenter\\.com/\" to=\"https://colocation-datacenter.com/\"/><rule from=\"^http://greenserver\\.ch/\" to=\"https://www.greenserver.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grist.org\" f=\"grist.org.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"growth.supply\" f=\"growth-supply.xml\"><securecookie host=\"^blog\\.growth\\.supply$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian apps.co.uk\" f=\"guardianapps.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gulli.com (partial)\" platform=\"mixedcontent\" f=\"gulli.com.xml\"><rule from=\"^http://(?:www\\.)?gulli\\.com/\" to=\"https://www.gulli.com/\"/><rule from=\"^http://(apps|login|static)\\.gulli\\.com/\" to=\"https://$1.gulli.com/\"/></ruleset>", "<ruleset name=\"guru.de\" f=\"guru.de.xml\"><securecookie host=\"^(?:www\\.)?guru\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?guru\\.de/\" to=\"https://guru.de/\"/></ruleset>", "<ruleset name=\"hackint.org\" f=\"hackint.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"halton.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (partial)\" f=\"halton.gov.uk.xml\"><exclusion pattern=\"^http://careandsupportforyou\\.halton\\.gov\\.uk/+(?![^/]+\\.css|Account/(?:Login|PasswordRecovery)\\.aspx|App_Themes/|[Cc]ontent/|common/images/|secure(?:$|[?/])|uploadedFiles/|uploaded[Ii]mages/)\"/><exclusion pattern=\"^http://(?:councillors|moderngov)\\.halton\\.gov\\.uk/+(?![Ss]ite[Ss]pecific/|jquery-ui/)\"/><securecookie host=\"^(?!(?:careandsupportforyou|councillors|moderngov)\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Havant.gov.uk (partial)\" f=\"havant.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"haveibeenpwned.com\" f=\"haveibeenpwned.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hazro.com\" f=\"hazro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO.com (false MCB)\" platform=\"mixedcontent\" f=\"hbo.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:i|render)\\.lv3\\.hbo\\.com/\" to=\"https://www.hbo.com/\"/><rule from=\"^http://cdn\\.www\\.hbo\\.com/\" to=\"https://www.hbo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO Kids.com\" f=\"hbokids.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hbokids\\.com/\" to=\"https://www.hbokids.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO Now.com\" f=\"hbonow.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hbonow\\.com/\" to=\"https://www.hbonow.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO Shop EU.com\" f=\"hboshopeu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hboshopeu\\.com/\" to=\"https://www.hboshopeu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hebdo.ch\" f=\"hebdo.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helbing.ch\" f=\"helbing.ch.xml\"><rule from=\"^http://helbing\\.ch/\" to=\"https://www.helbing.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HexChat.net\" f=\"hexchat.net.xml\"><securecookie host=\"^\\.\" name=\"(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hi5.com\" f=\"hi5.xml\"><securecookie host=\"^\\.hi5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hieber\" f=\"hieber.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highland.gov.uk (partial)\" f=\"highland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://consult\\.highland\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://highland.objective.co.uk/portal\"/><rule from=\"^http://consult\\.highland\\.gov\\.uk/\" to=\"https://highland.objective.co.uk/\"/><rule from=\"^http://libraries\\.highland\\.gov\\.uk/.*\" to=\"https://capitadiscovery.co.uk/highland/\"/><exclusion pattern=\"^http://libraries\\.highland\\.gov\\.uk/(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highways.gov.uk (partial)\" f=\"highways.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:aka\\.|www\\.)?highways\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/highways-england\"/><exclusion pattern=\"^http://(?:aka\\.|www\\.)?highways\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://(assets|data)\\.highways\\.gov\\.uk/\" to=\"https://s3.amazonaws.com/$1.highways.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hipertextual.com\" f=\"hipertextual.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hitta\" f=\"hitta.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Wetland Park (partial)\" f=\"hkwetlandpark.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobby PCB.com\" f=\"hobbypcb.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homebid.org.uk\" default_off=\"missing certificate chain\" f=\"homebid.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://homebid\\.org\\.uk/\" to=\"https://www.homebid.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honeynet.org.mx (partial)\" f=\"honeynet.org.mx.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?honeynet\\.org\\.mx/.*\" to=\"https://blog.honeynet.org.mx/\"/><exclusion pattern=\"^http://(?:www\\.)?honeynet\\.org\\.mx/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honeynet.org (partial)\" f=\"honeynet.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Free Press\" f=\"hongkongfp.com.xml\"><securecookie host=\"^www\\.hongkongfp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hongkong Post e-Cert\" f=\"hongkongpost.gov.hk.xml\"><rule from=\"^http://(?:www\\.)?hongkongpost\\.gov\\.hk/\" to=\"https://www.hongkongpost.gov.hk/\"/></ruleset>", "<ruleset name=\"Hosting (partial)\" default_off=\"connection dropped\" f=\"hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hotel.ch\" f=\"hotel.ch.xml\"><rule from=\"^http://(?:www\\.)?hotel\\.ch/\" to=\"https://www.hotel.ch/\"/></ruleset>", "<ruleset name=\"Hotelplan\" f=\"hotelplan.xml\"><rule from=\"^http://(?:www\\.)?hotelplan\\.ch/\" to=\"https://www.hotelplan.ch/\"/><rule from=\"^http://(?:www\\.)?travelhouse\\.ch/\" to=\"https://www.travelhouse.ch/\"/></ruleset>", "<ruleset name=\"HPS.org\" f=\"hps.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSCIC.gov.uk (partial)\" f=\"hscic.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hugendubel.info\" f=\"hugendubel.info.xml\"><rule from=\"^http://hugendubel\\.info/\" to=\"https://www.hugendubel.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hunton Privacy Blog.com\" f=\"huntonprivacyblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huuto.net\" f=\"huuto.net.xml\"><rule from=\"^http://(?:www\\.)?huuto\\.net/\" to=\"https://salattu.huuto.net/\"/><rule from=\"^http://salattu\\.huuto\\.net/\" to=\"https://salattu.huuto.net/\"/><rule from=\"^http://kuvat2\\.huuto\\.net/\" to=\"https://kuvat2.huuto.net/\"/><rule from=\"^http://kuvat\\.?huuto\\.net/\" to=\"https://kuvat.huuto.net/\"/></ruleset>", "<ruleset name=\"Hybrid -- Cryptocurrency Combined\" default_off=\"expired\" f=\"hyb.pw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydranodes.de\" f=\"hydranodes.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydraproxy.party\" f=\"hydraproxy.party.xml\"><securecookie host=\"^.*\\.hydraproxy\\.party$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyper Ledger.org\" f=\"hyperledger.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCarol\" f=\"iCarol.xml\"><securecookie host=\"^webapp\\.icarol\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iEntry (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"iEntry.xml\"><securecookie host=\"^www\\.ientry\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?ientry\\.com/\" to=\"https://$1ientry.com/\"/><rule from=\"^http://cdn\\.ientry\\.com/\" to=\"https://d195lklsc86qb5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"iHub_ Nairobi\" default_off=\"expired, self-signed\" f=\"iHub_-Nairobi.xml\"><securecookie host=\"^ihub\\.co\\.ke$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(research\\.)?ihub\\.co\\.ke/\" to=\"https://$1ihub.co.ke/\"/></ruleset>", "<ruleset name=\"iPerceptions.com (partial)\" f=\"iPerceptions.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.universal\\.iperceptions\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTerm2\" f=\"iTerm2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stichting IAPC\" f=\"iapc.utwente.nl.xml\"><rule from=\"^http://([^/:@]*)\\.iapc\\.utwente\\.nl/\" to=\"https://$1.iapc.utwente.nl/\"/><rule from=\"^http://([^/:@]*)\\.iapc\\.nl/\" to=\"https://$1.iapc.utwente.nl/\"/><rule from=\"^http://(?:[^/:@]*\\.)?isdewinkelopen\\.nl/\" to=\"https://isdewinkelopen.iapc.utwente.nl/\"/><rule from=\"^http://(?:[^/:@]*\\.)?startjesucces\\.nl/\" to=\"https://startjesucces.iapc.utwente.nl/\"/><securecookie host=\"(?:^|\\.)iapc.utwente.nl$\" name=\".*\"/></ruleset>", "<ruleset name=\"IBM.biz\" f=\"ibm.biz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ibm\\.biz/\" to=\"https://ibm.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibutsu.org\" f=\"ibutsu.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ibutsu\\.org/\" to=\"https://ibutsu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I CAN.org.uk (partial)\" f=\"ican.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"idox group.com (partial)\" f=\"idoxgroup.com.xml\"><exclusion pattern=\"http://www\\.compliance\\.idoxgroup\\.com/+(?!(?:aktuelles/newsletter|en/login|login)\\.html|fileadmin/|typo3temp/|uploads/)\"/><securecookie host=\"^(?!www\\.compliance\\.)\\w\" name=\".\"/><rule from=\"^http://fskills\\.idoxgroup\\.com/.*\" to=\"https://www.researchonline.org.uk/sds/index.do\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ifolor.ch\" platform=\"mixedcontent\" f=\"ifolor.ch.xml\"><rule from=\"^http://(?:www\\.)?ifolor\\.ch/\" to=\"https://www.ifolor.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"illustre.ch\" f=\"illustre.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagecurl\" f=\"imagecurl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"img.ifcdn.com\" f=\"img.ifcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgking\" f=\"imgking.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Immerda.ch\" f=\"immerda.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"immunicity.uk\" f=\"immunicity.uk.xml\"><securecookie host=\"^.*\\.immunicity\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imperian\" f=\"imperian.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"impressiondesk.com\" f=\"impressiondesk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infosactu.com\" f=\"infosactu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"initial-website.com\" f=\"initial-website.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:diy2_frontend_user_hash|fe_typo_user)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InnerBody.com\" f=\"innerbody.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inovem.com (partial)\" default_off=\"mismatched, self-signed\" f=\"inovem.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"installments.com\" f=\"installments.com.xml\"><securecookie host=\"^www\\.installments\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstantAtlas.com (partial)\" f=\"instantatlas.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstaSync.com\" f=\"instasync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntelliPoker.bg\" f=\"intellipoker.bg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntellNews.net\" f=\"intellnews.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://intellnews\\.net/\" to=\"https://www.intellnews.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Essentials.com\" f=\"internetessentials.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Freedom Festival.org\" f=\"internetfreedomfestival.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IoT.uk\" f=\"iot.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IO Visor.org\" f=\"iovisor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iplocation.net\" f=\"iplocation.net.xml\"><securecookie host=\"^www\\.iplocation\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"irc.lc\" f=\"irc.lc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"is.gd\" f=\"is.gd.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is the Internet On Fire.com\" f=\"istheinternetonfire.com.xml\"><securecookie host=\"^(?:.*\\.)?istheinternetonfire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iStock img.com\" f=\"istockimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iStockphoto.com (partial)\" f=\"istockphoto.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://deutsch\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/de/\"/><rule from=\"^http://espanol\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/es/\"/><rule from=\"^http://francais\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/fr/\"/><rule from=\"^http://hangul\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/kr/\"/><rule from=\"^http://italiano\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/it/\"/><rule from=\"^http://jezykpolski\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/pl/\"/><rule from=\"^http://nihongo\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/jp/\"/><rule from=\"^http://portugues\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/pt/\"/><rule from=\"^http://portuguesbrasileiro\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/br/\"/><rule from=\"^http://russki\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itella.fi\" platform=\"mixedcontent\" f=\"itella.fi.xml\"><rule from=\"^http://(?:www\\.)?itella\\.fi/\" to=\"https://itella.fi/\"/><securecookie host=\"^(?:www)?\\.?itella\\.fi\" name=\".*\"/><exclusion pattern=\"^http://(?:www\\.)?itella\\.fi/itemtracking/\"/></ruleset>", "<ruleset name=\"ItemName.com\" f=\"itemname.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itsH.BO\" f=\"itsh.bo.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iwantmyname.com\" f=\"iwantmyname.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://like\\.iwantmyname\\.com/.*\" to=\"https://facebook.com/iwantmyname\"/><rule from=\"^http://status\\.iwantmyname\\.com/\" to=\"https://iwantmyname.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iway.ch\" f=\"iway.ch.xml\"><exclusion pattern=\"^http://netbackup\\.iway\\.ch\"/><exclusion pattern=\"^http://statistik\\.iway\\.ch\"/><rule from=\"^http://iway\\.ch/\" to=\"https://www.iway.ch/\"/><rule from=\"^http://([^/:@]+)?\\.iway\\.ch/\" to=\"https://$1.iway.ch/\"/></ruleset>", "<ruleset name=\"IXmaps.ca\" f=\"ixmaps.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jast USA.com (partial)\" f=\"jastusa.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^frontend$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jauce.com\" f=\"jauce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JBox.com\" f=\"jbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^frontend$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JEDEC.org\" f=\"jedec.org.xml\"><securecookie host=\"^\\.\" name=\"^SESS\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jekyll\" f=\"jekyllrb.com.xml\"><rule from=\"^http(s)?://www.jekyllrb.com/\" to=\"https://jekyllrb.com/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(www\\.)?jekyllrb\\.com$\" name=\".+\"/><securecookie host=\"^talk\\.jekyllrb\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"jmdekker.it\" f=\"jmdekker.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jobs.ch\" f=\"jobs.ch.xml\"><rule from=\"^http://([^/:@]*)\\.jobs\\.ch/\" to=\"https://$1.jobs.ch/\"/><rule from=\"^http://([^/:@]*)\\.jobcloud\\.ch/\" to=\"https://$1.jobcloud.ch/\"/></ruleset>", "<ruleset name=\"jonasboserup.dk\" f=\"jonasboserup.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"joomla-security.de\" f=\"joomla-security.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"joomlainfo.ch\" f=\"joomlainfo.ch.xml\"><rule from=\"^http://cdn-media\\.joomlainfo\\.ch/\" to=\"https://www.joomlainfo.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jrnl.ie\" f=\"jrnl.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:b0|static)\\.jrnl\\.ie/\" to=\"https://b0.thejournal.ie/\"/><rule from=\"^http://s\\d\\.jrnl\\.ie/\" to=\"https://d1icb8fuiosdrj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"jsFiddle.net\" f=\"jsFiddle.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.jsfiddle\\.net/\" to=\"https://jsfiddle.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Just Eat\" f=\"justeat.xml\"><rule from=\"^http://just-eat\\.com/\" to=\"https://www.just-eat.com/\"/><exclusion pattern=\"^http://www\\.just-?eat\\.(co\\.uk|ca|dk|no|es|be|nl|it|ie)/(blog|apps)\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"justseed.it\" f=\"justseedit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jwz.org\" default_off=\"self-signed\" f=\"jwz.org.xml\"><rule from=\"^http://(?:www\\.)?jwz\\.org/\" to=\"https://www.jwz.org/\"/></ruleset>", "<ruleset name=\"kabelbw\" f=\"kabelbw.xml\"><rule from=\"^http://www\\.kabelbw\\.de/\" to=\"https://www.kabelbw.de/\"/></ruleset>", "<ruleset name=\"kaimi.ru\" f=\"kaimi.ru.xml\"><securecookie host=\"^(?:[\\w-]+\\.)?kaimi\\.ru$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?(kaimi\\.ru)/\" to=\"https://$1$2/\"/></ruleset>", "<ruleset name=\"Schweizer Kantonalbanken\" f=\"kantonalbanken.xml\"><exclusion pattern=\"http://events\\.akb\\.ch\"/><exclusion pattern=\"http://(www\\.)?100jahre\\.akb\\.ch\"/><exclusion pattern=\"http://(www\\.)?mobilebanking\\.(akb|blkb)\\.ch\"/><exclusion pattern=\"http://(blog|gb)\\.blkb\\.ch/\"/><exclusion pattern=\"http://gb\\.bkb\\.ch/\"/><exclusion pattern=\"http://chart\\.bancastato\\.ch\"/><exclusion pattern=\"http://test\\.bcf\\.ch\"/><exclusion pattern=\"http://structures\\.bvc\\.ch\"/><exclusion pattern=\"http://art\\.bcvs\\.ch\"/><exclusion pattern=\"http://grow\\.gkb\\.ch/\"/><exclusion pattern=\"http://www\\.mobile\\.gkb\\.ch\"/><exclusion pattern=\"http://mobile\\.(appkb|gkb|glkb|nkb|owkb|sgkb|tkb)\\.ch\"/><exclusion pattern=\"http://(?:wap|ina)\\.lukb\\.ch\"/><exclusion pattern=\"http://galerie\\.sgkb\\.ch\"/><exclusion pattern=\"http://bcm\\.szkb\\.ch\"/><exclusion pattern=\"http://kredit\\.tkb\\.ch/\"/><exclusion pattern=\"http://mail\\.yourmoney\\.ch\"/><securecookie host=\"^(?:.*\\.)?(?:akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb).ch$\" name=\".+\"/><rule from=\"^http://(akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb)\\.ch/\" to=\"https://www.$1.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kasiopea\" f=\"kasiopea.matfyz.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kennedy-Center.org (partial)\" f=\"kennedy-center.org.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.artsedge\\.kennedy-center\\.org/\" to=\"https://artsedge.kennedy-center.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kids.org.uk (partial)\" f=\"kids.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kinoX.to\" f=\"kinoX.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kirlism.ga\" f=\"kirlism.ga.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kivikakk.ee\" f=\"kivikakk.ee.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klikki.fi\" f=\"klikki.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knowingly.com\" f=\"knowingly.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krystal.info\" default_off=\"expired\" f=\"krystal.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KSP MFF UK\" f=\"ksp.mff.cuni.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kupschke.net\" f=\"kupschke.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kva\" f=\"kva.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lackname.org\" f=\"lackname.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"landaire.net\" f=\"landaire.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://landaire\\.net/\" to=\"https://www.landaire.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Late Rooms.com (partial)\" f=\"laterooms.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lattice Challenge.org\" f=\"latticechallenge.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laughing Squid.com (partial)\" f=\"laughingsquid.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^(?!links\\.)\\w\" name=\".\"/><rule from=\"^http://feeds\\.laughingsquid\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://links\\.laughingsquid\\.com/facebook.*\" to=\"https://www.facebook.com/laughingsquid/#_=_\"/><exclusion pattern=\"^http://links\\.laughingsquid\\.com/(?!facebook(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeBonCoin (Partial)\" f=\"leboncoin.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lebsanft.org\" f=\"lebsanft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.gov.uk (partial)\" f=\"leeds.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legislation.gov.uk (partial)\" f=\"legislation.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LENR-Forum.com\" f=\"lenr-forum.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenta.ru (partial)\" f=\"lenta.ru.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lesershop 24\" f=\"lesershop24.de.xml\"><exclusion pattern=\"^http://www\\.lesershop24\\.de/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lesestoff.ch\" f=\"lesestoff.ch.xml\"><rule from=\"^http://lesestoff\\.ch/\" to=\"https://www.lesestoff.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LessButtons.com\" f=\"lessbuttons.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LFG.com (partial)\" f=\"lfg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lfg\\.com/\" to=\"https://www.lfg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libcom\" f=\"libcom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberis.co.uk\" f=\"liberis.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libraryreserve.com\" f=\"libraryreserve.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?libraryreserve\\.com/+\" to=\"https://www.overdrive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lichfield DC.gov.uk (partial)\" f=\"lichfielddc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lime-Technology.com\" f=\"lime-technology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dnld\\.lime-technology\\.com/\" to=\"https://s3.amazonaws.com/dnld.lime-technology.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linguee.de\" f=\"linguee.de.xml\"><securecookie host=\"www\\.linguee\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Penguins.xyz\" f=\"linuxpenguins.xyz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Literary Review.co.uk\" f=\"literaryreview.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Local Motors.com\" f=\"localmotors.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localphone.com (partial)\" f=\"localphone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London-Fire.gov.uk (partial)\" f=\"london-fire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lotro.com (partial)\" f=\"lotro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"luna1.co\" f=\"luna1.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lusternia\" f=\"lusternia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"m3connect\" f=\"m3connect.xml\"><rule from=\"^http://partner\\.m3connect\\.de/\" to=\"https://partner.m3connect.de/\"/><rule from=\"^http://portal\\.m3-connect\\.de/\" to=\"https://portal.m3-connect.de/\"/></ruleset>", "<ruleset name=\"Yaziba webmail\" f=\"mail.yaziba.net.xml\"><rule from=\"^http://mail\\.yaziba\\.net/\" to=\"https://mail.yaziba.net/\"/></ruleset>", "<ruleset name=\"maksukaista.fi\" f=\"maksukaista.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maldon.gov.uk (partial)\" f=\"maldon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAMP.info\" f=\"mamp.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manager.mijndomeinreseller.nl\" f=\"manager.mijndomeinreseller.nl.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^manager\\.mijndomeinreseller\\.nl$\" name=\".*\"/></ruleset>", "<ruleset name=\"Mandiant (partial)\" f=\"mandiant.com.xml\"><rule from=\"^http://(?:www\\.)?mandiant\\.com/\" to=\"https://www.mandiant.com/\"/></ruleset>", "<ruleset name=\"Mansfield.gov.uk\" platform=\"mixedcontent\" f=\"mansfield.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MantisBT.org\" f=\"mantisbt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marks Daily Apple.com\" default_off=\"connection refused\" f=\"marksdailyapple.xml\"><rule from=\"^http://(?:www\\.)?marksdailyapple\\.com/\" to=\"https://www.marksdailyapple.com/\"/></ruleset>", "<ruleset name=\"Marktplaats (buggy)\" platform=\"mixedcontent\" default_off=\"Mixed content block breaks advert editing and certain images\" f=\"marktplaats.nl.xml\"><exclusion pattern=\"^http://www\\.marktplaats\\.(?:com|net|nl)/kijkinuwwijk\\.html\"/><rule from=\"^http://([^/:@]*)\\.marktplaats\\.(nl|com|net)/\" to=\"https://$1.marktplaats.$2/\"/><rule from=\"^https://www\\.marktplaats\\.nl/kijkinuwwijk\\.html\" to=\"http://www.marktplaats.nl/kijkinuwwijk.html\" downgrade=\"1\"/></ruleset>", "<ruleset name=\"MathJax (partial)\" f=\"mathjax.xml\"><securecookie host=\"^\\.?mathjax\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mattermark.com\" f=\"mattermark.com.xml\"><securecookie host=\"^\\.\" name=\"^mkt_referer$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MCC.gov\" f=\"mcc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediaklik.com\" f=\"mediaklik.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaRoots.org\" f=\"mediaroots.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medicaid.gov (partial)\" f=\"medicaid.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medicare.gov (partial)\" f=\"medicare.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaAdventure.com.au (partial)\" f=\"megaadventure.com.au.xml\"><securecookie host=\"tickets\\.megaadventure\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Megamozg.ru (partial)\" f=\"megamozg.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Menulog.com.au\" f=\"menulog.com.au.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|incap_|visid_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercola\" f=\"mercola.xml\"><rule from=\"^http://(?:www\\.)?mercola\\.com/\" to=\"https://www.mercola.com/\"/><rule from=\"^http://products\\.mercola\\.com/\" to=\"https://products.mercola.com/\"/></ruleset>", "<ruleset name=\"Merkle Inc.com (partial)\" f=\"merkleinc.com.xml\"><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://www2\\.merkleinc\\.com/\" to=\"https://pi.pardot.com/\"/><exclusion pattern=\"^http://www2\\.merkleinc\\.com/+(?!l/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midkemia online\" f=\"midkemiaonline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros\" f=\"migros.xml\"><rule from=\"^http://melectronics\\.ch/\" to=\"https://www.melectronics.ch/\"/><rule from=\"^http://migrosbank\\.ch/\" to=\"https://www.migrosbank.ch/\"/><rule from=\"^http://m-fanshop\\.ch/\" to=\"https://www.m-fanshop.ch/\"/><rule from=\"^http://migros-shop\\.de/\" to=\"https://www.migros-shop.de/\"/><rule from=\"^http://migrosmagazin\\.ch/\" to=\"https://www.migrosmagazin.ch/\"/><rule from=\"^http://migrosmagazine\\.ch/\" to=\"https://www.migrosmagazine.ch/\"/><rule from=\"^http://(?:www\\.)?brueckenbauer\\.ch/\" to=\"https://www.migrosmagazin.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike West.org\" f=\"mikewest.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mjdk.dk\" f=\"mjdk.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MK2 (partial)\" f=\"mk2.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?mk2\\.com/\" to=\"https://www.mk2.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobile.de\" f=\"mobile.de.xml\"><exclusion pattern=\"^http://www\\.mobile\\.de/$\"/><exclusion pattern=\"^http://www\\.mobile\\.de/\\?lang=\\w+\"/><exclusion pattern=\"^http://www\\.mobile\\.de/pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobilism.me\" platform=\"mixedcontent\" f=\"mobilism.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moderngov.co.uk (partial)\" f=\"moderngov.co.uk.xml\"><exclusion pattern=\"^http://rbwm\\.moderngov\\.co\\.uk/+(?![Ss]ite[Ss]pecific/|documents/|ie(?:[Ll]ogon|RegisterUser)\\.aspx|mgimages/|jquery-ui/)\"/><exclusion pattern=\"^http://rutlandcounty\\.moderngov\\.co\\.uk/+(?![Ss]ite[Ss]pecific/|documents/|ie[Ll]ogon\\.aspx|mgimages/|jquery-ui/)\"/><securecookie host=\"^(?!rbwm\\.|rutlandcounty\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mole Valley.gov.uk (partial)\" f=\"molevalley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moncompteformation.gouv.fr\" f=\"moncompteformation.gouv.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Montana Linux.org\" f=\"montanalinux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://montanalinux\\.org/\" to=\"https://www.montanalinux.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"morawa-buch.at\" f=\"morawa-buch.at.xml\"><rule from=\"^http://morawa-buch\\.at/\" to=\"https://www.morawa-buch.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MouseJack.com\" f=\"mousejack.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://mousejack\\.com/\" to=\"https://www.mousejack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mozillazine-fr (partial)\" f=\"mozillazine-fr.xml\"><rule from=\"^http://(www\\.)?mozillazine-fr\\.org/\" to=\"https://mozillazine-fr.org/\"/></ruleset>", "<ruleset name=\"MPC-HC.org\" f=\"mpc-hc.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Msgme.com\" f=\"msgme.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michigan State University (partial)\" default_off=\"Have not caught all exclusion patterns\" f=\"msu.edu.xml\"><exclusion pattern=\"^http://(?:grad|acadgov|trustees|president|provost|ur|rha)\\.\"/><exclusion pattern=\"^http://www\\.(?:vprgs|vpfo|vps|canr)\\.\"/><rule from=\"^http://msu\\.edu/\" to=\"https://msu.edu/\"/><rule from=\"^http://([^/:@\\.]+\\.)msu\\.edu/\" to=\"https://$1msu.edu/\"/><securecookie host=\"^(?:www)?\\.msu\\.edu\" name=\".*\"/></ruleset>", "<ruleset name=\"MTS Welding.co.uk (partial)\" f=\"mtswelding.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?mtswelding\\.co\\.uk/+(?!wp-content/)\"/><rule from=\"^http://www\\.mtswelding\\.co\\.uk/\" to=\"https://mtswelding.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mulliner.org\" f=\"mulliner.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myGov\" f=\"myGov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Subway Card.com\" f=\"mysubwaycard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switzerland Tourism\" platform=\"mixedcontent\" f=\"myswitzerland.com.xml\"><rule from=\"^http://(?:www\\.)?myswitzerland\\.com/\" to=\"https://www.myswitzerland.com/\"/></ruleset>", "<ruleset name=\"mytalkdesk.com\" f=\"mytalkdesk.com.xml\"><securecookie host=\"^.*\\.mytalkdesk\\.com$\" name=\".+\"/><rule from=\"^http://mytalkdesk\\.com/\" to=\"https://www.mytalkdesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myuni-form.com (partial)\" f=\"myuni-form.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My World of Work.co.uk\" f=\"myworldofwork.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://myworldofwork\\.co\\.uk/\" to=\"https://www.myworldofwork.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mzl.la\" f=\"mzl.la.xml\"><rule from=\"^http://www\\.mzl\\.la/\" to=\"https://mzl.la/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n-tv.de (partial)\" platform=\"mixedcontent\" f=\"n-tv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Český národní panel\" f=\"narodnipanel.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nchr.io\" f=\"nchr.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCIP Hub.org\" f=\"nciphub.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCP-E.com (partial)\" f=\"ncp-e.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neovim.io\" f=\"neovim.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerdster\" f=\"nerdster.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netsalesnetwork.com\" f=\"netsalesnetwork.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netzclub\" platform=\"mixedcontent\" f=\"netzclub.xml\"><rule from=\"^http://(?:www\\.)?netzclub\\.net/\" to=\"https://www.netzclub.net/\"/><rule from=\"^http://profil\\.netzclub\\.net/\" to=\"https://profil.netzclub.net/\"/></ruleset>", "<ruleset name=\"New Humanist.org.uk\" f=\"newhumanist.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.newhumanist\\.org\\.uk/\" to=\"https://newhumanist.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Ledge.com\" f=\"newsledge.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"noblogs.org\" f=\"noblogs.org.xml\"><exclusion pattern=\"^http://stats\\.noblogs\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norfolk.gov.uk (partial)\" f=\"norfolk.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://digitallibrary\\.norfolk\\.gov\\.uk/.*\" to=\"https://norfolk.overdrive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North East Jobs.org.uk\" f=\"northeastjobs.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Lincs.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"northlincs.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Lincs.gov.uk (partial)\" f=\"northlincs.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Yorks.gov.uk (partial)\" f=\"northyorks.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Always\" f=\"notalways.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nowwhere.com.au (false MCB)\" platform=\"mixedcontent\" f=\"nowwhere.com.au-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nowwhere.com.au (partial)\" f=\"nowwhere.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"noxa.de\" f=\"noxa.de.xml\"><securecookie host=\"^(?:admin\\.|webmail\\.|www\\.)?noxa\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?noxa\\.de/\" to=\"https://www.noxa.de/\"/><rule from=\"^http://(admin|webmail)\\.noxa\\.de/\" to=\"https://$1.noxa.de/\"/><rule from=\"^http://noxamail\\.de/$\" to=\"https://www.noxa.de/?noxamail\"/></ruleset>", "<ruleset name=\"New People's Party\" f=\"npp.org.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuevoCloud.com\" f=\"nuevocloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nyantec\" f=\"nyantec.xml\"><rule from=\"^http://([^/:@]+\\.)?nyantec\\.com/\" to=\"https://$1nyantec.com/\"/><securecookie host=\"^(?:.+\\.)?nyantec\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"NYPF.org.uk\" f=\"nypf.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nzpug.org\" f=\"nzpug.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZZ (partial)\" f=\"nzz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oFono.org\" f=\"oFono.xml\"><rule from=\"^http://(?:www\\.)?ofono\\.org/$\" to=\"https://01.org/ofono\"/><rule from=\"^http://(?:www\\.)?ofono\\.org/\" to=\"https://01.org/ofono/\"/></ruleset>", "<ruleset name=\"OBI\" f=\"obi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ObiTalk.com\" f=\"obitalk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Objective.co.uk (partial)\" f=\"objective.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|ANONID_FS\\d+|ANONID\\d+|VISID\\d+)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.objective\\.co\\.uk/+(?:\\?.*)?$\" to=\"https://$1.objective.co.uk/portal\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ÖBB\" f=\"oebb.at.xml\"><rule from=\"^http://oebb\\.at/\" to=\"https://www.oebb.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ofsted.gov.uk (partial)\" f=\"ofsted.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:contact|employerview|learnerview|mobile\\.learnerview|parentview|reports)\\.\" name=\".\"/><rule from=\"^http://(?:www\\.)?ofsted\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/ofsted\"/><exclusion pattern=\"^http://(?:www\\.)?ofsted\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://dataview\\.ofsted\\.gov\\.uk/(?=$|\\?)\" to=\"https://public.tableau.com/views/Dataview/Viewregionalperformanceovertime\"/><rule from=\"^http://dataview\\.ofsted\\.gov\\.uk/\" to=\"https://public.tableau.com/views/Dataview/Viewregionalperformanceovertime/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneClickdigital.eu\" f=\"oneclickdigital.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onelink.me\" f=\"onelink.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONLINESHOP.CZ\" f=\"onlineshop.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnTheHub (partial)\" platform=\"mixedcontent\" f=\"onthehub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openDesktop.org (mismatches)\" default_off=\"mismatch\" f=\"openDesktop-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?opendesktop\\.org/\"/><exclusion pattern=\"^http://(?:www\\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><exclusion pattern=\"^http://(?:www\\.)?(?:(?:gnomefiles|linux42|opentemplate|scribusstuff|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><exclusion pattern=\"^http://addons\\.videolan\\.org/(?:ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\"/><securecookie host=\"^(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org$\" name=\".*\"/><securecookie host=\"^(?:gnomefiles|linux42|opentemplate|scribusstuff|addons\\.videolan|vlc-addons)\\.org$\" name=\".*\"/><securecookie host=\"^(?:linuxdaily|open-pc|openskillz)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(apps|art|files|help|look|stuff|themes)\\.org/\" to=\"https://$1-$2.org/\"/><rule from=\"^http://(?:www\\.)?((?:gnomefiles|linux42|opentemplate|scribusstuff|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/\" to=\"https://$1/\"/><rule from=\"^http://addons\\.videolan\\.org/\" to=\"https://addons.videolan.org/\"/></ruleset>", "<ruleset name=\"openDesktop.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"openDesktop.xml\"><rule from=\"^http://(?:www\\.)?opendesktop\\.org/\" to=\"https://opendesktop.org/\"/><rule from=\"^http://(?:static\\.|www\\.)?(?:arch|beryl|box|cli|compiz|debian|e17|ede|eyeos|frugalware|gentoo|gnome|gtk|java|kde|linuxmint|maemo|qt|suse|ubuntu|wine|xfce)-(?:apps|art|files|help|look|stuff|themes)\\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/><rule from=\"^http://(?:static\\.|www\\.)?(?:(?:gnomefiles|linux42|scribusstuff|opentemplate|vlc-addons)\\.org|(?:linuxdaily|open-pc|openskillz)\\.com)/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/><rule from=\"^http://addons\\.videolan\\.org/(ad|cometchat|comments|CONTENT|fancybox|img|styles|usermanager)/\" to=\"https://opendesktop.org/$1/\"/></ruleset>", "<ruleset name=\"opendatacity\" f=\"opendatacity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openeffect.ca\" f=\"openeffect.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openmamba.org\" f=\"openmamba.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lists\\.openmamba\\.org/+\" to=\"https://www.openmamba.org/lists/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenNIC project\" f=\"opennicproject.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orange Plant.co.uk\" f=\"orangeplant.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.orangeplant\\.co\\.uk/\" to=\"https://orangeplant.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSDisc.com\" f=\"osdisc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSVehicle.com\" f=\"osvehicle.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"otaserve.net\" f=\"otaserve.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTTO's\" f=\"ottos.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Skillsforce.co.uk (partial)\" f=\"ourskillsforce.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"outnow.ch\" f=\"outnow.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"overpass-turbo.eu\" f=\"overpass-turbo.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oyoony\" f=\"oyoony.xml\"><securecookie host=\"^(?:www\\.)?oyoony\\.(?:at|de|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oyoony\\.(at|de|net)/\" to=\"https://oyoony.de/\"/></ruleset>", "<ruleset name=\"packetflagon.is\" f=\"packetflagon.is.xml\"><securecookie host=\"^.*\\.packetflagon\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"packetflagon.uk\" f=\"packetflagon.uk.xml\"><securecookie host=\"^.*\\.packetflagon\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pandasoph.de\" f=\"pandasoph.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passwordless.net\" f=\"passwordless.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasswordsCon (partial)\" f=\"passwordscon.org.xml\"><securecookie host=\"^\\.?passwordscon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasswordWolf.com\" f=\"passwordwolf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pccomponentes.com\" platform=\"mixedcontent\" f=\"pccomponentes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pcgarage.ro\" f=\"pcgarage.ro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCR Dist.com\" f=\"pcrdist.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PentesterLab.com (partial)\" f=\"pentesterlab.com.xml\"><securecookie host=\"^(?:www\\.)?pentesterlab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"perfecthair.ch\" f=\"perfecthair.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"perfora.net (partial)\" f=\"perfora.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perimeter Institute.ca\" f=\"perimeterinstitute.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Kieser.com\" f=\"peterkieser.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PharmGKB.org\" f=\"pharmgkb.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phil.camera\" f=\"phil.camera.xml\"><securecookie host=\"^phil\\.camera$\" name=\".+\"/><rule from=\"^http://www\\.phil\\.camera/\" to=\"https://phil.camera/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phoenix.de\" f=\"phoenix.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pieperhome.de\" f=\"pieperhome.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pindrop.com\" f=\"pindrop.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pindrop\\.com/\" to=\"https://www.pindrop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pindrop Security.com (partial)\" f=\"pindropsecurity.com.xml\"><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://info\\.pindropsecurity\\.com/+(?:\\?.*)?$\" to=\"https://pindropsecurity.com/\"/><rule from=\"^http://info\\.pindropsecurity\\.com/\" to=\"https://na-sji.marketo.com/\"/><exclusion pattern=\"^http://info\\.pindropsecurity\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pit-format-online.pl\" f=\"pit-format-online.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piwikpro.com\" f=\"piwikpro.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plain English.co.uk\" f=\"plainenglish.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planning Portal.gov.uk (partial)\" f=\"planningportal.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plymouth.gov.uk (partial)\" f=\"plymouth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PMF.gov\" f=\"pmf.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podtrac.com (partial)\" f=\"podtrac.com.xml\"><exclusion pattern=\"^http://www\\.podtrac\\.com/pts/redirect\\.\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PokerStars.com\" f=\"pokerstars.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PokerStars apps.com\" f=\"pokerstarsapps.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Policy Alternatives.ca (partial)\" f=\"policyalternatives.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poradte.cz\" f=\"poradte.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pornBB\" f=\"pornBB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portsmouth.gov.uk (partial)\" f=\"portsmouth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(emas|jsna|mediastore)\\.portsmouth\\.gov\\.uk/\" to=\"https://$1.portsmouth.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"porvoo.fi\" f=\"porvoo.fi.xml\"><securecookie host=\"^\\.?(?:www)?\\.?porvoo\\.fi\" name=\".*\"/><rule from=\"^http://porvoo\\.fi/\" to=\"https://www.porvoo.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"posti.fi\" platform=\"mixedcontent\" f=\"posti.fi.xml\"><rule from=\"^http://(?:www\\.)?posti\\.fi/\" to=\"https://posti.fi/\"/><securecookie host=\"^\\.?(?:www)?\\.?posti\\.fi\" name=\".*\"/><securecookie host=\"^[^@/:\\.]\\.?posti\\.fi\" name=\".*\"/><exclusion pattern=\"^http://(?:www\\.)?posti\\.fi/itemtracking/\"/></ruleset>", "<ruleset name=\"Postimage.org\" platform=\"mixedcontent\" f=\"postimage.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postovoy.org\" f=\"postovoy.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.postovoy\\.org/\" to=\"https://postovoy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powys.gov.uk (partial)\" f=\"powys.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?powys\\.gov\\.uk/\" to=\"https://secure.powys.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pr0gramm\" f=\"pr0gramm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Praktikpladsen\" f=\"praktikpladsen.dk.xml\"><rule from=\"^http://(?:www\\.)?praktikpladsen\\.dk/\" to=\"https://www.praktikpladsen.dk/\"/></ruleset>", "<ruleset name=\"pressbooks.ch\" f=\"pressbooks.ch.xml\"><rule from=\"^http://pressbooks\\.ch/\" to=\"https://www.pressbooks.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prntscr.com\" f=\"prntscr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pro.hostingas.lt\" f=\"pro.hostingas.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proXPN\" f=\"proXPN.xml\"><securecookie host=\"^.*\\.proxpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Procensus\" f=\"procensus.com.xml\"><securecookie host=\"^.*\\.?procensus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"profesia.sk\" f=\"profesia.sk.xml\"><rule from=\"^http://profesia\\.sk/\" to=\"https://www.profesia.sk/\"/><rule from=\"^http://www\\.profesia\\.sk/\" to=\"https://www.profesia.sk/\"/></ruleset>", "<ruleset name=\"Project Gus.com\" f=\"projectgus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provider Central.org.uk\" f=\"providercentral.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://providercentral\\.org\\.uk/\" to=\"https://www.providercentral.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proxyshard.uk\" f=\"proxyshard.uk.xml\"><securecookie host=\"^.*\\.proxyshard\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSC.gov (partial)\" f=\"psc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publish Partner.com.au (partial)\" f=\"publishpartner.com.au.xml\"><securecookie host=\"^\\.\" name=\"^frontend$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puget Systems.com\" f=\"pugetsystems.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pytamy.pl\" platform=\"mixedcontent\" f=\"pytamy.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QA Cafe.com (partial)\" f=\"qacafe.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quickline\" f=\"quickline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rage4\" f=\"rage4.com.xml\"><securecookie host=\"^(www\\.)?rage4\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raglan 23.co.nz\" platform=\"mixedcontent\" f=\"raglan23.co.nz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raptr CDN.com\" f=\"raptrcdn.com.xml\"><rule from=\"^http://b\\d\\.raptrcdn\\.com/\" to=\"https://d1ut3nrduxpo26.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rarbg\" f=\"rarbg.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rascal999.co.uk\" f=\"rascal999.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rational CDN.com\" f=\"rationalcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RB Digital.com\" f=\"rbdigital.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBKC.gov.uk (partial)\" f=\"rbkc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(consultation\\.|eforms\\.)?rbkc\\.gov\\.uk/\" to=\"https://www.$1rbkc.gov.uk/\"/><rule from=\"^http://www\\.planningconsult\\.rbkc\\.gov\\.uk/\" to=\"https://planningconsult.rbkc.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBWM.gov.uk (partial)\" f=\"rbwm.gov.uk.xml\"><securecookie host=\"^(?!directory\\.|www\\.)\\w\" name=\".\"/><securecookie host=\"^\\.www3\\.\" name=\".\"/><rule from=\"^http://directory\\.rbwm\\.gov\\.uk/\" to=\"https://search3.openobject.com/\"/><exclusion pattern=\"^http://directory\\.rbwm\\.gov\\.uk/+(?!kb5/\\w+/directory/(?:image|stylesheet)s/)\"/><rule from=\"^http://www\\.rbwm\\.gov\\.uk/.*\" to=\"https://www3.rbwm.gov.uk/\"/><exclusion pattern=\"^http://www\\.rbwm\\.gov\\.uk/+(?!$|\\?|index\\.htm)\"/><rule from=\"^http://consult\\.rbwm\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://rbwm.objective.co.uk/portal\"/><rule from=\"^http://consult\\.rbwm\\.gov\\.uk/\" to=\"https://rbwm.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rc4nomore.com\" f=\"rc4nomore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reagan Library.gov\" f=\"reaganlibrary.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realfavicongenerator.net\" f=\"realfavicongenerator.net.xml\"><rule from=\"^http://www\\.realfavicongenerator\\.net/\" to=\"https://realfavicongenerator.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recorded Books.com\" f=\"recordedbooks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reflets.info\" f=\"reflets.info.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rescue.org (false MCB)\" platform=\"mixedcontent\" f=\"rescue.org-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rescue.org (partial)\" f=\"rescue.org.xml\"><exclusion pattern=\"^http://(?:diy\\.|m\\.|www\\.)?rescue\\.org/+(?!(?:donate|user)(?:$|[?/])|sites/)\"/><exclusion pattern=\"^http://gifts\\.rescue\\.org/+(?!files/|sites/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!(?:diy|gifts|m|www)\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Online.org.uk\" f=\"researchonline.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respekt.cz\" default_off=\"Broken login form, may work seamlessly with platform='mixedcontent'\" f=\"respekt.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rethink.org\" f=\"rethink.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rethink\\.org/\" to=\"https://www.rethink.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reuffel.de\" f=\"reuffel.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rezdy\" f=\"rezdy.com.xml\"><securecookie host=\"^.*\\.rezdy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RI.gov\" f=\"ri.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rivals.com\" f=\"rivals.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rivals\\.com/\" to=\"https://www.rivals.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roadworks.org\" f=\"roadworks.org.xml\"><securecookie host=\"^portal\\.roadworks\\.org$\" name=\".+\"/><rule from=\"^http://www\\.roadworks\\.org/\" to=\"https://roadworks.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RobustIRC.net\" f=\"robustirc.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roof Climb Adelaide Oval\" f=\"roofclimb.com.au.xml\"><securecookie host=\"roofclimb\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"routingpacketsisnotacrime.uk\" f=\"routingpacketsisnotacrime.uk.xml\"><securecookie host=\"^routingpacketsisnotacrime\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoyalDNS.net\" f=\"royaldns.net.xml\"><securecookie host=\"^(www\\.)?royaldns\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RUAG\" f=\"ruag.xml\"><rule from=\"^http://(?:www\\.)?ruag\\.com/\" to=\"https://www.ruag.com/\"/></ruleset>", "<ruleset name=\"Rutland.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"rutland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s81c.com\" f=\"s81c.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salford.gov.uk (partial)\" f=\"salford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sankaku Complex.com\" f=\"sankakucomplex.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SatoshiLabs.com (false MCB)\" platform=\"mixedcontent\" f=\"satoshilabs.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SatoshiLabs.com (partial)\" f=\"satoshilabs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCambs.gov.uk (partial)\" f=\"scambs.gov.uk.xml\"><securecookie host=\"^(?!plan\\.)\\w\" name=\".\"/><rule from=\"^http://plan\\.scambs\\.gov\\.uk/.*\" to=\"https://www.scambs.gov.uk/services/planning-applications\"/><exclusion pattern=\"^http://plan\\.scambs\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scarborough.gov.uk (partial)\" f=\"scarborough.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schema.org\" f=\"schema.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schneier Facts.com\" f=\"schneierfacts.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schokokeks.org\" f=\"schokokeks.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schotty.com\" f=\"schotty.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schraubenluchs.de\" f=\"schraubenluchs.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schulthess.com\" f=\"schulthess.com.xml\"><rule from=\"^http://schulthess\\.com/\" to=\"https://www.schulthess.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science Alert.com\" platform=\"mixedcontent\" f=\"sciencealert.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sciencealert\\.com/\" to=\"https://www.sciencealert.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotland.gov.uk (partial)\" f=\"scotland.gov.uk.xml\"><exclusion pattern=\"^http://www\\.marine\\.scotland\\.gov\\.uk/+(?!$|\\?|[Ff][Ee][Aa][Ss][Tt]/(?:[Ii]mag|[Ss]tyl)es/)\"/><securecookie host=\"^(?!www\\.marine\\.)\\w\" name=\".\"/><rule from=\"^http://news\\.scotland\\.gov\\.uk/\" to=\"https://scottishgovernment.presscentre.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchlock.com\" f=\"searchlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-USB.co.uk\" f=\"secure-usb.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sediarreda\" f=\"sediarreda.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"selfharm.co.UK\" f=\"selfharm.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SelfHTML\" f=\"selfhtml.org.xml\"><securecookie host=\"^(wiki\\.|forum\\.|blog\\.)?selfhtml\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"semantic-mediawiki.org\" f=\"semantic-mediawiki.org.xml\"><rule from=\"^http://(?:www\\.)?semantic-mediawiki\\.org/\" to=\"https://semantic-mediawiki.org/\"/></ruleset>", "<ruleset name=\"SEOmon.com\" f=\"seomon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerBase\" f=\"serverbase.xml\"><securecookie host=\".*\\.serverbase\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SESplan.gov.uk\" default_off=\"mismatched\" f=\"sesplan.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shareNice\" default_off=\"connection refused\" f=\"shareNice.xml\"><rule from=\"^http://(?:www\\.)?sharenice\\.org/\" to=\"https://sharenice.org/\"/></ruleset>", "<ruleset name=\"sharetobuy.com\" f=\"sharetobuy.com.xml\"><securecookie host=\"^(?:.*\\.)?sharetobuy\\.com$\" name=\".+\"/><rule from=\"^http://sharetobuy\\.com/\" to=\"https://www.sharetobuy.com/\"/><rule from=\"^http://([^/:@]+)?\\.sharetobuy\\.com/\" to=\"https://$1.sharetobuy.com/\"/></ruleset>", "<ruleset name=\"ShinyStat.com\" f=\"shinystat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoutlet.com\" f=\"shoutlet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shrew Soft\" f=\"shrew.net.xml\"><securecookie host=\"^.*\\.shrew\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siamo Geek.com\" f=\"siamogeek.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"silverstripe.org (partial)\" f=\"silverstripe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simpel.nl\" f=\"simpel.nl.xml\"><securecookie host=\"^(?:.*\\.)?simpel.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?mijnsimpel.nl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simplify Digital.co.uk\" platform=\"mixedcontent\" f=\"simplifydigital.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteLabs.co.uk\" f=\"sitelabs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SKA Telescope.org (partial)\" f=\"skatelescope.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falls Creek Lift (partial)\" f=\"skifalls.com.au.xml\"><securecookie host=\"estore\\.skifalls\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skills Development Scotland.co.uk\" f=\"skillsdevelopmentscotland.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://skillsdevelopmentscotland\\.co\\.uk/\" to=\"https://www.skillsdevelopmentscotland.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ŠKOLA ONLINE a.s.\" f=\"skolaonline.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skycure.com (partial)\" f=\"skycure.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlimerJS\" f=\"slimerjs.org.xml\"><securecookie host=\"^.*\\.?slimerjs\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?slimerjs\\.org/\" to=\"https://slimerjs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smart-DSL GmbH\" f=\"smart-DSL.xml\"><rule from=\"^http://(www\\.)?smart\\-dsl\\.net/\" to=\"https://www.smartone.de/\"/><rule from=\"^http://(www\\.)?smartone\\.de/\" to=\"https://www.smartone.de/\"/></ruleset>", "<ruleset name=\"smava\" f=\"smava.xml\"><rule from=\"^http://www\\.smava\\.de/\" to=\"https://www.smava.de/\"/></ruleset>", "<ruleset name=\"Smokefree.gov (partial)\" f=\"smokefree.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snap Surveys.com\" f=\"snapsurveys.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"so36.NET\" f=\"so36.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sogou.com (partial)\" f=\"sogou.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://logo\\.www\\.sogou\\.com/\" to=\"https://www.sogou.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"solariz.de\" f=\"solarizde.xml\"><securecookie host=\"^solariz\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?solariz\\.de/\" to=\"https://solariz.de/\"/></ruleset>", "<ruleset name=\"SomaFM\" f=\"somafm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Songkick\" f=\"songkick.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://songkick\\.com/\" to=\"https://www.songkick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soom\" f=\"soom.cz.xml\"><rule from=\"^http://(?:www\\.)?soom\\.cz/\" to=\"https://www.soom.cz/\"/></ruleset>", "<ruleset name=\"Sourcefoundry.org\" f=\"sourcefoundry.org.xml\"><securecookie host=\"^(www\\.)?sourcefoundry\\.org$\" name=\".+\"/><rule from=\"^http(s)?://www.sourcefoundry.org/\" to=\"https://sourcefoundry.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southend-on-the-move.org.uk\" f=\"southend-on-the-move.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpamCop\" f=\"spamcop.xml\"><rule from=\"^http://(www\\.)?spamcop\\.net/\" to=\"https://www.spamcop.net/\"/></ruleset>", "<ruleset name=\"sparkasse.at (partial)\" f=\"sparkasse.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spdb.com.cn\" f=\"spdb.com.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"speech.leseweb.dk\" f=\"speech.leseweb.dk.xml\"><rule from=\"^http://speech\\.leseweb\\.dk/\" to=\"https://speech.leseweb.dk/\"/></ruleset>", "<ruleset name=\"Spektrix.com\" f=\"spektrix.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spendvision.com\" f=\"spendvision.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://spendvision\\.com/\" to=\"https://www.spendvision.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spkrb.de\" f=\"spkrb.de.xml\"><securecookie host=\"^(?:www\\.|info\\.|banking\\.)?spkrb\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.|info\\.)?spkrb\\.de/\" to=\"https://info.spkrb.de/\"/><rule from=\"^http://banking\\.spkrb\\.de/\" to=\"https://banking.spkrb.de/\"/></ruleset>", "<ruleset name=\"SPŠCHG Ostrava\" f=\"spsch.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRG SSR (partial)\" f=\"srg-ssr.xml\"><exclusion pattern=\"^http://www.swissinfo.ch/fre\"/><exclusion pattern=\"^http://www.swissinfo.ch/chi\"/><exclusion pattern=\"^http://www.swissinfo.ch/rus\"/><exclusion pattern=\"^http://www.swissinfo.ch/jpn\"/><exclusion pattern=\"^http://www.swissinfo.ch/ara\"/><exclusion pattern=\"^http://www.swissinfo.ch/eng\"/><exclusion pattern=\"^http://www.swissinfo.ch/spa\"/><exclusion pattern=\"^http://www.swissinfo.ch/ger\"/><exclusion pattern=\"^http://www.swissinfo.ch/por\"/><exclusion pattern=\"^http://www.swissinfo.ch/ita\"/><rule from=\"^https://ws\\.srf\\.ch/\" to=\"http://ws.srf.ch/\" downgrade=\"1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Tools.net\" f=\"ssl-tools.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stämpfli Verlag\" f=\"staempfliverlag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startovač\" f=\"startovac.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statistics.gov.uk (partial)\" f=\"statistics.gov.uk.xml\"><exclusion pattern=\"^http://www\\.statistics\\.gov\\.uk/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.statistics\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/statistics/announcements\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ste williams.com\" f=\"stewilliams.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StGeorge.com.au (partial)\" f=\"stgeorge.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stockport.gov.uk (partial)\" f=\"stockport.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stonewall.org.uk (partial)\" f=\"stonewall.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stonewall Cymru.org.uk\" f=\"stonewallcymru.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stonewall Scotland.org.uk\" f=\"stonewallscotland.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streak.com (partial)\" f=\"streak.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://streak\\.com/\" to=\"https://www.streak.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streetlife.com\" f=\"streetlife.com.xml\"><securecookie host=\"^\\.\" name=\"^_qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"strongSwan\" f=\"strongSwan.xml\"><securecookie host=\"^(?:.*\\.)?strongswan\\.org$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?strongswan\\.org/\" to=\"https://$1strongswan.org/\"/></ruleset>", "<ruleset name=\"Study in Sweden.se\" f=\"studyinsweden.se.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Submittable.com (partial)\" f=\"submittable.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subtraxion.com\" f=\"subtraxion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sundance.TV (partial)\" platform=\"mixedcontent\" f=\"sundance.tv.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sundance\\.tv/\" to=\"https://www.sundance.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suntech.cz\" f=\"suntech.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suomi.fi\" f=\"suomi.fi.xml\"><securecookie host=\"^[^@:/\\.]+\\.suomi\\.fi\" name=\".+\"/><rule from=\"^http://((?:www|asiointitili|tunnistus)\\.)?suomi\\.fi/\" to=\"https://$1suomi.fi/\"/></ruleset>", "<ruleset name=\"Surrey Heath.gov.uk (partial)\" f=\"surreyheath.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"suspiciousumbrella.uk\" f=\"suspiciousumbrella.uk.xml\"><securecookie host=\"^.*\\.suspiciousumbrella\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sutton.gov.uk\" f=\"sutton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVA Zürich\" f=\"svazuerich.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swale.gov.uk (partial)\" f=\"swale.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swarm app.com\" f=\"swarmapp.com.xml\"><securecookie host=\"^\\.\" name=\"^bbhive$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"swiss-prime-site.ch\" f=\"swiss-prime-site.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schweizer Regierung\" f=\"swissgov.xml\"><securecookie host=\"^www\\.somed\\.bfs\\.admin\\.ch$\" name=\".+\"/><rule from=\"^http://ag\\.ch/\" to=\"https://www.ag.ch/\"/><rule from=\"^http://be\\.ch/\" to=\"https://www.be.ch/\"/><rule from=\"^http://baselland\\.ch/\" to=\"https://www.baselland.ch/\"/><rule from=\"^http://gl\\.ch/\" to=\"https://www.gl.ch/\"/><rule from=\"^http://jura\\.ch/\" to=\"https://www.jura.ch/\"/><rule from=\"^http://sh\\.ch/\" to=\"https://www.sh.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sydney.edu.au (partial)\" f=\"sydney.edu.au.xml\"><securecookie host=\"^(?:\\w|\\.whatson\\.)\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SynapsePay (partial)\" f=\"synapsepay.com.xml\"><securecookie host=\"^(discuss|docs)\\.synapsepay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysdig.com\" f=\"sysdig.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.sysdig\\.com/\" to=\"https://sysdig.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sysprovide (partial)\" platform=\"mixedcontent\" f=\"sysprovide.xml\"><securecookie host=\".*\\.sysproserver\\.de$\" name=\".*\"/><securecookie host=\"^www\\.sysprovide\\.de$\" name=\".*\"/><rule from=\"^http://(srv|webmail)(\\d\\d)\\.sysproserver\\.de/\" to=\"https://$1$2.sysproserver.de/\"/><rule from=\"^http://(www\\.)?sysprovide\\.de/\" to=\"https://$1sysprovide.de/\"/></ruleset>", "<ruleset name=\"T-Analytics.com\" f=\"t-analytics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-mobilebankowe.pl (partial)\" f=\"t-mobilebankowe.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://konto\\.t-mobilebankowe\\.pl/[^?]*\" to=\"https://www.t-mobilebankowe.pl/porownywarka-kont\"/><exclusion pattern=\"^http://konto\\.t-mobilebankowe\\.pl/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TA CDN.com\" f=\"tacdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tagesschau.de (partial)\" f=\"tagesschau.de.xml\"><securecookie host=\"^www\\.tagesschau\\.de$\" name=\".+\"/><exclusion pattern=\"^http://wetter\\.tagesschau\\.de/unwetter\"/><rule from=\"^http://tagesschau\\.de/\" to=\"https://www.tagesschau.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Take On The Game (Partial)\" default_off=\"Bad Cert\" f=\"takeonthegame.com.xml\"><rule from=\"^http://(?:www\\.)?takeonthegame\\.com/\" to=\"https://www.takeonthegame.com/\"/></ruleset>", "<ruleset name=\"talentbrew.com\" f=\"talentbrew.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tameside.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"tameside.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tameside.gov.uk (partial)\" f=\"tameside.gov.uk.xml\"><exclusion pattern=\"http://whatson\\.tameside\\.gov\\.uk/+(?!Account/|[Cc]ommunity[Gg]roup/|Content/|EmailSubscription/|Event/(?:Recurrence|Thumbnail)/|eventscalendar/)\"/><securecookie host=\"^(?!whatson\\.)\\w\" name=\".\"/><rule from=\"^http://adultportal\\.tameside\\.gov\\.uk:14500/\" to=\"https://adultportal.tameside.gov.uk:14500/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAW.org.uk (partial)\" f=\"taw.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tbspace.de\" f=\"tbspace.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCS Schweiz (partial)\" f=\"tcs.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team Fortress (partial)\" f=\"teamfortress.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Anarchy.net\" f=\"techanarchy.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechnologyReview.in\" f=\"technologyreview.in.xml\"><rule from=\"^http://(?:www\\.)?technologyreview\\.in/+\" to=\"https://www.technologyreview.com/\"/></ruleset>", "<ruleset name=\"telebasel.ch\" platform=\"mixedcontent\" f=\"telebasel.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeleTrusT.de\" f=\"teletrust.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://teletrust\\.de/\" to=\"https://www.teletrust.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telford.gov.uk (partial)\" f=\"telford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.telford\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://telford.objective.co.uk/portal\"/><rule from=\"^http://consult\\.telford\\.gov\\.uk/\" to=\"https://telford.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tersee\" f=\"tersee.xml\"><rule from=\"^http://([^/:@]+\\.)?tersee\\.com/\" to=\"https://$1tersee.com/\"/><securecookie host=\"^(?:.+\\.)?tersee\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"test\" f=\"test.xml\"><rule from=\"^http://www\\.test\\.de/\" to=\"https://www.test.de/\"/></ruleset>", "<ruleset name=\"Teta drogerie\" f=\"tetadrogerie.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The42.ie\" f=\"the42.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://the42\\.ie/\" to=\"https://www.the42.ie/\"/><rule from=\"^http://static\\.the42\\.ie/\" to=\"https://b0.thejournal.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Communication Trust.org.uk\" f=\"thecommunicationtrust.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Customize Windows.com\" f=\"thecustomizewindows.com.xml\"><securecookie host=\"^a248\\.e\\.akamai\\.net$\" name=\".+\"/><securecookie host=\"^cdn\\.goroost\\.com$\" name=\".+\"/><securecookie host=\"^www\\.googletagservices\\.com$\" name=\".+\"/><securecookie host=\"^tpc\\.googlesyndication\\.com$\" name=\".+\"/><securecookie host=\"^googleads\\.g\\.doubleclick\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thecustomizewindows\\.net/\" to=\"https://thecustomizewindows.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Late Rooms Group.com\" f=\"thelateroomsgroup.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheLayoff.com\" f=\"thelayoff.com.xml\"><securecookie host=\"www\\.thelayoff\\.com$\" name=\".+\"/><rule from=\"^http://thelayoff\\.com/\" to=\"https://www.thelayoff.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thisproxykillscensors.uk\" f=\"thisproxykillscensors.uk.xml\"><securecookie host=\"^.*\\.thisproxykillscensors\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomas Hunter.name\" f=\"thomashunter.name.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMatrix.com\" f=\"threatmatrix.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ticket4u\" f=\"ticket4u.xml\"><securecookie host=\"^(www\\.)?ticket4u\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tifbs.net\" f=\"tifbs.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tldr.io (partial)\" default_off=\"missing certificate chain\" f=\"tldrio.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tmall.com (partial)\" f=\"tmall.com.xml\"><rule from=\"^http://tmall\\.com/\" to=\"https://www.tmall.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMS-Media.co.uk (partial)\" f=\"tms-media.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMS.pl\" f=\"tms.pl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tn123.org\" f=\"tn123.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toppreise.ch (partial)\" f=\"toppreise.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrents-Time.com\" f=\"torrents-time.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tough Choices.co.uk\" f=\"toughchoices.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"towelroot\" f=\"towelroot.xml\"><rule from=\"^http://(?:www\\.)?towelroot\\.com/\" to=\"https://towelroot.com/\"/></ruleset>", "<ruleset name=\"trakt\" f=\"trakt.xml\"><securecookie host=\"^(\\.|www\\.)?trakt\\.tv$\" name=\".+\"/><securecookie host=\"^\\.?support\\.trakt\\.tv$\" name=\".*\"/><securecookie host=\"^\\.trakt\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trane.com\" f=\"trane.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transip\" f=\"transip.de.xml\"><securecookie host=\"^(www\\.)?transip\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trilight Zone.org\" f=\"trilightzone.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.ca\" f=\"tripadvisor.ca.xml\"><securecookie host=\"^\\.\" name=\"^(?:ServerPool|TAUnique)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.co.nz\" f=\"tripadvisor.co.nz.xml\"><securecookie host=\"^\\.\" name=\"^(?:ServerPool|TAUnique)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.co.uk\" f=\"tripadvisor.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:ServerPool|TAUnique)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor Support.com\" f=\"tripadvisorsupport.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"True Corporation\" f=\"truecorp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trybooth.com\" f=\"trybooth.com.xml\"><securecookie host=\"^trybooth\\.com$\" name=\".+\"/><rule from=\"^http://www\\.trybooth\\.com/\" to=\"https://trybooth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T.S.BOHEMIA a.s.\" f=\"tsbohemia.cz.xml\"><securecookie host=\"^tsbohemia\\.cz$\" name=\".+\"/><securecookie host=\"^\\.tsbohemia\\.cz$\" name=\".+\"/><securecookie host=\"^www\\.tsbohemia\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSP.gov\" f=\"tsp.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunbridge Wells.gov.uk (partial)\" f=\"tunbridgewells.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.tunbridgewells\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://tunbridgewells.objective.co.uk/portal\"/><rule from=\"^http://consult\\.tunbridgewells\\.gov\\.uk/\" to=\"https://tunbridgewells.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TunnelsUp.com\" f=\"tunnelsup.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turku.fi\" platform=\"mixedcontent\" f=\"turku.fi.xml\"><rule from=\"^http://(?:www\\.)?turku\\.fi/\" to=\"https://www.turku.fi/\"/><rule from=\"^http://opaskartta\\.turku\\.fi/\" to=\"https://opaskartta.turku.fi/\"/><exclusion pattern=\"^http://(?:www\\.)?turku\\.fi/(?!bussit$|buses$|bussar$)[\\w-]+$\"/><rule from=\"^http://www\\.bussit\\.turku\\.fi/$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/bussit$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=1\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/buses$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=2\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/bussar$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=3\"/><securecookie host=\"^\\w+\\.turku\\.fi\" name=\".+\"/></ruleset>", "<ruleset name=\"Twistlock.com\" f=\"twistlock.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"µTorrent (partial)\" f=\"uTorrent.xml\"><rule from=\"^http://(forum|remote)\\.utorrent\\.com/\" to=\"https://$1.utorrent.com/\"/><rule from=\"^http://(?:ll\\.)?(download3?|static)\\.utorrent\\.com/\" to=\"https://$1.utorrent.com/\"/></ruleset>", "<ruleset name=\"uVPN\" default_off=\"connection refused\" f=\"uVPN.xml\"><rule from=\"^http://(?:www\\.)?uvpn\\.de/+\" to=\"https://fremaks.de/\"/></ruleset>", "<ruleset name=\"uibk.ac.at\" f=\"uibk.ac.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate-guitar.com\" f=\"ultimate-guitar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ultimedecathlon.com\" f=\"ultimedecathlon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"umblr.com\" default_off=\"Mismatched\" f=\"umblr.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unbubble.eu\" f=\"unbubble.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Ulm.de (partial)\" f=\"uni-ulm.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://uni-ulm\\.de/\" to=\"https://www.uni-ulm.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC Cablecom\" f=\"upc-cablecom.xml\"><securecookie host=\"^\\.horizon\\.tv$\" name=\".+\"/><rule from=\"^http://upc-cablecom\\.ch/\" to=\"https://www.upc-cablecom.ch/\"/><rule from=\"^http://upc-cablecom\\.biz/\" to=\"https://www.upc-cablecom.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uptime Robot\" f=\"uptimerobot.xml\"><rule from=\"^http://uptimerobot\\.com/\" to=\"https://uptimerobot.com/\"/><securecookie host=\"^(?:.*\\.)?uptimerobot\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"uptobox.com\" f=\"uptobox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"urlaubspiraten\" f=\"urlaubspiraten.xml\"><rule from=\"^http://(?:www\\.)?urlaubspiraten\\.de/\" to=\"https://www.urlaubspiraten.de/\"/></ruleset>", "<ruleset name=\"usainteanne\" f=\"usainteanne.xml\"><rule from=\"^http://(?:www\\.)?usainteanne\\.ca/\" to=\"https://www.usainteanne.ca/\"/><rule from=\"^http://webmail\\.usainteanne\\.ca/\" to=\"https://webmail.usainteanne.ca/\"/><rule from=\"^http://smtp\\.usainteanne\\.ca/\" to=\"https://smtp.usainteanne.ca/\"/><rule from=\"^http://moodle\\.usainteanne\\.ca/\" to=\"https://moodle.usainteanne.ca/\"/><rule from=\"^http://alu\\.usainteanne\\.ca/\" to=\"https://alu.usainteanne.ca/\"/><rule from=\"^http://vpn\\.usainteanne\\.ca/\" to=\"https://vpn.usainteanne.ca/\"/></ruleset>", "<ruleset name=\"Userstyles.org\" f=\"userstyles.org.xml\"><securecookie host=\"^\\.userstyles\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usrportage.de\" default_off=\"expired, mismatch\" f=\"usrportage.de.xml\"><securecookie host=\"^usrportage\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?usrportage\\.de/\" to=\"https://usrportage.de/\"/></ruleset>", "<ruleset name=\"USyd.edu.au (partial)\" f=\"usyd.edu.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?usyd\\.edu\\.au/+\" to=\"https://sydney.edu.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utbm.fr\" f=\"utbm.fr.xml\"><rule from=\"^http://(www\\.)?utbm\\.fr/\" to=\"https://www.utbm.fr/\"/><rule from=\"^http://ae\\.utbm\\.fr/\" to=\"https://ae.utbm.fr/\"/></ruleset>", "<ruleset name=\"V-Dem.net\" f=\"v-dem.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"v.gd\" f=\"v.gd.xml\"><securecookie host=\"v\\.gd$\" name=\".*\"/><securecookie host=\"\\.v\\.gd$\" name=\"^__cfduid$\"/><rule from=\"^http://v\\.gd/\" to=\"https://v.gd/\"/></ruleset>", "<ruleset name=\"Vadino.com\" f=\"vadino.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vanguard.com\" f=\"vanguard.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Váš-hosting.cz\" f=\"vas-hosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vedomosti.ru\" f=\"vedomosti.ru.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"veggiekarte.de\" f=\"veggiekarte.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veloplus\" f=\"veloplus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"verkaufen.ch\" f=\"verkaufen.ch.xml\"><rule from=\"^http://verkaufen\\.ch/\" to=\"https://www.verkaufen.ch/\"/><rule from=\"^http://reparieren\\.ch/\" to=\"https://www.reparieren.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vhf (expired)\" default_off=\"expired\" f=\"vhf-expired.xml\"><rule from=\"^http://(?:www1?\\.)?vhf\\.de/\" to=\"https://www.vhf.de/\"/></ruleset>", "<ruleset name=\"vhf.de (partial)\" f=\"vhf.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victoria forms.com\" f=\"victoriaforms.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toypics\" platform=\"mixedcontent\" f=\"videos.toypics.net.xml\"><rule from=\"^http://videos\\.toypics\\.net/\" to=\"https://videos.toypics.net/\"/></ruleset>", "<ruleset name=\"Vitrinepix\" f=\"vitrinepix.xml\"><rule from=\"^http://(www\\.)?vitrinepix\\.com\\.br/\" to=\"https://www.vitrinepix.com.br/\"/></ruleset>", "<ruleset name=\"VOA.gov.uk (partial)\" f=\"voa.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?voa\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/valuation-office-agency\"/><exclusion pattern=\"^http://(?:www\\.)?voa\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vogogo\" f=\"vogogo.com.xml\"><securecookie host=\"^.*\\.?vogogo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Void Linux.eu (partial)\" f=\"voidlinux.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN.AC\" f=\"vpn.ac.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vpsFree.cz\" f=\"vpsFree.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vrijstelling Oldtimer\" platform=\"mixedcontent\" f=\"vrijstellingoldtimer.nl.xml\"><rule from=\"^http://vrijstellingoldtimer\\.nl/\" to=\"https://vrijstellingoldtimer.nl/\"/><rule from=\"^http://www\\.vrijstellingoldtimer\\.nl/\" to=\"https://www.vrijstellingoldtimer.nl/\"/></ruleset>", "<ruleset name=\"walkit.com\" platform=\"mixedcontent\" f=\"walkit.xml\"><rule from=\"^http://(?:www\\.)?walkit\\.com/\" to=\"https://walkit.com/\"/></ruleset>", "<ruleset name=\"Waterfall.com (partial)\" f=\"waterfall.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watford.gov.uk (partial)\" f=\"watford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watson.ch\" f=\"watson.ch.xml\"><rule from=\"^http://(?:www\\.)?watson\\.ch/\" to=\"https://www.watson.ch/\"/></ruleset>", "<ruleset name=\"Will Bond\" f=\"wbond.xml\"><rule from=\"^http://sublime\\.wbond\\.net/\" to=\"https://sublime.wbond.net/\"/></ruleset>", "<ruleset name=\"Wealden.gov.uk (partial)\" f=\"wealden.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?wealden\\.gov\\.uk/+(?!(?:Wealden)?Login\\.aspx|favicon\\.ico|web/StyleSheets/|web/multimediafiles/|Upload/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://wealden\\.gov\\.uk/\" to=\"https://www.wealden.gov.uk/\"/><rule from=\"^http://consult\\.wealden\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://wealden.objective.co.uk/portal\"/><rule from=\"^http://consult\\.wealden\\.gov\\.uk/\" to=\"https://wealden.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmasterpro.de (partial)\" f=\"webmasterpro.de.xml\"><securecookie host=\"^\\.fc\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wellcome.ac.uk (partial)\" f=\"wellcome.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca|_gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://library\\.wellcome\\.ac\\.uk/+\" to=\"https://wellcomelibrary.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wellcome Library.org (partial)\" f=\"wellcomelibrary.org.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.wellcomelibrary\\.org/\" to=\"https://wellcomelibrary.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Lothian.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"westlothian.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Lothian.gov.uk (partial)\" f=\"westlothian.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whisky.de\" platform=\"mixedcontent\" f=\"whisky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitehatters.Academy\" f=\"whitehatters.academy.xml\"><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"why! open computing\" f=\"whyopencomputing.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikiwand.com\" f=\"wikiwand.com.xml\"><securecookie host=\"^(?:www\\.)?wikiwand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilkinsons-Auctioneers.co.uk\" f=\"wilkinsons-auctioneers.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiroos.com\" f=\"wiroos.com.xml\"><securecookie host=\"^\\.\" name=\"^language$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wokingham.gov.uk (partial)\" f=\"wokingham.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?wokingham\\.gov\\.uk/+(?!(?:contacts|contact-us)/*(?:$|\\?)|[Ee]asy[Ss]ite[Ww]eb/)\"/><exclusion pattern=\"^http://directory\\.wokingham\\.gov\\.uk/+(?!kb5/wokingham/directory/(?:assets/|sign_in\\.page))\"/><securecookie host=\"^(?!directory\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"word.camera\" f=\"word.camera.xml\"><rule from=\"^http://www\\.word\\.camera/\" to=\"https://word.camera/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World-Airport-Codes.com\" f=\"world-airport-codes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wpa_supplicant\" default_off=\"broken\" f=\"wpa_supplicant.xml\"><rule from=\"^http://hostap\\.epitest\\.fi/\" to=\"https://hostap.epitest.fi/\"/></ruleset>", "<ruleset name=\"WPimg.pl (partial)\" f=\"wpimg.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://b\\.wpimg\\.pl/\" to=\"https://a.wpimg.pl/\"/><rule from=\"^http://c\\.wpimg\\.pl/\" to=\"https://i.wp.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WRZRU.com\" default_off=\"mismatched\" f=\"wrzru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWF Schweiz\" f=\"wwf.ch.xml\"><rule from=\"^http://www\\.pandaction\\.wwf\\.ch/\" to=\"https://pandaction.wwf.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bankia.es\" f=\"www.bankia.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"www.browserscope.org\" f=\"www.browserscope.org.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^www\\.browserscope\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"www.decathlon.es\" f=\"www.decathlon.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elcorteingles.es\" f=\"www.elcorteingles.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jobandtalent.com\" f=\"www.jobandtalent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediamarkt.es\" f=\"www.mediamarkt.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"movistar.es\" f=\"www.movistar.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pepephone.com\" f=\"www.pepephone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"www.tibia.com\" f=\"www.tibia.com.xml\"><rule from=\"^http://www\\.tibia\\.com/\" to=\"https://secure.tibia.com/\"/><rule from=\"^http://www\\.test\\.tibia\\.com/\" to=\"https://secure.test.tibia.com/\"/></ruleset>", "<ruleset name=\"zaragoza.es\" f=\"www.zaragoza.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wxWidgets.org (partial)\" f=\"wxwidgets.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x.ai\" f=\"x.ai.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xServers (partial)\" f=\"xServers.xml\"><rule from=\"^http://xservers\\.ro/\" to=\"https://xservers.ro/\"/></ruleset>", "<ruleset name=\"XanMod.org\" f=\"xanmod.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (false MCB)\" platform=\"mixedcontent\" f=\"xfinity.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (partial)\" f=\"xfinity.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^\\.referafriend\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://serviceo\\.xfinity\\.com/\" to=\"https://xfinity.112.2o7.net/\"/><rule from=\"^http://store\\.xfinity\\.com/\" to=\"https://securestore.xfinity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xkcd (mixed)\" platform=\"mixedcontent\" f=\"xkcd-mixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xkcd\" f=\"xkcd.xml\"><rule from=\"^http://(www\\.|m\\.)?xkcd\\.org/\" to=\"https://$1xkcd.com/\"/><rule from=\"^http://www\\.store\\.xkcd\\.com/\" to=\"https://store.xkcd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xpda.com\" f=\"xpda.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yWorks.com\" f=\"yWorks.com.xml\"><rule from=\"^https?://(?:www\\.)?yworks\\.(?:com|de)/\" to=\"https://www.yworks.com/\"/></ruleset>", "<ruleset name=\"YADG.cc\" f=\"yadg.cc.xml\"><rule from=\"^http://(?:www\\.)?yadg\\.cc/\" to=\"https://yadg.cc/\"/></ruleset>", "<ruleset name=\"Yell.com (partial)\" f=\"yell.com.xml\"><exclusion pattern=\"^http://marketing\\.yell\\.com/+(?!$|help(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v\\w)\"/><securecookie host=\"^(?!marketing\\.)\\w\" name=\".\"/><rule from=\"^http://marketing\\.yell\\.com/$\" to=\"https://business.yell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yfrog.com\" f=\"yfrog.xml\"><securecookie host=\"^\\.twitter\\.yfrog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ylilauta.org\" f=\"ylilauta.xml\"><securecookie host=\"^\\.ylilauta\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Young Stonewall.org.uk\" f=\"youngstonewall.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Choice Your Home.org.uk\" f=\"yourchoiceyourhome.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yourchoiceyourhome\\.org\\.uk/\" to=\"https://www.yourchoiceyourhome.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourls.org\" f=\"yourls.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youthscape.co.uk\" f=\"youthscape.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoyogames.com\" f=\"yoyogames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YPlan\" f=\"yplanapp.com.xml\"><securecookie host=\"^.*\\.?yplanapp\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?yplanapp\\.com/\" to=\"https://yplanapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Z.cash\" f=\"z.cash.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDF (partial)\" platform=\"mixedcontent\" f=\"zdf.xml\"><rule from=\"^http://zdfsport\\.de/\" to=\"https://www.zdfsport.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zenodo.org\" f=\"zenodo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zentralbahn.ch\" f=\"zentralbahn.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZmtCDN.com\" f=\"zmtcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zuBu.re\" default_off=\"missing certificate chain\" f=\"zubu.re.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zuerich.ch\" f=\"zuerich.ch.xml\"><rule from=\"^http://zuerich\\.ch/\" to=\"https://www.zuerich.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZVV.ch\" platform=\"mixedcontent\" f=\"zvv.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>"], "targets": {"www.cloudmagic.com": [3291], "mars.nasa.gov": [10868, 10869], "cobalt.io": [3340], "parallella.org": [12391], "80spurple.com": [198], "lexity.com": [9280], "riskiq.com": [13902], "www.stackmonkey.com": [15362], "www.readitlaterlist.com": [13607], "*.osmocom.org": [12127], "pass.tmall.hk": [16513], "ratfishoil.com": [13575], "www.liberal.ca": [9294], "www.ludios.org": [9653], "www.adulttoys4u.com.au": [646], "www.muse.mu": [10709], "grad.uw.edu": [17077], "myportaladmissions.rbwm.gov.uk": [19539], "www.cyphdbyhiddenbhs.onion": [3984], "www.blot.im": [2124], "mydornsife.usc.edu": [17278], "www.websitealive8.com": [18149], "yed24hr.com": [18666], "ngpvan.com": [10907], "www.112cafe.com": [17], "www.amazon.fr": [917], "news.piratenpartei.de": [12721], "*.nciphub.org": [19427], "bctr.cornell.edu": [3676], "my.quickline.com": [19530], "onlinestore.usatoday.com": [17032], "members.firedoglake.com": [5857], "api.gogobot.com": [6808], "dev.metasploit.com": [10310], "www.hipl.hnfe.vt.edu": [17740], "gfycat.com": [6625], "licensing.wirral.gov.uk": [18371], "www.ksaglass.com": [8749], "services-federation.renater.fr": [13764], "desktop.vovici.com": [17849], "www.gpgauth.org": [6876], "www.cyberagent.co.jp": [3957], "fahrplan.zvv.ch": [19806], "rss.rtbf.be": [14011], "www.webprospector.de": [18080], "tags.tiqcdn.com": [15996], "w.uptolike.com": [17382], "dl3.checkpoint.com": [3048], "mailhost.stpeter.im": [15503], "spreadshirt.fi": [15300], "www.coventry.gov.uk": [19085], "aedc.gov.au": [1388], "iot.uk": [19302], "*.babylon.com": [1594], "www.wikihow.com": [18290], "online3.drweb.com": [4783], "fit.fraunhofer.de": [6112], "dan.kent.ac.uk": [17317], "www.sixapart.com": [14889], "www.bizx.info": [19004], "www.bluetooth.org": [2155], "spreadshirt.fr": [15300], "wd-edge.sharethis.com": [14668], "www.ourtesco.com": [12143], "order.humanevents.com": [7609], "www.superbrightleds.com": [15619], "img11.360buyimg.com": [112], "adcentre.magnetisemedia.com": [9861], "octopart.com": [11714], "fredericia.dk": [6115], "tools.xsolla.com": [18593], "help.research.vt.edu": [17740], "bitdrift.org": [1990], "svn.netfilter.org": [11225], "www.nva.org": [11098], "pthblog.amnesty.org.uk": [971], "*.enecto.com": [5250], "src.openvz.org": [11991], "brmlab.cz": [2345], "sagernotebook.com": [14240], "afl.nab.com.au": [10865], "thinkmissionexcellence.maine.edu": [17322], "exhibitions.lib.cam.ac.uk": [17243], "sparx.org.nz": [15227], "www.campact.de": [2777], "fusion.ddmcdn.com": [4019], "mapbox.com": [9968], "codersclan.net": [3376], "blackboard.usc.edu": [17278], "enfield.gov.uk": [5258], "www.tinyjpg.com": [16481], "jenkins.labs.nic.cz": [11379], "apps.1und1.de": [68], "eiu.com": [5061], "beyondthebubble.stanford.edu": [15383], "www.soapboxcms.com": [15054], "wingolog.org": [18353], "*.unister-adservices.com": [17201], "*.tjoos.com": [16507], "*.cpcache.com": [2716], "img.qz.com": [13386], "www.nei.nih.gov": [11052], "*.extralunchmoney.com": [5524], "www.pivotaltracker.com": [12732], "www.firefart.at": [5853], "foss.in": [5587], "gnusocial.no": [6362], "www.destinydb.com": [18782], "virustracker.net": [17759], "repository.upenn.edu": [17272], "coastdigital.co.uk": [3338], "members.bet365.com": [1811], "data.bassetlaw.gov.uk": [1688], "www.ricardo.ch": [13866], "westmorland.greenparty.org.uk": [6925], "*.sharpspring.com": [14683], "photos2.demandmedia.com": [4343], "solarcity.com": [15109], "s4.goeshow.com": [6799], "www.nationaleombudsman.nl": [11132], "lokaldealen-dbapp.netdna-ssl.com": [4108], "www.gsu.edu": [6391], "*.chromeadblock.com": [517], "stringeditions.leeds.ac.uk": [17318], "www.schooltoprison.org": [14365], "rebrush-oas.fazjob.net": [5554], "www.discovery.com": [4554], "meteor.com": [10313], "source.openmpt.org": [11951], "*.istheinternetonfire.com": [19307], "continuingstudies.stanford.edu": [15383], "nknews.org": [10934], "www.q8car.com": [13278], "www.passwort-generator.com": [12435], "www.backblaze.com": [1595], "searchcloudcomputing.de": [16018], "mcpmag.com": [9729], "www.overheid.nl": [11132], "sonyentertainmentnetwork.com": [15149], "ptp.aldi.com.au": [299], "*.chzbgr.com": [3056], "northlincs.greenparty.org.uk": [6925], "inkscape.org": [8149], "support.noblehour.com": [11447], "clicktale.com": [3252], "virginaustralia.com": [17735], "www.seomon.com": [19582], "www.atinternet-solutions.com": [363], "e1.targusinfo.com": [15785], "clocks.yandex.kz": [18652], "*.janalta.com": [8510], "developer.longtailvideo.com": [9589], "comment-app.hhs.gov": [7062], "*.gitc.finance.gov.au": [3492], "www.funkhauseuropa.de": [18015], "moviemaps.org": [10637], "cdn.loc.gov": [9528], "eusecwest.com": [4981], "assets.rovio.com": [13989], "portal.ascio.com": [1248], "www.abestweb.com": [246], "shaaaaaaaaaaaaa.com": [14651], "hosting.com": [19260], "sydney.edu.au": [19649], "media3.woolworths.com.au": [18422], "www.shareasale.com": [14661], "scubbly.com": [14429], "yun.yunbi.com": [18750], "www.platinumperformance.com": [12787], "flashrom.org": [5906], "pix.telekom.de": [4410], "noticias.walmart.com": [17964], "dataminelab.com": [4183], "www.lis.gov": [9082], "store.warframe.com": [17977], "*.bitlove.org": [2000], "fotopigeon.com": [6074], "help-en-gb.nike.com": [11401], "forge.ocamlcore.org": [11613], "insider.razerzone.com": [13587], "nitrokey.com": [11429], "www.thetoadfly.com": [16523], "*.eduroam.org": [5100], "www.greensmoke.co.uk": [6928], "www.netapp.com": [11183], "jpstore.dell.com": [4335], "www.campustechnology.com": [19034], "ezoshosting.com": [5003], "jamtrackcentral.com": [8499], "*.copernic.com": [3649], "kimage.playerauctions.com": [12803], "www.usmint.gov": [17062], "www.webmercs.com": [4170], "www.impfen-info.de": [8018], "www.userium.com": [17435], "static.autobytel.com": [1425], "linaro.org": [9361], "anon-ib.ru": [1038], "pagefair.com": [12329], "owncloud.org": [12182], "master.yandex.kz": [18652], "www.mwave.com.au": [10736], "*.nla.gov.au": [11070], "cn.calameo.com": [2731], "webftp.cesky-hosting.cz": [19051], "*.mediagoblin.org": [10152], "buryleisureonline.bury.gov.uk": [19027], "deals.montomeryadvertiser.com": [6453], "*.check24.de": [3045], "voterregistration.ct.gov": [2680], "prophet.heise.de": [7288], "www.tibia.com": [19777], "www.elilabs.com": [5165], "mss.a1.net": [217], "giantbomb.com": [6636], "floorforce.websitealive.com": [18149], "login.tmall.com": [19684], "microsoftventures.com": [10370], "archive.nlm.nih.gov": [11052], "www.goc.io": [6364], "jira.codehaus.org": [3370], "kundencenter.kevag-telekom.de": [8862], "taipo-01-hkg-remote.cathaypacific.com": [2904], "anonymouse.me": [1052], "www.homefinder.com": [7467], "*.adp.com": [1427], "e17-stuff.org": [19461, 19462], "amung.us": [18267], "trellian.com": [16709], "*.hammacher.com": [7182], "www.alumniweekend.ox.ac.uk": [17271], "bb.mail.ru": [9874], "why.mail.ru": [9874], "gacollege411.org": [6304], "www.ymcmbofficial.com": [18619], "sk.mbank.eu": [9722], "r.skimresources.com": [14912], "aktrack.pubmatic.com": [13194], "hornstrafarms.com": [7497], "ih0.redbubble.net": [13660], "www.teevox.com": [16061], "*.mozilla.com": [10654], "secure-static-cdn1.ustream.tv": [17451], "thomas-krenn.com": [16374], "rule.tmall.hk": [16513], "www.djkit.com": [4038], "cms.www.switch.ch": [15699], "homespot.falkirk.gov.uk": [5641], "labelsbythesheet.com": [9126], "www.chipland.hu": [3087], "wwwdyn.zdf.de": [19800], "greenit-bb.de": [6917], "login.kuleuven.ezproxy.kuleuven.be": [8816], "ipredator.se": [7804], "comnap.aq": [2639], "www.earthlink.biz": [5007], "lbstatic.resrc.it": [13599], "metrica.ya.ru": [18626], "www.nhattao.com": [11377], "www.indymedia.org.uk": [8084], "*.nautil.us": [11110], "arc.plymouth.ac.uk": [12833], "csulb.edu": [2744], "widgets.membership.s-msft.com": [14058], "img1.aquagear.com": [1143], "copyright-watch.org": [3656], "antok.co": [1071], "avadomains.com": [1435], "gamecraft.cz": [19206], "marsstaticcdn.jpl.nasa.gov": [10869], "www.workplacegiving.co.uk": [18443], "torrentday.com": [16579], "www.openmailbox.org": [11955], "companyaccount.kaspersky.com": [8806], "www.cheapoz.com.au": [3040], "epuap.gov.pl": [19139], "tssplansregistry.dft.gov.uk": [19116], "users.isy.liu.se": [9084], "pingless.co.il": [12688], "secure.kagi.com": [8766], "avangate.com": [1439], "*.whoson.com": [18268], "posten.se": [12968], "www.playstationnetwork.com": [12796], "*.trkclk.net": [16753], "s.marketwatch.com": [10021], "*.impact-ad.jp": [8009], "www.jitsi.org": [8583], "support.ourlocality.org": [12144], "*.adsmarket.com": [10076], "www.conted.ox.ac.uk": [17271], "redirect.1and1.com": [51], "www.aff.biz": [695], "invodo.com": [8331], "firefart.at": [5853], "okst.secure-endpoints.com": [14478], "studifit.htwk-leipzig.de": [7114], "listener.co.nz": [9450], "*.fark.com": [5661], "m.ceviri.yandex.com.tr": [18649], "hellowebapp.com": [7300], "*.ientry.com": [19273], "*.challengepost.com": [2986], "svn.mplayerhq.hu": [9784], "www.webgo24.de": [18065], "greatnonprofits.org": [6910], "accessoires.t-mobile.nl": [15771], "sm.stanford.edu": [15382], "login.ccccloud.com": [2539], "www.kei.pl": [8841], "communitycontent.marketwatch.com": [10021], "apply.berklee.edu": [1787], "gta.digitale-diathek.net": [4504], "www.trilightzone.org": [19695], "www.special-trade.de": [15239], "bedd.tk": [3533], "static3.symanteccloud.com": [15715], "poptavka.vutbr.cz": [17522], "rezdy.com": [19551], "abclinuxu.cz": [404], "cc.o.qcloud.com": [13301], "matkahuolto.info": [10074], "cair.com": [2514], "secure.cica.ca": [2799], "shopping.istella.it": [8381], "static.corsair.com": [3687], "www.ctt.org": [3907], "hsbctrinkaus.de": [7098], "docs.cachethq.io": [2709], "*.linuxpl.com": [9434], "ap1.pccu.edu.tw": [12220], "www.the109.org": [16240], "investor.google.com": [6834], "www.dataquest.io": [4184], "www.sutn.sk": [14972], "eastbay.com": [5017], "anycommson.wirral.gov.uk": [18371], "financnahitparada.sk": [5828], "managewp.org": [9941], "1kbhkort.kk.dk": [8730], "*.audible.de": [1349], "healthtoday.mims.com": [9743], "careers.yell.com": [19790], "*.bpt.me": [2366], "wunderkraut.fi": [18482], "despora.de": [4394], "zimbra.com": [18868], "www.nokia.*": [11461], "www.hpac.nhs.uk": [10913], "www.rya.nc": [14053], "office.vutbr.cz": [17522], "www.citmedialaw.org": [4046], "netlify.com": [11239], "rhein-neckar-loewen.de": [13859], "autodiscover.samfox.wustl.edu": [17993], "wcdapps.hhs.gov": [7062], "emergencytool.cancer.gov": [2805], "*.conviva.com": [3631], "e-gold.com": [4851], "telusmobility.com": [16103], "tmz.vo.llnwd.net": [15832], "informabtl.com": [13721], "idp.nottingham.ac.uk": [11528], "mobygames.com": [10505], "trib.ent.sirsidynix.net.uk": [14860], "www.junglee.com": [8680], "brainbench.com": [2266], "hosterbox.com": [7522], "my.m.taobao.com": [15952], "security.illinois.edu": [17258], "www.hackinparis.com": [7135], "stalkr.net": [15372], "logo.www.sogou.com": [19606], "www.sensepost.com": [14585], "bnbym.yandex.com.tr": [18649], "*.33across.com": [101], "act.demandprogress.org": [487], "teruel.unizar.es": [17356], "bidsystem.com": [599], "www.mcvpacific.com": [8226], "www.careerdean.com": [2842], "ecomm.vendercom.com": [17603], "ncbi.nlm.nih.gov": [11052], "*.scania.com": [14335], "appsecusa.org": [1132], "docs.hyper.sh": [7644], "lwscomdtq8.lowes.com": [9636], "apps.yunos.com": [18748], "blog.stackoverflow.com": [15359], "documents.sofort.com": [15089], "pcboc.com": [2750], "securityblog.redhat.com": [13675], "business.ftc.gov": [5720], "zzounds.com": [18772], "losangeles2015.drupal.org": [4780], "mybenefitscalwin.com": [10745], "secure4.coveritlive.com": [3735], "www.anonbox.net": [1045], "commons.lbl.gov": [9065], "www.webmerge.me": [18075], "vrp.outbrain.com": [12150], "englisch.sueddeutsche.de": [15577], "stopsoftwarepatents.eu": [15486], "www.bitcurex.com": [1987], "www.servicenow.com": [14622], "s0.jrnl.ie": [19326], "www.plastidipuruguay.com": [12782], "www.gdata.co.jp": [6293], "actionallocator.com": [493], "touch.vg.no": [17484], "www.enphaseenergy.com": [5284], "mail.xmission.com": [18530], "www.centreon.com": [2957], "static.tvtropes.org": [15890], "support.ustream.tv": [17451], "*.ng.bluemix.net": [2152], "www.internot.info": [8291], "datacard.com": [4198], "www.waymoot.org": [18011], "triodos.nl": [16740], "schneideroptics.com": [14359], "libanswers.com": [9286], "iaoc.ietf.org": [7721], "thegreatcourses.com": [16193], "ams2.bohoomil.com": [2180], "*.cloudimage.io": [3306], "cdn.trgt.eu": [16720], "t-nation.com": [15773], "infopackets.com": [8113], "www.telecolumbus.com": [16073], "economize.catracalivre.com.br": [2908], "*.att.com": [364], "*.water.org": [17999], "webgo24.de": [18065], "shop.sandsmedia.com": [14213], "*.nevillholtopera.net": [11286], "compass.illinois.edu": [17258], "www.foreignaffairs.com": [6025], "assets0.redbubble.net": [13660], "studentinvolvement.wustl.edu": [17993], "www.meetic.pt": [10215], "www.thedilbertstore.com": [16269], "samsungapps.com": [14266], "www.colocore.ch": [3436], "diigo.com": [4515], "unblocked.li": [17151], "searchworks.stanford.edu": [15383], "freedesktop.org": [6126], "www.aa.com": [229], "go.pardot.com": [12399], "www.sportisimo.com": [14158], "pop6.com": [12901], "login.naukri.com": [11109], "elpa.gnu.org": [6357], "www.medconfidential.org": [10137], "www.csrsupport.com": [2677], "studentprograms.jpl.nasa.gov": [10869], "img.ebyrcdn.net": [5045], "*.livejournal.com": [9491], "www.flossmanuals.net": [5577], "kserver.mastermindpro.com": [10058], "grdc.com.au": [6886], "src.ac.pld-linux.org": [12267], "prgmr.com": [13047], "nedcc.org": [10896], "www.westconsincuhb.org": [18215], "gupiao.jd.com": [8423], "www.citymapper.com": [3193], "wwws.loc.gov": [9528], "www.riscon.cz": [13898], "assets.gyazo.com": [7035], "flattr.net": [5910], "freerainbowtables.com": [6149], "www.biostat.wustl.edu": [17993], "telecolumbus.de": [16073], "promotions.drweb.com": [4783], "www.jisc.ac.uk": [8578], "cdn-www.demandstudios.com": [4344], "intranet.inria.fr": [8159], "my.bracknell-forest.gov.uk": [19016], "resetthenet.org": [13804], "kiwicon.org": [8929], "support.webhost.co.nz": [12036], "budgetgolf.se": [2393], "www.asus.com": [357], "gmx.sg": [6350], "intern.nasa.gov": [10869], "www.fredericia.dk": [6115], "mycommerce.com": [10753], "answers.microsoft.com": [10364], "*.mdgms.com": [10129], "sflogo.sf.net": [15174], "nano.osu.edu": [11760], "login.ezproxy.lib.rmit.edu.au": [13437], "www.citeulike.org": [3167], "wiki.sugarlabs.org": [15581], "myaccount.globalcapacity.com": [6723], "framalab.org": [6095], "www.zeroblock.com": [18840], "youtube.pr": [18709], "*.netmarble.com": [11242], "youtube.pl": [18709], "youtube.ph": [18709], "youtube.pe": [18709], "events.cornell.edu": [3676], "deakin.edu.au": [4252], "500.chromeexperiments.com": [3117], "www.gridzdirect.com": [6953], "pragprog.com": [13012], "mymediamagnet.com": [10811], "www.rage3d.com": [13526], "ems.southampton.gov.uk": [15191], "skin.issuu.com": [8378], "panax.net": [12355], "community.appcelerator.com": [1113], "www.clockers.at": [12164], "marketplace.secondlife.com": [14462], "oracle.com": [12082], "www.scamfraudalert.com": [14330], "compte.gresille.org": [6945], "220volt.hu": [72], "frab.camp.ccc.de": [2538], "*.wunderground.com": [18032], "www.get-digital.es": [6560], "www.guidancesoftware.com": [7006], "*.introweb.hu": [8302], "shared.qwknetllc.com": [13294], "wsidecar.apple.com": [1120], "bytename.com": [2490], "www.useitandsee.com": [5178], "static-cdn.mackeeper.com": [9819], "1time.aero": [65], "pouget.indymedia.org": [8085], "www.molevalley.gov.uk": [19406], "cdn.thinksteroids.com": [9737], "jodel-app.com": [8606], "jiffyfreescore.com": [8567], "cmb.ornl.gov": [11693], "apply.7-eleven.com": [187], "halsnaes.dk": [7178], "geo.messenger.services.live.com": [9483], "*.nyu.edu": [11294], "*.degica.com": [3336], "profile.we-energies.com": [18016], "cable-tv-deals.com": [18486], "www.nimh.nih.gov": [11052], "emc2.cornell.edu": [3676], "truefactor.io": [16773], "trip.taobao.com": [15952], "www.loveplanet.ru": [9627], "images-3.gog.com": [6365], "de.sitestat.com": [14885], "assets.juicer.io": [8667], "www.mountainview.gov": [3191], "www.business.leeds.ac.uk": [17318], "www.bravelyonward.com": [2293], "client.lock-box.net": [9543], "support.aerofs.com": [688], "incontri.tiscali.it": [16498], "recruitment.highways.gov.uk": [19250], "www.bkk-advita.de": [1524], "www.ethnologue.com": [5385], "katalog.yandex.by": [18648], "verzekeringssite.nl": [17648], "www.seravo.fi": [14594], "disk.yandex.ua": [18656], "www.oniontip.com": [11864], "wayf.dsi.cnrs.fr": [6195], "cadlink.com": [19033], "plugins.piwik.org": [12733], "www.alandroidnet.com": [776], "bostonbuilt-org.hoaxdevice.com": [2231], "www.amnesty.org": [956], "lainchan.org": [9132], "roammobility.com": [13918], "appworld.blackberry.com": [2050], "ipswich.gov.uk": [8351], "stats.thermoscientific.com": [16349], "apnaindia.com": [1096], "www.linuxserver.io": [9435], "img.shields.io": [7992], "oc.libreoffice.org": [9311], "friendme.sonyentertainmentnetwork.com": [15149], "quup.com": [13382], "favu.vutbr.cz": [17522], "www.tribalhosting.net": [16726], "networkforgood.org": [11264], "app.svnlab.com": [14203], "help.maven.co": [10087], "encoding.com": [5232], "www.btcguild.com": [1559], "*.moniker.com": [8865], "*.sublimevideo.net": [15561], "amazon.com.mx": [18951], "pingfore.qq.com": [13285], "plans-review.stanford.edu": [15383], "www.esad.ulaval.ca": [17229], "store.storeimages.cdn-apple.com": [2553], "frozen-yogurt-franchise.org": [6232], "www.undergraduatecouncil.wustl.edu": [17993], "security-portal.cz": [14520], "www.trialfunder.com": [16723], "www.palmetto.com": [12347], "ehn.emoryhealthcare.org": [5211], "www.trust-it.gr": [16781], "hobbypcb.com": [19254], "www.traxarmstrong.com": [16703], "coderouge.co": [3375], "sony-europe.com": [15141], "www.dof.dk": [4633], "urkb.ch": [19333], "4.vgc.no": [17484], "cloudshark.org": [19068], "apps.uillinois.edu": [16960], "purplebox.ghostery.com": [6629], "app.movableink.com": [10628], "*.www.filmthreat.com": [5805], "www.flashgot.net": [5904], "msturm.htwk-leipzig.de": [7114], "sc.rgstatic.net": [13422], "*.vdopia.com": [17582], "www.webhost4life.com": [18066], "webchat.freenode.net": [19196], "eu.mouseflow.com": [10624], "shibboleth.highwire.org": [7401], "ajax.microsoft.com": [10364], "www.phoenix.com": [12632], "www.flowingdata.com": [5945, 5946], "www1.scene7.com": [14340], "www.browserleaks.com": [2371], "getpocket.com": [6579], "www.veracode.com": [17614], "affiliate-program.amazon.com": [910], "userfox.com": [17434], "*.napoleonmakeupacademy.com": [11036], "fidh.org": [5571], "*.openrightsgroup.org": [12023], "www2.peopleschoicecu.com.au": [12552], "gixen.com": [6693], "tracker.affility.com": [703], "strava.cz": [15514], "trademark.harvard.edu": [7219], "www.fundaciontelevisa.org": [6260], "www.pbhs.com": [12210], "www.medialayer.net": [10156], "investors.demandware.com": [4347, 4349], "*.poczta.home.pl": [7465], "www.railsschool.org": [13531], "loyalforex.com": [9638], "cdn.synapsepay.com": [19650], "s.cstrlr.com": [2889], "www.intenseschool.com": [8224], "yoctoproject.org": [18688], "www.afip.gob.ar": [18944], "mylaw.wustl.edu": [17993], "global.duke.edu": [4798], "quickbase.com": [8304], "www.jepso.com": [8554], "iwbcollaboration.educ.cam.ac.uk": [17243], "store.edgerunner.com": [5082], "login.xmarks.com": [18579], "actonsoftware.com": [486], "weixin110.qq.com": [13285], "ars.usda.gov": [17209], "www.takeonthegame.com": [19657], "static.sockshare.com": [15081], "coverart.worldcat.org": [18446], "build.tizen.org": [16506], "oss.nl": [11132], "www.shaunlorrain.com.au": [14686], "eecs.berkeley.edu": [17240], "m.wustl.edu": [17993], "www.data.gov.uk": [19100], "blockbuster.co.uk": [2082], "www.herts.police.uk": [7333], "tunisia-sat.com.tn": [16832], "www.ozvoucher.com.au": [12195], "*.uscis.gov": [17055], "youtube.com.sa": [18709], "universalsubtitles.org": [17227], "wusmeducation.wusm.wustl.edu": [17993], "dcp.psc.gov": [19525], "*.ur.wvu.edu": [18212], "poets.org": [12848], "weoinvoice.com": [18202], "auslieferung.commindo-media-ressourcen.de": [3480], "openid.aol.com": [321], "www.webcamboys.us": [18111], "bugreports.qt.io": [13315], "*.modcloth.com": [10511], "csail.mit.edu": [9749], "www.charities.org": [950], "*.ign.com": [7729], "www.bluejeans.com": [2139], "nordichardware.se": [11474], "www.your-file-system.com": [18720], "www.tigerdirect.com": [16440], "v5.windowsupdate.microsoft.com": [10363], "capitaloneconnect.*": [2818], "rya.nc": [14053], "www.gidapp.com": [6331], "mall.taobao.com": [15952], "form.ms.yahoo.co.jp": [18640], "www.amsterdam.nl": [11132], "render.fineartamerica.com": [5844], "www.hashbang.ca": [7225], "cmspromo.alipay.com": [817], "www.mycotopia.net": [10827], "tonyarcieri.com": [16549], "cooperazione.ch": [3645], "order.1and1.ca": [52], "conversionruler.com": [10005], "songsterr.com": [15135], "forum.ovh-hosting.fi": [12173], "cp-d.rentalserver.jp": [13774], "www.auctionbunker.com": [1344], "links.leloop.org": [9191], "neodrive.co": [11149], "developers.arcgis.com": [1155], "sherlock.livingsocial.com": [9517], "s3.carltonbale.com": [2856], "storage-file-eu.gmx.com": [6350], "*.uni-muenchen.de": [9091], "www.probank.gr": [6911], "yandex.com": [18651], "wiki.piratpartiet.no": [12724], "katzporn.in": [8820], "www.caskstore.com": [2884], "www.torcache.net": [16571], "webtorrentsearch.com": [16228], "www.vectormediagroup.com": [17586], "*.vertriebsassistent.de": [17643], "techhouse.org": [16012], "1337x.org": [30], "www.edwardtufte.com": [5104], "marshall.usc.edu": [17278], "*.qwant.com": [13383], "*.foodandwaterwatch.org": [6002], "helpdesk.malwarebytes.org": [9929], "login.ashampoo.com": [1250], "www.wyzant.com": [18491], "www.mdcus.com": [9730], "www.behavioralpolicy.org": [1757], "www.mofobian.com": [10531], "www.zentralbahn.ch": [19802], "www.dr-qubit.org": [4734], "desr.dict.cc": [4455], "engine.adzerk.net": [675], "a1-images.myspacecdn.com": [10848], "webmail.telus.net": [16103], "dms.vdv.de": [17478], "*.coxbusiness.com": [3739], "valvesoftware.com": [17548], "*.liquidweb.com": [9443], "forum.geoclub.de": [6543], "www.dnuk.com": [4482], "www.secure.me": [14488], "www.calyx.net": [2761], "c.speedtest.net": [15258], "icehost.is": [7915], "www.lynxtech.no": [9684], "opensource.org": [12025], "resizing.flixster.com": [5933], "www.bathnes.gov.uk": [1689], "files.slidemypics.com": [14961], "media.washpost.com": [17988], "px.at.atwola.com": [318], "ballou.se": [1633], "en-ro.dict.cc": [4455], "fls-na.amazon.com": [915], "www.guardianescapes.com": [7002], "kreator.kei.pl": [8840], "box.wustl.edu": [17993], "fsaregistration.ed.gov": [4889], "marketing.lunarpages.com": [568], "www.evga.com.tw": [4986], "pdfcrowd.com": [12500], "fcpablog.com": [5559], "citra-emu.org": [19063], "hrnt.jhu.edu": [16296], "eulerian.voyage-prive.com": [17857], "www.charter.net": [3021], "www.jonathanmayer.org": [8624], "help.mail.ru": [9874], "chainflyer.bitflyer.jp": [1931], "www.winehq.org": [18352], "promo.untangle.com": [17370], "pt.foursquare.com": [6082], "www.sourcegraph.com": [15182], "lists.macosforge.org": [9820], "www.sharesix.com": [14667], "opera.yandex.kz": [18652], "bst5.gismeteo.ru": [6669], "ox-i.overdrive.com": [12160], "secure.newegg.com": [11316], "static.edeka.de": [19147], "www.citizensadvice.org.uk": [19062], "factoryexpohomes.com": [5627], "www.gallup.com": [6409], "s.ppjol.net": [13034], "zenbook.asus.com": [357], "abiliba.net": [418], "www.ipk.fraunhofer.de": [6112], "jabjab.de": [8471], "customers.anpdm.com": [1053], "oper.cc.ntu.edu.tw": [10971], "fraserxu.me": [6109], "*.t.domdex.com": [4667], "web.aexp-static.com": [678], "redports.org": [13701], "digipaper.fi": [10140], "il.norton.com": [11505], "odinn.cyberguerrilla.org": [3961], "www.cashplatoon.com": [2879], "ams.org": [310], "herbal-nutrition2.net": [7323], "master.yandex.by": [18648], "*.hotwire.com": [7561], "admin.oktd.kent.gov.uk": [8851], "securityinnovation.com": [14530], "google.*": [6838, 6840, 6845, 6848], "static.wix.com": [18383], "server.icewarp.com": [7913], "www.mijnd66.nl": [10381], "move.va.gov": [17019], "www.searchcloudcomputing.de": [16018], "ubmelectronics.com": [16927], "neave.tv": [11124], "omicron.at": [11635], "www.lonelyplanet.com": [9587], "*.privatepaste.com": [13101], "mbl.teljari.is": [10110], "www.direct123.fi": [4523], "itpol.dk": [8392], "www.philshobbyshop.com": [12628], "www.proxy.sh": [13181], "storage.msn.com": [9796], "www.komments.net": [8966], "cdn.idealo.com": [7929], "ehosting.ca": [5119], "www.fee.org": [5564], "www.koldfront.dk": [8962], "localsearch.courierpostonline.com": [3715], "www209.americanexpress.com": [935], "force.com": [14249], "www.instra.com": [8196], "1l-view.mail.ru": [9874], "www.deezer.com": [4303], "cdn.sunglasswarehouse.com": [15600], "badge.facebook.com": [5620], "www.1and1.co.uk": [53], "www.adblockplus.org": [561], "otf.msn.com": [9796], "blufiles.storage.msn.com": [9796], "factsandfigures.herefordshire.gov.uk": [7327], "www.hostbaby.com": [7507], "rutgers.edu": [14048], "media.style.com": [15550], "*.jboss.org": [8417], "www.thetrainline.com": [16238], "account.cyngn.com": [3980], "blockmetrics.com": [2087], "siteuptime.com": [14875], "www.torrentz.com": [16591], "engineering.jhu.edu": [16296], "blog.brightfort.com": [2320], "grid.tv2.dk": [15881], "www.verisign.dk": [17623], "new.familysearch.org": [5646], "www.editola.com": [5086], "portal.sans.org": [14072], "static.chartbeat.com": [3018], "growhq.com": [6982], "pay.sohu.com": [15103], "*.footholds.net": [6014], "anybeat.com": [1077], "cathaypacific-campaign.com": [2904], "www.xyratex.com": [18609], "*.travelingnuker.com": [16696], "m.yandex.by": [18648], "*.listrakbi.com": [9453], "metrics.sky.com": [14924], "*.desire2learn.com": [4390], "msds.ornl.gov": [11693], "www.vesica.ws": [17650], "static-assets.metartnetwork.com": [10296], "3c.taobao.com": [15952], "halcyon.sh": [7172], "planetromeo.com": [12764], "helpdesk.bittylicious.com": [2026], "www.trash-mail.com": [16686], "eatocracy.cnn.com": [18428], "www.nordvpn.com": [11482], "licensing.havant.gov.uk": [19237], "www.sallybeauty.com": [14252], "receivingmail.osu.edu": [11760], "cdn-my.nanorep.com": [11033], "www.bukkit.org": [19024], "personal.zoho.com": [18884], "fallout4.com": [5643], "*.clickfuncasino.com": [3260], "*.puhkaeestis.ee": [13222], "media.gexpro.com": [6622], "careers.ageuk.org.uk": [18946], "children.brent.gov.uk": [2304], "*.cloudsigma.com": [3293], "www.rssinclude.com": [13463], "*.zeroc.com": [18841], "*.planetminecraft.com": [12769], "shop.btcs.com": [1562], "blog.doublerobotics.com": [4712], "apns.atechmedia.com": [368], "qualtrics.com": [13332], "hetzner.de": [7376], "sciamdigital.com": [14384], "ex10.biz": [5471], "www.uvpn.de": [19709], "www.vlada.gov.sk": [14972], "uadm.uu.se": [17074], "shibboleth.usc.edu": [17278], "secure.commonground.convio.com": [3630], "moderncrypto.org": [10520], "vodafone.com": [17816], "arranca.nadir.org": [1212], "buyiphone3.apple.com": [1120], "testing.datamotion.com": [19102], "www.armedforcesday.org.uk": [1203], "cdn.blicko.com": [2072], "*.gateway.messenger.live.com": [9483], "www.apotea.se": [1098], "www.freesnowden.is": [6150], "origin.www.virginmedia.ie": [17738], "ads.ibtracking.com": [7906], "t411.io": [15781], "www.pb.uillinois.edu": [16960], "cykloteket.se": [3979], "bistudio.com": [2179], "userpub.itunes.apple.com": [1120], "www.thinkprogress.org": [2944], "shop.boingboing.net": [2181], "passports.gov.au": [1398], "slouken.libsdl.org": [9290], "westernunion.com": [18216], "www.1ty.me": [66], "www.mastermindpro.com": [10058], "www.wykop.pl": [18488], "bdnpull.bangorpublishing.netdna-cdn.com": [1642], "hornbach.nl": [7496], "catersnews.com": [2902], "adjug.com": [526], "www.w.thm.de": [15811], "www.managedforexprogram.com": [9942], "www.justitie.nl": [11132], "*.ag.gov.au": [1340], "kryptronic.com": [9023], "*.conversionruler.com": [10005], "www.weekendjeweg.nl": [7452], "www.oyoony.at": [19475], "crawleybc.firmstep.com": [19183], "nemlog-in.dk": [11143], "signup.claranet.de": [3211], "watch.yandex.com.ua": [18650], "feedback.yandex.com.tr": [18649], "ar.godaddy.com": [6773], "www.movelia.es": [10632], "rdmp.sydney.edu.au": [19649], "*.realtidbits.com": [13631], "*.azhca.org": [382], "www.canon.com.tr": [2809], "e-filatelia.poste.it": [12965], "archive.anon-ib.co": [1034], "posti.fi": [19510], "www.spirit.com": [15278], "reliableisp.net": [13754], "squirrel.carezone.cz": [2849], "www.sunlightfoundation.com": [15601], "www.crysys.hu": [3837], "m.taxi.ya.ru": [18626], "studyinthestates.dhs.gov": [4035], "websterwood.com": [18158], "*.ravensoft.com": [13579], "www.axeso5.com": [1472], "*.rollingstone.com": [13960], "online.tu-graz.ac.at": [15875], "download.zotero.org": [18911], "source.tizen.org": [16506], "wapo.st": [1920], "www.hertz247.fr": [7345], "logon.hjv.dk": [7435], "www.nxtblocks.info": [10987], "www.blackbaud.com": [2049], "punchout.digikey.de": [4469], "www.devuan.org": [4433], "ad.dc2.adtech.de": [638], "www.ovh.nl": [12173], "oneweb.cz": [11648], "osumarion.osu.edu": [11760], "www.raptr.com": [13562], "beta.lewrockwell.com": [9278], "recsports.osu.edu": [11760], "tindie.com": [16471], "www.catalog.yandex.by": [18648], "www.rub.de": [13478], "www.pyweek.org": [13267], "www.telefonica.cz": [16076], "pcdiy.asus.com": [357], "*.ca.eprncdn.com": [5329], "images.obi.at": [19452], "myaccount.newcastle.gov.uk": [11315], "abcmusicpublishing.com.au": [238], "*.powweb.com": [12987], "fastsoft.com": [5675], "www.tiremetroonline.com": [16494], "cdn.yourpshome.net": [18726], "benefitsu.stanford.edu": [15383], "www.passwordless.net": [19479], "api.instagram.com": [8182], "californiasunday.com": [2749], "*.data.aad.gov.au": [1382], "hushmail.com": [7632], "hidemyass.com": [7396], "afp548.com": [283, 284], "*.o2.cz": [16076], "inspectlet.com": [8176], "9to5mac.com": [18428], "www.duba.com": [4789], "auth.ut.ee": [17069], "*.spreadshirt.fi": [15300], "community.flixster.com": [5933], "dsalumni3.ds.leeds.ac.uk": [17318], "joslin.org": [8636], "www.l-rz.de": [9238], "www.thevaultbar.co.uk": [16212], "trial.coverity.com": [3734], "apps.xo.com": [18532], "wiki.allizom.org": [856], "*.spreadshirt.fr": [15300], "mer.io": [10270], "webservices.hmrc.gov.uk": [7084], "version6.edeveloperz.com": [4899], "estoniaevoting.org": [5368], "www.hertz.no": [7357], "ndoch.govspace.gov.au": [6867], "git.linuxlovers.at": [9432], "get.videolan.org": [17688], "eagereyes.org": [19140], "www.precisionpros.com": [13019], "commonfund.nih.gov": [11052], "racked.com": [13497], "app2.salesmanago.pl": [14069], "support.spotify.com": [15296], "www.kmh.se": [8737], "www.winscp.net": [18329], "wirelessleiden.nl": [18368], "raam.org": [13486], "www.nest.com": [11166], "nerdhaven.nuug.no": [10980], "freebin.org": [6124], "www.wunderkraut.fi": [18482], "billscenter.paytrust.com": [8304], "piraten-oberpfalz.de": [12715], "mediate.com": [10182], "www.jabberes.org": [8478], "heliny.com": [7291], "www.bancomer.com": [1501], "www.loyalforex.com": [9638], "se.support.tomtom.com": [16540], "*.apmebf.com": [17541], "globalsign.co.*": [6718], "*.eprize.com": [4946], "partner.xfinity.com": [19784], "sheppyware.net": [14700], "tvnewscheck.com": [15887], "piatnik.de": [12656], "kenexagovernmentsolutions.com": [8847], "www.openleaks.org": [11949], "tnsinfo.com": [15842], "extranet.zg.ch": [19648], "irf.se": [7814], "www.ico.gov.uk": [16967], "discusslr.com": [4559], "*.coupons.com": [3712], "www.xhamster.com": [18515], "www.scrambl3.com": [14404], "flacs.mindmodeling.org": [10408], "t-com.sk": [16088], "i.money.163.com": [34], "shopzilla.com": [14733], "pcn.cityoflondon.gov.uk": [3190], "downloads.openwrt.org": [11992], "vas-hosting.cz": [19729], "testpypi.python.org": [13272], "stapi.snacktools.com": [15019], "forums.databricks.com": [4197], "forms.ceredigion.gov.uk": [2964], "i.darjeelin.fr": [4148], "www.motigo.com": [10612], "www.gmw.nhs.uk": [10913], "*.symlynx.com": [15719], "onetimesecret.com": [11851], "tools1.cisco.com": [3162], "www.rdns.im": [13596], "facultyappts.stanford.edu": [15383], "cvent.com": [3948], "www.vooplayer.com": [17839], "connect.agariomods.com": [721], "*.sites.usa.gov": [17029], "countermail.com": [3705], "www.hackerspace.pl": [7149], "www.bittorrent.org": [2024], "store.lessigforpresident.com": [9261], "forums.bad-dragon.com": [18979], "nametiles.co": [11027], "j.paydirekt.de": [12473], "www.budgetkredit.ch": [2394], "wallet.btcs.com": [1562], "www.Tunnelbear.com": [16833], "poker.williamhill.com": [18314], "m.southwark.gov.uk": [15196], "healthunlocked.com": [7259], "blackboard.uic.edu": [17231], "www.xfce-help.org": [19461], "jplspaceship.jpl.nasa.gov": [10869], "p2.zdassets.com": [18806], "darwin.affiliatewindow.com": [4486], "www.ooda.com": [11651], "wiki.desmume.org": [4243], "www.cambridgesoft.com": [2769], "www.midnight-commander.org": [10377], "papakaya.com": [12378], "www.doubleclickbygoogle.com": [4708], "www.sec.gov": [17023], "bitcoinapi.de": [1983], "galerievirtuelle.bve.ulaval.ca": [17229], "www.medarbejdersignatur.dk": [10139], "ela.eset.com": [5358], "tempo.cnrs.fr": [6195], "www.securecerts.ie": [4512], "www.newmatilda.com": [11289], "www.boerse-frankfurt.de": [2177], "*.hostgator.com": [7512], "hps.nhs.uk": [10913], "m.woolworthsonline.com.au": [18422], "wrongplanet.net": [18475], "secure1.heifer.org": [7284], "*.discojuice.org": [4542], "naughtyshowreviews.com": [11108], "www.5vpn.net": [179], "homechoice.southglos.gov.uk": [15189], "switchip.info": [3533], "karma.mg": [8799], "www-aws.stanford.edu": [15383], "openas.org": [12030], "alastairs-place.net": [779], "www.aldi-nord.de": [299], "et13.xhcdn.com": [18514], "cms.clickability.com": [4827], "blogs.walthamforest.gov.uk": [17966], "ingentaconnect.com": [8139], "www.clinkle.com": [3269], "zdf.de": [19800], "qis.verwaltung.uni-hannover.de": [17168], "git.reviewboard.kde.org": [8718], "anzen.org.uk": [1082], "www.3dcenter.org": [122], "foris.extranet.sonymobile.com": [15145], "iplay.com": [8345], "advising.engineering.osu.edu": [11760], "lorea.org": [9610], "blog.websupport.sk": [18160], "*.rsvp.com.au": [13466], "www.iono.fm": [8341], "openhatch.org": [11942], "netforumpro.com": [11190], "oseems.com": [12120], "static.blog.playstation.com": [12795], "ssl-hints.netflame.cc": [11227], "ramsis.osu.edu": [11760], "wildfire.paloaltonetworks.com": [12349], "www.2shared.com": [98], "iphone.vodafone.co.uk": [17813], "www.vofzpwh.com": [3481], "ka.libreoffice.org": [9311], "brandmonitor.domaintools.com": [4660], "*.myheritage.br": [10834], "www.pthree.org": [13191], "epa-bdcc.ornl.gov": [11693], "www.cancerresearchuk.org": [19035], "accounts.paradoxplaza.com": [12386], "fundersclub.com": [6261], "*.londoncityairport.com": [9580], "docs.mopidy.com": [10583], "img.fark.net": [5661], "hsf.isis.poly.edu": [12888], "*.westconsincu.org": [18215], "static-cdn.ubuntu-de.org": [17093], "maltris.org": [9924], "irpa.umd.edu": [17263], "*.outernet.is": [12151], "basilisk.aetherflyff.com": [694], "*.rsmsecure.com": [13459], "www.kinox.to": [19337], "*.hawaii.gov": [7245], "download.mailvelope.com": [9892], "www.extremetech.com": [18859], "webmdhealthservices.com": [18072], "knowledge.verisign.se": [17623], "www.smssecure.org": [14139], "one.umd.edu": [17263], "api.temp-mail.ru": [16105], "www.freefind.com": [6127], "*.gamezebo.com": [6444], "albiero.videolan.org": [17688], "ua.edu": [16925], "nzbmatrix.com": [11003], "www.teespring.com": [16060], "trafficsafetymarketing.gov": [16653], "www.fsfeurope.org": [5602], "www.wupd.wustl.edu": [17993], "ds.static.rtbf.be": [14011], "phpnet.org": [12251], "*.slickdeals.net": [14958], "makemodules.ning.com": [11414], "os.inf.tu-dresden.de": [15871], "stats.cyanogenmod.org": [3954], "goglobal.stanford.edu": [15383], "mail.ohns.stanford.edu": [15383], "mobile.spaces.live.com": [9483], "m.hivtest.cdc.gov": [19046], "dibbley.mysql.cesky-hosting.cz": [19051], "www.paypalobjects.com": [12467], "lhcdashboard-images.web.cern.ch": [2575], "www.twilio.com": [16876], "thesmokinggun.com": [16311], "chita.rt.ru": [13469], "www.justice.gov.sk": [14972], "www.amoena.de": [979], "uk2img.net": [16963], "www.chimeric.de": [3081], "status.maxcdn.com": [10091], "framegrabs.vzaar.com": [17883], "seclab.cs.washington.edu": [17290], "mirror.aarnet.edu.au": [233], "mail.fightaging.org": [5785], "developerblog.redhat.com": [13675], "agar.io": [719], "reynir.dk": [13852], "i8.c.dk": [2498], "yahoo-security.tumblr.com": [16825], "api.littlesis.org": [9476], "*.psychologicalscience.org": [1296], "soa.org": [14147], "wulife.wustl.edu": [17993], "petteriraty.eu": [12604], "arbitrage.wmtransfer.com": [18076], "secure.newscheckmedia.com": [11340], "www.showcase-tv.com": [14740], "8.vgc.no": [17484], "images.psxextreme.com": [12300], "www.cherry.de": [3062], "www.dynamicweb.it": [4826], "livezilla.net": [9499], "fftlive.org": [5567], "*.chemspider.com": [13997], "baifendian.com": [1759], "help.yandex.by": [18648], "ims.osu.edu": [11760], "rackspace.nl": [13505], "portal.vzp.cz": [17524], "nostarch.com": [11445], "notevenpast.org": [11517], "bear.im": [1734], "piwik.omnigroup.com": [11793], "www.richarddawkins.net": [13871], "www.microster.pl": [10347], "*.velmedia.net": [17597], "ordbogen.com": [12095], "www.linuxhostsupport.com": [9429], "lists.stg.fedoraproject.org": [5726], "business.upc.nl": [17002], "latinamerica2015.drupal.org": [4780], "overdrive.com": [12160], "gibill.va.gov": [17019], "omniref.com": [11798], "nines.nl": [11413], "p6r.com": [12202], "www.wmjobs.co.uk": [17915], "forum.1and1.ca": [52], "blog.openttdcoop.org": [11982], "media.msi.com": [9792], "ogc.stanford.edu": [15383], "dean.williams.edu": [18316], "manage.webhost.biz": [18120], "img.olx.com.br": [11632], "orders.tigerdirect.com": [16440], "store.zentyal.com": [18833], "partner.webgo24.de": [18065], "migrate.axosoft.com": [1477], "*.sslcs.cdngc.net": [2560], "www.speeddl.com": [10121], "leadspend.com": [9196], "tools2.cisco.com": [3162], "miramax.com": [10440], "visitor.constantcontact.com": [3592], "baylibre.com": [1700], "my.govmetric.com": [6866], "api.gawker.com": [6476], "*.bitstamp.net": [2021], "img.rl0.ru": [13914], "www.scg.ulaval.ca": [17229], "uhrzeit.org": [17120], "hiring.*.monster.com": [10564], "*.cert.gov.uk": [2578], "www.chris-lamb.co.uk": [3101], "mailman.common-lisp.net": [3484], "casascius.com": [2872], "www.elster.de": [5188], "getbeagle.co": [6585], "*.moneyandmarkets.com": [18188], "adaptec.com": [556], "www.hobocomp.com": [7439], "www.thunderclap.it": [16405], "*.baxterbulletin.com": [1697], "www.socialcube.net": [15070], "www.sirportly.com": [14858], "jobs.seagate.com": [14437], "developer.oculusvr.com": [11722], "textmagic.com": [16157], "viepratique.fr": [17706], "odpadnes.sk": [18879], "atstuff.com": [1333], "*.loopia.se": [9606], "st-andrews.ac.uk": [15351], "www.0x539.se": [6], "agnitum.com": [730], "www.sky.com": [14924], "neaf.gov.au": [11068], "www.action-intell.com": [492], "shop.cei.org": [3521], "www.tinderfoundation.org": [16470], "img3.xcart.com": [18505], "*.mybuys.com": [10747], "smili.stanford.edu": [15382], "crazybates.com": [3766], "consumerreports.org": [3600, 3603], "ti.com": [15815, 16152], "data.virk.dk": [17741], "pdf.yt": [12235], "disability.gov": [4538], "account.billiondigital.com": [1882], "www.xanmod.org": [19782], "manager.mijndomeinreseller.nl": [19380], "www.nyx.cz": [11599], "www.sandstorm.io": [14283], "cdn.grahamcluley.com": [6885], "accordancebible.com": [457], "myaloecleanse.com": [10800], "www.gay-torrents.net": [6480], "pressflex.com": [13037], "hspc.openhost.net.nz": [12036], "www.railtours.at": [19455], "ubmchannel.com": [16927], "wx2.qq.com": [13285], "livefyre.com": [9509], "cdn2.gbot.me": [6808], "remixdepolitiek.nl": [12708], "moreal.co": [10587], "click.simba.taobao.com": [15952], "secure.arb-forum.com": [11046], "skepticalscience.com": [14904], "changemypassword.leeds.ac.uk": [17318], "safelinking.net": [14233], "status.parsely.com": [12413], "shopbootsusa.com": [2213], "de-sv.dict.cc": [4455], "enrol.bournemouth.gov.uk": [2251], "www.lung.ca": [2794], "main-host.de": [9893], "my.cryptovpn.com": [3866], "vispashop.com": [17780], "*.assetspost.com": [2986], "images.playboy.com": [12799], "news.citrixonline.com": [3179], "www.glyph.im": [6754], "gtms03.alicdn.com": [805], "welwynhatfield.greenparty.org.uk": [6925], "www.dr.com.tr": [4077], "www.myra.gov": [10778], "*.cdn.cloudfiles.rackspacecloud.com": [13507], "adperium.com": [624], "i.cx": [7652], "images.fineartamerica.com": [5844], "members.trust-guard.com": [16780], "static.javadoc.io": [8530], "devon.gov.uk": [4428], "devimages.apple.com": [1120], "muut.com": [10735], "www.sbs.nhs.uk": [10913], "www.hugedomains.com": [7601], "www.research.ibm.com": [7675], "www.discuto.io": [4560], "datacell.com": [4177], "*.bestofferbuy.com": [1805], "static.goexplore.net": [6777], "preferences.news.com.au": [11338], "globalscaletechnologies.com": [6739], "es.norton.com": [11505], "dl.ubnt.com": [17084], "www.chevereto.com": [3070], "elastictrace.com": [5143], "www.onlinethreatalerts.com": [11878], "www.greensmoke.com": [6928], "*.mediapart.fr": [10180], "bugs.dragonflybsd.org": [4738], "jumio.com": [8672], "www.ecoff.org": [5055], "www.globaltap.com": [6740], "u1.uicdn.net": [16958], "www.zwiebelfreunde.de": [18926], "app.bluecats.com": [2128], "www.freescorenation.com": [6131], "pixoto.com": [12746], "community.sendgrid.com": [14577], "bexley.greenparty.org.uk": [6925], "*.artfiles.de": [1230], "www.leafly.com": [9204], "www.tunisia-sat.com.tn": [16832], "www.ruby-toolbox.com": [14017], "www.nodc.noaa.gov": [11083], "support.optimizely.com": [4931], "www.learnmyway.com": [9211], "capita.slough.gov.uk": [14971], "*.ovid.com": [12175], "forums.xamarin.com": [18540], "liberis.co.uk": [19362], "www2.merkleinc.com": [19397], "searchlock.com": [19576], "tags.expo9.exponential.com": [5512], "e-cosm2015.engineering.osu.edu": [11760], "login.creativecommons.org": [3778], "newspaperdirect.com": [11346], "www.miga.org": [8259], "projects.csail.mit.edu": [9749], "it-cube.net": [7839], "www.roaringpenguin.com": [13919], "adblade.com": [560], "thing.net": [16355], "www.transifex.net": [16668], "www.bergenopzoom.nl": [11132], "cbfisap.ed.gov": [4889], "vouchedfor.co.uk": [17848], "*.parsecdn.com": [12415], "www.exhibition.ecc-platform.org": [4879], "fehlersuche.spiel.tivi.de": [19800], "socialscreamer.com": [15067], "webassets.scea.com": [15144], "apps.aldi-suisse.ch": [299], "learning.southglos.gov.uk": [15189], "www.maven.co": [10087], "nightweb.net": [11397], "www.commonapp.org": [3483], "reformal.ru": [13722], "www.xnet-x.net": [18580], "www.uni-hannover.de": [17168], "www.geekgirlsguide.com": [6497], "praetorian.com": [13011], "blogs.fsfeurope.org": [5602], "www.ges.bell.ca": [1763], "xsearch.stanford.edu": [15383], "e19.xhamsterpremiumpass.com": [18516], "conoha.jp": [3587], "google.com.*": [6838, 6840, 6845, 6848], "slashcdn.com": [14944], "www.excitations.com": [5486], "help.barclaycard.co.uk": [1664], "ioplex.com": [7778], "thefoundry.co.uk": [16278], "adisc.org": [269], "it.biovendor.cz": [1902], "anonfiles.com": [1041], "www.cimb-principal.com.my": [2606], "webauth.uvm.edu": [17075], "astat.brave.pigg.ameba.jp": [926], "www.mentoringcentral.net": [10265], "debconf7.debconf.org": [4268], "www.yourcounciljobs.co.uk": [18734], "bufferapp.com": [2402], "www.fau.org": [5552], "www.riskiq.com": [13902], "www.synapsepay.com": [19650], "*.myheritage.com.il": [10834], "go.trendmicro.com": [16717], "iceoblog.mit.edu": [9747], "thehive.xbee.net": [18548], "gps.cabinetoffice.gov.uk": [2701], "outofcontrol.ca": [12147], "ovh.lt": [12173], "www.gnusocial.de": [6361], "madetech.com": [9839], "ote.gr": [12132], "widgetserver.com": [18282], "*.senate.gov": [14574], "open.ad.yieldmanager.net": [13881], "spamcop.net": [19613], "edp.pt": [4896], "pipeline.livingsocial.com": [9517], "ccmis.psc.gov": [19525], "www.acluofnc.org": [251], "pcbooking.doncaster.gov.uk": [4678], "speakerdeck.com": [15236], "cp.bluesnap.com": [2136], "community.wizards.com": [18386], "blackznc.net": [2043], "pclick.yahoo.co.jp": [18640], "s.mzstatic.com": [10852], "webmail.phpnet.org": [12251], "docs.appcelerator.com": [1113], "forge.puppetlabs.com": [13232], "mrh.ibizarocks.com": [7901], "plazakauppa.fi": [12131], "westconsincuhb.org": [18215], "mbl.is": [10110], "www.hesaplabakalim.com": [7373], "dodlive.mil": [17028], "reztrip.com": [13853], "www.nintendo.de": [11418], "images.lady.mail.ru": [9874], "internet.yandex.by": [18648], "my.mail.ru": [9874], "switchnetworks.com.au": [15703], "beta.campusmap.wvu.edu": [18212], "*.ucsd.edu": [16939], "kantarlatam.com": [8785], "*.youtube.com": [18709], "www.swiss.com": [15695], "*.lijit.com": [9349], "www1.youm7.com": [18714], "*.snolab.ca": [15576], "physicalsecurity.ucsc.edu": [17304], "es.pcisecuritystandards.org": [12224], "http.cdnlayer.com": [8254], "invincea.com": [8324], "www.dtu.dk": [16031], "stardrifter.org": [15402], "boards.ie": [2168], "2016.gaobase.admin.cam.ac.uk": [17243], "www.altoonamirror.com": [894], "info.evidon.com": [5458], "metrics.jpl.nasa.gov": [10869], "www.mediaed.org": [10150], "bulk.internetessentials.com": [19300], "webmaster.yandex.com.tr": [18649], "4gifs.com": [6037], "wyzant.com": [18491], "fr.calameo.com": [2731], "kingdomofloathing.com": [1308], "www.raymond.cc": [13585], "www.redweb.com": [13702], "venuscafem.com": [17612], "store.cardsagainsthumanity.com": [2836], "predictiveservices.nifc.gov": [10924], "g33kinfo.com": [6298, 6299], "cf.prefetch.xxxbunker.com": [18607], "www.seeks-project.info": [14554], "*.noblogs.org": [19435], "shop.asus.com": [357], "knowledgehub.local.gov.uk": [16972], "euserv.de": [4983], "www.npp.org.hk": [19445], "www.skylink.sk": [14937], "www.pccomponentes.com": [19482], "www.openstack.org": [11975], "identitymanagement.uchicago.edu": [17246], "ikk-gesundplus.de": [7748], "jadi.net": [8491], "pinkpaislee.com": [12693], "www.gosoapbox.com": [6783], "www.linksfu.com": [9379], "anxbtc.com": [314], "id.theguardian.com": [16288], "www.rheden.nl": [11132], "vap.rts.ch": [19621], "atechmedia.com": [368], "canlii.org": [2788], "www.thecreatorsproject.com": [16263], "turnkeylinux.org": [16841], "wwwdc2.hertzentertainment.com": [7372], "media.uic.edu": [17231], "moja.tatrabanka.sk": [10534], "b.wpimg.pl": [19766], "webmail.quickline.com": [19530], "eservices.plymouth.ac.uk": [12833], "www.econda-monitor.de": [5057], "voxmedia.com": [17852], "chessbase-shop.com": [3068], "mail.jourdan.ens.fr": [4930], "www.isak.liu.se": [9084], "robinbarnard.com": [13923], "hyper.sh": [7644], "gmx.net": [6350], "middleware.internet2.edu": [8279], "help.rubygems.org": [14020], "delicate.psc.edu": [12298], "www.immunitysec.com": [8007], "ox-d.netline.com": [11240], "cdn.mathjax.org": [19386], "bucknell.edu": [2388], "projects.unbit.it": [17148], "bihira.com": [1868], "www.notepad-plus-plus.org": [11525], "crm.fsf.org": [5600], "sonos.com": [15140], "login.hwb.wales.gov.uk": [17957], "www.comviq.se": [3546], "bbnaut.ibillboard.com": [7679], "seniorgift.stanford.edu": [15383], "www.mainlinehobby.net": [9896], "www.calomel.org": [2755], "www.ohnopodcast.com": [15332], "*.newtention.net": [11349], "*.overclockers.com": [12165], "video.vzaar.com": [17883], "secure.barclaycard.co.uk": [1664], "avia.yandex.ua": [18656], "richmondteaparty.com": [13875], "iberiabank.com": [7899], "bohoomil.com": [2180], "gmw.nhs.uk": [10913], "*.sueddeutsche.de": [15578], "identity.kde.org": [8718], "www.site.yandex.kz": [18652], "*.apache.org": [1087], "videotron.com": [17700], "www.halsnaes.dk": [7178], "proxysite.com": [13182], "shibboleth2.lsbu.ac.uk": [9098], "aidsmap.com": [740], "lhcdashboard.web.cern.ch": [2575], "blogs.office.com": [11743], "www.blog.documentfoundation.org": [16221], "*.unitedsafcu.org": [17208], "votesmart.org": [13141], "www.g33kinfo.com": [6298, 6299], "www.bitcoin.at": [1961], "demo.globalpay.westernunion.com": [18216], "www.pfizer.com": [12610], "www.bostonbuilt.org": [2231], "www.clever.com": [3238], "*.bulletinmessenger.net": [2418], "www.progressive.hu": [13133], "trans.chbtc.com": [3036], "metasploit.com": [10310], "prepaid.congstar.de": [3577], "air.lincoln.gov.uk": [9362], "lsvr.osu.edu": [11760], "www.linux-sunxi.org": [9401], "www.artizone.com": [1234], "buy.xmarks.com": [18579], "djangogirls.org": [4593], "happiness.bufferapp.com": [2402], "www.jenner.ac.uk": [8552], "www.austrian.com": [1406], "www.calligra-suite.org": [2754], "epic.com": [5319], "rs-static.wistia.com": [18377], "www.phenix.bnl.gov": [19009], "booklooker.de": [2204], "www.ipsos-na.com": [8350], "trialfunder.com": [16723], "www.torrentleech.org": [16586], "showbiz.mail.ru": [9874], "stars.leeds.ac.uk": [17318], "ratm.deathmask.net": [4266], "onestart.iu.edu": [8064], "webmail.active24.cz": [18938], "sifomedia.citypaketet.se": [3196], "join.boozedgfs.com": [13039], "images.washingtonpost.com": [17990], "www.pronosticuri-tenis.com": [7732], "bmpharmacy.com": [1532], "elements.yandex.by": [18648], "sso.jetbrains.com": [8559], "escrow.com": [5354], "www.edeveloperz.com": [4899], "www.verticalacuity.com": [17637], "help.it.ox.ac.uk": [17271], "tinydl.com": [16487], "linuxtag.org": [9417], "politicopro.com": [12874], "www.onename.io": [11837], "isisaccreditation.imrg.org": [8239], "customwheelconnection.com": [3938], "www.recon.cx": [13417], "www.apprenticeships.scot": [18959], "www.ubuntu-mate.community": [17106], "users.admin.badgeville.com": [1607], "alumni.law.ox.ac.uk": [17271], "dailypix.me": [4118], "sqlite.org": [14163], "chilebit.net": [3076], "nlg.org": [10936], "www.gfi.com": [6324], "*.nationalacademies.org": [11045], "secure.voyage-prive.com": [17857], "*.sb-innovation.de": [14078], "act.ucsd.edu": [16939], "volkswagenbank.de": [17830], "vpac.org": [17498], "*.grnet.gr": [6912], "*.fullerton.edu": [6255], "sony.se": [15143], "tradeblock.com": [16634], "ssl.linksynergy.com": [9381], "app.shareconnect.com": [14662], "rarbg.to": [19534], "safe-in-cloud.com": [14224], "netswarm.net": [11251], "www.littlesvr.ca": [9478], "budgetkredit.ch": [2394], "careersfdr.ucc.ie": [16933], "docs.connect.squareup.com": [15329], "tools.manageengine.com": [9940], "www.highseer.com": [7403], "pkso.so.ch": [19648], "wiki.tfes.org": [16164], "*.photobucket.com": [12644], "id.guardian.co.uk": [7000], "123.sogou.com": [19606], "www.oxfordlearnersdictionaries.com": [12191], "bolton.greenparty.org.uk": [6925], "thewatershedresidence.com": [16321], "newsledge.com": [19434], "gateway.ncl.ac.uk": [10884], "dreampass.jp": [4752], "intranet.sydney.edu.au": [19649], "si0.twimg.com": [16877], "www.bprbzk.nl": [11132], "*.oops.org": [11897], "*.inbox.lv": [8038], "afcad.engineering.osu.edu": [11760], "www.rapid7.com": [13553], "feedback2.yandex.by": [18648], "comlaude.com": [3459], "lists.netfilter.org": [11225], "my-qa.symantec.com": [15715], "www.mediaroots.org": [19390], "pureinfo.com": [13239], "empirehost.me": [19156], "4chan-ads.org": [158], "wikis.mit.edu": [9749], "www.thetinhat.com": [16319], "*.checkm8.com": [3046], "pcbrowser.dd.qq.com": [13285], "www.maltris.org": [9924], "www.cir.ca": [3153], "www.realvnc.com": [13627], "www.comnews-conferences.ru": [3452], "nationbuilder.com": [11043], "thefastandthefurious.com": [5683], "mc.vanderbilt.edu": [17557], "keybase.io": [8868], "vbseo.com": [17469], "ua.icecat.biz": [7914], "bitcoinforum.com": [1979], "www.fastsoft.com": [5675], "www.whistleout.com.au": [18248], "iu.edu": [8064], "vod.super8-movie.com": [12394], "microsoft.com": [10364], "www.rosettacode.org": [13970], "www3.bibl.liu.se": [9083], "www.authy.com": [1411], "www.superguarantee.com": [15613], "mailmax.trustwave.com": [16799], "trklnks.com": [16754], "capitalone360.com": [2819], "aquent.us": [1144], "fsrmedien.htwk-leipzig.de": [7114], "uavisitscheduler.wustl.edu": [17993], "bounty.github.com": [6680], "ubnt.com": [17084], "blogs.technet.com": [16030], "peoplefinder.gmu.edu": [6544], "www.trustly.com": [16796], "backlift.com": [1600], "info.internet.org": [8278], "www.mov24hr.com": [18666], "uni.xkcd.com": [19785], "berkeleychessschool.org": [1786], "tek.no": [16063], "www.assoc-amazon.de": [1289], "irc.tfes.org": [16164], "marketdojo.com": [10010], "www.ballerup.dk": [1630], "secure-donor.com": [14481], "stage.beaker-project.org": [1729], "democracy.canterbury.gov.uk": [2811], "www.dnshistory.org": [4067], "etracker.de": [5390], "admissions.rotherham.gov.uk": [13979], "king.com": [8897], "www1.cisco.com": [3162], "secure.gettyimages.co.*": [6621], "*.thepermitstore.com": [16226], "wiki.openmrs.org": [11953], "erinn.org": [5344], "apsislead.com": [1140], "ssl.tiggerswelt.net": [16441], "cdt.org": [2565], "p3.raasnet.com": [13655], "www.fafsa.gov": [5550], "api3.geo.admin.ch": [19648], "static-ak.hypem.net": [7643], "partner.pricegrabber.com": [13052], "shef.ac.uk": [17339], "www.zeeland.nl": [11132], "www.socializer.cc": [15071], "*.pickaweb.co.uk": [12660], "forum.selfhtml.org": [19580], "demo.1wt.eu": [48], "webapp.icarol.com": [19272], "dv-zeuthen.desy.de": [4399], "*.rubygems.org": [14021], "www.educatetheworld.com.au": [5094], "west-midlands.police.uk": [18208], "studenthealth.wustl.edu": [17993], "slaveryfootprint.org": [14950], "www.hsv.se": [7100], "blog.coinjar.com": [3397], "csis.ysu.edu": [18742], "store.wpiinc.com": [18457], "ubmail.buffalo.edu": [17297], "www.solarflare.com": [15112], "www.eloedge.com": [4923], "greenpeace-energy.de": [6933], "live.paloaltonetworks.com": [12349], "*.powerpay.biz": [12992], "*.kde-apps.org": [19462], "mailman.videolan.org": [17688], "i.embed.ly": [5197], "pass.yandex.ua": [18656], "www.coloradoattorneygeneral.gov": [3439], "ideoclick.com": [7942], "anders.com": [997], "www.cable6.net": [2702], "www.o2shop.cz": [16076], "badosoft.com": [1610], "eshop.upc.cz": [17000], "www.kanotix.org": [8782], "urshare-prod1.urel.berkeley.edu": [17240], "i.kinja-img.com": [8903], "toolbarbrowser.com": [16554], "playonlinux.com": [12793], "tracking.websitealive.com": [18149], "usukita.org": [17068], "adversary.org": [655], "www.diagonalperiodico.net": [4441], "www1.amazon.co.uk": [917], "mailman.jcea.es": [8540], "visitormotion.com": [5390], "cdn.static-economist.com": [15426], "www.mailoutinteractive.com": [9889], "www.kbs.de": [8940], "owncloud.aktivix.org": [771], "webmailer.telecolumbus.net": [16073], "lookout.com": [9601], "www.telebasel.ch": [19667], "liaison.uic.edu": [17231], "autotraderstatic.com": [1419], "wmail1.cc.ntu.edu.tw": [10971], "www.campinaopschool.nl": [2783], "blog.popcorn-time.se": [12914], "www.cwc.tid.gov.hk": [7077], "www.jadu.net": [8492], "secure.xdomain.ne.jp": [18553], "*.cashforcontracts.com": [2880], "foundation.berkeley.edu": [17240], "www.slides.com": [14964], "my.smoothwall.org": [15012], "www.pajustice.org": [12539], "*.sec.s-msft.com": [14058], "*.rambler.ru": [13540], "android.git.linaro.org": [9361], "www.ffa.ro.vutbr.cz": [17522], "snapengage-5.wpengine.netdna-cdn.com": [15027], "channelx.biz": [3005], "images.dailykos.com": [4116], "www.termsofservicegenerator.com": [6716], "www.matsuev.com": [4364], "popmodels.cancercontrol.cancer.gov": [2805], "trackbar-bap.navigator.web.de": [18050], "cmis.alfresco.com": [802], "www.usask.ca": [17338], "precursorapp.com": [13022], "www.projectmeshnet.org": [13139], "www.kenexa.com": [8848], "www.odmwheels.com": [11616], "i1.social.s-msft.com": [14058], "viewfromtheedge.progress.com": [13132], "www.alfa.cz": [801], "www.rare.us": [13564], "nces.ed.gov": [4889], "ort.fi": [15610], "www.store.economist.com": [5060], "nerdsnook.com": [11160], "app.asana.com": [1242], "cleverbridge.org": [3240], "csctrustedsecure.com": [2667], "podnapisi.net": [12847], "*.iacr.org": [8255], "www.linshunghuang.com": [9360], "share.flipboard.com": [5925], "www.broadcast.ch": [19621], "tamu.edu": [16154], "espo.nasa.gov": [10869], "kontakt.amnesty.se": [972], "jwz.org": [19330], "support.iraiser.eu": [8353], "arkos-bbs-cdn.citizenweb.io": [3173], "www.macruby.org": [9822], "*.appthemes.com": [1110], "pssap.gov.au": [13212], "terveysportti.fi": [16133], "www.gymglish.com.br": [7038], "i18n.tiki.org": [16444], "support.qq.com": [13285], "joomla-security.de": [19324], "ja.net": [8414], "gaiaonline.com": [6405], "swefair.engineering.osu.edu": [11760], "www.casperogfrank.dk": [2886], "www.unity3d.com": [17220], "my.com": [10743], "wpc.016b.edgecastcdn.net": [18049], "addons.instantbird.org": [8186], "blog.woobox.com": [18417], "www.gaia-gis.it": [6404], "dwolla.com": [4816], "www.jusek.se": [8686], "www.raur.co": [13400], "www.ssllabs.com": [14180], "detectify.com": [4402], "mail.latino.aol.com": [321], "fr2.rpmfind.net": [14004], "sbrf.ru": [14322], "ga.youcanbook.me": [18703], "benchmarking.greenit-bb.de": [6918], "egg.alipay.com": [817], "www.tunisia-sat.com": [16832], "www.blosxom.com": [2123], "game.timezero.ru": [16458], "www.hexagon.cc": [7380], "nyaa.eu": [11595], "www.coindl.com": [3392], "css-hx.newjobs.com": [11318], "*.shop.linuxnewmedia.com": [9396], "www.kasperskypartners.com": [8810], "www.11footballclub.com": [21], "careerlaunch.jpl.nasa.gov": [10869], "geogebra.org": [6537], "www.anidb.net": [1022], "www.hotmail.co.jp": [7557], "secure.budgetinsurance.com": [2392], "helfen.global2000.at": [6720], "structuralengineering.de": [7114], "kb.iweb.com": [7875], "*.columbia.edu": [3449], "news.smzdm.com": [15017], "www.sina.is": [14841], "track.movad.net": [10626], "members.bitcoinfoundation.org": [1980], "ijobs.independent.co.uk": [8053], "www.docusign.net": [4630], "www.selectricity.org": [14566], "api.paymentwall.com": [12479], "partners.alfresco.com": [802], "jobs.london-fire.gov.uk": [19371], "www.kanotix.net": [8782], "linuxplumbersconf.com": [9397], "secure.sky.com": [14924], "one.org": [11640], "truecrypt71a.com": [16767], "liveinternet.ru": [9488], "justeat.nl": [19328], "uploads.strikinglycdn.com": [15524], "support.imation.com": [7986], "depts.washington.edu": [17291], "www.maths.ox.ac.uk": [17271], "theswirlworld.com": [1307], "entimg.s-msn.com": [14059], "goeshow.com": [6799], "mediatemple.net": [10165], "openlinksys.info": [11950], "wiki.nuug.no": [10979], "connecthelp.wustl.edu": [17993], "verizon.net": [17626], "linuxaria.com": [9427], "emilstahl.dk": [5208], "www.lifars.com": [9328], "www.ncisf.org": [10882], "media.idownloadblog.com": [7711], "www.zencache.com": [18817], "bk.jd.com": [8423], "cdn.playstationnetwork.com": [12796], "manhattan-institute.org": [9953], "ewh.ieee.org": [7715], "standorte.deutschepost.de": [19112], "application.apple.com": [1120], "*.ilius.net": [10214], "seancassidy.me": [14440], "boxpn.com": [2260], "www.laup.nu": [9170], "*.norrgruppen.se": [11489], "hosting.jino.ru": [8575], "static.webplatform.org": [18079], "www.libreoffice-from-collabora.com": [9309], "iservice.uniontrib.com": [17070], "voices.allthingsd.com": [839], "ics-cert.us-cert.gov": [17415], "eogrid.esrin.esa.int": [5430], "www.bhosting.ru": [1519], "www.gitlab.com": [6678], "fashiondip.com": [5666], "blog.kaspersky.com": [8806], "ws.blockchain.info": [2090], "bigdata.stanford.edu": [15382], "s.mxmcdn.net": [10739], "vrt.outbrain.com": [12150], "company.zynga.com": [18933], "cn.cryptonator.com": [3883], "*.qt-apps.org": [19462], "dragonflybsd.org": [4738], "mozdev.org": [10647], "www.canon.ru": [2809], "theatln.tc": [1920], "www.over-blog.com": [12156], "www.altex.ro": [886], "u.m.taobao.com": [15952], "sorry.google.com": [6846], "schulinfo.zvv.ch": [19806], "idox.bathnes.gov.uk": [1689], "privacysos.org": [13083], "buzzurl.jp": [2481], "*.alluremedia.com.au": [863], "ih2.redbubble.net": [13660], "pay.qq.com": [13285], "muni.cz": [10704], "wargaming.com": [17978], "file.gmobb.jp": [6342], "ing.com": [7769], "apply.jhu.edu": [16296], "www.blockmetrics.com": [2087], "elive.uaa.alaska.edu": [17233], "www.betterplace.org": [1828], "textracer.dk": [16161], "www.tripadvisor.co.uk": [19698], "css.loveplanet.ru": [9627], "license.avira.com": [1449], "www.firm24.com": [5864], "www.library.ecc-platform.org": [4879], "ozel.yandex.com.tr": [18649], "asplos14.cs.illinois.edu": [17258], "secure.bookhostels.com": [18042], "excitations.com": [5486], "talentsmart.com": [15920], "www.fomori.org": [5988], "*.drugsforum.eu": [4776], "anypoint.mulesoft.com": [10691], "maketecheasier.com": [9909], "www.sustainableelectronics.org": [15665], "*.nostarch.com": [11445], "into.aalto.fi": [390], "www.covad.com": [3724], "*.engineering.com": [5266], "leap.southdevon.ac.uk": [15188], "web.icq.com": [7690], "www.sky-ip.org": [14923], "app.intergi.com": [8249], "conduit.com": [3564], "gfx5.hotmail.com": [7559], "www.tpfrb.dk": [16623], "www.payoneer.com": [12483], "hosting.uk.adjug.com": [526], "*.tum.de": [16036], "surge.sh": [15653], "sip.upc.ie": [17001], "www.terrapass.com": [16127], "shop.politiken.dk": [12876], "legacy.qualaris.com": [13327], "luminoworld.com": [9666], "futurity.org": [6285], "www.neos.eu": [10899], "revenuesbenefits.havant.gov.uk": [19237], "privacy-handbuch.de": [13081], "ibanking.cimbthai.com": [2608], "www.silverstripe.org": [19591], "www.privatebank.citibank.com": [3171], "static-wap.norton.com": [11505], "www.esellerate.net": [5357], "*.quizaction.de": [13372], "*.monetate.net": [10545], "www.pindropsecurity.com": [19495], "www.wpacracker.com": [3284], "techcommons.stanford.edu": [15383], "www.ipqualityscore.com": [7795], "lmsa.stanford.edu": [15382], "beta.kneon.com": [8942], "shop.lenovo.com": [9251], "bestbuy.ugc.bazaarvoice.com": [1801], "www.millwardbrown.com": [10398], "www.dustri.org": [4811], "dashboard.rapidleaf.com": [13556], "blog-assets.pinterest.com": [12699], "www.janestreet.com": [8511], "www.scandinavianphoto.no": [14334], "www.a3li.li": [224], "em.gov.au": [1389], "jackandjill.ie": [8481], "fr.thinksteroids.com": [9737], "service.gmx.net": [6350], "assets-production.rovio.com": [13989], "www.linuxtag.org": [9417], "*.bps.org.uk": [1538], "skrill.com": [14919], "cdn.egopay.com": [5116], "mywebsitepersonal.1and1.ca": [52], "onlinesbi.com": [11873], "www.citl.illinois.edu": [17258], "cf2.imgobject.com": [5654], "shop.flixbus.cz": [5931], "login.attachmategroup.com": [1335], "s1.hughesnet.com": [7603], "www.zpchips.com": [18765], "supersec.com": [15634], "corrent.org": [3686], "creativelittlereaders.com": [3784], "www.sixxs.net": [14890], "css-seeker.newjobs.com": [11318], "go.unbounce.com": [17153], "lkab2.tdconline.se": [15799], "userscripts.org": [17432], "mysolarcity.com": [15109], "community.logentries.com": [9553], "*.king.com": [8897], "oschina.net": [12118], "aggemam.dk": [725], "www.downstreamtoday.com": [4729], "forum.whmcs.com": [17906], "download.libreswan.org": [9316], "tradeking.com": [16635], "*.flashtalking.net": [5907], "planet-lab.org": [12763], "www.4runnerforex.com": [153], "kakao.com": [8705], "go.usa.gov": [17029], "contact.fitbit.com": [5887], "eurexchange.com": [5400], "*.fifi.org": [5780], "xfce-look.org": [19461, 19462], "piwik.bandinelli.net": [1639], "kura.io": [9041], "c.ymcdn.com": [18620], "oas.guardian.co.uk": [7000], "origin.at.ai": [796], "dailystar.co.uk": [4123], "regonline.com": [13725], "compendium.com": [3516], "mybell.bell.ca": [1763], "fossies.org": [19191], "2008.asiabsdcon.org": [1258], "powerschool.lasallehs.net": [9161], "account.ipvanish.com": [7799], "www.cascadingmedia.com": [2873], "moar.so": [10483], "*.specificmedia.com": [15243], "s.ststat.com": [14547], "redbullcontentpool.com": [13667], "press.spotify.com": [15296], "www.dotomi.com": [4702], "www.greenwood.org": [6940], "creditrepairtrust.com": [3790], "eclipso.ch": [5050], "www.bafoegonline.bva.bund.de": [5716], "*.static-nextag.com": [11363], "www.caller.com": [2753], "kinotehnik.com": [8910], "*.comcourts.gov.au": [3491], "tprc.pharm.buffalo.edu": [17297], "threema.ch": [16399], "ace-analyzer.com": [469], "account.dyn.com": [4820], "portugal.gov.pt": [12943], "privacynotprism.org.uk": [13088], "myheritage.es": [10834], "www.bb.isy.liu.se": [9084], "www.flix123.com": [5930], "kbpublisher.com": [8711], "*.etoro.com": [4978], "industry.1688.com": [36], "www.hotelwifi.com": [7553], "beaverbrooks.co.uk": [1742], "www.globalclimatemarch.org": [6737], "alphablog.citizensadvice.org.uk": [19061], "sloanconsortium.org": [14968], "splash.riverbed.com": [13907], "wiki.linaro.org": [9361], "c.ooyala.com": [11900], "www.ece.unm.edu": [16992], "my.otenet.gr": [12132], "www.housing.osu.edu": [11760], "www.vcd.org": [17474], "katescomment.com": [8815], "au.godaddy.com": [6773], "causes.com": [2909], "a1.sphotos.ak.fbcdn.net": [5700], "rare.us": [13564], "lifewelltravelled.cathaypacific.com": [2904], "www.hipeac.org": [7388], "metrics.mzstatic.com": [10852], "cdn.axonify.com": [1475], "sustainableelectronics.org": [15665], "my.ntu.edu.tw": [10971], "www.slac.stanford.edu": [15383], "alumni.kcl.ac.uk": [8899], "p3.qhimg.com": [13302], "www.essex.gov.uk": [5365], "browserhacker.com": [2374], "community.canvaslms.com": [2814], "zaltbommel.nl": [11132], "mygirlfund.com": [10763], "bitquick.in": [1943], "goodpoint.de": [13594], "darkstar.ist.utl.pt": [16032], "www.bell-labs.com": [1764], "wwwimages2.adobe.com": [615], "kar.kent.ac.uk": [17317], "z.cash": [19799], "convention.liberal.ca": [9294], "tr.norton.com": [11505], "www.politicalwire.com": [12872], "bh.ht.vc": [7587], "jobs.politico.com": [12873], "webmail.vispa.com": [17779], "heimdalsecurity.com": [7285], "press.kaspersky.com": [8806], "gamehouse.com": [6421], "rssinclude.com": [13463], "courant.com": [16731], "www.migrosbank.ch": [19399], "mail-latest.websupport.sk": [18160], "www.vc-server.de": [17472], "www.codeclimate.com": [3363], "*.rpi.edu": [13771], "vitaminshoppe.com": [17794], "hr.osu.edu": [11760], "static.catlinseaviewsurvey.com": [2905], "compte.nextinpact.com": [10903], "thn.li": [15812], "reiseauskunft-iat.bahn.de": [1617], "ir.arm.com": [339], "www.mobile01.com": [10495], "gibraltar.gov.gi": [6637], "bulkorder2.ftc.gov": [5720], "ecommerce.com": [5056], "secure.islington.gov.uk": [8370], "geekhack.org": [6502], "app-us-lb1.resrc.it": [13599], "cdn.doubleverify.com": [4709], "websitealive2.com": [18149], "bitcoin-otc.com": [1962], "www.trustedmessenger.com": [16788], "occupywallst.org": [11709], "csl.stanford.edu": [15382], "db.debian.org": [4275], "direct.yandex.com.ua": [18650], "ozkanhcrg.engineering.osu.edu": [11760], "international.nytimes.com": [11000], "www.durchmesser.ch": [19130], "www.quch.io": [13346], "www-03.ibm.com": [7675], "www.diffoscope.org": [4463], "usnautic.com": [17064], "www.ncpw.gov": [11078], "signup.linkshare.com": [13534], "www.karwansaraypublishers.com": [8801], "extranet.fernwaermewien.at": [18284], "govhack.org": [6865], "www.globalmarinenet.com": [6715], "vote.debian.org": [4275], "coag.gov.au": [3703], "link.packtpub.com": [12319], "opendoor.com": [12008], "www.vizury.com": [17800], "my.gem.co": [6512], "*.chicagotribune.com": [3073], "adwords.google.com.*": [6837], "nl.cloudflare.com": [3285], "*.kopiosto.fi": [8983], "jointhegame.kde.org": [8718], "www.office365.vutbr.cz": [17522], "www.techverse.com.au": [16020], "www.mimsonline.com.au": [9743], "bizx.info": [19004], "tweetadder.com": [16868], "www.ardamis.com": [1174], "helpspanish.cbp.gov": [2523], "isis.poly.edu": [12888], "www.hmailserver.com": [7087], "euinline.msi.com": [9792], "wac.*.edgecastcdn.net": [5079], "i1.code.msdn.microsoft.com": [10364], "www.sparked.com": [15221], "mail.sina.com.cn": [14842], "www.gargoyle-router.com": [19207], "creativecommons.org": [3778], "www.ravendb.net": [13578], "humanrightsfirst.org": [7611], "www.wiebetech.com": [18283], "m.fifedirect.org.uk": [5779], "pear.php.net": [12250], "www.adjuggler.com": [527], "www.openculture.com": [12005], "blog.leeds.ac.uk": [17318], "*.movies.netflix.com": [11230], "xbetsport.com": [18549], "dev.clickability.com": [4827], "webgate.ec.europa.eu": [5421], "developers.fortumo.com": [6060], "www.morawa-buch.at": [19409], "xchange.demandware.com": [4349], "www.kinsta.com": [8911], "postgresql.org": [12974], "famis-sunet.stanford.edu": [15383], "ab.alipay.com": [817], "litebit.eu": [9455], "assets.musicwindow.com": [574], "www.pyneo.org": [13270], "yastatic.net": [18662], "dashboard.optify.net": [12067], "cloudfoundry.com": [3300], "hg.instantbird.org": [8186], "y.wpimg.pl": [19766], "www.universityadmissions.se": [17352], "pjm.com": [12260], "lists.sourceforge.net": [15174], "staticgen.com": [15427], "brx.libreoffice.org": [9311], "sha2sslchecker.com": [14115], "vendetta-online.com": [17604], "redd.it": [13687], "one-tab.com": [11827], "api.cloudmagic.com": [3291], "www.gnome-look.org": [19461], "hgi.rub.de": [13478], "click.google-analytics.com": [6839], "www.silentsender.com": [14787], "*.gp.se": [6368], "*.rtklive.com": [13473], "www.fandango.com": [5652], "vub.sk": [17869], "findthebest.com": [5840], "blog.prediction.io": [13023], "www.cloudorado.com": [3311], "p3pwiz.com": [11176], "www.stopglobalwarming.org": [15485], "stylessl.aliunicorn.com": [819], "thinksteroids.com": [9737], "www.rarediseases.org": [13567], "cdn.staticneo.com": [11157], "blog.filippo.io": [5804], "rosetta.jpl.nasa.gov": [10869], "*.osdv.org": [11667], "relate.kde.org": [8718], "www.djurrattsalliansen.se": [4594], "mirrorreaderoffers.co.uk": [10447], "hertz247.be": [7339], "deals.techdirt.com": [16026], "jogorama.com.br": [8609], "*.hunch.com": [7617], "auditshark.com": [1361], "protectnetwork.org": [13167], "tv-release.net": [16858], "www.mediaxus.com": [10183], "main.makeuseoflimited.netdna-cdn.com": [9907], "www.cyberguerrilla.org": [3961], "dave.org.uk": [4222], "applications.kennedy-center.org": [19335], "armorybids.com": [1204], "www.hfs.washington.edu": [17291], "www.teenshealth.org": [8883], "www.longnow.org": [9591], "www.cloudwear.com": [3317], "it.godaddy.com": [6773], "briansmith.org": [2311], "kidsfootlocker.com": [8884], "reseller.ssl.com": [14176], "moodle.usainteanne.ca": [19720], "resourcecenter.911.gov": [207], "www.denfri.dk": [4360], "jobs.smartbrief.com": [14987], "origin.myfonts.com": [10758], "data.eindhoven.nl": [5127], "www.perel.eu": [17596], "blip.tv": [2079], "www.smartronix.com": [15001], "www.rnl.ist.utl.pt": [16033], "www.sueddeutsche.de": [15577], "voicethread.com": [17821], "medibankhealth.com.au": [10184], "www.admatrix.jp": [531], "tdf-telecom.fr": [15801], "whatsdeployed.paas.allizom.org": [856], "lima.osu.edu": [11760], "naromax.com": [11037], "www.fftfef.org": [5766], "lib.uaa.alaska.edu": [17235], "www.alumni.nottingham.ac.uk": [11528], "flightglobalimages.com": [5920], "theepochtimes.com": [5327], "www.hpi.de": [7090], "static.mmo-champion.com": [3934], "soe.stanford.edu": [15382], "cesta.stanford.edu": [15383], "www.hautelookcdn.com": [7241], "www.accessofficeproducts.com": [450], "shibboleth.buffalo.edu": [17297], "qas2.yandex.com.tr": [18649], "www.jud2.ct.gov": [2680], "forums.adafruit.com": [550], "www.graysofwestminster.co.uk": [6903], "formulabuckeyes.engineering.osu.edu": [11760], "www.profitbricks.de": [13128], "docs.cloud.databricks.com": [4197], "ozon.travel": [12198], "www.modxcloud.com": [9772], "www.sofawolf.com": [15088], "www.accessdata.fda.gov": [5561], "niap-ccevs.org": [10915], "spench.net": [15260], "fls-na.amazon-adsystem.com": [909], "multiply.com": [10701], "*.s3.envato.com": [5307], "paymentwall.com": [12479], "biology.williams.edu": [18316], "meirong.taobao.com": [15952], "www.yourpshome.net": [18726], "*.xenogamers.org": [18563], "support.stormpath.com": [15500], "www.cimbclicks.in.th": [2608], "mobilelending.anz.com": [315], "assets.linuxacademy.com": [9418], "ocelot.li": [11710], "secure.shareit.com": [14669], "kodsana.vdoth.com": [17583], "spamgourmet.com": [15214], "flyn.org": [5967], "nswebmail.uk.clara.net": [3212], "www.passed.cc": [12427], "partners.centrify.com": [19048], "blog.getbootstrap.com": [6609], "www.freeutopia.org": [6154], "www.roketfiyat.com": [13953], "bitcoin-contact.org": [1958], "www.pamela.biz": [12352], "www.pcre.org": [12229], "b2bmarketing.bizo.com": [2031], "webdav.mydrive.ch": [10829], "www.jekkt.com": [8542], "blog.aerofs.com": [688], "api.vpsfree.cz": [19743], "autodiscover.yandex.by": [18648], "s7.mt-cdn.net": [9798], "businesscompanion.info": [2459], "www.tenmarks.com": [16107], "www.recurse.com": [13653], "plugin-planet.com": [12826], "downloads.rc.fas.harvard.edu": [7218], "register.it.ox.ac.uk": [17271], "dees.dict.cc": [4455], "www.lucina.net": [9647], "tripwire.com": [16749, 16750], "reaganlibrary.gov": [19541], "px.spiceworks.com": [15266], "dba.sedo.de": [14540], "blog.l0cal.com": [9059], "www.vabali.de": [17525], "www.geeknetmedia.com": [6505], "www.sk-nic.sk": [14893], "support.textmagic.com": [16157], "bgpstream.com": [1513], "*.epartnershub.com": [5316], "*.socialshows.net": [15061], "*.starmoney.de": [15392], "knsaber.com": [16550], "owa.clients.kiwiirc.com": [8930], "ajax.dynatrace.com": [4825], "secure.itradecimb.com.my": [2606], "www.cda.nl": [10935], "*.wikifur.com": [18289], "fakturownia.pl": [5639], "cgmarketingsystems.com": [2977], "discussionsjapan.apple.com": [1120], "www.mybb.com": [10823], "www.rapidgator.net": [13560], "*.nathnac.org": [11087], "public.web.cern.ch": [2575], "*.virool.com": [17742], "cloud.runabove.com": [14034], "getstarted.uow.edu.au": [17350], "www.nwppn.nhs.uk": [10913], "www.hardcoreteengirls.com": [7203], "pcs.baidu.com": [1619], "airquality.portsmouth.gov.uk": [19508], "mobile.yandex.ua": [18656], "ladderslasher.d2jsp.org": [3997], "www.youtube.ph": [18709], "blockitpocket.com": [2096], "un.org": [16983], "etuoguan.taobao.com": [15952], "www.isc2cares.org": [7823], "wilkinsons-auctioneers.co.uk": [19760], "sec-i.top.de": [16558], "www.youtube.pt": [18709], "canterbury.gov.uk": [2811], "www.hakkalabs.co": [7170], "www.usersnap.com": [17439], "blob.freenet.de": [6180], "console.turn.com": [16840], "dash.runbook.io": [14036], "oneplus.net": [11841], "ihbb.htwk-leipzig.de": [7114], "brent.gov.uk": [2304], "www.savetheinternet.eu": [14316], "elsevier.com": [5185], "*.rand.org": [13398], "registration.hispeed.ch": [19716], "www.valu.va.gov": [17019], "bikenorth.birmingham.gov.uk": [19000], "atmail.com": [1323], "www.avoiceformen.com": [386], "blackhat.com": [2037], "letstalkbitcoin.com": [9265], "facultydiversity.org": [5628], "rsaconference.com": [13454], "www.kitematic.com": [8924], "last.fm": [9162], "boot.fedoraproject.org": [5726], "cascadingmedia.com": [2873], "hotel.jd.com": [8423], "arukereso.hu": [1237], "airtricity.com": [757], "www.maps.org": [9710], "sydneystudent.sydney.edu.au": [19649], "www.moviefone.com": [10641], "aj.aas.org": [235], "www.arma2.com": [18961], "sharefile.com": [14663], "www.secureserver.net": [14511], "pgi.com": [12248], "apps.eastsussex.gov.uk": [19142], "www.apachecon.com": [1088], "training.manageengine.com": [9940], "goob.tk": [3533], "www.straply.com": [15505], "blog.shopstyle.*": [14719], "webshop.ottos.ch": [19471], "secure.adviva.net": [668], "*.bytelove.se": [2490], "mainstream.radiox.ch": [13516], "pledge.lessig2016.us": [9260], "www.rsc.org.uk": [13457], "www.tn123.org": [19687], "tldrlegal.com": [15822], "elista.rt.ru": [13469], "support.steampowered.com": [15450], "500px.com": [166], "resource.awempire.com": [647], "jira.fitbit.com": [5887], "andor.com": [999], "www.wwte14.com": [17937], "www.bhiab.se": [1836], "jcsu.jesus.cam.ac.uk": [2763], "www.c9.io": [3280], "kemi.se": [8719], "*.vid.ly": [17675], "my.cloudfloordns.com": [10371], "www.alt-sheff.org": [871], "*.fordela.com": [6021], "www.tomorrow-focus-media.de": [16542], "indexing.familysearch.org": [5646], "tek.io": [1920], "www.telegram.me": [16079], "www.agmk.net": [729], "amnesty.se": [972], "itu.int": [7852], "vianet.co.uk": [17663], "www.shadowofmordor.com": [14654], "oagtravel.com": [16927], "www.checkmyping.com": [3052], "www.myip.ms": [10806], "www.jaspan.com": [8524], "www.dartlang.org": [4157], "realtidbits.com": [13631], "snapengage.com": [15026, 15027], "cdn.xignite.com": [18572], "xplosion.de": [18585], "*.torproject.org": [16576], "docs.coinkite.com": [3406], "provost.wustl.edu": [17993], "de.ioam.de": [7783], "www.bbbsilicon.org": [1495], "hit32.hotlog.ru": [7547], "www.youngminds.org.uk": [18717], "downloads3.mamp.info": [19379], "cdn.theawl.com": [16179], "office365.vutbr.cz": [17522], "iaapa.org": [7661], "discounttheatre.com": [4544], "www.franziskawellner.de": [6105], "colorlines.com": [3445], "*.hifxonline.co.uk": [7387], "b2b.amoena.fr": [979], "maps.yandex.kz": [18652], "demo1.mashery.com": [10046], "www.rxpharmacyusa.com": [14051], "ixicorp.com": [7880], "cti.w55c.net": [17891], "onlineforms.vodafone.ie": [17815], "app-de3.resrc.it": [13599], "www.xav.com": [18546], "www.tescohelp.com": [16139], "tmsz.com": [16516], "iml.osu.edu": [11760], "gateshead.gov.uk": [6467], "one.com": [11828], "analytics.proxer.me": [13176], "registrar.uic.edu": [17231], "blog.acsf.cornell.edu": [3676], "giving.givingprograms.com": [6691], "kinghost.com.br": [8898], "www.loomio.org": [9603], "*.pixinsight.com.tw": [12258], "*.justhost.com": [8689], "brd.nci.nih.gov": [11052], "npr.org": [10950], "cargocollective.com": [2850], "members.literotica.com": [9467], "cqh.harvard.edu": [7219], "www.architektur.uni-kl.de": [17169], "mysite.somerset.org.uk": [15128], "*.chime.in": [3080], "www.forum-3dcenter.org": [19190], "enterprise.cloudshark.org": [19068], "s.xnimg.cn": [18581], "factoryexpodirect.com": [5627], "www.terminal.com": [16122], "unternehmen.hofer.at": [299], "*.akademiskahus.se": [759], "www.cscportal.org.uk": [19095], "intra.lshtm.ac.uk": [9576], "bcvs.ch": [1655, 19333], "mobile.tmall.com": [19684], "www.opm.gov": [11654], "www.git.io": [6672], "*.usconstitution.net": [17038], "www.castlebridge.ie": [2892], "jobboerse.arbeitsagentur.de": [1152], "appeal.jdpay.com": [8429], "extractwidget.com": [5525], "www.ascendapp.com": [1245], "providertalk.com": [13018], "www.fncash.com": [5581], "mozest.com": [10649], "bit.ly": [2002], "www.orderstatus.earthlink.net": [5007], "nrc-cnrc.gc.ca": [11058], "go8.edu.au": [6768], "stuff.mit.edu": [9749], "calendarwiz.com": [2736], "tapgage.net": [15957], "www.careerbuilder.com": [2841], "www.privatbanka.sk": [13096], "*.pragmaticmarketing.com": [13013], "www.nelhage.com": [10904], "www.dntly.com": [4608], "cdn.jolla.com": [8622], "www.kenneth.io": [8849], "asset-a.soupcdn.com": [15167], "jenkins.qa.ubuntu.com": [17102], "status.icq.com": [7690], "www.werkenbijdeoverheid.nl": [11132], "www.megastock.ru": [10232], "memory.loc.gov": [9528], "siamogeek.com": [19590], "f5.com": [5546], "www.valueshop.co.uk": [17544], "www.bettercgi.com": [1825], "*.apnic.net": [1257], "www.nachhaltigesbauen.htwk-leipzig.de": [7114], "forum.alwaysdata.com": [897], "speedcoin.org": [15256], "smuxi.im": [15016], "a3.lscdn.net": [9102], "www.iana.org": [7667], "velofinder.ch": [19732], "jobs.asmallorange.com": [214], "blog.growth.supply": [19230], "m.help.1and1.com": [51], "f.fanli.com": [5655], "www.vh2.vutbr.cz": [17522], "sanet.me": [14077], "i.focus.de": [5974], "cp.conoha.jp": [3587], "shop.magix.com": [9708], "strom.tchibo.de": [15985], "ping.gg": [12682], "ipv4.wtfismyip.com": [17933], "2015.appseccalifornia.org": [1133], "wrb.plymouth.ac.uk": [12833], "jasondavies.com": [8523], "archive.today": [1164], "reserve.cdn-apple.com": [2553], "kinox.tv": [19337], "pastee.org": [12444], "dl.web.de": [18050], "caipiao.taobao.com": [15952], "telekom.sk": [16088], "upsilon.cc": [17399], "*.shpock.com": [14745], "northants.greenparty.org.uk": [6925], "pushpopcorn.com": [13250], "marinellarose.com": [10000], "montereybayaquarium.tumblr.com": [16825], "www.filtrala.org": [5815], "px.tmall.com": [19684], "penango.com": [12531], "global.ebsco-content.com": [4871], "www.unido.org": [16990], "dvd.xakep.ru": [18539], "www.dfrdb.gov.au": [4307], "*.buddypress.org": [2391], "members.easynews.com": [5027], "bennbookings.rugby.gov.uk": [14027], "*.indymedia.nl": [8082], "www.mtswelding.co.uk": [19415], "www.novainfosec.com": [11440], "www.iws.htwk-leipzig.de": [7114], "dotcomsecurity.de": [4698], "usercenter.checkpoint.com": [3048], "www.fixubuntu.com": [5897], "app.whappodo.com": [18227], "secure.pepperfish.net": [12555], "www.anonymox.net": [1049], "ar.chaturbate.com": [3035], "activemelody.com": [500], "about.usc.edu": [17278], "www.respekt.cz": [19548], "glyph.im": [6754], "www.aggemam.dk": [725], "lpo.org.uk": [9097], "nac.vodafone.ie": [17815], "www.bccla.org": [1505], "forum.bytemark.co.uk": [2489], "www.relayrides.com": [13752], "autodiscover.comscore.com": [3453], "dev.tocco.ch": [16524], "au4.uicdn.net": [16958], "web1.johnshopkins.edu": [8611], "media.dyson.com": [4837], "randischumann.dk": [13541], "frascatitheater.nl": [6108], "*.fuskator.com": [6279], "tripadvisor.co.uk": [19698], "www.tent.io": [16115], "spiegel.de": [15272], "encryptmas.org": [5238], "www.typo3.org": [15894], "home.1688.com": [36], "app.mouseflow.com": [10624], "fortbildung.springerzahnmedizin.de": [15310], "*.itu.dk": [7841], "learningdesign.usc.edu": [17278], "heatmap.gemius.com": [6516], "xakep.ru": [18539], "www.corpimages.de": [3679], "secure.siteparc.fr": [14884], "iuanyware.iu.edu": [8064], "cdn.onapp.com": [11808], "masterh5.adriver.ru": [534], "api.wp.6scan.com": [183], "*.telegram.com": [16078], "goexplore.net": [6777], "noip.com": [11444], "www.southernct.edu": [15195], "panet.andover.edu": [12623], "www.hbokids.com": [19241], "kinox.am": [19337], "www.mkk.com.tr": [9754], "www.certs.vutbr.cz": [17522], "de.pornworms.com": [12928], "www.decathlon.es": [19771], "netbank-ratenkredit.web.de": [18050], "loisirs.cff.ch": [15693], "tcodevelopment.com": [15988], "ful.cambeywest.com": [2765], "denfri.dk": [4360], "cloudmonitor.nimsoft.com": [2509], "stats.wmtransfer.com": [18076], "www.telmasters.com": [16066], "docs.sencha.com": [14576], "niveusluna.org": [9670], "www.bertrandmeyer.com": [1799], "arma3.com": [1202], "www.montanalinux.org": [19408], "rotesource.com": [13976], "thestaradvisers.com": [16312], "uclouvain.be": [17230], "staticsitegenerators.net": [15430], "forexct.com": [6034], "www.libvirt.org": [9323], "www.belgacoin.com": [1761], "autovps.net": [1423], "www.payhip.com": [12475], "tracker.zentyal.org": [18834], "gamasutra.com": [16021], "siepr.stanford.edu": [15383], "countbayesie.com": [3704], "www.mycampina.com": [2783], "forums.warframe.com": [17977], "deathmask.net": [4266], "www.npac.com": [10946], "www.question-defense.com": [13355], "cinemovies.fr": [3141], "makeshop.jp": [9906], "3scale.net": [136], "xtwo.ne.jp": [18603], "nicehash.com": [11382], "www.getify.com": [6614], "dv.developer.here.com": [7326], "utica.edu": [17454], "youvisit.com": [18711], "www.geolistening.com": [6540], "www.commlink.org": [3472], "apleywoodprimary.taw.org.uk": [19661], "www.gigenetcloud.com": [6657], "mainlinehobby.net": [9896], "avatars3.githubusercontent.com": [6680], "wwwmail.urz.uni-heidelberg.de": [17174], "www.intevation.net": [8297], "deutschebkk.de": [4406], "www.mims.com": [9743], "www.weechat.org": [18177], "www.nuand.com": [11566], "*.siamogeek.com": [19590], "www.buckid.osu.edu": [11760], "childcare.bury.gov.uk": [19027], "lochem.nl": [11132], "img.cash.ch": [19043], "spaceindustrynews.com": [15210], "www.ssc.osu.edu": [11760], "smt.admaster.com.cn": [530], "plone.org": [12819], "nxtgn.org": [11594], "memecenter.com": [10249], "www.amnistia.org.mx": [977], "www.cambeywest.com": [2765], "nl.havering.gov.uk": [7244], "www.palmcoastdata.com": [12345], "f1.sapseod.mindtouch.us": [10410], "system76.com": [15758], "cdn.tripadvisor.com": [16741], "mynaweb.com": [10840], "streammygame.com": [15517], "merpic.intelliwebservices.com": [8219], "silvawoodflooring.co.uk": [14798], "eforms.aylesburyvaledc.gov.uk": [18976], "www.sierraware.com": [14772], "usb.org": [17035], "evaske.com": [5435], "www.lincstothepast.com": [9365], "secure.api.search.sky.com": [14924], "www.domaindiscount24.com": [19123], "www.mailgun.com": [9883], "woolworthsonline.com.au": [18422], "accounting.xmission.com": [18529], "youtube.com.kw": [18709], "*.ijreview.com": [7746], "googleblog.blogspot.com.*": [2113], "comnews-conferences.ru": [3452], "meerssen.nl": [11132], "www.pandoblog.com": [12358], "budgetinsurance.com": [2392], "static.enaza.ru": [5230], "atlseccon.com": [18968], "www.fz.htwk-leipzig.de": [7114], "www.caprioli.se": [12590], "entroware.com": [5302], "www.tiggerswelt.net": [16441], "drive.doublerobotics.com": [4713], "www.sidux-ev.org": [14767], "upcmail.upc.nl": [17002], "www.fishnetsecurity.com": [5882], "connectproxy.wilmerhale.com": [18319], "auto.yandex.by": [18648], "ct.googleapis.com": [6839], "tickets.openpgpjs.org": [11965], "target.zedo.com": [18808], "www.mobilepki.org": [10503], "www.streamtip.com": [15519], "br.inter.net": [8229], "www.rottnestexpress.com.au": [13983], "berlin-airport.de": [1790], "cbsn.ws": [1920], "p5.qhimg.com": [13302], "datacvr.virk.dk": [17741], "www.steamcommunity.com": [15451], "groups.cern.ch": [2575], "vtunnel.com": [17520], "www.afcyhf.com": [3481], "ms.yahoo.co.jp": [18640], "stormfront.org": [15498], "www.backpackerslucerne.ch": [1601], "www.envato.com": [5306], "bestvpn.com": [1808], "www.unrealircd.org": [17364], "gprecruitment.hee.nhs.uk": [10913], "www.gentlelabs.com": [6528], "www.pastee.org": [12444], "www.westsussex.gov.uk": [18211], "godpraksis.no": [6802], "fasthosts.co.uk": [5685], "cms.htw-berlin.de": [7112], "regizug.zg.ch": [19648], "www.vacareers.va.gov": [17019], "cedmagazine.com": [2569], "cdn.alldebrid.com": [830], "www.opendoors.org": [12009], "www.ubmaviationnews.com": [16927], "projects.thm.de": [15811], "www.hartwork.org": [7217], "obsproject.com": [11609], "lrb.co.uk": [9582], "hrcdn.net": [7143], "juke.mmi.bemobile.ua": [1724], "secure.mozilla.jp": [10655], "samsung.com.cn": [14265], "techendo.com": [16027], "schaafpc.com": [14345], "secure.chemistwarehouse.com.au": [3060], "vadenpatient.stanford.edu": [15383], "imperialviolet.org": [8017], "*.nrc.nl": [10956], "srlabs.de": [14521], "images.c.switchadhub.com": [15701], "pledgie.com": [12812], "1und1.de": [68], "et02.xhcdn.com": [18514], "forum.ovh.it": [12173], "vpstudentsblog.utoronto.ca": [17343], "youngalumni.stanford.edu": [15383], "socialmediascanner.eset.com": [5358], "*.freewheel.tv": [6135], "api.hub.jhu.edu": [16296], "www.maketecheasier.com": [9909], "www.jpcert.or.jp": [8447], "login.teamviewer.com": [16004], "dustin.se": [4810], "www.ffa.vutbr.cz": [17522], "powerdns.net": [12991], "*.gnome-look.org": [19462], "rvm.io": [13482], "order.mysecureconnect.com": [10783], "bitshares.org": [1946], "cdn.lst.fm": [9162], "cdn.wl.easydategroup.com": [785], "copernicus.cnes.fr": [2634], "*.blau.de": [2060], "es.community.dell.com": [4335], "blog.openmandriva.org": [11956], "www.mikrocontroller.net": [10389], "love2d.org": [9628], "assets.delvenetworks.com": [4340], "t.embed.ly": [5197], "getpersonas.com": [6578], "www.listenerapproved.com": [9451], "static3.wonderwall.com": [18413], "dirk.to": [4535], "*.arsenalnews.net": [8878], "www.pcp.com": [12227], "www.wpx.ne.jp": [18468], "midasgreentech.com": [10373, 10374], "waveney.firmstep.com": [19183], "www.telus.com": [16103], "vidplay.net": [17702], "e210.johnshopkins.edu": [8611], "www.trane.com": [19693], "i2.gallery.technet.microsoft.com": [10364], "api.mtvnn.com": [17661], "www.ece.illinois.edu": [17258], "cdn2.emilstahl.dk": [5208], "huishou.jd.com": [8423], "monitis.com": [10555], "padlet.com": [12325], "researchgateway.wustl.edu": [17993], "www.mighty-hoernsche.de": [2592], "pixel.1und1.de": [68], "ic-live.com": [7907], "www.btcxindia.com": [1575], "censorship.govt.nz": [2939], "depositprotection.com": [4375], "www.sysconfig.org.uk": [15752], "turtl.it": [16847], "www.zadarastorage.com": [18776], "www.olat.uni-hamburg.de": [16951], "www.fourmilab.ch": [6081], "blog.p2pfoundation.net": [12201], "www.otalliance.org": [11680], "multivu.com": [2937], "stationlrowingclub.com": [15434], "store.gomohu.com": [6794], "www.expertbail.com": [289], "buslanepayments.newcastle.gov.uk": [11315], "media.secure-mobiles.com": [14482], "roadtrippers.com": [13917], "kinesis-ergo.com": [8894], "www.usatoday.com": [17031], "speedcrunch.org": [15252], "credoaction.com": [3793], "privacyscore.com": [13094], "www.apache-ssl.org": [1085], "www.boligejer.dk": [2189], "archive.moe": [1165], "bitcoinsil.co.il": [1985], "tipico.de": [16492], "www.law.cf.ac.uk": [2834], "acm.org": [261, 262], "*.g10code.com": [6294], "www.coveralls.io": [3730], "anpdm.com": [1053], "static.isu.pub": [8382], "enrollmentmanagement.illinois.edu": [17258], "triphip.com": [16742], "wyenet.net": [18487], "www.filepicker.io": [5801], "e1.xhamsterpremiumpass.com": [18516], "www.codinghorror.com": [3385], "tent.is": [16116], "m.spontex.org": [15287], "elitekeyboards.com": [5166], "*.4shared.com": [154], "3taps.com": [138], "www.unm.edu": [16991], "*.worldwinner.com": [6416], "vc.ru": [17579], "t3blog.com": [15780], "bitmixer.io": [19003], "www.palantir.com": [12339], "confused.com": [3573], "ccrrockland.cancer.gov": [2805], "internet.yandex.com.tr": [18649], "cryptocoincharts.info": [3872], "*.stevens.edu": [15470], "*.bbc.co.uk": [1499], "*.real.com": [13622], "ivegotkids.com": [8400, 8401], "csis-scrs.gc.ca": [2802], "juicycanvas.com": [8669], "forum.mobilism.org": [19404], "www.binarybiz.com": [1889], "citizenweb.io": [3173], "mas.wiiings.com": [18288], "www.fmaba.com": [5647], "eurodiet.co.uk": [5411], "youtube.gr": [18709], "content001.bet365.com": [1811], "fontdeck.com": [5990], "www.brandsaver.ca": [13121], "inside.cias.rit.edu": [13434], "www.scanningpens.co.uk": [14337], "touch.auto.mail.ru": [9874], "ace-host.net": [471], "atdw.tq.com.au": [16612], "*.m.godaddy.com": [6773], "*.utsandiego.com": [17070], "grad.washington.edu": [17291], "mehring.com": [10235], "cdn.datatables.net": [4188], "shop.aalto.fi": [390], "university.xamarin.com": [18540], "1688.com": [36], "www.undergrad.osu.edu": [11760], "jobs.scot.nhs.uk": [10913], "www.xiscosoft.com": [18576], "www.idsoftware.com": [7924], "bookstore.law.illinois.edu": [17258], "intermediair.snsbank.nl": [14144], "postmaster.live.com": [9483], "heute-show.de": [19800], "marvell.com": [10041], "office.live.com": [9483], "flameeyes.eu": [5901], "geizhals.de": [6511], "hustlermagazine.com": [7633], "jeffmitchell.me": [8545], "cdn3.kongcdn.com": [8976], "mises.org": [10453], "photo.goodreads.com": [6829], "docs.ocf.berkeley.edu": [17240], "www.mycalendarbook.com": [10748], "marketplace.equinix.com": [5334], "p7.qhimg.com": [13302], "lc2.lcstatic.net": [9262], "launchpad.net": [9169], "firma.skolaonline.cz": [19598], "alertbot.com": [788], "tmall.com": [19684], "archive.brent.gov.uk": [2304], "zlavadna.sk": [18878], "www.nordichosting.com": [11476], "www.ruby-lang.org": [14018], "*.helmet.fi": [7301], "www.home.uni-erlangen.de": [17311], "sic.sans.org": [14072], "*.assembla.com": [1278], "digigov.cardiff.gov.uk": [19039], "images.eoportal.org": [5314], "www.laughingsquid.com": [19350], "www.cia.vc": [3131], "www.ed.gov": [4889], "govdex.gov.au": [6864], "jzt.jd.com": [8422], "cloudproven.net": [3301], "secure.dnuk.com": [4482], "*.intellichat.com": [8689], "c.s-microsoft.com": [14057], "www.hackerspaces.org": [7151], "www.net-security.org": [11181], "ddosbreak.com": [4021], "obi.pl": [19452], "media.education.gov.uk": [19149], "riley.nal.usda.gov": [17209], "secularhumanism.org": [14473], "secure.municode.com": [10705], "drupaltraining.stanford.edu": [15383], "cf.geekdo-static.com": [6500], "www.sustainablebusiness.com": [15666], "pagerduty.com": [12332], "store.enthought.com": [5299], "p15.qhimg.com": [13302], "www.cypouz.com": [3987], "blogs.adobe.com": [615], "www.lektorium.tv": [9242], "www.gnu.org": [6357], "reflex.cz": [13719], "m.feedback.yandex.kz": [18652], "www.saic.com": [14067], "*.cadetnet.gov.au": [2714], "api.irccloud.com": [8354], "www.calendarwiz.com": [2736], "wiki.php.net": [12250], "tracks.fit.edu": [5942], "xiscosoft.net": [18576], "fco.gov.uk": [5558], "df.eu": [4029], "telethon.it": [16095], "www.yu.edu": [18675], "haveproof.com": [7242], "vindico.com": [17720], "policy.usc.edu": [17278], "hitfarm.com": [7425], "*.whistleout.com": [18248], "blog.proxpn.com": [19519], "soap.stanford.edu": [15383], "m.weheartit.com": [18017], "solarsystem.jpl.nasa.gov": [10869], "*.bentley.edu": [1781], "sv.libreoffice.org": [9311], "88.208.232.88": [2340], "webmail.cp.pt": [3744], "*.acronis.com": [483], "shouji.jd.com": [8423], "www.bpsshop.org.uk": [1538], "apwu.org": [933], "interpol.int": [8293], "www.register.acs.org": [929], "trustees.osu.edu": [11675], "popsci.com": [12908, 12909], "www2.citibank.com": [3171], "www.upx69.com": [17405], "ci.beap.ad.yieldmanager.net": [13881], "magazin.spiegel.de": [15272], "hwcdn01.vuze.com": [17879], "it.libreoffice.org": [9311], "pofpa.web.cern.ch": [2575], "intelliserver.net": [8218], "tcamp.sunlightfoundation.com": [15601], "jauce.com": [19317], "estore.skifalls.com.au": [19596], "ras.ncl.ac.uk": [10884], "ai-radio.org": [288], "musalbas.com": [10707], "abila.com": [417], "risk.wusm.wustl.edu": [17993], "cryptbin.com": [3847], "www.vlc-addons.org": [19461], "bnl.gov": [19009], "www.ymail.com": [18638], "synthetix.com": [15742], "dev.pipl.com": [10045], "www.strato-hebergement.fr": [14192], "*.blogs.balabit.com": [1624], "inst.winzip.com": [18333], "netmundial.net": [11213], "partners.oo-software.com": [11893], "kid.mysql.cesky-hosting.cz": [19051], "soap.com": [15053], "dl.winehq.org": [18352], "*.appkb.ch": [19333], "st-div.web.cern.ch": [2575], "www.freedesktop.org": [6126], "www.namecoin.info": [11024], "eloquentjavascript.net": [5180], "www.piscatus.se": [12726], "www.revealnews.org": [13841], "consultation.eastsussex.gov.uk": [19142], "www.piratenpartij.nl": [12708], "*.symanteccontent.com": [15715], "os3.nl": [11663], "hostmonster.com": [7537], "*.textbooks.com": [16159], "wiki.allmyvideos.net": [857], "listen.akvorrat.org": [297], "www.vayable.com": [17577], "copernic.com": [3649], "prnt.sc": [19517], "www.yougov.de": [18705], "www.culturalsurvival.org": [3916], "ladygo.tmall.com": [19684], "www.discovermerchants.com": [4550], "top.taobao.com": [15952], "lsi.com": [9100], "vmd.defra.gov.uk": [4314], "www.giving.umd.edu": [17263], "redy.edp.pt": [4896], "charnwood.gov.uk": [3015], "www.witness.org": [18382], "alecomm.com": [787], "edixml.melkweb.com": [2783], "cdnl.tblsft.com": [15984], "www.fandago.com": [5651], "www.chefkoch-blog.de": [3058], "www.fossil-scm.org": [6071], "belkin.com": [1762], "democracy.merton.gov.uk": [10287], "zenodo.org": [19801], "static.bufferapp.com": [2402], "draugiem.lv": [4742], "www.registrar.wustl.edu": [17993], "righttobuy.communities.gov.uk": [19073], "pokec.azet.sk": [1481], "www.scratch.mit.edu": [9749], "xiph.org": [18575], "adspeed.biz": [540], "join.girlsoutwest.com": [6667], "www.atmia.com": [18969], "interactive.stockport.gov.uk": [19628], "ad.a-ads.com": [215], "www.wikidevi.com": [18293], "gameoapp.com": [6433], "ohloh.net": [11766], "parents.williams.edu": [18316], "www.soldierx.com": [15114], "febo.com": [19176], "www.yourlibcat.staffordshire.gov.uk": [15370], "toaster.mysql.cesky-hosting.cz": [19051], "mail.sumologic.com": [15592], "www.biditbob.com": [1845], "help.xsolla.com": [18593], "*.pointroll.com": [12852], "alaskarobotics.com": [777], "shop.vodafone.ie": [17815], "trackalyzer.com": [16630], "loc.gov": [9528], "innsida.ntnu.no": [10964], "quitter.se": [13371], "plot.ly": [12820], "privacyisawesome.com": [5783], "www.kanotix.com": [8782], "facebook.jp": [5623], "ashlandfiber.net": [1253], "bostonglobe.com": [16251], "beta.kccmediahub.net": [8714], "account.my.t-mobile.com": [15772], "media.coveritlive.com": [3735], "www.zamzar.com": [18784], "charting.vwdservices.com": [17880], "www.mondemp3.com": [10543], "zendesk.com": [18824], "class.coursera.org": [3719], "dittdistrikt.no": [4578], "allyou.net": [842], "www.libdrc.org": [9293], "www.aeup.eu": [279], "order.exede.com": [5490], "eservices.ficora.fi": [5771], "tagx.radiox.ch": [13516], "flippa.com": [5927], "www.teamgaslight.com": [16001], "www.openttdcoop.org": [11982], "*.i3d.net": [7659], "mixtapeleak.com": [10469], "web-hosting.com": [18044], "jugger.ru": [8666], "noblewin.rigzone.com": [1916], "*.businesswire.com": [1788], "verisign.fr": [17623], "plastic-bin.com": [12783], "tahetorn.ut.ee": [17069], "tipp10.com": [16493], "app.codefund.io": [3369], "stats.0xbadc0de.be": [7], "dmlp.org": [4046], "customers.asmallorange.com": [214], "worklife.stanford.edu": [15383], "dimebag.peteraba.com": [12591], "wellness.stanford.edu": [15383], "newit.co.uk": [11296], "disqus.com": [4570], "*.diwi.org": [4585], "opensuse.org": [11971], "www.bremer.com": [2300], "perypetie-informacji.panoptykon.org": [12365], "aff.biz": [695], "bol.de": [16171], "mobil.derstandard.at": [19111], "dtunnel.com": [4086], "hosting.adjug.com": [526], "sgsstudentbostader.se": [14113], "mugenmonkey.com": [10689], "gb.redhat.com": [13675], "fb.ecn.api.tiles.virtualearth.net": [17755], "assets.tmz.com": [15832], "iaata.info": [7662], "www.readrboard.com": [13617], "architektur.htwk-leipzig.de": [7114], "www.nekvapor.com": [10897], "oneadmin.cz": [11641], "*.rugstudio.com": [14026], "id.trove-stg.com": [16762], "smartertrack.com": [14997], "dkb.de": [4039], "www.youtube-nocookie.com": [18709], "partnerreg.seagate.com": [14437], "prism-break.org": [12287], "www.akolaproject.org": [768], "record.wustl.edu": [17993], "sitelock.com": [14867], "i.acdn.us": [18638], "wealthytheatre.org": [6889], "nacl.cr.yp.to": [3748], "advertising.paypal.com": [12467], "www.bitwig.com": [2027], "medwatch.dk": [10138], "asp.readspeaker.net": [13610], "planet.qt-project.org": [13314], "www.levo.com": [9275], "www.php-fusion.co.uk": [12249], "www.bem.info": [1511], "secure.footprint.net": [6015], "www.ricoh.co.in": [13879], "www.omguk.com": [11634], "web4all.fr": [18052], "accounts.babbel.com": [1590], "www.simplyhired.com": [14830], "blipp.com": [2080], "www.gftplns.org": [15465], "advisingconnect.osu.edu": [11760], "www.segpaycs.com": [14556], "www.curo.co.za": [3932], "computerbild.de": [19075], "www.architekturinstitut.htwk-leipzig.de": [7114], "*.redbullusa.com": [13666], "www.1wt.eu": [48], "industrybotnetgroup.org": [8076], "raptr.com": [13562], "designers.hubspot.com": [7594], "account.windowsazure.com": [18344], "utakeaway.just-eat.co.uk": [19328], "www.badoo.com": [1609], "portfoliotracker.usatoday.com": [17032], "i3.msdn.microsoft.com": [10364], "dev.www.govhack.org": [6865], "www.festeirice.com.br": [5759], "hyperledger.org": [19271], "stiesx2-ntrs.larc.nasa.gov": [17026], "zimbatm.com": [18867], "on-disk.com": [11806], "s3.plymouth.ac.uk": [12833], "www.tls.so": [15825], "ukinusa.fco.gov.uk": [5558], "maven.alfresco.com": [802], "persona.org": [10662], "counter.li.org": [9392], "serverpros.com": [13018], "i4.sndcdn.com": [15032], "res-4.cloudinary.com": [3307], "glowing.com": [6751], "asp.net": [353], "facilities.med.wustl.edu": [17993], "gtms01.alicdn.com": [805], "webhungary.hu": [18123], "webmedia.bankofamerica.com": [1649], "go.padstm.com": [12327], "faculty.washington.edu": [17291], "*.mastercard.com": [10052], "blu.stc.s-msn.com": [14059], "diagnostics.wpm.neustar.biz": [11280], "wigle.net": [18274], "www.lochem.nl": [11132], "mk2.com": [19402], "selfserve.havant.gov.uk": [19237], "eigenlab.org": [19151], "livejournal.com": [9490], "www.netbeat.de": [11217], "legtux.org": [9236], "cdn2.broadcasthe.net": [2354], "support.gmo.jp": [6345], "www.silkspan.com": [14795], "libertyflailmowers.com": [9301], "www.energiecomfort.at": [18284], "www.britishgas.co.uk": [2340], "static-stg.gbot.me": [6808], "webmail.his.com": [7293], "ib.mebank.com.au": [9736], "www.senderscore.org": [14580], "girlsoutwestfreestuff.com": [6668], "www.gdata.ch": [6293], "www.planetkde.org": [12768], "strongvpn.com": [15531], "ocio.osu.edu": [11760], "www.nightlove.me": [11395], "jiveon.com": [8586], "www.sparkasse.at": [19614], "mobile.hertz.com": [7372], "www.culturesforhealth.com": [3917], "www.crux.nu": [3836], "www.pit-format-online.pl": [19496], "www.kdukvh.com": [3481], "my.ihc.ru": [7736], "*.jamanetwork.com": [8411], "info.sumologic.com": [15592], "gpgtools.org": [6371], "ftepaper.ft.com": [5826], "www.polisforbundet.se": [12869], "jd.com": [8423], "www.pathways2gsfa.org": [12454], "docs.pld-linux.org": [12267], "community.progress.com": [13132], "ric.org": [13429], "*.exinda.com": [5495], "sales.mail.ru": [9874], "www.vtb.ru": [8457], "securosis.com": [14536], "www.xmms2.org": [18522], "uakron.edu": [17082], "help.podio.com": [12846], "www.kaseya.com": [8802], "octoshape.com": [11718], "o2tv.cz": [16076], "users.wix.com": [18383], "www.fshare.vn": [6238], "services.irctc.co.in": [7812], "www.hobbypcb.com": [19254], "shanghu.alipay.com": [817], "api.yandex.com": [18651], "mainelegislature.org": [9895], "hudson.vervehosting.com": [17645], "nurdspace.nl": [10977], "www.profitbricks.com": [13129], "technical.ly": [16034], "gchat.com": [6312], "app.work4labs.com": [18436], "amherst.edu": [954], "www.cocubes.com": [3335], "mobile.theverge.com": [16213], "blogs.zoho.com": [18884], "portrait.gov.au": [11072], "bintraywidget.jfrog.com": [8433], "www.spritesmods.com": [15317], "www.hacktionlab.org": [7160], "www.mugenmonkey.com": [10689], "samba.org": [14261], "techsupportalert.com": [16053], "*.arch-stuff.org": [19462], "idg.se": [7705], "techsupport.uaa.alaska.edu": [17233], "smetrics.mastercardintl.com": [10052], "appdynamics.com": [1104], "systemcenteradvisor.com": [15760], "spatialpoint.com": [15232], "www.findip-address.com": [19180], "fcc.gov": [5709], "cn.norton.com": [11505], "go.liveramp.com": [9497], "syncplicity.com": [15730], "www.1010ez.med.va.gov": [17019], "*.shop.haymarket.com": [7249], "lerner.ccf.org": [3236], "api.viglink.com": [17710], "particle-physics.desy.de": [4399], "kqed.org": [8747], "jcm.jd.com": [8423], "huque.com": [7627], "*.igloo.nsidc.org": [11062], "arcgis.com": [1155], "intelligence.businessinsider.com": [2454], "kaliningrad.rt.ru": [13469], "isasonline.bva.bund.de": [5716], "www.intelliot.com": [8217], "osutravel.osu.edu": [11760], "getdigital-blog.de": [6569], "cryptologie.net": [3876], "*.asda.com": [347], "racjonalista.pl": [13494], "rfc-editor.org": [13418], "filtrala.org": [5815], "tutsplus.com": [16853], "forum.manjaro.org": [9958], "*.cetic.be": [2586], "alexcabal.com": [794], "apac.haymarket.com": [7249], "img.thevideo.me": [16239], "landliebe.de": [2783], "villas.com": [17715], "shutterstock.com": [14755], "www.barnard.edu": [1674], "www.gaaturustigslapen.nl": [6401], "cbiit.nci.nih.gov": [11052], "*.algonquincollege.com": [804], "www.wonga.com": [18414], "keepup.virginmedia.com": [17737], "stcjp.msn.com": [9796], "www.sexkompas.net": [14643], "bicademy.bite.lt": [1991], "*.fool.com.au": [10613], "sdsu-dspace.calstate.edu": [2730], "smart.jd.com": [8423], "learningzone.hants.gov.uk": [7196], "www.everplans.com": [5451], "gotlandring.com": [6855], "www.hh.ru": [7060], "redhat.com": [13675], "www.invoiceocean.com": [8332], "www.elliptictech.com": [5171], "cdrs.columbia.edu": [3448], "www.cmpxchg8b.com": [2628], "edex.adobe.com": [615], "fmc.unizar.es": [17356], "email.nottingham.ac.uk": [11528], "cloud.kbia-gmbh.de": [8829], "media.xiph.org": [18575], "www.manageengine.jp": [9939], "www.awesome-it.de": [1461], "toledo.kuleuven.be": [8816], "mrporter.com": [9787], "www.nwas.nhs.uk": [10913], "*.webofknowledge.com": [18107], "*.stocktwits.net": [15478], "www.investor.gov": [8321], "www.karger.com": [8794], "ssl-certificate-center.verisign.de": [17623], "vi.libreoffice.org": [9311], "robobees.seas.harvard.edu": [7219], "hardcoreteengirls.com": [7203], "analytics.pressfreedomfoundation.org": [6173], "www.boxcar.io": [2257], "www5.citymapper.com": [3193], "fleresomdig.radikale.dk": [13514], "*.shopmania.es": [14717], "stacklet.com": [15364], "static.mydrive.ch": [10829], "www.nutricentre.com": [11583], "ada.edu.au": [1387], "global.sony.eu": [15142], "www.ami.com": [308], "secure.store.apple.com": [1120], "www.oyoony.net": [19475], "buchhaus.ch": [19023], "idc.com": [7703], "allstartire.com": [847], "adserverams.adtech.de": [638], "www.history.com": [7417], "www.moderngov.co.uk": [19405], "abcn.ws": [1920], "account.mackeeper.com": [9819], "svnweb.freebsd.org": [6120], "kpdyer.com": [8757], "www.e-klase.lv": [4853], "sitemason.vanderbilt.edu": [17557], "homefinder.com": [7467], "newzbin2.es": [11351], "books.ch": [16171], "sustainability.cornell.edu": [3676], "www.customtiburon.com": [3939], "www.cat.yandex.by": [18648], "2013.de.pycon.org": [13263], "www.privacysos.org": [13083], "chat.livezilla.net": [9499], "www.standaard.be": [15378], "login-stage.oracle.com": [12082], "discountclick.com": [651], "widgets.opera.com": [12050], "www.evolmed.com": [5464], "woltlab.com": [18403], "www.activestatic.net": [502], "www.lls.org": [9089], "www.dino.sr": [2292], "search.earthdata.nasa.gov": [10869], "media.mobyhub.com": [10506], "afnic.fr": [282], "globalbersih.org": [6722], "instaradio.com": [13400], "gacela.itc.mx": [7844], "www.convox.com": [3632], "answerology.delish.com": [4331], "my.drweb.com": [4783], "artsci.wustl.edu": [17993], "www.tiscali.nl": [16098], "www.rsaconference.com": [13454], "www.cnre.vt.edu": [17740], "131002.net": [29], "hashicorp.com": [7227], "pinocc.io": [12696], "*.tweakimg.net": [16866], "libvirt.org": [9323], "www.aboutthedata.com": [428], "cart.1688.com": [36], "www.antivigilancia.org": [1070], "www.coinworker.com": [3401], "youngrewiredstate.org": [18718], "*.taboola.com": [15898], "blog.cloudflare.com": [3285], "*.imodules.com": [7762], "child3.ki.se": [8725], "*.reelseo.com": [13711], "www.blackfire.io": [2052], "logo.ui-portal.de": [16952], "cihr.eu": [2603], "bip.io": [1910], "deepin.org": [4302], "ecess1.cdn.continent8.com": [3618], "www.podnapisi.net": [12847], "www.3bbwifi.com": [130], "www.itemname.com": [19311], "www.soekris.com": [15085], "es.dinahosting.com": [4519], "www.fbi.gov": [5708], "www.medienstiftung-hsh.de": [10195], "*.bitre.gov.au": [2440], "help.lasallehs.net": [9161], "education.oracle.com": [12082], "www.extreme-light-infrastructure.eu": [5527], "cdn2.thr.com": [15813], "specialcollections.nal.usda.gov": [17209], "partner.nitrosell.com": [11427], "m.posteo.de": [12969], "www.defendinnovation.org": [4908], "fiercewireless.com": [5778], "*.www.spoki.lv": [15286], "forums.girlsoutwest.com": [6667, 19219], "youtube.com.lb": [18709], "www.natureshop.com": [11105], "www.comptroller.nyc.gov": [11292], "www3.dudley.gov.uk": [4795], "thehackernews.com": [16338], "img2.leboncoin.fr": [19351], "enjin.com": [5277], "*.cj.com": [3481], "www.clear.com": [3229], "new-webmail.kth.se": [8752], "ipqualityscore.com": [7795], "nccih.nih.gov": [11052], "www.osadl.org": [11664], "classes.usc.edu": [17278], "ovh.de": [12173], "www.1cart.co.nz": [43], "cf2.100r.org": [9], "fxosphone.mozilla.com.tw": [10653], "news.mims.com": [9743], "www.grillingishappiness.com": [6956], "rssing.com": [13464], "feedback.adcenter.microsoft.com": [10364], "gsrce.soe.ucsc.edu": [17305], "lundi.am": [9672], "gbot.me": [6808], "newzsec.com": [11352], "www.cottagesdirect.co.uk": [18490], "r.openx.net": [11993], "wwwdc.hertzentertainment.com": [7372], "www.magento.com": [9850], "chain.com": [2980], "livechat.startech.com": [15395], "cdn.ozb.me": [12195], "www.wiroos.com": [19761], "www.goingup.com": [6810], "jp.cloudflare.com": [3285], "www.projects.fruct.org": [5595], "intranet.ku.dk": [17248], "www.nextbit.com": [11364], "fx.yandex.com.tr": [18649], "www.petsymposium.org": [12242], "desk.com": [4392], "lib.vutbr.cz": [17522], "qa.phpdoc.org": [12653], "www.thankyou.com": [16173], "m.jhu.edu": [16296], "www.spidweb.com": [15270], "feedback.minus.com": [10435], "*.serienjunkies.de": [14596], "insightexpress.com": [8171], "telekom-partnerwelt.de": [16084], "www.support.earthlink.net": [5007], "scm.dataconservancy.org": [4192], "www.httpsecurityreport.com": [7110], "copeland.moderngov.co.uk": [19405], "rochford.firmstep.com": [19183], "iloyal.axosoft.com": [1477], "portal.charnwood.gov.uk": [3015], "download.lenovo.com": [9251], "business.usa.gov": [17029], "bastion.desy.de": [4399], "blutmagie.de": [2159], "www.stallman.org": [15373], "www.suprizkizlar.com": [15641], "me.effectivemeasure.net": [5109], "ads.whichmba.com": [18241], "forms.adviceguide.org.uk": [665], "www.britcoin.co.uk": [2337], "se.ucsd.edu": [16939], "secure.entrust.com": [5303], "statistik.netcologne.de": [11188], "informit.com": [8117], "store.lessig2016.us": [9260], "webhostingstuff.com": [18067], "*.www.insightmgr.com": [4507], "gabry.hu": [6403], "www.linutronix.de": [9390], "repo.mysql.com": [10780], "www.tiny.cc": [16478], "www.yannick.net": [18659], "media.fit.edu": [5942], "wimp.no": [18275], "www.cinestar.de": [3143], "*.infopaginas.com": [8114], "easy2coach.net": [5021], "mdn.livingsocial.com": [9517], "www.cubby.com": [3909], "blogoverflow.com": [15359], "roeck-us.net": [13945], "www.linksyssmartwifi.com": [9383], "www.filehoot.com": [5791], "api.digitalmedia.hhs.gov": [7062], "www.online-emr.com": [11876], "community.pebblepad.co.uk": [12509], "cloudflare.com": [3285], "app.mbuy.com": [9725], "www10.informe.org": [8116], "www.freelauri.com": [6143], "www.fazjob.net": [5554], "www.sportisimo.cz": [14158], "static.rudefinder.com": [8425], "computerbasedmath.org": [3539], "*.image-gmkt.com": [13308], "tracking-rce.veeseo.com": [17587], "wikihow.com": [18290], "www.lovettpublishinghouse.com": [9633], "transitionnetwork.org": [16671], "spinlab.osu.edu": [11760], "manage.sprintpcs.com": [15314], "www.politiken.dk": [12876], "*.interlan.se": [8252], "eastern.greenparty.org.uk": [6925], "www.spkcn.com": [15279], "www.jezebel.com": [8564], "solutionpartnerdashboard.cisco.com": [3162], "twittercounter.com": [16891], "www.investments.osu.edu": [11675], "www.majestic12.co.uk": [9898], "www.jailbreakingisnotacrime.org": [8493], "*.tasb.org": [16150], "heroes.rsf.org": [13458], "maps.sheffield.gov.uk": [14694], "govspace.gov.au": [6867], "www.bookstore.mtu.edu": [9802], "privatelee.com": [13103], "www.poets.org": [12848], "kissanime.to": [8920], "www.cr0.org": [3749], "login.arkena.com": [1198], "www.orionhub.org": [12107], "www.thumbzilla.com": [16402], "www.franchisegator.com": [6099], "dataprotection.ie": [4172], "www.ganglandnews.com": [6452], "www.emblem.cancer.gov": [2805], "www.fedpol.admin.ch": [19648], "vinrcl.safercar.gov": [14235], "www.reynir.dk": [13852], "youthscape.co.uk": [19796], "*.yuku.com": [18746], "hub.rother.gov.uk": [13977], "*.linuxpenguins.xyz": [19367], "trustly.se": [16797], "www.sas.com": [14074], "c.betrad.com": [5458], "dotcologne.de": [4694], "awp.is": [1292], "lorentzcenter.nl": [9611], "en.panoptykon.org": [12365], "www.listbox.com": [9449], "cdn.instaemail.net": [8180], "stop-snoring-mouthpiece.org": [15481], "wiki.freedesktop.org": [6126], "x.myspacecdn.com": [10848], "uef.fi": [17250], "itservices.uchicago.edu": [17246], "hk.168qiquan.com": [37], "profile-df.live.com": [9483], "luu.org.uk": [9109], "my.osu.edu": [11760], "account.1and1.ca": [52], "www.hivos.org": [7431], "blog.pfsense.org": [12607], "*.hostooplecom.netdna-cdn.com": [7539], "iecisa-ift.axosoft.com": [1477], "sundancechannel.com": [15597], "wss.apan.org": [329], "www.ultrasurf.us": [17138], "partner.blackberry.com": [2050], "www.mydrive.ch": [10829], "greenpolkadotbox.com": [6927], "www.gls.de": [6340], "ectc-online.org": [5019], "ws1.ems.eosdis.nasa.gov": [10869], "www.220volt.hu": [72], "www.skyriderplay.com": [14940], "physicsforums.com": [12655], "pvac.leeds.ac.uk": [17318], "facilities.wustl.edu": [17993], "accreditation.usc.edu": [17278], "skr.nlm.nih.gov": [11052], "usrowing.org": [17050], "ssl.gmobb.jp": [6342], "www.fiercefinance.com": [5775], "datart.sk": [4008], "clarityray.com": [3214], "pbesignup.na.leagueoflegends.com": [9206], "speakeasy.net": [15235], "static.broadcasthe.net": [2354], "ak3.boxcdn.net": [2253], "wordcamp.org": [18427], "berliner-energietisch.net": [1792], "www.studiopress.com": [15541], "secure.jotform.us": [8638], "www.kum.com": [9035], "cdn.jadu.net": [8492], "www.technicalcommunity.com": [16035], "www.giving.jhu.edu": [16296], "dealnews.com": [4261], "28degrees-online.gemoney.com.au": [6315], "a1.mzstatic.com": [10852], "brown.edu": [2367], "cdn.netvibes.com": [11257], "www.jetico.com": [8561], "www.imagestash.org": [7985], "microsoftstudios.com": [10369], "pinegram.com": [12678], "login.postpay.de": [19112], "www.gittip.com": [6685], "forms.essex.gov.uk": [5365], "www.politico.com": [12873], "share.intercom.io": [8244], "assets-broadly.vice.com": [17667], "cp.maxcdn.com": [10091], "www.biciperros.org": [1843], "static.eventoverload.com": [5439], "junodownload.com": [8683], "*.ucf.edu": [17244], "biotrimlabs.com": [1909], "dev-web.inka.f4.htw-berlin.de": [7112], "www.masteringemacs.org": [10057], "chrisnewland.com": [3106], "makrotex.hu": [9920], "tc3.edu": [16543], "f1.help.mindtouch.us": [10410], "www.sf.net": [15174], "doc.rt.com": [13468], "www.catalog.usmint.gov": [17062], "support.dashlane.com": [4163], "www.vh1.vutbr.cz": [17522], "places.tomtom.com": [16540], "carleton.ca": [2852], "icsalabs.com": [7691], "blog.namecheap.com": [11019], "time.paycheckrecords.com": [12472], "jba.io": [8538], "download.formsanity.com": [6042], "orangegeek.com": [12090], "partners.livechatinc.com": [9480], "www.eclipse.org": [5049], "www.internetgovernance.org": [8272], "my.xm.com": [18520], "www.ccdcoe.org": [2545], "dev.sign-up.to": [14780], "gnosis.cx": [6760], "affiliates.upickem.net": [17389], "portal.wusm.wustl.edu": [17993], "a4.twimg.com": [16877], "knopper.net": [8946], "www.infosecurity-magazine.com": [13704], "*.extabit.com": [5518], "moscow.rt.ru": [13469], "*.fundinfo.com": [6263], "wiki.openvz.org": [11991], "www.myitcv.org.uk": [10837], "scene.org": [8269], "api-taojinbi.taobao.com": [15952], "www.thm.de": [15811], "*.bcy.ca": [6892], "chrdnet.com": [19060], "seal.xramp.com": [18588], "www.leedsportal.leeds.ac.uk": [17318], "iceleads.com": [7916], "files.vagrantup.com": [17529], "choice.live.com": [9483], "www.my.gov.au": [19417], "composer.typo3.org": [15894], "marshut.net": [10028], "getvoip.com": [6582], "www.giftcards.tesco.com": [16135], "bindforum.isc.org": [7821], "diagrid.org": [4440], "www.gradsch.osu.edu": [11760], "schiphol.nl": [14353], "stunnel.org": [15545], "fused.com": [6273], "*.scribd.com": [14414], "idl.cs.washington.edu": [17291], "forum.linode.com": [9387], "www.openmandriva.org": [11956], "campina.ru": [2782], "www.london.gov.uk": [9578], "newstral.com": [11347], "russia2all.com": [14045], "www.blog.kaspersky.ru": [8807], "podvertiseonline.com": [12840], "stuff.umeahackerspace.se": [17143], "scripts.irssi.org": [8359], "rafflecopter.com": [13525], "www.abebooks.co.uk": [407], "www.bitly.com": [2001], "extract.services.disqus.com": [4570], "tripbod.com": [16744], "www.meego.com": [10207], "assets1.enphaseenergy.com": [5284], "altoonamirror.com": [894], "www.ksiegarniawarszawa.pl": [9025], "caribbeanpoetry.educ.cam.ac.uk": [17243], "exploreb2b.com": [5510], "www.poole.nhs.uk": [10913], "gmu.edu": [6544], "www.scalability.org": [14326], "digitalpacific.com.au": [4496], "kiks.yandex.com": [18651], "ftp.linux-mips.org": [9413], "buttercoin.com": [2463], "www.asteriskexchange.com": [1300], "rpt.anchorfree.net": [994], "pediatricsclerkshipblog.stanford.edu": [15384], "gartner.com": [6463], "gottman.com": [6858], "blog.facebook.com": [5620], "www.eindbazen.net": [5126], "autoconfig.eecs.berkeley.edu": [17240], "www.game.co.uk": [6417], "src.selfhtml.org": [19580], "gradadmissions.stanford.edu": [15383], "www.nordicsemi.com": [11477], "www.ingress.com": [8141], "community.wwe.com": [17936], "www.kororaproject.org": [8990], "cf3.100r.org": [9], "identity.atechmedia.com": [368], "broadinstitute.org": [2347], "www.vh3.ro.vutbr.cz": [17522], "*.cnbc.com": [2632], "product.adingo.jp.eimg.jp": [592], "opencsw.org": [11926], "opensource.conformal.com": [3572], "www.linuxplumbersconf.org": [9397], "www.desktopsummit.org": [4393], "igame.qq.com": [13285], "*.bestoliveoils.com": [1806], "www.posta.ch": [12949], "www.pullingladies.com": [12266], "tsf.stanford.edu": [15383], "jdj.jd.com": [8423], "css.chefkoch.de": [3058], "secureffs.capwiz.com": [2825], "traxarmstrong.com": [16703], "*.plimus.com": [12817], "blog.bitsighttech.com": [1947], "sympa.inria.fr": [8159], "*.apobox.com": [334], "vid.ly": [17675], "akamai.mathtag.com": [10071], "www.kryptologika.com": [9019], "www.walsallhealthcare.nhs.uk": [10913], "*.aiasurety.com": [289], "praktica.de": [14358], "webmail.variomedia.de": [17567], "privacyassociation.org": [8263], "local.ch": [9536], "powerdns.com": [12990], "www2.olx.com.br": [11632], "notesplace.wustl.edu": [17993], "www.akademikerforsakring.se": [758], "wt.research.gov": [13795], "nsidc.org": [11062], "teevox.com": [16061], "www.yespic69.com": [18676], "www.sesplan.gov.uk": [19584], "www.astronomynow.com": [1306], "insideillinois.info": [8166], "www.robokassa.ru": [13927], "gradadmissions.osu.edu": [11760], "balabit.com": [1624], "www.searchcommander.com": [14442], "esb.ie": [4952], "mylearning.southampton.gov.uk": [15191], "www.open.com.au": [11914], "andersonvalleypost.com": [4989], "jobmatcher.hodesiq.com": [1795], "*.ancestry.com": [992], "*.truevault.com": [16770], "www.yabause.org": [18628], "api.hertz.com": [7372], "redvase.bravenet.com": [2294], "www.sknvibes.com": [14126], "login.vk.com": [17493], "re-publica.de": [13597], "trueachievements.com": [16771], "www.gamasutra.com": [16021], "*.aftenposten.no": [712], "www.psarips.com": [12297], "secure.ancestry.co.uk": [992], "careers.thejournal.ie": [16224], "faradaysec.com": [5659], "www.finma.ch": [15697], "service.sumologic.com": [15592], "www.tildedave.com": [16446], "*.macainfo.org": [9825], "*.blogads.com": [13038], "www.collectd.org": [3421], "bitflyer.jp": [1931], "www.altontowers.com": [893], "www.selz.com": [14570], "market.huobi.com": [7624], "event.nzz.ch": [19450], "cis.vutbr.cz": [17522], "canvas.iu.edu": [8064], "freelancer.com": [6176], "showmecon.com": [14739], "new-support.drweb.com": [4783], "ar.redhat.com": [13675], "www.sainsburys.co.uk": [14244], "go.onelink.me": [19458], "allpoetry.com": [860], "www.thenew10.treasury.gov": [16704], "developers.whatwg.org": [17904], "bewerbung.htw-berlin.de": [7112], "commscope.com": [3473], "renttherunway.com": [13772], "litecoin.org": [9462], "gc.digitalriver.com": [4483], "www.tchibo.ch": [15985], "forms.netsuite.com": [11209], "amch.questionmarket.com": [13357], "slideshare.net": [14962], "faq.i3wm.org": [7660], "bitnik.org": [2012], "kororaproject.org": [8990], "career.udacity.com": [17109], "heerenveen.nl": [11132], "www.mesosphere.com": [10290], "www.amnesty.de": [960], "m.soundcloud.com": [15161], "ci-staging.swift.org": [15688], "cs.yieldoptimizer.com": [18683], "oauth2.axeso5.com": [1473], "youtube.com.sg": [18709], "jd.mail.ru": [9874], "newgtlds.icann.org": [7681], "businesswire.com": [1788], "fitnessmarket.com.au": [5889], "lists.sudoroom.org": [15580], "www.gaborszathmari.me": [6402], "www.playmates.com": [12808], "www.kammeratadam.dk": [8777], "*.hideman.net": [7394], "equipment.nottingham.ac.uk": [11528], "keyworddiscovery.com": [8871], "*.tersee.com": [19670], "images.redbox.com": [13681], "i.somethingawful.com": [15130], "0-static.ideel.com": [7931], "labs.mwrinfosecurity.com": [9809], "cables.com": [2704], "auth.360buy.com": [111], "www.visa4uk.fco.gov.uk": [5558], "www.divxpress.com": [4580], "www.discogs.com": [4541], "cleanenergyfinancecorp.com.au": [3225], "kb.sucuri.net": [15575], "www.gohugo.io": [19224], "marketing.htwk-leipzig.de": [7114], "demo.zeronet.io": [18843], "signup.ipvanish.com": [7799], "www.vatt.fi": [17536], "app.perfectaudience.com": [12559], "www.ordbogen.com": [12095], "cdn.betrad.com": [5458], "fibank.bg": [5769], "mailconfig.ovh.net": [12173], "git.fr33tux.org": [6091], "www.hillaryclinton.com": [7409], "www.public.resource.org": [13207], "wiki.hidekisaito.com": [7393], "c2.ewebcart.com": [19170], "bnw.im": [19010], "net-dns.org": [10941], "www.how-to-box.com": [7571], "freiwilligenportal.wwf.ch": [19768], "*.akcje.home.pl": [7465], "thedailygreen.com": [7271], "www.raglan23.co.nz": [19532], "www.ez-web-hosting.com": [5000], "forum.ubuntu-nl.org": [17100], "www.shevibe.com": [14692], "www.freerainbowtables.com": [6149], "www.kolabnow.com": [8961], "www.petri.com": [12597], "manage2.cpanel.net": [2653], "www.readthenburn.com": [13612], "*.indstate.edu": [8066], "www.telecomindustrydialogue.org": [16074], "static.the42.ie": [19673], "gayakuman.com": [6481], "www.ffs.ch": [15693], "www.lazykush.com": [9185], "health.google.com": [6834], "banners.spiceworks.com": [15266], "revision3.com": [13846], "*.chrisanthemums.com": [3107], "jdi.na.vutbr.cz": [17522], "www.skhynix.com": [14129], "nisit69.com": [11422], "www.volcanoecigs.com": [17826], "*.dmcdn.net": [4125], "login.sunlightfoundation.com": [15601], "bluemovie.eu": [2126], "pubs.aaas.org": [230], "www.barvaux.org": [1685], "www.sss.ias.edu": [7669], "docs.centrify.com": [19048], "ticket.seferler.yandex.com.tr": [18649], "www.hostvirtual.com": [7518], "coinworker.com": [3401], "tracking.onefeed.co.uk": [11855], "adfs.strode-college.ac.uk": [15528], "reporting.sunlightfoundation.com": [15601], "freshempire.betobaccofree.hhs.gov": [7062], "www.eset.at": [4953], "www.ratfishoil.com": [13575], "*.ariejan.net": [1192], "secure.nuuvem.com": [11586], "retailhosting.fi": [13824], "app.webmate.io": [18132], "searsecommercejobs.com": [14447], "lettre-de-motivation-facile.com": [9266], "www.slf.se": [14131], "www.guerrillamail.com": [7005], "kuix.de": [9032], "*.ccc.de": [2537], "www.educause.edu": [5096], "*.netsciwestpoint.org": [11262], "login.dealer.com": [4256], "findmyorder.com": [5841], "secure.healthcheckusa.com": [7257], "e.fastcompany.net": [5681], "www.ledgerscope.net": [9221], "ots.optimize.webtrends.com": [18171], "*.lapatilla.com": [9115], "www.webarchitects.coop": [18109], "polarssl.org": [12861], "japsand.x2go.org": [18499], "www.hi5.com": [19247], "www.uppsite.com": [17395], "*.aclj.org": [939], "coverforyou.com": [3733], "www.taleo.com": [15923], "teachers.sky.com": [14924], "www.vpsfree.cz": [19743], "www.sched.co": [14348], "oppelt.com": [12059], "api.eia.gov": [4917], "www.altquick.co": [872], "cm-openwebmail.stanford.edu": [15383], "my.msn.com": [9794], "help.zoho.com": [18884], "www.medicinescomplete.com": [10193], "europe.f-secure.com": [5541], "content.aggregateknowledge.com": [726], "secure.ogone.com": [11757], "www.vdio.com": [17581], "www.domeny.cz": [18938], "bprbzk.nl": [11132], "*.euserv.de": [4983], "mcafeesecure.com": [10116], "biz.jdpay.com": [8429], "comcav.com": [3451], "www.mattwilcox.net": [10081], "business.shaw.ca": [14687], "pub.mims.com": [9743], "www.coreinfrastructure.org": [3667], "secure.zeta.systems": [18850], "*.rapidbuyr.com": [13555], "www.searchcode.com": [14443], "financestatic.baidu.com": [1619], "www.fluxcards.de": [5958], "bugs.sabayon.org": [14214], "g1.std3.ru": [15445], "www.nds.rub.de": [13478], "peercraft.com": [12519], "www.golfcourseindustry.com": [6822], "docs.unity3d.com": [17220], "www.wakatime.com": [17952], "www.lesscss.org": [9069], "bandcamp.mu": [1638], "jrf.jesus.cam.ac.uk": [17243], "bs.baidu.com": [1619], "*.cs.oberlin.edu": [11698], "www.tmsz.com": [16516], "media.tchibo-content.de": [15985], "wwc.alicdn.com": [805], "*.stadt-bremerhaven.de": [15367], "97-fz.rkn.gov.ru": [13913], "xagyl.com": [18500], "bilder.rtl.de": [13474], "zuno.cz": [18768], "www.vdoth.com": [17583], "objectif-securite.ch": [11702], "www.konachan.com": [8972], "rxnav.nlm.nih.gov": [11052], "uk.gamespot.com": [6426], "www.dedyn.io": [19107], "*.muenchen.de": [10686], "commerce.washingtonpost.com": [17990], "smartaremobil.idg.se": [7705], "www.tfes.org": [16164], "ecommons.ucsc.edu": [17305], "templates.libreoffice.org": [9310], "www.educ.cam.ac.uk": [17243], "intranet.hslu.ch": [7583], "ecrm.taobao.com": [15952], "moon.greenpeace.org": [6937], "hothardware.pricegrabber.com": [13051], "w.ya.ru": [18626], "thefederalistpapers.org": [16275, 16276], "zg.ch": [19648], "www.websitealive.com": [18149], "www.ghirardelligiftguides.com": [6627], "muttscomics.com": [10731], "s.lenovo.com": [9251], "*.info.edgesuite.net": [760], "just-eat.no": [19328], "www.ubank.com.au": [16930], "cdn.gsstatic.com": [6785], "hostap.epitest.fi": [19765], "mailvelope.com": [9892], "accounts.spiceworks.com": [15266], "e6.xhamsterpremiumpass.com": [18516], "*.twitcasting.tv": [16886], "epoxate.com": [5328], "rasp.yandex.kz": [18652], "nikosdano.com": [11404], "an.tacoda.net": [319], "de-hr.dict.cc": [4455], "www.heml.is": [7316], "theme-fusion.com": [16339], "fwmapps.co.uk": [5671], "help.consumerfinance.gov": [3602], "www.pandaction.wwf.ch": [19768], "www.gavelbuddy.com": [6470], "leanpub.com": [9208], "www.eumostwanted.eu": [19164], "www.law.ox.ac.uk": [17271], "flowtab.com": [5949], "developer.asana.com": [1242], "www.grasswire.com": [6896], "www.bytename.com": [2490], "eu.link.decdna.net": [4281], "alkohol.cz": [823], "blog.bethcodes.com": [12971], "*.veinteractive.com": [17584], "*.necessaryandproportionate.net": [11128], "www.halebop.se": [7173], "sites.southglos.gov.uk": [15189], "order.upc-cablecom.ch": [19716], "copy.com": [3654], "codebutler.com": [12971], "map.local.ch": [9536], "downloads.gratipay.com": [6898], "inbox.lv": [8038], "1.vgc.no": [17484], "www.applianceshop.eu": [1125], "www.dvdfab.net": [4088], "orcid.org": [11909], "oldebroek.nl": [11132], "allerdalecopeland.greenparty.org.uk": [6925], "behavioralpolicy.org": [1757], "www.rabotilnica.com.mk": [13490], "userreport.com": [17437], "www.gwhois.org": [6400], "www.deusm.com": [16927], "openldap.org": [11948], "www.truetrophies.com": [16776], "global01.mifile.cn": [10335], "www.libav.org": [9291], "www.netclean.com": [11187], "windowsazure.com": [18344], "box-signup.uillinois.edu": [16960], "nnit.easycruit.com": [5023], "lbre-internal.stanford.edu": [15383], "www.punto.ar": [13231], "nvd.nist.gov": [11051], "ic-fusioncrm.oracle.com": [12082], "www.derpibooru.org": [4381], "adverts.ie": [663], "www.myfitnesspal.com": [10757], "www.missinglinkelectronics.com": [10455], "www.treasury.uillinois.edu": [16960], "buy-static.norton.com": [11505], "www.hiig.de": [7068], "vms.api.qbrick.com": [13300], "www.water-challenge.com": [17998], "edp2.adriver.ru": [534], "www.baztab.net": [1709], "login.aftonbladet.se": [716], "www.filemobile.com": [5800], "www.hoodline.com": [7486], "cs.kent.ac.uk": [17317], "selfharm.co.uk": [19579], "trojantime.usc.edu": [17278], "www.mindtouch.com": [10409], "education.barnsley.gov.uk": [18983], "*.readersdigest.com": [13616], "www.linux.org.au": [9407], "service.xara.com": [18543], "www.bitcoin.com": [1965], "www.gigantti.fi": [6652], "generator.webtrends.com": [18171], "o.swisscom.ch": [15698], "apps.sf.net": [15174], "adfox.ru": [524], "youcaring.com": [18704], "kaos.to": [8788], "autodiscover.llu.leeds.ac.uk": [17318], "www.ozon.travel": [12198], "www.inc.com": [8041], "www.youcaring.com": [18704], "adbrite.com": [564], "secondmarket.com": [14461], "mailchimp.com": [9876], "climatechangescience.ornl.gov": [11693], "startupsort.com": [15413], "cdnpng.dmjx.dk": [4600], "www.neteller-group.com": [12068], "*.gigaserver.cz": [6654], "www.crocs.com": [3807], "pair.com": [12336], "www.carhire.lastminute.com": [9165], "www.iosdevweekly.com": [7781], "www.serverpilot.io": [14607], "confirmit.com": [3570], "etarget.sk": [5373], "jobs.slashdot.org": [14946], "globalnetworkinitiative.org": [6728], "ophirum.spiegel.de": [15272], "static.trustdale.com": [16785], "mail-tester.com": [9870], "*.bcbits.com": [1638], "*.viddler.com": [17683], "wp.secure.me": [14488], "www.mercatus.org": [10275], "*.shopify.com": [14725], "www.roia.biz": [13951], "ssl.abma.de": [421], "dentistry.osu.edu": [11760], "www.postbank.de": [12959], "btczone.com": [1565], "www.muusikoiden.net": [10734], "i3.iis.net": [7741], "young.hillingdon.gov.uk": [7410], "*.mtgox.com": [10679], "*.wowanalytics.co.uk": [17917], "uk.at.atwola.com": [318], "www.jaast.com": [12351], "www.logancij.com": [9552], "www.youtube.com.ua": [18709], "img.dt-static.com": [4660], "ugr.ue.ucsc.edu": [17305], "*.last.fm": [9162], "job.ceredigion.gov.uk": [2964], "www.mulesoft.com": [10691], "autocontext.begun.ru": [1755], "biosciences.stanford.edu": [15382], "www.global2000.at": [6720], "poste-impresa.it": [12963], "4channel.org": [158], "11main.com": [20], "harrogate.greenparty.org.uk": [6925], "superdesk.pro": [15626], "evsweb.bls.ch": [1526], "*.startssl.org": [15407], "7-eleven.com": [187], "shop.oebb.at": [19455], "freifunk-goettingen.de": [6190], "www.nvidia.com": [10985], "zadarastorage.com": [18776], "instacominc.com": [8179], "secure.leadforensics.com": [9197], "freepressunlimited.org": [6148], "dizzcloud.com": [4589], "armscontrol.org": [18963], "posterstoreuk.com": [12970], "noc.ac.uk": [17276], "www.howsecureismypassword.net": [7569], "flattr.com": [5911], "hieber.de": [19248], "support.havelockinvestments.com": [7243], "origin.myfonts.net": [10759], "binbox.io": [1892], "isharemaps.bathnes.gov.uk": [1689], "wowcss.zamimg.com": [18782], "blog.2k.com": [86], "www.spectrum.com": [15248], "dev.gogobot.com": [6808], "my.hastings.gov.uk": [7234], "answers.stanford.edu": [15383], "blog.goeswhere.com": [6805], "daxue.taobao.com": [15952], "ensijaturvakotienliitto-fi.directo.fi": [19160], "pt.fiksu.com": [5787], "cdn.defenseone.com": [4311], "*.xiti.com": [18571], "livecontacts.services.live.com": [9483], "lv.com": [9511], "api.openstreetmap.org": [11979], "footprint.osu.edu": [11675], "usblog.kaspersky.com": [8806], "pp.ceneo.pl": [2935], "www.quirks.com": [13367], "millionenklick.gmx.net": [6350], "ssldecoder.org": [14179], "apoteket.se": [1099], "www.skyprogrammeinformation.co.uk": [14930], "readytogo.microsoft.com": [10364], "webirc.darkfasel.net": [4152], "*.inmotionhosting.com": [8033], "loverslab.com": [9632], "www.kva.se": [19345], "support.rangenetworks.com": [13548], "us.gmocloud.com": [6343], "districtsentinel.com": [4576], "nib.vub.sk": [17869], "*.thebureauinvestigates.com": [16252], "masterh7.adriver.ru": [534], "hit4.hotlog.ru": [7547], "www.berrange.com": [4142], "blogs.yandex.ua": [18656], "admin.banan.cz": [1489], "vpnservice.ru": [17506], "mountainview.gov": [3191], "www.snoonet.org": [15040], "www.hofstra.edu": [7444], "www.archlinux.de": [1169], "studentactivities.uchicago.edu": [17246], "namepros.com": [11022], "moniker.com": [8865], "www.sys4.de": [15746], "www.printfriendly.com": [13066], "store.esellerate.net": [5357], "*.passion-radio.com": [12428], "www.computerlabsolutions.com": [3536], "shop.openstreetmap.org": [11979], "grr.la": [7005], "admin.5min.com": [178], "www.securitymetrics.com": [14523], "d.udimg.com": [16948], "www.stubhub.de": [15534], "mobile.swiss.com": [15695], "www.tivi.de": [19800], "queervids.com": [13349], "my.comparethemarket.com": [3511], "www.elgiganten.dk": [5162], "sitetrustnetwork.com": [14874], "www.claws-mail.org": [3221], "digikeytest.digikey.com": [4469], "lists.windowmaker.org": [18340], "portal.issworld.com": [7836], "inside.hfs.washington.edu": [17291], "pad.eigenlab.org": [19151], "gstatic.com": [6839], "nllgg.nl": [10937], "www.devmonk.com": [4426], "www.vfemail.net": [17482], "healthcheckusa.com": [7257], "rcm-uk.amazon.co.uk": [910], "passwordscon.org": [19480], "check.ledgerscope.com": [9221], "orion.library.usyd.edu.au": [19723], "usfca.edu": [17042], "leafly.com": [9204], "ausleihe.hslu.ch": [7583], "www.domeinenrz.nl": [11132], "checkip.org": [17790], "secure.ar.ikea.com": [7959], "ksh.hu": [8750], "alumni.nottingham.ac.uk": [11528], "www.useresponse.com": [17423], "www.ads-creativesyndicator.com": [3781], "ozon.ru": [12199], "www.mamp.info": [19379], "resources.mendeley.com": [10257], "www.techservices.illinois.edu": [17258], "bugs.drweb.com": [4783], "libravatar.org": [9308], "www.mudgum.net": [10685], "services.account.lego.com": [9068], "www.anonops.com": [1042], "nhm.ac.uk": [10908], "coinjar.com": [3397], "w00tsec.blogspot.*": [2113], "quote.liberis.co.uk": [19362], "startingpage.com": [8405], "www.wand.com": [17970], "immersion.media.mit.edu": [9749], "www.envirotrend.com.au": [5309], "www.edeka.de": [19147], "cdn3.spiegel.de": [15272], "www.mail.com": [9872], "playerio.com": [12804], "map.utoronto.ca": [17343], "forums.yabause.org": [18628], "www.scenetap.com": [14342], "*.ou.edu": [11683], "json10.ringrevenue.com": [13892], "www.openuserjs.org": [11987], "www.zenodo.org": [19801], "dsp.io": [4787], "www.youtube.com.hk": [18709], "zwijndrecht.nl": [11132], "methodactingstrasberg.com": [10315], "adserver-sb-fra.adtech.de": [638], "grootzakelijk.upc.nl": [17002], "accelogixportal.axosoft.com": [1477], "www.bouncyballs.org": [2246], "api.jqueryui.com": [8454], "elatinos.com": [4927], "peersm.com": [12524], "sourcemaking.com": [15175], "nyantec.com": [19447], "spider.io": [15268], "club.lego.com": [9068], "notebookitalia.it": [11522], "home.entrust.net": [5304], "comments.richarddawkins.net": [13871], "jobamatic.com": [8594], "damtp.cam.ac.uk": [17243], "www.edirectdebit.com": [4902], "lists.swift.org": [15688], "richmondshire.gov.uk": [13876], "news.uic.edu": [17231], "longdate.pl": [9588], "www.bonadza.com": [2194], "www.firefoxosdevices.org": [5861], "luxurycustomwheels.com": [9677], "www.swift.org": [15688], "www.berlinonline.de": [1793], "idsync.rlcdn.com": [13435], "img.createsend1.com": [3774], "www.yaupspe.com": [5224], "flyingmeat.com": [5966], "baitiao.jd.com": [8423], "*.wikia.nocookie.net": [18292], "webstaurantstore.com": [18157], "paycheckrecords.com": [12472], "tosdr.org": [16521], "*.site5.com": [14862], "www.thecisogroup.com": [16182], "partners.servicenow.com": [14622], "static.xm-cdn.com": [18519], "troopers.de": [16758], "*.zissousecure.com": [18876], "uac.advertising.com": [662], "www.gulesider.no": [7017], "git.vinilox.eu": [17724], "u15404278.onlinehome-server.com": [5410], "forums.netbeans.org": [11185], "www.citrixonlinecdn.com": [3180], "security.drupal.org": [4780], "tilt.com": [16448], "extcss.kaspersky.com": [8806], "trilightzone.org": [19695], "motherlessmedia.com": [10608], "*.postgresql.org": [12974], "www.gsl-co2.com": [6390], "apps.skypeassets.com": [14939], "www.maidsafe.org": [9867], "list.tmall.hk": [16513], "www.hdsa.org": [7054], "www.freelansim.ru": [6178], "qmc.quickline.com": [19530], "bulbman.com": [2414], "vs.symantec.com": [15715], "track.effiliation.com": [5112], "unmitigatedrisk.com": [17360], "www.tierra.net": [16435], "ppcw.osu.edu": [11675], "csl.illinois.edu": [17258], "www.socialprogressimperative.org": [15065], "cqrcengage.com": [2654], "www.worstpills.org": [18466], "help.ekmpowershop.com": [5132], "api.paydirekt.de": [12473], "secure.avaaz.org": [1437], "member.harland.com": [7207], "nowlab.cse.ohio-state.edu": [11759], "honestpolicy.com": [7482], "virustotal.com": [17757], "developermail.io": [4420], "nmbl.osu.edu": [11760], "support.shazam.com": [14689], "www.techpinions.com": [16048], "www.iolproperty.co.za": [7776], "esqac.eastsussexlearning.org.uk": [19144], "www.subsignal.org": [15566], "analytics.snoobi.com": [15039], "digikey.de": [4469], "network.zmanda.com": [18880], "mufin.com": [10688], "autos.aol.com": [321], "www.leblibrary.com": [9218], "uua.org": [17204], "www.hu.liu.se": [9084], "www.creativity-online.com": [3758], "autodiscover.estates.leeds.ac.uk": [17318], "e-plus.de": [4844], "www.cvimellesgriot.com": [2691], "www.ethlife.ethz.ch": [4974], "6gwc-kbhkort.kk.dk": [8730], "manage.smartadserver.com": [14982], "www.zwame.pt": [18925], "techtime.mit.edu": [9747], "*.pressdisplay.com": [11345], "tr.gamigo.com": [6445], "www.nanorep.com": [11033], "corp.mamba.ru": [9932], "pbridge.heifer.org": [7284], "www.it-offshore.co.uk": [7840], "www.permits.performance.gov": [12568], "onioncat.org": [11862], "net-a-porter.com": [11171], "aquagear.com": [1143], "dot429.com": [4689], "www.navut.cz": [11005], "chat.online.citi.com": [3168], "rimg01.rl0.ru": [13914], "www.oshkosh.com": [12121], "www.chrysalisventures.com": [3125], "eager.io": [5005], "libraries.torbay.gov.uk": [16569], "undergrad.osu.edu": [11760], "www-group.slac.stanford.edu": [15383], "ssl.assets.sheetmusicplus.com": [14693], "bit2c.co.il": [1921], "www.grnh.se": [6960], "developer.jamendo.com": [8502], "lu.norton.com": [11505], "meanstinks.com": [10133], "subscribe.zanesvilletimesrecorder.com": [18785], "exportawards.gov.au": [1391], "www.tokbox.com": [16532], "www.holidaybreak.co.uk": [7452], "admin.shortlist.com": [14734], "assets.acs.org": [929], "btctrader.com": [1563], "www.bizo.com": [2031], "deutsche-rentenversicherung-bund.de": [4407], "*.startssl.com": [15407], "prasiatko.vpsfree.cz": [19743], "theworkdept.com": [16327], "www.natmonitor.com": [11042], "www.remind.com": [13759], "www.legislationsurveys.com": [9231], "www.bundesverfassungsgericht.de": [2435], "www.scandinavianphoto.se": [14334], "membernotifications.aol.com": [321], "www-portal-stage.oracle.com": [12082], "forum.qt.io": [13315], "consult.tunbridgewells.gov.uk": [19704], "www.unhosted.org": [17164], "onebillion.org.uk": [11853], "community.manageengine.com": [9940], "www.careers.wustl.edu": [17993], "weert.nl": [11132], "f.domdex.com": [4667], "www1.plymouth.ac.uk": [12833], "eurovision.de": [5431], "portal.volexity.com": [17827], "www.maawg.org": [9703], "onguardonline.gov": [11810], "www.modalitypartnership.nhs.uk": [10913], "milobit.lugons.org": [9108], "about.orcid.org": [11909], "www.gatorchrysler.net": [4255], "thompsonhotels.com": [16378, 16379], "cvs.sedo.de": [14540], "ctrlpanel.mythic-beasts.com": [10850], "solarflare.com": [15112], "www.adultswim.com": [18942], "colocation-datacenter.com": [19228], "www.ponychat.net": [12898], "www.timbro.se": [16453], "focus.de": [5974], "www.ip3.htwk-leipzig.de": [7114], "newsroom.godaddy.net": [6772], "www.shapeshift.io": [14660], "www.dug.net.pl": [4087], "coupons.com": [3712], "leto.majordomo.ru": [9902], "www.paste.sh": [12437], "webmail.swan.sk": [15676], "*.bho.pl": [2151], "homes.redding.com": [4988], "chaosreigns.com": [3006], "www.investors.com": [8323], "m3a.vhlcentral.com": [17486], "osso.uvt.nl": [16445], "*.aquiss.net": [1147], "maldon.firmstep.com": [19183], "www.bittrex.com": [2025], "devon-cornwall.police.uk": [4429], "blogs.kde.org": [8718], "www.spinics.net": [15277], "*.endace.com": [5244], "highways.gov.uk": [19250], "www.library.unc.edu": [16984], "wustl.libapps.com": [9287], "www.zoho.com": [18884], "api.gravity.com": [6901], "www.foursquare.com": [6082], "www.xenomai.org": [18565], "sixxs.net": [14890], "feedback.hootsuite.com": [7488], "*.dlvr.it": [4597], "*.skullsecurity.org": [14922], "ticketmaster.co.uk": [16421], "itbookshelf.com": [7859], "tracking.aunggo.com": [1369], "fr.hertz.be": [7339], "www.homelessveterans.co.uk": [7479], "www.microca.st": [10352], "wwte4.com": [17937], "piratenlogin.de": [12718], "entrust.com": [5303], "static.siteheart.com": [14866], "www.dribper.com": [19127], "www.libregraphicsworld.org": [9314], "nakedsecurity.sophos.com": [15154], "www.illiniunion.illinois.edu": [17258], "photos-b.ak.fbcdn.net": [5700], "*.getresponse.com": [6580], "samsungapps.sina.cn": [14839], "www.merton.gov.uk": [10287], "hush.com": [7632], "*.vu.nl": [17521], "www.fiksu.com": [5787], "browser.yandex.com.ua": [18650], "ns.adobe.com": [615], "finna.fi": [5851], "mastiff-online.korelogic.com": [8986], "*.netseer.com": [11207], "birthdayinabox.com": [1913], "gdata.es": [6293], "secure.sitelock.com": [14867], "admin.ufl.edu": [17252], "ad.amgdgt.com": [953], "shop.flixbus.se": [5931], "yabumi.cc": [18629], "zscaler.com": [18913], "connect.ohiobar.org": [11763], "www.ctera.com": [2683], "fullerton.edu": [6255], "*.dailymotion.com": [4125], "bis.gov.uk": [16965], "client.downtownhost.com": [4730], "osuhe.engineering.osu.edu": [11760], "www.edas.info": [5073], "blockexplorer.nu": [2084], "virool.com": [17742], "secure.manga.com": [9949], "*.trashmail.net": [16688], "blog.aereo.com": [684], "www.groupees.com": [6971], "discuss.gohugo.io": [19224], "sky-ip.org": [14923], "inwx.at": [8231], "zetetic.net": [18851], "lespaceclient.fr": [9070], "dcminfo.wustl.edu": [17993], "t4.liverail.com": [9496], "www.focaljet.com": [5973], "*.b0.upaiyun.com": [17383], "1cart.co.nz": [43], "*.audiogo.com": [1358], "images.yemeksepetim.com": [18674], "*.tutor.com": [16852], "www.ice.gov": [17021], "www.golucid.co": [6793], "mackeeper.com": [9819], "cloudimage.io": [3306], "tps10206.doubleverify.com": [4709], "readthenburn.com": [13612], "ias.cs.tum.edu": [16036], "zabbix.com": [18774], "securitykiss.com": [14522], "neustar.biz": [11280], "www.vagrantup.com": [17529], "www2.gotoassist.com": [6786], "cbp.net.br": [2524], "www.yworks.com": [19788], "blog.parallels.com": [12392], "storify.com": [15496], "roboxchange.com": [13442], "m.rasp.yandex.kz": [18652], "further.co.uk": [6271], "mobireach.com": [10491], "web2.securitymetrics.com": [14523], "www.theads.me": [16332], "slon.ru": [14969], "direktmarketingcenter.de": [19112], "vufind.org": [17868], "shazam.com": [14689], "a.jimdo.com": [8572], "dsa.csdata1.com": [2679], "dataspace.pl": [4186], "lef.org": [9226], "help.xbox.com": [18550], "www.iosco.org": [7779], "recrutamento.cgd.pt": [2978], "netpivotal.co.uk": [11204], "myphilanthropedia.org": [12622], "deater.net": [4265], "digitaldefenders.org": [4491], "pictures.aircrack-ng.org": [750], "becker1.wustl.edu": [17993], "www.onedrive.com": [11831], "ecomm.dell.com": [4335], "aan.sh": [391], "www.mochajs.org": [10508], "grit.io": [6958], "dev.socrata.com": [15082], "eforsa.pl": [4913], "ishop.taobao.com": [15952], "partner.arbornetworks.com": [1154], "www.yooco.de": [18691], "forms.trendmicro.com": [16717], "cursosdeespanol.unizar.es": [17356], "pensionsonline.ucc.ie": [16933], "aws-portal.amazon.com": [915], "marksdailyapple.com": [19384], "id.carousell.com": [2860], "ssl.a.xnimg.cn": [18581], "test.bvg.de": [1582], "tv.adobe.com": [615], "*.peer1.com": [12512], "www.youngrewiredstate.org": [18718], "www.pcrdist.com": [19484], "www.gsmhosting.com": [6992], "www.ugst.umd.edu": [17263], "sms.e-paycapita.com": [19132], "edigitalresearch.com": [4900], "www.theswirlworld.com": [1307], "justapple.com": [8694], "htaccessbook.com": [7588], "alice-dsl.de": [810], "yopto.com": [18693], "payment.vas-hosting.cz": [19729], "www.mixer.cz": [10466], "m.huobi.com": [7624], "www.weibo.cn": [14844], "*.neteller.com": [12068], "overclockers.co.uk": [12158], "www.rubytogether.org": [14022], "campus-map.stanford.edu": [15383], "instantchat.io": [8184], "business.youmail.com": [18706], "cetic.be": [2586], "baoxian.163.com": [34], "movieth.com": [10638], "www.hoeringsportalen.dk": [7443], "about.udemy.com": [17111], "sos.state.co.us": [3443], "dragonsreach.it": [4741], "gmx.ch": [6350], "fedex.com": [5707], "tilburguniversity.nl": [16445], "gmx.cc": [6350], "kpn.com": [8744], "canv.as": [2813], "wordpress.grc.nasa.gov": [10869], "wishmich.org": [9903], "id.norton.com": [11505], "landalcampings.be": [18490], "direct.gov.uk": [4531], "www.nordnet.se": [11479], "www.acorns.com": [475], "blog.ipredator.se": [7804], "lenovo.com": [9251], "www.trust-guard.com": [16780], "lttng.org": [9106], "vanillaforums.com": [17558], "silentsender.com": [14787], "interworx.com": [8233], "nz.bidbubble.com": [1844], "channels.ap.dell.com": [4335], "aldi.pl": [299], "riscosopen.org": [13897], "nl.support.tomtom.com": [16540], "www.googlewatchblog.de": [6849], "app.halowaypoint.com": [7176], "forum.xakep.ru": [18539], "*.ecoscentric.com": [4886], "whois.registro.br": [13735], "www.pkr.com": [12751], "hinckleyandbosworthonline.org.uk": [7413], "m.soft.yandex.com.tr": [18649], "macular.org": [9834], "easydns.com": [5024], "www.aclutx.org": [253], "aldi.pt": [299], "www.archive.moe": [1165], "*.intuitstatic.com": [8304], "www.local.ch": [9536], "*.marktplaats.com": [19385], "www.goemerchant.com": [6776], "servlet.it.liu.se": [9084], "www.publicobject.com": [13214], "*.cc.com": [2532], "domainnamesales.com": [4655], "gyft.com": [7036], "gresille.org": [6945], "ut.edu": [17340], "ess.bathnes.gov.uk": [1689], "m.sbb.ch": [15693], "www.webink.com": [18068], "supercard.ch": [3645], "morrisons.co.uk": [10601], "uakjobs.com": [17234], "tmpwebeng.com": [15831], "apply.internetessentials.com": [19300], "cp.servercow.de": [14612], "www.lynchinteractive.com": [9681], "www-s.ks.uiuc.edu": [16956], "*.alternate-b2b.nl": [880], "5min.com": [178], "ensijaturvakotienliitto.fi": [19160], "distilleryimage6.instagram.com": [8182], "*.destructoid.com": [4397], "myuvm.uvm.edu": [17075], "oce-docworks.rz.htw-berlin.de": [7112], "www.petstore.com": [12602], "woahh.com": [18394], "macfarlanepackaging.com": [9826], "forum.feathercoin.com": [5704], "www.fybse.se": [5613], "pictorial.jezebel.com": [8564], "www.icmail.com": [7687], "*.acenet-inc.net": [471], "www.it.lastminute.com": [9165], "nebula.com": [11127], "argos.co.uk": [1186], "www.formsanity.com": [6042], "www.mobilepay.dk": [10497], "img3.picload.org": [12661], "obdev.at": [11695], "mbayaq.co": [1920], "www.festivusgames.com": [5760], "nokiasiemensnetworks.com": [11462], "connect.fca.org.uk": [5557], "www.pragmaticstudio.com": [13014], "www.6wunderkinder.com": [184], "www.delfogo.com": [4325], "www.goubiquiti.com": [6797], "metadata.cesnet.cz": [2585], "postaffiliatepro.com": [12953], "*.domainsponsor.com": [4658], "s.chbtc.com": [3036], "congress2015.erc.edu": [4949], "member.societyforscience.org": [15078], "dyne.org": [4834], "www.tescobank.com": [16136], "lucky2u.net": [9649], "www.movie.to": [10636], "*.mtac.org": [9799], "blog.spideroak.com": [15269], "suma.stanford.edu": [15382], "www.nationalcareersservice.direct.gov.uk": [4531], "svn.mageia.org": [9847], "ulyanovsk.rt.ru": [13469], "workbench.connextra.com": [3585], "www.developers.elsevier.com": [5185], "billing.cloudaccess.net": [3278], "www.proboards.com": [13110], "www.libtoxcore.so": [9322], "bbs.taobao.com": [15952], "webmail06.register.com": [13732], "cnrsweetdeals.newsreview.com": [11339], "r4.mzstatic.com": [1119], "www.secure-usb.co.uk": [19577], "*.inwx.at": [8231], "www.datalogix.com": [4202], "www.conservatives.com": [3590], "ad.afy11.net": [589], "esdpubs.nasa.gov": [10869], "www.afra-berlin.de": [285], "qwant.com": [13383], "stkittszipline.com": [15354], "*.bidsystem.com": [599], "support.fortinet.com": [6056], "washington.edu": [17291], "kariera.ceneo.pl": [2935], "gls.de": [6340], "ssl-certificate-center.verisign.com.au": [17623], "512pixels.net": [170], "khpi.com": [8847], "www.chipin.com": [3086], "bitcasa.com": [19001], "www.bluez.org": [2138], "majesticseo.com": [9898], "rightmove.co.uk": [13886], "www.phpdoc.org": [12653], "crowdjustice.co.uk": [3821], "partner.walmart.com": [17964], "gmat.economist.com": [5060], "variety.com": [17565], "www.forevernew.com.au": [6031], "admatrix.jp": [531], "myedaccount.com": [10755], "ftp.rfc-editor.org": [13418], "linuxfound.info": [9411], "zoner.fi": [18894], "www.surplus.osu.edu": [11760], "rcpmag.com": [13406], "www.btcstore.eu": [1569], "*.totalhostingplus.com": [16605], "*.networkforgood.org": [11264], "www.justaguy.pw": [8696], "*.internationalsos.com": [8268], "marinsm.com": [9995], "xamarin.com": [18540], "readspeaker.com": [13610], "media.mit.edu": [9749], "planning.westlothian.gov.uk": [19755], "ews.osu.edu": [11760], "www.stevesie.com": [15471], "web.adblade.com": [560], "www.city-link.co.uk": [3182], "imperian.com": [19289], "www.lib.umd.edu": [17263], "blimpme.com": [2073], "mhcache.com": [10331], "*.urbanterror.info": [17408], "status.namecheap.com": [11019], "cdes.oebb.at": [19455], "revealnews.org": [13841], "www.blogburst.com": [4343], "www.mozy.co.uk": [10667], "finn.no": [5849], "widgets.yandex.com": [18651], "campus.afip.gob.ar": [18945], "sendguide.bedford.gov.uk": [18986], "cdn.final4ever.com": [5819], "www.digital-future.it": [4481], "cryptabyte.com": [3841], "hhh.umn.edu": [17268], "vr.force.com": [17642], "www.socialrank.co": [15058], "fb.maps.me": [9976], "studentloans.gov": [15535], "rockvalleycollege.edu": [13938], "html5-player.libsyn.com": [9321], "www.sitola.cz": [14887], "lp.nanigans.com": [11030], "api-uat.dwolla.com": [4816], "insidehighered.com": [8163], "wpengine.com": [17918], "portal.cachefly.com": [2708], "minus.com": [10436], "gourmetgiftbaskets.com": [6859], "tonytan.io": [16548], "connect.internetsociety.org": [8275], "*.brandembassy.com": [2279], "code.org": [3345], "bzr.debian.org": [4275], "wiki.shibboleth.net": [14702], "wipmania.com": [17912], "www.dsl.vodafone.de": [17814], "www.itsc.umd.edu": [17263], "pcbooking.brent.gov.uk": [2304], "export.gov": [17027], "www.hollywoodreporter.com": [7454], "smp.specificmedia.net": [15243], "tinyletter.com": [16482], "cdn.movad.net": [10626], "www.esf-works.com": [4958], "app.mailerlite.com": [9882], "findlegalforms.com": [5838], "www.jiffyfreescore.com": [8567], "api.fitbit.com": [5887], "zb45.nl": [18754], "rhombus-tech.net": [13864], "www.bungie.net": [2438], "nmfc.engineering.osu.edu": [11760], "static.t-mobilebankowe.pl": [19654], "webmail.hinxton.wellcome.ac.uk": [19752], "www.redbubble.com": [13660], "*.wpvulndb.com": [17926], "8kbhkort.kk.dk": [8730], "cdn5.openculture.com": [12006], "corporate.walmart.com": [17964], "thepiratebay.org": [16227], "ncm.novarait.com": [4513], "shop.flixbus.nl": [5931], "www.kolab.org": [8959], "my.astaro.com": [1298], "washpostco.com": [17989], "fpdbs.paypal.com": [12467], "releasenotes.webtrends.com": [18171], "donate.doctorswithoutborders.org": [4625], "www.geektechlabs.com": [6499], "www.baidu.com": [1619], "images.dealertrend.com": [4259], "www.beautyblog.thebodyshop.co.uk": [16250], "santoku-linux.com": [14293], "static.commando.io": [3475], "www.arcor.de": [1173], "www.gog.com": [6365], "www.sproutvideo.com": [15320], "*.login.live.com": [9483], "pcbsd.org": [12216], "superkuh.com": [15632], "mythicalcreatureslist.com": [10851], "www.perfeval.pol.ulaval.ca": [17229], "jellynote.com": [8550], "nic.tel": [16100], "dl2.oo-software.com": [11893], "legacy.vg": [9228], "promotion.aliyun.com": [821], "sign-up.to": [14780], "c-nfa.jd.com": [8423], "mankier.com": [9959], "fxguide.com": [6289], "finlex.fi": [19181], "biallo.de": [1839], "img02.rl0.ru": [13914], "www.osufoundation.org": [12099], "api.digits.com": [4509], "pcre.org": [12229], "crowdin.net": [3826], "gsc.mit.edu": [9749], "www.batstrading.com": [1492], "directspace.net": [4525], "passport.jd.com": [8423], "www.steaw.com": [15457], "canvasholidays.co.uk": [18490], "safenet-inc.com": [14227], "devpress.com": [4430], "preparedness.usc.edu": [17278], "skullsecurity.org": [14922], "amnesty.no": [974], "www.unop.uk": [17363], "*.arvixe.com": [1238], "www.cabinetoffice.gov.uk": [2701], "*.rollcall.com": [13956], "stvp.stanford.edu": [15383], "www.walthers.com": [17967], "beta.usa.gov": [17029], "www.micropartsusa.com": [10358], "admin.mobile.de": [19403], "linux.web.cern.ch": [2575], "passport.alibaba.com": [809], "www.internetprotectionlab.net": [8284], "tms.pl": [19686], "www.tmdb.org": [15829], "www.lotusoriginals.com": [9616], "punchout.digikey.com": [4469], "apicdn.viglink.com": [17710], "legal.yandex.kz": [18652], "ext.accesslabs.net": [446], "fotki.yandex.ua": [18656], "media6degrees.com": [10149], "moviefone.com": [10641], "my.dexmedia.com": [4434], "www.research.illinois.edu": [17258], "councillors.halton.gov.uk": [19236], "sandbox.pagseguro.uol.com.br": [16998], "products.mercola.com": [19396], "*.a4apphack.com": [225], "inotv.rt.com": [13468], "medrx.sensis.com.au": [16102], "nevillholtopera.net": [11286], "blender.org": [2067], "*.metropolia.fi": [10324], "www.data-informed.com": [4193], "www.bartbania.com": [1682], "engine.4dsply.com": [159], "cdn8.sure-assist.com": [15644], "kingsroadmerch.com": [8900], "www.yaler.net": [18643], "www.bitcoinarmory.com": [1976], "checkout.jwplayer.com": [9589], "www.weedtraqr.com": [18180], "*.utdallas.edu": [17287], "spsch.eu": [19620], "*.oas.org": [12104], "globalpromote.com": [6731], "*.datacenterknowledge.com": [4178], "helbing.ch": [19245], "www.couchsurfing.org": [3700], "tp.srgssr.ch": [19621], "quarry.wmflabs.org": [18296], "do.co": [1920], "www.limesurvey.org": [9356], "zhaoshang.tmall.com": [19684], "w-tune.com": [18106], "drollette.com": [10080], "youtube.com.co": [18709], "www.posti.fi": [19510], "store.laughingsquid.com": [19350], "burgenland.neos.eu": [10899], "kanotix.net": [8782], "m.ph-cdn.com": [10186], "opencontainers.org": [12003], "manitu.net": [9957], "sediarreda.com": [19578], "witness.org": [18382], "takuu-saatio.fi": [15916], "dash.org": [4162], "webdrive.htw-berlin.de": [7112], "intermundomedia.com": [8253], "olb.nationwideuk.ie": [11091], "www.tripadvisorsupport.com": [19699], "provedordocliente.edp.pt": [4896], "armadaworkplace.cisco.com": [3162], "cpib.ac.uk": [2645], "alu.usainteanne.ca": [19720], "codereview.chromium.org": [3119], "tkb.ch": [19333], "opera.yandex.by": [18648], "secure.whitepages.com": [18257], "mbsy.co": [10112], "builds.cyngn.com": [3980], "www.work4labs.com": [18436], "www.thepirategoogle.com": [16228], "motorsports.osu.edu": [11760], "chris-lamb.co.uk": [3101], "kilbeggan.fourecks.de": [6080], "vultr.com": [17873], "fanli.com": [5655], "mpp2.vindicosuite.com": [17721], "homelessnessclearinghouse.govspace.gov.au": [6867], "www.rabbitmq.com": [13487], "centrify.com": [19048], "webservices.amazon.com": [915], "static6.businessinsider.com": [2454], "gitian.org": [6681], "cdn.torlock.com": [16568], "www.kinko.me": [8909], "www.crunchboard.com": [3834], "gpoutcomes.hscic.gov.uk": [19264], "ec-media.sndcdn.com": [15032], "checkout.subscriptiongenius.com": [15565], "*.eastbay.com": [5017], "recurly.com": [13652], "ynuf.alipay.com": [817], "locationmde.data.gov.uk": [19100], "kbit.dk": [8712], "*.video.news.com.au": [11337], "www.youbetrayedus.org": [18712], "image-proxy-origin.twimg.com": [16877], "www.stdhivtraining.org": [2743], "*.marinellarose.com": [10000], "intranet.irisa.fr": [7816], "origin.www.upc.ie": [17001], "*.foodl.org": [6004], "collegeboundfund.com": [3426], "insurance.wustl.edu": [17993], "bugz.foocorp.net": [5997], "www.entrust.net": [5304], "www.voices.com": [17823], "beta.fastmail.fm": [5688], "member.impactradius.com": [8011], "*.dmu.ac.uk": [4048], "juneoven.com": [8678], "www.slovakrail.sk": [14973], "xmpp.ru.net": [18527], "www.mvps.org": [9808], "secure.qfxsoftware.com": [13282], "*.icsdelivery.com": [7922], "www.stine.uni-hamburg.de": [16951], "fsd.merton.gov.uk": [10287], "na.gcsip.com": [19210], "www.flixbus.de": [5931], "navut.ro.vutbr.cz": [17522], "www.pingupod.de": [12689], "*.evolvesocially.org": [5467], "www.turbo.htwk-leipzig.de": [7114], "www.flixbus.dk": [5931], "banan.cz": [1489], "kiks.yandex.ua": [18656], "www.searchmarketingnow.com": [16367], "www.ant.ulaval.ca": [17229], "dn.cdn.gmru.net": [6349], "www.juniperresearch.com": [8681], "zimperium.com": [18869], "schoolmeals.warrington.gov.uk": [17984], "www.lh.co.th": [9283], "garmin.com": [19208], "www.pfefferkoerner.de": [12608], "www.saucelabs.com": [14303], "www.medocmall.co.uk": [10201], "img7.leboncoin.fr": [19351], "ubuntulinux.jp": [17105], "dowjones.com": [11320], "www.groklearning.com": [6964], "youm7.com": [18714], "handmadekultur.de": [7189], "support.sumologic.com": [15592], "apps.nhsbsa.nhs.uk": [10913], "ll-media.tmz.com": [15832], "websocket.org": [18088], "forums.kali.org": [8771], "www.vovici.com": [17849], "www.sourcefire.com": [15181], "web.gcmasia.com": [6309], "doc.openmandriva.org": [11956], "www.assetstore.unity3d.com": [17220], "web01.srvv.net": [15342], "club.jd.com": [8423], "media.soundcloud.com": [15161], "qa.php.net": [12250], "console.magnetisemedia.com": [9861], "www.vvcap.net": [17523], "mark.reevoo.*": [13715], "www.slon.ru": [14969], "authcode.jd.com": [8423], "lastminute.com": [9165], "www.cce.com": [2871], "store.tenable.com": [16109], "neos.io": [11156], "soylentnews.org": [15200], "stardock.net": [15401], "on.mash.to": [1920], "sync2.audtd.com": [1363], "cdn.ideastations.org.s3.amazonaws.com": [7927], "webmail.sk": [15676], "www.prettyincash.com": [13039], "www.nowsecure.com": [11533], "*.mediamind.com": [10159], "static.huobi.com": [7624], "dri.freedesktop.org": [6126], "slac.stanford.edu": [15383], "s.aolcdn.com": [323], "youtube.com": [18709], "scontent.igcdn.com": [7951], "support.codebasehq.com": [3360], "ltar.nal.usda.gov": [17209], "www.vrijstellingoldtimer.nl": [19744], "fieldportal.netapp.com": [11183], "www.aurous.me": [1371], "www.datacenterworld.com": [4191], "www.hackaday.com": [18428], "graphics.boston.com": [2233], "*.oppo.com": [12060], "qualityunit.com": [13331], "passwords.cites.illinois.edu": [17258], "store.ccccloud.com": [2539], "www.gidforums.com": [6332], "blog.kissmetrics.com": [8727], "dvcs.w3.org": [17888], "static.ashleymadison.com": [1255], "www.tmt.org": [16370], "utwente.nl": [17072], "www.foreverinfamous.com": [8089], "m.slovari.yandex.by": [18648], "static1.autoit-cdn.com": [1416], "careers.slac.stanford.edu": [15383], "apps2.shareholder.com": [14677], "secure.admin.illinois.edu": [17258], "*.adage.com": [3758], "linuxfoundation.org": [9412], "portoncv.gov.cv": [12942], "business.bell.ca": [1763], "probe.yieldlab.net": [18682], "*.mybigcommerce.com": [1853], "events.fit.edu": [5942], "researchgate.net": [13796], "blog.bazaar.canonical.com": [2810], "archive.anon-ib.su": [1039], "directory.ncl.ac.uk": [10884], "in.effectivemeasure.net": [5109], "www.linuxdistrocommunity.com": [9421], "staging.amazonsupply.com": [916], "sales.liveperson.net": [9493], "www.doomworld.com": [4683], "check24.de": [3045], "nrelate.com": [11545], "resource.org": [13207], "*.doi.org": [4075], "weusecoins.com": [18026], "gradapply.ucsd.edu": [16939], "rusty.ozlabs.org": [12196], "assets.yumpu.com": [18747], "mathid.mathtag.com": [10071], "s3.feedly.com": [5738], "www.djangogirls.org": [4593], "site-cdn5.ghosteryenterprise.com": [6630], "subscribe.billboard.com": [1879], "www.nordea.*": [11471], "keystone.cern.ch": [2575], "images.e.switchadhub.com": [15701], "m.dell.com": [4335], "usbank.com": [17036], "fr-fr.facebook.fr": [5623], "blog.maxmind.com": [10097], "www.nearlyfreespeech.net": [11122], "s-eu.btstatic.com": [1580], "*.airbnb.co.kr": [749], "www.puritan.com": [13247], "www.fdworlds.net": [5703], "*.activestate.com": [499], "arun.objective.co.uk": [19454], "b.fastcompany.net": [5681], "www.uowdubai.ac.ae": [17350], "ncwit.org": [10889], "www.nplusonemag.com": [11537], "tree.taiga.io": [15911], "shop.eset.co.uk": [4954], "scotthelme.co.uk": [14399], "www.thestar.com": [16575], "cimbclicks.in.th": [2608], "*.ingenuity.net.au": [8140], "wms.assoc-amazon.de": [1289], "ctovision.com": [2685], "*.foxycart.com": [6087], "www38.polyu.edu.hk": [12891], "adap.tv": [554], "gnome-look.org": [19461, 19462], "firmy.prace.cz": [13008], "static.spiceworksstatic.com": [15267], "andrew.roffey.org": [13947], "*.popin.cc": [12907], "www.wfncnews.com": [17903], "*.pusherapp.com": [13253], "9.*.wdfiles.com": [18294], "*.turnonsocial.com": [16844], "rimg02.rl0.ru": [13914], "www.directbox.ch": [4529], "sarc.usc.edu": [17278], "www.filmlinc.com": [5808], "ftp.intevation.org": [8297], "www.rackspace.com.hk": [13502], "www.youtube.com.gh": [18709], "games.random.org": [13545], "postmaster.hotmail.com": [7559], "kettering.gov.uk": [8861], "www.adpselect.com": [271], "www.nationwide-jobs.co.uk": [11091], "www.korndesign.com": [8988], "internetbs.net": [8276], "hostcreo.com": [7501], "ds3.static.rtbf.be": [14011], "www.jucycruize.co.nz": [8463], "www.shoebuy.com": [14714], "kuwait.q8car.com": [13278], "netlock.hu": [11196], "borvilag.aldi.hu": [299], "services-sj.mediuscorp.com": [10198], "cyphar.com": [3983], "developer.nike.com": [11401], "www.art2po.com": [1220], "www.certificatedetails.com": [19050], "m.uic.edu": [17231], "*.eventim.co.uk": [5443], "direct.seagate.com": [14437], "www.uclan.ac.uk": [17307], "pub9.media-clic.com": [10147], "cdn.lfrs.sl": [9282], "www.ukreg.com": [5685], "wservices.ch": [18477], "i.lv3.hbo.com": [19240], "www.pavpanchekha.com": [12463], "noodlebox.dyndns.info": [18699], "flamingspork.com": [5902], "facebook.be": [5623], "www.berliner-energietisch.net": [1792], "www.ispbilling.com": [16816], "cyberguerrilla.org": [3961], "portale-sisinfo.infn.it": [7766], "blog.awe.sm": [1460], "suggest.search.sky.com": [14924], "hakkalabs.co": [7170], "webmail.comscore.com": [3453], "www.zanox.com": [18787], "customerservice.aldi.co.uk": [299], "propertylicensing.walthamforest.gov.uk": [17966], "uberspace.de": [17090], "endesa.pt": [5247], "mobilemail.secureserver.net": [14511], "smartone.de": [19601], "www.jobs.economist.com": [5060], "*.deepfield.net": [4297], "*.digg.com": [4468], "www.piquadro.com": [12703], "www.micropython.org": [10350], "webmail.cs.cf.ac.uk": [2835], "priceonomics.com": [13055], "1lotstp.com": [44], "www.phobos.bnl.gov": [19009], "travelnow.com": [16692], "www.youtube.com.hr": [18709], "www.invenio-software.org": [8312], "netreg.stanford.edu": [15383], "emdl.osu.edu": [11760], "verisign.nl": [17623], "www.burningshed.co.uk": [2442], "socitm.govmetric.com": [6866], "sso.cisco.com": [3162], "womenonweb.org": [18407], "www.itmanie.cz": [7849], "develop-online.net": [8227], "helmich.de": [7303], "www-947.ibm.com": [7675], "dnsexit.com": [4607], "hautelook.com": [7240], "springer.com": [15309], "*.ukr.net": [17125], "my.absolute.com": [430], "www.dailypix.me": [4118], "dl5.oo-software.com": [11893], "forums.plausible.coop": [12791], "payroll-remote.ymcastlouis.org": [18618], "www.netscape.com": [11248], "fun.fanli.com": [5655], "vlagtwedde.nl": [11132], "www.getmybalance.ca": [6615], "aclu-nj.org": [259], "endoflife.stanford.edu": [15383], "admin.1and1.com": [51], "mitpress.mit.edu": [9749], "shop.marthastewart.com": [10031], "foxitsoftware.com": [6086], "edgar-online.com": [4892], "ucomm.stanford.edu": [15383], "commoncrawl.org": [3486], "helpocean.com": [7304], "businessinsider.com": [2454], "realty.yandex.by": [18648], "www.thp.io": [16388], "www.shwyz.ca": [14756], "livingroutes.org": [9518], "maine.gov": [9894], "analytics.supplyframe.com": [15638], "cryptrader.com": [3840], "grabcad.com": [6879], "*.forums.frugalware.org": [6234], "beta.hrw.org": [7612], "ignitiondeck.com": [7953], "www.opinionmeter.com": [12055], "cspforum.eu": [2676], "pensionaltair.northyorks.gov.uk": [19440], "webdiis.unizar.es": [17356], "support.greenqloud.com": [6919], "my.uic.edu": [17231], "printpin.nottingham.ac.uk": [11528], "www.55chan.org": [173], "modxcloud.com": [9772], "ssl-certificate-center.verisign.se": [17623], "infotech-team.com": [18098], "i.lsimg.net": [9502], "www.digitalriver.com": [4483], "storage.360buyimg.com": [112], "l3-2.kiva.org": [8926], "www.cereproc.com": [2963], "gju3.alicdn.com": [805], "www.account.norton.com": [11505], "www.extractwidget.com": [5525], "ld-nk11.itunes.apple.com": [1120], "orbital.com": [12093], "serversaurus.com.au": [14619], "*.googlevideo.com": [18709], "data.fm": [4174], "www.outspark.com": [12154], "hunch.com": [7617], "www.lawgeex.com": [9176], "opencart.com": [11927], "speakyoursilence.org": [15234], "jobs.sbb.ch": [15693], "wap.spdb.com.cn": [19615], "lists.tog.ie": [15844], "herlev.emply.net": [5218], "jobs.kirklees.gov.uk": [8916], "www.rspb.org.uk": [13460], "image2.pubmatic.com": [13194], "ma2jic.engineering.osu.edu": [11760], "research.cals.vt.edu": [17740], "buzzdoes.com": [2478], "ardamis.com": [1174], "www.cms.iprsoftware.com": [7796], "scientificamerican.com": [14384], "nsm.stat.no": [11039], "www7.lowes.com": [9636], "www.sealedabstract.com": [14438], "untappd.akamaized.net": [763], "soekris.com": [15085], "*.voodoo.com": [17840], "*.belnet.be": [1769], "www.dia-grid.org": [4440], "put.io": [13256], "www.player.io": [12804], "psylin.plymouth.ac.uk": [12833], "cloud.jivesoftware.com": [8585], "*.today.msnbc.msn.com": [9794], "*.salsalabs.com": [14254], "www.lotuscars.com": [9615], "*.interworx.com": [8233], "kirov.rt.ru": [13469], "translation.alfresco.com": [802], "www.virtualboximages.com": [17749], "talktalktechnology.com": [15928], "qa.drupal.org": [4780], "mc.manuscriptcentral.com": [14362], "ametsoc.org": [312], "www.mathworks.com": [10066], "assets.dice.com": [4453], "www.sigxcpu.org": [14784], "register.ie": [4513], "www.jobscore.com": [8590], "cdn.muscleandstrength.com": [10708], "loginex.microsoftonline.com": [10367], "realestate.msn.com": [9794], "hrw.org": [7612], "de-tr.dict.cc": [4455], "www.tumblr.com": [16826], "www.blogsmithmedia.com": [319, 10641], "rochdale.greenparty.org.uk": [6925], "www.uvo.gov.sk": [14972], "*.overlakehospital.org": [12166], "www.power.org": [12989], "www.gdata.it": [6293], "cru.org": [3830], "www.wangyin.com": [17972], "www.comstern.de": [3457], "kona33.kontera.com": [8981], "wiki.unrealengine.com": [17365], "www.foss.in": [5587], "*.bcf.ch": [19333], "thalia.at": [16171], "app.loadimpact.com": [9529], "images-1.gog.com": [6365], "www.mobygames.com": [10505], "www.mobilevikings.com": [10502], "usmagazine.com": [17417], "www.dmoz.org": [4601], "l10n.cacert.org": [2520], "www.smallnetbuilder.com": [17601], "app-community.teespring.com": [16060], "www.oca.ucsc.edu": [17305], "helpdesk.wustl.edu": [17993], "voodooping.com": [17841], "osu.ppy.sh": [13006], "oktatas.hu": [11777], "www.sciencenews.org": [14380], "www.lolware.net": [9570], "www.enfield.gov.uk": [5258], "htwk-leipzig.de": [7114], "www.ultrahdtv.net": [17135], "www.redports.org": [13701], "boxoffice.com": [2254], "www.ijmfreedommaker.org": [7745], "api.service.hmrc.gov.uk": [7084], "developer.riverbed.com": [13907], "opam.ocaml.org": [11612], "www.vimeopro.com": [17718], "glassesusa.com": [6703], "dailynk.com": [4122], "webmail.unizar.es": [17356], "eps.unizar.es": [17356], "blogs.tnr.com": [11308], "2015.osdc.com.au": [11665], "sprints.kde.org": [8718], "*.sailfishos.org": [14241], "www.verisign.co.nz": [17623], "www.bizographics.com": [2032], "*.wuala.com": [18480], "cdn03.animenewsnetwork.com": [18957], "support.ca.com": [2511], "a856-citystore.nyc.gov": [11292], "www.globaleaks.org": [6712], "strategicplan.iu.edu": [8064], "*.wpengine.com": [17918], "cmusantaisabel.unizar.es": [17356], "*.getpelican.com": [6600], "slickedit.com": [14956], "sifterapp.com": [11358], "*.komoona.com": [8968], "stockton.edu": [15479], "katalog.uu.se": [17074], "cdn.research.nabtrade.com.au": [10865], "tech.fortune.cnn.com": [18428], "*.tvtorrents.com": [16859], "cdn5.thr.com": [15813], "catalyst.library.jhu.edu": [16296], "cdbaby.com": [19045], "globaleaks.org": [6712], "*.iapc.utwente.nl": [19277], "www.mk2.com": [19402], "jobs.citigroup.com": [3172], "www.safaribooksonline.com": [14222], "rdot.org": [13410], "www.iab.net": [8236], "www.c3s.cc": [2500], "kovidgoyal.net": [9000], "www.rdio.com": [13595], "www.ezcrypt.it": [5001], "identrust.com": [7934], "kobobooks.com": [8949], "apps.shareholder.com": [14677], "bullionstar.com": [2421], "my.mayday.us": [10104], "img.computerbild.de": [19075], "www.maxspeedcdn.com": [10093], "*.fogbugz.com": [5979], "secure.admin.myvirtualpaper.com": [10820], "c.atdmt.com": [10360], "webde-freemail-cards.web.de": [18050], "www.acsf.cornell.edu": [3676], "imageforensic.org": [7982], "partner.just-eat.ca": [19328], "atomiccowlick.com": [1325], "portal.zen.co.uk": [18815], "www.affili.net": [700], "mail.1x.com": [49], "mail.ixsystems.com": [7884], "www.pentabarf.org": [12541], "webmail.rrz.uni-hamburg.de": [16951], "www.emoryhealthcare.org": [5211], "www.cede.ch": [19047], "www.docker.com": [4616], "myuw.washington.edu": [17291], "developer.jwplayer.com": [9589], "www.liveinternet.ru": [9488], "videos.toypics.net": [19737], "myshazam.com": [10817], "waikato.ac.nz": [17347], "www.nine-2-one.com": [11411], "img.idealo.com": [7929], "admin.conetix.com.au": [3565], "www1.lsbu.ac.uk": [9098], "www.gameinformer.com": [6422], "presseportal.zdf.de": [19800], "www.phishtank.com": [12629], "suggestions.xhamster.com": [18515], "ethercalc.net": [5378], "console.boxcar.io": [2257], "www.mcafee.com": [10114], "sds-staff.kent.ac.uk": [17317], "www.libcom.org": [19361], "secure.sophos.com": [15154], "www.lenovo.co.uk": [9251], "cdn.us.playstation.com": [12795], "gemius.pl": [6517], "www.databits.net": [4196], "*.rudi.net": [13479], "www.playframework.com": [12798], "lkmart.com.au": [9088], "store.lacrossetechnology.com": [9119], "cias.rit.edu": [13434], "preprod.en.hispeed.ch": [19716], "ignum.cz": [7731], "www.cisofy.com": [2616], "www.steamunlock.com": [15456], "datapipe.co.uk": [4210], "www.baidupcs.com": [1620], "programming.wolframcloud.com": [18399], "cloud.mail.ru": [9874], "www.cgd.pt": [2978], "shareholder.com": [14677], "www.newyorkvocalcoaching.com": [11300], "www.cultura.no": [3915], "asearch.alicdn.com": [805], "collection.itunes.apple.com": [1120], "www.voffka.com": [17817], "mobilegaming.williamhill.com": [18315], "forge.indepnet.net": [8058], "www.finkmanufacturing.com": [1901], "images.ccbill.com": [2534], "vitalcred.com.br": [12328], "sitepoint.com": [14870], "www.uiuc.edu": [16956], "journalism.stanford.edu": [15383], "www.canlii.org": [2788], "*.www.city.ac.uk": [3187], "e14n.com": [4861], "i.msdn.microsoft.com": [10364], "paetec.com": [12205], "googleonlinesecurity.blogspot.com.*": [2113], "networkworld.com": [11267], "uklinux.net": [16971], "wapy.com": [17894], "www.social.anz.com": [315], "data-informed.com": [4193], "lntecc.com": [9092], "www.nuclearblast.de": [11567], "i.istockimg.com": [19308], "forum.jide.com": [8438], "fibonacci.uvt.nl": [16445], "spot.im": [15293], "startech.com": [15395], "healthdirect.gov.au": [7263], "www.heinlein-support.de": [7286], "lantmateriet.se": [9152], "ec2-images-amazon.test.edgekey.net": [5081], "www.rateip.com": [13573], "survey.piwik.org": [12733], "scan.xamarin.com": [18540], "alice.de": [810], "*.anwiki.com": [16856], "s.admaster.com.cn": [530], "inform.umd.edu": [17263], "ssl-munchkin.marketo.net": [10015], "pazaruvaj.com": [12492], "static.vzaar.com": [17883], "nature.berkeley.edu": [17240], "www.skm.dk": [14899], "static.campusjob.com": [2784], "www.buckeyemail.osu.edu": [11760], "www.workwithcolor.com": [18438], "dea.com": [4262], "wiki.opnsense.org": [11656], "www.rfc-editor.org": [13418], "2014.asiabsdcon.org": [1258], "gse.stanford.edu": [15383], "netmeister.org": [11243], "hackforums.net": [7152], "mijnd66.nl": [10381], "piwik.nic.cz": [11379], "orapps.osu.edu": [11760], "wwwcf.nlm.nih.gov": [11052], "fmylife.com": [5580], "www.accessprivacy.com": [451], "www.schulthess.com": [19573], "alandroidnet.com": [776], "swift.org": [15688], "www.ghost.org": [6628], "www.linux-dev.org": [9400], "assets.uits.iu.edu": [8064], "www.univ-brest.fr": [17222], "moodle.ut.ee": [17069], "aaronlindsay.com": [395], "blog.pushbullet.com": [13251], "www.aftonbladet.se": [716], "mmedia.me": [10281], "thereadingroom.com": [16232], "support.redhat.com": [13675], "*.thesims3.com": [5151], "atomicorp.com": [1328], "www.mcli.dist.maricopa.edu": [9989], "*.biapy.fr": [1840], "flagrate.org": [5900], "magazine.magix.com": [9708], "metaproducts.com": [10301], "europeanssl.eu": [5428], "www.okcoin.cn": [11627], "solutions.liveperson.com": [9494], "test.metooo.io": [10317], "home.bt.com": [1551], "www.glljobs.org": [19222], "max.adobe.com": [615], "lister.mysql.cesky-hosting.cz": [19051], "piwik.inspirehep.net": [8178], "preview.webplatform.org": [18079], "www.plantsolution.de": [12777], "apps.nowwhere.com.au": [19442], "us.effectivemeasure.net": [5109], "www.ipa.go.jp": [7787], "running.polyu.edu.hk": [12891], "dccc.org": [4014], "netid.cornell.edu": [3676], "i2.answers.microsoft.com": [10364], "beacon.jpl.nasa.gov": [10869], "www.polipayments.com": [12276], "studentconduct.wustl.edu": [17993], "pivotallabs.com": [12731], "labs.giffgaff.com": [19217], "www.join.tv": [8615], "*.idg.com.au": [7704], "www.nordkappnett.no": [11478], "blog.mog.com": [9773], "selfhtml.org": [19580], "hunban.taobao.com": [15952], "www.ams.org": [310], "orderhlp.com": [14724], "www.nal.usda.gov": [17209], "conversejs.org": [3626], "hsv.se": [7100], "itunes.com": [7865], "nwk-unbrick1.apple.com": [1120], "soulmates.theguardian.com": [16288], "rd.connexity.net": [3584], "rsync.net": [14009], "ssl.webserviceaward.com": [18105], "app.getbeagle.co": [6585], "boredtodeath.me": [2222], "*.editmysite.com": [5085], "*.www.emunews.net": [5224], "tags.liveperson.net": [9493], "www.bitcoinfoundation.org": [1980], "www.bloadr.com": [2081], "manage.kickassvps.com": [8877], "research.buffalo.edu": [17297], "online-office.1and1.co.uk": [53], "grants.wellcome.ac.uk": [19752], "livechat.boldchat.com": [2187], "www.watchmaxx.com": [17997], "carlisleeden.greenparty.org.uk": [6925], "ne.ucsd.edu": [16939], "*.netdna-ssl.com": [11222], "www.boligportal.dk": [2190], "groklearning.com": [6964], "quickhash.com": [13358], "www2.lse.ac.uk": [9575], "www.hertz247.ie": [7351], "onegooddriver.com": [11826], "store.calgunsfoundation.org": [2739], "www.healthcheckusa.com": [7257], "whstatic.1and1.com": [51], "*.planetemu.net": [12766], "www.rpmfind.net": [14004], "www.hertz247.is": [7349], "www.hertz247.it": [7352], "www.everyanglemedia.com": [5452], "mysql.vas-hosting.cz": [19729], "www.looloo.com": [9602], "privacy.org.au": [13085], "www.usyd.edu.au": [19723], "www.enterprise.com": [5291], "walmart.com": [17964], "www.bunchball.com": [2424], "www.songsterr.com": [15135], "sites.stanford.edu": [15383], "chat.apan.org": [329], "ips-invite.iperceptions.com": [19275], "www.proxysolutions.net": [13183], "intego.com": [8201], "ec.libsyn.com": [9321], "www.ubit.buffalo.edu": [17297], "www.sks-keyservers.net": [14127], "static.stubhub.com": [15534], "issues.kolab.org": [8959], "studentaid2.ed.gov": [4889], "www.modelaircraft.org": [438], "advertisers.dataxu.com": [4190], "cryptostocks.com": [3889], "www.books.ch": [16171], "www.tcpacompliance.us": [15792], "api.bufferapp.com": [2402], "www.openreach.co.uk": [12042], "opendata.cheshireeast.gov.uk": [3067], "*.airbnb.com": [749], "boe.ca.gov": [2508], "my.in-disguise.com": [8024], "signup.live.com": [9483], "portal.johnshopkins.edu": [8611], "web.nvd.nist.gov": [11051], "zhaoshang.alitrip.com": [818], "thecoastnews.com": [16260], "bugs.opera.com": [12050], "apps-community.akamai.com": [761], "edponline.edp.pt": [4896], "purevpn.com": [13240], "waymoot.org": [18011], "*.factiva.com": [11321], "file2.answcdn.com": [1059], "webmail.htw-berlin.de": [7112], "www.kaisersysteme.com": [8769], "search.dokuwiki.org": [4638], "act.ju.taobao.com": [15952], "discshop.se": [4557], "pcp.ch": [12496], "*.tinypng.com": [16483], "www.asl19.org": [350], "api.flattr.com": [5911], "itcr.cancer.gov": [2805], "fveydocs.org": [5609], "tcpalm.com": [15793], "cname.createsend.com": [3773], "cdn.betacie.net": [1815], "www.gotoassist.com": [6786], "offcampus.osu.edu": [11760], "www.strato-hosting.co.uk": [14192], "www.justtomatoes.com": [8693], "*.unibe.ch": [17239], "www.apperdeck.com": [7461], "landalparkshop.*": [18490], "*.stopsoftwarepatents.eu": [15486], "*.glassdoor.com": [6701], "aerohosting.cz": [689], "www.5min.com": [178], "wiki.openvas.org": [11988], "www.aerohosting.cz": [689], "www.bear.im": [1734], "www.fas.htwk-leipzig.de": [7114], "static.intercomcdn.com": [8245], "www.risparmiopostale.it": [13903], "antalyagrillhouse-blanchardstown.just-eat.ie": [19328], "m.taxi.yandex.com": [18651], "news.66option.com": [181], "logmeininc.com": [9550], "energymadeeasy.gov.au": [5255], "support.snapchat.com": [15029], "ddr.ornl.gov": [11693], "www.sunxi.org": [9401], "devprom.ru": [4431], "www.kyleisom.net": [9053], "webmail.hi.is": [7066], "*.gwu.edu": [6545], "www.skylink.cz": [14937], "bfm.swisscom.com": [15698], "www.techtoolsforactivism.org": [16024], "www.name.com": [11015], "mbrowser.yandex.kz": [18652], "tinderfoundation.org": [16470], "www.brasil247.com": [2290], "www.hud.gov": [17018], "www.svs.ulaval.ca": [17229], "www.kinox.am": [19337], "www.makeloveland.com": [9908], "Spielfuerdeinland.de": [15273], "veuwer.com": [17656], "sugarcrm.hostone.com.au": [7517], "p.ngx.cc": [11376], "nedlinux.com": [11131], "persoonlijk.knab.nl": [8939], "oagaviation.com": [16927], "knowledge.verisign.fr": [17623], "www.umd.edu": [17263], "dms-q.wiiings.com": [18288], "*.hark.com": [7206], "kissinsights.com": [8726], "ss1.zedo.com": [18808], "www.snip2code.com": [15036], "debathena.mit.edu": [9749], "www.flyertown.ca": [5964], "bluenotes.anz.com": [315], "lumigon.com": [9665], "psychology.plymouth.ac.uk": [12833], "lpievent.lpice.eu": [9096], "risi.com": [13433], "surbitcoin.com": [15643], "www.orezpraw.com": [12101], "status.pivotaltracker.com": [12732], "amos.taobao.com": [15952], "s1.qhimg.com": [13302], "servertastic.com": [14609], "static.smdg.ca": [15004], "*.abuse.ch": [431], "www2.dudley.gov.uk": [4794], "stapi.snacktools.net": [15021], "englishdefenceleague.net": [5270, 5271], "*.adbuyer.com": [566], "myplacelive.walthamforest.gov.uk": [17966], "springfiles.com": [15305], "www.broadband-forum.org": [2348], "www.pittsburghmassageandwellness.com": [12729], "inertianetworks.com": [8086], "cimb-principal.com.my": [2606], "facultypositions.usc.edu": [17278], "www.friendfinder.com": [6213], "www.httplab.it": [7590], "docs.kolab.org": [8959], "cloudscaling.com": [3314], "guitar.co.uk": [10277], "londonpreparesseries.com": [9572], "www.travelblog.org": [16690], "about.musixmatch.com": [10723], "www.chromestatus.com": [3118], "blueorigin.com": [2143], "alias.io": [808], "i2.rgstatic.net": [13422], "btplc.com": [1547], "dx.com": [4253], "jobs.leeds.gov.uk": [19353], "www.nerdpol.ch": [11159], "*.getclicky.com": [6610], "*.mulberrymail.com": [10692], "drivestyle.co.uk": [4763], "docs.eiffel.com": [5124], "techweekeurope.fr": [11198], "advantageseoservices.com": [651], "ctt.org": [3907], "eastsussex.gov.uk": [19142], "www.delivery.com": [4333], "www.ffmpeg.org": [5565], "*.starbucks.com": [15400], "www.moechel.com": [10528], "bccserve.sunybroome.edu": [2365], "vungle.com": [17877], "pcbooking.staffordshire.gov.uk": [15370], "data.gov": [4175], "www.libanywhere.com": [9304], "ictu.nl": [7693], "planauskunft.netcologne.de": [11188], "games.icq.com": [7690], "servicetick.com": [14623], "badongo.com": [1608], "listes.aful.org": [286], "igniterealtime.org": [7952], "*.wi-fi.org": [18271], "mittidg.idg.se": [7705], "sync.adaptv.advertising.com": [662], "www.just-eat.co.uk": [19328], "*.ripoffreport.com": [13896], "www.das-labor.org": [4159], "musikerforbundet.se": [10721], "*.icculus.org": [7909], "www.nuuvem.com": [11586], "cs.serverdensity.com": [14614], "*.pagodabox.com": [12335], "*.ace-host.net": [471], "whoami.cesnet.cz": [2585], "s.cdon.com": [2562], "www.theplatform.com": [16230], "insouciant.org": [8175], "www.ece.osu.edu": [11760], "netloan.birmingham.gov.uk": [19000], "thalescomminc.com": [16169], "mybexley.firmstep.com": [19183], "elearning.vutbr.cz": [17522], "jitsi.org": [8583], "puu.sh": [13258], "*.onesite.com": [11646], "open.taobao.com": [15952], "www.wlb.at": [18284], "*.nonexiste.net": [11469], "www.andytyson.com": [1010], "sizzlesitesinc.com": [14891], "jobs.drupal.org": [4780], "www.zooko.com": [18898], "www.mxgm.org": [9810], "linkedin.com": [9376], "*.opensrs.com": [11969], "2009.asiabsdcon.org": [1258], "welfare.bournemouth.gov.uk": [2251], "cdn3.recombu.com": [13648], "www.sg.cnrs.fr": [6195], "cdn.tradelab.fr": [16643], "camden.greenparty.org.uk": [6925], "force11.org": [5586], "dev.plexapp.com": [12815], "www.veronikamaine.com.au": [17631], "*.vsco.co": [17512], "*.plastic-bin.com": [12783], "www.dropdav.com": [4767], "sdss3.org": [14967], "pravydiplom.cz": [13015], "www.consumeraffairs.com": [3599], "wiki.pacbsd.org": [12307], "webmail.daily.co.uk": [4113], "service.usatoday.com": [17032], "coindaddy.io": [3393], "www-stage.aggregateknowledge.com": [726], "et.redhat.com": [13675], "canadianwebhosting.com": [2795], "ludit.kuleuven.be": [8816], "transmode.se": [16677], "*.travisf.net": [16702], "insidehw.com": [8165], "www.mzl.la": [19423], "litetree.com": [9459], "translate.foursquare.com": [6082], "static.guim.co.uk": [7014], "*.mnaonline.org": [10345], "sysmex.com": [15755], "www.bluenotes.anz.com": [315], "www.frieslandcampina.com": [2782], "www.speedyshare.com": [15259], "*.makemytrip.com": [9905], "pepperjamnetwork.com": [12554], "shutterfly.com": [14754], "datacentrum.wedos.com": [17901], "aresu.dsi.cnrs.fr": [6195], "perot.me": [12579], "coop.no": [3646], "dk.norton.com": [11505], "amoena.com": [979], "webshoprevolution.com": [18085], "*.ubm-us.net": [16926], "*.talemetry.com": [15918], "www.smileysnetwork.com": [15006], "s.omniti.net": [11796], "www.dizzcloud.com": [4589], "www.catalysis.com": [2895], "*.zapunited.com": [18794], "crowdrise.com": [3827], "www.logotype.se": [9563], "sendmail.com": [14581], "*.ryanair.com": [14054], "*.ucar.edu": [16931], "6kbhkort.kk.dk": [8730], "portal.walthamforest.gov.uk": [17966], "galaxy.ansible.com": [1057], "hastexo.com": [7233], "kktvkj.tmall.com": [19684], "www.anonysurfer.com": [1047], "g2play.net": [6297], "stevenroddis.com": [15469], "redmine.org": [13697], "wiroos.com": [19761], "gnome-help.org": [19461, 19462], "appthemes.com": [1110], "my.joinos.com": [8618], "valuedial.com": [17546], "www.youngcancer.scot.nhs.uk": [10913], "ashlands.net": [10559], "www.danid.dk": [4132], "www.lerner.ccf.org": [3236], "walkingmen.com": [17959], "www.easycottages.com": [18490], "www.stackcommerce.com": [15361], "www.underskog.no": [17158], "quattroplay.com": [13343], "account.metartnetwork.com": [10296], "*.modx.com": [9771], "youtube.com.tn": [18709], "audience.tapad.com": [15954], "image.rakuten.co.jp": [13533], "www.xmpp.org": [18526], "*.ustc.edu.cn": [17051], "www.ybin.me": [18664], "ntpandp.com": [10975], "*.utexas.edu": [17286], "bme.engineering.osu.edu": [11760], "www.zueriwieneu.ch": [18917], "www.netgroup.dk": [11233], "www.opengl.org": [11939], "mail.xeneris.net": [18560], "ieee.illinois.edu": [17258], "*.nzbmatrix.com": [11003], "guidancesoftware.com": [7006], "origin.eplayer.performgroup.com": [12239], "mediastorehouse.com": [10146], "leseprobe.buch.de": [16171], "tripit.com": [16743], "konklone.com": [8978], "www.juliareda.eu": [8671], "docs.python.org": [13272], "tribalhosting.net": [16726], "jhupbooks.press.jhu.edu": [16296], "xxx24hr.com": [18606], "image.slidesharecdn.com": [14963], "www.metrotransit.org": [10325], "crp.gov.sk": [14972], "sheg-preview.stanford.edu": [15383], "success.acrobat.com": [480], "hts.crick.ac.uk": [19090], "jsao.io": [8461], "forge.centreon.com": [2957], "www.iatspayments.com": [7670], "www.youtube.nl": [18709], "japan.hertz.com": [7372], "investors.redhat.com": [13675], "car.osu.edu": [11760], "partners.exacttarget.com": [5477], "cacti.allmyvideos.net": [857], "www.fastdomain.com": [5672], "www.kitapyurdu.com": [8921], "mdm.portal.srgssr.ch": [19621], "*.medibankhealth.com.au": [10184], "www.zcomm.org": [18756], "www.translationproject.org": [16674], "sandstorm.de": [14282], "ebanking.cimbthai.com": [2608], "a2.sphotos.ak.fbcdn.net": [5700], "drivee.ne.jp": [4764], "www.createspace.com": [3772], "neobux.com": [11147], "m.blogs.yandex.kz": [18652], "media.screened.com": [18244], "www.dailynk.com": [4122], "partners.fortinet.com": [6056], "dmu.my.centrify.com": [19048], "www.webmaster.yandex.by": [18648], "cinelease.com": [7372], "www.car.osu.edu": [11760], "www.intranet.fmed.ulaval.ca": [17229], "www.cuabroad.cornell.edu": [3676], "help.adbrite.com": [563], "sales.talktalk.co.uk": [15929], "www.dtp.nci.nih.gov": [11052], "*.linuxmint-art.org": [19462], "www.hertz.nl": [7355], "embeds.vice.com": [17667], "*.which.net": [18240], "newegg.ehosts.net": [5120], "hvb.de": [7649], "pcgarage.ro": [19483], "help.youcaring.com": [18704], "www.jabber.at": [8473], "thailand.allianz.com": [18950], "www.voscast.com": [17845], "itspa.org.uk": [7851], "upem.it.ohio-state.edu": [11761], "securestore.xfinity.com": [19784], "md-coord.web.cern.ch": [2575], "rc.fas.harvard.edu": [7219], "planet-work.*": [12758], "sysdream.com": [15753], "www.dialogs.com": [4443], "dz2cdn2.dzone.com": [4095], "www.anthrocon.org": [1065], "bluehost.com": [2150], "www.gamefly.com": [6419], "www.t.co": [15776], "www.mybbcentral.com": [10744], "libreplanet.org": [9313], "www1.cs.fau.de": [17311], "blog.fortumo.com": [6060], "vhphttp.dsi.cnrs.fr": [6195], "www.bitvisor.org": [1950], "vooplayer.com": [17839], "*.blackmesh.com": [2038], "downloads.comcast.net": [3460], "streetartutopia.com": [15520], "s-passets-cache-ak0.pinimg.com": [12691], "bnd.bund.de": [2430], "cf-media.sndcdn.com": [15032], "mpornpass.com": [10670], "*.myheritage.com.br": [10834], "toogl.com": [16552], "bedrockformsemeanext.msn.com": [9796], "images2.hertz247.com": [7372], "www.blogmaverick.com": [18428], "engage.redhat.com": [13675], "aolplatforms.com": [325], "ficora.fi": [5771], "www.usmile.at": [17446], "osuosl.org": [12099], "attac.at": [1334], "*.kernelconcepts.de": [8858], "getpelican.com": [6600], "jobs.stockport.gov.uk": [19628], "sso.childrensmarketplace.mycareinbirmingham.org.uk": [10802], "norid.no": [11483], "www.reztrip.com": [13853], "www.appvault.com": [1111], "mhcid.washington.edu": [17291], "policy.stonybrook.edu": [15480], "*.clicktale.net": [3252], "*.codeux.com": [3382], "c.msn.com": [9796], "blog.newswhip.com": [11332], "www.exchange.iu.edu": [8064], "eu.art.com": [1219], "www.eventoverload.com": [5439], "www.lanik.us": [9148], "securenscb.newcastle.gov.uk": [11315], "railsschool.org": [13531], "static.tenable.com": [16109], "schiedam.nl": [11132], "*.ology.com": [11783], "www.amazon.co.uk": [917], "*.unoeuro.com": [17362], "www.ad-stir.com": [513], "sc.itunes.apple.com": [1120], "calendar.nih.gov": [11052], "www.ecb.eu": [5421], "grouplogic.com": [6969], "*.zpcdn.com": [18909], "marketing.voxmedia.com": [17852], "iptc.org": [7850], "marketplace.appcelerator.com": [1113], "*.showingcloud.com": [14743], "www.noip.com": [11444], "quantserve.com": [13341], "www.getdigital.de": [6611], "reports.adblockplus.org": [561], "cait.wustl.edu": [17993], "www.tsp.gov": [19703], "pt.community.dell.com": [4335], "deepdotweb.com": [4299], "fr.support.tomtom.com": [16540], "sofn.com": [15087], "www.prolific.com.tw": [13147], "phone-analytics.com": [12634], "manageengine.com": [9940], "fime.me": [5575], "videos.5min.com": [178], "accounts.firefox.com": [5859], "discuss.xilo.net": [18517], "vip.youku.com": [18713], "unidadseguridad.unizar.es": [17356], "*.voxel.net": [17853], "secure.gladrags.com": [6696], "store.discovery.com": [4554], "junge-piraten.de": [8679], "www.kyivpost.com": [9052], "*.battlecreekenquirer.com": [1694], "bellsouth.com": [1765], "fast.fonts.net": [5994], "newman.uts.ohio-state.edu": [11761], "dersverilir.net": [4383], "ideel.com": [7931], "beckpc.ch": [1744], "www.rapidssl.com": [13557], "h.s.sl.pt": [14297], "www.hig.se": [7067], "www.jitbit.com": [8580], "exstonet.merkleinc.com": [19397], "www.linksysbycisco.com": [9384], "infopankki.fi": [8115], "franchiseradioshack.com": [13515], "showcase.ca": [14741], "ss.prbrds.com": [13110], "ua.siteground.com": [14865], "adx.adform.net": [585], "ip.ngx.cc": [11376], "www.ntvspor.net": [10974], "mentor.com": [10264], "hk.norton.com": [11505], "git.fedorahosted.org": [5727], "usersnap.com": [17439], "counter.yadro.ru": [18631], "fokus.no": [5981], "*.spoki.lv": [15286], "webmail04.register.com": [13732], "nokia.*": [11461], "zipcar.com": [18872], "api.weixin.qq.com": [13285], "app.zencoder.com": [18820], "www.sandvine.com": [14284], "frederikssund.dk": [6118], "wiki.bitcoin-otc.com": [1962], "secure.websimages.com": [18144], "www.intohigher.com": [8298], "jobs.barclays.co.uk": [1662], "www.docs.zone": [4621], "www.aclu.org": [256], "it.arch.ethz.ch": [4975], "www.uclinics.com": [16945], "wiki.tox.chat": [16616], "sysysportal.axosoft.com": [1477], "*.wiki.zoho.com": [18884], "www.jsperf.com": [8656], "www.cta-observatory.org": [3061], "*.ladyfootlocker.com": [9128], "avtrade.co.uk": [1457], "apj.aas.org": [235], "world.popads.net": [12902], "*.firehost.com": [5854], "www.civicalg.com.au": [19065], "www.vr.se": [17511], "msndata.jp.msn.com": [9794], "www.de-captcher.com": [4240], "www.svenskakyrkan.se": [15671], "collabora.co.uk": [3419], "pep.uni-potsdam.de": [17333], "blazeti.me": [2062], "archive.angus.gov.uk": [1020], "www.customwheelconnection.com": [3938], "partners.devon.gov.uk": [4428], "www.moto-g.com": [10614], "www.letstalkbitcoin.com": [9265], "cms3.rz.htwk-leipzig.de": [7114], "cdn.exactag.com": [5479], "ct.pinterest.com": [12699], "sikur.com": [14785], "stags.bluekai.com": [2133], "assets.sidearmsports.com": [14764], "www.kosmas.cz": [8742], "*.libdems.org.uk": [9292], "*.staysmartonline.gov.au": [15442], "assets.bt.com": [1551], "www.pte.hu": [12302], "www.cars.unm.edu": [16992], "faxjh.savetheinternet.eu": [14316], "www-mail.biologie.ens.fr": [4930], "*.austrade.gov.au": [1379], "www.hushmail.com": [7632], "shutthebackdoor.net": [14752], "reelhd.com": [13710], "www.t3blog.com": [15780], "womensexpova.com": [18406], "lists.freebsd.org": [6120], "www.betcoin.tm": [1813], "www.pivotal.io": [12730], "new.leadforensics.com": [9197], "freechelsea.com": [6140], "www.thechive.com": [16258], "vip.t-mobile.com": [15772], "heart-2-heart.ca": [7274], "www.sophos.com": [15154], "bootstrap.pypa.io": [13265], "global.ahnlab.com": [739], "www.yaha.no": [18633], "norman.com": [11487], "images.thalasseo.com": [16168], "support.panopto.com": [12364], "ill.rit.edu": [13434], "trac.jitsi.org": [8583], "www.recapthelaw.org": [13643], "casper.com": [2885], "sigfig.com": [14775], "imssr.com": [7760], "dashboard.ngrok.com": [11375], "secure.stage-gettyimages.co.*": [6621], "www.siedler25.org": [13832], "www.dontspyonus.org.uk": [4680], "www.smuxi.im": [15016], "www.privacyassociation.org": [8263], "ntnu.no": [10964], "reethus-adeline.de": [13714], "sonycsl.co.jp": [15148], "oit.umd.edu": [17263], "studentrecords.wustl.edu": [17993], "*.espncdn.com": [6363], "*.paymentssource.com": [12478], "bloodhoundgang.com": [2116], "www.jxself.org": [8702], "nepomuk.kde.org": [8718], "www.jpcsp.org": [5224], "*.fcac.org": [5635], "secure.rentalcars.com": [13773], "ooshirts.com": [11898], "img.dxcdn.com": [4253], "fb.hsicloud.com": [7581], "epa-dccs.ornl.gov": [11693], "v.eroshare.com": [5350], "red-bean.com": [13665], "faculty.ischool.syr.edu": [15745], "livenation.*": [9481], "rsf.org": [13784], "*.revoltgames.com": [13849], "email.stanford.edu": [15383], "forum.cnes.fr": [2634], "www.get.how": [6575], "demo.joomla.org": [8627], "admin.omgpm.com": [12949], "www.ease.ed.ac.uk": [5067], "davincivaporizer.com": [4231], "www.upatient.com": [17010], "ox.digi.hu": [4470], "intevation.org": [8297], "dev.office.com": [11743], "alltubedownload.net": [862], "i4.code.msdn.s-msft.com": [14058], "blog.legitbs.net": [9233], "weltbild.ch": [18197], "swagshop.spiceworks.com": [15266], "*.tags.sitetagger.co.uk": [14873], "idportal.lrz.de": [9238], "tools.oasis-open.org": [11606], "groups.csail.mit.edu": [9749], "m.carphonewarehouse.com": [2861], "www.wienenergie.at": [18284], "feedback.adroll.com": [535, 536], "dionyziz.com": [6915], "www.devstructure.com": [4418], "imagesc.btol.com": [1623], "www.highon.coffee": [7399], "www.hamradio.com": [7184], "www.npower.com": [11543], "dashboard.tinypass.com": [16489], "secure.smallbits.com": [14980], "keyserver.pgp.com": [12245], "www.carlosprioglio.com": [2854], "www.labelsbythesheet.com": [9126], "uat.billdesk.com": [1876], "prolexic.com": [13146], "www.geoamigo.com": [6535], "demandware.com": [4349], "d.ibtimes.co.uk": [7677], "shop.m-budget.migros.ch": [19399], "people.yandex.by": [18648], "*.herdict.org": [7325], "freshcode.club": [6202], "cinesport.com": [3142], "bonus.games.mail.ru": [9874], "*.deviantart.com": [4423], "oniontip.com": [11864], "www.impactstory.org": [8013], "www.gigaom.com": [6644], "support.wandisco.com": [17893], "fafsa.gov": [5550], "venmo.com": [17607], "vanillicon.com": [17560], "*.rating-widget.com": [13576], "survival.tacticaltech.org": [15901], "www.research.vt.edu": [17740], "who.is": [18258], "www.essaysreasy.com": [5364], "stemulitefitnessformula.com": [15467], "gog.com": [6365], "*.vespermarine.com.au": [17651], "illicoweb.videotron.com": [17700], "research.illinois.edu": [17258], "investor.marvell.com": [16381], "*.mediafire.com": [10151], "*.pantherssl.com": [2560], "www.kn.vutbr.cz": [17522], "www.openbenchmarking.org": [11922], "teddyonlinejudge.net": [16057], "telekom.com": [16087], "gamcare.org.uk": [6411], "emaileri.com": [5192], "www.reflets.info": [19544], "ad.harrenmedianetwork.com": [7210], "*.theoutnet.com": [16303], "cdn7.openculture.com": [12006], "genivi.org": [6316, 6317], "www.deliveras.gr": [4332], "xav.com": [18546], "www.amherst.edu": [954], "www.wikimedia.or.id": [18296], "unternehmen.aldi-suisse.ch": [299], "*.sestatic.fi": [14106], "marketwatch.com": [10021], "parabolagnulinux.org": [12385], "www.nat.ms": [11041], "cheema.com": [3054], "ex.mail.ovh.net": [12173], "advisormailout.com": [667], "bind10.isc.org": [7821], "outlook.leeds.ac.uk": [17318], "wiki.instantbird.org": [8186], "blocket.se": [2094], "shop.m.taobao.com": [15952], "www.hertzrent2buy.com.br": [7340], "covad.net": [3726], "www.devimperium.com": [4425], "blog.bitbucket.org": [1926], "media.grc.com": [6380], "signup.lotro.com": [19372], "www.raam.org": [13486], "perimeterinstitute.ca": [19488], "static.gearslutz.com": [6488], "www.bentasker.co.uk": [1772], "lens.io": [9254], "academy.redhat.com": [13675], "bugs.linux-mips.org": [9413], "images3.jlist.com": [8442], "chrismatic.io": [3108], "ru.calameo.com": [2731], "perspectives-project.org": [18428], "ox-d.overdrive.com": [12160], "api.groupon.com": [6974], "choiceofgames.com": [3097], "cacti.its.thm.de": [15811], "www.britishairways.com": [1488], "toppreise.ch": [19688], "www-cache5.extensis.com": [5523], "www.lambda-linux.io": [9135], "e-ksf.org": [4841], "websitealive7.com": [18149], "support.greenbone.net": [6929], "app.jd.com": [8422], "allyoucanarcade.com": [848], "kommunal.se": [8967], "www.cipeg.leeds.ac.uk": [17318], "blognone.com": [2111], "hg.python.org": [13272], "static.fimfiction.net": [5816], "c.o0bc.com": [11601], "www.kyn.me": [9054], "fr.malwarebytes.org": [9929], "www.linksmail.de": [9380], "xxxbunker.com": [18607], "*.getmein.com": [9481], "devel.unikernel.org": [17188], "www.firefox.com": [5859], "*.thumbshots.net": [16401], "s.jd.com": [8423], "tfes.org": [16164], "www.mozo.co": [10665], "www.pooi.tk": [3533], "kaiseki.me": [8768], "practicesightssupportportal.axosoft.com": [1477], "evans.washington.edu": [17291], "www.kcc.webhostone.de": [18121], "ltc.huobi.com": [7624], "smallingerland.nl": [11132], "www.kerbalspaceprogram.com": [8855], "afcom.com": [281], "remedy.canon-europe.com": [2809], "dashboard.bitgravity.com": [1932], "i0.gmx.com": [6350], "www.bitcoinforum.com": [1979], "www.brown.edu": [2367], "www.ada.lt": [547], "www.datapipe.co.uk": [4210], "images.deals.woot.com": [18424], "sync.security.pp.regruhosting.ru": [13741], "www.tetu.com": [16148], "*.logicboxsoftware.com": [9556], "www.picostocks.com": [12665], "blog.webtype.com": [18094], "www.hamptons.curbed.com": [3926], "structure.ncbi.nlm.nih.gov": [11052], "file.service.qq.com": [13285], "sukebei.nyaa.eu": [11595], "documentation.red-gate.com": [13657], "xroxy.com": [18590], "www.noblehour.com": [11447], "www.davidadrian.org": [4225], "www.ehospice.com": [5118], "static-dev.gbot.me": [6808], "my.evidon.com": [5458], "fr.chaturbate.com": [3035], "exante.eu": [4993], "sourceware.org": [15184], "tucowsinc.com": [16816], "www.nurd.space": [10976], "evga.com": [4986], "www1.citibank.com": [3171], "wwwrc.cinelease.com": [7372], "sgc.static.rtbf.be": [14011], "jointheherd.little.my": [9475], "myneu.neu.edu": [10902], "ripe63.ripe.net": [13895], "www.thunderranchinc.com": [16403], "www.ruderich.org": [14023], "resources.oncourse.iu.edu": [8064], "pages.here.com": [7326], "alexandercoward.com": [797], "www.york.ac.uk": [17351], "www.orionmagazine.org": [12108], "cdn.crushable.com": [859], "subscribe.condenet.com": [3558], "healthstream.usc.edu": [17037], "data.videohub.tv": [17687], "www.moaf.org": [10480], "*.beetailer.com": [1751], "xiscosoft.org": [18576], "hs11.snstatic.fi": [14145], "www.gemeentewesterveld.nl": [11132], "www.allunmanaged.com": [841], "pviq.com": [13260], "www.uploaded.net": [17393], "youtube.co.at": [18709], "www.adbit.co": [516], "dominustemporis.com": [4674], "blog.symbolab.com": [15716], "www.identitytheft.org.uk": [7939], "tn123.org": [19687], "scm-fusioncrm.oracle.com": [12082], "de.canon.ch": [2809], "imagesrel.hertz.com": [7372], "lt.libreoffice.org": [9311], "mailgun.com": [9883], "www1.maine.gov": [9894], "www.aip.org": [291], "savingscatcher.walmart.com": [17964], "parking.sevenoaks.gov.uk": [14638], "www.weblearn.ox.ac.uk": [17271], "sebp.due-north.com": [19129], "*.salesforce.com": [14249], "extensions.joomla.org": [8627], "www.autisticadvocacy.org": [1412], "autotrack.nl": [1418], "cz.norton.com": [11505], "www.privacyenforcement.net": [13087], "eduroam.cz": [5098], "www.twenga-solutions.com": [16872], "wpsoftware.net": [17925], "cp.sweb.ru": [15208], "system3.deprexis.com": [4376], "unifiedtracking.com": [17185], "sec.taobao.com": [15952], "mobstac.com": [10487], "www.lilliputti.com": [9353], "blog.vungle.com": [17877], "office2010.microsoft.com": [10364], "codementor.io": [3371], "commencement.stanford.edu": [15383], "www.filebyid.com": [5797], "igaming.biz": [7732], "cdn.blisstree.com": [859], "secure8.itradecimb.com.my": [2606], "www.v-dem.net": [19725], "repos.wine-staging.com": [18350], "www.xakep.ru": [18539], "www.geocoder.ca": [6536], "zscore.mit.edu": [9747], "targetedthreats.net": [15963], "sideshowtoy.com": [14765], "romab.com": [13963], "hilfe.freemail.web.de": [18050], "flipagram.com": [5924], "front-admin.voyage-prive.co.uk": [17856], "*.globat.com": [6742], "support.viglink.com": [17710], "csrsupport.com": [2677], "www.db.tt": [4768], "s.cdnwp.com": [2559], "maps.google.*": [6841], "*.adobeconnect.com": [616], "static.cuttlefish.com": [3945], "www.changetip.com": [2995], "online.aberdeenshire.gov.uk": [412], "www.wifilib.com": [18285], "account.domaintools.com": [4660], "mike.kaply.com": [8790], "webmail.bell.net": [1763], "www.modulus.io": [10527], "c1.thejournal.ie": [16224], "handelsregister.de": [7188], "cdn1.a1.net": [217], "directory.services.live.com": [9483], "icinga.org": [7919], "www.surftown.com": [15652], "www.havant.gov.uk": [19237], "e-mielenterveys.fi": [4855], "style.taobao.com": [15952], "kryptos.sh": [9020], "www.economist.com": [5060], "www.yawnbox.com": [18663], "www.openfoundry.org": [11938], "nextagnews.nextag.com": [11362], "gun.io": [7022], "www.wbplay.com": [17897], "www.pinegram.com": [12678], "*.realmedia.com": [76], "*.suntimes.com": [15594], "medleyads.com": [10200], "community.flockport.com": [5936], "www.snelis.com": [15033], "bugs.x2go.org": [18499], "help-it-eu.nike.com": [11401], "jenkins.debian.net": [4273], "webtimeclock.com": [18164], "forsvarsforbundet.se": [6053], "www.catersnews.com": [2902], "e2.emediate.se": [5204], "*.babelzilla.org": [1591], "ut.ee": [17069], "google.usc.edu": [17278], "wiki.cites.uiuc.edu": [16956], "mighty-hoernsche.de": [2592], "cloud0.lchost.co.uk": [9066], "checkbox.com": [19054], "psr.iq.harvard.edu": [7219], "archos.com": [1171], "alumni.indiana.edu": [8065], "my.xilo.net": [18517], "fonticons.com": [5991], "blogs.law.harvard.edu": [7219], "www.cironline.org": [2614], "www.deliciousgreencoffee.com": [4329], "research.wustl.edu": [17993], "chat.hostican.com": [7524], "www.sraoss.co.jp": [14164], "www.whitehathouston.com": [18254], "a.mtstatic.com": [10683], "yieldselect.com": [18679], "developer.service.hmrc.gov.uk": [7084], "www.etegro.com": [4977], "www.artsedge.kennedy-center.org": [19335], "www.citialumninetwork.com": [3169], "glkb.ch": [19333], "my.greenparty.org.uk": [6925], "www.brashear.me": [2289], "save-notes.com": [14310], "purina.com": [13245], "www.encyclopediadramatica.se": [5241], "moreinterop.com": [10588], "misadventureswithandi.com": [10450, 10451], "geriatrics.stanford.edu": [15383], "www.cmw-leipzig.de": [7114], "talkgadget.google.com": [6834], "daserste.ndr.de": [11119], "*.4sqi.net": [163], "invasion.com": [8310], "analytics.systemli.org": [15765], "cdn.traceregister.com": [16628], "syncthing.net": [15732], "www.shareholder.com": [14677], "atlantic.net": [1318], "esp2.ap.equinix.com": [5334], "www.c-cex.com": [2493], "commlink.org": [3472], "quantummansite.com": [13342], "*.mbl.is": [10110], "3.f.ix.de": [8404], "forgeapi.puppetlabs.com": [13232], "alum.kuleuven.be": [8816], "www.osl.iu.edu": [8064], "www.hilversum.nl": [11132], "etretouchy.com": [5394], "youtube.co.nz": [18709], "mysort.symantec.com": [15715], "forums.boounce.com": [2219], "*.texastribune.org": [16156], "www.chriscoyne.com": [3104], "moviii.liu.se": [9084], "snowdrift.coop": [15043], "sp.jd.com": [8423], "sueddeutsche.kaufdown.de": [8821], "flokinet.is": [5938], "zhiyuanzhe.taobao.com": [15952], "www.premiertaxfree.com": [13027], "gtl.osu.edu": [11760], "ce.jhu.edu": [16296], "kubuntu.org": [9029], "lucidsolutions.co.nz": [9644], "www.usenix.org": [17040], "otm.wustl.edu": [17993], "dev.laptop.org": [11631], "wp-tao.com": [17919], "www.landscapephotographymagazine.com": [9142], "ttu.ee": [15936], "*.r01.ru": [13391], "*.akb.ch": [19333], "*.boe.es": [1536], "*.kinghost.com.br": [8898], "www.disconnect.me": [4543], "www-01.ibm.com": [7675], "boots.com": [2213], "s.click.taobao.com": [15952], "kangurum.com.tr": [8781], "shop.1and1.com": [51], "bookit.nl": [7452], "geekgirlsguide.com": [6497], "*.webtrekk.net": [18170], "www.synopsys.co.jp": [15739], "www.oneadmin.cz": [11641], "pheedo.com": [12618], "auth.hackaday.io": [7138], "www.businessclick.com": [19028], "ubuntu-tr.net": [17101], "mh21.de": [10330], "spdx.org": [14155], "*.gotvape.com": [6854], "jp.chaturbate.com": [3035], "www.stripefees.com": [15527], "www.luu.org.uk": [9109], "pshop.piratenpartei.de": [12721], "honest.com": [7481], "www.alltubedownload.net": [862], "rss.leboncoin.fr": [19351], "www.gnupg.org": [6762], "ulule.com": [17139], "ecatering.irctc.co.in": [7812], "www.urel.feec.vutbr.cz": [17522], "www.imensa.de": [7988], "community-uat.akamai.com": [761], "netnow.co": [11201, 11202], "dynatech.de": [4832], "su.nottingham.ac.uk": [11528], "static.librarything.com": [9305], "www.nic.tel": [16100], "www.oralb.com": [13121], "publish.uic.edu": [17231], "sts.edp.pt": [4896], "canlialem.com": [2807], "webwewant.org": [18097], "selfservice.slough.gov.uk": [14971], "cachegames.mirrorbingo.com": [10445], "*.radboudnet.nl": [13510], "misc.360buyimg.com": [112], "*.valueclickmedia.com": [17541], "*.bestcovery.com": [1809], "www.symfony.com": [15717], "experian.experiandirect.com": [5506], "neas.nhs.uk": [10913], "www.itbiz.cz": [8387], "*.momsmedia.com": [17540], "domainreport.domaintools.com": [4660], "www.grupoavante.org": [6988], "www.prowebsector.gr": [13114], "polymer-project.org": [12893], "kir.hu": [11777], "static3.businessinsider.com": [2454], "www.thestaradvisers.com": [16312], "news.slac.stanford.edu": [15383], "qa.shirazlug.ir": [14708], "www.haobtc.com": [7197], "discuss.citra-emu.org": [19063], "www.limeservice.com": [9355], "v2cigs.com": [17461], "pixel.condenastdigital.com": [3554], "absolute.com": [430], "surfcanyon.com": [15648], "onesearch4-2.newsvine.com": [11348], "barracuda.com": [1680], "webforms.lidl.com": [9327], "intrepidmuseum.org": [8299], "deeppoliticsforum.com": [4300], "ums.adtechus.com": [639], "www.adfox.ru": [524], "elibrary.westminster.gov.uk": [18220], "entitlement.auth.adobe.com": [615], "www.newsregistry.com": [11323], "plus.jcloud.com": [8541], "static4.dditscdn.com": [4239], "ostratest.ro.vutbr.cz": [17522], "www.fteproxy.org": [6240], "www.twosigma.com": [16898], "twrp.me": [15891], "wiki.fitbit.com": [5887], "www.jcea.es": [8540], "account.norton.com": [11505], "spa.wustl.edu": [17993], "play0ad.com": [12792], "www.speed-dreams.org": [15251], "eweka.nl": [5470], "valeforms.valeofglamorgan.gov.uk": [17532], "17track.net": [39], "shop.piratenpartei.de": [12721], "www.student-affairs.buffalo.edu": [17297], "vibrantmedia.com": [17665], "www.hospitalityleaders.com": [7500], "vidaysalud.com": [17678], "aka-cdn.adtech.de": [638], "wine-staging.com": [18350], "pitz.desy.de": [4399], "aaronparecki.com": [396], "img01.rl0.ru": [13914], "www.demandware.com": [4349], "lsu.edu": [9623], "*.home.pl": [7465], "www.rmit.edu.au": [13437], "www.gpul.org": [6375], "corbinfisher.com": [3660], "login.xilo.net": [18517], "www.torrentz-proxy.com": [16589], "i.yastatic.net": [18662], "portfolio.it.ox.ac.uk": [17271], "www.s2media.be": [14063], "norfolk.overdrive.com": [12160], "bedrockformsemea.msn.com": [9796], "help.yammer.com": [18647], "www.brighton.com": [2331], "cdn4.gbot.me": [6808], "top.sogou.com": [19606], "images3.variety.com": [17565], "lnyx.cnaf.infn.it": [7766], "trove.com": [16762], "data.awp.is": [1292], "pmg-prd.stanford.edu": [15383], "bergenopzoom.nl": [11132], "connecticon.org": [3582], "t-engine.org": [15768], "zhiyou.smzdm.com": [15017], "static.ndr.de": [11119], "*.dancingastronaut.com": [4136], "my.sitetagger.co.uk": [14873], "support.on.aol.com": [321], "thirdage.com": [16368], "www.hrsmart.com": [7096], "tauday.com": [15977], "saml.peopleclick.com": [12551], "jobs.westminster.gov.uk": [18220], "socialshows.net": [15061], "csirt.cz": [2672], "partners.moodle.com": [10572], "*.derpicdn.net": [4381], "nadim.computer": [11007], "jumpeyecomponents.com": [8674], "techreport.com": [16050], "www.mcafeemobilesecurity.com": [10115], "kinox.me": [19337], "community-cache.freescale.com": [6183], "cgi.umd.edu": [17263], "gtms02.alicdn.com": [805], "kcl.ac.uk": [8899], "tokobitcoin.com": [16534], "admin.aerohosting.cz": [689], "hotspotshield.com": [7560], "kei.pl": [8841], "www.loadimpact.com": [9529], "math.aalto.fi": [390], "support.niteflirt.com": [11424], "opensc-project.org": [11968], "www.infobaselistexpress.com": [509], "www.velofinder.ch": [19732], "direct.yandex.com": [18651], "tbspace.de": [19662], "pingupod.de": [12689], "mapdis.ndc.nasa.gov": [10869], "ace-tag.advertising.com": [662], "www.geni.net": [6318], "www.piwik.org": [12733], "en.rsf.org": [13784], "seal.alphassl.com": [867], "gradschool.umd.edu": [17263], "www.mpornpass.com": [10670], "sp.f-secure.com": [5541], "www.startnext.com": [15412], "*.upforitnetworks.com": [785], "www.cpib.ac.uk": [2645], "projects.ic.nhs.uk": [10913], "www.citizensinformation.ie": [3176], "nuuvem.com": [11586], "www.erdgeist.org": [5339], "secure.sipgate.de": [14857], "southeastdorset.greenparty.org.uk": [6925], "milchweb.frieslandcampina.com": [2783], "developer.realvnc.com": [13627], "www.eduscho.at": [15985], "www.jdsupra.com": [8428], "signup.netflix.com": [11229], "milonic.com": [10400], "wiley.com": [18309], "osep.stanford.edu": [15383], "tme.engineering.osu.edu": [11760], "www.theskoop.ca": [14917], "crm.vdv.de": [17478], "sqlconverter.com": [14162], "astra.io": [1301], "ederdrom.de": [5076], "docs.kde.org": [8718], "lastlog.de": [9164], "fromorbit.com": [6222], "www.hitslink.com": [7426], "*.zimbra.com": [18868], "www.phaser.io": [12616], "vremya.yandex.com.ua": [18650], "blog.fusiondigital.io": [6278], "tradeleaks.com": [16636], "man.com": [9935], "domaincamp.de": [4651], "www.nzz.at": [19450], "palgrave.com": [12343], "www.bbbonline.org": [1494], "blog.hipmunk.com": [7415], "rhn.redhat.com": [13675], "blogs.manageengine.com": [9940], "login.engineyard.com": [5265], "www.fiddler2.com": [19177], "www.thecalmzone.net": [16254], "*.atlanticmetro.net": [1317], "*.emv3.com": [5194], "www.123systems.net": [27], "trac.hohndel.org": [3503], "ondemand.manageengine.com": [9940], "www.abacus.com": [400], "www.aussieperthtours.com.au": [1376], "ah.pricegrabber.com": [13052], "webofknowledge.com": [18107], "www.netnanny.com": [11214], "revoltgames.com": [13849], "microster.pl": [10347], "www.rescue.org": [19546], "rule.tmall.com": [19684], "*.tampabay.com": [15937], "sandbox.buttercoin.com": [2463], "open2.baidu.com": [1619], "image.exct.net": [5482], "www.bitcoinmagazine.com": [1981], "server.adform.net": [585], "*.mark.reevoo.com": [13715], "www.domaindiscount24.net": [19123], "www.anon-ib.la": [1036], "wrb.uopnet.plymouth.ac.uk": [12833], "lady.taobao.com": [15952], "*.umbc.edu": [16981], "cdn.engine.phn.doublepimp.com": [4717], "*.smartphoneexperts.com": [15000], "*.caseking.de": [2876], "q1.qlogo.cn": [13304], "www.ga-innocenceproject.org": [6547], "lichfielddc.objective.co.uk": [19454], "passport.yandex.kz": [18652], "www.it.jhu.edu": [16296], "www.orxrdr.com": [12114], "globalmarinenet.com": [6715], "www.tcodevelopment.com": [15988], "pbesignup.euw.leagueoflegends.com": [9206], "irc.pirati.cz": [12722], "help.creator.zoho.com": [18884], "www.matalan.co.uk": [10062], "www.switchie.ch": [15704], "investor.tremorvideo.com": [16711], "*.campaigner.com": [2779], "webzilla.com": [18099], "valtiolle.fi": [17535], "*.tent.is": [16116], "bcge.ch": [19333], "pensionschemes.hmrc.gov.uk": [7084], "www.pasteur.fr": [12446], "christianbook.com": [3112], "s-media-cache-ak0.pinimg.com": [12691], "www.a.switchadhub.com": [15701], "*.schallert.com": [14347], "ipv4.tunnelbroker.net": [16834], "*.worldmate.com": [18449], "giuliosnaas.just-eat.ie": [19328], "www.3dstats.com": [123], "news.drweb.com": [4783], "bobafamily.com": [2171], "store.unity3d.com": [17220], "login.deepin.org": [4302], "www.fortiguard.com": [6055], "www.e-food.gr": [4850], "gexpro.com": [6622], "www.zooniverse.org": [18905], "porn-w.org": [12925], "login.sina.com.cn": [14842], "www.webrtc-experiment.com": [18081], "optics.osu.edu": [11760], "dosowisko.net": [4688], "www.dash.org": [4162], "www.ucollege.wustl.edu": [17993], "snl.com": [14143], "host.co.id": [7504], "development.freebiblesoftware.com": [6139], "ce1.com": [3776], "digits.com": [4509], "www.parkingcrew.com": [12405], "uni-passau.de": [17331], "labs.webfoundation.org": [18102], "members.maximintegrated.com": [10096], "*.ovh.net": [12172], "findagrave.com": [5842], "asd.leeds.ac.uk": [17318], "quotes.beaglestreet.com": [1728], "lotusoriginals.com": [9616], "minavardkontakter.se": [10805], "synaesthesie.net": [15723], "usenetserver.com": [17428], "debs.dict.cc": [4455], "www.soundkit.io": [15157], "strasweb.fr": [15507], "sentry.services.disqus.com": [4570], "chat1a.livechatinc.com": [9480], "recyclenow.com": [13654], "eset.at": [4953], "bodhi.fedoraproject.org": [5726], "trustedcomputinggroup.org": [16791], "romab.se": [13963], "tinyteenpass.com": [16490], "www.triumph-adler.de": [16752], "lumesse.com": [9663], "git.debian.org": [4275], "sydney2013.drupal.org": [4780], "www.untappd.com": [17371], "code.stripe.com": [15525], "isurveys.researchresults.com": [13799], "*.circleci.com": [3155], "websitealive6.com": [18149], "mobilephones.comparethemarket.com": [3511], "www.icq.com": [7690], "*.bis.gov.uk": [16965], "sso-prod0.cisco.com": [3162], "mlpchan.net": [9758], "subscription.washingtonpost.com": [17990], "tpg.com": [15850], "artsandsciences.osu.edu": [11760], "www.mufin.com": [10688], "www.swisscex.com": [14207], "meta.superuser.com": [15359], "*.resource.org": [13207], "ecampus.no": [4882], "lab.alipay.com": [817], "www.spider.io": [15268], "96boards.org": [209], "www.umassulearn.net": [17265], "www.mosis.com": [9778], "clicks.beap.ad.yieldmanager.net": [13881], "www.europe-miniatures.com": [5422], "az.turbobytes.net": [16838], "iplayerhelp.external.bbc.co.uk": [1499], "parking.dover.gov.uk": [4718], "*.factorydirectcabins.com": [5627], "theartstack.com": [16244], "library.jhu.edu": [16296], "ilearning.oracle.com": [12082], "ssl.ticketportal.sk": [16423], "js.arcgis.com": [1155], "chicagofed.org": [3071], "file1.answcdn.com": [1059], "*.shop.forgefields.com": [6035], "chiefsblog.stanford.edu": [15383], "blogspot.co.uk": [2107], "io.tdc.no": [15797], "jobs.jhu.edu": [16296], "sourced.fm": [15178], "kaizencrossfit.com": [4020], "jp.redhat.com": [13675], "files.pfsense.org": [12607], "www.ruelala.com": [14025], "unhosted.org": [17164], "www.earthvpn.com": [19141], "*.sigfig.com": [14775], "www.bitfinex.com": [1995], "dinahosting.pt": [4520], "checktls.com": [3053], "ua-hosting.com.ua": [17081], "www.belarus.indymedia.org": [8085], "*.expohomes.com": [5627], "press.pr.co": [13007], "mystockoptions.com": [10787], "www.nacdl.org": [10866], "www.wordsapi.com": [18435], "support.trakt.tv": [19692], "lovelens.li": [9630], "confex.com": [3567], "necessaryandproportionate.org": [11128], "blau.de": [2060], "www.ricochet.im": [13878], "vlissingen.nl": [11132], "learning.calderdale.gov.uk": [2735], "comsigntrust.com": [3455], "www.heute-show.de": [19800], "coursedirectoryproviderportal.org.uk": [19082], "static.geogebra.org": [6537], "gsnmagazine.com": [6870], "s.taobao.com": [15952], "jobsp.swisscom.com": [15698], "wordstat.yandex.com.tr": [18649], "fiber7.ch": [5770], "www.waytools.com": [18010], "www.hertz247.co.uk": [7371], "beacon.securestudies.com": [14495], "ucalgary.ca": [16943], "blog.blackphone.ch": [2048], "openwireless.org": [12029], "quizaction.de": [13372], "bart.gov": [1681], "www.steadfast.net": [15446], "betclair.com": [7732], "www.google.co.*": [6838, 6840, 6845, 6848], "*.tweaktown.com": [16865], "stopglobalwarming.org": [15485], "sample-threes.readme.io": [13608], "clickssl.com": [3251], "us-ads.openx.net": [11993], "prospectmagazine.co.uk": [13162], "duodecim.fi": [4804], "xenobite.eu": [18564], "et.symantec.com": [15715], "services.hinckley-bosworth.gov.uk": [7412], "researchtoreality.cancer.gov": [2805], "ryazan.rt.ru": [13469], "www.alastairs-place.net": [779], "consultmahan.com": [9864], "rage4.com": [19531], "www.plastc.com": [12781], "rt.marinsoftware.com": [9997], "clara.io": [3210], "www.bluepoint.com.ph": [2154], "triph5.m.taobao.com": [15952], "base.liveperson.com": [9494], "ib.primabanka.sk": [13057], "*.gomoxie.com": [10645], "asnbank.nl": [352], "ssh.ocf.berkeley.edu": [17240], "connect.arkos.io": [1196], "ebanking.danskebank.dk": [4145], "nwk-buyiphone.apple.com": [1120], "flashtalking.com": [5907], "ams.iu.edu": [8064], "java-apps.org": [19461, 19462], "download.ib.nab.com.au": [10865], "www.intrepidusgroup.com": [8300], "www.aircrack-ng.org": [750], "media2.congstar-media.de": [3576], "wordpress.org": [18429], "www.linguee.com": [9373], "ibario.com": [7678], "www.heg.com": [7502], "www.lizdenys.com": [9520], "google.bitnami.com": [2011], "stats.junge-piraten.de": [8679], "epidem.mysql.cesky-hosting.cz": [19051], "www.mol.gov.sa": [14306], "scapsync.com": [14087], "www.movie2k.cm": [10635], "havant.gov.uk": [19237], "badgeville.com": [1606], "sv-se.facebook.se": [5623], "ihgagent.com": [8230], "www.conetrix.com": [3337], "billing.stablehost.com": [15357], "www.parse.com": [12412], "amadeu-antonio-stiftung.de": [905], "www.cahiersdedroit.fd.ulaval.ca": [17229], "mahoneshomedecor.com": [9866], "utbm.fr": [19724], "www.ori.dhhs.gov": [19117], "scamfraudalert.com": [14330], "www.dustin.eu": [4809], "ssl.hiconversion.com": [7386], "rothaconference.leeds.ac.uk": [17318], "us.hsbc.com": [7098], "*.maemo-apps.org": [19462], "www.garfield.com": [6459], "*.mua.hrdepartment.com": [7096], "visual-paradigm.com": [17782], "www.neomailbox.net": [11154], "i.fantasyfootball.telegraph.co.uk": [16082], "codemilltech.com": [3356], "dropbox.uu.se": [17074], "oberbayern.piratenpartei-bayern.de": [12719], "me.washington.edu": [17290], "www.jsis.washington.edu": [17291], "dongtai.taobao.com": [15952], "s3.camelcamelcamel.com": [2774], "assets.newrepublic.com": [11309], "shop.sysmocom.de": [15756], "poole.objective.co.uk": [19454], "lists.bugzilla.org": [2410], "www.myoptimizerplus.com": [10813], "jquerymobile.com": [8452], "www.wincent.com": [18335], "www.openai.com": [11916], "bookings.ibizarocks.com": [7901], "cdn.rawnet.com": [13582], "cloudfront.mediamatters.org": [10158], "support.uidaho.edu": [18428], "*.eyeviewads.com": [5534], "*.bpt.bz": [2366], "cascade.conted.ox.ac.uk": [17271], "halowaypoint.com": [7176], "snsbank.nl": [14144], "wallabag.org": [17960], "sharemenot.cs.washington.edu": [17291], "shop.flixbus.fr": [5931], "tech.plug.dj": [12822], "gdata.pt": [6293], "kulturkalender.faz.net": [5553], "manage.audienceadnetwork.com": [1351], "*.tricolumbia.org": [16732], "*.clickbank.net": [3243], "www.crazyegg.com": [3764], "itex.com": [8390], "anonymousads.com": [1051], "superevr.com": [15628], "www.pogoda.yandex.com.ua": [18650], "www.beej.us": [18988], "code.getfoxyproxy.org": [6591], "www.solidlogic.com": [15120], "maps-api-ssl.google.com": [6841], "www.skycure.com": [19599], "fox-toolkit.net": [5589], "e.admaster.com.cn": [530], "keymile.com": [8870], "www.forrester.com": [6049], "private-c.gmocloud.com": [6343], "competitions.cr.yp.to": [3748], "itactic.com": [7861], "sodahead.com": [15083], "getfirebug.com": [6573], "www.openwireless.org": [12029], "jsfiddle.net": [19327], "tracking.hubspot.com": [7594], "*.fxguide.com": [6289], "www.franchiseradioshack.com": [13515], "www.switch.ch": [15699], "www.mattermark.com": [19387], "www.digcoin.com": [4467], "*.adverts.ie": [663], "tylercipriani.com": [16905], "partypoker.com": [12420], "cis-india.org": [2615], "c-base.org": [2492], "affiliatetracking.com": [702], "mededresearch.stanford.edu": [15383], "slice.mit.edu": [9749], "partnerweb.westminster.gov.uk": [18220], "pushbullet.com": [13251], "www.torchlightgame.com": [16573], "gateway.answerscloud.com": [1061], "www.sourceware.org": [15184], "corporate.digitalriver.com": [4483], "helpdesk.pcc-cic.org.uk": [12219], "hellolife.net": [7297], "static.filmon.com": [5812], "www.digitalnewsagency.com": [4494], "www.clusterhq.com": [3323], "wustlkey.wustl.edu": [17993], "syoparekisteri.fi": [15744], "allianz.com": [18950], "www.dnscurve.net": [4062], "o2extra.cz": [16076], "secure.webdam.com": [18059], "ipsec.pl": [7806], "www.sitetrustnetwork.com": [14874], "login.run.pivotal.io": [12730], "seal.digicert.com": [4473], "finnchamber.com": [14993], "www.casinoestrella.com": [2883], "securusglobal.com": [14537], "angel.co": [1014], "admin.goeshow.com": [6799], "www.pcicomplianceguide.org": [12225], "ssl4.ovh.net": [12173], "developers.onedrive.com": [11831], "autodiscover.illinois.edu": [17258], "zerodayinitiative.com": [18845], "metashop.at": [13026], "mammut.ch": [9933], "fallback.wix.com": [18383], "m.fotki.yandex.ua": [18656], "studentmoney.uillinois.edu": [16960], "www.1und1.de": [68], "www.defsounds.com": [4315], "mailfire.newsinc.com": [11335], "gwinnettcounty.com": [7034], "www.registryrocket.com": [13737], "openhost.co.nz": [12036], "f2.thejournal.ie": [16224], "developer.windowsphone.com": [18346], "www.fribid.se": [6209], "lizdenys.com": [9520], "module.zdf.de": [19800], "scanningpens.co.uk": [14337], "payments.pirateparty.org.au": [12713], "*.glkb.ch": [19333], "clkmon.com": [3272], "ip.bitcointalk.org": [1959], "grass.osgeo.org": [11669], "*.bbc.com": [1498], "reachandrich.antevenio.com": [1063], "www.veredelungslexikon.htwk-leipzig.de": [7114], "store.mzstatic.com": [1119], "crowdfunding.piwik.org": [12733], "www.landalcampings.be": [18490], "archaicbinary.net": [1160], "easypost.com": [5029], "lusternia.com": [19374], "wiki.ncsa.illinois.edu": [17258], "*.utsouthwestern.edu": [17283], "*.library.wisc.edu": [17349], "email.1and1.com": [51], "openoffice.org": [1084], "www.arguggi.co.uk": [1187], "www2.pbebank.com": [13203], "www.blink-182.com": [2075], "cmis.hertsdirect.org": [7335], "www.hertzequipmentrentals.com": [7372], "committees.williams.edu": [18316], "remote.jpress.co.uk": [8613], "u.openx.net": [11993], "*.salford.ac.uk": [17337], "blog.xtgem.com": [18596], "nl.pornworms.com": [12928], "saudi.gov.sa": [14306], "nyx.cz": [11599], "www.webjet.com.au": [18124], "*.ifriends.net": [7728], "ceg.osu.edu": [11760], "wikis.resonant.org": [13809], "future.moodle.com": [10572], "img.cache.vevo.com": [17481], "www.beaconinitiative.com": [1726], "*.exaccess.ru": [5475], "www.fitl.htwk-leipzig.de": [7114], "*.kaiserslautern.de": [8770], "gcxcare.globalcloudxchange.com": [6724], "test.ssltrust.us": [15349], "www.moonpig.com": [10578], "www.domain.fi": [4650], "*.newscred.com": [11327], "aperture.displaymarketplace.com": [13225], "www.academy.kaspersky.com": [8806], "*.shockmedia.nl": [14711], "wiki.se.inf.ethz.ch": [4974], "sp.sony-europe.com": [15141], "equitylending.nab.com.au": [10865], "static.cineclick.com.br": [3145], "blog.pardot.com": [12399], "passwordregistration.dkit.ie": [4040], "ikiwiki.iki.fi": [7961], "gems.tm.com.my": [16083], "business.danskebank.dk": [4145], "photoshelter.com": [12642], "www.myuofmhealth.org": [17378], "entagroup.com": [5289], "zwiebelfreunde.de": [18926], "isic.vutbr.cz": [17522], "www.aa.uw.edu": [17077], "ftlgame.com": [5608], "cars.unm.edu": [16992], "amnesty.fi": [961], "up0.net": [17379], "lock.cmpxchg8b.com": [2628], "irctc.co.in": [7812], "www.plug.dj": [12822], "webtables.cryptohaze.com": [3873], "cache.btrll.com": [2322], "link.samsung.com": [14264], "sec-i0.1und1.de": [68], "www.red-gate.com": [13657], "online.net": [11870], "directory.wokingham.gov.uk": [19762], "www.solar1.net": [15108], "ijobs-rs.madgexjb.com": [9840], "cdn.amazonblogs.com": [920], "cdn.katescomment.com": [8815], "www.smfta.com": [14137], "liftware.com": [9340], "luxomo.com": [9676], "disruptionlab.org": [4571], "hochschule-trier.de": [7442], "lendeavor.com": [9245], "register.com": [13732], "karty-kredytowe.money.pl": [10546, 10547], "kildarestreet.com": [8886], "m.pinterest.com": [12699], "es.news.walmart.com": [17964], "fernuni-hagen.de": [5755], "lanayachocolate.com": [9120], "www.shopware.de": [14732], "maillift.com": [9877], "ivpn.net": [7869], "bugs.otr.im": [11681], "relayrides.com": [13752], "www.trendin.com": [16718], "engage.intel.com": [8209], "www.emcraft.com": [5201], "artists.jamendo.com": [8502], "gist-assets.github.com": [6680], "nascis.hscic.gov.uk": [19264], "net-backup.com": [11173], "www.caddyserver.com": [2712], "wacken.com": [17942], "cryptanalysis.eu": [3846], "pageloc.com": [18126], "talktalk-labs.com": [15927], "uppsite.com": [17395], "iso.500px.com": [166], "blog.mediacru.sh": [10170], "fb-assets.com": [6201], "ifolor.ch": [19282], "rpc.blockchain.info": [2090], "nataliebennett.greenparty.org.uk": [6925], "*.shop.royalmail.com": [14000], "de-hu.dict.cc": [4455], "webkite.com": [18069], "law.resource.org": [13207], "ymlp.com": [18722], "www.sbforge.org": [14081], "www.bulletin.net": [2417], "posportal.com": [12281], "on.lung.ca": [11888], "30boxes.com": [99], "oyoony.at": [19475], "www.usenetjunction.com": [17426], "homelessveterans.co.uk": [7479], "www.sysdream.com": [15753], "greatnet.de": [6909], "www.amung.us": [18267], "*.new.livejasmincdn.com": [9489], "users.wholefoodsmarket.com": [18264], "www.kkh-allianz.de": [8732], "www.bawsi.org": [1493], "www.livechatinc.com": [9480], "*.bt.no": [1784], "filebyid.com": [5797], "webgta.ethz.ch": [4975], "s.2.taobao.com": [15952], "www.hardwarebug.org": [7205], "durham.police.uk": [4808], "biteasy.com": [1992], "accellion.com": [441], "raltay.rt.ru": [13469], "*.softcreatr.de": [15091], "inyt.com": [7772], "staples.com": [15388], "howto.gov": [7568], "vodafone.co.nz": [17812], "benefits.stanford.edu": [15383], "*.campuspack.eu": [2785], "support.silentcircle.com": [14786], "internap.com": [8254], "jobs.cisco.com": [3162], "www.ifa.ch": [7722], "feedbacklogin.xbox.com": [18550], "www.2kgames.com": [87], "infosecisland.com": [8127], "*.list-manage2.com": [9447], "www.rentler.com": [13776], "www.it-pol.dk": [8392], "freestateproject.org": [6152], "*.simplekb.com": [14827], "whistleblower.tv2.dk": [15881], "portal.geni.net": [6318], "securepcissl.com": [14508], "globe.chromeexperiments.com": [3117], "images.indianexpress.com": [8062], "music.cbc.ca": [2796], "superstart.se": [15635], "infocritique.fmed.ulaval.ca": [17229], "citrixready.citrix.com": [3178], "www.nab.org": [10864], "t.rasp.yandex.com.tr": [18649], "manage.gigenet.com": [6656], "admin.starproductreviews.com": [15397], "kilometrikisa.fi": [8888], "www.swiss-prime-site.ch": [19647], "malaysia.allianz.com": [18950], "esper.net": [5361], "ciifad.cornell.edu": [3676], "www.eplayer.performgroup.com": [12239], "member.doteasy.com": [4701], "royalnavy.mod.uk": [13995], "www.surfeasy.com": [15649], "szshop.sueddeutsche.de": [15577], "minecraft.net": [10415], "blogs.mcafee.com": [10114], "www.siliconrepublic.com": [14790], "www.sis.nlm.nih.gov": [11052], "www.die.net": [4458], "www.mbnet.fi": [9723], "jpldataeval.jpl.nasa.gov": [10869], "biz.world.waze.com": [18014], "s.evbuc.com": [5437], "origin.gigya.com": [6659], "dnaserum.com": [4057], "savannah.gnu.org": [6357], "www.thejns.org": [8643], "hr.od.nih.gov": [11052], "catalog.federalsoup.com": [5719], "a.abcnews.com": [240, 241], "content.gallup.com": [6409], "*.tsmc.com": [15862], "www.btcbuy.info": [1552], "login.geant.org": [6314], "secserv.adtech.de": [638], "*.eis.de": [5129], "corp.wamba.com": [17968], "store.drdobbs.com": [16021], "passport.i.ua": [7654], "infoq.com": [8101], "www.fundfill.com": [6257], "ptt.br": [12303], "*.slhost.com": [15090], "*.nomadesk.com": [11463], "webapps.nottingham.ac.uk": [11528], "woot.com": [18424], "www.vpn-service.us": [17499], "corpmail.otenet.gr": [12132], "www.codepicnic.com": [3351], "suggests.rasp.yandex.by": [18648], "encrypt.today": [5234], "*.mtgsy.net": [10371], "callink.berkeley.edu": [17240], "healthreach.nlm.nih.gov": [11052], "hertz247.nl": [7355], "guru3d.com": [7023], "*.netmng.com": [8153], "mobilecoe.dhs.gov": [4035], "medals.bizrate.com": [2033], "features.cpanel.net": [2653], "c.pcs.baidu.com": [1619], "*.thankyou4caring.org": [16174], "www.ja.wiki.hidekisaito.com": [7393], "bibliometrics.ki.se": [8725], "www.yummynames.com": [16816], "www.freemovement.org.uk": [6144], "groklearning-cdn.com": [6964], "openweb.or.kr": [12028], "download.sugarlabs.org": [15581], "cce.osu.edu": [11760], "mmoculture.com": [9764], "usabags.taobao.com": [15952], "immerda.ch": [19287], "imstore.bet365affiliates.com": [18992], "conferences.uillinois.edu": [16960], "www.omakaseweb.com": [11787], "sanger.ac.uk": [18193], "help.codesion.com": [3379], "www.national.com": [16152], "static.maemo.org": [9844], "*.fckme.org": [12266], "es.pforce.nvidia.com": [10985], "bufferbloat.net": [2403], "surge.omniti.com": [11795], "rossier.usc.edu": [17278], "security.freebsd.org": [6120], "movienewsletters.net": [10642], "pads.subsignal.org": [15566], "shopify.com": [14725], "anon-ib.la": [1036], "*.nyantec.com": [19447], "u.s.kqed.org": [8747], "blogs.princeton.edu": [13064], "games.bet365.com": [1811], "open.nlnetlabs.nl": [10941], "static.tofour.net": [16520], "tcpalmextras.com": [15793], "schoeller.de": [11170], "new.livestream.com": [9514], "subscribe.hollywoodreporter.com": [7454], "openhpi.de": [11940], "yoda.ygnition.com": [18677], "*.hackpad.com": [7158], "rugstudio.com": [14026], "decs.dict.cc": [4455], "*.ypbot.net": [18622], "*.uni-rostock.de": [17336], "ticket.iop.org": [8195], "www.kub.nl": [16445], "www.dea.com": [4262], "metro.yandex.kz": [18652], "www.leloop.org": [9191], "socialrank.com": [15058], "telegram.org": [16080], "www.charterbusiness.com": [3022], "passets-cdn.pinterest.com": [12699], "*.socialtwist.com": [15062], "kharma.unity3d.com": [17220], "metaboli.co.uk": [10302], "seclab.stanford.edu": [15383], "www.domreg.lt": [4676], "divshot.com": [4584], "hardware.redhat.com": [13675], "www.youtube.com.pe": [18709], "tags.crwdcntrl.net": [9613], "sv.gnu.org": [6357], "clickerheroes.com": [3259], "www.youtube.com.pt": [18709], "*.skroutz.gr": [14921], "wandisco.com": [17893], "essweb.wustl.edu": [17993], "hexonet.net": [7381], "infosida.nih.gov": [11052], "sipexternal.upc.ie": [17001], "tracks.www.zazzle.com": [18804], "car.tmall.com": [19684], "conscallhome.com": [3588], "upc.ie": [17001], "aswirlgirl.com": [1307], "asset-7headlines.pixfs.net": [12741], "vbi.vt.edu": [17740], "mexbt.com": [10132], "coinomat.com": [3407], "www.codeclub.org.uk": [3354], "burnley.gov.uk": [2443], "eyetechds.com": [5533], "*.iproduction.com": [7805], "bhw.de": [1517], "blog.nodejs.org": [11454], "nickyhager.info": [11387], "*.ssldomain.com": [15348], "www.boundarydevices.com": [19014], "www.zap2it.com": [18788], "static.freebase.com": [6157], "paginazero.com.br": [12334], "plan.gs": [15465], "blockstream.com": [2099], "sociales.unizar.es": [17356], "m3.ttxm.co.uk": [15868], "lccdataexchange.lincolnshire.gov.uk": [9364], "indy.im": [8079], "www.agariomods.com": [721], "metin2.co.nz": [10316], "www.joyclub.de": [8650], "monitoring-internal.stanford.edu": [15383], "assets.fitbit.com": [5887], "*.anl.gov": [1184], "laeditorialupr.com": [17334], "www.shadowproof.com": [14655], "studienwuerdig.htwk-leipzig.de": [7114], "www.schokokeks.org": [19570], "*.switch.co": [15700], "js.stripe.com": [15525], "sketchthemes.com": [14905], "1.f.ix.de": [8404], "dw.cbsi.com": [2527], "xperiastudio.com": [18583], "secure.pressreader.com": [13035], "cgit.freedesktop.org": [6126], "mtpc.govspace.gov.au": [6867], "*.necessaryandproportionate.org": [11128], "mediasite.osu.edu": [11760], "wickr.com": [18281], "youtube.com.pt": [18709], "seedboxes.cc": [14550], "demo.piwik.org": [12733], "moodle.dkit.ie": [4040], "all-about-security.de": [843], "rosehosting.com": [13968], "via.intercom.io": [8244], "www.tog.ie": [15844], "youtube.com.pe": [18709], "www.myob.com": [9815], "argonit.cz": [1183], "youtube.com.ph": [18709], "patchwork.freedesktop.org": [6126], "instantarticles.fb.com": [5698], "apkmirror.com": [1095], "switchie.ch": [15704], "marketplace.eclipse.org": [5049], "www.africangreyparrotcentre.co.uk": [710], "www.ecustomeropinions.com": [4888], "getchef.com": [6586], "fashion.taobao.com": [15952], "view.truste.com": [15856], "www.treyperry.com": [16719], "theory.org": [16346], "cdn.bgr.com": [1515], "allshareplay.com": [838], "northnorfolk.org": [11497], "www.newsgator.com": [11329], "*.navteq.com": [10873], "static.gosuslugi.ru": [6852], "inside.intel.com": [8209], "myfolio.kent.ac.uk": [17317], "www.thinkfaster.co": [16360], "sdc-cordis.mainstrat.com": [9897], "coreos.com": [3665], "my.leeds.gov.uk": [19353], "automotive.linuxfoundation.org": [9412], "iblocklist.com": [7902], "secure-endpoints.com": [14479], "pc-sicherheit.web.de": [18050], "static6.twilio.com": [16876], "jobs.ncsu.edu": [11492], "proxysolutions.net": [13183], "ulysses.calvin.edu": [2759], "www.driverseddirect.com": [4765], "cdsmedia.cern.ch": [2575], "apollo4.ds.leeds.ac.uk": [17318], "toorcon.net": [16557], "www.engr.ncsu.edu": [11492], "cdm.cursecdn.com": [3934], "www.givekidstheworldstore.org": [6686], "www.gearsourceeurope.com": [6485], "apply.submit.kennedy-center.org": [19335], "timex.com": [16467], "pjtv.com": [12262], "*.kryo.se": [9017], "*.evoice.co.uk": [4987], "exxile.net": [4995], "www.alipay.com": [817], "support.datamotion.com": [19102], "pbase.com": [12213], "*.lumension.com": [9662], "cyberpatrol.com": [3962], "www.renovationexperts.com": [13768], "collaborate.plymouth.ac.uk": [12833], "storywrite.com": [15502], "cccure.com": [2540], "thumbs.deviantclip.com": [3759], "*.theinternetco.net": [16295], "markets.ft.com": [5826], "westlandutrecht.nl": [18217], "vimeo.freifunk.net": [6192], "migros-service.migros.ch": [19399], "rpi.edu": [13771], "insight.eastriding.gov.uk": [5015], "docs.xamarin.com": [18540], "cex.io": [2587], "mail.sedo.com": [14542], "webmail.plymouth.gov.uk": [19500], "4shared.com": [154], "community.nightdev.com": [11394], "cao.carnegiescience.edu": [2857], "*.tonytan.io": [16548], "loc.hertz.com": [7372], "stats.juliareda.eu": [8671], "okta6.ideone.com": [7943], "www.fastshoppingcart.com": [13359], "listarchives.libreoffice.org": [9311], "ipre.educ.cam.ac.uk": [17243], "docs.webarch.net": [18108], "kitapyurdu.com": [8921], "www.aquanw.nhs.uk": [10913], "mathematics.stanford.edu": [15384], "www.divessi.com": [4582], "openskillz.com": [19461, 19462], "president.williams.edu": [18316], "guang.taobao.com": [15952], "app.realtime.email": [13625], "qb50.eu": [13279], "*.vevo.com": [17481], "*.gannett.com": [6453], "www.pearsoncomputing.net": [12507], "informe.org": [8116], "register.cnchost.com": [3330], "chromeexperiments.com": [3117], "apps.icard.uillinois.edu": [16960], "www2.eduid.cz": [5097], "et03.xhcdn.com": [18514], "status.kuleuven.be": [8816], "frca.pcisecuritystandards.org": [12224], "www.webstaurantstore.com": [18157], "inwx.net": [8231], "login.sourcefabric.org": [15180], "www.schlossbergstore.com": [14354], "download.drweb.com": [4783], "replicaperfection.com": [13778], "events.piratenpartei-bayern.de": [12719], "ranallolawoffice.com": [11386], "*.khronos.org": [8874], "*.pcs.com": [12230], "ptpimg.me": [13192], "getpocketbook.com": [12838], "gfsfrance.com": [6326], "directory.web.cern.ch": [2575], "wholesale.vodafone.co.nz": [17812], "optagelse.dk": [12065], "developer.clockworkmod.com": [3273], "www.humanrightsdefensecenter.org": [7610], "scandinavianphoto.no": [14334], "website.webgo.de": [18064], "education.gov.au": [4368], "*.mailstation.de": [9891], "my.carousell.com": [2860], "www.teapartypatriots.org": [15992], "anonscm.debian.org": [4275], "enhu.dict.cc": [4455], "webmail.easymail.ca": [5026], "kbc.com": [8709], "www.savethelink.org": [14313], "affiliate-b.com": [701], "checkmarx.com": [3051], "sharethrough.com": [14680], "my.videobloom.com": [17684], "www.samsung.com.cn": [14265], "www.gramsflow.com": [6887], "lh5.google.*": [6837], "vtecdirect.com": [17517], "sphhp.buffalo.edu": [17297], "www.tonyarcieri.com": [16549], "www.jabbi.pl": [8480], "bilddb.arch.ethz.ch": [4975], "go.ncsu.edu": [11492], "gumstix.com": [7021], "v-identity.com": [17460], "www.netflix.com": [11229], "ssl-trust.com": [14175], "buysellads.com": [2468], "www.anders.com": [997], "ffs.ch": [15693], "www.dubfire.net": [4790], "www.godaddy.com": [6773], "www.dailyfantasyradio.com": [4119], "tmg-trackr.media.mit.edu": [9747], "migrationsverket.tdconline.se": [15799], "delivery.pizzahut.co.uk": [12750], "ticketing.southbankcentre.co.uk": [15192], "st2.gismeteo.ru": [6669], "fsu.edu": [5603], "vkontakte.ru": [17490, 17494], "a.stripecdn.com": [15526], "www.archsd.gov.hk": [7075], "www.bia2.com": [1838], "etherpad.inka.f4.htw-berlin.de": [7112], "web-code.educ.cam.ac.uk": [17243], "www.redbox.com": [13681], "www.wetter.at": [11728], "www.whatsapp.com": [18234], "www.d.switchadhub.com": [15701], "www.kde-files.org": [19461], "aok.de": [317], "apps4.lbhf.gov.uk": [9064], "*.secure.griffith.edu.au": [6955], "www.mbank.com.pl": [9722], "negotiatingsalary.com": [11136], "jenkins-ci.org": [8551], "simplyhired.com": [14830], "www.bund.de": [17647], "getdigital.eu": [6571], "shop.abc.net.au": [239], "*.iisp.org": [7743], "controlpanel.blogs.news.com.au": [11338], "www.hartvoorinternetvrijheid.nl": [7215], "registracia.azet.sk": [1481], "earcu.com": [4869], "m.rasp.yandex.by": [18648], "fybse.se": [5613], "video.oms.eu": [11637], "www.passmark.com": [12422, 12423], "ithaca.edu": [8391], "coverity.com": [3734], "www.inphi.com": [8157], "*.desura.com": [4398], "www.bouncycastle.org": [2247], "scientific.net": [14385], "adacore.com": [548], "soak.meldium.com": [10239], "www.dental.uw.edu": [17077], "nationale-it-security-monitor.nl": [11089], "craftbanter.com": [3752], "developer.servicenow.com": [14622], "buildbot.openmpt.org": [11951], "www.hertz.ca": [7341], "cdn-origin.snv.vcmedia.com": [17540], "info.hubspot.com": [7594], "1.163.com": [34], "resourcecenter.odee.osu.edu": [11760], "www.ticketingnetworkeastmidlands.co.uk": [16420], "cdn2.spiegel.de": [15272], "www.hertz.ch": [7367], "www.hertz.cn": [7342], "api.accounts.firefox.com": [5859], "rdio.com": [13595], "content.eventim.com": [5443], "aus.wwte8.com": [17937], "fra1.dl.elementary.io": [5158], "cossacklabs.com": [3692], "livesupport.xmission.com": [18530], "u-bordeaux.fr": [16918], "mariadb.com": [9987], "asset.7headlines.net": [189], "environment.data.gov.uk": [19100], "www.redmondmag.com": [13698], "javvin.com": [8532], "annsummers.com": [1027], "de-da.dict.cc": [4455], "omnovia.com": [11786], "om.eamobile.com": [5151], "www.bitcoinstats.com": [1971], "www.discoveryplace.org": [4556], "artemis-ia.eu": [1228], "www.overclockers.co.uk": [12158], "www.cvedetails.com": [3947], "joinus.today": [8617], "phabricator.whonix.org": [18266], "www.octopuce.fr": [11716], "img1.userscontent.net": [17438], "iheart.com": [7739], "pim.bof.nl": [1537], "adf.ly": [523], "secure.medleyads.com": [10200], "ares.epic.hpi.uni-potsdam.de": [17171], "www.cs.ut.ee": [17069], "*.forexct.com": [6034], "*.wired.com": [18363], "allianz-fuer-cybersicherheit.de": [852], "st.mycdn.me": [10824], "everymomentcounts.cancerresearchuk.org": [19035], "openafs.org": [11915], "kompany.com": [8969], "help-all.nike.com": [11401], "servercow.de": [14612], "events.linuxfoundation.org": [9412], "www.clarityray.com": [3214], "www.leicestershire.gov.uk": [9239], "www.stayclassy.org": [15440], "data3.whicdn.com": [17905], "www.hertsdirect.org": [7335], "www.thinkup.com": [16363], "*.3news.co.nz": [129], "support.tagged.com": [15909], "beachhuts.bournemouth.gov.uk": [2251], "allegro.pl": [849], "www.doodle.com": [4681], "www.techslinger.com": [16051], "claudiodangelis.com": [3220], "zdfsport.de": [19800], "i.fantasycricket.telegraph.co.uk": [16082], "apianalytics.com": [331], "ads.vidstore.com": [17677], "img.reflex.cz": [13719], "wms-eu.amazon-adsystem.com": [909], "www.nerdster.org": [19430], "electrum.org": [5155], "www.interspire.com": [1853], "searchdatacenter.de": [16018], "biostars.org": [1908], "streaming.media.ccc.de": [2538], "microblog.dunkelangst.org": [4802], "www.xperiencedays.com": [18584], "s.tfcdn.com": [16335], "help.webtrends.com": [18171], "pbar.us.dell.com": [4335], "www.demisto.com": [4352], "*.360cities.net": [107], "uni.hi.is": [7066], "static4.uk.businessinsider.com": [2454], "grande.xlhost.com": [18518], "zen.co.uk": [18815], "lhc-commissioning.web.cern.ch": [2575], "medschooldiversity.wustl.edu": [17993], "static.wixstatic.com": [18384], "ebankingmasicuro.ch": [4870], "apps.1688.com": [36], "nawaat.org": [11115], "www.literaryreview.co.uk": [19368], "www.opendns.com": [11932], "dancesafe.org": [4135], "www.charter.com": [3020], "l.betrad.com": [5458], "img03.rl0.ru": [13914], "www.pagefair.com": [12329], "commotionwireless.net": [3496], "login.lisam.liu.se": [9084], "bisnow.com": [1918], "images.sourceforge.net": [15174], "api.qrsolutions.com": [13287], "pdadb.net": [12499], "www.johnlewis.ie": [8610], "www.torrentbutler.eu": [16578], "copperhead.co": [3653], "*.gatewaysb.com": [6468], "vgr.tdconline.se": [15799], "sysys.axosoft.com": [1477], "codecoop.org": [3365], "de-centralize.com": [4241], "smartertools.com": [14996], "rum-static.pingdom.net": [12686], "cdn.torrents-time.com": [19689], "infosecindustry.com": [8102], "forum.choiceofgames.com": [3097], "www.fr.ch": [19648], "www.libanswers.com": [9286], "www.bitcointalk.org": [1959], "www.spump.com": [7372], "www.eaglerockreservation.org": [5006], "dexinzhai.tmall.com": [19684], "library.launchkit.io": [9167], "weatherimages.tv2.dk": [15881], "above.com": [429], "plusone.google.com": [6834], "www.pfennigparade.de": [12609], "www.virustracker.net": [17759], "*.gamona.de": [6450], "ecohenshc.usc.edu": [17278], "bang.taobao.com": [15952], "x.kinja-static.com": [8905], "nats.girlsoutwest.com": [6667], "buryatiya.rt.ru": [13469], "brand.jquery.org": [8450], "dtnav.nal.usda.gov": [17209], "globalclimatemarch.org": [6737], "forage.redbull.ru": [13666], "www.asia.citibank.com": [3171], "*.cyberstreetwise.com": [3975], "oip.usda.gov": [17209], "syxin.com": [15766], "kouio.com": [8997], "envoymediagroup.com": [5311], "temp.my.nih.gov": [11052], "www.gigaone.pl": [6653], "www.osdc.com.au": [11665], "www.lds.org": [16219], "www.maldon.gov.uk": [19378], "malware-tracker.com": [9928], "*.ezimg.it": [5004], "licensing.kirklees.gov.uk": [8916], "iview.hscic.gov.uk": [19264], "www.zetetic.net": [18851], "ca.infousa.com": [8110], "jobs.cityoflondon.gov.uk": [3190], "www.tokobitcoin.com": [16534], "www.easy-share.com": [3806], "*.netfronts.com": [11191], "ccedk.com": [2546], "*.prositehosting.co.uk": [5685], "piwik.ip-projects.de": [7785], "abdussamad.com": [406], "idfpr.com": [7965], "www.zaption.com": [18793], "*.fetlife.com": [5761], "www.marketwatch.com": [10021], "cryptohaze.com": [3873], "www.nationaleatingdisorders.org": [11095], "ui.adsupply.com": [544], "blog.flameeyes.eu": [5901], "alainwolf.ch": [773], "plugins.status.net": [15437], "program-think.blogspot.com.*": [2113], "ratanagiri-163c.kxcdn.com": [13572], "www.doublethedonation.com": [4714], "catalog.utdallas.edu": [17071], "mycloud.rackspace.com": [13506], "www.cryptome.org": [3879], "firebase.com": [5855], "blog.webtrends.com": [18171], "philanthropy.cam.ac.uk": [17243], "search.usa.gov": [17029], "tools.grassroots.org": [6894], "*.ige.ch": [15696], "techservices.illinois.edu": [17258], "online.westernunion.com": [18216], "mail.freecycle.org": [6162], "m.ond.tue.nl": [15874], "imbo.vgtv.no": [17484], "itechnician.co.uk": [7863], "*.hp.com": [7378], "stats.uptobox.com": [19718], "rximage.nlm.nih.gov": [11052], "*.helsinki.fi": [17255], "inxpo.com": [8334], "js.nyt.com": [10997], "*.sequanux.org": [14592], "js10.ringrevenue.com": [13892], "www.ireeco.com": [8355], "events.kde.org": [8718], "charnwood.firmstep.com": [19182], "www.tdc-wholesale.com": [15796], "account.clever.com": [3238], "www.fullcontact.com": [6250], "community.godaddy.com": [6773], "nvidia.com": [10985], "moodledev.uowplatform.edu.au": [17350], "vpn.zg.ch": [19648], "wikifur.com": [18289], "cdn12.iconfinder.com": [7921], "bugs.ruby-lang.org": [14018], "newsday.com": [11341], "*.besmith.com": [1588], "webxakep.net": [18098], "www.cryptosms.org": [3863], "zlavy.odpadnes.sk": [18879], "www.ensijaturvakotienliitto.fi": [19160], "svn.openezx.com": [11935], "hertz247.com": [7372], "cp8.win-rd.jp": [18325], "www.kudelskisecurity.com": [9031], "udmurtiya.rt.ru": [13469], "emarketing2.1and1.com": [51], "survey.sans.org": [14072], "dashboard.qubitproducts.com": [13345], "www.pulpix.co": [13223], "www.scmp.com": [15187], "*.investingchannel.com": [8319], "www.kat.cr": [8879], "www.zdnet.com.au": [18757], "www.debian-art.org": [19461], "www.movistar.es": [19775], "sort.symantec.com": [15715], "portal.unwire.dk": [17376], "admin.cj2.nl": [2618], "store.calchamer.com": [2725], "fileformat.info": [5790], "webhosting.web.com": [18048], "prisonlegalnews.org": [13076], "www.nationstates.net": [11044], "zwmail.de": [18927], "www.theinformation.com": [16293], "wiki.openitp.org": [11947], "www.ticketnet.fr": [16422], "eo.libreoffice.org": [9311], "computing.artsci.wustl.edu": [17993], "team-cymru.org": [16000], "www.ezrss.it": [5004], "*.history.com": [7418], "supplier.carters.com": [2868], "forgifs.com": [6037], "www.urhome.umd.edu": [17263], "courses.erc.edu": [4949], "packages.debian.org": [4275], "donate.fsf.org": [5600], "form.t-mobilebankowe.pl": [19654], "my.domoticz.com": [4675], "www.psc.edu": [12298], "wumsweb.wusm.wustl.edu": [17993], "www.smefund.tid.gov.hk": [7077], "jvn.jp": [8465], "www.dsply.com": [17573], "conference.gajim.org": [6406], "boots.ie": [2214], "www.tickerassist.co.uk": [10356], "www.youtube.sk": [18709], "www.idearcmedia.com": [15614], "neelwafurat.com": [11134], "freepress.intel.com": [8209], "competitionsbywyndham.com.au": [18490], "login.proxy.uchicago.edu": [17246], "www.verkaufen.ch": [19733], "cj.com": [3481], "youneedabudget.com": [18707], "www.illustre.ch": [19283], "prg.gamesradar.com": [6280], "wpp.com": [17923], "hagrid.libart.calpoly.edu": [2747], "totaltravel.co.uk": [18638], "static.copiny.com": [3652], "enderunix.org": [5246], "www.softether.org": [15092], "*.uni-wuerzburg.de": [17173], "xservers.ro": [19781], "www.baldershage.se": [1627], "facebook-studio.com": [5622], "list.qq.com": [13285], "www.paetec.com": [12205], "fedid.ext.ti.com": [16152], "*.frugalware-art.org": [19462], "www.faaaccess.ed.gov": [4889], "gamesports.net": [6423], "cdnstatic.reuters.tv": [13836], "oktd.kent.gov.uk": [8851], "ideastorm.com": [7928], "static-eu1.vimention.com": [17716], "assets.virginmedia.com": [17737], "meetey.com": [10213], "masterxchange.com": [10055], "aq.qq.com": [13285], "www.geany.org": [6483], "um.tdc.no": [15797], "samsung.com": [14265], "www.cfif.org": [2949], "alexhaydock.co.uk": [799], "perel.eu": [17596], "www.annsummers.com": [1027], "wiki.kuleuven.be": [8816], "getmein.com": [9481], "shaw.ca": [14687], "www.ciclops.org": [2602], "devdocs.io": [4417], "status.hipchat.com": [7414], "www.jondos.org": [8623], "licensing.rbwm.gov.uk": [19539], "blackboard.jhu.edu": [16296], "fastcompany.com": [5670], "vk.com": [17490, 17493], "dnssec-validator.cz": [4065], "www.admissionsonline.norfolk.gov.uk": [19436], "tracking.reiner-sct.com": [13747], "deti.mail.ru": [9874], "www.br.de": [1539], "www.presscoders.com": [13030], "tros.nl": [16761], "frieslandcampina.com": [2782], "www.computec-academy.de": [3532], "g10code.com": [6294], "www.lib.vt.edu": [17740], "validator.w3.org": [17888], "kk.dk": [8730], "uec-images.ubuntu.com": [17102], "metrics.stellaservice.com": [14190], "autodiscover.riverbed.com": [13907], "awm.gov.au": [1405], "foxydeal.de": [6088, 6089], "account.aylesburyvaledc.gov.uk": [18976], "www.etarget.cz": [5374], "bst3.gismeteo.ru": [6669], "slts.osu.edu": [11760], "www.kontalk.org": [8980], "www.edfil.es": [5077], "www.valvesoftware.com": [17548], "mndigital.com": [10160], "www.conformal.com": [3572], "www.testequipmentdepot.com": [16146], "webassetsf.scea.com": [14089], "goodzer.com": [6832], "parship.nzz.ch": [19450], "tool.linguee.com": [9373], "www.merchdirect.com": [10276], "blog.opendns.com": [11932], "digi.hu": [4470], "www.handsomecode.com": [7191], "support.wattpad.com": [18006], "www.internews.org": [8290], "b9.yahoo.co.jp": [18640], "police.wustl.edu": [17993], "www.onlinenotebook.hu": [9155], "www.piraten-ufr.de": [12717], "adfs.ntu.edu.tw": [10971], "grants.nih.gov": [11052], "kirklees.firmstep.com": [19183], "p1.qhimg.com": [13302], "cdnstatic.outspark.com": [12154], "www.bahnshop.de": [1617], "www.careers.fi": [2845], "*.pandawhale.com": [12356], "webspectator.com": [18089], "*.flaska.net": [5908], "www.intego.com": [8201], "www.fad.fss.ulaval.ca": [17229], "lenta.ru": [19356], "vtb.com": [17514], "fyl.unizar.es": [17356], "www.swiftype.com": [15689], "diskusjon.no": [4563], "stanford25blog.stanford.edu": [15383], "economist.com": [5060], "www.hvgkonyvek.hu": [7118], "search.hhs.gov": [7062], "inschrijven.nl": [8161], "online-convert.com": [11867], "sitola.fi.muni.cz": [14887], "rapidbuyr.cachefly.net": [13555], "webhost4life.com": [18066], "fusion.libsyn.com": [9321], "m01.eu": [9694], "suntech.cz": [19639], "*.putlocker.com": [13257], "lists.exim.org": [5494], "prozeny.cz": [13115], "www.nicehash.com": [11382], "static.independent.co.uk": [8053], "consult.southend.gov.uk": [15193], "www.theamericanscholar.org": [16242], "yeah.net": [18665], "images5.bovpg.net": [2252], "*.preyproject.com": [13044], "library.bury.gov.uk": [19027], "secure.hi5.com": [19247], "www.directbox.info": [4529], "forum.www.radartv.nl": [13509], "anon.inf.tu-dresden.de": [15871], "*.pimg.net": [12675], "shop.infinet.com.au": [8093], "gamersfirst.com": [6435], "ja-jp.facebook.com": [5620], "1wt.eu": [48], "images.tvnz.co.nz": [15886], "safe.txmblr.com": [16903], "grcmc.org": [6889], "southwark.greenparty.org.uk": [6925], "www-en.htw-berlin.de": [7112], "community.compuwareapm.com": [3543], "secure.tesco.com": [16135], "www.topfox.co.uk": [16561], "childcarejobs.hertsdirect.org": [7335], "i0.c.dk": [2498], "d-i.debian.org": [4275], "www.nhnnext.org": [10910], "fileshare.symantec.com": [15715], "tracking-point.com": [16632], "www.superuser.com": [15359], "order.freezone.co.uk": [6187], "*.kayako.com": [8825], "yu.edu": [18675], "www.artchristina.com": [1221], "abis-studien.se": [243], "satsymposium.org": [14076], "awesome.leeds.ac.uk": [17318], "static.torrentday.com": [16579], "mygoldencharter.co.uk": [6813], "www.bagnet.org": [1615], "blog.x-cart.com": [18494], "cdn.clinicalkey.com": [3267], "freebieber.org": [5783], "reports.eyereturn.com": [5531], "leicestershirecc.firmstep.com": [19183], "thepirategoogle.mrcarch.com": [16228], "spinup.unizar.es": [17356], "trendweight.com": [16712], "see.leeds.ac.uk": [17318], "*.sabb.com": [7098], "gmoregistry.com": [6346], "engine.phn.doublepimp.com": [4717], "webmail.argewebhosting.nl": [1182], "www.mansfield.osu.edu": [11760], "*.dot5hosting.com": [4690], "3news.co.nz": [129], "chat.jd.com": [8423], "beastnode.com": [1736], "www.anonymouse.me": [1052], "static.memrise.com": [10254], "gawker.com": [6476], "shopyourway.com": [14723], "blogs.cpanel.net": [2653], "portuguese.101domain.com": [11, 12], "*.websterwood.com": [18158], "www.hynek.me": [7641], "www.meltwaternews.com": [10243], "thebaffler.com": [16247], "fstools.macosforge.org": [9820], "unrealengine.com": [17365], "*.bbb.org": [1822], "hoof.little.my": [9475], "*.tmp.com": [15830], "stellaservice.com": [14190], "ccodearchive.net": [3528], "abo.nzz.ch": [19450], "panel.nazwa.pl": [11117], "ox-d.sbnation.com": [14079], "ico.ee": [15936], "sidearmsports.com": [14763], "www.citra-emu.org": [19063], "c.tgknt.com": [16165], "social.umeahackerspace.se": [17143], "mdcus.com": [9730], "debian-art.org": [19461, 19462], "my.thephone.coop": [16347], "stats.gamingonlinux.com": [6447], "adyadvantage.com": [673, 674], "labintel.dsi.cnrs.fr": [6195], "afip.gob.ar": [18944], "ttip-stoppen.at": [15867], "js.bizographics.com": [2032], "goc.io": [6364], "www.chinafile.com": [19059], "business.pinterest.com": [12699], "git.tasktools.org": [15971], "shopstyle.com.au": [14720], "reverseip.domaintools.com": [4660], "www.standeyo.com": [15374], "i2.sndcdn.com": [15032], "www.trustedcomputinggroup.org": [16791], "kh.norton.com": [11505], "surfline.com": [15651], "*.crimecommission.gov.au": [1386], "campina.be": [2782], "www.newyorkneedsyou.org": [11312], "simyo.de": [14837], "autodiscover.webtrends.com": [18171], "secure.business.bt.com": [1551], "www.webropolsurveys.com": [18141], "e-library.eastsussex.gov.uk": [19142], "www.eda.admin.ch": [19648], "nbct01.baidupcs.com": [1620], "secure1.store.apple.com": [1120], "binary.getdigital.de": [6611], "www2a.cdc.gov": [19046], "www.okura.nl": [11778], "www.apc.org": [1294], "cache.net-a-porter.com": [11171], "m1.baidu.com": [1619], "register.shaw.ca": [14687], "fonts.condenast.com": [3552], "www.malwaredomainlist.com": [9930], "*.ironsearch.com": [7817], "portal.vitelity.net": [17795], "vpn.ac": [19742], "partner.aktiencheck.de": [769], "kungfunation.com": [9037], "www.vehbidz.com": [17590], "morningstaronline.co.uk": [10594], "coverfire.com": [3732], "www.hofer.at": [299], "www.demandbase.com": [4342], "*.powershellgallery.com": [12993], "somethings.msi.com": [9792], "questacon.edu.au": [13353], "www.barclaycard.co.uk": [1664], "sequanux.org": [14592], "accessnow.org": [447], "www.systemoverlord.com": [15761], "www.ultimatebootcd.com": [17129], "*.trauer.de": [16689], "0gwc-kbhkort.kk.dk": [8730], "www.celartem.com": [2929], "auth.brightidea.com": [2330], "www.thedailygreen.com": [7271], "www.lide.cz": [9326], "symaccount.symantec.com": [15715], "www.igb.illinois.edu": [17258], "boulder.swri.edu": [15197], "api.url2png.com": [17411], "shop.skeptic.com": [14902], "www.med.stanford.edu": [15383], "piratenpartei.de": [12721], "dannymekic.com": [4144], "www.technologyreview.in": [19666], "cirt.net": [2613], "forum.silkroad.ws": [14794], "www.behr.com": [1758], "ymcastlouis.org": [18618], "jobs.voxmedia.com": [17852], "ais.channel4.com": [3003], "www.youtube.fr": [18709], "www.uillinois.edu": [16960], "*.parsely.com": [12414], "internetbrands.com": [8280], "youtube.hk": [18709], "origin.ih.constantcontact.com": [3592], "afsa.gov.au": [1392], "albertathome.org": [5128], "wiki.opendnssec.org": [10941], "mail.verticalmedia.com": [17639], "podtrac.com": [19502], "opentechfund.com": [11983], "zeedpic69.com": [18810], "wiki.smartos.org": [14990], "swinburne.edu.au": [15691], "cloudflareapp1.info": [13811], "www.cloudron.io": [3313], "https.openbsd.org": [11919], "beta.herefordshire.gov.uk": [7327], "newcg.enfield.gov.uk": [5258], "rms.sexy": [13915], "tvguide.quickline.com": [19530], "www.merlinux.eu": [10285], "aans.org": [928], "exchange.1and1.co.uk": [53], "www.downforeveryone.com": [4724], "democracy.islington.gov.uk": [8370], "doteasy.com": [4701], "www.amazontrust.com": [919], "erhvervkundeservice.tdc.dk": [15796], "www.gotlandring.com": [6855], "usarmy.*.llnwd.net": [17028], "www.cimbclicks.co.id": [2605], "cdn.cloudfiles.mosso.com": [10604], "mail.ntmx.de": [11555], "ninite.com": [11416], "ads.exoclick.com": [5499], "studyinsweden.se": [19635], "wildwestdomains.com": [18300], "www.f-droid.org": [5540], "www.lovehoney.co.uk": [9626], "bcpd.x7y24z365.com": [2129], "kernel.org": [8857], "cs.umd.edu": [17263], "leastauthority.com": [9216], "3d.xkcd.com": [19786], "adcenter.microsoft.com": [10363], "nanog.org": [11490], "*.webmail.pair.com": [12336], "dockapps.windowmaker.org": [18339], "advent.com": [654], "host2.bg": [7506], "*.planet3dnow.de": [12761], "www.zyado.com": [18928], "*.unmultimedia.org": [16996], "www.blogs.fau.de": [17311], "*.carpromods.com": [2828], "www.zeromq.org": [18846], "nikon-lenswear.com": [11403], "www.html5video.org": [7106], "cachebrowser.info": [2707], "*.pof.com": [12813], "marketingoops.com": [10014], "probmods.org": [13118], "adulttoys4u.com.au": [646], "www.youtube.es": [18709], "www.bitcoin.de": [1966], "bigbrotherwatch.org.uk": [1857], "stat.ameba.jp": [926], "gd2.alicdn.com": [805], "shop.mind.org.uk": [10407], "www.zhihu.com": [18856], "sptag1.com": [15323], "cislblog.stanford.edu": [15383], "media.boingboing.net": [2181], "sharideangelo.com": [14681, 14682], "journalxtra.com": [8644], "blog.coinbase.com": [3402], "engine.streamate.doublepimp.com": [4717], "www.forestsangha.org": [6029], "www.politicalcompass.org": [12871], "isoc.org.br": [7828], "*.ehow.com": [19137], "www.init7.net": [8143], "forum.pjrc.com": [12261], "cat.yandex.by": [18648], "peacecenter.org": [12503], "www.geldermalsen.nl": [11132], "france.debian.net": [4273], "thedaywefightback.org": [16267], "kampyle.com": [8778], "s1.plays.tv": [12809], "plati.ru": [12786], "campaign.odw.sony-europe.com": [15141], "housingssp.leeds.gov.uk": [19353], "blog.lizardwrangler.com": [9521], "*.baremetal.com": [1666], "api.flickr.com": [5918], "channelink.xo.com": [18532], "www.biderundtanner.ch": [18997], "www.schaffner.org": [14346], "kirjoitusalusta.fi": [8915], "c.fastcompany.net": [5681], "ipo.gov.uk": [16974], "login.fronter.com": [19200], "www.comodogroup.com": [3504], "www.japantimes.co.jp": [16196], "link.vice.com": [17667], "s2.rationalcdn.com": [19536], "www.f1.htw-berlin.de": [7112], "spark-summit.org": [15218], "librarylicense.org": [9307], "publicaccess.westoxon.gov.uk": [18221], "shopware.de": [14732], "*.discovermagazine.com": [4546], "dev.snip2code.com": [15036], "kongress-soziale-arbeit.htwk-leipzig.de": [7114], "ui.ad.yieldmanager.com": [13881], "unpac.org": [17145], "rt.nuug.no": [10980], "www.adkontekst.pl": [600], "b0.jrnl.ie": [19326], "delawaretoday.com": [4324], "www.xelerance.com": [18554], "www.shipto.com": [14707], "blog.vandyke.com": [17549], "feedback2.yandex.com.tr": [18649], "secure.itweb.co.za": [7854], "blog.join.me": [9548], "mycp.co.nz": [12036], "gudly.axosoft.com": [1477], "dokuwiki.org": [4638], "finanse.money.pl": [10547], "*.freshbooks.com": [6201], "inwx.ch": [8231], "batmanarkhamknight.com": [1690], "posta.yandex.com.tr": [18649], "www.edpessoa.internet.edp.pt": [4896], "www.southern-electric.co.uk": [15194], "ssl.bing.com": [1895], "www.warnerartists.com": [17981], "imeem.com": [7987], "secure.vend-o.com": [17606], "vpn.carnegiescience.edu": [2857], "point.gmo.jp": [6345], "st.backstage.here.com": [7326], "www.rcpmag.com": [13406], "movelia.es": [10632], "*.infinitysystems.com": [7208], "www.umbel.com": [17142], "oppictures.com": [17218], "secure.cnchost.com": [3330], "*.vcomstatic.com": [17715], "www.goo.im": [6825], "www.informationweek.com": [8124], "ipv4.tunnelbroker.com": [16834], "images.politicopro.com": [12874], "connect.mit.edu": [9749], "gihyo.jp": [6660], "sec-i0.web.de": [18050], "kununu.com": [9038], "www.in-the-sky.org": [8027], "sitetagger.co.uk": [14873], "media.charter.com": [3020], "sebastian-siebert.de": [14455], "*.hidemyass.com": [7396], "en.calameo.com": [2731], "clavardage.videotron.com": [17700], "www.admissions.com": [609], "*.picsity.com": [12667], "manage.zeringo.com": [18836], "spirit.com": [15278], "*.likes.com": [9350], "www-int.dexmedia.com": [4434], "subsignal.org": [15566], "www.reflex.cz": [13719], "www.ip2location.com": [7786], "js.hubspotqa.com": [7595], "d.fastcompany.net": [5681], "life.alipay.com": [817], "youtube.com.ng": [18709], "blog.codeship.com": [3378], "*.hostmonster.com": [7537], "cdn.heapanalytics.com": [7270], "firsttechfed.com": [5871], "www.giblod.no": [6634], "humansubjects.stanford.edu": [15383], "boutique.gemalto.com": [6514], "umano.me": [17141], "community.gotomeeting.com": [6787], "secure.services.defra.gov.uk": [4314], "cast.google.com": [6834], "badgekit.org": [1605], "palmetto.com": [12347], "secure.ca.ikea.com": [7959], "www.pop.com.br": [12279], "files.scene.org": [8269], "etarget.cz": [5374], "fom.bnl.gov": [19009], "m.siemens.com": [14769], "odc.officeapps.live.com": [9483], "andreafabrizi.it": [1000], "www.vine.co": [17722], "mediabistro.com": [10169], "great-yarmouth.gov.uk": [19227], "staysafeonline.org": [15441], "enfermeriahuesca.unizar.es": [17356], "fw.tmall.com": [19684], "www.rediris.net": [13661], "www.pentestgeek.com": [12542], "www.surfermag.com": [15650], "thezaplab.com": [18790], "bitmarket.pl": [1936], "www.websitealive7.com": [18149], "me-cdn.effectivemeasure.net": [5109], "momentedergeschichte.zdf.de": [19800], "kubieziel.de": [9028], "birds-are-nice.me": [1912], "www.bitbay.net": [1924], "envato.com": [5306], "static.webyog.com": [18175], "salsacommons.org": [14254], "www.wierden.nl": [11132], "ssl.atbar.org": [365], "static.adsafeprotected.com": [538], "resourcecentre.techweekeurope.co.uk": [11198], "faq.hosteurope.de": [7516], "www.juniper.net": [8682], "ceonex.com": [2961], "jitbit.com": [8580], "img.rasset.ie": [13571], "*.wwte7.com": [17937], "iwantmyname.com": [19313], "www.mochtu.de": [10510], "image.guim.co.uk": [7014], "www.clipth.net": [17583], "positivessl.com": [12946], "naresponsa.catracalivre.com.br": [2908], "wwp.icq.com": [7690], "forum.backbox.org": [1597], "www.commission-junction.com": [3481], "srclib.org": [15339], "id.google.com.*": [6837], "connect.charterbusiness.com": [3022], "hipertextual.com": [19251], "www.360totalsecurity.com": [109], "batmanarkhamorigins.com": [1691], "ricardoshops.ch": [13867], "proxy.sh": [13181], "tinkersoup.de": [16475], "london2012.com": [9573], "blockchain.info": [2090], "fedgeno.com": [5725], "umonitor.com": [16982], "wwwapps.ups.com": [17007], "blogs.lshtm.ac.uk": [9576], "www.jiveon.com": [8586], "*.caradvice.com.au": [2827], "search.maximintegrated.com": [10096], "img1.sencha.com": [14576], "www.devilteam.pl": [4424], "whyy.org": [17910], "sims.canon-europe.com": [2809], "post.cz": [14648], "img.inkfrog.com": [8146], "www.maps.yandex.kz": [18652], "www.whatbrowser.org": [18228], "res.heraldm.com": [7321], "linuxfr.org": [9410], "blendle.com": [2068], "www.sumologic.com": [15592], "www51.jimdo.com": [8572], "*.withgoogle.com": [18380], "post.ch": [12949], "thesims3.com": [5151], "*.admized.com": [611], "www.blogtalkradio.com": [2103], "piwik-hal.ccsd.cnrs.fr": [6195], "democracy.ipswich.gov.uk": [8351], "vr.se": [17511], "greensmoke.co.uk": [6928], "*.myinmon.com": [10809], "developer.spotify.com": [15296], "cuaes.cornell.edu": [3676], "*.chalmers.se": [2987], "www.torbay.gov.uk": [16569], "*.kobobooks.it": [8949], "*.glerups.dk": [6708], "websitegrowers.com": [18150], "wiki.cam.ac.uk": [17243], "mx.redhat.com": [13675], "dev.onedrive.com": [11831], "www.uwb.edu": [17078], "verbling.com": [17615], "webhostinggeeks.com": [18103], "cdn.steamcommunity.com": [15451], "shareit.com": [14669], "*.mikaela.info": [10382], "ws-na.assoc-amazon.com": [1288], "witness.guardian.co.uk": [7000], "www.scheduleonce.com": [14349], "www.hyperoptic.com": [7647], "senderscore.org": [14580], "*.nokiasiemensnetworks.com": [11462], "unbubble.eu": [19714], "img1.dditscdn.com": [4239], "www.easypdfonline.com": [5028], "www.arretsurimages.net": [18965], "community.okta.com": [11776], "s0.percona.com": [12557], "pogoda.yandex.by": [18648], "vmcdn.de": [17805], "italerts.stanford.edu": [15383], "nayaklab.stanford.edu": [15384], "ehospice.com": [5118], "api.wienenergie.at": [18284], "www.mobile.learnerview.ofsted.gov.uk": [19456], "www.ois.uic.edu": [17231], "mindtouch.onelogin.com": [11835], "network.cern.ch": [2575], "audioboom.com": [18970], "pixlr.com": [12743], "revisium.com": [13847], "signup.nj.com": [10931], "accesspass.wifi.xfinity.com": [19784], "www.smuxi.com": [15016], "www.channeladvisor.com": [2999], "emblem.cancer.gov": [2805], "apps.clicks.lv": [3262], "passport.sohu.com": [15103], "secure.tagged.com": [15909], "www.fdf.org.uk": [5562], "cimb.com": [2606], "chongzhi.jd.com": [8422], "purl.stanford.edu": [15383], "*.flite.com": [5928], "cdn.oseems.com": [12120], "mouseflow.nl": [10624], "oz-affiliate.com": [12194], "noisebridge.net": [11458], "www.11main.com": [20], "storenvy.com": [15495], "gimpfoo.de": [6334], "reports.ofsted.gov.uk": [19456], "websitesettings.com": [18152], "www.mobile.de": [19403], "windows.mouselike.org": [16076], "resources.mybb.com": [10823], "www.digitalmars.com": [4493], "movim.eu": [10644], "jadu.net": [8492], "www.bter.com": [2382], "mathjax.org": [19386], "apps2.staffordshire.gov.uk": [15370], "loanscience.com": [9531], "www.webento.com": [18115], "searx.me": [14449], "www.winhistory-forum.net": [18356], "forums.deathmask.net": [4266], "correo.terra.com.mx": [16126], "www.businessdirect.bt.com": [1549], "us-u.openx.net": [11993], "telmasters.com": [16066], "www.obfs.uillinois.edu": [16960], "www.gymglish.*": [7037, 7038], "www.directa.cat": [4528], "lists.eurobsdcon.org": [5404], "fablabtruck.nl": [5615], "mp3skull.wtf": [9779], "ictrecht.nl": [7692], "www.canaldigital.se": [2803], "ileansigma.engineering.osu.edu": [11760], "givingcomfort.org": [6690], "www.mp3-juices.com": [10668], "www.fluxbb.org": [5957], "wof-piwik2.desy.de": [4399], "www.scans.io": [14338], "logs.inf2011.dosowisko.net": [4688], "helpdocsonline.com": [7308], "gifbook.io": [6638], "zeus.jesus.cam.ac.uk": [2763], "commandfive.com": [3474], "*.crowdscience.com": [3819], "sues.stanford.edu": [15383], "www.opencontainers.org": [12003], "*.blob.core.windows.net": [18343], "www.fiercepharma.com": [5777], "lo.libreoffice.org": [9311], "*.apollohq.com": [1126], "www.wearechoosy.com": [1186], "thedilbertstore.com": [16268, 16269], "*.bigstockphoto.com": [1867], "www.coindesk.com": [3394], "password.uic.edu": [17231], "www.europol.europa.eu": [5421], "www.vox.com": [17851], "raynersoftware.com": [13586], "www.exante.eu": [4993], "images4.bovpg.net": [2252], "pornworms.com": [12929], "cdn.gigya.com": [6659], "affiliate.eurodns.com": [5406], "isc2.org": [7822], "www.mfi.re": [9738], "foreignpolicy.com": [6024], "www.addison.com.hk": [576], "kopete.kde.org": [8718], "www.control.isy.liu.se": [9084], "mmbiz.qlogo.cn": [13304], "static4.twilio.com": [16876], "*.ceonex.com": [2961], "shop.f-secure.com": [5541], "servicenow.com": [14622], "de-bg.dict.cc": [4455], "softaculous.com": [15096], "library.osu.edu": [11760], "foiaonline.regulations.gov": [13743], "ucollege.wustl.edu": [17993], "www2.blocket.se": [2094], "*.staticsitegenerators.net": [15430], "www.sessioncam.com": [14631], "cloudsso2.cisco.com": [3162], "secure.logmeinrescue.com": [9551], "dnscurve.com": [4062], "myheritage.br": [10834], "www.citysearch.com": [3197], "www.ubuntulinux.jp": [17105], "www.muttscomics.com": [10731], "myloc.de": [10769], "*.eduroam.gr": [6915], "planning.angus.gov.uk": [1020], "consultwebs.com": [3596], "img.f2.constantcontact.com": [3592], "dis.criteo.com": [3801], "clients.medialayer.com": [10156], "img20.360buyimg.com": [112], "etext.illinois.edu": [17258], "gobby.0x539.de": [5], "sueddeutsche.de": [15577], "ngvpn19.nvidia.com": [10985], "selfserve.outbrain.com": [12150], "enahost.com": [5228], "pcicomplianceguide.org": [12225], "*.potager.org": [12985], "secure.stage-gettyimages.com.au": [6621], "p.y.qq.com": [13284], "e13.xhamsterpremiumpass.com": [18516], "assets.kcc.digital": [8713], "dshop.se": [4786], "www.unindented.org": [17191], "www.coinsquare.io": [3410], "order.aliyun.com": [821], "www.gran-turismo.com": [6888], "contiki-os": [3617], "dizaineriai.lt": [4588], "lists.rtems.org": [13472], "*.ozlabs.org": [12197], "www.finnchamber.com": [14993], "info.gigya.com": [6659], "www.soe.ucsc.edu": [17305], "forms.rbwm.gov.uk": [19539], "*.kde-help.org": [19462], "*.dot.swiss": [19126], "www.nicotine-anonymous.org": [11388], "appcanary.com": [1103], "www.nadim.computer": [11007], "seulonta.fi": [15744], "app.sina.com.cn": [14840], "*.ferris.edu": [5757], "www.immunicity.uk": [19288], "stat.yandex.ua": [18656], "leadformix.com": [9193], "www.ntpandp.com": [10975], "medicalert.org": [10185], "reports.instantatlas.com": [19296], "www.bahn-bkk.de": [1616], "vadino.com": [19727], "roia.biz": [13951], "www1.videolan.org": [17688], "news.vice.com": [17667], "tbe.taleo.net": [15922], "*.privacysolutions.no": [13089], "info.vmware.com": [5177], "beeldengeluid.nl": [1748], "100fans.de": [10], "www.rlt.ulaval.ca": [17229], "www.benetech.org": [1778], "vragen.upc.nl": [17002], "partner.wamba.com": [17968], "dobrochan.org": [4612], "metrics.apple.com": [1120], "*.netgear.com": [11232], "*.greatteachersgreatschools.org": [15375], "www.hkyantoyan.com": [7082], "docs.oseems.com": [12120], "tanks.dft.gov.uk": [19116], "www.socialfixer.com": [15064], "pi.cr.yp.to": [3748], "lvw4.marinsoftware.com": [9997], "ncbar.org": [10890], "*.dotcomhost.com": [4692], "nativo.net": [11092], "www.moviemaps.org": [10637], "www.thegearhunter.co.uk": [16281], "www.govcert.nl": [11132], "just-eat.es": [19328], "annonce.cz": [1031], "dedicatedgaming.com.au": [4291], "www.savage2.com": [14062], "developer.constantcontact.com": [3592], "tripadvisor.com": [16741], "*.qub.ac.uk": [13348], "*.forex.com": [6033], "aa.mail.ru": [9874], "openmpt.org": [11951], "www.smartlingsource.com": [14998], "markmail.biz": [10004], "cas.criteo.com": [3801], "specialforces.com": [15240], "*.wine-apps.org": [19462], "webanmeldung.hslu.ch": [7583], "answers.themler.com": [16343], "www.tls-o-matic.com": [15824], "www.priberam.pt": [13048], "*.trakt.us": [19692], "*.tzoo-img.com": [16700], "alltel.web.mcore.com": [10617], "cdn.officiel-des-vacances.com": [11754], "id.arduino.cc": [1176], "*.lanistaads.com": [9149], "rt.powerdns.com": [12990], "*.coremetrics.com": [3663], "connect.osu.edu": [11760], "klikki.fi": [19340], "huizen.nl": [11132], "dne.oracle.com": [12082], "kennslumidstod.hi.is": [7066], "*.louderthanwar.com": [9618], "www.ppb.cancer.gov": [2805], "www.studentbenefits.ca": [15537], "www.solarmovie.is": [15113], "gambling-affiliation.com": [7733], "api.snel.com": [15034], "citizenfourfilm.com": [3174], "www.goenergetix.com": [5251], "ubmelectronics.techinsights-marketing.com": [16927], "www.commotionwireless.net": [3496], "go.magento.com": [9850], "cryptoparty.in": [3886], "*.photosugar.com": [12643], "rmp.kondor.co.uk": [8975], "help.provost.usc.edu": [17278], "beacon.krxd.net": [9016], "www.verisign.es": [17623], "webpayments.sevenoaks.gov.uk": [14638], "*.pgeverydaysolutions.com": [13121], "au.rss.news.yahoo.com": [18635], "share.law.yale.edu": [18642], "www.colino.net": [3416], "*.bloombergsports.com": [2120], "r2.mzstatic.com": [1119], "interactive.guim.co.uk": [7014], "doesnotwork.eu": [4632], "sferra.com": [14649], "airbears.berkeley.edu": [17240], "*.inkfrog.com": [8147], "www.peepd.com": [12511], "imglogo.podbean.com": [12842], "compose.io": [3526], "*.firstdirect.com": [7098], "www.openswan.org": [12046], "*.reg.ru": [13724], "www.bluejeanscable.com": [2140], "discourse.soylent.com": [15199], "www.savvysme.com.au": [14318], "www.tankafetast.com": [15947], "mouseblocker.com": [10623], "www.terragalleria.com": [16125], "www.freejeremy.net": [6141], "codebasehq.com": [3360], "yandex.st": [18655], "*.cia.com": [2599], "www.twittercounter.com": [16891], "*.emailvision.com": [5194], "www.athleticstadium.bedford.gov.uk": [18986], "*.cert.at": [2580], "panicbutton.io": [12362], "e1.boxcdn.net": [2253], "panovski.me": [12368], "pcap.stanford.edu": [15382], "www.youtube.co.ma": [18709], "liveperson.com": [9494], "www.pao-pao.net": [12376], "www.woolworths.com.au": [18422], "cheltenham.greenparty.org.uk": [6925], "technology.uaa.alaska.edu": [17233], "www.neelwafurat.com": [11134], "news.herefordshire.gov.uk": [7327], "finalsite.com": [5820], "rivals.com": [19553], "www.frontlinedefenders.org": [6226], "blocked.org.uk": [2092], "picasaweb.google.com.*": [6837], "www.isc2.org": [7822], "www.vb-paradise.de": [17578], "www.ulaval.ca": [17229], "community.constantcontact.com": [3592], "weightlossplans.net": [12168], "solmusica.com": [15105], "security.nl": [14524], "www.tuvdotcom.com": [3625], "ciifad.cals.cornell.edu": [3676], "dfn.de": [4415], "img13.bizrate-images.com": [2033], "mla.com.au": [10134], "gizmodo.com": [6695], "www.west-midlands.police.uk": [18208], "*.microad.jp": [10346], "11888.ote.gr": [12132], "pubmed.gov": [13195], "www.lespaceclient.fr": [9070], "hsbc.com.*": [7098], "pocket.dict.cc": [4455], "register.sky.com": [14924], "jabber.no": [8475], "homebid.org.uk": [19255], "companic.nl": [19074], "corpimages.de": [3679], "threema-forum.de": [16398], "doublethedonation.com": [4714], "courses.hss.caltech.edu": [2756], "jrrt.org.uk": [8632, 8633], "www.sbnation.com": [14079], "apereo.org": [1089], "ypassociation.org": [18668], "tshaonline.org": [15861], "solutions.secondstreet.com": [14460], "admissions.osu.edu": [11760], "static.slough.gov.uk": [14971], "www.publikdemand.com": [13218], "hslda.org": [7099], "pform.net": [12613], "adoyacademy.se": [622], "consultation.gateshead.gov.uk": [6467], "www.camden.gov.uk": [2772], "*.raumzeitlabor.de": [13577], "support.drweb.com": [4783], "nabers.com": [11006], "ja.pcisecuritystandards.org": [12224], "www.rbth.ru": [14043], "developer.similarweb.com": [14811], "hybrid-analysis.com": [7640], "blueprint.uchicago.edu": [17246], "bizland.com": [2029], "*.webcontrolcenter.com": [18113], "customers.peoplefluent.com": [12548], "hifxonline.co.uk": [7387], "*.adjuggler.com": [528], "foryou.stanford.edu": [15383], "*.textualapp.com": [16162], "storage.myfreecopyright.com": [10761], "berniw.org": [1797], "www.barnet.gov.uk": [18982], "*.thewatershed.com": [16320], "static1.blocktrail.com": [2086], "www.ishares.com": [8367], "invizbox.io": [8328], "www.saechsdsb.de": [4377], "portal.microsoftonline.com": [10367], "ettus.com": [5396], "emdl.engineering.osu.edu": [11760], "www.cloudforge.com": [3288], "govexec.com": [1316], "ociolaportal.osu.edu": [11760], "lenr-forum.com": [19355], "www.pnasfirstlook.org": [12273], "*.wrapadviser.co.uk": [18472], "billing.metartnetwork.com": [10296], "ep2014.europython.eu": [5409], "*.cwru.edu": [2874], "api.creativecommons.org": [3778], "www.polls.newsvine.com": [11348], "www.whatwg.org": [17904], "emsonline.somerset.gov.uk": [15127], "amazon.es": [917], "games.yandex.com.tr": [18649], "st3.gismeteo.ru": [6669], "ict-webtools.plymouth.ac.uk": [12833], "limited2art.com": [9358], "amr-stage.oracle.com": [12082], "www.paragonie.com": [12389], "www.hostingxtreme.com": [7532], "www.cryptolux.org": [3859], "trust-center.verisign.de": [17623], "professional.player.qbrick.com": [13300], "globalchallenges.uow.edu.au": [17350], "jacksonsun.com": [8486], "*.winner.com": [18357], "www.jessfraz.com": [8555], "urltrends.com": [17413], "le-vpn.com": [9189], "www.srlabs.de": [14521], "www.1688.com": [36], "surf.nl": [14197], "www.hizook.com": [7434], "www.pkracv.com": [3481], "forum.fullrate.dk": [6256], "verbraucher-sicher-online.de": [17616], "www.givskudzoo.dk": [6692], "sites.coloradocollege.edu": [3442], "*.latimes.com": [9612], "hr.vanderbilt.edu": [17557], "m.ibm.com": [7675], "client.serverfruit.com": [14615], "www3.bnl.gov": [19009], "forum.fortinet.com": [6056], "www.subtraxion.com": [19637], "www.freebase.com": [6157], "*.tickertech.com": [16412], "www.wosign.cn": [18392], "www.onsalesit.com": [11884], "*.qualys.com": [13333], "aging.stanford.edu": [15383], "wayland.freedesktop.org": [6126], "www.equityzen.com": [5337], "www.mog.com": [9774], "*.razoo.com": [13589], "data.phishtank.com": [12629], "www.ivoox.com": [7871], "www.100r.org": [9], "litecoin24.nl": [9463], "www.passwd.hu": [12431], "conflict.nsfwcorp.com": [11549], "khms3.google.com": [6841], "www.virtkick.io": [17744], "couponimages.redplum.com": [13662], "accesspressthemes.com": [448], "mediasite.it.ohio-state.edu": [11761], "brent.greenparty.org.uk": [6925], "www.purduealumni.org": [13233], "get.teamviewer.com": [16004], "*.riverisland.fr": [13906], "fonts.walmart.com": [17964], "www.davidtisch.com": [4224], "payments.amazon.com": [915], "netapp.com": [11183], "intelligence.brent.gov.uk": [2304], "www.hvosting.ua": [7637], "*.lansquared.com": [9063], "*.chango.com": [2997], "hosteurope.de": [7516], "koinify.com": [8957], "www.1phads.com": [61], "help.mindtouch.us": [10410], "blacklotus.net": [2047], "weekendjeweg.nl": [7452], "gsl-co2.com": [6390], "cdn-images-1.medium.com": [10197], "qtdeveloperdays.com": [13317], "manage.norton.com": [11505], "hermite.uvt.nl": [16445], "accuenmedia.com": [466], "www.spsch.eu": [19620], "squareup.com": [15329], "feriecamp.kk.dk": [8730], "*.website-start.de": [18148], "forums.zmanda.com": [18880], "forums.iis.net": [7741], "www.f4map.com": [19172], "widgets.twimg.com": [16877], "cdn.betacie.com": [1815], "images.affiliatewindow.com": [4486], "ads2.contentabc.com": [3612], "lt.osu.edu": [11760], "businessclick.com": [19028], "red.jd.com": [8423], "phoenix.com": [12632], "mindmodeling.org": [10408], "static.hubspot.com": [7594], "shop.newint.org": [11297], "*.mail.live.com": [9483], "img.wildwestdomains.com": [18300], "*.cch.com": [2547], "www.free-tv-video-online.me": [6119], "*.blendle.com": [2068], "www.cash.me": [15329], "yworks.de": [19788], "cdn.dexmedia.com": [4434], "assoc.drupal.org": [4780], "cdn.media.ccc.de": [2538], "labs.ripe.net": [13895], "mydrive.tomtom.com": [16540], "cntraveler.com": [3555], "teaching.brunel.ac.uk": [19021], "www.dml.kuleuven.be": [8816], "g2crowd.com": [6295], "trisquel.info": [16751], "i01.c.aliimg.com": [813], "www.certsimple.com": [2965], "*.tieto.com": [16437], "su.itunes.apple.com": [1120], "ps-us.amazon-adsystem.com": [909], "stats.creativecommons.org": [3778], "conf.kde.org": [8718], "www.valuecommerce.ne.jp": [17542], "www.informe.org": [8116], "notesappstore.com": [10102], "corp.mail.ru": [9874], "www.osrfoundation.org": [11674], "clock.yandex.com": [18651], "100-gute-gruende.de": [8], "izug.zg.ch": [19648], "learn.chef.io": [3057], "shared.php.net": [12250], "karensmindekulturhus.kk.dk": [8730], "zdrojak.cz": [18807], "i.sankakucomplex.com": [19563], "timeinc.net": [16460], "service.piratenpartei.de": [12721], "www.sbucciami.com": [14324], "scripts.its.thm.de": [15811], "isisblogs.poly.edu": [12888], "www.dogwheelchairscenter.com": [4634], "www.allcrypt.com": [829], "shop.stripe.com": [15525], "www.diagrid.org": [4440], "www.quality-abo.de": [13329], "www.reliableisp.net": [13754], "bestchange.org": [1804], "123contactform.com": [23], "www.bernstein.com": [851], "*.e2ma.net": [4863], "assets.brandfolder.com": [2283], "websitealive5.com": [18149], "web.synch.hu": [15728], "*.stroeerdigitalmedia.de": [15529], "piwik.ethz.ch": [4975], "en-hu.dict.cc": [4455], "tcrn.ch": [1920], "mep.engineering.osu.edu": [11760], "supermileage.engineering.osu.edu": [11760], "qa.coreboot.org": [3669], "www.ithaca.edu": [8391], "*.cupid.com": [3920], "matildajaneplatinum.com": [10073], "kuro5hin.org": [9043], "a2.jimstatic.com": [8571], "www.heino-cykler.dk": [7287], "itunes.swisscom.ch": [15698], "richarddawkins.net": [13871], "www.tl63.co.uk": [16508], "mw2.google.com": [6841], "usa.anon-ib.ru": [1038], "sagepay.com": [14238], "www.computer-bild.de": [19075], "ps.xsolla.com": [18593], "www.myopenid.com": [10772], "www.support.whitepages.com": [18257], "m.zipy.co.il": [18875], "ru.content.eventim.com": [5443], "www2.swale.gov.uk": [19645], "cwe.mitre.org": [10459], "m.ya.ru": [18626], "*.blogautomobile.fr": [2104], "kongregate.com": [8977], "ausaid.govspace.gov.au": [6867], "widget.newsinc.com": [11335], "robtex.net": [13929], "www.barnsley.gov.uk": [18983], "support.humblebundle.com": [7615], "en.discussions.tomtom.com": [16540], "directory.umd.edu": [17263], "client.redplum.com": [13662], "www.io9.com": [8335], "hadalog.jp": [14740], "app.srcclr.com": [15337], "918autoloans.com": [208], "carwash.dhs.gov": [4035], "www.scaron.info": [14091], "wolverineaccess.umich.edu": [17266], "hmf.williams.edu": [18316], "cov.com": [3723], "www.microblink.com": [10351], "www.nismonline.org": [11082], "gettyimages.co.*": [6621], "www.greenmangaming.com": [6932], "tickets.sueddeutsche.de": [15579], "www.exilebuddy.com": [2230], "search.literotica.com": [9467], "www.netbeans.org": [11185], "www.vektorbank.com": [17593], "www.consumer.ftc.gov": [5720], "jobs.eoportal.org": [5314], "wiggle.co.uk": [18287], "www.indybay.org": [8081], "www.zarkzork.com": [18799], "docs.oracle.com": [12082], "soraiseyourglasses.com": [15045], "dhavalkapil.com": [4439], "www.vle.cam.ac.uk": [17243], "www.svnlab.com": [14203], "www.thegreatdiscontent.com": [16285], "altii.de": [889], "www.theora.org": [16345], "ontsi.red.es": [13659], "notary.icsi.berkeley.edu": [17240], "www.neas.nhs.uk": [10913], "shiftlog.aviationweather.gov": [18972], "www.familychristian.com": [5645], "bluegiga.com": [2148], "www.cint.com": [3149], "*.ak.yelpcdn.com": [18673], "structuredabstracts.nlm.nih.gov": [11052], "*.picdn.net": [14755], "pnc.com": [12274], "www.artpractical.com": [1218], "corningcu.org": [3678], "fcc.osu.edu": [11760], "www.3dglassesfree.com": [132], "secure.filmlinc.com": [5808], "upc-cablecom.biz": [19716], "www.squareup.com": [15329], "abc.xyz": [403], "mobilepay.dk": [10497], "valme.io": [17530], "orawww.uibk.ac.at": [19710], "www.youtube.com.ph": [18709], "counterpartychain.io": [3707], "f3mimages.com": [5544], "secure.datapipe.com": [4212], "rum-collector.pingdom.net": [12686], "partners.yandex.com": [18651], "minixperiment.twitch.tv": [16888], "owner.io": [12185], "browsershots.org": [2372], "webmaster.yandex.kz": [18652], "www.uncsd2012.org": [17206], "business.comcast.com": [3461], "www.caa.co.uk": [3203], "*.sitemason.com": [14881], "unfpa.org": [16988], "www.windowmaker.org": [18339], "sportisimo.pl": [14158], "de.community.dell.com": [4335], "www.dwolla.com": [4816], "mov24hr.com": [18666], "www.securities.com": [14518], "uts.nlm.nih.gov": [11052], "*.iv.lt": [8397], "www2.sitetagger.co.uk": [14872], "mommyslittlesunshine.com": [10539], "www.bioinformatics.vt.edu": [17740], "img.sedoparking.com": [14546], "*.tms.hrdepartment.com": [7096], "www.ssl-cert-shop.com": [14174], "swa.mail.ru": [9874], "www.linuxtv.org": [9416], "bho.pl": [2151], "*.boxee.tv": [2258], "kasandbox.org": [8873], "www.kumu.io": [9036], "g.msn.com": [9796], "*.uni-weimar.de": [1696], "content22.online.citibank.com": [3171], "newsletter.raiffeisen.ch": [13527], "forum.kryptronic.com": [9022], "t.thebrighttag.com": [2325], "*.foxbusiness.com": [6085], "luxsci.mobi": [9675], "bitsighttech.com": [1947], "matthewsmarking.com": [10083], "training.nih.gov": [11052], "www.myaccount.avira.com": [1449], "secure.eth-0.nl": [5376], "*.beryl-themes.org": [19462], "paymybill.illinois.edu": [17258], "iacs.seas.harvard.edu": [7219], "*.gridserver.com": [6951], "www.thesmokinggun.com": [16311], "get2.adobe.com": [615], "keys.schokokeks.org": [19570], "remas.swisscom.com": [15698], "*.lkmart.com.au": [9088], "www.ngrok.com": [11375], "*.fitstudio.com": [5888], "parrot.org": [12411], "www.alecomm.com": [787], "segments.adap.tv": [554], "www.tld.pl": [16509], "nanzhuang.taobao.com": [15952], "bugzilla.libav.org": [9291], "login.livingsocial.com": [9517], "northerntool.ugc.bazaarvoice.com": [11501], "www.workkafe.com": [18437], "mobile.sb.vdopia.com": [17582], "*.newrelic.com": [11291], "forums.suse.com": [14199], "jianghu.tmall.com": [15952], "pda-bes.amazon.com": [910], "tinyurl.com": [16484], "*.gunadiframework.com": [453], "www.clssl.org": [3319], "onthewire.io": [11819], "*.service.mirror-image.net": [10446], "www.eloconcursos.com.br": [5175], "www.membershiprewards.com": [10248], "1art.cz": [63], "*.edgar-online.com": [4892], "lchost.co.uk": [9066], "static.cf.ac.uk": [2835], "aioe.org": [744], "seowizard.ru": [14588], "justiceinspectorates.gov.uk": [3798], "cachewww.mirrorbingo.com": [10445], "amnesty.org.nz": [967], "www.valuehost.ru": [17543], "serve.popads.net": [12902], "theblueskylife.com": [16249], "find.business.t-mobile.com": [15772], "assess.cocubes.com": [3334], "buff.ly": [1920], "security.buffalo.edu": [17297], "*.trackalyzer.com": [16630], "nagios.stanford.edu": [15383], "static1.twilio.com": [16876], "postofficeshop.co.uk": [12955], "login.persona.org": [10662], "idefimusic.com": [7932], "*.thegcloud.com": [16279], "media.tracfonewireless.com": [16627], "battleforthenet.com": [1695], "*.superpetusa.com": [15622], "drupalthemes.stanford.edu": [15383], "s1.playscdn.tv": [12809], "wusmdar1.wustl.edu": [17993], "coxnewsweb.com": [3740], "order.kagi.com": [8766], "dev.openttdcoop.org": [11982], "www.scalingbitcoin.org": [14329], "ybin.me": [18664], "ehsa.osu.edu": [11760], "wimp.com": [18323], "vr.org": [17864], "www.hsbc.co.*": [7098], "screenshot.ru": [14410], "madewithcode.com": [9838], "service.mail.com": [9872], "airdownload.adobe.com": [614], "www.bedfordhospital.nhs.uk": [10913], "apollo.vutbr.cz": [17522], "ads.creative-serving.com": [3777], "opencorporates.com": [11931], "www.goldenpass.ch": [19225], "edfil.es": [5077], "filebox.faz.de": [5554], "development.standards.ieee.org": [7715], "raweb.inria.fr": [8159], "myub.buffalo.edu": [17297], "vgwort.de": [17483], "m.exactag.com": [5479], "stat.my.mail.ru": [9874], "madewith.unity3d.com": [17220], "pearson.eps.harvard.edu": [7219], "static-admin.mailigen.com": [9886], "eu.api.ovh.com": [12173], "www.d.pr": [3995], "vatt.fi": [17536], "www.oschina.net": [12118], "*.technoratimedia.com": [16045], "www2.sunybroome.edu": [2365], "img.tineye.com": [16468], "rsna.org": [13520], "*.tu-muenchen.de": [16036], "netgroup.dk": [11233], "www.liliani.com.br": [9352], "www.huxo.co.uk": [7634], "www.marketwire.com": [10022], "www.batmanarkhamorigins.com": [1691], "es.thinksteroids.com": [9737], "sacramento.cbslocal.com": [2529], "valoancaptain.com": [17467], "www.die-linke.de": [4456], "worldmate.com": [18449], "shop.cinestar.de": [3143], "lurkmore.so": [9673], "www.hacking.ventures": [7153], "*.finalsite.com": [5820], "warringtondirect.warrington.gov.uk": [17984], "www.meningitis-trust.org": [10259], "sdm.mit.edu": [9749], "go.citrix.com": [3178], "graphics.cars.com": [2864], "bugs.busybox.net": [2462], "rhcloud.com": [13424], "libri.de": [9317], "asset-2.netbeans.org": [11185], "www.omegaup.com": [11792], "google.org": [6836], "unbounce.com": [17153], "wikimedia.es": [18296], "*.usfca.edu": [17042], "www.grr.la": [7005], "www.onebit.cz": [11642], "btc.to": [2380], "www.isohunt.com": [8372], "gmx.tm": [6350], "secure.naiadsystems.com": [11011], "give.berkeley.edu": [17240], "elft.nhs.uk": [10913], "www.coinfloor.co.uk": [3404], "manyvids.com": [9967], "webassetsb.scea.com": [14089], "mailman.owncloud.org": [12182], "facebook.foxnewsinsider.com": [6085], "global.latin.epson.com": [5330], "thijsalkema.de": [16353], "reg.ru": [13724], "developers.corvisa.com": [3688], "wiki.skynet.ie": [16210], "fkie.fraunhofer.de": [6112], "ziggozakelijk.nl": [18863], "www.theweek.com": [16323], "traffichaus.com": [16652], "aws.amazon.com": [915], "www.danskebank.dk": [4145], "distilleryimage7.instagram.com": [8182], "*.vespermarine.co.nz": [17651], "img4.wsimg.com": [14507], "piuparts.debian.org": [4275], "www.geektimes.ru": [6507], "cenowarka.pl": [2938], "cwf.staticcache.org": [15431], "*.shacknews.com": [14652], "vcp.jd.com": [8423], "www.bestpractical.com": [1807], "www-hotel.uu.se": [17074], "members.rethink.org": [19549], "*.wordpress.org": [18429], "connect.sheknows.com": [14691], "simpel.nl": [19592], "apply.gemoney.com.au": [6315], "gamesonly.at": [6436], "aldi.es": [299], "mobile.portal.equinix.com": [5334], "www.netveano.com": [11255], "ekiga.org": [5131], "honeybeeloans.com": [7483], "www.simcity.com": [14808], "www.mcpmag.com": [9729], "fortnite.com": [6057], "business.tomtom.com": [16540], "www.humblebundle.com": [7615], "www.lynda.com": [9682], "zonza.tv": [18763], "trustedcs.com": [16790], "pingability.com": [12685], "www.ziplist.com": [18874], "www.plazakauppa.fi": [12131], "linux-sunxi.org": [9401], "www.creatis.insa-lyon.fr": [7771], "www.linuxplumbersconf.net": [9397], "app.ubertags.com": [17088], "spirit.kn.vutbr.cz": [17522], "openitp.org": [11947], "www.postoffice.co.uk": [12954], "www.get-digital.nl": [6562], "domainrendelo.hu": [4665], "*.castel-bayart.com": [2890], "service-portal.web.cern.ch": [2575], "www.guru3d.com": [7023], "tags.literotica.com": [9467], "store.ubnt.com": [17084], "svc079.wic859dp.server-web.com": [5308], "stroud.greenparty.org.uk": [6925], "webstore.illinois.edu": [17258], "yousendit.com": [18708], "lists.apc.org": [1294], "www.lrz.eu": [9238], "blog.ukrnames.com": [17126], "primesecoenergie.com": [13061], "www.acehotel.com": [470], "crowd.stanford.edu": [15383], "cdn.real-debrid.com": [13621], "www.presid.infn.it": [7766], "www.boomerang.com": [2209], "www.dns.lc.wix.com": [18383], "talent.usc.edu": [17278], "otazky.skylink.cz": [14937], "php.radford.edu": [13511], "nachtjeweg.nl": [7451], "medienforschung.zdf.de": [19800], "www.indiemerchandising.com": [8069], "www.mediastore.portsmouth.gov.uk": [19508], "twimler.com": [16878], "www.12wbt.com": [10343], "spaceup.org": [15207], "epgy.stanford.edu": [15383], "novainfosec.com": [11440], "*.interactivedata.com": [8240], "www.elbadil.com": [5144], "controlpanel.gradwellcloud.com": [6884], "gmo.jp": [6345], "conetrix.com": [3337], "www.themoviedb.org": [16299], "linuxtv.org": [9416], "lawstudent.cf.ac.uk": [2835], "www.datenschutz-ist-buergerrecht.de": [4218], "autodiscover.yandex.com": [18651], "*.mobileenterprise360.com": [10500], "www.heatmap.me": [7279], "piwik240.mybluemix.net": [10801], "telenor.se": [16091], "forsec.nl": [6051], "www.rabobank.nl": [13489], "www.emjcd.com": [3481], "nghttp2.org": [11373], "tasc-play-room.stanford.edu": [15383], "mjanja.ch": [10473], "www.calibre-ebook.com": [2740], "i00.c.aliimg.com": [813], "trustworthyinternet.org": [16800], "www.docker.io": [4617], "feedback.aol.com": [321], "www.twoseventy.net": [16900], "*.bloomberg.com": [2119], "www.dhammaloka.org.au": [1544], "www.whiteout.io": [18256], "lyft.me": [9680], "sogo.uni-ulm.de": [19715], "property.birmingham.gov.uk": [18999], "freedomnotfear.org": [6172], "zona.skylink.sk": [14937], "sweetpepper.org": [12985], "*.omeda.com": [11791], "content.cws.iop.org": [8194], "epayments.aylesburyvaledc.gov.uk": [18976], "www.forum.telekom.de": [4410], "jambit.com": [8500], "eftplus.asia": [4909], "leagueoflegends.com": [9206], "images10.newegg.com": [11316], "cdn.stormfront.org": [15498], "downloads.ohiobar.org": [11763], "de-mail.1und1.de": [68], "jira.gravity4.com": [6902], "truetrophies.com": [16776], "ngvpn31.nvidia.com": [10985], "ewebscapes.com": [4991], "bbs.linuxdistrocommunity.com": [9421], "comms.anz.co.nz": [18958], "s2.percona.com": [12557], "xmms2.org": [18522], "new3c.tmall.com": [19684], "www.entagroup.com": [5289], "www.sikur.com": [14785], "ofsted.gov.uk": [19456], "clover.com": [3318], "aftenposten.no": [711, 712], "canvasndecor.com": [2815], "*.pubnub.com": [13197], "intrepidusgroup.com": [8300], "*.westlaw.com": [18218], "search.ico.org.uk": [7688], "*.tuwien.ac.at": [17707], "sba-research.org": [14080], "support.lenovo.com": [9251], "convertkit.com": [3628], "actionsalvage.com": [490], "*.plista.com": [12818], "naiin.com": [11012], "www.healthyeater.com": [7266], "*.thumbshots.org": [16401], "images.laterooms.com": [19348], "player.pulpix.co": [13223], "www.ti.to": [16408], "people.debian.org": [4275], "courrielweb.videotron.ca": [17699], "publisher.qbrick.com": [13300], "www.pvac-cms.leeds.ac.uk": [17318], "supportcommunity.swisscom.ch": [15698], "shrinktheweb.com": [14746], "www.great-yarmouth.gov.uk": [19227], "www.paycheckrecords.com": [12472], "noaddedsugar.com": [11446], "www.keytosuccess.education.gov.uk": [19149], "*.gs-media.de": [6385], "www.uhub.org": [17121], "mail2web.com": [15090], "*.frontier.co.uk": [6224], "doc.pfsense.org": [12607], "kinox.sg": [19337], "1gwc-kbhkort.kk.dk": [8730], "www.wiki.ed.ac.uk": [5067], "brennancenter.org": [2302], "*.couchbase.com": [3699], "www.darkmail.info": [4153], "www.totalicare.com": [16602], "gmo.com": [6341], "*.overstock.com": [12170], "webmail.koumbit.net": [8998], "static.readyflowers.com": [13620], "ps.otenet.gr": [12132], "chaton.com": [3030], "*.bmc.com": [1527], "about.yammer.com": [18647], "www.conversionsbox.com": [3627], "showrss.info": [14744], "www.venuscafem.com": [17612], "sexslurp.com": [14641], "www.gl.ch": [19648], "turbo.htwk-leipzig.de": [7114], "secure.sharefile.com": [14663], "www.fd.ulaval.ca": [17229], "activecollab.sandstorm.de": [14282], "sportisimo.cz": [14158], "www.zabbix.com": [18774], "dept.dict.cc": [4455], "www.intrepidmuseum.org": [8299], "connecttosupport.org": [19076], "slickproductsusa.com": [14957], "domaindiscount24.net": [19123], "secure-ds.serving-sys-int.com": [14627], "media.mmo-champion.com": [3934], "www.aptdeco.com": [1141], "oto.yandex.com.tr": [18649], "www.fibonacci.uvt.nl": [16445], "portal.rit.edu": [13434], "gdp.alicdn.com": [805], "summercollege.stanford.edu": [15383], "www.espionageapp.com": [5362], "www.idg.se": [7705], "sync.go.sonobi.com": [15139], "billing.flokinet.com": [5938], "jobs.cdc.gov": [19046], "lists.openwireless.org": [12029], "wikispooks.com": [18298], "wnioski.t-mobilebankowe.pl": [19654], "store.feistyduck.com": [5744], "dev.piwik.org": [12733], "id-card.umd.edu": [17263], "devzing.com": [4419], "www.fxsystems.com": [5611], "*.daad.de": [6553], "www.inboxapp.com": [8039], "www.nabers.com": [11006], "www.postovoy.org": [19512], "www.chaox.net": [3007], "jackson-it.de": [8485], "repozitar.cz": [13787], "tracking.verisign.com.hk": [17623], "vkc.kk.dk": [8730], "www.osu.edu": [11760], "*.statesmanjournal.com": [15423], "*.sipr.ucl.ac.be": [17230], "www.kam.vutbr.cz": [17522], "hds.nerc.ac.uk": [11100], "static.gosquared.com": [6784], "www.gnumeric.org": [6765], "jira.cyanogenmod.org": [3954], "dns.norton.com": [11505], "piraten-aargau.ch": [12284], "*.cibc.com": [2601], "*.micgadget.com": [9742], "www.pantherexpress.net": [2560], "gi.de": [6558], "packetstatic.com": [12317], "www.mims.com.vn": [9743], "abnamro.nl": [245], "news.dk": [11324], "shevibe.com": [14692], "seal.godaddy.com": [6773], "boat.voyagegroup.com": [17859], "wand.com": [17970], "whereis.mit.edu": [9749], "nhattao.com": [11377], "www.postovabanka.sk": [12982], "emlib.ent.sirsidynix.net.uk": [14860], "uberent.com": [17085], "revolet.com": [13848], "triumph-adler.de": [16752], "crypto.di.ens.fr": [4930], "www.roadworks.org": [19554], "exklusiv.web.de": [18050], "*.cosmosmagazine.com": [2640], "*.porlaputa.com": [12924], "homepages.th-mittelhessen.de": [15809], "justtomatoes.com": [8693], "fomnetworks.com": [5584], "jacquelinegold.com": [8490], "my.vanderbilt.edu": [17557], "www.pubsbenefits.acs.org": [929], "s.pamfax.biz": [12352], "omakaseweb.com": [11787], "eveonline.com": [4985, 19168], "*.airbnb.it": [749], "secure.live.sipgate.co.uk": [14855], "www.techcrunch.com": [18428], "choopa.com": [3099], "www.nttdocomo.com": [10968], "*.firedrive.com": [5858], "*.aps.org": [932], "morawa-buch.at": [19409], "*.dryicons.com": [4785], "*.pcicomplianthosting.com": [12535], "www.maemo.org": [9844], "www.proofwiki.org": [13153], "policies.usc.edu": [17278], "ez-web-hosting.com": [5000], "www.artsandsciences.osu.edu": [11760], "static1.boligportal.dk": [2191], "bada55.cr.yp.to": [3748], "www.terminatio.org": [16123], "russellgroup.ac.uk": [14042], "docsafe.swisscom.com": [15698], "saucenao.com": [14302], "www.nsnam.org": [11551], "www.bib.kuleuven.be": [8816], "www.mackeeper.com": [9819], "extranet.ikoula.com": [7963], "navut.cz": [11005], "www.globes.co.il": [6744], "www.bapco.com": [1490], "*.profile.live.com": [9483], "legal.dwolla.com": [4816], "enthought.com": [5299], "cf9.100r.org": [9], "netbynet.enaza.ru": [5230], "www.jamieoliver.com": [8505], "www.holidaybullshit.com": [7450], "uds.ubuntu.com": [17102], "fundrazr.com": [6258], "blog.ted.com": [15805], "developer.appear.in": [1114], "networkcomputing.com": [11269], "www.usesthis.com": [17442], "icanhazip.com": [7908], "www.telford.gov.uk": [19669], "www.hostgator.com": [7511], "*.provenue.net": [13113], "access.leeds.ac.uk": [17318], "thinkpad.com": [9251], "omnirom.org": [11799], "www.pensionsmyndigheten.se": [12540], "www.telnic.org": [16100], "karzer.uni-goettingen.de": [17166], "bitly.com": [2001], "openapi.360.cn": [106], "www.discuss.io": [4558], "www.haskellonheroku.com": [7230], "launch.newsinc.com": [11335], "www.gdr-meso.phys.ens.fr": [4930], "betcoin.tm": [1813], "digital-future.it": [4481], "toxlearn.nlm.nih.gov": [11052], "ad.reachlocal.com": [13602], "*.ee.co.uk": [5457], "1984.is": [40], "www.blossom.co": [2122], "edit.productie.gx.uvt.nl": [16445], "monitor2.returnpath.net": [13834], "netclean.com": [11187], "*.247realmedia.com": [76], "www.laquadrature.net": [9113], "*.gymglish.com.br": [7037], "youtube.com.hk": [18709], "kimonolabs.com": [8890], "www.sonycsl.co.jp": [15148], "*.linuxnewmedia.de": [9396], "www.gfihispana.com": [6322], "m.taobao.com": [15952], "ch-it.norton.com": [11505], "worldofeas.canon.com.au": [19037], "hydra.aufbix.org": [1366], "kdoes.nl": [8832], "mpx.no": [10672], "www.ace-analyzer.com": [469], "markmonitor.com": [10003], "*.moreover.com": [10590], "www.hostvoice.com": [7519], "www.li.ru": [9487], "my.itunes.apple.com": [1120], "www.anpost.ie": [986], "lawgeex.com": [9176], "track.adform.net": [585], "*.univie.ac.at": [17353], "leblibrary.com": [9218], "www.kaust-cu.cornell.edu": [3676], "*.kundenserver42.de": [11279], "www.golfrev.com": [6821], "pear.phpdoc.org": [12653], "blog.qt.digia.com": [4475], "it.pcpartpicker.com": [12497], "phpmagazin.de": [12252], "*.memberclicks.com": [10245], "magicmembers.com": [9856], "secure.skypeassets.com": [14939], "services.google.com": [6834], "origin.www.upc.cz": [17000], "docs.wpstartbox.com": [15406], "braincert.org": [2269], "*.sandeen.net": [14277], "gsmhosting.com": [6992], "www.hsivonen.fi": [7120], "corporatecardapplication.com": [3681], "www.pokerstarsapps.com": [19504], "pflag.org": [12243], "hakin9.org": [7169], "www.kaltura.com": [8775], "www.systemausfall.org": [15762], "cbcrypt.org": [2522], "www.stormfront.org": [15498], "silicon.fr": [11198], "travelcardonline.n-somerset.gov.uk": [10857], "www.loc.gov": [9528], "de.aldi.be": [299], "www.cinchouse.com": [3136], "secure.cdn.us.playstation.com": [12795], "shoplift.byte.nl": [2486], "store.kaspersky.com": [8806], "www.croydonhealthservices.nhs.uk": [10913], "www.bitsquare.io": [2020], "hawkhost.com": [7247], "www.digitalbond.com": [4480], "culture.zomato.com": [18890], "paradoxplaza.com": [12386], "*.concur.com": [3550], "ads.where.com": [18238], "glerups.dk": [6708], "www.bitdrift.org": [1990], "www.centerforrights.org": [2947], "libsyn.com": [9321], "www.frugalware-art.org": [19461], "www.ipsidixit.net": [8348], "*.fourdo.com": [150], "balkongshoppen.se": [1629], "www.opendatacity.de": [19463], "*.berlin.de": [1791], "itservices.gmu.edu": [6544], "megabigpower.com": [10224], "*.guildwars2.com": [7011], "*.eveonline.com": [4985, 19168], "passwords.cites.uiuc.edu": [16956], "subscription-assets.timeinc.com": [16460], "sdlf.stanford.edu": [15383], "blog.korelogic.com": [8986], "www.dahmw.org": [4672], "comparis.ch": [3513], "www.altimatewellness.com": [890], "piwik.derpy.me": [4382], "control.earthlink.net": [5007], "assets.rbl.ms": [13592], "timeclockdeals.com": [16459], "list.girlsoutwest.com": [6667], "www.freifunk-karlsruhe.de": [6191], "oskuro.net": [12122], "slfed.uits.iu.edu": [8064], "moodle2.unizar.es": [17356], "communities.adobe.com": [615], "www.accesstojustice.gov.au": [455], "cf.sonymusic.com": [15147], "*.vanilladev.com": [17558], "www.ehoiva.fi": [19136], "okopnik.com": [11775], "www.tapgage.net": [15957], "www.edgarfiling.sec.gov": [17023], "webtrh.cz": [18173], "www.mobify.com": [10494], "secure.jbeekman.nl": [8415], "wiki.freeswitch.org": [6130], "swe.engineering.osu.edu": [11760], "smartlife.swisscom.com": [15698], "*.toonpool.com": [16555], "cdn.auth0.com": [1407], "internetsafetyproject.org": [8274], "*.simyo.de": [14837], "bundesnetzagentur.de": [2431], "www.studyinsweden.se": [19635], "65.181.183.157": [4685], "tickets.calpoly.edu": [2747], "mobileenterprise360.com": [10500], "piwik.avm.de": [372], "www.abosgratis.de": [422], "gloucestershire.firmstep.com": [19183], "scandinavianphoto.fi": [14334], "clc.serverfault.com": [15359], "www.marshall.usc.edu": [17278], "du.itunes.apple.com": [1120], "www.jboss.com": [8416], "uvpn.de": [19709], "lists.debian.org": [4275], "nhnnext.org": [10910], "www.cnr.vt.edu": [17740], "community.servicenow.com": [14622], "vpnincome.com": [8024], "news.ncsu.edu": [11492], "samsungknox.com": [14268], "webmail.webstyle.ch": [18159], "www.admissions.osu.edu": [11760], "cdn.mailerlite.com": [9882], "www.aboutus.org": [425], "devcentral.f5.com": [5546], "www.stonewall.org.uk": [19629], "images.dailyexpress.co.uk": [4110], "lunarpages.com": [569], "prices.psc.gov": [19525], "whatsmydns.net": [18236], "am.thecthulhu.com": [16334], "crb.research.illinois.edu": [17258], "weblibrary.cdn.citrixonline.com": [3179], "www.stacksocial.com": [15363], "www.wlfriends.org": [6217], "s.swiftypecdn.com": [15689], "odmp.org": [11751], "spritesmods.com": [15317], "cups.org": [2690], "*.derby.ac.uk": [17310], "beta.domainskate.com": [4657], "blog.nelhage.com": [10904], "www.research.buffalo.edu": [17297], "discussion.evernote.com": [5450], "www.mtailor.com": [9804], "t1cdn.mediamath.com": [10157], "www.develop100.com": [8226], "hillaryclinton.com": [7409], "myhappyoffice.com": [10833], "reversewhois.domaintools.com": [4660], "rentex.com": [13775], "ugc.taobao.com": [15952], "marchex.com": [9984], "download.openmpt.org": [11951], "www.projecthoneypot.org": [13135], "powershellgallery.com": [12993], "lipreading.org": [9441], "youtube.jo": [18709], "c.live.com": [9483], "www.dante-analytics.net": [4004], "*.infomaniak.ch": [8112], "uat.groupon.com.br": [6973], "www.mansfield.gov.uk": [19382], "bravemedia.org": [2292], "store.bobafamily.com": [2171], "*.tuhh.de": [15876], "www.folkets.dk": [5986], "incommonfederation.org": [8031], "cognition.plymouth.ac.uk": [12833], "revenuesbenefits.rossendale.gov.uk": [13973], "c3.nasa.gov": [10869], "swww2.glam.com": [6697], "mindtouch.us": [10410], "*.reformal.ru": [13722], "srsplus.com": [14169], "imgssl.constantcontact.com": [3592], "nxeassets-ssl.xbox.com": [18550], "ocl-cal.gc.ca": [11741], "yawnbox.com": [18663], "mobile.united.com": [17212], "youchoose.redbridge.gov.uk": [13683], "ru.libreoffice.org": [9311], "www.drollette.com": [10080], "experian.com": [5506], "gdata.youtube.com": [6839], "status.sumologic.com": [15592], "marketo.com": [10016], "linux-magazin.de": [9393], "internetfonden.se": [8288], "habets.pp.se": [7125], "www.cryptopro.ru": [3861], "www.dnaserum.com": [4057], "sfgate.findnsave.com": [5836], "*.andyet.com": [1012], "www.kk.dk": [8730], "s3.parature.com": [12396], "ekomi-us.com": [4921], "youtube.com.qa": [18709], "cubby.com": [3909], "extranet-gemeinsam.wienerstadtwerke.at": [18284], "tumen.rt.ru": [13469], "www.section9.co.uk": [14470], "www.valueapplications.com": [17538], "ekomi.*": [4921], "newhumanist.org.uk": [19433], "staging.lubswww.leeds.ac.uk": [17318], "forums.lenovo.com": [9251], "my.johnshopkins.edu": [8611], "www.olvi.fi": [11785], "online.americanexpress.com": [935], "webassign.net": [18054], "www.grad.uw.edu": [17077], "wimo.com": [18277], "partnernet-temp.symantec.com": [15715], "energia.edp.pt": [4896], "f35.com": [5542], "hauke-m.de": [7239], "vendors.paddle.com": [12324], "lists.fedoraproject.org": [5726], "www.nex.sx": [11353], "britannica.com": [2336], "inside.com": [8164], "kuther.net": [9046], "2014.confidence.org.pl": [3569], "cimg.filemobile.com": [5800], "spvideos.5min.com": [178], "www.hupstream.com": [7626], "*.truecrypt.ch": [16766], "9seeds.com": [213], "labs.kollegorna.se": [8964], "static.symanteccloud.com": [15715], "www.freeassangenow.org": [6137], "fin-fusioncrm.oracle.com": [12082], "sitegenie-external.quinstreet.com": [13366], "cloudlinux.com": [3290], "images.chainlove.com": [2981], "shadertoy.com": [14653], "nydailynews.com": [10990, 10991], "pantz.org": [12375], "view.de.adjug.com": [526], "ppc.ipswich.gov.uk": [8351], "sjd.net": [8631], "discourse.chef.io": [3057], "s.on.aol.com": [321], "equityzen.com": [5337], "online.aberdeencity.gov.uk": [411], "ja-sig.org": [8522], "ensighten.com": [5286], "r.twimg.com": [16877], "*.webmd.com": [18070], "iberia.com": [7898], "uk.logmein.com": [9549], "sit.fraunhofer.de": [6112], "v-dem.net": [19725], "dtc.gplhost.co.uk": [6372], "assemblyseries.wustl.edu": [17993], "www.enphase.com": [5283], "disk.wedos.com": [17901], "www.leadershipacademy.nhs.uk": [10913], "law.lexmachina.com": [9279], "www.chloe.re": [3093], "coinsquare.io": [3410], "centerlinebeta.net": [2951], "git.playgrub.com": [12806], "*.megafon.ru": [10226], "consultants-locator.apple.com": [1120], "scripts.omniture.com": [11803], "python-nbxmpp.gajim.org": [6406], "i7.c.dk": [2498], "www.rareconnect.org": [13566], "*.de17a.com": [4242], "www.mixcloud.com": [10465], "www.easterncheshireccg.nhs.uk": [10913], "heelnormaal.snsbank.nl": [14144], "zhi.taobao.com": [15952], "cdncss.dmjx.dk": [4600], "concerts.livenation.com": [9481], "embeddedarm.com": [5198], "topuniversities.com": [16563], "cdmi.osu.edu": [11760], "bc.whirlpool.net.au": [18243], "parrot.com": [12409], "paydirekt.de": [12473], "clube.ecommercebrasil.com.br": [4885], "old.harita.yandex.com.tr": [18649], "*.witopia.net": [18278], "gtcsonline.mycashflow.fi": [6394], "homedepot.com": [7470], "www.jastusa.com": [19316], "jobs.irs.gov": [7819], "ep2012.europython.eu": [5409], "front-admin.voyage-prive.com": [17857], "developers.digitalocean.com": [4495], "sa.ed.gov": [4889], "cdna.tid.al": [16430], "friedhoff.org": [6212], "*.azcentral.com": [1480], "www.xetra.com": [18567], "occupycorporatism.com": [11708], "*.megafiles.se": [10225], "www.skytal.es": [6915], "www.livezilla.net": [9499], "www.7digital.com": [193], "*.pgmcdn.net": [7453], "www.crowdfunding.correctiv.org": [3685], "vip.vetbiz.gov": [17019], "drawception.com": [4744], "www.americanexpress.com": [935], "net.vutbr.cz": [17522], "www.neaf.gov.au": [11068], "skysql.com": [14926], "www.ot.wustl.edu": [17993], "securycast.com": [14538], "everydayhealth.com": [5453], "codinghorror.com": [3385], "randsinrepose.com": [13547], "anvil.rubiconproject.com": [14014], "tk.ilius.net": [10216], "wordstat.yandex.kz": [18652], "omsk.rt.ru": [13469], "aax.amazon-adsystem.com": [909], "www.thewatershedresidence.com": [16321], "go.tendatta.com": [16110], "www.clinicaltrials.gov": [3268], "jabbi.pl": [8480], "www.marionlibrary.osu.edu": [11760], "*.clarionledger.com": [3213], "*.mirantis.com": [10442], "rhb.ch": [13857], "anb.com.sa": [313], "nets.ec": [11205], "vts.inxpo.com": [8334], "ipsos-na.com": [8350], "*.causes.com": [2909], "bgpmon.net": [1514], "tryprocleanse.com": [10800], "www.rspcashop.co.uk": [13462], "akademikerforsakring.se": [758], "www.aexp-static.com": [678], "cathaypacificcargo.com": [2904], "www.iu.edu": [8064], "oma.zoner.fi": [18894], "srihash.org": [14167], "peer5.youcanbook.me": [18703], "*.rascal999.co.uk": [19535], "www.cpmstar.com": [2647], "www.vipserv.org": [17488], "pokylinux.org": [12858], "dl.twrp.me": [15891], "www.jochen-hoenicke.de": [8605], "media.petridish.org": [12599], "www.owner.io": [12185], "lotuscars.com": [9615], "ybitcoinmagazine.com": [18612], "www.kubuntuforums.net": [9030], "itselfservice.plymouth.ac.uk": [12833], "gu.com": [6994], "www.acromediainc.com": [479], "www.ucc.ie": [16933], "www.gazellegames.net": [19209], "gramsflow.com": [6887], "tribler.org": [16729], "alert.wpm.neustar.biz": [11280], "*.merproject.org": [10271], "www.avantar.com": [1441], "login.dtcc.edu": [4323], "*.northclicks.com": [11494], "www.symfony.fi": [15718], "w.kuruc.org": [9045], "xara.com": [18542], "*.stayfriends.de": [15444], "ecn.dev.virtualearth.net": [17755], "picard.linux.it": [8385], "www.seafileserver.de": [14435], "hrusecky.net": [10342], "support.ssl.com": [14176], "my.southampton.gov.uk": [15191], "www.securifera.com": [14515], "cacetech.com": [2706], "forum.codeigniter.com": [19069], "donate.careinternational.org.uk": [19041], "www.linphone.org": [9389], "cot.food.gov.uk": [19187], "meltin.net": [10242], "lists.cs.illinois.edu": [17258], "cdn.ca9.uscourts.gov": [17056], "www.codeclubpro.org": [3355], "redbull.*": [13666], "bugs-staging.swift.org": [15688], "dutchdpa.nl": [4813], "www.thinkculturalhealth.hhs.gov": [7062], "ehoiva.fi": [19136], "o-zone.vanco.co.uk": [17555], "eolewater.com": [5315], "www.martus.org": [10035], "www.igvita.com": [7972], "fluctishosting.com": [5950], "faststream.civilservice.gov.uk": [19066], "cell.com": [2932], "www4-static4.gog.com": [6365], "ad.where.com": [18238], "www.pubservice.com": [13220], "www.postpointsrewards.com": [12951], "www.mijnlandal.nl": [18490], "bedrockformssg.msn.com": [9796], "lms.learning.hhs.gov": [7062], "forexctlogin.tradenetworks.com": [6034], "skins.agariomods.com": [721], "consult.defra.gov.uk": [4314], "mofobian.com": [10531], "secure-resumption.com": [14484], "rspca.org.uk": [13461], "worldofwarplanes.*": [18461], "uks.enaza.ru": [5230], "www.palsolidarity.org": [12338], "login.naplesnews.com": [11035], "www.emanuelduss.ch": [5195], "woolworths.com.au": [18422], "www.ple.com.au": [12269], "lecture2go.uni-hamburg.de": [16951], "digitop.nal.usda.gov": [17209], "secure.fortuneaffiliates.com": [6062], "acttea.ut.ee": [17069], "updates.jenkins-ci.org": [8551], "computer-bild.de": [19075], "uocpres.uillinois.edu": [16960], "videos.t-mobile.com": [15770], "www.mjdk.dk": [19401], "partner.bluekai.com": [2133], "landfill.bugzilla.org": [2410], "panel.pixfs.net": [12741], "gorod.yandex.by": [18648], "www2.gajim.org": [6406], "www.discoversignage.com": [4553], "www.passagebank.com": [12426], "webmail.htwk-leipzig.de": [7114], "beta.southglos.gov.uk": [15189], "jdpay.com": [8429], "*.beyondbinary.io": [18994], "www.dailyhiit.com": [4115], "dbs.com.hk": [4010], "novoed.com": [11531], "webpouz.unizar.es": [17356], "abosgratis.de": [422], "webauth.ox.ac.uk": [17271], "passionfruitads.com": [12429], "unrealitytv.co.uk": [17366], "sodiumshop.com": [15084], "cyberagent.co.jp": [3957], "hosting9000.com": [7528], "danielmiessler.com": [4143], "vpn.aclutx.org": [253], "jusek.se": [8686], "community.lincolnshire.gov.uk": [9364], "www.saucenao.com": [14302], "*.cl.ly": [3206], "www.ccrjustice.org": [2550], "york.edu": [18694], "aukcie.ludialudom.sk": [9652], "roadworks.org": [19554], "recruitmentplatform.com": [13651], "checksums.freenetproject.org": [6181], "*.monoprice.com": [10561], "antivigilancia.org": [1070], "f1.success.mindtouch.com": [10409], "kib.ki.se": [8725], "www.peertech.org": [12525], "blog.opengroup.org": [18428], "clinicalaudit.hscic.gov.uk": [19264], "dsp.bidtellect.com": [1848], "wiki.wxwidgets.org": [19779], "apps.support.t-mobile.com": [15772], "bflow.security-portal.cz": [14520], "www.kastatic.org": [8873], "libraryreserve.cdn.overdrive.com": [12160], "*.mmoga.de": [9763], "teamviewer.com": [16004], "plausible.coop": [12791], "www.fmod.org": [5968], "krita.org": [9014], "scsk.jp": [14090], "readyhosting.com": [13618], "covad.com": [3724], "*.myheritage.es": [10834], "www.tele2.lt": [16069], "*.f3images.com": [5543], "www.wrzru.com": [19767], "ko.foursquare.com": [6082], "*.iapc.nl": [19277], "underground-gamer.com": [17156], "backed.io": [1599], "demo.inka.f4.htw-berlin.de": [7112], "www.tenpay.com": [16114], "redirect.www.ibm.com": [7675], "ask.openmrs.org": [11953], "download.zarafa.com": [18795], "together.jolla.com": [8622], "l3-1.kiva.org": [8926], "www.modernpgp.org": [10522], "thompson.com": [16377], "agc.greenparty.org.uk": [6925], "asterisk.org": [1299], "igowild.com": [7955], "aquabounty.com": [1142], "mynxt.info": [10771], "www.treasurydirect.gov": [16705], "graduation.berkeley.edu": [17240], "www.shareconnect.com": [14662], "forms.hubspot.com": [7594], "www.consultmahan.com": [9864], "houndci.com": [7562], "www-act.ucsd.edu": [16939], "berkman.harvard.edu": [7219], "id.scene.org": [8269], "akademy2013.kde.org": [8718], "www.sv2.biz": [15668], "www.mplayerhq.hu": [9784], "franziskawellner.de": [6105], "synthetix.net": [15743], "connect.internet.org": [8278], "community.letsencrypt.org": [9264], "www.simblee.com": [14809], "amerika21.de": [952], "www.tt.se": [15866], "appserv7.admin.uillinois.edu": [16960], "projects.kde.org": [8718], "www.alumni.leeds.ac.uk": [17318], "knowledgeblog.org": [8948], "dev.mashery.com": [10046], "torrentr.eu": [16583], "www.hdtracks.com": [7056], "www.springer.com": [15309], "myob.com": [9815], "insidegme.wusm.wustl.edu": [17993], "www.greyhole.net": [6946], "comodo.com": [3504], "www.issh.ac.jp": [8270], "researchweb.watson.ibm.com": [7675], "archbang.org": [1158], "www.exoclick.com": [5499], "*.royalmail.com": [14000], "caddyserver.com": [2712], "craigmurray.org.uk": [19087], "portal.zwame.pt": [18925], "www.jpfox.fr": [8653], "no1366.org": [11441], "sendspace.com": [14583], "justice.gov.sk": [14972], "www.perfectaudience.com": [12559], "www.coursera.org": [3719], "js.ptengine.jp": [13190], "www.gifyo.com": [6643], "icracked.com": [7702], "webmail.usainteanne.ca": [19720], "landalskilife.fr": [18489], "www.pilgrimagesoftware.com": [12674], "www.decryptcryptolocker.com": [4289], "sesplan-consult.objective.co.uk": [19454], "www.bitcoinwisdom.com": [1974], "touch.groupon.com": [6974], "*.ebscohost.com": [4872], "www.axosoft.com": [1477], "pgsql.cesky-hosting.cz": [19051], "s2.mzstatic.com": [10852], "checkout.stripe.com": [15525], "*.ighome.com": [7948], "cds.sevenoaks.gov.uk": [14638], "www.statewatch.org": [15424], "cdn.timetrade.com": [16455], "www.meynconnect.com": [10328], "ja.wiki.hidekisaito.com": [7393], "swisscom.com": [15698], "www14.software.ibm.com": [7675], "studentreports.andover.edu": [12623], "www.barmer-gek.de": [1672], "openfarmgame.com": [12010], "www.odesk.by": [11724], "secure.longtailvideo.com": [9589], "*.pimg.tw": [12676], "www.adactio.com": [549], "www.cpubenchmark.net": [2650], "www.leviathansecurity.com": [9272, 9273], "tr.im": [16624], "shop.linux-magazin.de": [9393], "*.surfaid.ihost.com": [3663], "webapps.stgeorge.com.au": [19627], "download.macromedia.com": [9833], "privacyfix.com": [13092], "test10.usc.edu": [17278], "www.techinasia.com": [16025], "www.socialboxusa.com": [15057], "www.leics.police.uk": [9240], "www.paypal-forward.com": [12468], "www.nmap.org": [11433], "doc.satoshilabs.com": [19565], "secure.pegazhosting.com": [12527], "www.arturkim.com": [1236], "people.yandex.kz": [18652], "mycampus.hslu.ch": [7583], "topiama.com": [16565], "www.investorflow.com": [14799], "za.godaddy.com": [6773], "thewrap.com": [16215], "research.chemistry.ohio-state.edu": [11761], "dmoz.org": [4601], "help.familysearch.org": [5646], "invoca.net": [8330], "epb.net": [4940], "cdn.pictimgs.com": [3922], "*.blogg.se": [2106], "ba-cdn.ghostery.com": [6629], "www.digifense.com": [4477], "cryptoins.com": [3874], "selfserve.hants.gov.uk": [7196], "www.resortpro.net": [13810], "www.geekhack.org": [6502], "seo.osu.edu": [11760], "ft.ornl.gov": [11693], "w.cdnwp.com": [2559], "resources.mit.edu": [9748], "expert.yandex.com": [18651], "www.simmtester.com": [14814], "id.google.co.*": [6837], "electroscience-backup.engineering.osu.edu": [11760], "c1.atdmt.com": [10360], "hws.uchastings.edu": [16942], "www.noao.edu": [11053], "www.cyngn.com": [3980], "onlineadmissions.northyorks.gov.uk": [19440], "upcmail.upc.ie": [17001], "*.jubii.dk": [8660], "wpenginestatus.com": [17924], "linearcollider.org": [9369], "deis.com": [4320], "www.nslds.ed.gov": [4889], "museum.php.net": [12250], "autodiscover.newsinc.com": [11335], "www.office.co.uk": [11742], "*.imrworldwide.com": [8023], "www.freshmeat.club": [19198], "univention.de": [17225], "involver.com": [8333], "www.onebillion.org.uk": [11853], "www.atbank.nl": [358], "richarddawkinsfoundation.org": [13872], "switch.ch": [15699], "gentoo.zugaina.org": [18920], "forum.logentries.com": [9553], "www.consultations.southwark.gov.uk": [15196], "www.zerotier.com": [18844], "www.freecause.com": [6159], "somafm.com": [19608], "asmc.de": [1269], "*.cgc.gov.au": [3493], "forums.web4all.fr": [18052], "www.pfsense.org": [12607], "www.amnistia.cl": [976], "rabobank.nl": [13489], "console.appnexus.com": [1109], "a3.jimstatic.com": [8571], "stanfordwho.stanford.edu": [15383], "www.costco.com": [3694], "palliativefellowship.stanford.edu": [15383], "lubsws01.leeds.ac.uk": [17318], "dcerpc.org": [19104], "adbit.co": [516], "myid.threema.ch": [16399], "floatinghospital.org": [5934], "www.mivacentral.com": [10462], "www.titanic-magazin.de": [16502], "developers.filepicker.io": [5801], "staticv.net": [17572], "www.ikoula.com": [7963], "www.site.yandex.by": [18648], "onlineregister.com": [11866], "www.aldi.fr": [299], "ads.q1media.com": [13275], "www.cloudworks.nu": [3298], "blog.cyberpowerpc.com": [19098], "bigv.io": [1855], "www.ipgmail.com": [7792], "www.accesspressthemes.com": [448], "ap2.bvg.de": [1582], "www.sas.kaspersky.com": [8806], "pharmacyschool.usc.edu": [17278], "nvbao.taobao.com": [15952], "britcoin.co.uk": [2337], "qconsf.com": [13281], "digikeytest.digikey.de": [4469], "ehs.wustl.edu": [17993], "active.cardiff.gov.uk": [19039], "swiss-prime-site.ch": [19647], "brilig.com": [2332], "jxself.org": [8702], "sc.dealtime.com": [4254], "*.petteriraty.eu": [12604], "*.thesecuritypractice.com": [16310], "www.nikcub.com": [11399], "*.fcns.eu": [6223], "enbs.dict.cc": [4455], "et04.xhcdn.com": [18514], "services.hearstmags.com": [7273], "*.ohsocool.org": [11758], "*.miranda-im.org": [10441], "www.sendspace.com": [14583], "jeja.pl": [8549], "www.movie4k.me": [10636], "wiki-vav.ro.vutbr.cz": [17522], "*.bittorrent.com": [1948], "inka.htw-berlin.de": [7112], "image.captchas.net": [2823], "beefymiracle.org": [1747], "smetrics.ikea.com": [7959], "www.picnichealth.com": [12662], "www.faststream.civilservice.gov.uk": [19066], "www.gficloud.com": [6321], "www.mozillaignite.com": [10659], "developers.spiceworks.com": [15266], "www.sos.state.co.us": [3443], "mypension.wirral.gov.uk": [18371], "zingcheckout.com": [18870], "cloud.aculab.com": [506], "*.csc.gov.au": [3494], "tr.pcisecuritystandards.org": [12224], "www.architectsjournal.co.uk": [1162], "tuxic.nl": [16857], "*.4d.com": [149], "www.friendlybracelets.com": [6215], "www.dutchdpa.nl": [4813], "www.contrastsecurity.com": [19078], "img0.thejournal.ie": [16224], "rbth.ru": [14043], "help.mail.com": [9872], "reflected.net": [13718], "telegram.me": [16079], "h-da.de": [4156], "rewards.sky.com": [14924], "2.darkroom.shortlist.com": [14734], "allaboutus.warrington.gov.uk": [17984], "www.advent.com": [654], "imo.im": [8008], "www.smartftp.com": [14988], "feedback2.yandex.kz": [18652], "kredyty-mieszkaniowe.money.pl": [10546, 10547], "fusion.webfusion-secure.co.uk": [18117], "www.adsupply.com": [544], "*.redbulls.com": [13666], "hastings.firmstep.com": [19182], "wiki.cites.illinois.edu": [17258], "www.hbo.com": [19240], "vip.symantec.com": [15715], "m.lenta.ru": [19356], "blog.verslu.is": [17635], "paypal-forward.com": [12468], "kb.berkeley.edu": [17240], "shareholder.ru": [14678], "cloud.zaehlwerk.net": [18778], "www.gottman.com": [6858], "pointroll.com": [12852], "meta.stackoverflow.com": [15359], "www.ipse.co.uk": [7797], "library.eastriding.gov.uk": [5015], "youtube.ua": [18709], "platform.communicatorcorp.com": [3500], "www.harland.net": [7207], "www.haproxy.com": [7045], "www.satsymposium.org": [14076], "www.thermoscientific.com": [16349], "youtube.ug": [18709], "nintendo.com": [11417], "csc.hetnet.nl": [8743], "img.okcoin.cn": [11627], "scriptmp3.com": [14425], "www.suspiciousumbrella.uk": [19642], "multisoft.com": [10697], "www.us.adjug.com": [526], "www.reiner-sct.com": [13747], "support.sas.com": [14074], "b.alipay.com": [817], "www.staticv.net": [17572], "maidsafe.org": [9867], "internetweek.jp": [8287], "cirtexhosting.com": [3159], "testllwcmlw.barnardos.org.uk": [18981], "ots.treas.gov": [17059], "webmaker.org": [10663], "www.comscore.com": [3453], "anonops.com": [1042], "dashboard.longtailvideo.com": [9589], "www.love2d.org": [9628], "portlandonline.com": [3195], "hosting.cz": [18938], "*.umu.se": [17144], "wethegoondas.in": [18030], "screencraft.org": [14408], "blog.xenproject.org": [18558], "www.sbi.co.in": [14082], "sp.auth.adobe.com": [615], "smileexperts.osu.edu": [11760], "www.webfusion-support.co.uk": [18117], "rsrc.psychologytoday.com": [13189], "certification.canonical.com": [2810], "bookings-streaming.sydney.edu.au": [19649], "images.wambacdn.net": [17969], "store.taobao.com": [15952], "www.secdev.com": [14458], "nsfwcorp.com": [11549], "www.securecoding.cert.org": [2583], "fragdenstaat.de": [6093], "www.mercyships.org.s3.amazonaws.com": [10282], "www.usa.gov": [17029], "mmedia1.ozon.ru": [12199], "support.curated.co": [3924], "*.forgottenlands.eu": [6038], "nl.canon.be": [2809], "www.icedivx.com": [7910], "acromediainc.com": [479], "*.amsa.gov.au": [1397], "tacoda.at.atwola.com": [318], "www.bioinfo.pl": [1898], "gjopen.com": [6336], "secure.dover.gov.uk": [4718], "my.siteimprove.com": [14880], "www.okcupid.com": [11772], "*.fundrazr.com": [6258], "vc.jd.com": [8423], "secure2.intl.match.com": [10064], "assets.theatlantic.com": [16246], "gourl.io": [6790], "oregonstate.edu": [12099], "adserver.juicyads.com": [8668], "support.unseen.is": [17369], "*.rackcdn.com": [13496], "fbapp.uat.telegraph.co.uk": [16082], "www.ntia.doc.gov": [17058], "pendle.gov.uk": [12532], "www.ubfoundation.buffalo.edu": [17297], "static.owncloud.com": [12181], "regularish.com": [13742], "support.infinet.com.au": [8093], "stash.alonetone.com": [866], "www.heg.co.uk": [7502], "www.ehs.wustl.edu": [17993], "*.cspforum.eu": [2676], "cf.static.xxxbunker.com": [18607], "www.esj.com": [4962], "spiil.org": [15274], "*.stackexchange.com": [15359], "avuecentral.com": [1458], "*.mozo.co": [10666], "*.codesion.com": [3287], "www.riversidemajestic.com": [13908], "pm-utils.freedesktop.org": [6126], "bugzilla.mindrot.org": [10413], "nexway.com": [11355], "www.hereplus.me": [7328], "spreadshirt.co.uk": [15300], "www.splashthat.com": [15281], "esd.mit.edu": [9749], "xcdn.co": [18504], "www.binera.de": [7217], "agileu.com": [728], "thinglink.com": [16356], "status.greenqloud.com": [6919], "youtube.ma": [18709], "account.rovio.com": [13989], "*.feedback.minus.com": [10435], "support.blackphone.ch": [2048], "croydon.greenparty.org.uk": [6925], "firstdirect.com": [7098], "bulletproofexec.com": [2419], "nuclearcat.com": [11568], "kde-look.org": [19461, 19462], "www.cpanel.net": [2653], "mail.roffey.org": [13947], "mansfield.osu.edu": [11760], "portal.pfsense.org": [12607], "security.web.cern.ch": [2575], "naacpcompanystore.org": [10862], "lists.princeton.edu": [13064], "*.bundanon.com.au": [2426], "na1.www.gartner.com": [6463], "mnot.net": [10479], "2015.gaobase.admin.cam.ac.uk": [17243], "sug.htwk-leipzig.de": [7114], "swe.osu.edu": [11760], "www.soundgasm.net": [15162], "vegaspartnerlounge.com": [17589], "www.kotex.com": [8994], "blackarch.org": [2036], "blog.openhub.net": [12012, 12013], "grasswire.com": [6896], "userapi.com": [17490], "shop.mcafee.com": [10114], "www.efurnitureny.com": [4915], "oh-tech.org": [11623], "ox-d.openxadexchange.com": [11998], "forum.subterraneangames.com": [15568], "howto.landure.fr": [9144], "msns.osu.edu": [11760], "42.ie": [142], "www.eurosmartz.com": [5410], "mobile.plugrush.com": [12823], "ph.norton.com": [11505], "www.finanstilsynet.dk": [5832], "4id.channel4.com": [3003], "mir.wustl.edu": [17993], "api.vgc.no": [17484], "gerv.makes.org": [9916], "finanstilsynet.dk": [5832], "svnweb.cern.ch": [2575], "*.tugg.com": [16821], "www.zmap.io": [18762], "www.tescocompare.com": [16137], "securestore.discovery.com": [4554], "emc.com": [4929], "m.aldi-nord.de": [299], "kablepackaging.com": [8763], "www.quadrigacx.com": [13324], "www.blackpool.gov.uk": [2056], "rad.live.com": [9483], "www.industrymailout.com": [8077], "cdn.dota2.com": [4697], "ie.yandex.com.tr": [18649], "*.openskillz.com": [19462], "www.itdashboard.gov": [7856], "www-jp.mysql.com": [10780], "commbank.com.au": [3477], "my.uw.edu": [17077], "home.1und1.de": [68], "conference2004.kde.org": [8718], "stats.opkode.com": [12057], "www.ubuntu-mate.org": [17098], "hdh.ucsd.edu": [16939], "teacupsandtrinkets.co.uk": [15994], "pantherfile.uwm.edu": [17294], "www.numbersusa.com": [11578], "www.metapress.org": [10300], "www.tug.org": [15991], "jp.8chan.co": [204], "community.elgg.org": [3501], "www.leaserig.net": [9214], "ecologylab.net": [8246], "*.stocktwits.com": [15478], "*.shopbootsusa.com": [2213], "*.rnrwheels.com": [13438], "hotels.com": [7554], "www.ujd.gov.sk": [14972], "www.helmich.de": [7303], "www.cesiumjs.org": [2973], "www.sgsstudentbostader.se": [14113], "www.breakoutband.com": [2299], "myswitzerland.com": [19419], "mibbit.com": [10338], "formilux.org": [6044], "i3.technet.microsoft.com": [10364], "cdn.speedof.me": [15257], "public.nicereply.com": [11385], "www.springpadit.com": [15311], "*.biz.edgesuite.net": [760], "productsafety.gov.au": [13124], "directory.eoportal.org": [5314], "cert.webtrust.org": [18093], "munin.videolan.org": [17688], "pitstop.manageengine.com": [9940], "bequiet.com": [1725], "store-media.nytimes.com": [11000], "cdn1.gbot.me": [6808], "hazen.gl.ciw.edu": [2857], "*.rylwarfare.net": [13483], "seetickets.com": [14547], "socitmreporting.govmetric.com": [6866], "*.officedepot.com": [11747], "blog.fortinet.com": [6056], "www.kayak.co.uk": [8823], "www.netmundial.net": [11213], "boutique.rtbf.be": [14011], "nap.edu": [16201], "www.dunkelangst.org": [4802], "www.equalitytrust.org.uk": [5331], "ganesh.videolan.org": [17688], "insider.windows.com": [18342], "occrp.org": [11611], "www.fit.fraunhofer.de": [6112], "www.radio.feec.vutbr.cz": [17522], "www.policyalternatives.ca": [19505], "archlinux.org": [1157], "securepoint.de": [14509], "s5.mzstatic.com": [10852], "openfoundry.org": [11938], "www.coochey.net": [3634], "support.mayfirst.org": [10100], "*.bitnamihosting.com": [1945], "epa-heast.ornl.gov": [11693], "connect.aber.ac.uk": [413], "*.alaska.edu": [17235], "*.community.wholeliving.com": [10031], "www.transferwise.com": [16664], "www.vircurex.com": [17733], "www.skysql.com": [14926], "developer.gitter.im": [6684], "4freeproxy.com": [156], "bio.org": [1522], "www.biicode.com": [1869], "verkaufen.ch": [19733], "gay180.com": [6478], "wiki.cacert.org": [2520], "www.solariz.de": [19607], "www.mirrorservice.org": [10448], "www.cru-inc.com": [2660], "gallery.debianforum.de": [4276], "www1.ibdcd.com": [8323], "www.voice.fi": [17819], "leisure1.sbb.ch": [15693], "*.neosmart.net": [11151], "clippod.com": [3270], "global.fncstatic.com": [6085], "myheritage.com": [10834], "quiz.itespresso.fr": [11198], "conferences.williams.edu": [18316], "varian.com": [17564], "m.hertzequip.com": [7372], "www.echo.nasa.gov": [10868], "mail.techxpress.net": [16022], "content.azorus.com": [1208], "www.freifunk-ansbach.de": [6189], "a.ntv.io": [11558], "oderland.se": [11723], "ssl-www.static.rtbf.be": [14011], "css.createsend1.com": [3774], "jobs.redhat.com": [13675], "defenceimagery.mod.uk": [16975], "topbuy.com.au": [16559], "zamzar.com": [18784], "law.washington.edu": [17291], "bishopi.com": [1917], "www.otpdirekt.sk": [12133], "musixmatch.com": [10723], "btcgear.com": [1566], "*.aedc.gov.au": [1388], "w1.plugrush.com": [12824], "docs.unrealengine.com": [17365], "web.eecs.umich.edu": [17266], "publish.indymedia.org": [8083], "www.mobility.vutbr.cz": [17522], "standards.ieee.org": [7715], "www.polygrant.com": [12890], "accountcenter.pfizer.com": [12610], "reversens.domaintools.com": [4660], "edinburgh.gov.uk": [5084], "avaaz.org": [1437], "www.blinktrade.com": [2078], "mv.treehousei.com": [16706], "affiliate.techstats.net": [16052], "digitalgov.gov": [4488], "www.xumaa.com": [18604], "www.deutschepost.de": [19112], "fluendo.com": [5951], "www.obermassing.at": [11699], "kpn.nl": [8744], "classes.uaa.alaska.edu": [17233], "uptimerobot.com": [19717], "*.figue.com": [5574], "xxx.upx69.com": [17405], "share.sbndev.net": [14083], "www.openid.net": [11943], "i.gtimg.cn": [6993], "imagesrv.gartner.com": [6463], "www.birds-are-nice.me": [1912], "drought.gov": [4772], "librarybookings.leeds.gov.uk": [19353], "www.mims-online.com": [9743], "chemnitzer.linux-tage.de": [9398], "*.www.cfda.gov": [2894], "mail.bioinfo.pl": [1898], "lambdaops.com": [9137], "dmcloud.net": [4125], "politisktinkorrekt.info": [12877], "www-k.ext.ti.com": [16152], "peerj.com": [12515], "gameinformer.com": [6422], "www.cloudflarechallenge.com": [3286], "investor.vanguard.com": [19728], "lh6.google.*": [6837], "ecocar3.osu.edu": [11760], "cdn.toyfoundry.net": [16619], "gnomefiles.org": [19461, 19462], "*.yandex.net": [18654], "zagony.ru": [18779], "www.egyptindependent.com": [5117], "astatic.weborama.fr": [18138], "www.reconingspeakers.com": [15237], "cdn4.xvideosx.tv": [18537], "joeyh.name": [8608], "*.tal.de": [15917], "research.vt.edu": [17740], "apis.google.com": [6834], "domains.servenets.com": [14600], "*.whsmith.co.uk": [17909], "www.versions.nodejitsu.com": [11453], "billingproxy.fineproxy.org": [5845], "www.nitrokey.com": [11429], "blog.10gen.com": [14], "www.flipkart.com": [5926], "www.thunderbird-mail.de": [16404], "unitedrepublic.org": [17217], "randomhouse.biz": [13542], "www.gaug.es": [6996], "www.batmanarkhamknight.com": [1690], "jewelosco.com": [8562], "poipic.coccoc.com": [3342], "www.nlayer.net": [10939], "*.vtcsec.ru": [17516], "www.campusship.ups.com": [17007], "bn1files.storage.msn.com": [9796], "*.st-hatena.com": [7238], "auth.sandstorm.de": [14282], "www.unisend.com": [17199], "adam.law.harvard.edu": [7219], "www.wtfuzz.com": [17932], "cnsi.ucla.edu": [17241], "learn2.agilebits.com": [727], "www.kommunal.se": [8967], "my.calpoly.edu": [2747], "spam.sans.org": [14072], "idp.comcast.net": [3460], "diversity.mit.edu": [9747], "gstreamer.freedesktop.org": [19195], "duosecurity.com": [4803], "www.briandunning.com": [2312], "rspb.org.uk": [13460], "www.uu.se": [17074], "obitalk.com": [19453], "account.zanesvilletimesrecorder.com": [18785], "www.ccedk.com": [2546], "*.tnsinfo.com": [15842], "job.o.qcloud.com": [13301], "dreamspark.com": [4749], "*.marconisida.com": [3935], "piwik.werosys.de": [18023], "www.cheapairportparkingbirmingham.com": [3043], "i1.code.msdn.s-msft.com": [14058], "ukwebsolutionsdirect.com": [16968], "passion-radio.com": [12428], "*.mpi-sws.org": [10089], "www.baselland.ch": [19648], "talenttech.com": [15918], "www.padmapper.com": [12323], "info.ornl.gov": [11693], "sabayon.org": [14214], "dns.d0wn.biz": [3996], "blog.userecho.com": [17430], "g.live.com": [9483], "www.berkeleylug.com": [1785], "kpt.ch": [8745], "secureusa.greenpeace.org": [6937], "www.demworks.org": [4341], "ssl.goeswhere.com": [6805], "www.8tracks.com": [205], "www.woopra.com": [18423], "dev.thegreatcoursesplus.com": [16284], "ud-media.de": [16947], "*.bytelove.com": [2490], "pro.connexity.com": [3583], "el.libreoffice.org": [9311], "johoobuy.com": [8614], "*.thethemefoundry.com": [16318], "deutsch.peerius.com": [12522], "prospecteye.com": [13163], "it.cloudflare.com": [3285], "svn.freebsd.org": [6120], "edlund.dk": [5088], "www.acm.org": [261], "partner.steampowered.com": [15450], "www.0xbadc0de.be": [7], "www.heathkit.com": [7278], "www.bw.com": [1584], "picnichealth.com": [12662], "fairwork.gov.au": [5633], "www.aolcdn.com": [322], "efinancialcareers.cn": [4910], "www.amnesty.at": [958], "komplett.no": [8970], "www.katasterportal.sk": [14972], "www.demonoid.pw": [4358], "www.lbhf.gov.uk": [9064], "static.zhihu.com": [18856], "www.redstate.com": [13663], "services.tineye.com": [16468], "images.offerpop.com": [11739], "*.storage.live.com": [9483], "www.bitlendingclub.com": [1934], "assets.alicdn.com": [805], "fav.me": [4422], "sandbox.bluesnap.com": [2136], "xgaming.com": [18513], "postimage.org": [19511], "www.titania.com": [16501], "unt.edu": [17269], "track.iconfinder.com": [7921], "*.openblox.org": [11924], "www.demonoid.ph": [4358], "www.pdftoword.com": [12237], "mobilshop.netcologne.de": [11188], "static.plymedia.com": [12270], "api.fortiguard.com": [6055], "optionsanimal.com": [12076], "apps.mhf.dod.mil": [17028], "remotedesktop.web.cern.ch": [2575], "wiki.gsi.de": [6389], "chartbeat.com": [3018], "councillors.herefordshire.gov.uk": [7327], "strem.io": [15522], "vmkfb.tdconline.se": [15799], "altera.com": [876], "netvibes.com": [11257], "es.internetessentials.com": [19300], "www.stanfordmed.org": [15387], "www.zynga.com": [18933], "rcm-images.amazon.com": [910], "info.ceneo.pl": [2935], "mkk.com.tr": [9754], "www.wantful.com": [17974], "*.doubleclick.net": [4716], "megiteam.pl": [10234], "wiki.github.com": [6680], "www.transversal.com": [16684], "patrimoniocultural.unizar.es": [17356], "van.physics.illinois.edu": [17258], "api.qrserver.com": [13286], "www2.woolworthsonline.com.au": [18422], "domdex.com": [4667], "santanderbillpayment.co.uk": [14292], "www.srds.com": [14166], "free.hands.com": [7190], "cdn.zwame.pt": [18925], "linear.com": [9368], "www.nro.net": [11577], "www.discounttheatre.com": [4544], "v2c.lrz.de": [9238], "upware.comcast.com": [3461], "kolabnow.com": [8961], "uchicago.edu": [17246], "accuvant.com": [468], "www.yourvideofile.org": [18740], "www.nodes.dk": [11455], "passwordless.net": [19479], "static.x10hosting.com": [18498], "stadt-bremerhaven.de": [15367], "alianza.tv": [807], "media.apnaindia.com": [1096], "www.artedolar.com.br": [1227], "abenteuermako.tivi.de": [19800], "yoursupportservices.co.uk": [18732], "www.17track.net": [39], "de.indymedia.org": [8085], "precollegiate.stanford.edu": [15383], "bitbucket.com": [1926], "www.yieldlab.de": [18681], "www.syscoding.com": [15751], "img3.linuxdeepin.com": [4302], "www.healthystart.nhs.uk": [10913], "www.cis.vutbr.cz": [17522], "www.caisse-epargne.fr": [2721], "www.digitaltransactions.net": [4484], "book.invasion.com": [8310], "thingiverse.com": [16358], "api.yandex.com.tr": [18649], "gogoair.com": [6807], "law.cuny.edu": [3188], "secureassets.clickmotive.com": [3248], "rog.asus.com": [356, 357], "www.aphis.usda.gov": [17209], "metro.co.uk": [10320], "libguides.com": [9289], "www.bury.gov.uk": [19027], "plan.scambs.gov.uk": [19566], "www.glose.com": [6748], "www.submittable.com": [19636], "www.divshare.com": [19120], "www.edigitalsurvey.com": [4901], "m.contact.yandex.com.tr": [18649], "youtube.bg": [18709], "main.trafficfactory.biz": [16650], "cms.executive.mit.edu": [9749], "applications.cpanel.net": [2653], "www.threatpost.ru": [16396], "bouncycastle.org": [2247], "kabel.canaldigital.no": [2803], "www.master.yandex.com.tr": [18649], "www.rkn.gov.ru": [13913], "financing.dell.com": [4335], "www.msgme.com": [19413], "www.mcafeesecure.com": [10116], "prelaunch.techxpress.net": [16022], "illustre.ch": [19283], "static.flattr.net": [5910], "www.cryptome.info": [3879], "ewebcart.com": [19170], "nos.pt": [11512], "www.linode.com": [9387], "www.servercow.de": [14612], "elements.yandex.com.tr": [18649], "jp.fujitsu.com": [6245], "*.lippu.fi": [9440], "chl.it": [2598], "islington.greenparty.org.uk": [6925], "www.puppetlabs.com": [13232], "www.myricom.com": [10843], "u.thebrighttag.com": [2325], "data.mcc.gov": [19388], "docs.ocaml.org": [11612], "learn.flexport.com": [5915], "www.domainsbyproxy.com": [4664], "veronikamaine.com.au": [17631], "sec-s.uicdn.com": [16957], "flocabulary.com": [5935], "wiki.mediatemple.net": [10165], "www.pro-managed.com": [13107], "*.tmimgcdn.com": [16106], "phonebook.cern.ch": [2575], "www.acoustics.org": [477], "ittraining.iu.edu": [8064], "www.sedo.fr": [14544], "help.iwantmyname.com": [19313], "hbbtv.ndr.de": [11119], "familie-redlich.de": [5644], "*.wufoo.com": [18481], "www.fsfe.org": [5601], "www.gowalker.org": [6798], "www.startovac.cz": [19624], "img3.wakelet.com": [17953], "doc.rust-lang.org": [14047], "support.sensiolabs.com": [14586], "www.lourdas.name": [9624], "ctd2.nci.nih.gov": [11052], "gobi.krystal.co.uk": [9024], "browseraddon.com": [2373], "rss.imensa.de": [7988], "*.lttng.org": [9106], "benchmarkjs.com": [18990], "chat.otalk.im": [12130], "saml.uvt.nl": [16445], "oskicatp.berkeley.edu": [17240], "onsiteconcierge.com": [13392], "globalsign.com.*": [6718], "secure.aclu.org": [256], "dmtracking.1688.com": [36], "www.vikingvpn.com": [17711], "blog.oneplus.net": [11841], "salesmanago.pl": [14069], "hosted-oswa.org": [7521], "outcampaign.org": [12149], "www.arpxs.com": [1209], "cmpxchg8b.com": [2628], "fegp.unizar.es": [17356], "bookacourse.com": [2200], "blogs.gartner.com": [6463], "passport.weibo.com": [18187], "parrable.com": [12408], "*.onescreen.com": [11842], "sprint.com": [15314], "www.transmode.com": [16678], "stallman.org": [15373], "diogomonica.com": [4521], "www.eleves.ens.fr": [4930], "gnuheter.com": [12767], "www.daringfireball.net": [4147], "www2.nationalreview.com": [11073], "www.thezaplab.com": [18790], "patchwork.netfilter.org": [11225], "federatedinvestors.com": [5721], "www.us-ignite.org": [17020], "jobsuche-hochschulanzeiger.fazjob.net": [5554], "itaobao.taobao.com": [15952], "*.compiz.org": [3522], "www.law.stanford.edu": [15383], "www.cloudafrica.net": [3281], "geany.org": [6483], "*.elitepartner.de": [5168], "flavors.me": [5912], "www.kongregate.com": [8977], "ads.okcimg.com": [11771], "www.freenode.org": [19196], "www.dynu.com": [4836], "r-sec.casalemedia.com": [2870], "epson.com.mx": [5330], "*.trafficholder.com": [16646], "observatorioigualdad.unizar.es": [17356], "www.billetnet.dk": [16421], "partner.yandex.com": [18651], "www.elastic.co": [5142], "piwik-short.web.cern.ch": [2575], "appleid.apple.com": [1120], "gpc.wustl.edu": [17993], "mycontactual.com": [3609], "imail.iu.edu": [8064], "bullockinc.com": [2422], "sesame.cnrs.fr": [6195], "olinblog.wustl.edu": [17992], "gfx2.aftonbladet-cdn.se": [715], "lunarmods.com": [569], "www.coophotellkupp.com": [3646], "www.shaw.ca": [14687], "imfreedom.org": [8183], "*.gravatar.com": [6899], "crm.newint.org": [11297], "web3.cc.ntu.edu.tw": [10971], "hunchlab.com": [7618], "sharethenetwork.com": [14670], "res-1.cloudinary.com": [3307], "northdevontheatres.org.uk": [11495], "www.ars.usda.gov": [17039], "clearxchange.com": [3232], "nebelwelt.net": [11125], "www.ntid.rit.edu": [13434], "uva.nl": [17458], "themeroller.jquerymobile.com": [8452], "www.lrcd.com": [9642], "www.origin.com": [12106], "www.urbanvilla.nl": [17409], "postel.it": [12967], "apps2.cardiff.gov.uk": [19039], "forum.x-cart.com": [18494], "sonystyle.com.mx": [15150], "forum.1und1.de": [68], "fdc.freescale.com": [6183], "www.kbit.dk": [8712], "oumedicine.staywellsolutionsonline.com": [12140], "adtmag.com": [273], "focusonlearningcenter.com": [5976], "wiki.sequanux.org": [14591], "web.extension.illinois.edu": [17258], "mail.wusm.wustl.edu": [17993], "nasuni.com": [11040], "governmentattic.org": [6872], "freshbsd.org": [6200], "staged-by.rubiconproject.com": [14014], "brightoncollectibles.com": [2331], "www.pastebin.com": [12443], "sirket.yandex.com.tr": [18649], "registrar.wustl.edu": [17993], "www.couponcabin.com": [3711], "connect.cryptoseal.com": [3864], "www.box.osu.edu": [11760], "b-ssl.grvcdn.com": [6989], "www.offerpop.com": [11739], "www.mydatapipe.com": [10803], "ad-stir.com": [513], "engelsystem.de": [5264], "netkompakt-fuer-mitarbeiter.netcologne.de": [11188], "compaq.com": [3510], "toc.taleo.net": [15922], "sso.kabelmail.de": [8760], "start.vendoservices.com": [17606], "your.hispeed.ch": [19716], "freecode.com": [6161], "forecast.io": [6023], "m.regalii.com": [13727], "upphandling24.idg.se": [7705], "static.ziffdavis.com": [18860], "www.stlbeacon.org": [15355], "vdrn.redplum.com": [13662], "form.digikey.com": [4469], "ethos-os.org": [5386], "www.stellaservice.com": [14190], "xue.taobao.com": [15952], "i.alicdn.com": [805], "ctaxdd.cardiff.gov.uk": [19039], "*.movim.eu": [10644], "braunschweig.de": [2291], "static-hp-eus.s-msn.com": [14059], "media.gta.arch.ethz.ch": [4975], "wrd.cm": [18363], "afcd.gov.hk": [7074], "rlv.zcache.com": [18805], "www.coincheck.jp": [3403], "cdn2.xvideosx.tv": [18537], "cs.soe.ucsc.edu": [17305], "servicesonline.opm.gov": [11654], "id.tmtm.ru": [15837], "www.nakedcitizens.eu": [11013], "e-citations.ethbib.ethz.ch": [4975], "www.prettylittlething.com": [13042], "www.icommons.org": [7700], "www.fotopigeon.com": [6074], "*.kariera.gr": [8796], "brooksidefund.com": [2364], "appengine.google.com": [6834], "trac.xiph.org": [18575], "images.shazam.com": [14689], "careers.usc.edu": [17278], "hwb.birmingham.gov.uk": [19000], "blogs.kennedy-center.org": [19335], "*.unblocked.li": [17151], "pipedot.org": [12700], "www.southbankcentre.co.uk": [15192], "www.rotherham.gov.uk": [13979], "jenkins.osmand.net": [12124], "sw.ro.vutbr.cz": [17522], "nowwhere.com.au": [19443], "bmdw.org": [1529], "cadsoft.de": [2711], "company.yandex.com.tr": [18649], "undergradresearch.wustl.edu": [17993], "justin.tv": [16888], "www.morningstaronline.co.uk": [10594], "releases.qt-project.org": [13314], "www.fraedom.com": [19193], "www.webassign.net": [18054], "www.hitfarm.com": [7425], "vagrantcloud.com": [17528], "www.dreamsolution.nl": [4753], "leeds.ac.uk": [17318], "solarbotics.com": [15111], "*.davidsontutoring.com": [4229], "www.reformgovernmentsurveillance.com": [13720], "resources.4tulemar.com": [155], "www.truste.com": [15856], "www.brooksidefund.com": [2364], "screenshots.tbspace.de": [19662], "*.met.vgwort.de": [17483], "www.searchnetworking.de": [16018], "pcvlab.engineering.osu.edu": [11760], "damnsmalllinux.org": [4129], "share.servicenow.com": [14622], "louisville.edu": [17320], "www.amazon.it": [917], "pcicomplianthosting.com": [12535], "assets.area17.com": [1179], "torreycommerce.net": [16592], "www.fms.treas.gov": [17059], "www.nationalgrid.com": [11081], "support.coinbase.com": [3402], "azure.microsoft.com": [10364], "www.billboard.com": [1879], "redbox.com": [13681], "kirlism.ga": [19338], "www.petsathome.com": [12601], "www.zwijndrecht.nl": [11132], "amazon.co.jp": [918], "api.yubico.com": [18745], "*.gtk-apps.org": [19462], "www.smashfly.com": [15002], "kan.taobao.com": [15952], "www.zefflin.com": [18811], "api.btnapps.net": [2354], "www.anirena.com": [1021], "medicina.unizar.es": [17356], "sugarlabs.org": [15581], "web.pirateleaks.cz": [12705], "assets.devsbuild.it": [4432], "periscope.tv": [12573], "partners.pricegrabber.com": [13052], "city.yandex.by": [18648], "cloudera.com": [3302], "partners.blackberry.com": [2050], "smetrics.barclays.co.uk": [1662], "fsdata.se": [5605], "www.nfc.usda.gov": [17209], "jira.onosproject.org": [11649], "btn.createsend1.com": [3774], "www.mirc.com": [9746], "psi.oasis-open.org": [11605], "listserv.opm.gov": [11654], "tuan.jd.com": [8423], "www.prettyeasyprivacy.com": [12502], "stripecdn.com": [15526], "www.savvyhawk.com": [14317], "chime.in": [3080], "www.canon.lt": [2809], "www.canon.lu": [2809], "www.canon.lv": [2809], "sescoops.com": [14104], "www.watermarquee.com": [18000], "www.leadertech.com": [9199], "www4.labcorp.com": [9122], "store.boingboing.net": [2181], "*.static.flickr.com": [5918], "www.xplr.com": [18586], "agenda.weforum.org": [17902], "licensing.warrington.gov.uk": [17984], "www.addy.co": [579], "alcatel-lucent.com": [782], "hexspoorwms.nl": [7383], "stage.satoshilabs.com": [19564], "www.leastauthority.com": [9216], "www.plex.tv": [12814], "*.ic-live.com": [7907], "customcare.fender.com": [5748], "www.blackpearlpdm.com": [2039], "audioprointernational.com": [8226], "prometheus-group.com": [13150], "*.messagingengine.com": [10291], "www.apan.org": [329], "capitaller.ru": [2820], "ctf.thechildrensmutual.co.uk": [3075], "www.mutualofamerica.com": [10733], "differencebetween.net": [4462], "*.certifiedsecure.com": [2970], "www.grassroots.org": [6895], "downloadverse.com": [4726], "img.secureserver.net": [14511], "itunesu.itunes.apple.com": [1120], "app-uk1.resrc.it": [13599], "ceaa.osu.edu": [11760], "*.physicalsecurity.ucsc.edu": [17304], "www.prod.facebook.com": [5620], "mla.stanford.edu": [15383], "gearlab.osu.edu": [11760], "micro.seas.harvard.edu": [7219], "www.study.cam.ac.uk": [2763], "www.coindaddy.io": [3393], "*.livestrong.com": [9502], "online.uen.org": [17452], "videoplaza.tv": [17698], "www.gwent.police.uk": [7033], "joinup.ec.europa.eu": [5421], "www.landofbitcoin.com": [9139], "eais.rkn.gov.ru": [13913], "*.offeredby.net": [12388], "www.changemakers.com": [2996], "*.autotrader.com": [1419], "spiceworks.com": [15266], "openssl.org": [11970], "understood.org": [17159], "www.major.io": [9900], "meta.tagesschau.de": [19656], "s25.cnzz.com": [3331], "www.embeddedanalytics.com": [5199], "licai.jd.com": [8423], "baztab.net": [1709], "colm.net": [3434], "bookmyname.com": [2199], "*.scanadu.com": [14333], "heg.co.uk": [7502], "superantispyware.com": [15612], "infocenter.stanford.edu": [15383], "*.redbullmobile.com": [13670], "intranet.soe.ucsc.edu": [17305], "git-scm.com": [6673], "voipuserportal.co.uk": [5290], "www.ivdopia.com": [17582], "*.ahm.com.au": [737], "netistrar.com": [11237], "filepost.com": [5793], "*.glamorousuk.com": [6698], "events.networkworld.com": [11266], "babytalk.stanford.edu": [15383], "nesea.org": [10900], "*.us0.cloud.oracle.com": [12082], "subscription.timeinc.com": [16460], "www.plusme.net": [12831, 12832], "mutelight.org": [10728], "www.noo.org.uk": [10944], "societyforscience.org": [15078], "www.data.nasa.gov": [10869], "quickstarts.asp.net": [353], "jobs.douban.com": [4707], "www.card.wustl.edu": [17993], "secure.inertianetworks.com": [8086], "www.mitpressjournals.org": [9750], "*.ad4game.com": [514], "teach-ats.ed.gov": [4889], "blog.codinghorror.com": [3385], "honda.engineering.osu.edu": [11760], "extranet.wienernetze.at": [18284], "www.mailoo.org": [9888], "form.percona.com": [12557], "forum.stanford.edu": [15383], "forum.security-portal.cz": [14520], "xemail.de": [18555], "layout.web.cern.ch": [2575], "aliqin.tmall.com": [19684], "burstmedia.co.uk": [2446], "crypto.is": [3853], "tiltedwindmillpress.com": [16449], "*.skch.me": [14900], "www.camsis.cam.ac.uk": [17243], "apps.ncl.ac.uk": [10884], "blog.library.leeds.ac.uk": [17318], "media.economist.com": [5060], "crackedconsole.com": [3751], "press.ci.uchicago.edu": [17245], "download.jitsi.org": [8583], "logilab.org": [9558], "jquery.org": [8450], "karelia.rt.ru": [13469], "a5.twimg.com": [16877], "freifunk-karlsruhe.de": [6191], "wellcomelibrary.org": [19753], "wac.edgecastcdn.net": [5079], "*.visualwebsiteoptimizer.com": [17783], "chronixradio.com": [3120], "sedonaaz.gov": [3185], "www.paypal.co.uk": [12467], "sikkerhed.tdc.dk": [15796], "oneonline.devon.gov.uk": [4428], "*.universalsubtitles.org": [17227], "secure.interq.or.jp": [8232], "www.carmen.osu.edu": [11760], "www.superrepo.org": [15616], "powertothepooch.com": [12997], "jezykpolski.istockphoto.com": [19309], "www.annotum.org": [18428], "publishers.quinstreet.com": [13366], "www.grad.stonybrook.edu": [15480], "newscenter.lbl.gov": [9065], "track.tagesanzeiger.ch": [15908], "image-maps.com": [7976], "docs.sonatype.com": [15132], "api.del.icio.us": [7920], "ittprovider.education.gov.uk": [19149], "www.investorsinpeople.co.uk": [8322], "wiki.maemo.org": [9844], "aspsys.com": [1274], "lovemoney.com": [9631], "www.lob.com": [9533], "www.deepin.com": [4302], "www.desjardins.com": [4391], "www.ethoscustombrands.com": [5387], "*.handbrake.fr": [7185], "pcmd.ac.uk": [12536], "software.cisco.com": [3162], "www.splashdata.com": [15280], "threat2alert.com": [16391], "*.sodahead.com": [15083], "dialogs.com": [4443], "www.watford.gov.uk": [19747], "apps.unhosted.org": [17164], "hhcdn.ru": [7063], "proultratrim.com": [13117], "advertising.yandex.by": [18648], "forum.kasperskyclub.ru": [8809], "static.sehirfirsati.com": [14562], "lms.uibk.ac.at": [19710], "naacp.org": [10861], "fodevarewatch.dk": [5977], "ftp-master.metadata.debian.org": [4274], "*.on-disk.com": [11806], "telekom.de": [4410], "myvarian.com": [10796], "veloplus.ch": [19732], "f5networks.co.uk": [5545], "bcourses.berkeley.edu": [17240], "cache-uat.freescale.com": [6183], "login.softwareplanner.com": [14986], "www.greatfire.org": [6907], "marketingresearch.org": [10013], "adhocracy.de": [587], "2k.com": [86], "openshift.com": [11973], "indico.dns-oarc.net": [4059], "blocketsannonswebb.se": [2095], "www.unity.com": [17220], "connect.tape.tv": [15956], "help.nametiles.co": [11027], "bandcamp.com": [1638], "veber.co.uk": [17585], "evoice.co.uk": [4987], "onesolution.cz": [11647], "out-law.com": [12146], "mail.sedoholding.com": [14545], "portadi.com": [12934], "portal.fsisac.com": [5606], "autodiscover.bassetlaw.gov.uk": [1688], "my.ncl.ac.uk": [10884], "www.wizbangblog.com": [18388], "www.recombu.com": [13648], "leaderlandnews.com": [9200], "maximintegrated.com": [10096], "autodiscover.hinxton.wellcome.ac.uk": [19752], "uninett.no": [17192], "consult.bracknell-forest.gov.uk": [19016], "cas.nebezi.cz": [11126], "4gamer.net": [160], "webmail.fruct.org": [5595], "www.argeweb.nl": [1181], "culi.org": [2950], "kasserver.com": [8706], "*.ordnancesurvey.co.uk": [12097], "blog.outbrain.com": [12150], "vaden.stanford.edu": [15382], "*.domainrendelo.hu": [4665], "ghostnoteapp.com": [6632], "ebankingabersicher.ch": [4870], "otr.cypherpunks.ca": [11734], "bucketlistly.com": [2385], "stipendium.vutbr.cz": [17522], "www.holtwick.it": [7460], "smarthome.jd.com": [8423], "*.igniterealtime.org": [7952], "i.taobao.com": [15952], "games.mail.ru": [9874], "munich2012.drupal.org": [4780], "vforms.ryedale.gov.uk": [14055], "cronius.nl": [3809], "cs.cornell.edu": [3676], "community.centminmod.com": [2953], "www.openmamba.org": [19465], "encryptallthethings.net": [5236], "registrar.cornell.edu": [3676], "www.nettitude.co.uk": [11253], "www.rockpapershotgun.com": [13937], "community.cisecurity.org": [2617], "www.edarabia.com": [5072], "blog.refeds.org": [13413], "blog.quantopian.com": [13340], "www.bigchangeuk.co.uk": [1851], "scap-on-apple.macosforge.org": [9820], "nature.cnr.berkeley.edu": [17240], "code.flickr.net": [5917], "www.chipworks.com": [3089], "git.csx.cam.ac.uk": [17243], "p18.qhimg.com": [13302], "www.lotame.com": [9613], "www.ny.curbed.com": [3926], "youtube.kr": [18709], "*.weatherzone.com.au": [18037], "courtesan.com": [6897], "zcarot.com": [18755], "it.norton.com": [11505], "members.worlddab.org": [18448], "en.community.dell.com": [4335], "maps.googleapis.com": [6841], "gosi.gov.sa": [14306], "id.apple.com": [1120], "www.gamesonly.at": [6436], "www.zuerich.ch": [19805], "post.dessaly.com": [4395], "xine-project.org": [18573], "unwantedwitness.or.ug": [17375], "roleplaychat.org": [13955], "svn.openezx.org": [11935], "www.micampuscompact.org": [10344], "cs.segpay.com": [14556], "*.ted.com": [15806], "downloads10.mamp.info": [19379], "sensic.net": [11581], "*.liftdna.com": [9339], "www.ciscoconnectcloud.com": [3163], "appsto.re": [1136], "tinyapps.org": [16486], "scipy.org": [14374], "www.tv.yandex.kz": [18652], "www.mynortonaccount.com": [11505], "d2jsp.org": [3997], "costprojections.cancer.gov": [2805], "*.pixfuture.net": [12734], "www01.extra.americanexpress.com": [935], "gistest.gloucestershire.gov.uk": [6749], "wabi.com": [17938], "www.ldscdn.org": [16219], "mantisbt.org": [19383], "boxcar.io": [2257], "www.exchangewire.com": [5485], "www.wigglestatic.com": [18287], "www.phone.coop": [12635], "westmercia.police.uk": [18207], "themes.piwik.org": [12733], "i1.daumcdn.net": [4220], "enpt.dict.cc": [4455], "www.wagner.edu": [17947], "www.wikivs.com": [18299], "bugs.alpinelinux.org": [869], "jeena.net": [8543], "www.tr0n.net": [16625], "www.firefox.net.cn": [5860], "blog.exacttarget.com": [5477], "education.magix.com": [9708], "rtems.org": [13472], "studentservicescenter.stanford.edu": [15383], "nmfc.osu.edu": [11760], "syslab.cs.washington.edu": [17291], "media.220volt.hu": [72], "www.kivikakk.ee": [19339], "i02.c.aliimg.com": [813], "partnersignup.register.com": [13732], "www.kasperskyclub.ru": [8809], "www.kapiton.se": [8789], "ausgovboards.gov.au": [1393], "royalmail.com": [14000], "iea.org": [8265], "fr.redhat.com": [13675], "*.aeriastatic.com": [686], "operatingsystems.io": [12051], "www.northnorfolk.org": [11497], "donate.fftfef.org": [5766], "tmdb.org": [15829], "rottnestfastferries.com.au": [13984], "news.spotify.com": [15296], "insa-lyon.fr": [7771], "service.xbox.com": [18550], "76.9.16.34": [16646], "plone.lucidsolutions.co.nz": [9644], "*.test-ipv6.cz": [16144], "www.nodejsmodules.org": [11449], "www.nber.org": [11077], "www.inf.uni-hamburg.de": [16951], "*.ebid.net": [19133], "static.ak.facebook.com": [5620], "beta.gismeteo.ru": [6669], "nrenservices.geant.net": [6313], "mtsystems.ch": [10680], "srds.com": [14166], "3dstats.com": [123], "ada.osu.edu": [11760], "www.zarafa.com": [18795], "s.tmocache.com": [15836], "www.pdcnet.org": [12626], "t.umblr.com": [19713], "hrsystems.admin.cam.ac.uk": [17243], "www.tigr.net": [16442], "*.moneybookers.com": [10550], "www.sugarcrm.com": [15582], "hits.theguardian.com": [16288], "www.dizaineriai.lt": [4588], "www.mullet.se": [10693], "images.g.switchadhub.com": [15701], "hostit.hu": [7536], "www.webinspector.com": [18040], "app.uclinics.com": [16945], "p0.focus.de": [5974], "cdn.images.dailystar-uk.co.uk": [4112], "tubbergen.nl": [11132], "www.lntecc.com": [9092], "entsupport.symantec.com": [15715], "*.tintup.com": [16477], "catalog.umd.edu": [17263], "teapartypatriots.org": [15992], "www.toshiba.co.jp": [16597], "www.gnomefiles.org": [19461], "hbbtv.org": [7252], "www.harrow.io": [7213], "static2.symanteccloud.com": [15715], "images.1sfx.net": [11842], "*.aan.com": [936], "vayable.com": [17577], "www.omnigroup.com": [11793], "track.netshelter.net": [11208], "focuscamera.com": [5975], "x.ai": [19780], "www.mytritonlink.ucsd.edu": [16939], "piwik.pso-vertrieb.de": [13186], "*.dt00.net": [9739], "www.spice-space.org": [15264], "intranet.slac.stanford.edu": [15383], "*.adscale.de": [626], "login.barracuda.com": [1680], "za.norton.com": [11505], "webapps.brown.edu": [2367], "www.resortquestsecure.com": [18490], "www.streetmoda.com": [15521], "mercurial-scm.org": [10279], "treehousei.com": [16706], "cia.vc": [3131], "micropartsusa.com": [10358], "formalyzer.com": [16630], "gekko.spiceworks.com": [15266], "gemcutter.org": [14021], "www.medipreis.de": [10142], "mysitemyway.com": [10845], "lcamtuf.blogspot.com.*": [2113], "gmx.li": [6350], "gmx.lu": [6350], "iamplify.com": [7672], "aiswiki.wustl.edu": [17993], "rs.aol.co.uk": [320], "xiscosoft.com": [18576], "analytics.pirateparty.org.au": [12713], "*.terresoubliees.com": [16131], "www.metasploit.com": [10310], "en-sq.dict.cc": [4455], "subsurface.hohndel.org": [3503], "dnainfo.com": [19121], "stuvel.eu": [15549], "piwik.heanet.ie": [7269], "www.securityevaluators.com": [14527], "my.avast.com": [1444], "i2.social.s-msft.com": [14058], "s.flipboard.com": [5925], "onlineservice.netcologne.de": [11188], "www.ewellnessmag.com": [4992], "static.ssl7.net": [14496], "*.dp.yieldmanager.net": [13881], "thejh.net": [8512], "svn.xiph.org": [18575], "*.cloudera.com": [3302], "haaksbergen.nl": [11132], "www.segpay.com": [14556], "blog.profitbricks.com": [13129], "api.mailigen.com": [9886], "upplandsvasby.se": [17396], "icukhosting.co.uk": [7694], "azingsport.se": [1482], "prepayparking.surreyheath.gov.uk": [19641], "*.sidearmsports.com": [14763], "webcenter.tiscali.it": [16498], "www.wpsoftware.net": [17925], "st.web.cern.ch": [2575], "reddpics.com": [13688, 13689], "p.iivt.com": [12420], "i2.iis.net": [7741], "leadershipacademy.nhs.uk": [10913], "www.condor.com": [3561], "igd.fraunhofer.de": [6112], "covacations.com": [3619], "www.mincommsy.uni-hamburg.de": [9744], "solarlist.com": [15110], "*.appspot.com": [6850], "autodiscover.somerset.gov.uk": [15127], "merchants.groupon.com": [6974], "www.live.com": [9483], "trust-center.verisign.dk": [17623], "directory.ua.edu": [16924], "support.csbs.utah.edu": [17288], "securedcontent.net": [14501], "secure.marvel.com": [10038], "*.vacenza.com": [17527], "*.sunrise.ch": [15603], "www.podcasts.it.ox.ac.uk": [17271], "digitalmedia.hhs.gov": [7062], "allybank.com": [865], "*.npario.com": [10952], "people.csail.mit.edu": [9749], "pornhublive.com": [12927], "up.nytimes.com": [11000], "www.rt.isy.liu.se": [9084], "gcloud.civilservice.gov.uk": [19066], "support.euro.dell.com": [4335], "resources.bazaarvoice.com": [1708], "www.tropo.com": [16760], "*.static.img-dpreview.com": [4497], "developer.rackspace.com": [13506], "*.terena.org": [16121], "stayfriends.ch": [15444], "chat.livechatinc.net": [9485], "pogoda.yandex.kz": [18652], "www.arisebitcoin.com": [1193], "burstmedia.com": [2446], "advancement.osu.edu": [11760], "gallery.lugons.org": [9108], "landaire.net": [19347], "coopzeitung.ch": [3645], "quikcallus.com": [13364], "cacert.com": [2520], "cx.hinckley-bosworth.gov.uk": [7412], "time.yandex.com.ua": [18650], "www.smi2.net": [15005], "dotomi.com": [4702], "eshop.asus.com": [357], "simplesharebuttons.com": [14824], "tinyjpg.com": [16481], "www.bitcoinshop.us": [1970], "store.griffintechnology.com": [6954], "www.teac.co.jp": [15804], "kitepackaging.co.uk": [8923], "*.misco.co.uk": [10452], "edu.exmail.qq.com": [13285], "nic.es": [4673], "www.finansportalen.no": [5830], "raeng.org.uk": [13991], "www.degreeaudit.osu.edu": [11760], "cdn.openculture.com": [12006], "cpan.metacpan.org": [10297], "invention.nasa.gov": [10869], "www.xmos.com": [18523], "www.hizliresim.com": [7433], "checksconnect.com": [7207], "mechanical.illinois.edu": [17258], "m.treasury.gov": [16704], "idn.serveriai.lt": [14616], "opennet.net": [11962], "info.veracode.com": [17614], "extranets.pinsentmasons.com": [12697], "bitcoin.org": [1930], "m.webmail.earthlink.net": [5007], "trauer.de": [16689], "bravelyonward.com": [2293], "git.nlnetlabs.nl": [10941], "www.brainbench.com": [2266], "op-webtools.web.cern.ch": [2575], "fs.liu.se": [9084], "th.itradecimb.com.sg": [2607], "id.socialreader.com": [15066], "supporterservices.amnesty.org.nz": [967], "*.steganos.com": [15462], "bostonglobemedia.com": [2234], "bs.serving-sys.com": [14628], "caringcommunity.cornell.edu": [3676], "www.exposingtheinvisible.org": [5514], "www.feedmyinbox.com": [5739], "www.docracy.com": [4620], "slfacilities.osu.edu": [11760], "torrentfunk.com": [16581], "www.youtube.com.kw": [18709], "ssae.symantec.com": [15715], "coolcart.net": [3637], "www.math.uni-heidelberg.de": [17174], "entropay.com": [5300], "my.aerofs.com": [688], "reg.jd.com": [8423], "pfsense.org": [12607], "bip.panoptykon.org": [12365], "www.pin1.harvard.edu": [7219], "www.jrrt.org.uk": [8633], "eyefilm.nl": [4998], "www.wrapbootstrap.com": [18471], "pw.cdn.gmru.net": [6349], "microchip.com": [10353], "*.lessthan3.com": [9259], "www.shared.sx": [14672], "pplwssvcs.lowes.com": [9636], "ads.contentabc.com": [3612], "templates.prediction.io": [13023], "animenewsnetwork.com": [18957], "mail.his.com": [7293], "lingue.de": [9373], "api.embed.ly": [5197], "www.digikey.com": [4469], "cbu01.alicdn.com": [805], "boss429.deathmask.net": [4266], "causes.presscdn.com": [2909], "static.bluejeans.com": [2139], "www.southampton.gov.uk": [15191], "cryptorave.org": [3862], "www.citizenfourfilm.com": [3174], "cdn1.ustream.tv": [17450], "www.alpinelinux.org": [869], "*.chaosreigns.com": [3006], "dacorum.greenparty.org.uk": [6925], "www.kargo.com": [8795], "techwebonlineevents.com": [16021], "efesto.eigenlab.org": [19151], "newsregistry.com": [11323], "*.stubhubstatic.com": [15534], "tilestream.ecc-platform.org": [4879], "www.bo.infn.it": [7766], "discovery.illinois.edu": [17258], "growthhackers.com": [6984], "www.portaldocidadao.pt": [6873], "*.where2getit.com": [18239], "*.binefreund.de": [5937], "www.soic.indiana.edu": [8065], "git.x2go.org": [18499], "www.cloudscaling.com": [3314], "cdn.ghacks.net": [6328], "team.websitealive.com": [18149], "*.tripit.com": [16743], "program-think.blogspot.co.*": [2113], "www.communicatelive.co.uk": [3499], "aurel32.debian.net": [4273], "www.guildmc.com": [7012], "mork.mo": [10593], "xiscosoft.com.es": [18576], "pensionscoach.cash.ch": [19043], "www.dig.domains": [4465], "www.votewatch.eu": [17846], "forums.playwarz.com": [17975], "fsadownload.ed.gov": [4889], "austrian.com": [1406], "images.journals.lww.com": [9439], "success.adobe.com": [615], "info.web.de": [18050], "bundeskanzlerin.de": [2428], "cs.washington.edu": [17291], "us-business.kaspersky.com": [8806], "*.myregisteredsite.com": [10842], "status.acast.com": [18935], "www.laynepublications.com": [9183], "www.kevinajacobs.com": [8863], "people.fedoraproject.org": [5726], "www.bls.ch": [1526], "sandbox.gogetssl.com": [6780], "enterprisersproject.com": [5293], "uploads.www.gigya.com": [6659], "jochen-hoenicke.de": [8605], "www.diningservices.wustl.edu": [17993], "metrics.skype.com": [14938], "23andme.com": [74], "rewardz.vodafone.co.uk": [17813], "cacheserve.williamhill.com": [18315], "www.ssldecoder.org": [14179], "my.greenqloud.com": [6919], "hexchat.net": [19246], "www.modmyi.com": [10513], "hertzequip.com": [7372], "secimg.vmmpxl.com": [17806], "*.greensky.com": [6920], "www.mapquest.com": [9970], "reclaim-your-privacy.com": [13645], "mercury.ornl.gov": [11693], "www.pdfcrowd.com": [12500], "www.favu.vutbr.cz": [17522], "support.virginmedia.ie": [17738], "www.artsci.wustl.edu": [17993], "providence.voxmedia.com": [17852], "www.bemobile.ua": [1724], "regonlineportal.activenetwork.com": [501], "pagseguro.uol.com.br": [16998], "resinfo.org": [13807], "www.ar15.com": [337], "pamfax.biz": [12352], "www.fraunhofer.de": [6112], "demandbase.demandbase.com": [4342], "vdi-wissensforum.de": [17476], "shop.esetnod32.ru": [4956], "www.schoeller.de": [11170], "jointventure.apple.com": [1120], "i.kuonamaoni.com": [9039], "scontent.cdninstagram.com": [2558], "partnernet.amazon.de": [910], "www.craftcoffee.com": [3754], "www.linuxfr.org": [9410], "www.popularresistance.org": [12920], "*.popsugar-assets.com": [12910], "secure.esupport.com": [4972], "www.ift.ulaval.ca": [17229], "seagate.com": [14437], "lindtusa.com": [9366], "t.brand-server.com": [2278], "golfcourseindustry.com": [6822], "kasperskypartners.ru": [8811], "www.youtube.com.ee": [18709], "speed.twistedmatrix.com": [16885], "nia.nih.gov": [11052], "*.crowdtangle.com": [3822], "bconnected.berkeley.edu": [17240], "www.dailyinfo.co.uk": [4124], "go.mail.ru": [9874], "navigation.1and1.co.uk": [53], "www.askives.com": [1267], "www.ncjrs.gov": [10883], "npinsecure.cdc.gov": [19046], "www.npmjs.org": [11540], "thestranger.com": [16315], "www.tribot.org": [15858], "www.dzne.de": [6556], "anderson.leadershipacademy.nhs.uk": [10913], "webservices.stanford.edu": [15383], "www.oag.ca.gov": [2745], "www.homedepotfoundation.org": [7471], "bolagsverket.se": [2186], "img.dell.com": [4335], "s.bigmir.net": [1866], "www.gsnmagazine.com": [6870], "www.rstudio.com": [13467], "malegislature.gov": [9719], "sitepen.com": [14869], "app.convertkit.com": [3628], "amr.oracle.com": [12082], "*.radiowoodstock.com": [13517], "forums.mediatemple.net": [10165], "www.bodleian.ox.ac.uk": [17271], "archives.zataz.com": [18801], "koenrouwhorst.nl": [8955], "personal.vanguard.com": [19728], "mturk.com": [9805], "fafsalivehelp01.ed.gov": [4889], "*.commoncriteriaportal.org": [3490], "c1.popads.net": [12902], "email.seznam.cz": [14648], "master.odoo.com": [11727], "static.weibo.com": [18187], "recruit.zoho.com": [18884], "planetkde.org": [12768], "askleo.com": [1263], "www.webmail.earthlink.net": [5007], "amnesty.ie": [964], "m.ixit.cz": [7883], "deit.dict.cc": [4455], "outreach.osu.edu": [11675], "direct.tescoassets.com": [16135], "eclipse.org": [5049], "phgkb.cdc.gov": [19046], "*.mgid.com": [9739], "bat.bing.com": [1895], "licensing.symantec.com": [15715], "*.opentemplate.org": [19462], "www.ello.co": [5172], "join.app.net": [1102], "service.projectplacedocs.com": [13144], "javacoolsoftware.com": [8529], "www.nii.ac.jp": [10927], "admin2.mobile.de": [19403], "www.kuvalehdet.fi": [12131], "www.digitec.ch": [4508], "dps.usc.edu": [17278], "register.pearsoncmg.com": [12506], "openinventionnetwork.com": [11906], "www.inachinashop.com": [11625], "everyoneisgay.com": [5455], "mb.linuxlovers.at": [9432], "r.turn.com": [16840], "www.sptag1.com": [15323], "*.upxth.com": [17406], "www.ctunnel.com": [2687], "www.energiwatch.dk": [5252], "businesswales.gov.wales": [6860], "www.internet2.edu": [8279], "poliisi.fi": [12868], "www.oasis-open.org": [11606], "reformgovernmentsurveillance.com": [13720], "corp.kaltura.com": [8775], "www.cabletv.com": [2703], "monitor.spatialbuzz.com": [15230], "ag.ch": [19648], "www.dei.com.gr": [6915], "cohnreznick.com": [3389], "fr.rsf.org": [13784], "cronkitenewsonline.com": [3810], "www1.oculusvr.com": [11722], "www.readme.io": [13608], "www.3questionsgetthegirl.com": [17719], "cweb.axosoft.com": [1477], "*.frugalware.org": [6234], "developer.aimpulse.com": [743], "epocs.leeds.ac.uk": [17318], "*.unrestrict.li": [17367], "baifubao.baidu.com": [1619], "codethink.co.uk": [3381], "it-dep-redir.web.cern.ch": [2575], "www.wifipineapple.com": [18273], "www.intelfellowships.com": [8210], "www.cerberusapp.com": [2962], "*.roem.ru": [13946], "bms.edeka.de": [19147], "micron.com": [10357], "devalate.com": [19114], "donate.unhcr.org": [16989], "weather.yandex.com.tr": [18649], "www.accel-ppp.org": [18936], "shop.harman.com": [7208], "doctor.vutbr.cz": [17522], "www.spokane.wustl.edu": [17993], "websmithing.com": [18153], "www.spectrumbusinessinsights.com": [15250], "forums.cpanel.net": [2653], "www.fastmail.fm": [5688], "gwrymca.org": [7031], "www.qualcomm.com": [13328], "filterdigital.com": [5813], "www.grahamcluley.com": [6885], "www.logmeininc.com": [9550], "jcp.org": [8419], "mail.offline.ee": [11621], "*.compranoexterior.com.br": [3527], "mobile.hertz247.com": [7372], "credit-suisse.com": [3792], "www.neowin.net": [11158], "admin.mailigen.com": [9886], "rivieratours.com": [13909], "www.canon.com.cn": [2809], "vz-nrw.de": [17617], "www.ekmsecure6.co.uk": [5135], "www-cdn.jtvnw.net": [16888], "upay.co.uk": [17384], "launchpad.37signals.com": [118], "www.g2crowd.com": [6295], "www.mmonit.com": [9765], "js.recurly.com": [13652], "www.goldmann.pl": [6816], "server4.web-stat.com": [18047], "blog.arbornetworks.com": [1154], "www.host-tracker.com": [7503], "services.housing.berkeley.edu": [17240], "lab-nation.com": [9121], "*.dodspeople.com": [4631], "youtube.be": [18709], "adsupply.com": [544], "www.nextregister.com": [11361], "youtube.ba": [18709], "silkspan.com": [14795], "www.beginnertriathlete.com": [1754], "fontmarketplace.com": [5989], "code.randomhouse.com": [13543], "mitsloan.mit.edu": [9749], "www.frallc.com": [5592], "youtube.bh": [18709], "api.2k.com": [86], "www.shakespeare.osu.edu": [11760], "peerio.com": [12521], "board.carnegiescience.edu": [2857], "www.15mpedia.org": [33], "static.rasset.ie": [13571], "raw.githubusercontent.com": [6680], "www.zeuscat.com": [18853], "picoville.com": [12666], "blockscript.com": [2085], "debuginfo.clearlinux.org": [3233], "scro.stanford.edu": [15383], "zone-h.org": [18892], "www.mechse.illinois.edu": [17258], "exavault.com": [5474], "infonline.de": [7767], "community.speed-dreams.org": [15251], "www-cache2.extensis.com": [5523], "martus.org": [10035], "webmail.skynet.ie": [16210], "www.mutterschaftsgeld.de": [10730], "skillsmatter.com": [14908], "developers.digitalriver.com": [4483], "www.minilock.io": [10419], "partner.skylink.sk": [14937], "bitcasino.io": [1929], "events.openmrs.org": [11952], "messerfinancial.com": [10293], "www.flixbus.it": [5931], "wiki.deepin.org": [4302], "ck.juicyads.com": [8668], "*.instantservice.com": [359], "www.themesandco.com": [16341], "website-cdn.pico-app.com": [12663], "*.sptimes.com": [14159], "www.box-look.org": [19461], "ogr.uillinois.edu": [16960], "manage.dynect.net": [4835], "pacbsd.org": [12307], "w00tsec.blogspot.co.*": [2113], "contact.ofsted.gov.uk": [19456], "registrierung.springer-medizin.de": [15308], "accounts.itcs.umich.edu": [17266], "www.emergency.wustl.edu": [17993], "www.projectdent.com": [13137], "snackbox.microsoft.com": [10364], "goenergetix.com": [5251], "es.pornworms.com": [12928], "planet.collabora.co.uk": [3419], "groups.freecycle.org": [6162], "www.hertz.se": [7366], "mail.t-com.sk": [16088], "www.hertz.si": [7362], "stopbadware.org": [15489], "www.supermedia.com": [15615], "*.unigine.com": [17187], "sta.sh": [15356], "log.newsvine.com": [11348], "aneros.com": [1013], "member.myshaklee.com": [14656], "www.hootsuite.com": [7488], "www.livestrong.org": [9515], "malwaretech.net": [9927], "my.over-blog.com": [12156], "caisse-epargne.com": [2721], "mapraider.com": [9975], "b2btagmgr.azalead.com": [18977], "vitamindcouncil.org": [17793], "manufacturing.osu.edu": [11760], "selfservice.bassetlaw.gov.uk": [1688], "*.gameswelt.net": [6442], "typodun.unistra.fr": [17177], "tracking.codecoon.com": [3364], "reports.zoho.com": [18884], "eecs-search.eecs.mit.edu": [9749], "access.ripe.net": [13895], "www.obi.pl": [19452], "www.pictomania.com": [12668], "www.centrance.com": [2588], "www.andor.com": [999], "chat-place.org": [3028], "transformationmadeeasy.com": [16665], "pijnacker-nootdorp.nl": [11132], "macruby.org": [9822], "ceas.osu.edu": [11760], "www.cc.ntu.edu.tw": [10971], "www.s-pankki.fi": [14060], "www.trademoremargin.com": [16637], "qualcomm.com": [13328], "blog.bitex.la": [1993], "blog.pivotal.io": [12730], "www.evo.com": [5462], "payza.com": [12491], "dopplr.com": [4684], "hongbao.alipay.com": [817], "status.coinfloor.co.uk": [3404], "*.help.pinterest.com": [12699], "krautchan.net": [9006], "www.scriptmp3.com": [14425], "www.dishonored.com": [18829], "hornbach.at": [7496], "i.freeporngif.com": [6146], "www.mebank.com.au": [9736], "*.easily.co.uk": [5011], "dan.langille.org": [9145], "help.jd.com": [8422], "austiners.com": [1378], "www.efukt.com": [4914], "demand.rubiconproject.com": [14014], "316space.harralmedia.com": [2132], "hivos.org": [7431], "ace.advertising.com": [662], "kkk.com": [8931], "natoonline.org": [11047], "secure.westernunion.com": [18216], "www.indure.org": [7765], "secure.vispa.net.uk": [17780], "issues.jenkins-ci.org": [8551], "*.nationalgeographic.com": [11080], "api.eply.com": [4945], "www7.smartadserver.com": [14982], "www.kasperskycontenthub.com": [8812], "myersgroup.engineering.osu.edu": [11760], "guadec.org": [6397], "robohash.org": [13926], "counters.gigya.com": [6659], "www.thespartaninstitute.com": [15226], "*.nicekicks.com": [11383], "jobs.foreignpolicy.com": [6024], "c2.rgstatic.net": [13422], "webforms.merton.gov.uk": [10287], "whichmba.com": [18241], "www.ewebcart.com": [19170], "ecommerce.apple.com": [1120], "pmetrics.performancing.com": [12571], "www.my.commbank.com.au": [3477], "events.microsoft.com": [10364], "godaddymobile.com": [6774], "world.popadscdn.net": [12903], "*.vtiger.com": [17866], "camtools.cam.ac.uk": [17243], "m.toppreise.ch": [19688], "*.hcl.com": [7050], "www.visionairlines.com": [17773], "agresearchmag.ars.usda.gov": [17209], "pe.godaddy.com": [6773], "volksverschluesselung.sit.fraunhofer.de": [17829], "unidadcalidad.unizar.es": [17356], "aberdeencity.gov.uk": [410], "nyi.net": [10993], "www.adtmag.com": [273], "www.shopmimigreen.com": [14722], "salesforce.com": [14249], "www.gcentral.biz": [6292], "proxy2.switchadhub.com": [15701], "www.somed.bfs.admin.ch": [19648], "s.jwpltx.com": [9589], "*.longform.org": [9592], "svn.cru.fr": [3829], "www.wikileaksparty.org.au": [18295], "*.instartlogic.com": [8190], "www.stratechery.com": [15508], "costco.com": [3694], "iridiumbrowser.de": [8356], "ovs.acunetix.com": [507], "www.navteqmedia.com": [10873], "waverley.firmstep.com": [19182], "pcmedia.ign.com": [7730], "www.kdab.com": [8717], "evesys11.sstest.jp": [15350], "userbase.kde.org": [8718], "*.globalwitness.org": [6717], "mobile.greyhound.com": [6947], "conference2007.kde.org": [8718], "static5.uk.businessinsider.com": [2454], "www.lingue.de": [9373], "piratetimes.net": [12709], "ja.stackoverflow.com": [15359], "www.boldchat.com": [2187], "www.drugscience.org.uk": [4778], "smack.co.uk": [14977], "auth.greenqloud.com": [6919], "annefrank.thecthulhu.com": [16334], "www.holderdeord.no": [7449], "piwik.typo3.org": [15894], "gettested.cdc.gov": [19046], "jenkins.mni.thm.de": [15811], "p4.zdassets.com": [18806], "oraweb.slac.stanford.edu": [15383], "calderdale.objective.co.uk": [19454], "verlagsherstellung.de": [7114], "www.matildajaneplatinum.com": [10073], "thewebindex.org": [16322], "elsevierhealth.com.au": [5186], "www.markng.co.uk": [10006], "www.mp3skull.wtf": [9779], "www.freenode.net": [19196], "speech.leseweb.dk": [19616], "go.pl.bbelements.com": [1713], "account.smartertools.com": [14996], "konkurs.tms.pl": [19686], "www.paddleapi.com": [12324], "lenen.snsbank.nl": [14144], "www.disqus.com": [4570], "hostcentric.com": [7509], "my.vultr.com": [17873], "statistiky.cesky-hosting.cz": [19051], "feed.livingsocial.com": [9517], "www.heerenveen.nl": [11132], "docs.drupal.org": [4780], "platinum.ohiolink.edu": [11762], "zappos.com": [18792], "www.eclipso.ch": [5050], "partner.domaining.com": [4663], "miga.org": [8259], "a772.g.akamai.net": [1121], "www.enhancedsteam.com": [5273], "photos.aircrack-ng.org": [750], "www.mitsubishi.com": [10461], "www.k2s.cc": [8704], "altex.ro": [886], "www.clearlink.com": [3234], "store6.esellerate.net": [5357], "ativismo.org.br": [1315], "autistici.org": [1413], "reviewjournal.com": [9160], "founders.stanford.edu": [15383], "assayassured.co.uk": [1275], "www.nsf.gov": [11060], "tools3.cisco.com": [3162], "friendpaste.com": [6216], "*.bitdefender.com": [1988], "news.kde.org": [8718], "en-pl.dict.cc": [4455], "products.drweb.com": [4783], "de-ru.dict.cc": [4455], "email.kn.vutbr.cz": [17522], "documentfreedom.org": [4628], "www.iojs.org": [8338], "nublue.co.uk": [11560], "www.hipertextual.com": [19251], "paragonie.com": [12389], "fas.ohnward.com": [11767], "mcxnow.com": [10128], "pleaseignore.com": [12811], "font.thoughtbot.com": [16387], "usajobs.gov": [17030], "rtax.criteo.com": [3801], "lx1.dyncdn.cc": [4821], "distilleryimage5.instagram.com": [8182], "smarthide.com": [14989], "booking.wokingham.gov.uk": [19762], "professionalsecuritytesters.org": [13126], "www.zb45.nl": [18754], "cdn.recombu.com": [13648], "admin.webonic.hu": [18136], "www.deutschebahn.com": [4411], "fastshoppingcart.com": [13359], "www.auditorius.ru": [1362], "mrsmcnastys.com": [10676], "www.anz.co.nz": [18958], "entrust.net": [5304], "solidalert.com": [15118], "test-www.car.com": [2826], "www.atagar.com": [1309], "fbsql.pipni.cz": [12257], "produkte.web.de": [18050], "ohiolink.edu": [11762], "www.comparethemarket.com": [3511], "static.a-ads.com": [215], "wine-apps.org": [19461, 19462], "clientportal.heanet.ie": [7269], "www.nationalexpress.jobs": [11050], "www.1and1.com": [51], "agra-net.com": [733], "www.zonomi.com": [18897], "www.statichukd.com": [7549], "www.doteasy.com": [4701], "img3.tbcdn.cn": [15982], "rsrc2.psychologytoday.com": [13189], "luneta.nearbuysystems.com": [11121], "ugr.ucsc.edu": [17305], "www.laptop.hu": [9155], "necuhb.org": [11130], "my.post-gazette.com": [12728], "devuan.org": [4433], "gpadmissions.osu.edu": [11760], "www1.livenation.co.*": [9481], "www.techsupportalert.com": [16053], "cdn2.rsc.org.uk": [13457], "secure-media.victoriassecret.com": [17672], "necu.org": [11130], "partner.path.com": [12451], "gulli.com": [19232], "s.effectivemeasure.net": [5109], "hplusdigitalseries.com": [7092], "hacking.ventures": [7153], "uk.accessorize.com": [454], "wiki.phpmyadmin.net": [12651], "blogmaintenance.talktalkbusiness.co.uk": [15930], "jensge.org": [8553], "tr.cloudflare.com": [3285], "*.csis-scrs.gc.ca": [2802], "voicerepublic.com": [17822], "www.randomhouse.com": [13543], "store.canon.com.au": [19037], "admissions.peterborough.gov.uk": [12594], "www.c3tag.com": [2503], "secure.zt03.net": [18916], "aklamio.com": [767], "www.dcpower.eu": [4016], "www.recrute.parrot.com": [12410], "www.popsci.com": [12908, 12909], "www.elpueblo.com": [5138], "www.richardandjudy.co.uk": [13873], "dg50.mycdn.me": [10824], "blocket.com": [2093], "mobil.yandex.com.tr": [18649], "*.www.champssports.com": [2991], "engine.adsupply.com": [544], "servedby.advertising.com": [662], "autoconfig.yandex.com.tr": [18649], "www.drivestyle.co.uk": [4763], "pge.post-gazette.com": [12948], "www.easywallet.org": [5037], "blog.viglink.com": [17710], "www.ef.gy": [5106], "getsatisfaction.com": [6618], "www.dnsquery.org": [4063], "*.hospitality.swisscom.com": [15698], "profiles.tiki.org": [16444], "i0.rgstatic.net": [13422], "www.gdata.de": [6293], "www.princeton.edu": [13064], "www.freitag.de": [6194], "vufind.carli.illinois.edu": [17258], "www.hava.yandex.com.tr": [18649], "myfiles.yandex.com": [18651], "www.bobcares.com": [2172], "webdesign.stanford.edu": [15383], "form.taobao.com": [15952], "blog.kapsi.fi": [8791], "www.vanessatorrivilla.com": [7973], "www.elizabethsmartfoundation.org": [5169], "asdashboard.stanford.edu": [15383], "www.dn.dk": [4054], "shib.southdevon.ac.uk": [15188], "www.uptolike.com": [17382], "sustatic.com": [15544], "nva.org": [11098], "at.alicdn.com": [805], "filepicker.io": [5801], "www.pypa.io": [13265], "maxroam.com": [9717], "try.jd.com": [8423], "space2u.com": [15205], "www.centerlinebeta.net": [2951], "deutscher-radiopreis.de": [4413], "blog.gaborszathmari.me": [6402], "*.lovefilm.com": [9625], "security.cpanel.net": [2653], "www.kenexagovernmentsolutions.com": [8847], "gammagroup.com": [6448], "www.xato.net": [18545], "national-lottery.co.uk": [11071], "cdn3.outspark.com": [12154], "ww1.salford.gov.uk": [19562], "www.suckup.de": [15574], "www.postwire.com": [12984], "www.cykloteket.se": [3979], "www.satoshilabs.com": [19564], "m.hivos.org": [7431], "static02.vg.no": [17484], "fressnapf.de": [6207], "www.municode.com": [10705], "wefightcensorship.org": [18028], "forums.zoho.com": [18884], "communities.intel.com": [8209], "ms.urel.feec.vutbr.cz": [17522], "presenter.api.qbrick.com": [13300], "social.truelife.com": [16769], "zhonggongyc.taobao.com": [15952], "merchant.xsolla.com": [18593], "cdn.static.malwarebytes.org": [9929], "www.danblah.com": [4133, 4134], "flownative.com": [5947], "www.hertz.jo": [7353], "cachethq.io": [2709], "hotel.ch": [19261], "stubhub.co.uk": [15534], "thalia.de": [16171], "ekwb.com": [4920], "track.bvg.de": [1582], "*.pgeveryday.ca": [13121], "www.disabilitystudies.osu.edu": [11760], "*.fust.ch": [3645], "conference.scipy.org": [14374], "cc.dcsec.uni-hannover.de": [17168], "www.indymedia.org": [8085], "helpspot.com": [7306], "tenon.com": [16112], "readrobreid.com": [13609], "wyreforest.greenparty.org.uk": [6925], "www.random.org": [13545], "unisend.com": [17199], "*.reputation.com": [13790], "epost.powertech.no": [12995], "issafrica.org": [7837], "heapanalytics.com": [7270], "iatspayments.com": [7670], "ads.businessclick.com": [19028], "www.imperativeideas.com": [8014], "files.snstatic.fi": [14145], "beagle.ci.uchicago.edu": [17246], "info2.ntu.edu.tw": [10971], "www.wirral.gov.uk": [18371], "www.ccianet.org": [2549], "cisecurity.org": [2617], "complaint.ic3.gov": [17022], "secure2.store.apple.com": [1120], "*.ohloh.net": [11766], "hbo.vice.com": [17667], "partner.mamba.ru": [9932], "downloads.sourceforge.net": [15174], "piratenpartei.ch": [12284], "bauwesen.htwk-leipzig.de": [7114], "zhihu.com": [18856], "oftc.net": [11622], "*.bigstockimages.com": [1867], "istem.engineering.osu.edu": [11760], "www.outofcontrol.ca": [12147], "momsmedia.com": [17540], "*.roku.com": [13954], "www.kcvids.com": [8715], "spyderco.com": [15326], "www1.lansforsakringar.se": [9151], "www.jobindex.dk": [8597], "www.sunshineweek.org": [15607], "mapping.scotborders.gov.uk": [14394], "zooku.ro": [18899], "www.titanpad.com": [16499], "harita.yandex.com.tr": [18649], "home.mobile.de": [19403], "adsonar.com": [539], "sel4.systems": [14433], "www.magnet.ie": [9860], "controlpanel.vgocom.com": [17485], "www.l2020.org": [9061], "cdn.okcimg.com": [11771], "webhostlist.de": [18122], "*.spreadshirt.pl": [15300], "www.visualisingadvocacy.org": [17786], "www.magicaffiliateplugin.com": [9855], "login.idm.telekom.com": [16087], "cdn.usertags.com": [17087], "dialogueiwb.educ.cam.ac.uk": [17243], "www.writelatex.com": [18474], "www.federatedinvestors.com": [5721], "wp-dev.grc.nasa.gov": [10869], "as.sexad.net": [14642], "flowbtc.com": [5944], "www.brighteroption.com": [2329], "www.echoplex.us": [5047], "www.sycom.co.jp": [15710], "www.scai.fraunhofer.de": [6112], "www.esbie.ie": [4952], "www.allianz.com": [18950], "platformone.neustar.biz": [11280], "prometheusgroup.com": [13150], "435bymjc.com": [144], "cloud.centrify.com": [19048], "www.whirlpool.net.au": [18243], "topcoder.com": [16560], "consult.leeds.gov.uk": [19353], "www.webthumbnail.org": [18163], "sdacs.ucsd.edu": [16939], "travel.thankyou.com": [16173], "toynews-online.biz": [8226], "gravatar.com": [6899], "www.itvstatic.com": [7853], "my.ece.illinois.edu": [17258], "wikihub-new.berkeley.edu": [17240], "sorry.hosting.cornell.edu": [3676], "startssl.net": [15407], "interview.marshall.usc.edu": [17278], "q2.qlogo.cn": [13304], "www.ashampoo.com": [1250], "raur.co": [13400], "kvack.org": [9047], "storage.googleapis.com": [6839], "www.foldingforum.org": [5984], "www.agoravoting.com": [732], "www.etarget.sk": [5373], "mobile.virginmedia.com": [17737], "ww2.epeat.net": [4941], "www.alumni.wustl.edu": [17993], "*.pocketmatrix.com": [12836], "ssl-certificate-center.verisign.es": [17623], "zona.telecom.sk": [16088], "ent.u-bordeaux.fr": [16918], "*.cdn.firstlook.org": [5878], "clients.easy-hebergement.fr": [5033], "accessofficeproducts.com": [450], "acnc.gov.au": [263], "www.motherpipe.co.uk": [10610], "www.xda-developers.com": [18507], "szm.com": [15767], "load.wpm.neustar.biz": [11280], "download.sp.f-secure.com": [5541], "*.rdsecure.org": [13512], "bcnm.stanford.edu": [15383], "www.thefappening.sexy": [16274], "read.seas.harvard.edu": [7218], "uif.unizar.es": [17356], "triodos.com": [16739], "*.bishopinteractive.com": [1917], "www.dasource.ch": [4165], "apps.db.ripe.net": [13895], "shop.verkaufen.ch": [19733], "*.efinancialnews.com": [11321], "cloudmagic.com": [3291], "ryanair.com": [14054], "assets.netnewscheck.com": [11200], "www.thread.com": [16389], "uoregon.edu": [16999], "www.bleutrade.com": [2071], "guaranibitcoin.com": [6997], "static.c-spanvideo.org": [2495], "g2.std3.ru": [15445], "blog.trendmicro.de": [16715], "hosting.fleetnetworks.net": [5913], "onlive.com": [11812], "frontlinedefenders.org": [6226], "disabledgo.com": [4539], "ebuzzing.de": [5044], "onsugar.com": [11815], "cdn.zenfolio.net": [18827], "www.xmind.net": [18528], "www.trusteer.com": [16793], "secure.csob.sk": [3896], "www.cooperazione.ch": [3645], "handsomecode.com": [7191], "www.payconnect.net": [4893], "www.xtwo.ne.jp": [18603], "*.cert-verbund.de": [2579], "memopol.panoptykon.org": [12365], "magadan.rt.ru": [13469], "gemeentewestland.nl": [11132], "autoblog.com": [1421], "help-pt-br.nike.com": [11401], "www.ovh.pt": [12173], "projects.centos.org": [2942], "distilleryimage10.instagram.com": [8182], "my.eset.com": [5358], "vic20.blipp.com": [2080], "techenclave.com": [16010], "merchants.livingsocial.com": [9517], "www.rpgmakerweb.com": [14003], "www.backbonesecurity.com": [1596], "mivacentral.com": [10462], "auto.mail.ru": [9874], "www.ovh.pl": [12173], "www.myprojects-proposals.ncl.ac.uk": [10884], "projectreporter.nih.gov": [11052], "*.weburbanist.com": [18096], "seclab.illinois.edu": [17258], "secure-www.novell.com": [11530], "sao.stanford.edu": [15383], "coursera.org": [3719], "www.datenschutz.de": [17746], "afcs.dell.com": [4335], "www.cryptocoinsnews.com": [3856], "www.mencap.org.uk": [10256], "discoveryplace.org": [4556], "www.f4.htw-berlin.de": [7112], "inpros.net": [8158], "www.pico-app.com": [12663], "m.fanfiction.net": [5648], "balatarin.com": [1625], "www.thalia.at": [16171], "oceandiscovery.xprize.org": [18495], "img1.video.s-msn.com": [9794], "hostingreviews.com": [7525], "sheffield.ac.uk": [17339], "support.easy-hebergement.fr": [5033], "www.joshtriplett.org": [8635], "*.qip.ru": [13283], "netstatus.earthlink.net": [5007], "poste.ch": [12949], "www.upplandsvasby.se": [17396], "supportcenter.godaddy.com": [6773], "state.gov": [17067], "omeo.alipay.com": [817], "n0where.org": [10860], "nanohub.org": [11031], "pixel.industrybrains.com": [8078], "www.fas.org": [5723], "jira.neos.io": [11156], "api.lavaboom.com": [9173], "www.hboneplus.hu": [10929], "gocoin.com": [6771], "designaddict.com": [4387], "okcoin.com": [11628], "eastsussex.libraryreserve.com": [19363], "townsvillebottomfishingcharters.com.au": [16615], "iris.ut.ee": [17069], "www.btc-e.com": [1553], "www.mixx.com": [10470], "www.ext.vt.edu": [17740], "octorate.com": [11717], "support.kaspersky.com": [8806], "www.beefymiracle.org": [1747], "www.east-northamptonshire.gov.uk": [5012], "copyleft.org": [3655], "en-support.psm.playstation.net": [12794], "api.dnschain.net": [4060], "www.mechon-mamre.org": [10136], "www.browser-statistik.de": [2369], "www.bauart.htwk-leipzig.de": [7114], "tampermonkey.net": [15939], "httpwatch.com": [7111], "www.wabi.com": [17938], "*.dot429.com": [4689], "www.jamendo.com": [8502], "marketplace.zanox.com": [18787], "powerhosting.dk": [13000], "www.seedprod.com": [14549], "www.pbebank.com": [13203], "orafarm.com": [11658], "passport.twitch.tv": [16888], "static.formstack.com": [6046], "www.ntldstats.com": [10962], "forum.geogebra.org": [6537], "www.vr.org": [17864], "secure.kreativmedia.ch": [9008], "www.wealden.gov.uk": [19750], "m-pathy.com": [9692], "www.microsoftstore.com": [10368], "www.master.yandex.kz": [18652], "www.censorship.govt.nz": [2939], "mtf.cern.ch": [2575], "taskforceonshalegas.uk": [15969], "biditbob.com": [1845], "xww.ro": [18605], "www.qtastatic.com": [13318], "www.eiu.com": [5061], "webmproject.org": [18073], "www.citrixonline.com": [3179], "pvac-cms.leeds.ac.uk": [17318], "kb.iu.edu": [8064], "i2.timeinc.net": [16460], "ernw.de": [4950], "www.winterswijk.nl": [11132], "www.advantagemedia.com": [650], "www.burnley.gov.uk": [2443], "syndication.twimg.com": [16877], "www.admission.com": [16421], "customs.hmrc.gov.uk": [7084], "www.01.org": [1], "www.youngstonewall.org.uk": [19793], "www.lincs.fr": [9080], "www.sitesafe.org.nz": [14878], "openstat.ru": [11977], "openlibrary.org": [12018], "as-images.apple.com": [1120], "www.checkdomain.de": [3049], "admin.closerware.net": [3274], "ziggo.com": [18861], "www.distrowatch.com": [4577], "boldchat.com": [2187], "img4.thalasseo.com": [16168], "spu.ac.th": [15324], "3bbwifi.com": [130], "lab.lugons.org": [9108], "www.pixelated-project.org": [12738], "aka-img-1.h-img.com": [7617], "s.itunes.apple.com": [1120], "wikimedia.org": [18296], "buch.de": [16171], "*.netzguerilla.net": [11276], "*.rd.com": [13616], "steppingout.stanford.edu": [15383], "www.newportmotorsports.com": [11319], "*.gencat.cat": [6524], "dreamnews.jp": [4750], "journalism.berkeley.edu": [17240], "www.advisormailout.com": [667], "unisys.co.jp": [17202], "mayday.us": [10104], "northkoreatech.org": [11496], "conservatives.com": [3590], "res.mail.qq.com": [13285], "smhttp-nex.nexcesscdn.net": [11357], "rollerhaendler.scooter-attack.com": [14390], "cdn.videos.bloomberg.com": [2117], "mitei.mit.edu": [9749], "www.linuxforums.org": [9422], "quiz.toogl.com": [16552], "piratpartiet.se": [12723], "www.enigmabox.net": [5274], "encrypteverything.ca": [5237], "bmclogostore.com": [1528], "www.vidup.me": [17704], "www.500ish.com": [165], "files.lolnet.org": [9569], "parabol.canaldigital.no": [2803], "ssl.phpnet.org": [12251], "descience07.carbonmade.com": [2831], "export.yandex.by": [18648], "*.jackimaging.com": [8482], "www-935.ibm.com": [7675], "demo.f4map.com": [19172], "nttcoms.com": [10967], "canadapost.ca": [2793], "www.coveredcacertifiedpartners.com": [3731], "groupava2.mycdn.me": [10824], "rollcall.com": [13956], "*.myheritage.pl": [10834], "cari.net": [2518], "netcloude.cz": [11218], "vault.cca.edu": [17575], "www.tamesidehospital.nhs.uk": [10912], "www1.ifc.org": [8258], "developer.vodafone.com": [17816], "www.cnr.berkeley.edu": [17240], "www.novara.ie": [4513], "admin.sextoyfun.com": [14645], "shouji.tmall.com": [19684], "media.zylom.com": [18929], "a1.sndcdn.com": [15032], "img30.360buyimg.com": [112], "intern.contest.yandex.com": [18651], "blog.websupport.at": [18091], "espaceprive.moncompteformation.gouv.fr": [19407], "www.insideygs.com": [8169], "www.mosaicscience.com": [10603], "legolas-media.com": [9234], "mail.kiva.org": [8926], "m.nationalgrid.com": [11081], "www.darkmoney.cc": [4149], "ucsf.edu": [17303], "www.javacoolsoftware.com": [8529], "*.nestle.com": [11168], "de-sq.dict.cc": [4455], "images.jxt.net.au": [8468], "bn.com": [1678], "www.true-security.nl": [15857], "assets3.github.com": [6680], "c.icq.com": [7690], "longaccess.com": [9590], "*.modelmayhem.com": [10517], "phcheats.com": [12254], "chlomo.org": [3094], "p4.qhimg.com": [13302], "*.sifterapp.com": [11358], "storage-bin.com": [15491], "vet.osu.edu": [11760], "za.effectivemeasure.net": [5109], "wayf.mit.edu": [9749], "ntt.com": [10966], "dashboard.synapsepay.com": [19650], "login.adfox.ru": [524], "cheklapkok-01-hkg-remote.cathaypacific.com": [2904], "*.schd.ws": [14348], "medicine.stanford.edu": [15382], "www.americanancestors.org": [937], "chen.mysql.cesky-hosting.cz": [19051], "accelacomm.com": [440], "internetdefenseleague.org": [8282], "images.del.icio.us": [7920], "bugzilla.instantbird.org": [8186], "issues.alfresco.com": [802], "rememberthemilk.com": [13758], "redcap.wustl.edu": [17993], "www.fxprime.com": [5610], "cdn-www.merethis.com": [10283], "www.wanikani.com": [17973], "venturebeat.com": [17611], "www.bareos.org": [1668], "customercenter.liveperson.com": [9494], "zozs.se": [18912], "secureimage.securedataimages.com": [14500], "holidays.lastminute.com": [9165], "www.valuecommerce.com": [17542], "*.rsa.com": [13453], "www.nluug.nl": [10938], "riseup.net": [13900], "www.btjunkie.org": [19022], "*.jacksonsun.com": [8486], "www.mc.vanderbilt.edu": [17557], "www.rawgit.com": [13580], "haka.funet.fi": [6264], "1sand0s.nl": [62], "solutionsfinder.capitalone360.com": [2819], "www.posthaven.com": [12976], "meinkonto.telekom-dienste.de": [16086], "pt.pcisecuritystandards.org": [12224], "www.opnsense.org": [11656], "brightkidsnyc.com": [2327], "www.visaforchina.org": [17766], "accounts.coursera.org": [3719], "ac.mediatemple.net": [10165], "gitlab.common-lisp.net": [3484], "www.questionmarket.com": [13357], "tula.rt.ru": [13469], "foecvliab.com": [5971], "www.google-analytics.com": [6839], "www.barter.vg": [1683], "chriscowley.me.uk": [3103], "paf.web.cern.ch": [2575], "popcorn-time.se": [12914], "publishers.kontera.com": [8981], "pddoc.com": [12234], "onecare.live.com": [9483], "bioinfobank.com": [1899], "bookings.rottnestexpress.com.au": [13983], "ci.swift.org": [15688], "wolframcloud.com": [18399], "www.7eer.net": [194], "tvingo.enaza.ru": [5230], "magazine.thehackernews.com": [16338], "scarborough.objective.co.uk": [19454], "*.atomic-clock.org.uk": [17120], "fr.cloudflare.com": [3285], "redmine.vpsfree.cz": [19743], "visitors.berkeley.edu": [17240], "dnsstuff.com": [4070], "*.my.mail.ru": [9874], "l.live.net": [9482], "bitcoinpool.com": [1969], "napoveda.active24.cz": [18938], "www.packet.net": [12316], "www.hscj.ufl.edu": [17252], "www.buyfacefx.com": [14793], "specificmedia.co.uk": [15242], "jamesfarmer.umw.edu": [17261], "*.sssup.it": [14184], "www.northeastjobs.org.uk": [19437], "hailguardian.com": [7165], "contenta.mkt1710.com": [14802], "affiliates.allposters.com": [835], "comviq.se": [3546], "violetindigo.com.au": [17728], "learningcenter.netapp.com": [11183], "*.getsafeonline.org": [6602], "www.upc.ie": [17001], "www.bitfetch.com": [1994], "cri.pld-linux.org": [12267], "theoutnet.com": [16303], "www.encrypt-the-planet.com": [19157], "grantsandcontracts.wustl.edu": [17993], "europe.hostingcon.com": [7529], "pingone.com": [12683], "www.amazon.jobs": [912], "www.purecine.fr": [13243], "console.aolonnetwork.com": [324], "calligra-suite.org": [2754], "wesnoth.org": [18204], "ui.ptlogin2.qq.com": [13285], "www.honeybeeloans.com": [7483], "user.lightsource.ca": [2800], "www.codespeak.net": [3380], "*.ergon.ch": [5340], "gentooexperimental.org": [6533], "dev.techxpress.net": [16022], "danid.dk": [4132], "awaps.yandex.com.ua": [18650], "nos.netease.com": [11189], "fabiankeil.de": [5617], "www.mecoffee.nl": [10131], "my.netviewer.com": [11258], "www.blogs.uni-erlangen.de": [17311], "*.one.org": [11640], "barnsley.gov.uk": [18983], "tiki-toki.com": [16443], "oficinaverde.unizar.es": [17356], "www.webforest.eu": [18101], "dug.net.pl": [4087], "pic1.zhimg.com": [18856], "ncta.com": [10888], "www.kis.hosteurope.de": [7516], "zdtronic.com": [18758], "www.billiondigital.com": [1882], "www.webstyle.ch": [18159], "zuse-crew.de": [18924], "*.gsis.gr": [6912], "webmail.thm.de": [15811], "www.migrosmagazin.ch": [19399], "www.jabber.dk": [8474], "studyabroad.rit.edu": [13434], "m.alicdn.com": [805], "www.inertianetworks.com": [8086], "www.knewone.com": [8943], "blog.coveralls.io": [3730], "pdcs.skat.dk": [14897], "cybertip.ca": [3976], "www.mariadb.com": [9987], "zsim.de": [18914], "*.blogspot.nl": [2107], "*.blogspot.no": [2107], "www.secure-u.de": [14486], "resource.fastspring.com": [5677], "clusters.de": [3325], "cas.org": [3059], "*.nextag.com": [11363], "people.gl.ciw.edu": [2857], "business.leeds.ac.uk": [17318], "znaturalfoods.com": [18773], "growery.org": [6983], "www.installgentoo.net": [18699], "www.friendster.com": [6218], "helsingor.dk": [7313], "www.moon-ray.com": [10577], "cinfo.ucsd.edu": [16939], "timeweb.ru": [16457], "*.afnic.fr": [282], "research.net": [15659], "pantherpass.fit.edu": [5942], "www.placehold.it": [12754], "www.marcan.st": [9982], "www.strongvpn.com": [15531], "www.cybershambles.com": [3964], "newsletters.westlothian.gov.uk": [19754], "*.waikato.ac.nz": [17347], "portale-utente.infn.it": [7766], "www.lennier.info": [9249], "raynersw.com": [13586], "mustaphalab.stanford.edu": [15383], "knowledge.verisign.com.au": [17623], "*.naturfotografen-forum.de": [6067], "it.pcisecuritystandards.org": [12224], "*.tldrlegal.com": [15822], "www.thn.li": [15812], "www.t-mobile.com": [15772], "www.reelvidz.com": [13712], "shop.sundtek.com": [15599], "*.don.ac.uk": [4679], "www.favrskov.dk": [5692], "www.vh2.ro.vutbr.cz": [17522], "dct.org.uk": [19105], "metapress.com": [10299], "sp.velaro.com": [17595], "a.planetlan.com": [12771], "wa5.northyorks.gov.uk": [19440], "blog.compete.com": [3519], "sportsauthority.com": [15291], "www.england.nhs.uk": [10913], "www.risk.io": [13901], "uk.pinterest.com": [12699], "assets.dnainfo.com": [19121], "*.foolz.us": [6007], "www.univention.de": [17225], "login.norton.com": [11505], "assets.jimstatic.com": [8571], "content.www.rspca.org.uk": [13461], "www.pnp4nagios.org": [12275], "stacksocial.com": [15363], "ece1jngec.blogspot.co.*": [2113], "eps-images.tv2.dk": [15881], "www.cspbuilder.info": [3897], "www.youtube.sa": [18709], "fvn.no": [6052], "www.youtube.se": [18709], "navy.gov.au": [13998], "thescore.thejournal.ie": [16224], "app-de-lb2.resrc.it": [13599], "cmsdoc.cern.ch": [2574], "xpress.epaysol.com": [5317], "application.blinksale.com": [2077], "*.unistra.fr": [17279], "ccc.co.il": [2536], "space.housing.illinois.edu": [17258], "daha.net": [15090], "dudley.gov.uk": [4795], "www.slice.com": [14955], "domaincoin.net": [4652], "3c.tmall.com": [19684], "ox.cx": [7641], "cdn-images-2.medium.com": [10197], "piscatus.se": [12726], "www.rrzn.uni-hannover.de": [17168], "pragmaticmarketing.com": [13013], "*.lsac.org": [9178], "www.ee.leeds.ac.uk": [17318], "www.mzv.sk": [14972], "partners.webmasterplan.com": [18131], "verify.mebank.com.au": [9736], "estaffprofile.nottingham.ac.uk": [11528], "cybercon.com": [3968], "cce.com": [2871], "leukemiafoundation.org": [11094], "lists.verisignlabs.com": [17624], "southwest.greenparty.org.uk": [6925], "www.superevr.com": [15628], "www2.dastelefonbuch.de": [4168], "mosr.sk": [14972], "sid.libreoffice.org": [9311], "mooddisorders.ca": [10571], "www.urx.com": [17016], "m.rte.ie": [13470], "empeopled.com": [5214], "liblearn.osu.edu": [11675], "websitealive9.com": [18149], "www.hsbc.com.*": [7098], "merchandising.expediaaffiliate.com": [5504], "axp.zedo.com": [18808], "es.t-mobile.com": [15772], "hybrid.autobytel.com": [1424], "m.tune.yandex.com.tr": [18649], "images.summitpost.org": [15590], "butik.information.dk": [8123], "naif.jpl.nasa.gov": [10869], "ecash.io": [4883], "humanaction.com": [7607], "www.repeaterstore.com": [13777], "elevenpaths.com": [5160], "asl19.org": [350], "secure.dice.com": [4453], "www.canaldigital.dk": [2803], "*.aegeanair.com": [6914], "www.tchibo.hu": [15985], "www.rarbg.com": [19534], "citizen-times.com": [1251], "console.hiconversion.com": [7386], "*.1nsk.ru": [59], "css.nyt.com": [10997], "www.bookmyname.com": [2199], "www.littler.com": [9473], "www.ifightsurveillance.com": [7888], "owncloud.hackerspace.pl": [7149], "mozilla.org": [10657], "notification.adblockplus.org": [561], "pwapi.washingtonpost.com": [17990], "www.ewh.ieee.org": [7715], "origin-www.hertz247.com": [7372], "*.iway.ch": [19314], "*.securityexperten.com": [14528], "www.eastlothian.gov.uk": [5014], "www.rnsfpw.net": [3481], "maarssen.nl": [11132], "cerberusapp.com": [2962], "*.stumble-upon.com": [15544], "blog.soundcloud.com": [15161], "www.wildarchives.com": [18301], "www.amnesty.ie": [964], "login.gmu.edu": [6544], "partners.rt.com": [13468], "www.qb50.eu": [13279], "thecable.foreignpolicy.com": [6024], "specialitytraining.hee.nhs.uk": [10913], "sklep.polskieradio.pl": [12887], "*.mixpanel.com": [10468], "staffstore.canon.com.au": [19037], "myhaccp.food.gov.uk": [19187], "www.fimfiction.net": [5816], "help.fitbit.com": [5887], "eas.admin.uillinois.edu": [16960], "hackweek.suse.com": [14199], "static.liverail.com": [9495], "fullstory.com": [6252], "pythonhosted.org": [13274], "*.foxnews.com": [6085], "*.suntrust.com": [15595], "superrepo.org": [15616], "chocolatey.org": [3095], "cockpit.kolabnow.com": [8961], "prescancerpanel.cancer.gov": [2805], "www.globaltradeday.org": [6734], "idn.infnx.com": [8088], "*.aplus-flint-river-ranch.com": [385], "www.smartlivingnetwork.com": [14995], "www.planet-energy.de": [12759], "www.smuxi.de": [15016], "susestudio.com": [14200], "*.hotels.nationalrail.co.uk": [11055], "www.mybenefitscalwin.net": [10745], "www.npdgroup.com": [10947], "talk.google.com": [6834], "hiig.de": [7068], "*.fedex.com": [5707], "www.facebook.be": [5623], "cdn.sencha.com": [14576], "nvidia.co.uk": [10983], "www.nero.com": [11162], "www.youtube.co.ke": [18709], "eis.ftc.gov": [5720], "www.kable.com": [8762], "sr2.liveperson.com": [9494], "www.mobot.net": [7549], "blog.flickr.net": [5917], "*.static.collegehumor.cvcdn.com": [3428], "*.b-europe.com": [14142], "findretros.com": [5839], "www.ebuzzing.com": [5044], "www.coursetalk.com": [3718], "mc.logmeinrescue.com": [9551], "www.respectourprivacy.com": [13813], "info.zscaler.com": [18913], "www.versacart.com": [17633], "media.stellaservice.com": [14190], "foxycart.com": [6087], "selby.mysql.cesky-hosting.cz": [19051], "img2.wmxstatic.com": [4170], "www.hhg.osu.edu": [11760], "tiremetroonline.com": [16494], "www.1177.se": [18], "sway.com": [15681], "www.ziggozakelijk.nl": [18863], "backcountry.com": [1598], "*.mci4me.at": [10126], "irs.gov": [7819], "huevents.harvard.edu": [7219], "*.statuspage.io": [15438], "publicknowledge.org": [13205], "logo.taobao.com": [15952], "ubfoundation.buffalo.edu": [17297], "adb.psmd.plymouth.ac.uk": [12833], "www.slfacilities.osu.edu": [11760], "pubsoft.org": [13199], "www.eagereyes.org": [19140], "mapi.sitelock.com": [14867], "www.creditdisputeprogram.com": [3789], "chiphell.com": [3088], "www3.hmv.co.uk": [7085], "www.oag.com": [11603, 11604], "img.thalia.de": [16171], "loginza.ru": [9560], "*.la-hora.org": [17120], "www.parcelforce.com": [12397], "weblications.guj.de": [6995], "dakko.us": [4126], "en.chaturbate.com": [3035], "wxwidgets.org": [19779], "vpn.weather.gov": [18034], "hwang.engineering.osu.edu": [11760], "*.publiekeomroep.nl": [13217], "www.mh21.de": [10330], "*.ulakbim.gov.tr": [16980], "www.zotero.org": [18911], "thump.vice.com": [17667], "videomind.ooyala.com": [11899], "app.sunosunao.com": [15602], "www.methodactingstrasberg.com": [10315], "www.doctortrusted.org": [4624], "*.spanair.com": [15216], "it-agenten.com": [7838], "www.noelia.fi": [11456], "*.gamcare.org.uk": [6411], "content.adriver.ru": [534], "securemetrics.apple.com": [1120], "wedos.com": [17901], "fivethirtyeight.com": [5894], "shs.wustl.edu": [17993], "blog.oo-software.com": [11893], "www.infospyware.com": [8128], "*.osvdb.org": [11677], "twimgs.com": [16021], "bitcointrezor.com": [19002], "*.popcrunch.com": [12906], "flo.cno.org": [3425], "diasp.de": [4445], "www.securabit.com": [14477], "ubykotex.com.au": [16922], "eugenekolo.com": [19163], "*.abr.gov.au": [1383], "avia.yandex.kz": [18652], "oesar.osu.edu": [11760], "www.chroniclebooks.com": [10120], "handelsblatt.com": [7187], "*.sonic.net": [15136], "trac.nginx.org": [11374], "sf.se": [14108], "www.gayswap.com": [6479], "irp.nih.gov": [11052], "verizonwireless.com": [17628], "torrentprivacy.com": [16582], "www.rafflecopter.com": [13525], "*.niden.net": [11390], "*.nexternal.com": [11366], "discuss.neos.io": [11156], "cdn.jsdelivr.net": [8655], "ventrachicago.com": [17610], "citizenlab.org": [16183], "benefits.ornl.gov": [11693], "www.galois.com": [6410], "elektra.ksh.hu": [8750], "cs.cf.ac.uk": [2835], "members.sofn.com": [15087], "cod.ed.gov": [4889], "smartpage.stanford.edu": [15383], "mynottingham.nottingham.ac.uk": [11528], "www.eliotsocietyvolunteer.wustl.edu": [17993], "www.internetdefenseleague.org": [8282], "cbmi.catalyst.harvard.edu": [7219], "forums.untangle.com": [17370], "it.engineering.illinois.edu": [17258], "www.edrive-hosting.cz": [5090], "www.kqzyfj.com": [3481], "www.lumovies.com": [9669], "haku.valtiolle.fi": [17534], "www.izea.com": [7886], "*.siteblindado.com.br": [14876], "livehelpvm01.ikoula.com": [7963], "blogs.savethechildren.org.uk": [14314], "de.pycon.org": [13263], "primabanka.sk": [13057], "www.sseeventsgroup.com": [14173], "www.rackspace.hk": [13504], "www.geog.leeds.ac.uk": [9222], "www.x-info.org": [18497], "webservices.admin.cam.ac.uk": [17243], "my.qrsolutions.com": [13287], "gic4.mycdn.me": [10824], "now.netapp.com": [11183], "*.m2pub.com": [9696], "*.unblocked.red": [17151], "centerforrights.org": [2947], "nluug.nl": [10938], "pcm.websitealive.com": [18149], "www.digitalforest.co.jp": [10967], "product-images.imshopping.com": [7763], "foebud.org": [5978], "learn.seedrs.com": [14551], "g.fastcompany.net": [5681], "www.ctools.umich.edu": [17266], "greenpeace-jugend.de": [6934], "www.thesaturdaypaper.com.au": [16309], "password.umd.edu": [17263], "ehoiva-fi.directo.fi": [19136], "my.freecycle.org": [6162], "dlisted.com": [4595], "youtube.co.in": [18709], "salattu.huuto.net": [19267], "atlsso.amd.com": [925], "wiki.freebsd.org": [6120], "www.tanomail.com": [15948], "protectthehuman.amnesty.org.uk": [971], "dev.eclipse.org": [5049], "www.scenemusic.net": [14341], "www.der-preis-jaeger.de": [4378], "account.radiusnetworks.com": [13523], "*.u-strasbg.fr": [17279], "static.slo-tech.com": [14966], "asc.osu.edu": [11760], "cabinet.multi-vpn.biz": [10698], "git.qubes-os.org": [13344], "80.93.18.36": [4512], "j.mp": [8409], "static.bityes.com": [1952], "www.mshare.net": [10414], "symplecticservices.leeds.ac.uk": [17318], "ecowatch.com": [5064], "es.prepaid-phones.t-mobile.com": [15772], "mailigen.com": [9886], "chillingeffects.org": [3079], "panel.phpnet.org": [12251], "*.sslcert35.com": [15347], "radikale.dk": [13514], "networktimefoundation.org": [11271], "geocoder.ca": [6536], "community.remotestorage.io": [13761], "go.skype.com": [14938], "cldup.com": [3223], "masternet.org": [10054], "www.jit.su": [8579], "tvbrowser.org": [15883], "www.jsonresume.org": [8459], "tandemcal.com": [15941], "www.alionet.org": [815], "*.sfm-offshore.com": [14109], "geektimes.ru": [6507], "mktemp.org": [6897], "infomaniak.com": [8112], "fafsa.ed.gov": [4889], "widget.trustpilot.com": [16798], "*.foebud.org": [5978], "addtoany.com": [573], "*.vox-cdn.com": [17850], "vonage.ca": [17838], "pack.resetthenet.org": [13804], "www.meetmecorp.com": [10212], "*.arranca.org": [1212], "drupal.osu.edu": [11760], "kcentrum.vutbr.cz": [17522], "*.packtpub.com": [12320], "serato.com": [14593], "serve.williamhill.com": [18315], "sickbits.net": [14759], "domeny.sk": [18938], "www.openfabrics.org": [11937], "www.minecraft.net": [10415], "www.sharerepo.com": [14666], "www.newsreview.com": [11339], "www.ethicalhacker.net": [5382], "www.masspirgstudents.org": [9716], "buycott.com": [2471], "pgp.mit.edu": [9749], "*.szkb.ch": [19333], "blogs.oasis-open.org": [11606], "whoisology.com": [18261], "www.bugsnag.com": [2408], "bergdorfgoodman.com": [15851], "whosgamingnow.net": [18270], "aff.onenetworkdirect.com": [11838], "*.aber.ac.uk": [414], "resnet.ucsd.edu": [16939], "www.umag.ca": [17080], "*.macpaper.com": [9704], "linac4.web.cern.ch": [2575], "www.objective-see.com": [11703], "my.begun.ru": [1755], "www.secureconnect.com": [14490], "home.guidancesoftware.com": [7006], "streaming.osu.edu": [11760], "support.tierra.net": [16435], "www.jcbusa.com": [8418], "bespied-ons-niet.nl": [1800], "www.barnardos.org.uk": [18981], "www.ics.isy.liu.se": [9084], "genua.de": [19212], "privacyinternational.org": [13082], "developer.mips.com": [9745], "www.zdf.de": [19800], "cruzbuy.ucsc.edu": [17305], "oauthplay.azurewebsites.net": [1484], "condenast.com": [3552], "jobs.n-somerset.gov.uk": [10857], "www.nzbplanet.net": [11600], "ibmsmarteritservices.sourceforge.net": [15174], "aaenhunze.nl": [11132], "everydayrewards.com.au": [18422], "service.telecolumbus.net": [16073], "tweakimg.net": [16866], "connectmyphone.com": [3581], "www.finavia.fi": [5834], "p0.raasnet.com": [13655], "diannao.jd.com": [8423], "*.the-group.net": [16287], "2roads.com": [16897], "*.mediaplex.com": [17541], "www.gimmebar.com": [6661], "sweetandsourstudio.com": [15683], "blogger.com": [2107], "www.torrentz.ch": [16591], "www.louismilan.com": [9620], "argos.ie": [1186], "perceptivepixel.com": [12556], "*.tcpalm.com": [15793], "licaishi.sina.com.cn": [14842], "useresponse.com": [17423], "grist.org": [19229], "mypage.apple.com": [1120], "your.myfonts.net": [10759], "bikebiz.com": [8227], "konzern.oebb.at": [19455], "*.cc.umanitoba.ca": [17260], "www.secwiki.org": [14459], "www.sendvid.com": [14584], "libguides.mit.edu": [9747], "www.onfleet.com": [11858], "www.oplata.info": [12058], "www.esue.ohio-state.edu": [11761], "tools.qubitproducts.com": [13345], "wscont2.apps.microsoft.com": [10364], "lookback.io": [9597], "sberbankdirect.de": [14323], "cosmo.org": [3689], "www.yokl.com": [18689], "bhosted.nl": [1518], "www.sc.wustl.edu": [17993], "wickedlasers.com": [18279], "cdn.sedo.com": [14542], "*.redbull.co.uk": [13666], "*.shopstyle.co.jp": [14720], "getkeepsafe.com": [6594], "bugs.acpica.org": [264], "listserv.techdirt.com": [5939], "contentwatch.com": [3611], "www.knightswarm.com": [8944], "downloadhelper.net": [4725], "hafner-ips.com": [7162], "cardinalatwork.stanford.edu": [15383], "idp.leeds.ac.uk": [17318], "encrypt-the-planet.com": [19157], "www.trybooth.com": [19701], "app.marinsoftware.com": [9997], "www.ampush.com": [982], "tweakhound.com": [16864], "skanetrafiken.se": [14896], "www.ecode360.com": [5054], "store.3drobotics.com": [124], "betts.com.au": [1831], "www.packetwerk.com": [12318], "origin-www.seagate.com": [14437], "www.ictrecht.nl": [7692], "www1.pollg.com": [7211], "desktop-api.fitbit.com": [5887], "svn.debconf.org": [4268], "infinitydev.org": [8094], "www.tz.de": [15895], "pngu.mgh.harvard.edu": [7218], "expandedsupport.com": [5502], "www.canon.dk": [2809], "micropython.org": [10350], "connect.kaltura.com": [8774], "www.jariangibson.com": [8521], "sysadmincasts.com": [15750], "denl.dict.cc": [4455], "interactiveonline.com": [8241], "hr.weibo.com": [18186], "www.knightlab.com": [8945], "www.irill.org": [7815], "ess.erp.johnshopkins.edu": [8611], "metadata.itunes.apple.com": [1120], "www.t-mobilebankowe.pl": [19654], "datapipe.cn": [4211], "freemail.sebijk.com": [7463], "nfc.usda.gov": [17209], "sidn.nl": [14120], "static.firefoxosdevices.org": [5861], "www.myitworks.com": [7858], "blog.evidon.com": [5458], "sp.usatlas.bnl.gov": [19009], "fr.sitestat.com": [14885], "www.swiss-virtual.com": [15695], "lp.tms.pl": [19686], "www.gfisoftware.de": [6323], "bioinfo.pl": [1898], "www.openpublicservices.cabinetoffice.gov.uk": [2701], "getoutofdebt.org": [6599], "nordu.net": [11481], "network.pivotal.io": [12730], "img05.rl0.ru": [13914], "www.victoriaforms.com": [19736], "readplaintext.com": [13614], "slax.org": [14951], "cbp.gov": [2523], "www.irisa.fr": [7816], "sunwoolab.stanford.edu": [15383], "leetway.com": [9225], "apps.pubmatic.com": [13194], "pet-nanny.net": [12587], "youtube.co.id": [18709], "s0.mt-cdn.net": [9798], "*.thumbshots.com": [16401], "www.pieperhome.de": [19493], "youtube.co.il": [18709], "*.honest.com": [7481], "s3static.stelladotcdn.com": [15463], "support.gmocloud.com": [6343], "ail.htwk-leipzig.de": [7114], "www.christianheilmann.com": [3111], "scampus.usc.edu": [17278], "ouvaton.coop": [12155], "www.ovirt.org": [11690], "four.cdn.directmailmac.com": [4527], "dashboard.mileiq.com": [10392], "i.fantasyracing.telegraph.co.uk": [16082], "*.seconfig.sytes.net": [14465], "producthunt.com": [13122], "elsevier.ca": [5184], "*.www.freelancer.com": [6176], "alumni.th-mittelhessen.de": [15809], "dwar.mail.ru": [9874], "blossom.co": [2122], "projects.zoho.com": [18884], "fischerportal.axosoft.com": [1477], "ekmsecure22.co.uk": [5136], "hyperspin.com": [7648], "a3.ec-images.myspacecdn.com": [10848], "safesource.org.nz": [14228], "an.avast.com": [1444], "www.hertz.com.au": [7336], "i-d.vice.com": [17667], "*.usnautic.com": [17064], "gfisoftware.de": [6323], "buzzfocus.com": [2474], "web-analytics.fco.gov.uk": [5558], "www.vtv.fi": [17537], "www.bluestargolf.com": [8431], "adfs.coct.edu": [2642], "app.livechatinc.com": [9480], "asset-f.soupcdn.com": [15167], "www.e-estonia.com": [4838], "well.com": [18263], "ww251.smartadserver.com": [14982], "editor.fuelcdn.com": [6243], "msisac.cisecurity.org": [2617], "val.vutbr.cz": [17522], "windlgroup.engineering.osu.edu": [11760], "officedepot.com": [11747], "www.recyclenow.com": [13654], "at.amgdgt.com": [953], "computefest.seas.harvard.edu": [7219], "danzappone.com": [16328], "www.ping-fast.com": [12680], "mirror-svc.nytimes.com": [11000], "www.adultcineporn.com": [648], "domaincontext.com": [4653], "yun.baidu.com": [1618], "editor.wix.com": [18383], "english.stanford.edu": [15383], "m.centzy.com": [2960], "pcr-online.biz": [8227], "www.aetherflyff.com": [694], "*.cpsc.gov": [2649], "secure.citizensforethics.org": [2657], "kotte-zeller.de": [8995], "onlinebanking.mandtbank.com": [9690], "gametracker.com": [6443], "phpdoc.org": [12653], "*.dhi-scotland.com": [19118], "italiano.istockphoto.com": [19309], "express-vpn.com": [5516], "images1.sanalmarket.com.tr": [14275], "data.maine.gov": [9894], "store.nike.com": [11401], "www.sqlite.org": [14163], "learndrupal.stanford.edu": [15383], "kat.ph": [8879], "microblink.com": [10351], "www.ssafa.org.uk": [14170], "einvoicepayments.hants.gov.uk": [7196], "cdn.avanti247.com": [1442], "securehomes.esat.kuleuven.be": [8816], "profile.freepik.com": [6182], "board.goldesel.to": [19226], "mooculus.osu.edu": [11760], "*.manta.com": [9960], "news.mail.ru": [9874], "*.toofishes.net": [16551], "www.jres.org": [8455], "qabel.de": [13298], "wiki.hackerspace.pl": [7149], "tune.yandex.com": [18651], "notwithoutawarrant.com": [11518], "webmail.htwg-konstanz.de": [7113], "www.gvntube.com": [6399], "www.speedtest.net": [15258], "amnistia.org.pe": [978], "www.perle.com": [12577], "support.earthlink.net": [5007], "*.bethsoft.com": [1818, 1819], "umbr3.cabinetoffice.gov.uk": [2701], "hrselfservice.sevenoaks.gov.uk": [14638], "www.shagaholic.com": [785], "retsinformation.dk": [13830], "*.leadnow.ca": [9201], "titleix.stanford.edu": [15383], "www.costprojections.cancer.gov": [2805], "gnd-tech.com": [6351], "payments.parkingeye.co.uk": [12406], "www.vinumeris.com": [17725], "toq.qualcomm.com": [13328], "globalways.net": [6741], "orgchart.mit.edu": [9749], "cornell.edu": [3676], "walthers.com": [17967], "www.jumpeyecomponents.com": [8674], "s-passets-ec.pinimg.com": [12691], "www.cryptoparty.in": [3886], "partner.just-eat.ie": [19328], "www.kb8ojh.net": [8828], "cmw-leipzig.de": [7114], "app.readspeaker.com": [13610], "bundlestars.com": [2437], "publicidade.brasil247.com": [2290], "*.pairlite.com": [12336], "*.schneider-electric.com": [14357], "iway.ch": [19314], "partners.nvidia.com": [10985], "debianforum.de": [4276], "v.cdn.vine.co": [17722], "www.choopa.com": [3099], "atmsbookings.staffordshire.gov.uk": [15370], "www-cs.ucsd.edu": [16939], "docs.joomla.org": [8627], "www.huntonprivacyblog.com": [19266], "www.nokiausa.com": [11461], "*.vxcdn.com": [17625], "business.idealo.com": [7929], "www.techrepublic.com": [16015, 16016], "www.antispam-ev.de": [1069], "www.dayz.com": [4236], "comcourts.gov.au": [3491], "cdme.engineering.osu.edu": [11760], "www.hr.buffalo.edu": [17297], "www.nixsrv.com": [11431], "torchlightgame.com": [16573], "static1.marvelstore.com": [10040], "www.barbican.org.uk": [1661], "www.postnewsads.com": [12981], "mdot.uw.edu": [17077], "www.openskillz.com": [19461], "procontract.due-north.com": [19129], "simcenter.osu.edu": [11760], "hk-en.norton.com": [11505], "www.crowdsupply.com": [3823], "cart.godaddy.com": [6773], "st.unitedplatform.com": [17219], "realmatch.com": [13624], "log.dmtry.com": [4604], "apisandbox.msdn.microsoft.com": [10364], "help.encoding.com": [5232], "www.dtunnel.com": [4086], "handtekening.nl": [7192], "schnellno.de": [14361], "www.amnesty.org.pl": [968], "maps.havering.gov.uk": [7244], "theexplorercard.com": [16272], "warwick.ac.uk": [17348], "sparxtrading.com": [15228, 15229], "mlpassword.gmu.edu": [6544], "bestofferbuy.com": [1805], "sam.msi.com": [9792], "wattpad.com": [18006], "ssl-ds.static.rtbf.be": [14011], "sutton.moderngov.co.uk": [19405], "marketing.westernunion.com": [18216], "fandango.com": [5652], "abo.tagesanzeiger.ch": [15908], "iomtt.com": [8336], "cdn.shptrn.com": [14724], "gay-torrents.net": [6480], "kalender.mail.de": [9873], "wwwssl.coveritlive.com": [3735], "leadership.uchicago.edu": [17246], "www.codecademy.com": [3361], "www.ettus.com": [5396], "img01.sogoucdn.com": [15102], "freenode.net": [19196], "get.typo3.org": [15894], "da.yle.fi": [18686], "clickequations.net": [3245], "dj.rasset.ie": [13571], "www.fca.org.uk": [5557], "www.zone-h.org": [18892], "ads.perfectaudience.com": [12559], "twinings.co.uk": [16880], "fuelcdn.com": [6243], "m.quote.comparethemarket.com": [3511], "www.nycla.org": [10989], "myportal.ti.com": [16152], "*.bbcomcdn.com": [2174], "bundespolizei.de": [2432], "tradein.vodafone.co.uk": [17813], "mbr.nlm.nih.gov": [11052], "kb8ojh.net": [8828], "mekar.osu.edu": [11760], "ribf.riken.jp": [13430], "marketplace.hubspot.com": [7594], "www.autovps.net": [1423], "forum.openwrt.org": [11992], "www.kolektiva.com": [8963], "*.huffpost.com": [7600], "*.pjmedia.com": [12263], "images3.q8car.com": [13278], "connect.idoxgroup.com": [19281], "app.applyyourself.com": [1130], "sslvpn.busfin.ohio-state.edu": [11761], "kryptosfera.pl": [9021], "www.hipmunk.com": [7416], "cashforcontracts.com": [2880], "gigenetcloud.gigenet.net": [6657], "www.parapoupar.com": [12383], "*.advolution.de": [671], "www.noo.nhs.uk": [10913], "dubfire.net": [4790], "artfiles.de": [1230], "www.montereybayaquarium.org": [10567], "torrentz.ch": [16591], "reporo.com": [13780], "secureinthecircle.com": [14498], "video.yandex.kz": [18652], "o15.officeredir.microsoft.com": [10364], "dashboard.gocoin.com": [6771], "ediss.uni-goettingen.de": [17166], "ultrahdtv.net": [17135], "seba-geek.de": [15129], "remote.vuze.com": [17878], "www.checkbox.com": [19054], "aaspring.com": [398], "psfw.jd.com": [8423], "westlaw.com": [18218], "www.taiga.io": [15911], "www.spilnu.dk": [15275], "www.cov.com": [3723], "packaging.python.org": [13272], "shop.sowka.dosowisko.net": [4688], "healthtap.com": [7258], "aclum.org": [258], "www.temp-mail.org": [16105], "cdn.f5.com": [5546], "blacknight.com": [2054], "store.invensense.com": [8311], "theresumator.com": [16235], "kdelive.org": [8830], "veloviewer.com": [17599], "www.dnb.com": [4138], "blog.demisto.com": [4352], "www.eyefilm.nl": [4998], "img.pre.realty.mail.ru": [9874], "support.dandb.com": [4137], "vtech.com": [17519], "m.stubhub.com": [15534], "www.totalfanshop.net": [16603], "newstudents.berkeley.edu": [17240], "www.i-koruna.com": [7751], "curah.microsoft.com": [10364], "www.exoticads.com": [5501], "fosdem.org": [6069], "editorialmanager.com": [5087], "www.spamicity.info": [15215], "www.osumc.edu": [11676], "www.lookback.io": [9597], "xmind.net": [18528], "secure.avahost.net": [1436], "startmail.com": [15410], "map.cam.ac.uk": [17243], "*.process-one.net": [13119], "pingdom.com": [12687], "community.apan.org": [329], "lpice.eu": [9096], "accionistas.walmart.com": [17964], "www.vanwinkles.com": [17553], "whiteout.io": [18256], "www.goldenadventures.com": [6812], "library.slashdotmedia.com": [14948], "ingushetia.rt.ru": [13469], "secure.kettering.gov.uk": [8861], "www.ilo.org": [7752], "varietylatino.com": [17566], "www.pop6.com": [12901], "www.brianclifton.com": [2310], "dashboard.adtile.me": [640], "linguistics.stanford.edu": [15383], "www.welcometometlife.com": [18190], "aldi.us": [299], "calc.mellanox.com": [10240], "support.brighttalk.com": [2323], "events.ucc.ie": [16933], "www.mongodb.org": [10554], "www.thefederalistpapers.org": [16275, 16276], "*.billiger.de": [1881], "arstechnica.com": [1217], "www.playvid.com": [12797], "*.bankofscotland.de": [1650], "adpeepshosted.com": [546], "jpberlin.de": [8446], "metrics.pcmag.com": [18860], "peijian.taobao.com": [15952], "rmit.edu.au": [13437], "macainfo.org": [9825], "content001.bet365affiliates.com": [18992], "*.org.edgesuite.net": [760], "so.swisscom.ch": [15698], "blog.ashampoo.com": [1250], "gemeenteberkelland.nl": [11132], "www.interac.ca": [8234], "www.c4ss.org": [2504], "mail.uniregistry.com": [17196], "www.untergeschoss.ch": [17372], "pl.gamigo.com": [6445], "blog.pressdisplay.com": [2132], "labanimals.stanford.edu": [15383], "www.dotultima.com": [4706], "nr-media-01.nationalreview.com": [11073], "staging.equityzen.com": [5337], "www.claimyourname.io": [3207], "docs.typo3.org": [15894], "sceper.ws": [14343], "*.derwesten.de": [4384], "travis-ci.org": [16701], "frictionalgames.com": [6210], "*.kde-files.org": [19462], "cdn1.evernote.com": [5450], "ey.com": [5346], "*.dropbox.com": [4768], "blog.dwolla.com": [4815], "instagram.com": [8182], "covers.elsevier.com": [5185], "ads.audienceamplify.com": [1354], "people.isy.liu.se": [9084], "www.kde.org": [8718], "download.owncloud.org": [12182], "castlebridge.ie": [2892], "www.7headlines.com": [189], "www.couragefound.org": [3714], "solarmovie.is": [15113], "york.cuny.edu": [18695], "2.f.ix.de": [8404], "openingscience.org": [12037], "www.vis.fsc.va.gov": [17019], "independentmail.com": [8055], "www.ncbi.nlm.nih.gov": [11052], "www.recalll.co": [13642], "blog.netbsd.org": [11184], "blog.jolla.com": [8622], "megashare.im": [10231], "img.youm7.com": [18714], "hdtracks.com": [7056], "hackerschool.com": [7148], "b10.yahoo.co.jp": [18640], "*.oversee.net": [12169], "digital.lib.washington.edu": [17291], "www.theiphonewiki.com": [16330], "bps.org.uk": [1538], "looppay.com": [9605], "www.magellanmodels.com": [9848], "zubu.re": [19804], "www.bitcointrezor.com": [19002], "pcs.com": [12230], "*.proxmox.com": [13179], "download.qt.io": [13315], "www.planetromeo.com": [12764], "i.api.grvcdn.com": [6989], "qsli.com": [13288], "my.monash.edu": [10541], "echoplex.us": [5047], "www.ethz.ch": [4975], "chi1.intel.com": [8209], "zona.skylink.cz": [14937], "openstat.net": [11976], "www.linkshare.com": [13534], "bluenote.io": [2153], "www.schotty.com": [19571], "mixcloud.com": [10465], "portalmasq.com": [12280], "bizjournals.com": [16180], "acme.legiscan.com": [9230], "sis.nlm.nih.gov": [11052], "www.postbox-inc.com": [12960], "special.dreampass.jp": [4752], "6.*.wdfiles.com": [18294], "solutionshealthcare.com": [15125], "hackhands.com": [7132], "gfihispana.com": [6322], "help.switch.ch": [15699], "hboc.osu.edu": [11760], "marketing.extensis.com": [5522], "specialized.net": [15241], "sellaband.com": [14569], "countermeasures.trendmicro.eu": [16714, 16716], "geophysics.stanford.edu": [15383], "admin.lautre.net": [9171], "www.saimd.com": [3682], "mebank.com.au": [9736], "hr.wustl.edu": [17993], "enter.enaza.ru": [5230], "blogmint.com": [2110], "*.standup2cancer.org": [15377], "gmx.de": [6350], "kitenet.net": [8925], "www.coinjar.com": [3397], "linux-tage.de": [9398], "voicelessonstotheworld.com": [11300], "ntr.nasa.gov": [10869], "www.finanzcheck.de": [19179], "lat.ms": [1920], "www.put.io": [13256], "tribot.org": [15858], "tvprogram.upc.cz": [17000], "www.aldimobile.com.au": [300], "www.nutritiondata.self.com": [11585], "www.tchibo-ideas.de": [15985], "www.skanetrafiken.se": [14896], "hellobar.com": [7294], "users.rust-lang.org": [14047], "www.royalfree.nhs.uk": [10913], "www.airpair.com": [747], "ae.norton.com": [11505], "beautifuldecay.com": [1740], "www.globalweb.co.uk": [6736], "mispy.me": [10454], "mba.illinois.edu": [17258], "logitech.com": [9561], "www.lizardtech.com": [2930], "avo.gov.au": [1404], "partnervpn.symantec.com": [15715], "web.cern.ch": [2575], "www.rev.com": [13837], "*.eurovision.tv": [5432], "bitre.gov.au": [2440], "pantheon.io": [12372], "its.freebsoft.org": [6123], "*.iwebreader.com": [7876], "cancer.stanford.edu": [15383], "wiki.fool.com": [6006], "bancopostaonline.poste.it": [12965], "dpmaster.deathmask.net": [4266], "*.marsupi.org": [10030], "leamington.greenparty.org.uk": [6925], "help.aweber.com": [378], "img1.youm7.com": [18714], "beta.vidup.me": [17703], "id.openmrs.org": [11953], "order.ikoula.com": [7963], "internet-banking.dbs.com.sg": [4010], "decs.osu.edu": [11760], "*.getchef.com": [6586], "www.richarddawkinsfoundation.org": [13872], "garygoddard.com": [6803], "cdn.ws.citrix.com": [3178], "hertz247.pt": [7359], "www.lewrockwell.com": [9278], "*.specificmedia.co.uk": [15242], "*.kicknews.net": [8878], "www.oecd-ilibrary.org": [11618], "maps.yandex.mobi": [18653], "www.update.microsoft.com": [10363], "nerfnow.com": [11161], "bosh.io": [2229], "www.umano.me": [17141], "spacepolicyonline.com": [15206], "rimg09.rl0.ru": [13914], "www.bournetocode.com": [2250], "updatecenter.norton.com": [11505], "newcastlecollection.newcastle.gov.uk": [11315], "fb.izvestia.ru": [8407], "helpshift.com": [7310], "myview.torbay.gov.uk": [16569], "stockport.objective.co.uk": [19454], "www.lucidchart.com": [9645], "reconingspeakers.com": [15237], "*.echothrust.com": [5048], "apps1.seagate.com": [14437], "anon.click": [1040], "thegef.org": [8259], "www.lduhtrp.net": [3481], "bspace.berkeley.edu": [17240], "jscss.superpages.com": [15633], "www.tuakiri.ac.nz": [16812], "fders.osu.edu": [11760], "www.cityoflondon.police.uk": [3194], "cdn.scribblelive.com": [14413], "www.internetfonden.se": [8288], "alipay.com": [817], "totalicare.com": [16602], "ifosslr.org": [8260], "cryptome.info": [3879], "pqshibboleth.proquest.com": [13112], "netmarble.com": [11242], "www.open.ac.uk": [11986], "couchpota.to": [3698], "knowingly.com": [19341], "www.searchstorage.de": [16018], "*.eyeos-apps.org": [19462], "cdn6.sure-assist.com": [15644], "*.fail0verflow.com": [19173], "wpml.org": [17922], "france-universite-numerique-mooc.fr": [6097], "amsa.gov.au": [1397], "va.gov": [17019], "metrics.aem.playstation.com": [12795], "l.ooyala.com": [11900], "demonii.com": [4357], "cms.msi.com": [9792], "astronomynow.com": [1306], "files.namecheap.com": [11019], "oag.com": [11603, 11604], "nettitude.co.uk": [11253], "www1.maths.ox.ac.uk": [17271], "taras.yandex.com.ua": [18650], "www.imssr.com": [7760], "store.tequipment.net": [16119], "newamerica.org": [11301], "www.rdot.org": [13410], "i.marketwatch.com": [10021], "www.irctc.co.in": [7812], "dev.netzob.org": [11277], "geotrust.com": [6549], "downloads.php.net": [12250], "community.mobify.me": [10492], "uppsalahem.se": [17397], "certificatemonitor.org": [2969], "*.taifex.com.tw": [15784], "reviews.lendingclub.com": [9246], "www.hyperspin.com": [7648], "sparklabs.com": [15220], "www.redletterdays.co.uk": [13677], "www.nccgroup.com": [10879], "*.iplay.com": [8345], "*.freecultr.com": [5594], "www.rc4nomore.com": [19540], "www.codeofhonor.com": [3344], "mips.com": [9745], "masteringemacs.org": [10057], "oraweb.ulaval.ca": [17229], "support.sandvine.com": [14284], "www.vinilox.eu": [17724], "www2.leboncoin.fr": [19351], "*.libravatar.org": [9308], "twiki.nevis.columbia.edu": [3448], "aan.com": [936], "*.webex.com": [18061], "ru.nl": [13510], "www.internetsociety.org": [8275], "meiyantang.taobao.com": [15952], "demo.tiki.org": [16444], "www.parallels.com": [12392], "www.e-pages.dk": [4857], "speedvolunteer.london.gov.uk": [9578], "www.secure.citizensforethics.org": [2657], "www.agra-net.com": [733], "lensrentals.com": [9255], "gravity.com": [6900], "startcom.org": [15407], "www.bittylicious.com": [2026], "www.linuxfoundation.org": [9412], "help.hootsuite.com": [7488], "profiles.live.com": [9483], "guru.de": [19233], "www.tenten.vn": [16117], "register.msi.com": [9792], "colocore.ch": [3436], "wiki.openwrt.org": [11992], "www.xdebug.org": [18552], "emsonline.gloucestershire.gov.uk": [6749], "kinox.pe": [19337], "selfsolve.apple.com": [1120], "www.strava.cz": [15514], "myhr.sydney.edu.au": [19649], "flightaware.com": [5919], "10minutemail.com": [13], "ct.gov": [2680], "imguol.com": [7995], "iplocation.net": [19304], "www.spark-summit.org": [15218], "usage.jenkins-ci.org": [8551], "www.benedikt-bitterli.me": [1775], "g2a.com": [6296], "aries.apache.org": [1086], "dutch.tags.literotica.com": [9467], "exchange.cex.io": [2587], "ees.elsevier.com": [5183], "docs.run.pivotal.io": [12730], "www.sebastian-siebert.de": [14455], "cruises.united.com": [17212], "www.yandex.by": [18648], "www.unixmen.com": [17355], "www.handelsbanken.fi": [7186], "cache.gawkerassets.com": [6476], "www.0bin.net": [2], "www.weibo.com": [18187], "www.easypost.com": [5029], "fortinet.com": [6056], "community.thefoundry.co.uk": [16278], "www.docs.indymedia.org": [8085], "ems.doncaster.gov.uk": [4678], "events.eoportal.org": [5314], "ruag.com": [19559], "webapp.zdf.de": [19800], "www.northdown.gov.uk": [4530], "postovoy.org": [19512], "www.moonpig.com.au": [10578], "www.slettmeg.no": [4216], "www.sonobi.com": [15139], "www.kvm-vps.com": [8755], "www.novell.com": [11530], "*.racket-lang.org": [13498], "gov.wales": [6860], "service.burstnet.eu": [2445], "roundhouse.org.uk": [13987], "committees.web.cern.ch": [2575], "adwizard.springer.com": [15309], "*.assistly.com": [4392], "skyacademy.com": [14928], "firstintegrity.com": [5877], "golflink.com": [6820], "tango.me": [15946], "*.fout.jp": [6083], "www.qualityunit.com": [13331], "acell.osu.edu": [11760], "*.ssl.catalog.video.msn.com": [9796], "hide.me": [7391], "login.johnshopkins.edu": [8611], "ctlm.onlineshop.cz": [19459], "*.onswipe.com": [11887], "www.iterm2.org": [7864], "www.hekko.pl": [7290], "french.tags.literotica.com": [9467], "jdkasten.com": [8427], "iosdevweekly.com": [7781], "ats.tumri.net": [16827], "manual.phpdoc.org": [12653], "*.personforce.com": [12586], "www.seekingarrangement.com": [14553], "www.mcdee.com.au": [10124], "portal.apple.com": [1120], "megafon.ru": [10226], "riversidemajestic.com": [13908], "wiki.services.eoportal.org": [5313], "images.encyclopediadramatica.se": [5241], "www.thr.com": [15813], "worldtomorrow.wikileaks.org": [18291], "lib.openmpt.org": [11951], "forum.zazzle.com": [18804], "magnetic.domdex.com": [4667], "*.hollywoodoutlaws.com": [7456], "clssl.org": [3319], "netverify.com": [11256], "vod.shaw.ca": [14687], "danskeanalyse.danskebank.dk": [4145], "dvdnav.mplayerhq.hu": [9784], "awaps.yandex.kz": [18652], "webauth.service.ohio-state.edu": [11761], "static.sabayon.org": [14214], "www.7elements.co.uk": [190], "universityadmissions.se": [17352], "webmail.kth.se": [8752], "fordela.com": [6021], "m.stubhub.de": [15534], "youshould.installgentoo.net": [18699], "meldium.com": [10239], "*.wennect.info": [18201], "zynga.tm": [18932], "www.leisurebookings.birmingham.gov.uk": [19000], "www.bite.lt": [1991], "bpaste.net": [2262], "6.vgc.no": [17484], "lovtidende.dk": [9634], "*.www.ladyfootlocker.com": [9128], "digitaldollhouse.com": [4492], "lesterchan.lesterchan.netdna-cdn.com": [9262], "www.pentestpartners.com": [12530], "cookie.fdih.dk": [6026], "the-dma.org": [16185], "secure.ace-tag.advertising.com": [662], "gohealthservices.scot.nhs.uk": [10913], "sesplan.objective.co.uk": [19454], "wiki.ro.vutbr.cz": [17522], "*.microsec.hu": [10359], "www.pantz.org": [12375], "edge3.digicert.com": [4473], "sacnas.org": [14066], "www.justice4assange.com": [8699], "eu.gcsip.com": [19210], "www.aldi.nl": [299], "www.enalean.com": [5229], "optionbit.com": [12075], "sinaapp.com": [14843], "powerlinemanmag.com": [13003], "cgit.cyrus.foundation": [3989], "www.pixelh8.co.uk": [12739], "secure.grepular.com": [6944], "rawgithub.com": [13581], "darktable.org": [4154], "www.bitmi.de": [2434], "connect.me": [3580], "gluster.org": [6752], "*.gaia.hs.llnwd.net": [6405], "api-stage.websitealive.com": [18149], "lloydstsb-offshore.com": [9523], "netelligent.ca": [11224], "www.researchmatch.org": [13797], "assistenza.tiscali.it": [16498], "code.nasa.gov": [10869], "idm.data.gov": [4175], "bokborgen.se": [2183], "www.ipswich.gov.uk": [8351], "*.adk2.com": [598], "iv.lt": [8397], "script.crazyegg.com": [3764], "webalert.jp": [18053], "www.stalkr.net": [15372], "www.dealchicken.com": [12631], "i.superlawyers.com": [15621], "defi.dict.cc": [4455], "www-apps.hillingdon.gov.uk": [7410], "a4.mzstatic.com": [10852], "airtime.pro": [755], "riverbed.com": [13907], "www.talkhealthpartnership.com": [15931], "nl.gamigo.com": [6445], "download.clearlinux.org": [3233], "www.anrdoezrs.net": [3481], "wumt.westernunion.com": [18216], "enocloud.com": [19138], "*.tugraz.at": [15875], "www.sourcefabric.org": [15180], "www.winzip.com": [18333], "securelist.com": [14492], "asacp.org": [344], "www.tracker-software.com": [16631], "a0.thelateroomsgroup.com": [19676], "www.auditshark.com": [1361], "specs.adfox.ru": [524], "people.codeforamerica.org": [3359], "aclu.org": [256], "www.websocket.org": [18088], "feedback.userreport.com": [17437], "hypeshell.com": [14160], "informatick.net": [8122], "www.azingsport.se": [1482], "timeshighereducation.com": [16464], "www.ecn.ulaval.ca": [17229], "financialaid.stanford.edu": [15383], "www.ybitcoin.com": [18611], "vps.gmocloud.com": [6343], "www.nri.co.jp": [11466], "assets-jpcust.jwpsrv.com": [8701], "www.cgs.osu.edu": [11760], "technicalcommunity.com": [16035], "securejoinsite.com": [14502], "edupage.org": [5091], "buywithconfidence.gov.uk": [19031], "actblue.com": [488], "openbenchmarking.org": [11922], "sethvargo.com": [14633], "www.blottr.com": [2125], "newrepublic.com": [11309], "www.hotscripts.com": [7551], "grahamcluley.com": [6885], "*.energy.gov": [5254], "www.boxwoodtech.com": [2261], "my.modulus.io": [10527], "kr36.co": [9003], "www.standagainstspying.net": [15376], "serviceinfo.rescue.org": [19546], "*.dualshockers.com": [4788], "*.rightscale.com": [13884], "md03.plex.tv": [12814], "s4.shinystat.com": [19587], "cavirtex.com": [2910], "loughborough.greenparty.org.uk": [6925], "r66t.com": [13392], "china.jd.com": [8423], "owa.ut.ee": [17069], "searchmarketingexpo.com": [16367], "www.jako-o.com": [8496], "www.baekdal.com": [1613], "windstream.com": [18349], "yourmembership.com": [18725], "www.getlantern.org": [6595], "kuantokusta.pt": [9027], "library.ucc.ie": [16933], "*.crate.io": [3763], "www.fitbit.com": [5887], "news.brown.edu": [2367], "radartv.nl": [13509], "static.adziff.com": [18860], "images3.rapidshare.com": [13558], "dynabrainsportal.axosoft.com": [1477], "xavisys.com": [18547], "aldi-suisse.ch": [299], "*.olark.com": [11779], "tv.infowars.com": [8129], "www.csaf.cz": [2663], "intranet.dsi.cnrs.fr": [6195], "ads.networkhm.com": [11273], "www.surveygizmo.com": [15658], "www.webmon.com": [18134], "*.conscallhome.com": [3588], "room.eiffel.com": [5124], "www.umassmag.com": [17264], "secure.goabroad.com": [6769], "computer.ly": [3537], "blackvpn.com": [2042], "syslog-ng.org": [15754], "www.gifgratis.net": [6639], "www.mailbox.org": [9881], "io-test-gw.vutbr.cz": [17522], "www.icewarp.com": [7913], "isle.jp": [8368], "eth0.nl": [5376], "www.oeticket.com": [11731], "logilab.fr": [9559], "wit.ai": [18378], "payments.heifer.org": [7284], "science.jpl.nasa.gov": [10869], "blog.fitbit.com": [5887], "www.ricochet.com": [13877], "www.freevps.us": [6134], "gifts.rescue.org": [19546], "www.doriancolor.com": [4685], "*.upenn.edu": [17273], "citibank.com": [3171], "www.achaea.com": [18937], "community.remedygames.com": [13757], "databases.ohiolink.edu": [11762], "kr.norton.com": [11505], "passport-ckicheck.yandex.kz": [18652], "www.hertz.co.th": [7369], "www.codersclan.net": [3376], "www.forum.fruct.org": [5595], "rsc.org": [13997], "domainstore.dotcologne.de": [4694], "exaccess.ru": [12786], "www.msi-shop.de": [9791], "*.which.co.uk": [18240], "www.flixbus.at": [5931], "humanevents.com": [7609], "www.ircreviews.org": [7813], "www.blackboard.com": [2051], "index.rsf.org": [13784], "oneonline.monmouthshire.gov.uk": [10560], "newgrounds.com": [11317], "foundationbeyondbelief.org": [6078], "www.orange.jobs": [12085], "*.trisquel.info": [16751], "forestsangha-163c.kxcdn.com": [6029], "bitcoin-central.net": [1957], "lts.cms.here.com": [7326], "*.ugr.es": [17314], "platinumperformance.com": [12787], "www.hnfe.vt.edu": [17740], "new-wiki.freenetproject.org": [6181], "connect.digitalwpc.com": [4502], "www.upay.co.uk": [17384], "control.freefind.com": [6127], "*.unt.edu": [17269], "lazycoins.com": [9184], "blog.polleverywhere.com": [12880], "secure.research.vt.edu": [17740], "search.citrix.com": [3178], "websupport.sk": [18160], "afisha.yandex.by": [18648], "www.vzaar.com": [17883], "*.etracker.com": [5390], "uclahealth.org": [16935], "labs.opendoor.com": [12008], "valueshop.co.uk": [17544], "polipayments.com": [12276], "ric.nal.usda.gov": [17209], "training.enthought.com": [5299], "www.homeinsurance.com": [7468], "www.bayfiles.com": [1698], "m.voyage-prive.co.uk": [17856], "secregen.unizar.es": [17356], "stat.finansportalen.no": [5830], "prime.wistia.com": [18377], "www.swm-infrastruktur-region.de": [14208], "www.calsky.com": [2727], "www.cjib.nl": [11132], "www.strategyanalytics.com": [15510], "binsearch.info": [1888], "indico.desy.de": [4399], "*.startssl.us": [15407], "gaminatorslots.com": [6446], "static-1.ivoox.com": [7871], "inside.law.yale.edu": [18642], "*.cbsistatic.com": [2528], "earthvpn.com": [19141], "abebooks.co.uk": [407], "blog.legacy.com": [18428], "www.objectif-securite.ch": [11702], "tele-task.de": [16068], "*.racjonalista.pl": [13494], "simple.com": [14820], "libanswers.wustl.edu": [17992], "secure.adultfriendfinder.com": [643], "www.myresumeagent.com": [10779], "*.convar.com": [3625], "securitymouse.com": [14532], "sc3.rgstatic.net": [13422], "www.oracle-base.com": [12080], "primedice.com": [13060], "element.yandex.kz": [18652], "hackthe.computer": [7159], "*.suresupport.com": [15645], "*.gfycat.com": [6625], "proxy3.switchadhub.com": [15701], "equinix.com": [5334], "uni-erlangen.de": [17311], "www262.americanexpress.com": [935], "*.whitefence.com": [18249], "buckeyelink.osu.edu": [11760], "www.ddosbreak.com": [4021], "join.secondlife.com": [14462], "ist.berkeley.edu": [17240], "anybots.com": [1078], "claimlisting.superpages.com": [15633], "katedra.skolaonline.cz": [19598], "kinnear.wigan.gov.uk": [18286], "*.ivwbox.de": [8403], "motherjones.com": [10606], "keckselfservice.med.usc.edu": [17278], "mobile.altoonamirror.com": [894], "a4uexpo.com": [227], "xml.yandex.com.tr": [18649], "people-df.live.com": [9483], "pld-linux.org": [12268], "googlecode.com": [6844], "*.tsgstatic.com": [16809], "www.youtube.com.sa": [18709], "utopia.ai": [17456], "builds.piwik.org": [12733], "git.haskell.org": [7229], "kidshealth.org": [8883], "wbplay.wbgames.com": [3502], "sankakucomplex.com": [19563], "app-us-lb2.resrc.it": [13599], "touch.deti.mail.ru": [9874], "verifier.accounts.firefox.com": [5859], "forms.nrc.gov": [17211], "shop-america.u-blox.com": [16921], "blog.docker.com": [4616], "manage.zadarastorage.com": [18777], "healthonnet.org": [7260], "filmlinc.com": [5808], "dynavision.de": [4833], "d.gr-assets.com": [6877], "chainlove.com": [2981], "upc.nl": [17002], "book.360buy.com": [111], "*.airbnb.fr": [749], "blog.quinstreet.com": [13366], "www.talkoclock.com": [15934], "folding.stanford.edu": [15383], "nmbl.engineering.osu.edu": [11760], "www.synergistscada.com": [15735], "c.cldlr.com": [3222], "blog.peerj.com": [12515], "tickets.megaadventure.com.au": [19393], "movie4k.me": [10636], "technical.lavaboom.com": [9173], "puhkaeestis.ee": [13222], "imgcache.gtimg.cn": [6993], "*.biggestloserclub.com": [1862], "www.progress.com": [13132], "tel.exmail.qq.com": [13285], "connect1.osu.edu": [11760], "www.torrentday.com": [16579], "ticketweb.*": [16421], "terresoubliees.com": [16131], "www.fellowselection.acs.org": [929], "git.typo3.org": [15894], "linuxforums.org": [9422], "secure.keyghost.com": [8867], "shtuff.it": [14748], "ntid.rit.edu": [13434], "xen-orchestra.com": [18556], "cloud.idg.se": [7705], "www.eyereturnmarketing.com": [5532], "eerdmans.com": [5105], "ourskillsforce.co.uk": [19472], "static.gimp.org": [19218], "forums.manageengine.com": [9940], "suffolkcoastal.greenparty.org.uk": [6925], "ads-creativesyndicator.com": [3781], "www.hungerhost.com": [7619], "ask.puppetlabs.com": [13232], "alex.se": [793], "www.parkmodelsdirect.com": [12403], "f5.com.cn": [5545], "id.e-generator.com": [4839], "gis.ngdc.noaa.gov": [11083], "www.redfin.com": [13696], "www.victoriassecret.com": [17672], "www.e-nls.com": [11398], "moneyandmarkets.com": [18188], "www.*.umaine.edu": [17321], "assets.fiercemarkets.net": [5776], "www.svazurich.ch": [19644], "astyle-src.alicdn.com": [805], "*.tnnet.fi": [15838], "mobihand.com": [10491], "cdmi.engineering.osu.edu": [11760], "consult.telford.gov.uk": [19669], "tickertech.com": [16412], "blockexplorer.com": [2083], "avadirect-freedomusainc1.netdna-ssl.com": [1438], "www.cari.net": [2518], "asia.norton.com": [11505], "ads.adfox.ru": [524], "www.luxurycustomwheels.com": [9677], "codecademy.com": [3361], "source.domaintools.com": [4660], "www.ghbtns.com": [6626], "linux.org.ru": [9408], "govtrequests.facebook.com": [5620], "bscmembers.leeds.gov.uk": [19353], "www.cavium.com": [2911], "www.9to5mac.com": [18428], "www.notalwaysromantic.com": [19441], "linkbucks.com": [9375], "help.discussions.zoho.com": [18884], "iojs.org": [8338], "www.filestack.com": [5801], "www.clockworkmod.com": [3273], "blog.pay4bugs.com": [12466], "hacks.owlfolio.org": [12179], "download.sonatype.com": [15132], "stocktwits.com": [15478], "m.cff.ch": [15693], "technology.wustl.edu": [17993], "arbeidskontoret.piratpartiet.no": [12724], "www.theglobeandmail.com": [6743], "proxery.com": [13177], "www.absolute.com": [430], "price.ua": [13049], "letsencrypt.org": [9264], "www.whitehatters.academy": [19757], "www.vianet.co.uk": [17663], "bluekrypt.com": [2134], "*.beaverbrooks.co.uk": [1742], "bclaconnect.ca": [1508], "security.symantec.com": [15715], "sigmabeauty.com": [14778], "grupfoni.com": [6986], "blackducksoftware.com": [2045], "www.codeschool.com": [3357], "thefrozenfire.com": [16336], "nodesource.com": [11451], "erfolgscenter.1und1.de": [68], "uniformwares.com": [17186], "cambeywest.com": [2765], "forums.asmallorange.com": [214], "www.verisign.com.tw": [17623], "www.extensis.com": [5523], "www.exavault.com": [5474], "www.nationale-it-security-monitor.nl": [11089], "wl.easydategroup.com": [785], "view.1688.com": [36], "danskebank.dk": [4145], "pip.verisignlabs.com": [17624], "*.wishabi.ca": [18372], "umassulearn.net": [17265], "www.nemid.nu": [11142], "reisen.tchibo.ch": [15985], "analytics.cloud.unity3d.com": [17220], "techverse.com.au": [16020], "www.physics.ohio-state.edu": [11761], "www.hello.tokyo": [7296], "blumen.tchibo.de": [15985], "cibc.com": [2601], "*.sportifik.com": [15290], "dnsdynamic.org": [4069], "cambridge.org": [2768], "wordentropy.org": [18432], "nature.com": [11104], "www.mirbsd.org": [10437], "ticketmaster.*": [16421], "azabani.com": [1479], "investors.marchex.com": [16380], "www.walderwyss.com": [17956], "*.nimenhuuto.com": [11409], "www.tppinfo.org": [18428], "hearinglosscure.stanford.edu": [15383], "nuclear.osu.edu": [11760], "www.securycast.com": [14538], "c2c.websupport.novell.com": [11530], "intensitylab.com": [8225], "maps.google.co.*": [6841], "*.wisc.edu": [17349], "ips-portal.iperceptions.com": [19275], "lp.bvg.de": [1582], "bauwerksinformation.htwk-leipzig.de": [7114], "careers.opendns.com": [11932], "atlasop.cern.ch": [2574], "oma.aalto.fi": [390], "new.autobytel.com": [1424], "www.maurus.net": [10086], "www.valleyfirstcu.org": [17533], "adherents.openstreetmap.fr": [12045], "brokentoaster.com": [2359], "www.positivessl.com": [12946], "www.morethantwo.com": [10586], "www.aberdeenshire.gov.uk": [412], "support.msi.com": [9792], "37signals.com": [118], "smetrics.sky.com": [14924], "www.bassetlaw.gov.uk": [1688], "www.weightlossplans.net": [12168], "yemeksepeti.com": [18674], "*.stratum0.org": [15512], "www.eduid.cz": [5097], "*.emediate.dk": [5202], "www.javadoc.io": [8530], "cumbriapartnership.nhs.uk": [10913], "fftfef.org": [5766], "www.contactprivacy.com": [3608], "iastudents.usc.edu": [17278], "ads.rubiconproject.com": [14014], "www.armyoutlet.de": [1206], "api.oscar.aol.com": [321], "www.greatdomains.com": [6906], "sso.id.kent.ac.uk": [17317], "italliance.com": [7843], "www.lorentzcenter.nl": [9611], "ci.debian.net": [4273], "www.protocolesevaluation.svs.ulaval.ca": [17229], "ifex.org": [7723], "login.liu.se": [9084], "simcity.com": [14808], "cuny.edu": [3189], "www.knopper.net": [8946], "*.jappix.com": [8518], "ww.stallman.org": [15373], "magazine.fastcompany.com": [5670], "mcis.erdf.communities.gov.uk": [19073], "jotformpro.com": [8637], "request.cias.rit.edu": [13434], "digitalnewsagency.com": [4494], "www.liteaddress.org": [9460], "hitbox.com": [7423], "freshports.org": [6206], "www.nhlbi.nih.gov": [10926], "download.qfxsoftware.com": [13282], "piraten-mfr.de": [12707], "business.zoho.com": [18884], "developer.ibm.com": [7675], "*.gondor.co": [6824], "heinlein-support.de": [7286], "untappd.com": [17371], "api.gumroad.com": [7020], "cryptography.com": [3895], "xda-developers.com": [18507, 18508], "login.stormpost.datranmedia.com": [13226], "tag.beanstock.co": [1733], "www.corbinfisher.com": [3660], "www.cloudlinux.com": [3290], "www.structures.ucsd.edu": [16939], "www.wordcamp.org": [18427], "club.arte.tv": [18966], "enterprise.github.com": [6680], "support.amd.com": [925], "ksl.com": [8751], "www.cybersecuritychallenge.org.uk": [3955], "www.cipherlawgroup.com": [3150], "www.bunchball.net": [2425], "typef.com": [4343], "www.sharedvalue.org": [14673], "*.filepost.com": [5793], "newsroom.intel.com": [8208, 8209], "sportonline.calderdale.gov.uk": [2735], "images.pornworms.com": [12929], "frid.ge": [6211], "i2.c.dk": [2498], "*.duracellcloud.com": [4807], "pinescharter.net": [12679], "ask.fedoraproject.org": [5726], "www.metaboli.co.uk": [10302], "tracking.adjug.com": [526], "www.hertz.co.id": [7350], "maps.aimpulse.com": [743], "cas.ki.se": [8725], "makemytrip.com": [9905], "www.purina.com": [13245], "secure.f5.com": [5546], "starfieldtech.com": [15403], "darkcoinfoundation.org": [4151], "getdigital.fr": [6572], "www.bezosexpeditions.com": [1834], "hq.appsflyer.com": [1131], "petsymposium.org": [12242], "media4.woolworths.com.au": [18422], "www.ti.com": [15815, 16152], "w00t.com": [18424], "bizappstoday.progress.com": [13132], "www.crackstation.net": [3750], "125.stanford.edu": [15383], "members.mlive.com": [9760], "www.edx.org": [5070], "maec.mitre.org": [10459], "lichtblick.de": [9325], "chat.cesky-hosting.cz": [19051], "notedcode.com": [11524], "*.giac.org": [6330], "packagelab.com": [12314], "lendo.se": [9247], "skatelescope.org": [19595], "mobify.com": [10494], "info.spkrb.de": [19619], "nfadmin.net": [10905], "www.ingdirect.es": [8137], "www.radiox.ch": [13516], "hu.cloudflare.com": [3285], "banners.webmasterplan.com": [18131], "www.parents.wustl.edu": [17993], "mlno6.com": [9761], "apache.org": [1087], "researchcompliance.vt.edu": [17740], "www.dietrolldie.com": [18428], "boostbybenz.com": [2212], "reef.wwf.ch": [19768], "scribus.net": [14417], "neteller.com": [12068], "forums.comcast.com": [3461], "sthelens.greenparty.org.uk": [6925], "my.variomedia.de": [17567], "bbc.com": [1497], "www.knowingly.com": [19341], "brevado.com": [2307], "www.cms.hhs.gov": [7062], "www.365ticketsscotland.com": [117], "api.orgsync.com": [12102], "download.moodle.org": [10575], "adman.otenet.gr": [12132], "secure.ebis.ne.jp": [5040], "www.limited2art.com": [9358], "*.uva.nl": [17458], "www.nartac.com": [11038], "www.alumfx.com": [895], "cdn.livestream.com": [9514], "fr.rpmfind.net": [14004], "www.certible.com": [2967], "m.rubygems.org": [14020], "crowdsupply.com": [3823], "dc.nserver.ru": [11548], "youraccount.leeds.gov.uk": [19353], "techidiots.net": [16028], "www.epic.org": [4943], "erhverv.canaldigital.dk": [2803], "staff.lib.ncsu.edu": [11492], "work.1688.com": [36], "planningconsult.rbkc.gov.uk": [19538], "cp-vps.rentalserver.jp": [13774], "*.svbtle.com": [15670], "bbseyes.com": [1714], "onlinefamily.norton.com": [11505], "cltglobal.com": [2624], "booktype.pro": [2206], "www.litehosting.org": [9456], "swehack.org": [15686], "3k.mail.ru": [9874], "sozialwissenschaften.htwk-leipzig.de": [7114], "docs.aws.amazon.com": [915], "www-cs.stanford.edu": [15383], "www.elafnettv.com": [5139], "www.respectnetwork.com": [13812], "sencha.com": [14576], "global.riverbed.com": [13907], "wiki.hslu.ch": [7583], "*.hafner-ips.com": [7162], "neteller-group.com": [12068], "*.rsys.net": [14010], "wiki.enigmabox.net": [5274], "sbarmen.no": [14321], "secure.worldcommunitygrid.org": [18447], "lbmns.merton.gov.uk": [10287], "crick.ac.uk": [19090], "*.pdu.edu": [12940], "www.digitalpacific.com.au": [4496], "gerrit.chromium.org": [3119], "www.eia.gov": [4917], "m.toledo.kuleuven.be": [8816], "web-cdn.ttvnw.net": [16888], "glasgow.pirateparty.org.uk": [12714], "konto.nazwa.pl": [11117], "movableink.com": [10628], "www.aci-europe.org": [248], "uni-potsdam.de": [17333], "akcdn.okccdn.com": [11770], "mesosphere.com": [10290], "www.holarse-linuxgaming.de": [7446], "*.unisys.com": [17203], "www.launchkit.io": [9167], "online.s-pankki.fi": [14060], "mangolanguages.com": [9952], "hboshopeu.com": [19243], "www.screencraft.org": [14408], "www1-cdn.dell.com": [4335], "a-ads.com": [215], "gavinhungry.com": [6474], "engineering.riotgames.com": [13894], "media.netapp.com": [11182], "www.ubuntuforums.org": [17104], "service-center.1und1.de": [68], "www.pofssavecredit.co.uk": [12954], "accountsolution.courierpostonline.com": [3715], "www.blackfoot.co.uk": [2053], "discussions.udacity.com": [17110], "news.stanford.edu": [15383], "cfda.gov": [2894], "recombu.com": [13648], "learn.equalit.ie": [4947], "www.appsecute.com": [1134], "images-uat.freescale.com": [6183], "www.xperiastudio.com": [18583], "summit.digitalgov.gov": [4489], "social.kennedy-center.org": [19335], "viviscal.co.uk": [17799], "s4.uicdn.net": [16958], "modalitypartnership.nhs.uk": [10913], "*.vcint.com": [17670], "www.seattleix.net": [14452], "openknowledge.worldbank.org": [8259], "cert-bund.de": [2576], "*.airbnb.co.uk": [749], "assets.razerzone.com": [13587], "rcfp.org": [13404], "cdn.casualcollective.com": [8729], "wiki.servicenow.com": [14622], "www.intercom.io": [8244], "mountaincode.eu": [10619], "duracellcloud.com": [4807], "freelansim.ru": [6178], "newscientistsubscriptions.com": [11299], "tickets.events.ccc.de": [2538], "*.fanatics.com": [5649], "jira.hppd.intel.com": [8209], "www.lansforsakringar.se": [9151], "bloodcenterblog.stanford.edu": [15383], "kinguin.net": [8902], "services.netbeans.org": [11185], "greyhound.com": [6947], "pv.gov.sa": [14306], "cloud-images.ubuntu.com": [17102], "beta.skype.com": [14938], "*.st-andrews.ac.uk": [15351], "media.wix.com": [18383], "dg.travelnow.com": [16692], "www.cp.org": [2801], "securelogin.bp.poste.it": [12965], "gcaptain.com": [6311], "listserv.heanet.ie": [7269], "www.piraten-basel.ch": [12284], "www.drought.gov": [4772], "adultfriendfinder.com": [643], "packagecontrol.io": [12313], "cryptopp.com": [3888], "www.tinhte.vn": [16474], "www.veloviewer.com": [17599], "survey.admaster.com.cn": [530], "qconnewyork.com": [13280], "portal.rfsuny.org": [13421], "padsdel.cdnads.com": [2918], "secure.webhost4life.com": [18066], "www.yaca.yandex.kz": [18652], "*.landsend.com": [9140], "snapchat.com": [15029], "humanism.org.uk": [7613], "www.rcicruiseholidays.com": [18489], "account3000.com": [458], "*.inwx.es": [8231], "www.minohubs.com": [10430], "www.acoustid.org": [476], "hackademix.net": [7139], "img.linuxfr.org": [9410], "opacsprd.stanford.edu": [15383], "search.wikileaks.org": [18291], "www.goodsie.com": [6831], "climate-diplomacy.org": [3266], "*.imdb.com": [7756], "docs.pivotal.io": [12730], "www.managewp.org": [9941], "graphics.cs.illinois.edu": [17258], "rainn.org": [13396], "gratisoft.us": [6897], "daac-news.ornl.gov": [11693], "fusionhelp.oracle.com": [12082], "shareasale.com": [14661], "dealers.autosite.com": [1432], "www.readplaintext.com": [13614], "*.spi-inc.org": [15097], "*.jobs.ch": [19322], "piwik.cc.kuleuven.be": [8816], "ad.rmxads.com": [13881], "on.spiceworks.com": [15266], "webapps.initial-website.com": [19292], "maxspeedcdn.com": [10093], "www.cdn.webrtc-experiment.com": [18081], "hex-rays.com": [7379], "l-auto-entrepreneur.org": [9056], "www.services.irctc.co.in": [7812], "easycruit.com": [5023], "*.fvn.no": [6052], "www.wellingborough.gov.uk": [18194], "docker.io": [4617], "*.oregon.gov": [15421], "mp3skull.is": [9779], "forums.asp.net": [353], "ldap.hackerspace.pl": [7149], "articulate.com": [1232, 1233], "estilo.catracalivre.com.br": [2908], "ir.monster.com": [16380], "girlsoutwest.com": [6667], "www.secdev.ca": [14457], "www.fagms.net": [5629], "us.playstation.com": [12795], "www.desy.de": [4399], "www.lpi.org": [9095], "gittip.com": [6685], "osgeo.org": [11669], "filescrunch.com": [5803], "stats.cloud.online.net": [11870], "draytek.com": [4746], "bo.getjaco.com": [6607], "www.isiknowledge.com": [18107], "pro.stubhub.co.uk": [15534], "*.ekomi.de": [4921], "tele2.se": [16070], "app-community.canvaslms.com": [2814], "*.spatialbuzz.com": [15231], "www.spdns.de": [14154], "tune.yandex.kz": [18652], "mail.aalto.fi": [390], "www.9seeds.com": [213], "armedforcesday.org.uk": [1203], "www.whisky.de": [19756], "buildbetter.software": [2411], "www.bob131.so": [2170], "static7.businessinsider.com": [2454], "cache1.allpostersimages.com": [836], "partners.nvbugs.nvidia.com": [10985], "flowingdata.com": [5945, 5946], "greenpeace.de": [6936], "anxpro.com": [1076], "www.gitbook.com": [6674], "*.br.inter.net": [8229], "www.webxmedia.co.uk": [17900], "www.youtube.hr": [18709], "*.readyhosting.com": [13618], "www.mobilitaet2050.vcd.org": [17474], "llnl.gov": [9181], "www.apel.asso.ulaval.ca": [17229], "wiki.bedis.eu": [1745], "*.careers.talemetry.com": [15919], "www.unicefusa.org": [17182], "status.feral.io": [5751], "static.ivpn.net": [7869], "profitbricks.co.uk": [13127], "www.young.hillingdon.gov.uk": [7410], "euroflorist.no": [5407], "market.scribblelive.com": [14413], "www.netmile.co.jp": [11199], "www.kalveboderne-rundt.hvidovrekajakklub.dk": [7636], "www.screenshot.ru": [14410], "www.cryptsy.com": [3892], "irunsafe.com": [14035], "*.smowtion.com": [15013], "ledgerscope.net": [9221], "blog.helpjuice.com": [7309], "co.godaddy.com": [6773], "www.compliance.idoxgroup.com": [19281], "zh.cloudflare.com": [3285], "map.geo.admin.ch": [19648], "abiresearch.com": [244], "*.fema.gov": [5715], "dictionaryblog.cambridge.org": [18428], "engineering.leeds.ac.uk": [17318], "www.simrussia.com": [14806], "tid.gov.hk": [7077], "*.pirateparty.gr": [6915], "ad.adview.pl": [666], "eai.org": [5150], "www.copia.is": [3651], "www.getawaygrey.com": [6565], "www.toughchoices.co.uk": [19690], "*.arstechnica.com": [1217], "static.site24x7.com": [14861], "app.dialshield.com": [1464], "www.getmeadow.com": [6598], "www.crick.ac.uk": [19090], "forum.processing.org": [13120], "www.anatoomikum.ut.ee": [17069], "online.havering.gov.uk": [7244], "beta.devon.gov.uk": [4428], "ashared.5min.com": [178], "templates.office.com": [11743], "www.cryptopia.co.nz": [3887], "static.couponcabin.com": [3711], "wiki.rtems.org": [13472], "testcloud.io": [16145], "*.tt.omtrdc.net": [11805], "www.365tickets.co.uk": [113], "detail.tmall.com": [19684], "www.prosody.im": [13161], "assets.whicdn.com": [17905], "secure.aces.illinois.edu": [17258], "antipolygraph.org": [1067], "longnow.org": [9591], "lib.ncsu.edu": [11492], "www.uspirates.org": [17066], "www.network23.org": [11265], "www.enigmail.net": [5275], "dagensgetaway-dbapp.netdna-ssl.com": [4108], "bet365affiliates.com": [18992], "*.tremendesk.com": [569], "badwarebusters.org": [1612], "doublerobotics.com": [4713], "developers.coinbase.com": [3402], "hawaiianair.com": [7246], "blackboard.com": [2051], "forum-fr.msi.com": [9792], "*.deadspin.com": [4251], "www.opsmate.com": [12062], "linuxmusicians.com": [9414], "marmotte.net": [10027], "*.stockton.edu": [15479], "activatemychannels.sky.com": [14924], "ecrimeresearch.org": [4887], "antonius.imn.htwk-leipzig.de": [7114], "dmp.data.jhu.edu": [16296], "help.gocoin.com": [6771], "citrusbyte.com": [3181], "ing.nl": [7769], "khub.net": [8724], "myfiles.yandex.com.tr": [18649], "www.linuxfound.info": [9411], "api.metacpan.org": [10297], "cdn.reedbusiness.com": [13706], "www.wammo.co.nz": [8928], "bitcoinshop.us": [1970], "nasaimages.org": [4089], "www.ipwnage.com": [7808], "www.ge.ch": [19648], "mutuals.fsa.gov.uk": [5597], "media1.congstar-media.de": [3576], "www.grepbugs.com": [6943], "langui.sh": [9147], "atname.ru": [360], "blog.feedly.com": [18428], "*.blindseeker.com": [19008], "www.krystalstatus.co.uk": [18428], "o.twimg.com": [16877], "*.thompsonhotels.com": [16378], "planet.qt.io": [13315], "bmsoft.axosoft.com": [1477], "domainwho.is": [4661], "www.easa.europa.eu": [5421], "itsakhandbok.irt.kau.se": [8707], "mville.edu": [9955], "securitylabs.websense.com": [18083], "lb.ca": [9186], "chembiofinder.cambridgesoft.com": [2769], "www.open-mpi.org": [11907], "providers.filepicker.io": [5801], "alzheimers.org.uk": [901], "sj.se": [14125], "forms.cotswold.gov.uk": [19081], "*.rsna.org": [13520], "www.agnitum.com": [730], "b20.banan.cz": [1489], "www.condenast.com": [3552], "*.mediapost.com": [10162], "alditalk.de": [299], "photos-c.ak.fbcdn.net": [5700], "*.m-pathy.com": [9692], "www.dbs.com": [4010], "cloudtrax.com": [3297], "ru-support.evernote.com": [5449], "adserver.adreactor.com": [533], "collector.githubapp.com": [6680], "postwire.com": [12984], "ktk.de": [8753], "todaysdigitalsolutions.websitealive.com": [18149], "connect.asana.com": [1242], "i4.social.s-msft.com": [14058], "www.cumbria.police.uk": [3918], "notalwaysworking.com": [19441], "playvid.com": [12797], "*.groupon.gr": [6975], "lyrk.de": [9687], "kintera.com": [8912], "www.tyj.fi": [16910], "bit-sentinel.com": [1919], "googleblog.blogspot.*": [2113], "virtkick.com": [17745], "auth.alipay.com": [817], "dailyhiit.com": [4115], "p-tano.com": [12200], "*.ssl-images-amazon.com": [915], "webglobe.sk": [18119], "widgets.amung.us": [18267], "interc.pt": [8242], "modus.nike.com": [11401], "my.htw-berlin.de": [7112], "ciencias.unizar.es": [17356], "comdirect.de": [19072], "tandlakarforbundet.se": [15942], "nanasilvergrim.cyberguerrilla.org": [3961], "en-it.dict.cc": [4455], "www.webspace4all.eu": [18154], "benefits.elmbridge.gov.uk": [5174], "www.vpnservice.ru": [17506], "www.sit.fraunhofer.de": [6112], "origin-cdn.rawgit.com": [13580], "zuerich.ch": [19805], "www.eminhuseynov.com": [5210], "ureport.foxnews.com": [11320], "www.superdesk.pro": [15626], "analytics.gravity.com": [6901], "www.bitmovin.com": [2010], "www.mappedinisrael.com": [9973], "*.gatwickairport.com": [6469], "sf.cdn.gmru.net": [6349], "ozbargain.com.au": [12195], "blogautomobile.fr": [2104], "www.ecologylab.net": [8246], "buzzbytes.net": [2476], "olin.edu": [6104], "search.us.checkpoint.com": [3047], "akademy2010.kde.org": [8718], "www.hackerone.com": [7142], "parsely.com": [12414], "d.liadm.com": [7793], "rt.openssl.org": [11970], "hotspot.norton.com": [11505], "feralhosting.com": [5752], "gritdigital.co.uk": [6959], "feedback-form.truste.com": [15856], "media6.congstar-media.de": [3576], "*.ehawaii.gov": [7245], "*.buerger-cert.de": [2396], "obedovat.sk": [11696], "www.ai.ai": [1428], "lists.citizenweb.io": [3173], "litle.com": [9470], "smzdm.com": [15017], "api.tiles.mapbox.com": [9968], "nt.uni-ulm.de": [19715], "eatnow.com.au": [19145], "blog.onedrive.com": [11831], "users.vimention.com": [17716], "forum.mobilism.me": [19404], "atglance.web.cern.ch": [2575], "privateinternetaccess.com": [13097], "partner.yandex.by": [18648], "id.unity.com": [17220], "zerties.org": [18847], "www.techjourney.net": [16023], "*.primary001.net": [8241], "ccsdlib.ccsd.cnrs.fr": [6195], "derecho.unizar.es": [17356], "www.proxify.com": [13178], "*.blacknight.com": [2054], "conversionsbox.com": [3627], "www.landalparkshop.*": [18490], "ingdirect.es": [8137], "my.teslamotors.com": [16142], "bloomberg.com": [2119], "blindseeker.com": [19008], "zapchain.com": [18789], "quantixtickets1.com": [13339], "*.blogspot.fi": [2107], "img.staticmy.com": [15432], "www.lastcall.com": [15851], "www.notefly.org": [11521], "status.bintray.com": [1897], "playerattack.com": [12801], "www.java.net": [8525], "*.blogspot.fr": [2107], "juridicos.afip.gob.ar": [18945], "overlakehospital.org": [12166], "jeunes.cnes.fr": [2634], "*.server314.com": [14603], "hotscripts.com": [7551], "shop.github.com": [6680], "watsoninstitute.org": [18005], "globalservices.bt.com": [1551], "cdn.banx.io": [1657], "www.livecorp.com.au": [9486], "json8.nytimes.com": [11000], "analysiscenter.veracode.com": [17614], "www.navynews.co.uk": [13995], "boounce.com": [2219], "university.mongodb.com": [10553], "*.griffith.edu.au": [6955], "shop.12wbt.com": [10343], "www.ncei.noaa.gov": [11083], "toi.ivwbox.de": [15774], "www.duolingo.com": [4805], "middelburg.nl": [11132], "edit.ftc.gov": [5720], "gan.taobao.com": [15952], "pimg.mycdn.me": [10824], "timos.me": [16409], "www.net-backup.com": [11173], "tppnocertification.org": [15852], "firmware.netgate.com": [5866], "logentries.com": [9553], "listes.gresille.org": [6945], "www.charterourcommunity.com": [3023], "jdsupra.com": [8428], "megayoutubeviews.com": [10233], "cdes.trafficforce.com": [16651], "cloud.seafile.com": [14436], "download-codeplex.sec.s-msft.com": [3373], "admin.zsl.org": [18900], "*.lithium.com": [9469], "bernstein.com": [851], "databases.library.jhu.edu": [16296], "www.l-auto-entrepreneur.org": [9056], "www.firebase.com": [5855], "schoolpartnership.wustl.edu": [17993], "ars.to": [1217], "sublimegit.net": [15560], "pda.blogs.yandex.by": [18648], "cdn.chefkoch.de": [3058], "*.t411.io": [15781], "imga.nxjimg.com": [11591], "zenimax.com": [18829], "www.3min.de": [134], "chinasmbmarketplace.cisco.com": [3162], "www.cult-labs.com": [3914], "bathnes.gov.uk": [1689], "dot-bit.org": [4691], "*.traveldoctor.com.au": [16691], "www.guru.de": [19233], "www.adyadvantage.com": [673, 674], "www.ocforums.com": [12165], "euro-ix.net": [5401], "npmjs.org": [11540], "ocg.cancer.gov": [2805], "cloudmining.guru": [3310], "ieee-elearning.org": [7718], "web.redding.com": [4988], "*.wiredminds.de": [18364], "www.notalwayshopeless.com": [19441], "www.youtube.kr": [18709], "authorization.api.qbrick.com": [13300], "enfuseconference.com": [7006], "jekit.codeforamerica.org": [3359], "acml.osu.edu": [11760], "www.coinsecure.in": [3409], "github.com": [6680], "ssos.mylifetime.com": [10767], "www.stateoftheinternet.com": [15422], "www.masternet.org": [10054], "www.zubu.re": [19804], "www.nccs.nasa.gov": [10869], "reboot.vas-hosting.cz": [19729], "flossprize.apc.org": [1294], "www.riscosopen.org": [13897], "www.ebayclassifieds.com": [4874], "files.kartfighter.com": [8800], "my.outbrain.com": [12150], "altmetric.com": [892], "www.lacrossetechnology.com": [9119], "archive.sans.org": [14072], "typesafe.com": [16915], "newsinhealth.nih.gov": [11052], "gajim.org": [6406], "*.makeuseof.com": [9907], "err.taobao.com": [15952], "img2.xcart.com": [18505], "home.java.net": [8525], "scraperwiki.com": [14406], "www.wine-staging.com": [18350], "*.vichan.net": [17668], "www.provost.usc.edu": [17278], "malideveloper.arm.com": [339], "static.plugrush.com": [12824], "agenda.ct.infn.it": [7766], "conference.cpanel.com": [2651], "images.community.wizards.com": [18387], "intuitlabs.com": [8305], "www.courses.osu.edu": [11760], "standardebooks.com": [15380], "www.hostdime.com": [7510], "www.usertags.jeremybieger.com": [17087], "kop11.com": [8741], "centreon.com": [2957], "www.bulletproofmeteor.com": [2416], "dnfsbstg.prod.acquia-sites.com": [4310], "support.eiffel.com": [5124], "dotdeb.org": [4699], "i3.services.social.s-msft.com": [14058], "www.zapier.com": [18791], "ibutton.maximintegrated.com": [10096], "pocketmatrix.com": [12836], "www.chicagofed.org": [3071], "pathways.nice.org.uk": [10921], "app-de8.resrc.it": [13599], "oascentral.post-gazette.com": [12728], "www.iedgmbh.de": [7712], "slashbits.com": [14945], "cafemakers.com": [2718], "ads2.zeusclicks.com": [18854], "idp.infn.it": [7766], "kyivpost.com": [9052], "www.weusecoins.com": [18026], "*.ulule.com": [17139], "search.bt.com": [1551], "secure.raynersw.com": [13586], "www.canddi.com": [19036], "sha2.kuix.de": [9032], "rheden.nl": [11132], "consumersunion.org": [3604], "popup.questionpro.com": [15657], "*.bancastato.ch": [19333], "sata.seagate.com": [14437], "forums.zarafa.com": [18795], "deel.dict.cc": [4455], "www.gnusocial.no": [6362], "www.cyber.law.harvard.edu": [7219], "itpc.uillinois.edu": [16960], "sdm.osu.edu": [11760], "fitbit.com": [5887], "audiogo.com": [1358], "who.godaddy.com": [6773], "www.tid.gov.hk": [7077], "ifap.ed.gov": [4889], "coveritlive.com": [3735], "www.fastlane.nsf.gov": [11060], "sonar.tocco.ch": [16524], "www.pcug.org.au": [12218], "assets.bunchball.net": [2425], "api.mediaklik.com": [19389], "lambda-tek.com": [9136], "www.magentocommerce.com": [9851], "forum.lugons.org": [9108], "ads.ad-center.com": [511], "ipk.fraunhofer.de": [6112], "store.ppy.sh": [13006], "authentification.ulaval.ca": [17229], "blog.disconnect.me": [4543], "yandex.ua": [18656], "watch.yandex.com": [18651], "opensource.com": [12044], "www.formatdynamics.com": [6043], "games.samsclass.info": [14263], "domain.com": [4648], "www.facebook.jp": [5623], "pm.cabinetoffice.gov.uk": [2701], "freeprivacypolicy.com": [6716], "weblate.org": [18127], "*.sapo.pt": [14297], "brandspankingnew.net": [2281], "answers.oculusvr.com": [11722], "www.spendabit.co": [15261], "*.asu.edu": [1194], "identitymanager.eems.usda.gov": [17209], "more-onion.com": [10585], "www.kasandbox.org": [8873], "www.web-registry.com": [18045], "*.koding.com": [8953], "community.giffgaff.com": [19217], "secure.xfinity.com": [19784], "www.gotfuturama.com": [6853], "forum.rizon.net": [13911], "homeinsurance.com": [7468], "www.updateframework.com": [17386], "cdn-static.cloudflare.com": [3285], "www.turn.com": [16840], "www.yaca.yandex.by": [18648], "app.beanstalkdata.com": [1732], "search.etargetnet.com": [5375], "mobile.yandex.com.tr": [18649], "wwwn.cdc.gov": [19046], "eportfolio.plymouth.ac.uk": [12833], "*.facebookcorewwwi.onion": [5621], "help.sharethis.com": [14668], "www.techsay.com": [16017], "www.itbit.com": [8384], "arneswinnen.net": [18964], "groups.live.com": [9483], "shop.zend.com": [18821], "ffgg.ulaval.ca": [17229], "cerit-sc.cz": [2571], "androidfilehost.com": [1008], "staff.ask.sydney.edu.au": [19649], "cmems.stanford.edu": [15383], "*.successfactors.com": [15572], "allods.cdn.gmru.net": [6349], "curated.co": [3924], "ssdp.org": [15538], "gpodder.net": [6377], "socialcube.net": [15070], "bugs.kde.org": [8718], "safeassign.blackboard.com": [2051], "dfat.gov.au": [4370], "*.ticketone.it": [16414], "jbp.io": [8539], "www.zwmail.de": [18927], "stefan-betz.net": [15461], "www.m3server.com": [9697], "images.virtualboximages.com": [17749], "www.hastings.gov.uk": [7234], "cdn.tofour.net": [16520], "www.hotmail.co.uk": [7558], "wap.tv.mail.ru": [9874], "files2.enaza.ru": [5230], "www.billing.helpjuice.com": [7309], "www.kemi.se": [8719], "www.lyft.me": [9680], "kmh.se": [8737], "secure.blogtalkradio.com": [2103], "www.o2.sk": [16076], "www.finanswatch.dk": [5829], "beacon-us-east.rubiconproject.com": [14014], "scienceconference.stanford.edu": [15383], "it24tjanster.idg.se": [7705], "binarydefense.com": [1891], "custhelp.consumerreports.org": [13882], "www.glittering.blue": [19221], "thumbnails.5min.com": [178], "mikewest.org": [19400], "conetix.com.au": [3565], "newsreview.com": [11339], "cimbclicks.com.sg": [2607], "loop.nigms.nih.gov": [11052], "asseenonresponsetv.com": [1276], "www.xignite.com": [18572], "www.p6r.com": [12202], "as112.net": [343], "www.givetolocal.stanford.edu": [15383], "www.news.osu.edu": [11760], "educationguide.tue.nl": [15874], "www.needmorehits.com": [11133], "infra.aircrack-ng.org": [18948], "*.alternate.be": [880], "ad2.netshelter.net": [11208], "www.membercentral.com": [10244], "*.onlinecreditcenter6.com": [11880], "adform.com": [585], "cloudproxy.sucuri.net": [15575], "wikitest.ro.vutbr.cz": [17522], "www.govmetric.com": [6866], "www.ginac.de": [6635], "door.sudoroom.org": [15580], "www.mygoldencharter.co.uk": [6813], "pt.verbling.com": [17615], "*.volusion.com": [17837], "accounts.illumina.com": [7968], "thesexyhouse.com": [14646], "www.xkcd.org": [19786], "xfire.com": [18569], "support.cloudshark.org": [19068], "shop.entheogene.de": [5298], "tox.chat": [16616], "boingo.com": [2182], "www.spielfuerdeinland.de": [15273], "*.devx.com": [18074], "data.iana.org": [7667], "www.fornex.com": [6047], "cloudflarechallenge.com": [3286], "workorder.console.aliyun.com": [821], "lastcall.com": [15851], "vpge.stanford.edu": [15383], "www.ingdirect.com.au": [7768], "wien.neos.eu": [10899], "www.insight.sensiolabs.com": [14586], "secure.switchkonnect.com": [15702], "newfarmers.usda.gov": [17209], "messages.yale.edu": [18642], "simpleforms.scripts.wvu.edu": [18212], "cdn.broadcasthe.net": [2354], "purechat.axosoft.com": [1477], "news-gazette.com": [11322], "www.creativeskills.be": [3786, 3787], "ias.1und1.de": [68], "www.kqed.org": [8747], "www.dukgo.com": [4792], "www.dot-bit.org": [4691], "www.surfingip.info": [3533], "dnuk.com": [4482], "onebitbug.me": [11854], "centralcomputers.com": [2954], "www.medicare.gov": [19392], "shop.wattpad.com": [18006], "www.freebusy.io": [6125], "www.gentoo-art.org": [19461], "youtube.co.ae": [18709], "static.alipay.com": [817], "lg.schnellno.de": [14361], "nccgroup.com": [10879], "iab.org": [7663, 7664], "rcking.eu": [13405], "btckan.com": [1561], "www.ai-online.com": [1428], "cs.berkeley.edu": [17240], "stackexchange.com": [15359], "*.linkedin.com": [9376], "cloud.digitalocean.com": [4495], "*.marathonbet.com": [9979], "audentio.com": [1348], "www.bmb.htwk-leipzig.de": [7114], "crn.verticalsearchworks.com": [2659], "confluence.isc.org": [7821], "www.mydatapipe.net": [10804], "sog.objective.co.uk": [19454], "solid.kde.org": [8718], "order.store.yahoo.co.jp": [18640], "img1.picload.org": [12661], "translate.hootsuite.com": [7488], "www.samsungtechwin.co.kr": [14270], "pgsql.pipni.cz": [12257], "engineering.groupon.com": [6974], "webmailcluster.1and1.co.uk": [53], "www.kouio.com": [8997], "centrance.com": [2588], "dm-mailinglist.com": [4050], "1d4.us": [57], "en.avaaz.org": [1437], "www.is.gd": [19306], "business.spectrum.com": [15248], "premiumsupport.kaspersky.com": [8806], "product.voxmedia.com": [17852], "www.variomedia.de": [17567], "econ.st": [1920], "go.eu.bbelements.com": [1713], "coventry.greenparty.org.uk": [6925], "a.dilcdn.com": [4518], "www.qtdeveloperdays.com": [13317], "intranet.havering.gov.uk": [7244], "trade.cex.io": [2587], "www3.netflix.com": [11229], "fusioncrm.oracle.com": [12082], "drugscience.org.uk": [4778], "y.3g.qq.com": [13285], "cdnjs.com": [2921], "people.redhat.com": [13675], "myucsdchart.ucsd.edu": [16939], "bap.navigator.web.de": [18050], "marvin.linux-mips.org": [9413], "*.myopenid.com": [8508], "ivoox.com": [7871], "secure.oron.com": [12112], "kanbox.com": [8779], "res-5.cloudinary.com": [3307], "www.pixcept.de": [12735], "hereplus.me": [7328], "mirror.fxprime.com": [5610], "apps.bhw.de": [1517], "www.webkit.org": [18125], "www.chainlove.com": [2981], "ip3.htwk-leipzig.de": [7114], "rockpaperphoto.com": [13936], "www.choicecheapies.co.nz": [12195], "www.governmentattic.org": [6872], "jimg.dk": [8573], "www.ericw.us": [5342], "*.campuspack.net": [2785], "blog.wasilczyk.pl": [17995], "om.nl": [12031], "linuxvoice.com": [9425], "api.digicert.com": [4473], "concrete5.org": [3549], "www.russellgroup.ac.uk": [14042], "www.vispashop.com": [17780], "innovwthrdev.uwm.edu": [17294], "blog.docker.io": [4617], "wikimedia.ch": [18296], "gradwell.com": [6883], "safebooru.donmai.us": [19125], "view.vzaar.com": [17883], "widgets.yandex.kz": [18652], "photos.sky.com": [14924], "classymotherfucker.com": [3219], "thurrott.com": [16407], "rsicc.ornl.gov": [11693], "www.labcorp.com": [9122], "www.ostel.co": [12128], "*.sw-in.de": [15369], "diy.soylent.com": [15199], "fellowsblog.kiva.org": [8926], "eski.harita.yandex.com.tr": [18649], "blog.verticalacuity.com": [18428], "secure.audubon.org": [1364], "top-fwz1.mail.ru": [9874], "www.cisco.com": [3162], "www.openhost.co.nz": [12036], "www.mcvuk.com": [8227], "www.slipfire.com": [14965], "dvatril.cz": [4097], "socials.vice.com": [17666], "soutenir.amnesty.fr": [962], "www.calderdale.gov.uk": [2734], "www.wipmania.com": [17912], "www.hlat.us": [7123], "www.bluebird.com": [2145], "whatwg.org": [17904], "moviii.isy.liu.se": [9084], "ipgmail.com": [7792], "www.teddyonlinejudge.net": [16057], "www.thelayoff.com": [19677], "status.voxmedia.com": [17852], "app.adjust.com": [597], "*.oneeyedman.net": [11846], "www.neobits.com": [11152], "wincent.com": [18335], "www.withsix.com": [18379], "*.whyy.org": [17910], "calypso.tux.org": [16855], "pressandpolicy.bl.uk": [2341], "www.ezimages.eu": [5004], "www.getdnsapi.net": [6612], "accounts.logme.in": [9547], "iberdrola.es": [7897], "www.rh.ulaval.ca": [17229], "wbginvestmentclimate.org": [8259], "kathrein.de": [8817], "servicepas.snsbank.nl": [14144], "peem.osu.edu": [11760], "virurl.com": [17489], "www.mytime.com": [10792], "carrefoursa.com": [2862], "*.ebaystatic.com": [4875, 4876], "hrms.onlinesbi.com": [11873], "baobao.taobao.com": [15952], "rebrick.lego.com": [9068], "www.astra.io": [1301], "pt.support.tomtom.com": [16540], "support.parature.com": [12396], "www.nytexaminer.com": [10999], "lhcb.web.cern.ch": [2575], "faq.opendoor.com": [12008], "www.garmin.com": [19208], "www.verisign.fr": [17623], "*.vimgs.ru": [17865], "secure.stage-gettyimages.*": [6621], "www.ellak.gr": [6915], "broadcast.ch": [19621], "*.facilities.udel.edu": [17249], "mypassword.andover.edu": [12623], "www.apple.com.cn": [1122], "www.pace.com": [12309], "mail082.websupport.sk": [18160], "genome.gov": [17027], "civica.co.uk": [19064], "kuppingercole.com": [9040], "ll-us-i5.wal.co": [17954], "www.healths.biz": [7265], "www.negotiatingsalary.com": [11136], "sp.parallels.com": [12392], "support.pingdom.com": [12687], "englearn.engineering.osu.edu": [11760], "op-co.de": [11901], "webmail.fit.edu": [5942], "www.silentcircle.com": [14786], "bitcoin.pl": [1967], "*.news.com.au": [11338], "cdn.forumwizard.net": [6064], "*.nimbushosting.co.uk": [11408], "*.legacy.com": [9227], "www.twattle.net": [16863], "www.ca.com": [2511], "www.ucw.cz": [17215], "memphiscourtside.com": [10253], "mobile.gmx.de": [6350], "www.video.ecc-platform.org": [4879], "jobcenter.jammerbugt.dk": [8507], "*.uni-mainz.de": [17326], "www.wildwestdomains.com": [18300], "sogo.nu": [14148], "sv.no": [14201], "newsletter.bitcoin.co.id": [1964], "social.bioware.com": [1903], "securestudies.com": [14495], "shop.wikileaks.org": [18291], "ccc-mannheim.de": [2535], "assets.cdn.gamigo.com": [6445], "myds.synology.com": [15738], "www.greyhound.ca": [6947], "m2.nsimg.net": [11550], "forums.bistudio.com": [2179], "consentmgt.wayf.dk": [17896], "kfs.usc.edu": [17278], "news.yandex.com.tr": [18649], "bitcoincharts.com": [1978], "smartlessons.ifc.org": [8259], "brandsaver.ca": [13121], "www.jiasule.com": [8566], "www.kissanime.to": [8920], "www.newsdaily.com": [11328], "static.internet.org.nz": [8277], "out.otaserve.net": [19470], "fagms.net": [5629], "www.travelocity.ca": [16698], "montereybayaquarium.org": [10567], "pcug.org.au": [12218], "www.hdserviceproviders.com": [7055], "www.decadent.org.uk": [4280], "www.perot.me": [12579], "www.choon.net": [3098], "images.boldchat.com": [2187], "cert.at": [2580], "*.googleusercontent.com": [6844], "bugs.wine-staging.com": [18350], "login.money.pl": [10547], "www.cheema.com": [3054], "www.schoolforge.net": [14363], "www.ruxcon.org.au": [14049], "muenchen.tv": [10687], "onesignal.com": [11843], "projecteuclid.org": [13138], "pages.zend.com": [18821], "software-security.sans.org": [14072], "www.kallithea-scm.org": [8772], "unsearcher.org": [17368], "pay.taobao.com": [15952], "american.edu": [934], "suse.com": [14199], "share.xmarks.com": [18579], "www.mindtools.com": [10411], "ahorroentinta.com": [16525], "nvisium.com": [10986], "cuaes.cals.cornell.edu": [3676], "gamefly.com": [6419], "*.livenation.com.au": [9481], "*.arpnetworks.com": [341], "www.liberty-human-rights.org.uk": [9300], "www.salford.gov.uk": [19562], "account.leagueoflegends.com": [9206], "update.clearlinux.org": [3233], "news.ad-stir.com": [513], "portal.htbridge.com": [7115], "store.snort.org": [15041], "questadmin.net": [6283], "gigaset.com": [6655], "www.mobile.yandex.com.tr": [18649], "api.enhancedsteam.com": [5273], "www.99bitcoins.com": [211], "invest.timeinc.com": [16460], "nic.io": [11381], "escholarship.org": [4971], "fundaciontelevisa.org": [6260], "si2.rgstatic.net": [13422], "www.community.spot.im": [15293], "seasonal.ly": [14450], "www.facebook.us": [5623], "www.seowizard.ru": [14588], "give.illinois.edu": [17258], "www.strato-mailcenter.com": [14193], "connect.withsix.com": [18379], "linkmaker.itunes.apple.com": [1120], "monthlyreview.org": [10568], "advq.yandex.by": [18648], "ertos.nicta.com.au": [10922], "porvir.catracalivre.com.br": [2908], "www.acm.wustl.edu": [17993], "www.linbit.com": [9078, 9079], "weblogs.asp.net": [353], "www.usshortcodes.com": [3485], "amoena.de": [979], "www.dozuki.com": [4732], "m.lowes.com": [9636], "docs.compose.io": [3526], "*.kyani.net": [9049], "*.zzounds.com": [18772], "quakenet.org": [13326], "licensing.fcc.gov": [5709], "ziggo.nl": [18862], "sundayworld.com": [15598], "oia.stanford.edu": [15383], "www.wienit.at": [18284], "modules.unrealircd.org": [17364], "gawker-labs.com": [6475], "marketplace.domaintools.com": [4660], "portal.mkk.com.tr": [9754], "cache1.artprintimages.com": [1225], "www.net-a-porter.com": [11171], "khanacademy.org": [8873], "peeringdb.com": [12520], "vpn4all.com": [17500], "thawte.com": [16175], "privacyrights.org": [13093], "get3.adobe.com": [615], "jobscore.com": [8590], "assets4.sendgrid.com": [14577], "vzp.cz": [17524], "thc.org": [15810], "labor.dailykos.com": [4116], "oasis-open.org": [11606], "binarycontrol.debian.net": [4273], "superforum.org": [14640], "marconisida.com": [3935], "www.omniref.com": [11798], "bankrate.com": [1651], "cwrap.org": [19097], "schoolsonline.wokingham.gov.uk": [19762], "uncg.edu": [17328], "devices.live.com": [9483], "myhosting.com": [15090], "finanswatch.dk": [5829], "globalperspectivescanada.com": [6729], "extras.ooyala.com": [11900], "lists.acpica.org": [264], "www.anxpro.com": [1076], "animoto.com": [1025], "donotcall.gov.au": [4610], "creativewriting.stanford.edu": [15383], "help.bingads.microsoft.com": [10364], "connect.over-blog.com": [12156], "pack.google.com": [6834], "fbcdn23dssr3jqnq.onion": [5621], "wadmin.green.ch": [19228], "www.revisium.com": [13847], "mosh.mit.edu": [9749], "bezrealitky.cz": [18995], "static.wellbid.com": [18192], "www.majordomo.ru": [9902], "legacy.com": [9227], "speakpipe.com": [15233], "bitmask.net": [2005], "www.cse.unsw.edu.au": [16995], "fiskeriverket.se": [5886], "cals.vt.edu": [17740], "musopen.org": [10725], "suresupport.com": [15645], "de.pcpartpicker.com": [12497], "notalone.gov": [11515], "www.vates.fr": [17574], "tropo.com": [16760], "cabletv.com": [2703], "help.apple.com": [1120], "magazine.wustl.edu": [17993], "penninecare.nhs.uk": [10913], "www.bidbubble.com": [1844], "bikeability.dft.gov.uk": [19116], "etrm.oracle.com": [12082], "w00tads.com": [17886], "usdalinc.sc.egov.usda.gov": [17209], "*.geek.com": [6492], "sbi.sberbank.ru": [14322], "kd2.us": [8716], "blogs.loc.gov": [9528], "*.filmlinc.com": [5807], "*.tadst.com": [15896], "www.lrz-muenchen.de": [9238], "www.safe-in-cloud.com": [14224], "*.thomson.com": [16383], "m2fjob.com": [9695], "www.it.cornell.edu": [3676], "www.percona.com": [12557], "blog.nanigans.com": [18428], "vice.com": [17667], "www.burst.net": [2445], "erc.edu": [4949], "oamp.od.nih.gov": [11052], "www.cyberaide.ca": [3976], "ifca.ai": [8266], "alfresco.com": [802], "no-cache.hubspotqa.com": [7595], "www.gigasize.com": [6645], "go.arbopl.bbelements.com": [1713], "certification.typo3.org": [15894], "www.comscoredatamine.com": [3454], "www.youtube.co.nz": [18709], "snapsurveys.com": [19604], "*.2checkout.com": [83], "www.italliance.com": [7843], "cdn-blog.opendns.com": [11932], "www.orangeplant.co.uk": [19467], "scalability.org": [14326], "reseller.apple.com": [1120], "git.lysator.liu.se": [9084], "nysk.mediekompaniet.com": [10194], "imperativeideas.com": [8014], "filer.anst.uu.se": [17074], "documentfreedom.net": [4628], "ludios.org": [9653], "www.com-sys.de": [3450], "edarabia.com": [5072], "www.onpatient.com": [11883], "www.gmx.net": [6350], "terasic.com.tw": [15960], "excelsior-usa.com": [5484], "www.chilebit.net": [3076], "www.tdesktop.com": [15989], "zataz.com": [18801], "b-static.net": [2168], "web-toolkit.global.sky.com": [14924], "cloudcontrol.com": [3283], "www.slac.com": [14941], "courses.illinois.edu": [17258], "wiki.awesome-it.de": [1461], "www.voo.st": [17843], "veracode.com": [17614], "www.noncombatant.org": [11468], "qs.ioam.de": [7783], "www.priceza.com": [13056], "aclu-sc.org": [252], "www.cityoflondon.gov.uk": [3190], "pypip.in": [13266], "www.sics.se": [14119], "www.scriptjunkie.us": [14423], "planet.archlinux.fr": [1159], "www.surveillancelaw.org": [15656], "www.sourceafrica.net": [15169], "*.federalreserve.gov": [5718], "webassetsc.scea.com": [14089], "unicefusa.org": [17182], "*.suse-art.org": [19462], "my.libreoffice.org": [9311], "democracy.bathnes.gov.uk": [1689], "api.tiles.virtualearth.net": [17755], "*.clickbank.com": [3243], "oai.oracle.com": [12082], "sixapart.jp": [14889], "www.dntx.com": [4071], "repository.cmu.edu": [2858], "slac.com": [14941], "devblog.songkick.com": [19609], "social.lenovo.com": [9251], "www.newsvine.com": [11348], "pusherapp.com": [13253], "*.slooh.com": [14134], "searchsecurity.de": [16018], "www.pobox.com": [12835], "static.weborama.fr": [18138], "public.resource.org": [13207], "mtb.com": [9690], "lsa.umich.edu": [17266], "www.iss.leeds.ac.uk": [17318], "www.kivo.com": [8927], "major.io": [9900], "socialreader.com": [15066], "list.co.uk": [16199], "publisher.tinypass.com": [16489], "www.foofighters.com": [5996], "login.facebook.com": [5620], "www.liberiangeek.net": [9298], "msnbc.msn.com": [9794], "lh6.google.com.*": [6837], "*.thedilbertstore.com": [16268], "www.segpaychat.com": [14556], "edubuntu.org": [5068], "tryhaskell.org": [16805], "www.landaire.net": [19347], "on24.com": [11639], "www.qiye.163.com": [35], "cdn2.sure-assist.com": [15644], "palfrader.org": [12342], "who.int": [17908], "merchant.onlinesbi.com": [11873], "www.codepunker.com": [3352], "www.getasgard.com": [6583], "www.meetey.com": [10213], "shows.kingdomofloathing.com": [1308], "ejabberd.im": [5130], "www.datared.dk": [4213], "www.luez.tk": [3533], "clickbank.com": [3243], "*.world-television.com": [18458], "www.malware-tracker.com": [9928], "piao.jd.com": [8423], "wikileaksparty.org.au": [18295], "rabota.ya.ru": [18626], "nintendo.de": [11418], "*.www.suburban.nl": [15570], "maduke.stanford.edu": [15383], "www.zipler.ru": [18873], "industrymailout.com": [8077], "openreach.co.uk": [12042], "news.cs.washington.edu": [17291], "m.datart.sk": [4008], "homedepotfoundation.org": [7471], "www.webrtchacks.com": [18142], "energylivenews.com": [5257], "portal.mobify.com": [10494], "shop.flixbus.com": [5931], "www.shopsite.com": [14718], "jobsadmin.newscientist.com": [11298], "www.actionautowreckers.com": [490], "fictiv.com": [5773], "galaxis.at": [6407], "aafes.cyberpowerpc.com": [19098], "forums.openoffice.org": [1084], "ebola.stanford.edu": [15383], "*.tinydl.com": [16487], "pivotal.io": [12730], "cipherli.st": [3152], "autodiscover.bmb.leeds.ac.uk": [17318], "pay.ubuntu.com": [17102], "imgjam.com": [7994], "bighugelabs.com": [1854], "www.idrix.fr": [7707], "a0.lscdn.net": [9102], "college.artsci.wustl.edu": [17993], "livestream.com": [9514], "epp.sheffield.gov.uk": [14694], "js.thisismedium.com": [8444], "portal.switch.ch": [15699], "svn.ffx.subsignal.org": [15566], "www.droplr.com": [4771], "sakittome.com": [5308], "cdn.gosquared.com": [6784], "coventry.gov.uk": [19085], "dna.land": [4056], "reg.taobao.com": [15952], "secure.htw-berlin.de": [7112], "static.superstart.se": [15635], "game.yandex.com.tr": [18649], "topdesk.bls.ch": [1526], "nsrc.org": [10958], "static.junge-piraten.de": [8679], "serverbase.ch": [19583], "admissions.bury.gov.uk": [19027], "securityexperten.com": [14528], "store.linux.com": [9403], "www.migros-shop.de": [19399], "physics.osu.edu": [11760], "patreon.com": [12456], "alternate.nl": [880], "smiley.37signals.com": [118], "n-tv.de": [19424], "shop.vodafone.de": [17814], "*.c-and-a.com": [2496], "publichealth.wustl.edu": [17993], "fogcreek.com": [5980], "cardsagainsthumanity.com": [2836], "secure.stacklet.com": [15364], "foliovision.com": [5985], "*.sape.ru": [14296], "keepass.info": [8833], "docs.enlightenment.org": [5280], "bugs.winehq.org": [18352], "rstudio.com": [13467], "mobile-services.williams.edu": [18316], "unseen.is": [17369], "autodiscover.getech.leeds.ac.uk": [17318], "blackboard.cornell.edu": [3676], "statse.webtrendslive.com": [18172], "astra.scu.edu": [14289], "mysql.de": [10780], "www.themarshallproject.org": [16297], "*.fyleio.com": [2361], "skype.com": [14938], "economics.harvard.edu": [7219], "flixbus.be": [5931], "www.redbooks.ibm.com": [7675], "tel.local.ch": [9536], "distilleryimage9.instagram.com": [8182], "www.set.io": [14632], "bgs.zg.ch": [19648], "disk.yandex.com": [18651], "ftp.mirrorservice.org": [10448], "www.ixsystems.com": [7884], "postscapes.com": [12983], "scheduler.einsteinathome.org": [5128], "www.talenttech.com": [15918], "evozi.com": [5469], "www.postaonline.cz": [2974], "memopol.lqdn.fr": [9113], "ssl8.ovh.net": [12173], "maidstone.firmstep.com": [19183], "cart.rapidbuyr.com": [13554], "*.tradeking.com": [16635], "webmail.dkit.ie": [4040], "www.33option.com": [103], "www.amazon.de": [917], "www.funker530.com": [6266], "pentestit.ru": [12543], "www.ucalgarymag.ca": [16944], "muri.engineering.osu.edu": [11760], "www.oracle.com": [12082], "wetanz.com": [18224], "store.terrapass.com": [16127], "www.compute.dtu.dk": [16031], "pt.pornworms.com": [12928], "tineye.com": [16468], "element.yandex.com.ua": [18650], "company.overdrive.com": [12159], "bitquick.co": [1943], "*.ehowcdn.com": [19137], "secure.teljari.is": [10525], "amazon.fr": [917], "netfilter.org": [11225], "archive.4plebs.org": [161], "www.aarnet.edu.au": [233], "cybox.mitre.org": [10459], "democracy.eastsussex.gov.uk": [19142], "caradvice.com.au": [2827], "m.yandex.com.tr": [18649], "*.johnsonking.com": [8612], "static1.dditscdn.com": [4239], "*.2ch.hk": [92], "www.geant.net": [6313], "array.is": [1213], "learning.rethink.org": [19549], "*.gngr.info": [6759], "aktion-deutschland-hilft.de": [770], "www.coveritlive.com": [3735], "podcast.at": [12843], "citrix.com": [3178], "usenet-crawler.com": [17425], "www.esb.ie": [4952], "nydn.us": [1920], "www.netpivotal.co.uk": [11204], "*.comicvine.com": [18244], "www.strawpoll.me": [15515], "tracker.moodle.org": [10575], "*.visitestonia.com": [17778], "www.chartsinfrance.net": [3025], "*.findagrave.com": [5842], "www.gondor.io": [6824], "www.firstgiving.com": [5869], "www.digid.nl": [11132], "samples.ffmpeg.org": [5565], "mybanklearning.sbi.co.in": [14082], "*.exposure.co": [5515], "appcelerator.com": [1113], "*.enta.net": [5290], "hax.5july.org": [175], "jpfox.fr": [8653], "static1.urbandictionary.com": [17407], "cdn1.sbnation.com": [14079], "www.unisys.co.jp": [17202], "www.tokyo-tosho.net": [16537], "altlinux.org": [303], "www.radioshackwireless.com": [13515], "*.eetnordic.com": [4905], "palbin.com": [12340], "materiel.net": [10065], "vce.com": [17475], "lists.gnumonks.org": [6766], "*.facebook-studio.com": [5622], "jameco.com": [8501], "co.baifubao.com": [1621], "*.proofpoint.com": [13154], "www.dragndropbuilder.com": [4735], "www.healthcarestaffbenefits.org": [7262], "code.webplatform.org": [18079], "beryl-themes.org": [19461, 19462], "*.getcloudapp.com": [9371], "usat.ly": [1920], "webnms.com": [18077], "a.fightforthefuture.org": [5783], "blog.sandstorm.io": [14283], "www.webmate.io": [18132], "bloo.ie": [2114], "koderoot.net": [8951], "accesorios.poderpda.com": [12845], "securityweek.com": [14525], "www.gupnp.org": [6354], "wiki.oasis-open.org": [11606], "technovelty.org": [16046], "www.kyhwana.org": [9051], "au.effectivemeasure.net": [5109], "denh.am": [4361], "*.apicasystem.com": [1092], "mein.edeka.de": [19147], "easyjet.com": [5025], "bilio.com": [1875], "www.turngs.com": [16843], "shkb.ch": [19333], "sonymobile.com": [15145], "mozdevgroup.com": [10648], "www.monkeyguts.com": [10557], "sustainability.williams.edu": [18316], "photon-science.desy.de": [4399], "subtome.com": [15569], "www.dealzon.com": [4023], "www.gentoo-blog.de": [6529], "www.chrisjean.com": [3105], "manage.stripe.com": [15525], "evermeet.cx": [5448], "*.etsy.com": [5395], "switchnet.io": [15705], "roundcube.mayfirst.org": [10100], "bugzilla.rpmfusion.org": [14005], "weblogin.washington.edu": [17291], "www.boardgamegeek.com": [2166], "www.buzzdoes.com": [2478], "tour.ubuntu-fr.org": [17095], "px.srvcs.tumblr.com": [16826], "www.side.cr": [14761], "now-static.norton.com": [11505], "getdropbox.com": [4768], "*.tweetriver.com": [10048], "myforms.sc.egov.usda.gov": [17209], "idp.stanford.edu": [15383], "brixwork.com": [2344], "strugee.net": [15532], "formatdynamics.com": [6043], "tr.foursquare.com": [6082], "whitelabel.net": [18255], "www.jujucharms.com": [8670], "marketplaceondemand.cisco.com": [3162], "membership.theguardian.com": [16288], "css.cdn.audiko.net": [1357], "ck.sendmoments.com": [14582], "www.curiosity-driven.org": [3930], "www.secularstudents.org": [14471], "rewards.americanexpress.com": [935], "www.probikekit.co.uk": [13116], "www.awxibrm.com": [3481], "www.onetimesecret.com": [11851], "*.www.poppysports.com": [12917], "action.amnesty.org.uk": [971], "*.securepcissl.com": [14508], "www.katescomment.com": [8815], "sonicwall.com": [15137], "eloedge.com": [4923], "www.vid.me": [17676], "www.pentestit.ru": [12543], "police.uk": [12863], "stanfordconnects.stanford.edu": [15383], "ebm.e.ccs.com": [2551], "my.smartbear.com": [14986], "*.aa.net.uk": [228], "torrentleech.org": [16586], "www.medici-manager.com": [10189], "media.licdn.com": [9085], "codeschool.com": [3357], "wiki.creativecommons.org": [3778], "payments.westminster.gov.uk": [18220], "operation-cambridge.linux-mips.org": [9413], "dehu.dict.cc": [4455], "www.gogetssl.com": [6780], "eset.de": [4955], "osdsc.alicdn.com": [805], "static.pinboard.in": [12677], "www.scrypt.cc": [14427], "www.trusted-introducer.org": [16786], "cln.cloudlinux.com": [3290], "congresstmi.org": [5783], "*.wikicdn.com": [16111], "www.specialized.net": [15241], "halogenuseradmin.dft.gov.uk": [19116], "www.bitme.com": [2007], "thehackerblog.com": [16289], "fotisl.com": [6072], "www.exeterfamily.co.uk": [5491], "itssb.web.cern.ch": [2575], "gorickshaw.com": [6795], "talkingfrench.com": [15932], "secure.xsolla.com": [18593], "summercollegeacademy.stanford.edu": [15383], "ustream.tv": [17451], "media-cache-ec0.pinterest.com": [12699], "www.fiannafail.ie": [5768], "www.oppelt.com": [12059], "webmail.kuleuven.be": [8816], "100ideen.migros.ch": [19399], "mybenefitscalwin.net": [10745], "cp.timeweb.ru": [16457], "bug.tasktools.org": [15971], "www.rusi.org": [13480], "www.vilistlane.ut.ee": [17069], "expapi.oscar.aol.com": [321], "tyj.fi": [16910], "www.hackread.com": [7134], "www.people.ysu.edu": [18742], "gestaoconsumos.edp.pt": [4896], "nl.chaturbate.com": [3035], "ask.barclaycard.co.uk": [1664], "ecn.t1.tiles.virtualearth.net": [17755], "gomez.com": [3544], "*.maxymiser.com": [10098], "oas.theguardian.com": [16288], "*.e17-stuff.org": [19462], "www.okta.com": [11776], "blu.is.berkeley.edu": [17240], "www.aimatch.com": [742], "haobtc.com": [7197], "*.facepunch.com": [5624], "blog.onlive.com": [18428], "pub.dartlang.org": [4157], "engineering.wustl.edu": [17993], "www1.iitb.ac.in": [7744], "www.adobetag.com": [620], "cabforum.org": [2506], "connect.just-eat.co.uk": [19328], "www.infrequently.org": [8134], "*.burstnet.com": [2447], "store.buddyauth.com": [2230], "edge1.digicert.com": [4473], "www.me.com": [9735], "attendesource.com": [1337], "objective-see.com": [11703], "s3.jrnl.ie": [19326], "uniquefiler.com": [17193], "admin.nativo.net": [11092], "static-mdev.gbot.me": [6808], "dogwheelchairscenter.com": [4634], "*.superforum.org": [14640], "services.quickline.com": [19530], "evga.com.tw": [4986], "voo.st": [17843], "b.kentbackman.com": [8852], "crowdculture.se": [3820], "roundcube.ouvaton.coop": [12155], "setup.boldchat.com": [2187], "static.iono.fm": [8341], "content.dl-rms.com": [4041], "telushealth.com": [16103], "techtarget.com": [16019], "hosting.www.namecheap.com": [11019], "www.shinystat.com": [19587], "*.portalhelp.hosting.ru.nl": [13510], "consultation.hackney.gov.uk": [7156], "www.get.cm": [6563], "f5networks.co.jp": [5547], "tlc.telford.gov.uk": [19669], "bugs.cacert.org": [2520], "www.office.vutbr.cz": [17522], "myinfo.lincoln.gov.uk": [9362], "raumzeitlabor.de": [13577], "na2.brightidea.com": [2330], "www.pureloto.com": [13244], "grepbugs.com": [6943], "cryptodesign.org": [3868], "meta.askubuntu.com": [15359], "www.pgl.co.uk": [7452], "origin.mt-cdn.net": [9798], "myportal.seagate.com": [14437], "formstack.com": [6046], "dashboard.jwplayer.com": [9589], "www.worksthatwork.com": [18445], "fr.icecat.biz": [7914], "*.sdsu.edu": [14094], "theparliamentmagazine.eu": [16304], "ncmp.hscic.gov.uk": [19264], "www.informatik.uni-ulm.de": [19715], "keen.io": [8836], "www.igt.hscic.gov.uk": [19264], "meebo.com": [10206], "o1.qnsr.com": [13306], "procensus.com": [19520], "eshop.kensington.com": [8850], "sciencealert.com": [19574], "www.defenseindustrydaily.com": [4309], "parkingpermits.kirklees.gov.uk": [8916], "cyberwar.nl": [3977], "special.geektimes.ru": [6507], "sitecontrol.us": [14877], "www.orbitalatk.com": [12092], "www.xap.com": [18502], "www.vultr.com": [17873], "i3.parallels.com": [12392], "wiki.grml.org": [6382], "improper.com": [8019], "symantec.com": [15715], "avallalat.aldi.hu": [299], "*.vitaminshoppe.com": [17794], "stop-ttip.org": [15482], "youtube.freifunk.net": [6192], "oascentral.datasphere.com": [4187], "www.findnsave.com": [5836], "random.org": [13545], "go.symantec.com": [15715], "agoravoting.com": [732], "retriever-info.com": [13826], "cdn3.sure-assist.com": [15644], "georgetown.edu": [6546], "www.amersfoort.nl": [11132], "docs.saltstack.com": [14255], "anon-ib.net": [1037], "ols.britac.ac.uk": [2335], "*.deluge-torrent.org": [4339], "www.fold.cm": [5982], "wiki.wireshark.org": [18369], "tcl.tk": [15986, 15987], "support.medialayer.com": [10156], "*.sitepen.com": [14869], "cdn.engine.4dsply.com": [159], "purchasing.osu.edu": [11760], "humanrightsdefensecenter.org": [7610], "www.naytev.com": [11116], "bizchannel.cimb.com.sg": [2607], "zotero.org": [18911], "bz.mercurial-scm.org": [10279], "www.stpeter.im": [15503], "creocommunico.com": [7501], "yaupspe.com": [5224], "com-sys.de": [3450], "*.bytelove.us": [2490], "www.visatovietnam.org": [17765], "bircko.com": [1911], "lolzparade.com": [4118], "www.coloradonocall.com": [3440], "www.gmail.com": [6843], "openaccessbutton.org": [11999], "cinchouse.com": [3136], "spreadshirt.com": [15300], "www.assessment.vt.edu": [17740], "www.grctech.com": [6381], "www.hr-skyen.dk": [7093], "thecutestsiteontheblock.com": [16184], "ershou.taobao.com": [15952], "staytoday.com": [15443], "www.magicmembers.com": [9856], "www.abc.xyz": [403], "store.playosmo.com": [12125], "developer.amazon.com": [913], "edonorcentral.com": [4903], "travel.americanexpress.com": [935], "education.lego.com": [9068], "www.obi.cz": [19452], "heli.valtiolle.fi": [17534], "redbridge.gov.uk": [13683], "www.451unavailable.org": [146], "quorks.ath.cx": [13376], "primaryimmune.stanford.edu": [15383], "intgovforum.org": [8199], "member1.taobao.com": [15952], "seotrainingtoronto.com": [14103], "tube-test.geogebra.org": [6537], "www.newlook.com": [11307], "*.mla.com.au": [10134], "yellowpages.ca": [18670], "wellingborough.gov.uk": [18194], "bagnet.org": [1615], "*.agenda.athaliasoft.fr": [1312], "static.jdpay.com": [8429], "paddle.com": [12324], "www.amazingweb.co": [908], "cdn-media.joomlainfo.ch": [19325], "www.rf.osu.edu": [11760], "banking.co.at": [1647], "ltradio.com": [9105], "ernaehrung-per-klick.de": [10196], "api.analytics.mashape.com": [10044], "api.mail.aol.com": [321], "msds.open.ac.uk": [11986], "assets.digital.cabinet-office.gov.uk": [2700], "cf-example.com": [2975], "www.baycitizen.org": [1702], "www.botaanikaaed.ut.ee": [17069], "penfoldgolf.com": [12533], "donate.salvationarmyusa.org": [14256], "*.allshareplay.com": [838], "tl-activity.itunes.apple.com": [1120], "aldi.be": [299], "*.getharvest.com": [6576], "fdopk.org": [5664], "cp.element5.com": [5157], "www.sourcetreeapp.com": [15176], "cdn.cybergolf.com": [3972], "partnerupload0.steampowered.com": [15450], "planetemu.net": [12766], "*.aereo.com": [685], "www.owncloud.com": [12181], "egee-uig.web.cern.ch": [2575], "english-heritageshop.org.uk": [5269], "www.terveysportti.org": [16133], "static.fsf.org": [5600], "holdall.norfolk.gov.uk": [19436], "www.foliovision.com": [5985], "spout.ussg.indiana.edu": [8065], "assets.noisey.com": [11460], "consultants.apple.com": [1120], "*.brinkster.com": [2334], "ruggedsoftware.org": [14028], "www.best-pariuri-online.com": [7732], "www.claimconnect.net": [4894], "www.falkvinge.net": [5642], "www.s-hertogenbosch.nl": [11132], "*.politifact.com": [12870], "www.eprize.net": [4946], "wiki.eth-0.nl": [5376], "cit.cornell.edu": [3676], "manage.dediserve.com": [4293], "tent.io": [16115], "womens.uaa.alaska.edu": [17233], "oi.meetings.io": [10217], "planboardapp.com": [12756], "franciskim.co": [6100], "battlecreekenquirer.com": [1694], "support.vodafone.ie": [17815], "www.activemelody.com": [500], "sfn.org": [15077], "schd.ws": [14348], "tarpon.citrix.com": [3178], "staticwhich.co.uk": [18240], "x.wpimg.pl": [19766], "*.selfhost.de": [14567], "en-nl.dict.cc": [4455], "apps.cardiff.gov.uk": [19039], "evil32.com": [5459], "file.kelleybluebookimages.com": [8844], "preferences.hearstmags.com": [7273], "*.fastssl.net": [5673], "widgets.pinterest.com": [12699], "www.opalang.org": [11903], "www.steepandcheap.com": [15460], "advertising.bostonglobemedia.com": [2235], "*.esomar.org": [4963], "*.ntt.com": [10966], "7kbhkort.kk.dk": [8730], "autodiscover.hcl-axon.com": [7050], "vue.com": [12506], "www.growthhackers.com": [6984], "sphere.com": [15263], "www.stopbadware.org": [15489], "kirklees.greenparty.org.uk": [6925], "wwwsrv.bo.infn.it": [7766], "myapp.cdgcommerce.com": [2552], "superstats.com": [15617], "notebookkisker.hu": [9155], "activate.origin.com": [12106], "webseries.rsi.ch": [19621], "judicialwatch.org": [8663], "www.metashop.at": [13026], "www.lefebvre.org": [9190], "*.libri.de": [9317], "forums.robertsspaceindustries.com": [13922], "sf.taobao.com": [15952], "moodle.com": [10572], "*.3min.de": [134], "*.otsuka-shokai.co.jp": [12134], "www.washingtonpost.com": [17990], "mandiant.net": [10179], "go.bunchball.com": [2424], "ana.net": [1297], "*.dfat.gov.au": [4370], "cdn.emetriq.de": [18585], "kirklees.connecttosupport.org": [19076], "www.infousa.com": [8110], "hertz247.co.uk": [7371], "pc2.mypreferences.com": [10777], "hitleap.com": [7421], "youtube.ru": [18709], "youtube.rs": [18709], "www.fairssl.se": [5631], "bulkorder.ftc.gov": [5720], "themis.asu.edu": [1195], "*.ehosting.ca": [5119], "fnt.webink.com": [18068], "youtube.ro": [18709], "analytics.profitbricks.com": [13129], "ludismedia.com": [9654], "static.domainsigma.com": [4656], "www.prxy.com": [13185], "site5.com": [14862], "www.hellobar.com": [7294], "www.emapawards.com": [5196], "wiki.hope.net": [7492, 7493], "minohubs.com": [10430], "ssl-certificate-center.verisign.com.sg": [17623], "consult.birmingham.gov.uk": [19000], "bertrandmeyer.com": [1799], "m.hotukdeals.com": [7549], "www.webmailer.hosteurope.de": [7516], "shop.vhf.de": [19735], "fitocracy.com": [5890], "support.academiccommons.columbia.edu": [3448], "www.talkactive.net": [15925], "lexmachina.com": [9279], "www.usenet-crawler.com": [17425], "princeton.edu": [13064], "apps.owncloud.com": [12181], "*.patientslikeme.com": [12455], "m.poczta.wp.pl": [17921], "www.hrkgame.com": [7579], "dms-d.wiiings.com": [18288], "www.farmaciforbundet.se": [5663], "ecdrappeals.ed.gov": [4889], "edinburghfestival.list.co.uk": [16199], "*.coloradoan.com": [3444], "www.bringthegig.com": [2333], "linuxplumbersconf.net": [9397], "www.sebijk.com": [7463], "dedigitaletopschool.nl": [4246], "paxtonrecord.net": [12464], "www.nohats.ca": [11443], "www.tittygram.com": [16504], "refunds.stanford.edu": [15383], "kursk.rt.ru": [13469], "www.onionshare.org": [11863], "secure.justin.tv": [16888], "wfs.oracle.com": [12082], "www.sopastrike.com": [5783], "www.codeweavers.com": [3353], "www.mims.com.tw": [9743], "i.computer-bild.de": [19075], "live.dus.c3voc.de": [2501], "orkut.co.in": [12110], "dru-cdn.zipcar.com": [18872], "sealserver.trustwave.com": [16799], "app.appsflyer.com": [1131], "www.tuv.com": [3625], "fama.alipay.com": [817], "smtp.usainteanne.ca": [19720], "www.dustin.se": [4810], "biop.ox.ac.uk": [17271], "mine.jd.com": [8423], "www.siteheart.com": [14866], "i03.c.aliimg.com": [813], "eastbayteamservices.com": [5018], "glassfish.java.net": [8525], "appserv6.admin.uillinois.edu": [16960], "fly.tdc.dk": [15796], "*.drownedinsound.com": [4773], "help-fr-fr.nike.com": [11401], "www.bigconcerts.co.za": [1858], "www.mozillazine-fr.org": [19411], "*.heckrath.net": [7281], "*.iesnare.com": [7946], "icmag.*": [2808], "https.downforeveryone.com": [4724], "insight.rapid7.com": [13553], "procurement.southend.gov.uk": [15193], "www.junodownload.com": [8683], "newscenter.berkeley.edu": [17240], "netsekure.org": [11249], "www.mantor.org": [9963], "*.dx.com": [4253], "virtualedge.com": [272], "www.insidescience.org": [8167], "gwbweb.wustl.edu": [17993], "frozencpu.com": [6231], "your.trash.net": [16687], "static.ycharts.com": [18613], "weather.mercurynews.com": [10161], "ads.stickyadstv.com": [15474], "doc.intercom.io": [8244], "cms.myspacecdn.com": [10848], "atcal.berkeley.edu": [17240], "www.pirateparty.org.au": [12713], "computersnyou.com": [3540], "www.skycityauckland.co.nz": [14128], "buycraft.net": [2472], "www.westlandutrechtbank.nl": [18217], "cloud.github.com": [6680], "*.nps.gov": [11084], "pics.defcon.org": [4305], "janhendrikpeters.de": [8509], "status-page-blog.herokuapp.com": [15438], "nab.org": [10864], "fobos.de": [5972], "www.youtube.si": [18709], "2.standaardcdn.be": [15379], "www.westyorkshireobservatory.org": [18214], "www.snsbank.nl": [14144], "sina.is": [14841], "www.beckerproxy.wustl.edu": [17993], "es.cryptonator.com": [3883], "git.gnupg.org": [6761], "bunchball.com": [2424], "www.datapipe.cn": [4211], "forums.pcbsd.org": [12216], "seanmckaybeck.com": [14441], "www.cz.o2.com": [16076], "www.usrowing.org": [17050], "*.dmcloud.net": [4125], "fr.foursquare.com": [6082], "blog.ginkel.com": [6663], "studenaffairs.usc.edu": [17278], "content.oneplus.net": [11841], "*.dyc.edu": [4094], "www.checkpoint.com": [3048], "www.groupon.com": [6974], "goldstar.com": [6818], "addons.xt-commerce.com": [18595], "members.girlsoutwest.com": [6667], "www.grupfoni.com": [6986], "bookkeeper.itunes.apple.com": [1120], "support.zabbix.com": [18774], "www.ascenderfonts.com": [1246], "xdk.intel.com": [8209], "plugins.movabletype.org": [10627], "www.peerio.com": [12521], "*.bcvs.ch": [1655, 19333], "gametreedeveloper.com": [6428], "*.atlantic.net": [1318], "metrics.penton.com": [12545], "update.local.ch": [9536], "claws.cf.ac.uk": [2835], "leap.neustar.biz": [11280], "us-cert.gov": [17415], "openeffect.ca": [19464], "zillowstatic.com": [18865], "smssecure.org": [14139], "www.youtube.sg": [18709], "muj.cesky-hosting.cz": [19051], "wakefield.objective.co.uk": [19454], "mvptitle.com": [9807], "conformal.com": [3572], "blog.witness.org": [18382], "www.control.tierra.net": [16435], "www.dnscrypt.eu": [4061], "i2.sitepoint.com": [14870], "macworld.idg.se": [7705], "casino.williamhill.com": [18314], "imgdino.com": [7993], "boss.berlinonline.de": [1793], "dukgo.com": [4792], "sslmate.com": [14178], "reep.refeds.org": [13413], "apotheke.de": [1100], "snap.vidiemi.com": [17701], "www.alternatives.ca": [882], "www.ffprofile.com": [5765], "tmcomponents.travelmarket.com": [16697], "my.sky.com": [14924], "netindex.com": [11211], "memberdb.nuug.no": [10978, 10980], "voyage-prive.com": [17857], "shop.ccs.com": [2551], "preview-studyinthestates.dhs.gov": [4035], "cdnakmi.kaltura.com": [8775], "*.nsidc.org": [11062], "fitforgood.fitbit.com": [5887], "www.shorte.st": [14735], "assets.www.npo.nl": [10949], "browser.yandex.ua": [18656], "www.studentchaptersonline.acs.org": [929], "dw1.s81c.com": [19561], "mail.comscore.com": [3453], "www.appear.in": [1114], "goparallel.sf.net": [15174], "sslcert35.com": [15347], "go.illinois.edu": [17258], "www.*.alaska.edu": [17235], "solucionespyme.cisco.com": [3162], "cern.ch": [2575], "podpora.skolaonline.cz": [19598], "*.electricembers.net": [5148], "ticket.yandex.kz": [18652], "test.freesound.org": [6184], "www.untangle.com": [17370], "*.thesfmarathon.com": [14273], "www.schaafpc.com": [14345], "ygtech.tools": [18615], "fbo.gov": [5714], "*.kobobooks.fr": [8949], "cwaa.ki.se": [8725], "tlhp.cf": [15823], "h.live.com": [9483], "segger.com": [14557], "campfireunion.com": [2781], "stayclassy.org": [15440], "*.datenretter.de": [3625], "suggests.rasp.yandex.kz": [18652], "familie.bw.aok.de": [317], "blog.kapsobor.de": [8792], "digitalcreations.no": [4490], "uitcomms.stanford.edu": [15383], "my.neo900.org": [11146], "forum.ukfur.org": [16970], "static.jrnl.ie": [19326], "elrepo.org": [4924], "eu-st.xhcdn.com": [18514], "kobo.com": [8949], "thevegankind.recurly.com": [13652], "getpebble.com": [12508], "rcm-ca.amazon.ca": [910], "simplereach.com": [14822], "lists.secondlife.com": [14462], "*.minavardkontakter.se": [10805], "defuse.ca": [4316], "chrysalisventures.com": [3125], "www.memrise.com": [10254], "alfa.cz": [801], "webpaper.nzz.ch": [19450], "thegearhunter.co.uk": [16281], "www.err.ee": [5369], "*.adtarget.me": [637], "monitoring.datamotion.com": [19102], "www.ziggo.nl": [18862], "www.crypto.is": [3853], "www.coastdigital.co.uk": [3338], "cam.illinois.edu": [17258], "s1.adformdsp.net": [585], "nubits.com": [11561], "lift.openx.com": [11995], "hr-s.co.jp": [7095], "wsd.nlm.nih.gov": [11052], "www.rd.io": [13595], "www.schraubenluchs.de": [19572], "deliv.leboncoin.fr": [19351], "home.capitalone360.com": [2819], "poppyuk.com": [12918], "mywebsite.1and1.ca": [52], "music.yandex.kz": [18652], "www.gionn.net": [6664], "www.airasiamegastore.com": [746], "cheapairportparkingbirmingham.com": [3043], "www.marketo.net": [10015], "media.progress.com": [13132], "mail.vas-hosting.cz": [19729], "cdns.usablenet.com": [17419], "olb2.nationet.com": [11091], "crnt.engineering.osu.edu": [11760], "community.infoblox.com": [8106], "www.is-its.org": [8361], "fossil-scm.org": [6071], "id.foursquare.com": [6082], "cdn.silktide.com": [14796], "cga.ct.gov": [2680], "ugst.umd.edu": [17263], "printrbot.com": [13072], "*.uservoice.com": [17441], "sc2.rgstatic.net": [13422], "ard.ndr.de": [11119], "www.cryptostorm.is": [3890], "*.tuts4you.com": [16854], "www.hometheaterreview.com": [7473], "beyondbinary.io": [18994], "www.evermap.com": [5445], "www.ntacdn1.net": [11553], "www.ohiounion.osu.edu": [11760], "ohsocool.org": [11758], "www.threatmatrix.com": [19680], "tiggerswelt.net": [16441], "www1.umn.edu": [17268], "www.geekisp.com": [6494], "imagefile2.51fanli.net": [171], "usnwc.edu": [17047], "webmail.server1.firstfind.nl": [18736], "fb18.de": [5555], "snellman.net": [15035], "hosting.de.adjug.com": [526], "t.alipayobjects.com": [817], "tickets.eth0.nl": [5376], "www.bell.ca": [1763], "a14electronics.com": [218], "dl.aircrack-ng.org": [750], "lightning.cdn.overdrive.com": [12160], "event.condenastdigital.com": [3554], "rcm-na.assoc-amazon.com": [1288], "subscriptions.economist.com": [5060], "www.tbray.org": [15788], "urac.org": [17014], "www.storywrite.com": [15502], "geef.nl": [6491], "*.shld.net": [14117], "www.dogzonline.com.au": [4636], "lists.ens.fr": [4930], "www.legacy.vg": [9228], "yourhosting.nl": [18736], "*.lukb.ch": [19333], "impactstory.org": [8013], "brasil247.com": [2290], "assets.slid.es": [14959], "rheinland24.info": [13860], "www.pgp.webtru.st": [18174], "lists.mplayerhq.hu": [9784], "www.ovh.biz": [11685], "www.djoserjunior.nl": [7452], "*.patreon.com": [12456], "blogs.yandex.kz": [18652], "cdn.ssbkyh.com": [15344], "sourcefoundry.org": [19611], "myfreecopyright.com": [10760], "slovakrail.sk": [14973], "communitymednews.stanford.edu": [15382], "v.vungle.com": [17877], "sharepoint.webtrends.com": [18171], "sole.dk": [15115], "www.dashlane.com": [4163], "en-hr.dict.cc": [4455], "login.citrixonline.com": [3179], "action.mathtag.com": [10071], "clubs.union.rpi.edu": [13771], "playosmo.com": [12125], "mysupport.attachmate.com": [1336], "fakena.me": [19174], "deb.globaleaks.org": [6712], "mywebsite.1and1.com": [51], "www.libssh.org": [9320], "greentechmedia.com": [6938], "transportation.stanford.edu": [15383], "images.capitalone360.com": [2819], "www.chronicle.com": [3122], "www.simplednscrypt.org": [14826], "ktm.ppl.cz": [12283], "www.bose.co.uk": [2228], "www.xww.ro": [18605], "youtube.ie": [18709], "iacademy.oracle.com": [12082], "iris.va.gov": [17019], "youtube.in": [18709], "*.forensicinstitute.nl": [6027], "expresscoin.com": [5517], "*.anglomedia.net": [1016], "reports.informationweek.com": [16927], "youtube.it": [18709], "bugs.schokokeks.org": [19570], "patches.ubuntu.com": [17102], "findnsave.com": [5836], "www.ranallolawoffice.com": [11386], "static.123rf.com": [25], "brave.com": [19018], "www.adhocracy.de": [587], "wiki.thm.de": [15811], "www.datadirect.com": [4180], "yabs.yandex.ua": [18656], "s3.antimac.org": [2774], "www.environment.leeds.ac.uk": [17318], "rbt.asia": [13593], "amanda.zmanda.com": [18880], "www.perfectmarket.com": [12560], "www.surbitcoin.com": [15643], "cygwin.com": [3978], "www.multibit.org": [10695], "media.www.harvard.edu": [7219], "dyn.com": [4820], "portal.emergingthreats.net": [5207], "msf.org.uk": [9789], "cs.utah.edu": [17288], "*.scopus.com": [14391], "www.findretros.com": [5839], "www40.polyu.edu.hk": [12891], "analytics.sylvancompany.com": [15714], "wiki.lugons.org": [9108], "cheapassgamer.com": [3039], "www.csis.ysu.edu": [18742], "www.perfectmoney.is": [12562], "ganglandnews.com": [6452], "ideabank.mit.edu": [9749], "*.gtcsonline.mycashflow.fi": [6394], "careerbuilder.com": [2841], "securify.nl": [14516], "discoverwem.adobe.com": [615], "studclient.htwk-leipzig.de": [7114], "identrustssl.com": [7935], "sdsp.ipinyou.com": [7803], "tgthr.crbuildsite.com": [16166], "mail.apan.org": [329], "kungfu.chef.io": [3057], "support.cloud.engineyard.com": [5265], "widget.intercom.io": [8244], "compass.thecthulhu.com": [16334], "my.rit.edu": [13434], "gigasize.com": [6645], "exiledonline.com": [4997], "imgbox.com": [7996], "openstreetmap.org": [11979], "ballicom.co.uk": [1631], "schotty.com": [19571], "subscription.economist.com": [5060], "*.adextent.com": [522], "admissions.wustl.edu": [17993], "jos.jd.com": [8423], "bsi-ni.brain.riken.jp": [13430], "tofour.net": [16520], "secure.gog.com": [6365], "expohomes.com": [5627], "*.verizonwireless.com": [17628], "themes.tiki.org": [16444], "dev.virtualearth.net": [17755], "ubuntu-fr.org": [17096], "www.copperhead.co": [3653], "kaspersky-cyberstat.com": [8805], "www.aetolia.com": [18943], "site.kaltura.com": [8775], "content.ott.sky.com": [14924], "meetrics.net": [10218], "portal.m3-connect.de": [19375], "webassetsh.scea.com": [14089], "*.fox-toolkit.net": [5589], "*.isdewinkelopen.nl": [19277], "www.usertags.com": [17087], "www.opensourcehacker.com": [12026], "*.lonap.net": [9093], "*.he.net": [7629], "store.magicalbutter.com": [9857], "pof.com": [12813], "hrc.org": [7604], "kable.com": [8762], "www.bgentry.io": [1835], "shop.eset.com": [5358], "*.www.cta-observatory.org": [3061], "a.s.kqed.net": [8747], "www.amoena.com": [979], "library.cornell.edu": [3676], "agari.com": [720], "*.signon.trb.com": [16731], "*.populisengage.com": [12923], "prf.hn": [12567], "*.butterflylabs.com": [2465], "*.econda-monitor.de": [5058], "msu.edu": [19414], "www.exacom.sk": [5476], "*.java-apps.org": [19462], "bangordailynews.com": [1642], "www.elie.im": [5164], "develop.untangle.com": [17370], "groups.google.co.*": [6837], "*.v-identity.com": [17460], "tiscali.nl": [16098], "st4.gismeteo.ru": [6669], "brad.brunel.ac.uk": [19021], "piwik.liberdade.digital": [9297], "dashboard.aggregateknowledge.com": [726], "www.iwantmyname.com": [19313], "www.ing.nl": [7769], "tailormadeanswers.com": [15913], "www.uakjobs.com": [17234], "lists.lysator.liu.se": [9084], "wdws.com": [17899], "ssl.ncsu.edu": [11492], "readrboard.com": [13617], "www.worldfoodprize.org": [18455], "media.eloqua.com": [5178], "www.webcompat.com": [18112], "kryptologika.com": [9019], "owa.groupware.kuleuven.be": [8816], "23systems.net": [73], "tll.mit.edu": [9749], "*.servercrate.com": [14605], "www.rockpaperphoto.com": [13936], "www.heatball.de": [7277], "www.metrix.net": [10319], "share.livingsocial.com": [9517], "find.firefox.com": [5859], "risiinfo.com": [13433], "www.asseenontv.com": [1240], "websitealive1.com": [18149], "education.web.cern.ch": [2575], "members.jpost.com": [8654], "de.redhat.com": [13675], "*.oe24.at": [11728], "www.interns.org": [8292], "cdn5.xvideosx.tv": [18537], "www.sixapart.jp": [14889], "ipwnage.com": [7808], "www.heute.de": [19800], "ttl.ut.ee": [17069], "www.sky.de": [14925], "www.mobigum.com": [10489], "www.milbencheck.at": [10390], "kantarworldpanel.com": [8786], "*.jobamatic.com": [8594], "*.broadinstitute.org": [2347], "lfov.net": [9076], "ccrjustice.org": [2550], "*.envato-static.com": [5305], "bet365.com": [1811], "mirror.bitmissile.com": [1938], "www.thebigweddingmovie.com": [16248], "www.strikingly.com": [15523], "cdn.adexcite.com": [520], "www.torlock.com": [16568], "ageuk.org.uk": [18946], "es.foundation.walmart.com": [17964], "www.blockchain.info": [2090], "psarips.com": [12297], "media2.apnonline.com.au": [333], "www.site.yandex.com": [18651], "login.live.com": [9483], "debt.webmoney.ru": [18076], "realty.yandex.kz": [18652], "buy.stubhub.co.uk": [15534], "www.belpino.se": [1770], "*.assembly.com": [1281], "www.olmn.org": [11630], "www.getdigital-blog.de": [6569], "www.debekijkerie.nl": [4244], "www.tip4commit.com": [16491], "prospect.prospectpublishi.netdna-cdn.com": [13162], "m.facebook.com": [5620], "www.apan.net": [328], "www.alimama.com": [814], "www2.uic.edu": [17231], "digitaldoor.subscriberconcierge.com": [10011], "www.btobonline.com": [3757], "www.intelfreepress.com": [8211], "www.ntnu.edu": [10963], "www.netmediaeurope.co.uk": [11198], "*.leidenuniv.nl": [9241], "www.teacupsandtrinkets.co.uk": [15994], "railscloud.de": [13530], "technoratimedia.com": [16044], "odnoklassniki.ru": [11726], "www.agileu.com": [728], "trideci.com": [16722], "sr.se": [15673], "york.greenparty.org.uk": [6925], "tps40.doubleverify.com": [4709], "smstaging.stanford.edu": [15383], "beckerweb.wustl.edu": [17993], "*.stayfriends.at": [15444], "maps-secure.stanford.edu": [15383], "audemarspiguet.com": [1347], "secdev.ca": [14457], "reisen.eduscho.at": [15985], "ezding.com.tw": [5536], "santafenewmexican.com": [16208], "*.etsystatic.com": [5395], "img-carrefour.mncdn.com": [10478], "www.lightbluetouchpaper.org": [9343], "kb.mediatemple.net": [10165], "challenge25.go.jp": [8515], "watermarquee.com": [18000], "www.iperceptions.com": [19275], "*.scientificamerican.com": [14384], "epnbc-consult.objective.co.uk": [19454], "g.taobao.com": [15952], "bazzapp.com": [1710], "www.amnesty.it": [965], "support.apple.com": [1118], "events.stanford.edu": [15383], "www.bet365.es": [18991], "publishing.kalooga.com": [8773], "staging.blog.gigya.com": [6659], "nelly.com": [11138], "northamptonshire.firmstep.com": [19183], "resources.inbenta.com": [8037], "rcicruiseholidays.ourvacationcentre.net": [18489], "sale.jd.hk": [8424], "www.lacrossealerts.com": [9118], "*.cargocollective.com": [2850], "conference.jesus.cam.ac.uk": [17243], "webdav.cubby.com": [3909], "nxeassets.xbox.com": [18550], "debuggex.com": [4278], "golf2go.net": [1507], "bgm.stanford.edu": [15382], "mysqlbackup.zmanda.com": [18880], "newstuff.seagate.com": [14437], "www.lookout.com": [9601], "www.cuckoosandbox.org": [19096], "www.fortumo.com": [6060], "forumblog.org": [6063], "community.offerpop.com": [11739], "www.hi-eg.com": [7384], "jakearchibald.com": [8495], "hexplo.it": [7382], "pbwebdev.com": [12212], "console.run.pivotal.io": [12730], "www.voltage.com": [17832], "legal.yandex.by": [18648], "spotplanet.org": [15297], "ciuvo.com": [3199], "culturaemcasa.catracalivre.com.br": [2908], "spec.org": [14156], "neimanmarcus.com": [15851], "ed.stanford.edu": [15383], "www.googleapis.com": [6839], "download.parrot.com": [12410], "skitch.com": [14914], "lists.uu.se": [17074], "img01.findgravy.com": [5843], "aprendizaje.internetessentials.com": [19300], "vagrantup.com": [17529], "getpol.org": [6608], "velmedia.net": [17597], "cdn4.colocationamerica.com": [3435], "*.www.maxymiser.com": [10098], "www.maps.yandex.com": [18651], "*.grenet.fr": [6941], "www.yroo.com": [18741], "auth.berkeley.edu": [17240], "www.safeassign.com": [14226], "installations.bobcares.com": [2172], "www.plays.tv": [12809], "static5.businessinsider.com": [2454], "news.constantcontact.com": [3592], "docracy.com": [4620], "*.shop.linuxnewmedia.de": [9396], "www.haaksbergen.nl": [11132], "*.uncg.edu": [17328], "openfmri.org": [12033], "img13.360buyimg.com": [112], "cruzpay.ucsc.edu": [17305], "green.ch": [19228], "ja.libreoffice.org": [9311], "help.aol.com": [321], "www.englishdefenceleague.net": [5271], "csawctf.poly.edu": [12888], "codingteam.net": [3384], "www.virtualearth.net": [17755], "www.exploreb2b.com": [5510], "brightfort.com": [2321], "osvehicle.com": [19469], "*.fetchback.com": [5763], "adingo.jp": [592], "www.vidarholen.net": [17680], "www.one2buy.com": [11829], "ip-search.ch": [15696], "downloads5.mamp.info": [19379], "partner.steamgames.com": [15453], "www.square.com": [15329], "www.diskusjon.no": [4563], "darcs.debian.org": [4275], "channelslb.ap.dell.com": [4335], "alum.mit.edu": [9749], "cfvod.kaltura.com": [8775], "*.segurosuniversales.net": [14561], "*.api.bing.net": [1894], "nurd.space": [10976], "www.ratgeber-verbraucherzentrale.de": [17617], "snapengage-1.wpengine.netdna-cdn.com": [15027], "webtrends-lb.ericsson.net": [5343], "ws.cubby.com": [3909], "radioleaks.se": [13519], "elements.plymouth.ac.uk": [12833], "kb.cloudlinux.com": [3289], "www.timex.com": [16467], "hellosign.com": [7298], "www.tuxingsun.net": [16811], "levoleague-wordpress.s3.amazonaws.com": [9275], "blogjp.ashleymadison.com": [1254], "secure.bluebird.com": [2145], "www.cheapassgamer.com": [3039], "cdns.gigya.com": [6659], "ansa.it": [1055], "www.thalys.com": [16172], "static.malwarebytes.org": [9929], "www.tripadvisor.com": [16741], "www.youcanbook.me": [18703], "jnls.cup.org": [2689], "business.quickline.ch": [19530], "nestlepurinacareers.com": [11169], "www.starttls.info": [14188], "lsda.jsc.nasa.gov": [10869], "spcache.microsoft.com": [10364], "www.deis.com": [4320], "webdam.com": [18059], "www.newscientist.com": [11298], "a.blip.tv": [2079], "cdn11.iconfinder.com": [7921], "chbe.illinois.edu": [17258], "centzy.com": [2960], "pet-portal.eu": [12240], "koen.io": [8954], "www.m-fanshop.ch": [19399], "classiccatalogue.essex.gov.uk": [5365], "www.solicitor-concierge.com": [15116], "ethlife.ethz.ch": [4974], "oaklandish.com": [11694], "www.pwdhash.com": [13261], "www.geoiptool.com": [19213], "blog.twenga.com": [16873], "ci.openmrs.org": [11953], "*.cfapps.io": [2976], "nrel.gov": [11057], "blog.codebasehq.com": [3360], "www.ghostnoteapp.com": [6632], "*.americanheart.org": [945], "shepherdsfriendly.co.uk": [14699], "yabause.org": [18628], "*.incommonfederation.org": [8031], "southbankcentre.co.uk": [15192], "paypalgivingfund.org": [12484], "www.herdprotect.com": [7324], "buzzfeed.com": [2473], "rtb.techdirt.com": [16026], "www.seetickets.com": [14547], "intel.sharedvue.net": [14675], "perfectmoney.com": [12563], "static4.flattr.net": [5910], "mae.osu.edu": [11760], "genesis-technologies.com": [6526], "www.proxfree.com": [13175], "www.rubenerd.com": [14013], "www.acrylicwifi.com": [485], "www.personaldemocracy.com": [12582], "*.gnd-tech.com": [6351], "itmatrix.eu": [7860], "ntrs.nasa.gov": [17026], "nottingham.ac.uk": [11528], "priceza.com": [13056], "static.4kdownload.com": [151], "members.mtna.org": [9801], "fullrate.dk": [6256], "*.gizmag.com": [6694], "www.cedmagazine.com": [2569], "app.alipay.com": [817], "zacks.com": [18775], "www.polymer-project.org": [12893], "readcomicsinpublic.com": [13605], "wii.pcf.wustl.edu": [17993], "www.interference.cc": [8248], "jackimaging.com": [8482], "i4.code.msdn.microsoft.com": [10364], "valuecommerce.ne.jp": [17542], "zeroblock.com": [18840], "www.10minutemail.com": [13], "imgsrv.toppreise.ch": [19688], "manager.web4all.fr": [18052], "mycollege.sunybroome.edu": [2365], "m.blogs.yandex.by": [18648], "www.hidekisaito.com": [7393], "www.hailavenger.com": [7165], "homes.cs.washington.edu": [17291], "digi77.com": [4471], "gspp.berkeley.edu": [17240], "silverum.cz": [14804], "web.housing.illinois.edu": [17258], "transip.de": [19694], "eds.com": [7378], "www.enomcentral.com": [4934], "www.d0wn.biz": [3996], "privatelayer.com": [13098], "www.obsoleet.org": [11707], "www.uclahealth.org": [16935], "sofawolf.com": [15088], "partnerupload1.steampowered.com": [15450], "9gwc-kbhkort.kk.dk": [8730], "www.blacktonic.com": [2041], "www.garoa.net": [6460], "timeweb.com": [16456], "creative.aggregateknowledge.com": [726], "account.bistudio.com": [2179], "linotype.com": [9388], "easypress.ca": [5030], "www.portlandonline.com": [3195], "www.familie.bw.aok.de": [317], "www.mehring.com": [10235], "cleveland.police.uk": [3237], "hr.stanford.edu": [15383], "enigmabox.net": [5274], "www.rcfp.org": [13404], "wupath.wustl.edu": [17993], "fskills.idoxgroup.com": [19281], "www.rbcommons.com": [13401], "gigaserver.cz": [6654], "www.cacetech.com": [2706], "adfs.wales.gov.uk": [17957], "dealers.eurogap.cz": [5417], "vonage.com": [17838], "www.poormanmotorsports.com": [12900], "preferences.truste.com": [15856], "*.chistescortosbuenos.com": [3090], "www.researchnews.osu.edu": [11760], "revenuesbenefits.charnwood.gov.uk": [3015], "www.feedpress.me": [5735], "www.fose1.plymouth.ac.uk": [12833], "upickem.net": [17389], "cloud.tyk.io": [16904], "ghirardelligiftguides.com": [6627], "imagecache2.allposters.com": [835], "blog.sys4.de": [15746], "www.crackedconsole.com": [3751], "www.myaccount.charter.com": [3020], "*.thing.net": [16355], "www.multivu.com": [2937], "www.coinurl.com": [3399], "www.togahotels.com": [16529], "musicbox.netcologne.de": [11188], "union.uiuc.edu": [16956], "g2.twimg.com": [16877], "data.utsystem.edu": [17284], "www.tasteofthenorthend.org": [15972], "otummstore.se": [12136], "idefix.com": [7933], "www.pep.foundation": [12502], "www.khanacademy.org": [8873], "www.nips.cc": [10930], "blog.safeshepherd.com": [14236], "blog.talktalkbusiness.co.uk": [15930], "concur.com": [3550], "www.pantarhei.sk": [12370], "secure.opinionlab.com": [12054], "npin.cdc.gov": [19046], "www.catalogue.yandex.by": [18648], "*.clickequations.net": [3245], "p.o0bc.com": [11601], "comptroller.nyc.gov": [11292], "www.legitscript.com": [9232], "www.wiki.unbit.it": [17148], "k.copyleft.org": [3655], "rbu.sh": [13594], "*.pleaseignore.com": [12811], "analytics.tylercipriani.com": [16905], "water-challenge.com": [17998], "physics.illinois.edu": [17258], "www.rms.sexy": [13915], "f1.thejournal.ie": [16224], "www.foodsafety.gov": [5999], "www.veterans-aid.net": [17655], "watson.ch": [19748], "www.banyen.com": [1658], "*.idc.com": [7703], "mixx.com": [10470], "tickets.openmrs.org": [11953], "bizo.com": [2031], "*.gentoo-art.org": [19462], "www.masterspaswi.com": [10056], "tdconline.se": [15799], "www.prometheus-group.com": [13150], "www.carters.com": [2868], "www.desilva.biz": [4247], "www.netteca.com": [11252], "lesestoff.ch": [19358], "bayleaks.com": [1699], "www.kybernetes.htwk-leipzig.de": [7114], "i1.sndcdn.com": [15032], "kickassvps.com": [8877], "www.dbnnor.no": [4605], "attictv.com": [1339], "crm.warmlyyours.com": [17980], "community.oracle.com": [12082], "www.gradwell.com": [6883], "newyorktimes.com": [11313], "aimpulse.com": [743], "eduscho.at": [15985], "slides.com": [14964], "millionhearts.osu.edu": [11760], "memorydealers.com": [10252], "forms.cert.org": [2583], "www.compete.com": [3519], "*.leanpub.com": [9208], "usshortcodes.com": [3485], "www.browsershots.org": [2372], "photos.friendfinder.com": [6213], "fb.lagardere-pub.com": [9130], "www.1sand0s.nl": [62], "starmotorcycles.com": [15389], "sogou.com": [19606], "cdn.adsrvmedia.net": [634], "www.ascr.usda.gov": [17209], "terveysportti.org": [16133], "www.bww.com": [888], "help.sina.com.cn": [14842], "www.openhub.net": [12013], "pwk.cossacklabs.com": [3692], "community.invisionpower.com": [8325], "origin.img.domaintools.com": [4660], "www.studiumundbehinderung.kit.edu": [8797], "bosch-sensortec.com": [2226], "services.snoopy.swisscom.com": [15698], "www.cryengine.com": [3838], "crosswire.org": [3815], "slb.com": [14355], "www.ibanking.cimbthai.com": [2608], "nl.hertz.be": [7339], "www.youtube.cz": [18709], "dev.chromium.org": [3119], "storage.stgbssint.com": [15472], "www.youtube.ch": [18709], "bestpractical.com": [1807], "www.youtube.cl": [18709], "www.youtube.co": [18709], "hd.se": [7052], "www.youtube.ca": [18709], "simply-partner.com": [14831], "www.kabelkiosk.de": [8761], "secure.ourneighborhoodmilf.com": [12145], "www.taschenorakel.de": [15967], "bishopfox.com": [1915], "static.sf.net": [15174], "katalog.ub.uni-heidelberg.de": [17174], "code.hackerspace.pl": [7149], "*.iupui.edu": [7868], "www.indprop.gov.sk": [14972], "alljoyn.org": [832], "*.lightreading.com": [16021], "blog.yourkarma.com": [18728], "yamgo.com": [18644], "*.mediatakeout.com": [10164], "www.iwantmytvmagazine.com": [10973], "www.sucuri.net": [15575], "secure.wealden.gov.uk": [19750], "systemcenteradviser.net": [15760], "www.fsg.ulaval.ca": [17229], "prima.urospace.net": [17414], "suma-ev.de": [15589], "www.sunrisetech.gr": [15604], "l.facebook.com": [5620], "sharethefiles.com": [14679], "explore.thestorefront.com": [16313], "stcweb.stc.indiana.edu": [8065], "www.meetings.io": [10217], "www.honeynet.org": [19257], "2.*.wdfiles.com": [18294], "www.transparency.org": [16679], "order.trustico.com": [16794], "mysupport.netapp.com": [11183], "data.archive.moe": [1165], "lists.opnsense.org": [11656], "crystaldelights.com": [3893], "holidaybullshit.com": [7450], "lso.com": [9101], "www.tvheadend.org": [16860], "cadw.wales.gov.uk": [2715], "csbaacademy.com": [2664], "www.socialrank.com": [15058], "create-dmgmedia.co.uk": [3771], "vh1.vutbr.cz": [17522], "in-disguise.com": [8024], "tpb.piratenpartij.nl": [12708], "www.nvenergy.com": [10981], "www.google.org": [6836], "secure2.sophos.com": [15154], "suffolkcoastalandwaveneyl.firmstep.com": [19183], "accounts.ocf.berkeley.edu": [17240], "mirrorbingo.com": [10444, 10445], "support.elsevier.com": [5185], "gentoo-art.org": [19461, 19462], "www.consumersniper.com": [3601], "*.fins.com": [11321], "www.pinknews.co.uk": [12692], "ssl.intevation.org": [8297], "www.ispid.nl": [7833], "family.yandex.com.tr": [18649], "*.ouya.tv": [11684], "www.tisarana.ca": [16497], "api.domaintools.com": [4660], "cooldestinations.net": [3641], "lds.org": [16219], "wwwdc.cinelease.com": [7372], "www.rapidsite.jp": [13559], "*.wpc.edgecastcdn.net": [5079], "cdsweb.cern.ch": [2575], "blogs.coreboot.org": [3669], "*.divshot.com": [4584], "download-software.intel.com": [8209], "*.stratusexpress.com": [14606], "lids.mit.edu": [9749], "secure.comodo.net": [3504], "support.tenable.com": [16109], "*.servicetick.com": [14623], "netreg.berkeley.edu": [17240], "www.nycris.nhs.uk": [10913], "ticketing.heanet.ie": [7269], "alumni.rmit.edu.au": [13437], "query.nytimes.com": [11000], "glassdoor.co.*": [6701], "sfs.stanford.edu": [15383], "eregistrar.westsussex.gov.uk": [18211], "eduroam.vutbr.cz": [17522], "wis.ntu.edu.sg": [11034], "beacon.walmart.com": [17964], "*.zopim.com": [18908], "crukip.cancerresearchuk.org": [19035], "blog.usa.gov": [17029], "www.ias.edu": [7669], "janus.senate.gov.ph": [14575], "www.soylentnews.org": [15200], "fed.apps.ikea.com": [7959], "www.eecs.berkeley.edu": [17240], "www.openadultdirectory.com": [11917], "linuxwall.info": [9437], "clbr.tv": [3257], "www.specto.io": [15246], "adverts.adgenie.co.uk": [586], "office15client.microsoft.com": [10364], "kit.edu": [8798], "nnm-club.me": [10943], "extranet.wienit.at": [18284], "oar.uwm.edu": [17294], "tor.spline.inf.fu-berlin.de": [6188], "tunespeak.com": [16830], "www.thediplomat.com": [16187], "secure.adzerk.net": [675], "svc.engineering.osu.edu": [11760], "www.urbanartcloud.com": [17410], "bugs.96boards.org": [209], "community.openvpn.net": [11989], "offer.hertz.com": [7372], "sidebar.itunes.apple.com": [1120], "ip.sandia.gov": [14278], "*.peerius.com": [12523], "kbs.de": [8940], "festivusgames.com": [5760], "www.tacticaltech.org": [15901], "retronaut.com": [13829], "consult.northyorks.gov.uk": [19440], "www.scraperwiki.com": [14406], "*.mplxtms.com": [17541], "home.uni-erlangen.de": [17311], "*.npario-inc.net": [10952], "*.e.champssports.com": [2991], "carezone.cz": [2849], "illiniunion.illinois.edu": [17258], "s1.adform.net": [585], "android-build.linaro.org": [9361], "datamappi.fi": [4203], "typotheque.com": [16917], "voat.co": [17809], "fishbase.us": [5881], "lists.internet2.edu": [8279], "www.regularish.com": [13742], "www.ruggedsoftware.org": [14028], "posta-online.poste.it": [12965], "www.wine-apps.org": [19461], "pcsp-emu.com": [5224], "success.economist.com": [5060], "www.gametreedeveloper.com": [6428], "mobilebill.virginmedia.com": [17737], "www.getfirebug.com": [6573], "www.metacpan.org": [10297], "cdn.viglink.com": [17710], "jobsatosu.com": [8599], "ingress.com": [8141], "qfxsoftware.com": [13282], "*.retail-link.gr": [13821], "docs.nice.org.uk": [10921], "web.rondavu.com": [13964], "www.bnl.gov": [19009], "ticket4u.com.my": [19681], "*.museodelprado.es": [10711], "www.angola3.org": [1017], "e12.xhamsterpremiumpass.com": [18516], "pornhub.com": [12926], "img1.chbtc.com": [3036], "www.he.com": [7629], "imine.co": [8004], "appsites.com": [1135], "www.sverigesradio.se": [15673], "maryel.rt.ru": [13469], "studentaidcalculator.com": [15536], "*.em.gov.au": [1389], "*.logitech.com": [9561], "www.bitin.io": [1997], "www.coinomat.com": [3407], "bluestargolf.com": [8431], "www.cyphar.com": [3983], "datenschutz.de": [17746], "public-dc2.govdelivery.com": [6863], "edit.www.uaa.alaska.edu": [17233], "*.cxt.ms": [3951], "mijn.groenlinks.nl": [6962], "admit.washington.edu": [17291], "*.sitizens.com": [14886], "*.alivenotdead.com": [820], "www.easthants.gov.uk": [5013], "www.jabberd.org": [8479], "cc.earthlink.net": [5007], "askville.amazon.com": [913], "virusdesk.kaspersky.ru": [8807], "js.admeld.com": [6833], "*.siteblindado.com": [14876], "tailfeather.twimg.com": [16877], "*.producthunt.com": [13122], "explorecourses.stanford.edu": [15383], "mindtouch.com": [10409], "clouddisk.tdc.dk": [15796], "www.makibox.com": [9919], "www.helpscout.net": [7307], "mentors.debian.net": [4272], "quotesnsayings.com": [13378], "*.nic.swiss": [19126], "themonthly.com.au": [16298], "mediamarkt.se": [10175], "changetip.com": [2995], "freetvonline.com": [6153], "www.colm.net": [3434], "www.keyghost.com": [8866], "secure4.vend-o.com": [17605], "jr.jd.com": [8423], "sphincs.cr.yp.to": [3748], "inetinteractive.com": [7774], "rdns.im": [13596], "www.intel.com": [8209], "snapengage-4.wpengine.netdna-cdn.com": [15027], "aldimobile.com.au": [300], "www-cs-faculty.stanford.edu": [15383], "2200kultur.kk.dk": [8730], "shad.contest.yandex.com": [18651], "www.varian.com": [17564], "www.mobireach.com": [10491], "lanik.us": [9148], "shaklee.com": [14656], "datorhandbok.lysator.liu.se": [9084], "svn.macports.org": [9821], "agenda.kuleuven.be": [8816], "*.simplereach.com": [14822], "maastricht.nl": [11132], "images.bwbx.io": [2482], "www.bitrig.org": [2014], "www.trendmicro.eu": [16716], "www.adagio.com": [551], "secure.gmo.jp": [6345], "shkspr.mobi": [14116], "project-slhc.web.cern.ch": [2575], "www.uni-mainz.de": [17324], "echoditto.com": [5046], "poshliving.com": [12944], "adcdownload.apple.com": [1119], "download.bleachbit.org": [19007], "raglan23.co.nz": [19532], "toxme.se": [16618], "news.shazam.com": [14688], "www.stadt-zuerich.ch": [15366], "pressroom.ceneo.pl": [2935], "pad.artsci.wustl.edu": [17993], "dealers.cadlink.com": [19033], "stdhivtraining.org": [2743], "medcatalog.stanford.edu": [15382], "zoomerang.com": [18903], "glyphicons.com": [6755], "airasia.com": [746], "tune.pk": [16829], "delivery04.dhe.ibm.com": [7675], "www.icard.uillinois.edu": [16960], "n5.adshostnet.com": [630], "open.voa.gov.uk": [19739], "isadom.wustl.edu": [17993], "t.on.aol.com": [321], "mxguarddog.com": [9811], "www.brilig.com": [2332], "www.sociamonials.com": [15074], "www.just-eat.ca": [19328], "cms.sydney.edu.au": [19649], "*.defcongroups.org": [4026], "verify.adobe.com": [615], "private.gmocloud.com": [6343], "testequipmentdepot.com": [16146], "qiang.taobao.com": [15952], "uwinnipeg.ca": [17079], "aai.kuleuven.be": [8816], "autoconfig.yandex.com": [18651], "i.canddi.com": [19036], "trails.com": [4343], "duplication.cdbaby.com": [19045], "torrentbit.net": [16585], "soundkit.io": [15157], "www.patent.resource.org": [13207], "code.tinypass.com": [16489], "www.etravelway.com": [5392], "anthonycameron.com": [1064], "figshare.com": [5786], "bwurst.org": [1585], "beckerproxy.wustl.edu": [17993], "touch.facebook.com": [5620], "wiki.zentyal.org": [18834], "teamcenter.desy.de": [4399], "www.coloradocaptures.com": [3441], "*.pidgin.im": [12672], "cps-static.rovicorp.com": [13988], "api.srcclr.com": [15337], "*.kobobooks.de": [8949], "jmall.jd.com": [8423], "charlottenaturemuseum.org": [3014], "demo.alternc.org": [878], "esiss.ac.uk": [4961], "*.psmprogram.gov.au": [13211], "no.support.tomtom.com": [16540], "ixit.cz": [7883], "get.panopto.com": [12364], "wilmu.edu": [18320], "saxp.zedo.com": [18808], "computing.stanford.edu": [15383], "financeprod.alipay.com": [817], "payments.eastsussex.gov.uk": [19142], "*.csc.com": [2666], "*.my.com": [10743], "atariage.com": [1310], "wpecdn.paymoapp.com": [12482], "www.mcmelectronics.com": [9728], "saml.socialtext.net": [15072], "privatevpn.com": [13095], "wiki.linuxlovers.at": [9431, 9432], "filler.coinjar.com": [3397], "*.hi.nl": [7385], "status.bitbucket.org": [1926], "open.barnet.gov.uk": [18982], "status.recurly.com": [13652], "static.stratosphere.msn.com": [9796], "images.groups.adobe.com": [615], "soros.org": [11910], "gvntube.com": [6399], "www.isnic.is": [7826], "elle.com": [5170], "ca.dinahosting.com": [4519], "planet.enlightenment.org": [5280], "www.cs.umd.edu": [17263], "*.0nl1ne.at": [3], "kanyebay.com": [16227], "*.careerperfect.com": [2843], "payments.billdesk.com": [1876], "magic.fr": [9854], "www.rosehosting.com": [13968], "kolep.bva.bund.de": [5716], "3dcenter.org": [122], "01.org": [1], "secure.hostasaurus.com": [7520], "graphics.streamray.com": [15454], "cloudpiercer.org": [3292], "support.secondlife.com": [14462], "ttfinfo.desy.de": [4399], "www.runbook.io": [14036], "www.appcelerator.com": [1113], "edrcdn.com": [4897], "pragmaticstudio.com": [13014], "www.domainnamesales.com": [4655], "www.motherless.com": [10609], "www.vispahost.com": [17780], "*.eniro.com": [5276], "support-it.upc-cablecom.ch": [19716], "dataconservancy.org": [4192], "www.ansibleworks.com": [1058], "trmm.net": [16755], "tracking.netcologne.de": [11188], "kickasstorrents.eu": [8879], "www.cex.io": [2587], "ycpi.ad.yieldmanager.com": [13881], "www.filescrunch.com": [5803], "eduroam.no": [5099], "www.jjc.edu": [8440], "*.pheedo.com": [12618], "www.stanfordhealthcare.org": [15385], "www.hhcdn.ru": [7063], "forum.winehq.org": [18352], "support.cryptothrift.com": [3865], "www.webmaster.yandex.com.tr": [18649], "www.cambs.police.uk": [2770], "cdn2.recombu.com": [13648], "wiredminds.de": [18364], "trust-center.verisign.se": [17623], "www.mtmweb.com": [10188], "ssl-certificate-center.verisign.fr": [17623], "www.plainenglish.co.uk": [19498], "bst4.gismeteo.ru": [6669], "www.assoc-amazon.fr": [1290], "wiki.inf.ed.ac.uk": [5067], "www.filepicker.com": [5801], "skynet.ie": [16210], "novweb.novara.ie": [4512], "marieclaire.co.uk": [9993], "www.jedec.com": [8430], "blog.1und1.de": [68], "www.yunbi.com": [18750], "maplicada.unizar.es": [17356], "www.diffchecker.com": [4461], "useotrproject.org": [17041], "cerbuna.unizar.es": [17356], "kernl.us": [8859], "nm.debian.org": [4275], "hwrcforms.cardiff.gov.uk": [19039], "d.thelocal.com": [9537], "www2.informatik.uni-hamburg.de": [16951], "www.segment.com": [14558], "www.myscore180.com": [10782], "isomorphic.com": [8374], "cds.linear.com": [9368], "libav.org": [9291], "sciencedaily.com": [14377], "www.tmobile.nl": [15835], "us.carousell.com": [2860], "comcluster.cxense.com": [2694], "manage.vice.com": [17667], "www.useotrproject.org": [17041], "www.powertraveller.com": [13005], "www.app-coding.de": [1101], "www.providertalk.com": [13018], "getcashboard.com": [15559], "hc2.humanclick.com": [9494], "opendz.org": [11933], "www.realtime.email": [13625], "navteq.com": [10873], "gewinnspiel.hofer.at": [299], "*.nhsdirect.nhs.uk": [10911], "app.hubspot.com": [7594], "azcentral.com": [1480], "www.bradford.gov.uk": [2264], "hosting.dxw.com": [4817], "rainforestqa.com": [13532], "*.amazonwebservices.com": [915], "classzone.com": [3217], "login.secureserver.net": [14511], "www.freebin.org": [6124], "planet.linaro.org": [9361], "*.razorservers.com": [13590], "www.cno.org": [3425], "a4apphack.com": [225], "www.miniand.com": [10421], "wiki.openmpt.org": [11951], "sis.amazon.com": [915], "zynga.com": [18933], "praegnanz.de": [13010], "static.contentful.com": [3614], "frootvpn.com": [6228], "iterm2.org": [7864], "www.hm.com": [7083], "gandi.net": [6451], "help.rallydev.com": [13537], "*.cv.uma.es": [17140], "www.youmail.com": [18706], "www.yubico.com": [18745], "media.rightmove.co.uk": [13886], "www.bsi.de": [5711], "wiki.brown.edu": [2367], "incoin.io": [8046], "www.puu.sh": [13258], "www.cybersicherheits-allianz.de": [852], "plugins.jquery.com": [8451], "*.spec.whatwg.org": [17904], "niden.net": [11390], "fastcodesign.com": [5680], "*.mototradeup.com": [10616], "serienjunkies.de": [14596], "www.nodejs.org": [11454], "www.arch-stuff.org": [19461], "*.zenimax.com": [18829], "clients.openitc.co.uk": [11946], "wpacracker.com": [3284], "classes.cornell.edu": [3676], "*.bandcamp.com": [1638], "api.rasp.yandex.com.tr": [18649], "flossmanuals.net": [5577], "www.proxyshard.uk": [19524], "aes.uic.edu": [17231], "blog.deepin.org": [4302], "www.clipperz.is": [3271], "image.webservices.ft.com": [5826], "svc.osu.edu": [11760], "benzinga.com": [1782], "www.ipo.gov.uk": [16974], "news.eoportal.org": [5314], "davidadrian.org": [4225], "www.harvardpilgrim.org": [7220], "pss.gov.au": [13213], "edmsdirect.desy.de": [4399], "legal.here.com": [7326], "dkit.ie": [4040], "www.advconversion.com": [652], "quantopian.com": [13340], "onlineshoes.com": [11874], "stellar.mit.edu": [9749], "www.cse.iitb.ac.in": [7744], "ftp.flux.utah.edu": [17288], "billiondigital.com": [1882], "www.orkut.co.in": [12110], "*.staticstuff.net": [6610], "secure.domaintools.com": [4660], "api.foursquare.com": [6082], "documentation.centreon.com": [2957], "www.treehousei.com": [16706], "ga-innocenceproject.org": [6547], "safeshepherd.com": [14236], "www.siteadvisor.com": [14863], "xively.com": [18577], "www.youtube.at": [18709], "projet-plume.org": [13145], "intellichat.com": [8689], "aeup.eu": [279], "buspass.wokingham.gov.uk": [19762], "purchase.1688.com": [36], "moneycentral.msn.com": [9796], "discourse.org": [4545], "logmeinrescue.com": [9551], "securityblog.stanford.edu": [15383], "hg.mozdev.org": [10647], "autodiscover.yandex.com.tr": [18649], "*.rezdy.com": [19551], "data.rackspace.com": [13506], "mail.rsc.org.uk": [13457], "www.virginmedia.com": [17737], "o2-tv.cz": [16076], "cdn3.colocationamerica.com": [3435], "www.kasimp3.co.za": [8804], "cds.cern.ch": [2575], "ui.zanox.com": [18787], "m.rasp.yandex.com": [18651], "permits.camden.gov.uk": [2772], "pleasure.borsen.dk": [2224], "youbetrayedus.org": [18712], "rpgmakerweb.com": [14003], "esj.com": [4962], "www.nuevasync.com": [11570], "config.schokokeks.org": [19570], "frontiersin.org": [6225], "www.forums.zoho.com": [18884], "www.ferroh.com": [5758], "job.alibaba.com": [809], "nationalserviceresources.org": [11090], "www.transmarine.org": [16661], "searchpub.nssc.nasa.gov": [10869], "my.t-mobile.com": [15772], "l0cal.com": [9058], "b.gzhls.at": [13026], "cz.redhat.com": [13675], "steamrep.com": [15455], "yaler.net": [18643], "greenvilleonline.com": [6939], "projects.triodos.com": [16739], "imss.caltech.edu": [2756], "publishing.aip.org": [291], "cdn0.theawl.com": [16179], "hevcp.engineering.osu.edu": [11760], "www.standagainstspying.org": [15376], "solutionconnection.netapp.com": [11183], "allianzfuercybersicherheit.de": [852], "*.ez-download.com": [4999], "blog.alwaysdata.com": [897], "*.webkite.com": [18069], "jal.co.jp": [8514], "lfchosting.com": [9073], "plumbr.eu": [12827], "www.ut.ee": [17069], "idcdn.de": [8346], "www.dhavalkapil.com": [4439], "*.hexonet.net": [7381], "compuware.com": [3542], "davidsontutoring.com": [4229, 4230], "storycubes.com": [15501], "sdm-admissions.mit.edu": [9749], "radio.cyberguerrilla.org": [3961], "b.telus.com": [16103], "devportal.jamendo.com": [8502], "www.boneblast.com": [2196, 2197], "www.alterapraxis.com": [877], "passes.northyorks.gov.uk": [19440], "politie.nl": [11132], "www.cit.cornell.edu": [3676], "archive.informationactivism.org": [8125], "onfleet.com": [11858], "classes.soe.ucsc.edu": [17305], "gigster.com": [6658], "mdsupport.emoryhealthcare.org": [5211], "tfsimg.alipay.com": [817], "mercyships.org": [10282], "bigbrotherawards.de": [1852], "metric.yandex.kz": [18652], "im.ft-static.com": [19201], "gsb.stanford.edu": [15383], "lotto.de": [9614], "acsportal.oracle.com": [12082], "static.appcelerator.com": [1113], "mwrinfosecurity.com": [9809], "comunidade.edp.pt": [4896], "www.webnms.com": [18077], "wello.com": [18195], "www.it2.nl": [7842], "www.redmatrix.me": [13678], "americorpsconnect.org": [11090], "cts-strasbourg.eu": [3905], "shop.usa.canon.com": [2809], "developers.hubspot.com": [7594], "halogenonline.dft.gov.uk": [19116], "www.e.switchadhub.com": [15701], "www.carbonwind.net": [2832], "*.gmedianetworks.com": [6756], "www.hmrc.gov.uk": [7084], "www.gogoinflight.com": [6807], "static.slidesharecdn.com": [14963], "www.vinothek.hofer.at": [299], "www.silverrushstyle.com": [14800], "b3n.org": [1487], "community-uat.freescale.com": [6183], "www.businessadvice.anz.com": [315], "www.tripwire.com": [16749, 16750], "digiumenterprise.com": [4511], "https.cio.gov": [2612], "*.procensus.com": [19520], "help.hipchat.com": [7414], "waitrosedirect.com": [17951], "www.gchq.gov.uk": [6871], "webita.ethz.ch": [4975], "tobaccofree.osu.edu": [11675], "www.iod.ucsd.edu": [16938], "zayo.com": [18802], "overclockers.com": [12165], "gtms04.alicdn.com": [805], "staging.business.leeds.ac.uk": [17318], "passets-ec.pinterest.com": [12699], "*.pogo.com": [12850], "horizon.tv": [19716], "fbopen.gsa.gov": [6386], "business.sky.com": [14924], "*.cntraveler.com": [3556], "www.deprexis.com": [4376], "www.lean-hochschulgruppe.htwk-leipzig.de": [7114], "cdn10.sure-assist.com": [15644], "www.democracynow.org": [4355], "plus.net": [12829], "config.schmidtcom.de": [14356], "www.skreened.com": [14918], "cipeg.leeds.ac.uk": [17318], "www.nixos.org": [11430], "s3.sandbaguk.com.s3.amazonaws.com": [14276], "www.simplybusiness.co.uk": [14833], "newsroom.fb.com": [5698], "search.itunes.apple.com": [1120], "edocs.southglos.gov.uk": [15189], "notepad-plus-plus.org": [11525], "vle.lsbu.ac.uk": [9098], "*.www.patriotssuperbowl.us": [12458], "ssl.soufun.com.tw": [15156], "cam.wienerstadtwerke.at": [18284], "*.jet2.com": [8557], "www.tescophoto.com": [16140], "www.allposters.com": [835], "dlcl.stanford.edu": [15383], "*.bundeskanzlerin.de": [2428], "www.rasende.dk": [13568], "www.dyson.ie": [4837], "maps.org": [9710], "igodigital.com": [7734], "veterans-aid.net": [17655], "secure.helpscout.net": [7307], "geog.illinois.edu": [17258], "static.adzerk.com": [676], "*.uoregon.edu": [16999], "www.lusternia.com": [19374], "skm.dk": [14899], "docs.docker.io": [4617], "www.posta-online.it": [12957], "epicgames.com": [5320], "info.pindropsecurity.com": [19495], "ness.uic.edu": [17231], "libreoffice.org": [9311], "payhip.com": [12475], "prettylightsmusic.com": [13041], "alldaycalm.com": [845], "www.gizmodo.com": [6695], "iwantclips.com": [7874], "admin.mantisadnetwork.com": [9962], "www.rangenetworks.com": [13548], "coevorden.nl": [11132], "ea.objective.co.uk": [19454], "www.city.com.ua": [3186], "*.em1.cloud.oracle.com": [12082], "shop.netcologne.de": [11188], "lullabot.com": [9658], "*.nnm-club.me": [10943], "warrington.gov.uk": [17984], "www.visitthecapitol.gov": [17777], "feeds.centrify.com": [19048], "ijmfreedommaker.org": [7745], "*.britannica.com": [2336], "www.bytenoc.nl": [2491], "hipaa.stanford.edu": [15383], "tapirex.com": [12351], "phoronix.com": [12637], "www.parallella.org": [12391], "www.isc-events.com": [8261], "uqwimax.jp": [17013], "upc.edu": [12895], "ssl17.ovh.net": [12173], "solidlogic.com": [15120], "cdn.shazam.com": [14689], "iptorrents.com": [7798], "*.liberty.me": [9299], "si.cdn.dell.com": [4335], "www.britac.ac.uk": [2335], "www.myvoice.earthlink.net": [5007], "postpointsrewards.com": [12951], "www.linux42.org": [19461], "ct-cds.con-tech.de": [3547], "torrentsmirror.com": [16588], "reflets.info": [19544], "cdn.lynda.com": [9682], "www.assembly.wales": [1280], "s.my.tmocache.com": [15836], "unitymedia.de": [17221], "audio-video.gnu.org": [6357], "m.gamefly.com": [6419], "files.messe.de": [4409], "hi-eg.com": [7384], "sbir.cancer.gov": [2805], "www.bolagsverket.se": [2186], "webmail.redhat.com": [13675], "cardcash.com": [2833], "profil.wp.pl": [17921], "www.bioconductor.org": [1905], "www.triodos.nl": [16740], "www.online.hmrc.gov.uk": [7084], "magnatune.com": [9859], "photographer.io": [12645], "spin.sjd.net": [8631], "www.bfriars.ox.ac.uk": [17271], "fonts.com": [5993], "www.secure.pangaea.de": [12207], "blog.peer5.com": [12514], "xdomain.ne.jp": [18553], "news.berkeley.edu": [17240], "www.localmotors.com": [19369], "form-cdn.pardot.com": [12399], "crrev.com": [3828], "paulschreiber.com": [12462], "mpp.mxptint.net": [10741], "overseas.alipay.com": [817], "freesound.org": [6184], "www.kinox.tv": [19337], "alzforum.org": [899], "zeusdp.desy.de": [4399], "www.iptc.org": [7850], "*.goldkeys.net": [6815], "psykologteam.dk": [13541], "subscriberconcierge.com": [10011], "city-link.co.uk": [3182], "members.met-art.com": [10294], "allmyvideos.net": [857], "voffka.com": [17817], "pha.ulaval.ca": [17229], "wwwl.accuweather.com": [465], "gitter.im": [6684], "maawg.org": [9703], "www.salon.com": [14253], "store.cadlink.com": [19033], "www.informationactivism.org": [8125], "www.uformia.com": [17114], "3dqlab.stanford.edu": [15383], "*.limango.de": [9354], "yadi.sk": [18627], "www.dataconservancy.org": [4192], "mvd.360buy.com": [111], "www.newrepublic.com": [11309], "shop.look.co.uk": [9593], "www.skepticink.com": [14903], "www.gotinder.com": [16469], "ecodissident.net": [5053], "go.datapipe.com": [4212], "beenverified.com": [1749], "static.xhamsterpremiumpass.com": [18516], "uez.unizar.es": [17356], "imgcache.qq.com": [13285], "eaak.tk": [3533], "www.it.ox.ac.uk": [17271], "www.bitstampede.com": [1953], "ting.com": [16473], "www.fifengine.net": [5573], "x-blog.jp": [18496], "*.rtems.org": [13472], "ans.avast.com": [1444], "www.mhcache.com": [10331], "publicaccessapplications.newcastle.gov.uk": [11315], "stg-campaigns.paypal.com": [12467], "*.cic.fr": [1653], "images.videolan.org": [17688], "programs.wcfia.harvard.edu": [7219], "www.48months.ie": [148], "purehacking.com": [13238], "www.coy.im": [3741], "transloadit.com": [4277], "scm.thm.de": [15811], "consultation.staffordshire.gov.uk": [15370], "blackboardhelp.usc.edu": [17278], "hyperoptic.com": [7647], "www.masspirg.org": [9714], "portal.zarafa.com": [18795], "hitbtc.com": [7420], "gdargaud.net": [7013], "openmarket.org": [11957], "adobeformscentral.com": [618], "docs.cs.cf.ac.uk": [2834], "jira.freeswitch.org": [6130], "cimbpreferred.com": [2606], "xetum.com": [18568], "clicktotweet.com": [3256], "healthcare.gov": [7261], "www.healthiernorthwestlondon.nhs.uk": [10913], "www.productie.gx.uvt.nl": [16445], "*.quattroplay.com": [13343], "wings.buffalo.edu": [17297], "cgs.osu.edu": [11760], "*.ria.ua": [13426], "www.netbetsport.fr": [11186], "dl.ed.gov": [4889], "virusdesk.kaspersky.com": [8806], "developers.braintreepayments.com": [2274], "airport-store.engineering.osu.edu": [11760], "opus-codec.org": [12078], "forums.winehq.org": [18352], "secure.freenet.de": [6180], "avt.foto.mail.ru": [9874], "acf.hhs.gov": [7062], "nam.nes.scot.nhs.uk": [10913], "dev.horde.org": [7495], "luv.asn.au": [9110], "www.weizmann.ac.il": [18189], "www.vanillicon.com": [17560], "merchant.livingsocial.com": [9517], "blogs.norman.com": [11486], "advancedsupport.oracle.com": [12082], "sbnation.com": [14079], "fx.yandex.kz": [18652], "a1.hertzrent2buy.com.br": [7340], "streamtip.com": [15519], "go.websitealive.com": [18149], "www.corkuniversitypress.com": [3674], "teamweek.com": [16005], "www.zeedpic69.com": [18810], "www.wornthrough.com": [18465], "media.playstation.com": [12795], "www.primalblueprint.com": [13058], "www.ifosslr.org": [8260], "sitedirector.symantec.com": [15715], "www.privacyfoundation.de": [6557], "blog.side.cr": [18428], "www.dl.ed.gov": [4889], "static.netverify.com": [11256], "thias.marmotte.net": [10027], "commencement.usc.edu": [17278], "www2.edi7.lu": [4895], "thelayoff.com": [19677], "consult.rbwm.gov.uk": [19539], "tidesandcurrents.noaa.gov": [11083], "orange.jobs": [12085, 12086], "tagbuilder.webtrends.com": [18171], "www.commando.io": [3475], "software-portal.faz.net": [5554], "ads.webtrends.com": [18171], "www.eidq.org": [4918], "*.uwaterloo.ca": [17292], "footaction.com": [6012], "www.tada.com": [15902], "www.bit9.com": [1922], "incloak.com": [8029], "yadg.cc": [19789], "www.onlineregistrationcenter.com": [11877], "www.nanoengineering.ucsd.edu": [16939], "westlandutrechtbank.nl": [18217], "www.plot.ly": [12820], "engaged.educ.cam.ac.uk": [17243], "updown-pilot.arin.net": [338], "img.nxjimg.com": [11591], "mbsportsweb.com": [9721], "www.fastly.com": [5687], "clearlinux.org": [3233], "uofi.uic.edu": [17231], "fi.norton.com": [11505], "www.orderhlp.com": [14724], "login.monash.edu": [10541], "viewmychart.com": [10752], "www.uofmhealth.org": [17378], "api.btckan.com": [1561], "getfedora.org": [6589], "market.yandex.com.tr": [18649], "7chan.org": [192], "betterfap.com": [1827], "staempfliverlag.com": [19623], "www.hostcreo.com": [7501], "srv.clickfuse.com": [3247], "www.spectraflow.com": [15247], "www.windstreambusiness.com": [18348], "forum.tfes.org": [16164], "edihealth.net": [4894], "www.lloydsbank.com": [9524], "www.placesonline.com": [12755], "loopfuse.net": [9604], "psathome.ikea.com": [7959], "www.ups.com": [17007], "esamplesweb.pfizer.com": [12610], "m.lotto.de": [9614], "help.yandex.ua": [18656], "amos.alicdn.com": [805], "www.rollapp.com": [13957], "rt.trafficfacts.com": [16654], "greatfire.org": [6907], "www.verisign.com.au": [17623], "dollarshaveclub.com": [4642], "support.krystal.co.uk": [9024], "forum.dug.net.pl": [4087], "www.skm.vutbr.cz": [17522], "vorpal.io": [17844], "accountsolution.gcion.com": [6308], "shoppingcartelite.com": [14729], "einstellungen.e-plus.com": [4843], "geronimo.apache.org": [1086], "www01.fonts.com": [5993], "www.mapquesthelp.com": [9970], "*.uhrzeit.org": [17120], "emsonline.milton-keynes.gov.uk": [10401], "www.westdevon.gov.uk": [18209], "*.creative.adobe.com": [615], "*.comenity.net": [3463], "employee.hospital.uic.edu": [17231], "innovation.govspace.gov.au": [6867], "www.silverflint.com": [14801], "wiki.srb2.org": [14165], "www.youtube.com.om": [18709], "vremya.yandex.by": [18648], "nikcub.com": [11399], "greatteachersgreatschools.org": [15375], "capitadiscovery.co.uk": [19038], "www.wwte12.com": [17937], "hivoice.hivos.org": [7431], "*.geotrust.net": [6539], "whitehatters.academy": [19757], "forums.openitc.co.uk": [11946], "*.fossbazaar.org": [5588], "skillstoolkit.ox.ac.uk": [17271], "immo.local.ch": [9536], "*.ipage.com": [7802], "*.govexec.com": [1316], "odge.mit.edu": [9749], "dbackpolice.com": [4237], "media.spontex.org": [15287], "m.godaddy.com": [6773], "instasync.com": [19297], "allthingsd.com": [840], "www.boounce.com": [2219], "www.civicaepay.co.uk": [3202], "www.talktalk-labs.com": [15927], "www.loggn.de": [9555], "downloads.somethingawful.com": [15130], "lessbuttons.com": [19359], "zend2.com": [18822], "2gis.ru": [85], "gustavus.edu": [7026], "docs.c9.io": [3280], "littler.com": [9473], "le.ac.uk": [17319], "www.postel.it": [12967], "silicon.com": [14789], "www.canon.ie": [2809], "hwb.wales.gov.uk": [17957], "beacon.beta.walmart.com": [17964], "www-static.exoclick.com": [5499], "www.canon.it": [2809], "ad.retargeter.com": [13601], "telework.gov.au": [16096], "facultyaffairs.stanford.edu": [15383], "api.rollbar.com": [13958], "cayuse.rf.ohio-state.edu": [11761], "www.ico.jobs": [4530], "piraten-schwaben.de": [12716], "shop.toonpool.com": [16556], "aswebstat.stanford.edu": [15383], "crunchboard.com": [3834, 12585], "*.chartbeat.net": [3017], "www.prioritysubmit.com": [13073], "www.madstein.at": [9842], "cdn.thegrindstone.com": [859], "namebright.com": [11016], "freeway.ju.taobao.com": [15952], "rackspace.dk": [13503], "grinnell.edu": [6957], "www.gigya.com": [6659], "owncloud.zaehlwerk.net": [18778], "drafthouse.com": [774], "www.maxkitap.com": [10094], "us.gamigo.com": [6445], "blog.nearlyfreespeech.net": [11122], "*.icu-project.org": [8257], "suburban.nl": [15570], "submit.escholarship.org": [4971], "*.radikal.com.tr": [13513], "direct.yandex.com.tr": [18649], "moderngov.rotherham.gov.uk": [13979], "www.indiegala.com": [8071], "nccgroup.trust": [10880], "eurobsdcon.org": [5404], "pdfserv.maximintegrated.com": [10096], "creativeskills.be": [3786, 3787], "*.geeksphone.com": [6506], "www.thompsonhotels.com": [16379], "www.campina.de": [2782], "bugmenot.com": [2405], "docs.moodle.org": [10575], "support.coinjar.com": [3397], "help.gumroad.com": [7020], "officersforbundet.se": [11752], "ica.se": [7680], "*.adallom.com": [552], "sohh.com": [14149], "sberbank.ru": [14322], "www.adaptec.com": [556], "packages.siedler25.org": [13832], "pgcon.org": [12244], "www.ita.hsr.ch": [17236], "platform.corvisacloud.com": [3688], "fora.tv": [5585], "ucf.edu": [17244], "wasm.usyd.edu.au": [19723], "www.haveproof.com": [7242], "anderson.stanford.edu": [15383], "central-america.hivos.org": [7431], "mailing.sbb.ch": [15693], "parkingeye.co.uk": [12406], "carparks.great-yarmouth.gov.uk": [19227], "carsabi.com": [2865], "apigility.org": [1094], "www.hertz.com.tw": [7368], "www.sprintrebates.com": [15316], "www.bizchannel.cimbbank.com.kh": [2604], "www.hrc.org": [7604], "omha.net": [11889], "www.chase.leeds.ac.uk": [17318], "service.tanke-wienenergie.at": [18284], "scripps.edu": [14418], "greenwood.org": [6940], "gigaone.pl": [6653], "*.coag.gov.au": [3703], "git.linux-mips.org": [9413], "weforum.org": [17902], "rt.debconf.org": [4268], "ntop.org": [11556], "atipso.com": [1314], "www.avoinministerio.fi": [18974], "www.bucketlistly.com": [2385], "kryptnostic.com": [9018], "egnyte.com": [5115], "cyberduck.io": [3969], "allmybase.com": [846], "img.sleviste.cz": [14953], "www.irwinlaw.com": [8360], "glose.com": [6748], "wiki.winehq.org": [18352], "fiddler2.com": [19177], "*.ut.edu": [17340], "tito.io": [16408], "rackspace.co.uk": [13499], "www.yadi.sk": [18627], "vacancies.ncl.ac.uk": [10884], "secure.mypass.de": [10773], "*.smart-dsl.net": [19601], "ir.amtel.com": [984], "citymapper.com": [3193], "*.uni-stuttgart.de": [17282], "spillehallen.tv2.dk": [15881], "webmail.myphone.coop": [10822], "rally.org": [13535], "www.postdirekt.de": [19112], "medical-treatments-management.com": [10188], "*.flightglobal.com": [5921], "www.amnistia.org.pe": [978], "wiki.sourcefabric.org": [15180], "www.mailinabox.email": [9880], "hostmonster-cdn.com": [7537], "www.photomath.net": [12640], "www.noiselessvault.org": [11459], "rtc.debian.org": [4275], "www.enocloud.com": [19138], "fed.princeton.edu": [13064], "porter.io": [12935], "sites-jumpstart.stanford.edu": [15383], "www.iqualita.link": [8352], "strtc.oracle.com": [12082], "boardgamegeek.com": [2166], "www.movie2k.pe": [10635], "www.urac.org": [17014], "arma2.com": [18961], "fye.osu.edu": [11760], "todd.upickem.net": [17389], "blog.openlibrary.org": [12018], "tracking.correctiv.org": [3685], "partners-api.pinterest.com": [12699], "rss.itunes.apple.com": [1120], "*.loopfuse.com": [9604], "ads.bluelithium.com": [13881], "dmx-austria.at": [4049], "www.merethis.com": [10283], "www.neo-direct.com": [10898], "*.hostoople.com": [7540], "us1.rallydev.com": [13537], "openttd.org": [11982], "teracomconsulting.com": [16120], "www.mendeley.com": [10257], "sesplan.gov.uk": [19584], "www.cs.illinois.edu": [17258], "www.42.ie": [142], "couragefound.org": [3714], "summerschool.wustl.edu": [17993], "mycloud.rackspace.co.uk": [13499], "visit.openreach.co.uk": [12042], "cdn7.sure-assist.com": [15644], "translate.whatsapp.com": [18234], "csc.gov.au": [3494], "simcenter.engineering.osu.edu": [11760], "login.microsoftonline.com": [10367], "www.nnetworks.co.jp": [11434], "wazapp.im": [18013], "www.chooseblocks.com": [3100], "ukr.net": [17125], "sysinfo-15.cnaf.infn.it": [7766], "tune.yandex.ua": [18656], "odevzdej.cz": [11725], "folksam.se": [5987], "*.b9.stumbleupon.com": [15544], "www.tenable.com": [16109], "cei.org": [3520], "*.nokia.com": [11461], "hatatorium.com": [7237], "www.healthreach.nlm.nih.gov": [11052], "webftp.aerohosting.cz": [689], "www.euroland.com": [5418], "locationmetadataeditor.data.gov.uk": [19100], "www.so.cl": [15046], "code42.com": [3346], "www.tv.yandex.com.tr": [18649], "ideas.joomla.org": [8627, 17440], "sidereel.com": [14762], "www.astro.rug.nl": [17254], "secure-ec.libsyn.com": [9321], "www.modsecurity.org": [10514], "mail.uas.biz": [17214], "technocrat.net": [16040], "dev.syncplicity.com": [15730], "givingcomfort.com": [6690], "contact.yandex.com.tr": [18649], "www.supplyframe.com": [15638], "cyber-defense.sans.org": [14072], "wire.com": [18360], "www.asta.thm.de": [15811], "secure.robotshop.com": [13928], "kaust-cu.cornell.edu": [3676], "*.swtor.com": [15708], "www.badosoft.com": [1610], "www.astrobotic.com": [1303], "*.abba.accenture.com": [442], "steamunlock.com": [15456], "wifi.alipay.com": [817], "60plus.vcd.org": [17474], "morrisons.com": [10601], "www.webtype.com": [18095], "downloadbox.me": [4727], "mywebsitepersonal.1and1.co.uk": [53], "api.zhihu.com": [18856], "svn.planet-lab.org": [12763], "www.english-heritageshop.org.uk": [5269], "gic5.mycdn.me": [10824], "*.tekgoblinmedia.com": [16064], "submit.symantec.com": [15715], "www.xcat.nl": [18503], "fate.libav.org": [9291], "paymentech.com": [12477], "signup.pagerduty.com": [12332], "www.mobioinsider.com": [10504], "donate.citizenweb.io": [3173], "dudleyfoi.org.uk": [19128], "gust.com": [7025], "doomworld.com": [4683], "gotowebinar.com": [6789], "www.groups.io": [6980], "paper.li": [12379], "www.gistmarks.com": [6671], "www.rsync.net": [14009], "craigslist.org": [3756], "info.recurly.com": [13652], "wetter.at": [11728], "maxim-ic.com": [10095], "www.installments.com": [19295], "www.tubeoffline.com": [16815], "blog.formstack.com": [6046], "smoothieblend.com": [15011], "parisschoolofeconomics.eu": [12402], "sharkfest.wireshark.org": [18369], "www.theiabm.org": [7665], "www.owasp.org": [11691], "i.guim.co.uk": [7014], "www.fernwaerme-partner.at": [18284], "concert.arte.tv": [18966], "new.adestra.com": [584], "ruelala.com": [14025], "secure.aadcdn.microsoftonline-p.com": [10365], "st.org": [14187], "www.cirw.in": [3160], "app.compose.io": [3526], "socialrank.co": [15058], "www.fluttertoday.com": [5955], "torrents.to": [16587], "pnasfirstlook.org": [12273], "www.campinaboerderijdag.nl": [2782], "en.metooo.io": [10317], "www.antipolygraph.org": [1067], "v6ak.com": [17465], "ip-check.info": [7801], "mitls.org": [10334], "www.marc-stevens.nl": [9980], "path-follower.com": [12450], "i3.microsoft.com": [10364], "ranzcp.org": [13399], "downloads.kachingle.com": [8764], "gmodules.com": [6839], "www.yeswescan.org": [13207], "www.just-eat.es": [19328], "*.adspirit.de": [543], "www.rem.co": [13756], "as.stanford.edu": [15383], "try.github.com": [6680], "inachinashop.com": [11625], "manage.windowsazure.com": [18344], "plato.stanford.edu": [15383], "cri.ucsd.edu": [16939], "www.zoho.co.jp": [18883], "*.netswipe.com": [8672], "whonix.thecthulhu.com": [16334], "www.marijuanamajority.com": [9994], "www.gluster.org": [6752], "grandmargherita.com": [6890], "www.awesomejar.com": [1462], "www.taoeffect.com": [15950], "feedback.yandex.kz": [18652], "blog.getfirebug.com": [6573], "test-login.geant.org": [6314], "meeting.ntu.edu.tw": [10971], "montanalinux.org": [19408], "umassmag.com": [17264], "etutor.bls.ch": [1526], "sparklit.com": [15223], "mods.mybb.com": [10823], "thecanadianpress.com": [2801], "zoum.ca": [18764], "twinsornot.net": [16881], "piwik1eaf.literotica.com": [9467], "open.weixin.qq.com": [13285], "isc-events.com": [8261], "corporate.stanford.edu": [15383], "assets-secure.guim.co.uk": [7014], "www.consumentenbond.nl": [3597], "www.prediction.io": [13023], "www.namespace.us": [11023], "ru.chaturbate.com": [3035], "jon.oberheide.org": [11697], "resources.civilservice.gov.uk": [19066], "p.typekit.net": [16912], "cdn.nursing.osu.edu": [11760], "danblah.com": [4133, 4134], "slate.fr": [14949], "botkyrka.tdconline.se": [15799], "atlas.arbornetworks.com": [1154], "solarsystem.nasa.gov": [10869], "cantheyseemydick.com": [2791], "webmail.sf-mail.de": [14107], "nehta.gov.au": [11067], "www.drupalwatchdog.com": [4782], "cdn.tinybuddha.com": [16485], "btjunkie.org": [19022], "xenon.stanford.edu": [15383], "www.googletagservices.com": [6843], "comic-rocket.com": [3467], "monitor.planet-lab.org": [12762], "pg.onlinesbi.com": [11873], "www.synaesthesie.net": [15723], "www.ftjcfx.com": [3481], "tag.contextweb.com": [3616], "www.upc-cablecom.biz": [19716], "www.uklinux.net": [16971], "de-eo.dict.cc": [4455], "febas.de": [5705], "*.ticketcorner.ch": [16418], "myaccount.stubhub.co.uk": [15534], "logoyes.com": [9562], "web-stat.com": [18047], "dk.support.tomtom.com": [16540], "dev.guardianproject.info": [7001], "superblock.net": [15625], "www.testssl.sh": [16147], "help.livingsocial.co.uk": [9516], "photo.tagasauris.com": [15906], "sublimetext.com": [15562], "www.documentfreedom.org": [4628], "www.archive.icommons.org": [7699], "www.isen.com": [8366], "astaro.com": [1298], "www.gdargaud.net": [7013], "www.swehack.org": [15686], "app.net": [1102], "h.bing.com": [1895], "binero.se": [1893], "www.cira.kyoto-u.ac.jp": [9055], "talk.roleplaychat.org": [13955], "www.saymedia.com": [14320], "developer.piwik.org": [12733], "everydayhero.com": [5454], "ucl.ac.uk": [17295], "www.bizshark.com": [2034], "thehabbos.org": [16337], "www.orderbook.net": [12096], "umassathletics.cstv.com": [17265], "logos.tlecdn.net": [16510], "ncisf.org": [10882], "www.iterm2.com": [19276], "*.vtluug.org": [17518], "www.inyt.com": [7772], "*.pool.datamind.ru": [4204], "tdcserviceonline.com": [15798], "rpclient.oebb.at": [19455], "guru.sitescout.com": [14871], "box.qweery.nl": [13384], "podio.com": [12846], "elligator.cr.yp.to": [3748], "autodiscover.osu.edu": [11760], "snrsweetdeals.newsreview.com": [11339], "api.nice.org.uk": [10921], "wiki.kubuntu.org": [9029], "flyertalk.com": [5963], "*.convar.de": [3625], "media.phonehouse.com": [12636], "www.iibuy.com.au": [7957], "www.richmondteaparty.com": [13875], "arquetype.org": [1211], "www.apm.com": [332], "*.kldp.org": [8735], "baldershage.se": [1627], "exed.hks.harvard.edu": [7219], "highqsolutions.com": [7400], "oberbayern.piratenpartei.de": [12721], "static1.symanteccloud.com": [15715], "pressfreedomfoundation.org": [6173], "www.catarse.me": [2899], "tempolibero1.ffs.ch": [15693], "www.thefire.org": [16277], "mirweb.mir.wustl.edu": [17993], "sync.adap.tv": [554], "sandofsky.com": [14280], "*.comm100.cn": [3470], "ritpress.rit.edu": [13434], "*.uptilo.com": [17401], "www.govdelivery.com": [6863], "i.materialise.com": [7653], "rarbg.com": [19534], "www.fobos.de": [5972], "myaccount.zen.co.uk": [18815], "rtklive.com": [13473], "cosmopolitan.com": [3690], "laverna.cc": [9175], "search.whitehouse.gov": [18251], "7.vgc.no": [17484], "www.segment.io": [14559], "q7.com": [13277], "scraporchard.com": [14405], "horde.active24.cz": [18938], "*.networkcomputing.com": [11269], "comcast.com": [3461], "internetevolution.com": [4404], "weissinc.com": [18188], "2015globalthinkers.foreignpolicy.com": [6024], "data.usaspending.gov": [17034], "valuecommerce.com": [17542], "www.begun.ru": [1755], "assets.onelogin.com": [11835], "eater.com": [5038], "www.shaklee.com": [14656], "assets.clickmotive.com": [3248], "justice.sk": [14972], "www.edwardsnowden.com": [5103], "adjuggler.com": [527], "darklaunch.tmi.twitch.tv": [16888], "www.d66.nl": [4000], "pypi.python.org": [13271], "mbws.axeso5.com": [1473], "gameological.com": [6434], "embed-assets.wakelet.com": [17953], "oversee.net": [12169], "directbox.*": [4529], "kccmediahub.net": [8714], "www.barkerjr.net": [1671], "tilburguniversity.edu": [16445], "middendrenthe.nl": [11132], "cyberaces.org": [3956], "cdn.nice.org.uk": [10921], "www.dnssec-validator.cz": [4065], "git.nic.cz": [11379], "www.nyt.com": [10997], "www.serverdensity.io": [14614], "www.twofactorauth.org": [16899], "ttc.talenttech.com": [15919], "ches15challenge.com": [2593], "accountsolution.zanesvilletimesrecorder.com": [18785], "adage.com": [3758], "img.frostmourne-wow.eu": [6230], "www.eng.buffalo.edu": [2399], "www.mooculus.osu.edu": [11760], "terrabank.ru": [16129], "www.tobaccofree.osu.edu": [11675], "*.clickfun.com": [3260], "www.oxfamirelandunwrapped.com": [12189], "postto.me": [12956], "cz.libreoffice.org": [9311], "whitehothair.co.uk": [18252], "shop.morningstaronline.co.uk": [10594], "togo.rbl.ms": [13592], "www4.citymapper.com": [3193], "cdon.dk": [2562], "indacoin.com": [8050], "www.cyanogenmod.org": [3953], "portal.prnewswire.com": [12286], "bewerbungsstatus.htw-berlin.de": [7112], "employers.simplyhired.com": [14830], "www.pfizerhelpfulanswers.com": [12611], "*.datamonitor.com": [4205], "www.*.uni-mainz.de": [17324], "www.hubzero.org": [7116], "www.assayassured.co.uk": [1275], "asana.com": [1242], "cookies.cmpnet.com": [2627], "theaa.com": [16216], "www.avtrade.co.uk": [1457], "provize.cesky-hosting.cz": [19051], "*.blog.hipmunk.com": [7415], "benefit.nl": [1776], "baifubao.com": [1621], "www03.fonts.com": [5993], "feedback.assembla.com": [1277], "www.cabal.ws": [2699], "warwickshire.police.uk": [17986], "pt-br.libreoffice.org": [9311], "akademikerf\u00f6rs\u00e4kring.se": [758], "national.com": [16152], "dslshop.vodafone.de": [17814], "www.ngdc.noaa.gov": [11083], "wholelivingdaily.wholeliving.com": [10031], "bmi.bund.de": [2429], "www.payperpost.com": [12469], "as2.unm.edu": [16992], "www.telecolumbus.de": [16073], "*.enterprisecioforum.com": [5292], "wordpressmultisite.washingtonpost.com": [17990], "www.ovh.co.uk": [12173], "beacon.affil.walmart.com": [17964], "go2arena.com": [6767], "righthaven.com": [13885], "remotecoder.io": [13760], "*.forum.deluge-torrent.org": [4339], "www.liferay.com": [9333], "assets.windowsphone.com": [18346], "www.domdex.com": [4667], "terminatorx.org": [16124], "*.herts.ac.uk": [17256], "www.oracleimg.com": [12082], "bury.greenparty.org.uk": [6925], "community.talktalk.co.uk": [15929], "*.shmoo.com": [16209], "cloud.google.com": [6834], "abccommercial.com": [239], "live.xbox.com": [18550], "fatrat.dolezel.info": [4640], "ssl-certificate-center.verisign.com.hk": [17623], "smart.begun.ru": [1755], "success.yammer.com": [18646], "www.fablabtruck.nl": [5615], "www.safenet-inc.com": [14227], "*.igalia.com": [7949], "index.thenextweb.com": [16302], "blog.ashleymadison.com": [1254], "www.twtpoll.com": [16901], "prometeus.net": [13148], "repo.varnish-cache.org": [17568], "feedback.yandex.ua": [18656], "partner.internetessentials.com": [19300], "fusionforge.org": [6275], "mint.ca": [10431], "panelsurveys.ic.nhs.uk": [10913], "*.zingcheckout.com": [18870], "alz.org": [900], "freepress.net": [6147], "nationalcapital.gov.au": [11066], "aventeur.ucsd.edu": [16939], "eset.com": [5358], "glasgow.gov.uk": [6699], "wt.o.nytimes.com": [11000], "destructoid.com": [4397], "*.parrable.com": [12408], "soe.ucsc.edu": [17305], "www.mwellner.de": [10737], "youtube.com.mk": [18709], "www.mywickr.com": [18281], "onorobot.org": [11650], "mbrowser.yandex.by": [18648], "client.pritunl.com": [13078], "*.smartone.de": [19601], "wtsdc.ethz.ch": [4975], "www.alexa.com": [795], "tags.w55c.net": [17891], "forum.telekom.de": [4410], "2011.asiabsdcon.org": [1258], "thevaultbar.co.uk": [16212], "mail.linux-mips.org": [9413], "rac.co.uk": [13395], "company.podio.com": [12846], "asert.arbornetworks.com": [1154], "*.vegasinc.com": [17480], "alphassl.com": [867], "wiki.greasespot.net": [6904], "bluebird.com": [2145], "bse.vt.edu": [17740], "*.rfihub.com": [13855], "*.badongo.com": [1608], "secure.nicovideo.jp": [11389], "tnnet.fi": [15838], "cpni.gov.uk": [2956], "api.sumologic.com": [15592], "forum.ubuntu-tr.net": [17101], "boalt.com": [1535], "media.tango.me": [15946], "www.joomla.org": [8627], "lotto.gmx.net": [6350], "davidsopas.com": [4228], "lisam.liu.se": [9084], "*.footlocker.ca": [6009], "cp.fonality.com": [3743], "forge.mysql.com": [10780], "www.ecocampus.ens.fr": [4930], "whatsnew.vandyke.com": [17549], "uu.se": [17074], "datasaveslives.eu": [4185], "www.klub.com.pl": [8935], "secure.fera.defra.gov.uk": [4314], "*.econda.de": [5058], "www.communityservice.wustl.edu": [17993], "stats.web4all.fr": [18052], "readitlaterlist.com": [13607], "iovisor.org": [19303], "evga.com.au": [4986], "www.shambhalamountain.org": [14658], "sketchfab.com": [14906], "mediakit.inc.com": [8041], "app.portadi.com": [12934], "replicant.us": [13779], "provencredible.com": [13171], "clergyproject.org": [3235], "www.buyveteran.com": [2470], "www.aldi.es": [299], "www.acls.org": [249], "deco.proteste.pt": [4288], "support.mapbox.com": [9968], "vliegtickets.nl": [17802], "www.a1.net": [217], "carrefour.es": [19042], "glo.wustl.edu": [17993], "lfg.com": [19360], "www.wyreforest.greenparty.org.uk": [6925], "i2.services.social.s-msft.com": [14058], "*.lockerz.com": [9545], "openid.net": [11943], "www.globetrotter.de": [6745], "*.booredatwork.com": [2210], "smuxi.com": [15016], "dlib.bc.edu": [1502], "thelink.rit.edu": [13434], "www.theatlantic.com": [16245], "webmail.quickline.ch": [19530], "zuno.eu": [18768], "autobytel.com": [1424], "moja.pss.sk": [13187], "cash.me": [15329], "crz.gov.sk": [14972], "amwaygrand.com": [887], "www.hyb.pw": [19268], "www.platba.cz": [18938], "gigadesign.cz": [14589], "deepdyve.com": [4296], "soccerwaveuk.com": [15055], "www.adviceguide.org.uk": [665], "nelonen.fi": [11139, 11140], "senate.gov": [14574], "yahoo.com": [18638], "server.cpmstar.com": [2647], "ssl1.ovh.net": [12173], "openvpn.net": [11989], "*.lboro.ac.uk": [9187], "*.slotsgaminator.com": [6446], "www.qualityagent.com": [13330], "cwspodmusic.com": [2693], "dbspixel.hbz-nrw.de": [7253], "www.cdon.dk": [2562], "gitbook.com": [6674], "portail.strasbourg.eu": [15506], "imfimg.com": [7990], "video-dean.com": [17692], "energy.ch": [19158], "forum.defcon.org": [4305], "piquadro.com": [12703], "unityads.unity3d.com": [17220], "final4ever.com": [5819], "gift.jd.com": [8423], "www.yumpu.com": [18747], "acluofnorthcarolina.org": [251], "www.zoomeye.org": [18902], "wwte10.com": [17937], "stonewallscotland.org.uk": [19631], "groupersocialclub.com.au": [6972], "bitstamp.net": [2021], "rtbf.be": [14011], "redfern.me": [13695], "marketo.ringcentral.com": [13891], "*.bel.fi": [1510], "uniteddomains.com": [17213], "atlanticsoft.axosoft.com": [1477], "agresso.plymouth.ac.uk": [12833], "www.ipython.org": [7809], "media2.education.gov.uk": [19149], "cunb.com": [2750], "androidpolice.com": [1007], "gem.co": [6512], "corp.7-eleven.com": [187], "ny.taobao.com": [15952], "pixel.mathtag.com": [10071], "publicfeed.stubhub.co.uk": [15534], "www.accessprivacy.ca": [449], "account.liu.se": [9084], "bugs.vhffs.org": [16856], "ssl.cdne.cpmstar.com": [2647], "googleprojectzero.blogspot.co.*": [2113], "www.allafrica.com": [18949], "server.buycraft.net": [2472], "*.certigna.fr": [2971], "bin-store.com": [1886], "weneedtoknow.info": [18029], "www.lfgss.com": [9074], "intenseschool.com": [8224], "cksource.com": [2622], "dsply.com": [17573], "cypherpunk.at": [2696], "nowybip.siteor.com": [11535], "www.kutv.com": [8754], "www.jkry.org": [8441], "www.tante.cc": [15949], "www.serverfruit.com": [14615], "businessadvice.anz.com": [315], "faq.web4all.fr": [18052], "www.wetanz.com": [18224], "*.protonmail.ch": [13169], "www.doubleclick.com": [4715], "virusbtn.com": [17758], "www.medialoot.com": [10174], "www.centosblog.com": [2943], "jobs.linux.com": [8592, 9403], "static.skynews.com.au": [14929], "www.lavasoft.com": [9174], "s2mediadigital.com": [14063], "tasc.stanford.edu": [15382], "accounts.unity3d.com": [17220], "cyrus.foundation": [3989], "static.fulltraffic.net": [6253], "scenemusic.net": [14341], "www.gmx.at": [6350], "community.48months.ie": [148], "www.stanford.edu": [15383], "www.sis.gov.uk": [14469], "adhocracy-cms.liqd.net": [9442], "e-onlinedata.com": [4856], "cincinnati.com": [3138], "prefetch-maps.yandex.com.tr": [18649], "*.sanalika.com": [14274], "sc.imp.live.com": [9483], "press.dwolla.com": [4815], "media4.congstar-media.de": [3576], "media-social.s-msn.com": [14059], "business.cinesport.com": [3142], "images.a.switchadhub.com": [15701], "eon.law.harvard.edu": [7219], "www.flixbus.nl": [5931], "www.xiscosoft.es": [18576], "www.owenservices.com": [12177], "canterbury.objective.co.uk": [19454], "dlasklepow.ceneo.pl": [2935], "hpci-tech.aics.riken.jp": [13430], "developer.swisscom.com": [15698], "*.maliit.org": [9923], "robots.thoughtbot.com": [16387], "www.enisa.europa.eu": [5421], "dds2dds.com": [4020], "hanselman.com": [14396], "fantasyracing.telegraph.co.uk": [16082], "*.infoworld.com": [8130], "www.blackoutcongress.org": [2055], "www.dfranke.us": [4096], "www1.informatik.uni-erlangen.de": [17311], "holtstrom.com": [7459], "trs.webprospector.de": [18080], "powerbuy.co.th": [12998], "origin.collective-media.net": [3423], "www.targetedthreats.net": [15963], "ld-8.itunes.apple.com": [1120], "*.notex.ch": [11439], "asset-c.soupcdn.com": [15167], "www.monash.edu": [10541], "www.planet-work.fr": [12758], "horo.mail.ru": [9874], "www.freed0m4all.net": [6163], "manage-tablet.kaspersky.com": [8806], "insideygs.com": [8169], "i500.mycdn.me": [10824], "secure-ds.serving-sys.com": [14628], "pwm-mwe.cf.ac.uk": [2835], "cdn.torrentbit.net": [16585], "www.hackforums.net": [7152], "help.anz.co.nz": [18958], "api.demandbase.com": [4342], "www.nexcess.net": [11356], "api.pachube.com": [12312], "overcast.fm": [12161], "www.mlsecproject.org": [9759], "swot.cnes.fr": [2634], "*.salecycle.com": [14247], "www.esper.net": [5361], "ciscobusinesslink.cisco.com": [3162], "www.shopyourway.com": [14723], "simplefin.org": [14821], "ccr.cancer.gov": [2805], "www-s.scs.illinois.edu": [17258], "www.ieee.org": [7715], "*.utorrent.com": [19708], "www.privatewifi.com": [13102], "buyveteran.com": [2470], "www.picert.it": [12259], "law.illinois.edu": [17258], "blogs.citizensadvice.org.uk": [19062], "www.openldap.org": [11948], "elbadil.com": [5144], "webmail.gmobb.jp": [6342], "www.linuxcloudvps.com": [9419], "housting.de": [11177], "avantar.com": [1441], "dome.harvard.edu": [7219], "*.salesforceliveagent.com": [14250], "daniel.holba.ch": [7447], "image.issuu.com": [8378], "hornbach.de": [7496], "websupport.f5.com": [5546], "diasporabrazil.org": [4450], "www.curetheitch.com": [3929], "courses.wustl.edu": [17993], "ma.ttias.be": [9816], "www.utopianet.org": [17457], "www.rotesource.com": [13976], "vutbr.cz": [17522], "dustystyx.deathmask.net": [4266], "www.video.oms.eu": [11637], "wst.s-msn.com": [14059], "collect.anz.com": [315], "notice.ms.yahoo.co.jp": [18640], "resurs.se": [13819], "m.vtb.com": [17514], "app.picnichealth.com": [12662], "www.tageswoche.ch": [15907], "support.brookings.edu": [2362], "www.musikskole-tilmelding.dk": [10722], "link.webmoney.ru": [18076], "www.frontiersin.org": [6225], "vendosupport.com": [17605], "help.1and1.com": [51], "www.science-alliance.de": [14376], "www.perishablepress.com": [12574], "www.contactus.com": [3606], "www.libraries.io": [9303], "meetbot.fedoraproject.org": [5726], "podcast.zwame.pt": [18925], "portal.office.com": [11743], "youtube.ae": [18709], "www.crm-metrix.com": [2658], "blog.wireshark.org": [18369], "lh2.google.*": [6837], "www.t35.com": [15778], "youtube.at": [18709], "anyoption.com": [1080], "www.max.se": [10090], "www.albertathome.org": [5128], "www.tittygram.ru": [16505], "pairnic.com": [12336], "b.s-static.ak.facebook.com": [5620], "*.main-host.de": [9893], "www.websecweekly.org": [18145], "partitaiva.tiscali.it": [16498], "www.hayward-pool.com": [7251], "www.successchef.com": [15573], "www.smokefree.gov": [19603], "ti.me": [1920], "passed.cc": [12427], "git.pwmt.org": [13262], "educacion.unizar.es": [17356], "*.ubm.com": [16928], "secureimages.mcafee.com": [10114], "www.eduroam.vutbr.cz": [17522], "*.grcmc.org": [6889], "c0.rgstatic.net": [13422], "www.hosts.co.uk": [7544], "radio.kingdomofloathing.com": [1308], "login.library.ethz.ch": [4975], "secure.excaliburfilms.com": [5483], "www.correctiv-upload.org": [3684], "pkgs.fedoraproject.org": [5730], "www.learningbizpackage.com": [9213], "store1.adobe.com": [615], "online.instantatlas.com": [19296], "ups.com": [17007], "bso.bradford.gov.uk": [2264], "*.go.com": [6363], "www.nordkapp.net": [11478], "chiliproject.org": [3077], "www.pccasegear.com.au": [12221], "www.ledgerwallet.com": [9220], "networksgroup.com": [11210], "meritrustcu.org": [10284], "hilton.7eer.net": [194], "entportal.aws.ieeeusa.org": [7716], "www.time2play.mobi": [16454], "skatemall.com": [14898], "ftp-stud.hs-esslingen.de": [7441], "osicodesinc.com": [11671], "www.adobeexchange.com": [617], "hostasaurus.com": [7520], "hertzequipsales.com": [7372], "secureimg.allposters.com": [835], "www.futureboy.us": [6284], "crazzed.com": [3767], "usfsco.uillinois.edu": [16960], "git.goeswhere.com": [6805], "www.proxysite.com": [13182], "dialdirect.co.uk": [4442], "plugunplug.net": [12825], "fortum.com": [6059], "*.lumosity.com": [9668], "shopcms.southbankcentre.co.uk": [15192], "www.mike.kaply.com": [8790], "murmansk.rt.ru": [13469], "padsdel2.cdnads.com": [2918], "static.mediatropes.info": [15890], "outflux.net": [12152], "zooniverse.org": [18905], "*.duraspace.org": [4806], "*.webshopapp.com": [18147], "shop.dnaserum.com": [4057], "tictail.com": [16428], "itmanie.cz": [7849], "dar.fm": [4006], "ad.exelate.com": [4996], "academy.cityoflondon.police.uk": [3194], "apps.opm.gov": [11654], "www.seasonal.ly": [14450], "*.mandriva.com": [9948], "provider.havering.gov.uk": [7244], "s.pixogs.com": [4541], "www.bplaced.net": [19015], "dragndropbuilder.com": [4735], "images.yemeksepeti.com": [18674], "freizeit1.sbb.ch": [15693], "lifeinthefastlane.ca": [9329], "www.hostingreviews.com": [7525], "vote.sfconservancy.org": [15099], "planning.bradford.gov.uk": [2264], "nzz.at": [19450], "twitter.com": [16892], "cheapssl.com": [3041], "*.dentalxchange.com": [4894], "i3d.net": [7659], "www.gentooexperimental.org": [6533], "style.aliunicorn.com": [819], "extranet.megapath.com": [10229], "www.naturalmessage.com": [11101], "glyph.twistedmatrix.com": [16885], "www.scorecardresearch.com": [14393], "selfservice.nytco.com": [10998], "r3.mzstatic.com": [1119], "*.rug.nl": [17254], "www.morello.se": [10589], "telecomindustrydialogue.org": [16074], "jobs.redbridge.gov.uk": [13683], "millwardbrown.com": [10398], "directory.tuakiri.ac.nz": [16812], "www.printink.si": [13071], "init.itunes.apple.com": [1120], "gum.co": [7018], "mediagoblin.org": [10152], "sss.gov": [17024], "mumzworld.com": [10703], "ukfssweb.food.gov.uk": [19187], "webchat.hackerspace.pl": [7149], "www.iptorrents.com": [7798], "images.pangora.com": [12360], "freenetproject.org": [6181], "learningcentral.cf.ac.uk": [2835], "www.uni-due.de": [17165], "valueclickmedia.com": [17541], "bkk-advita.de": [1524], "freshbooks.com": [6201], "secure.promotionalads.yahoo.co.jp": [18640], "oascentral.aviationweek.com": [75], "www.maillift.com": [9877], "hungryhouse.co.uk": [7621], "www.polygon.com": [12892], "energiwatch.dk": [5252], "blog.bitlendingclub.com": [1934], "www.edg.com": [4891], "www.binbox.io": [1892], "pmisportal.axosoft.com": [1477], "www.kissinsights.com": [8726], "www.icln.org": [7686], "*.shopping.com": [4873, 14728], "studentblackboardhelp.usc.edu": [17278], "www.kickasstorrents.to": [8879], "customerlobby.com": [3940], "www.unbound.net": [17154], "eagleeye.umw.edu": [17261], "www.3dvisionlive.com": [125], "www.chakraos.org": [2984], "owa.1x.com": [49], "www.coredump.gr": [3670], "glass.google.com": [6834], "www.blog.jolexa.net": [8621], "m-a-g.taobao.com": [15952], "blog.picnichealth.com": [12662], "accountservices.microsoft.com": [10364], "www.cozumpark.com": [3742], "cmswire.com": [2629], "www.ucc.dk": [16932], "t37.net": [15779], "hr-recruit.web.cern.ch": [2575], "formspring.me": [6045], "www.armatactics.com": [18962], "secure.ch.nicovideo.jp": [11389], "www.vonage.co.uk": [17838], "aeon.co": [681], "bouncyballs.org": [2246], "images.stackcommerce.com": [15361], "www.ausinfotech.net": [1375], "online.usc.edu": [17278], "lists.gnupg.org": [6762], "www.justgetflux.com": [5956], "serverpilot.io": [14607], "cdnapi.kaltura.com": [8775], "shop.niksoftware.com": [11400], "harlandclarke.com": [7207], "ssl.trustwave.com": [16799], "imagebank.nih.gov": [11052], "els-sso.corp.aol.com": [321], "*.hjr-verlag.de": [7072], "www.asnuul.asso.ulaval.ca": [17229], "assets-auto.rbl.ms": [13592], "developers.mobile.conduit.com": [3563], "ccc.de": [2538], "www.audentio.com": [1348], "www.wikilov.es": [18296], "whosonfirst.mapzen.com": [9978], "midphase.com": [10378], "www.bulkorder.ftc.gov": [5720], "medianetwork.oracle.com": [12082], "www.tqlkg.com": [3481], "www.superhexagon.com": [15620], "api.sedo.com": [14542], "partner.skolaonline.cz": [19598], "libraries.midlothian.gov.uk": [10376], "*.clasconsultants.net": [19067], "whistleout.com": [18248], "my.apa.org": [327], "webmail.noxa.de": [19444], "mca-marines.org": [9726], "img.shoppingshadow.com": [14730], "www.tomsofmainestore.com": [16544], "www.personalsavings.americanexpress.com": [935], "*.b-static.net": [2168], "groupon.co.uk": [6977], "pressroom.usc.edu": [17278], "vpsfree.cz": [19743], "www.facultysenate.wustl.edu": [17993], "wildarchives.com": [18301], "pbebank.com.my": [13203], "www.totalbarcode.com": [16599], "howsmytls.com": [7573], "forums.malwarebytes.org": [9929], "community.microfocus.com": [10348], "www.theverge.com": [16213], "defectivebydesign.org": [4306], "www.dobrochan.org": [4612], "newlook.com": [11307], "mercadobitcoin.net": [10274], "oomphme.com": [11896], "ieee.org": [7715], "flow.typo3.org": [15893, 15894], "planpa.peterborough.gov.uk": [12594], "www.resetthenet.org": [13804], "*.weebly.com": [18179], "www.collection.hotpics-amateur.com": [7550], "villas4you.co.uk": [18490], "lists.sf.net": [15174], "default.kei.pl": [8840], "www.musicweek.com": [10716], "www.canon.de": [2809], "*.lurkmore.to": [9673], "www.edvina.net": [5102], "content.internetvideoarchive.com": [8286], "www.eurexchange.com": [5400], "lumiblade-shop.com": [9664], "*.ford.com": [6020], "b.yandex.com.tr": [18649], "dating.independent.co.uk": [8053], "www.sda.it": [14092], "*.partitopirata.ch": [12284], "danhlode.com": [4140], "www.gdata.at": [6293], "ml.mageia.org": [9847], "*.customersaas.com": [3942], "bpte.osu.edu": [11760], "consultations.southglos.gov.uk": [15189], "socialwork.buffalo.edu": [17297], "www.impactradius.com": [8011], "js.hubspot.com": [7594], "ajax.asp.net": [353], "www.standardebooks.com": [15380], "mail.iu.edu": [8064], "akademie.skolaonline.cz": [19598], "charter.net": [3021], "www.circanews.com": [3154], "www.yourdatelink.com": [18727], "airvpn.org": [748], "blogs.ca.com": [2511], "www.gemeentebest.nl": [11132], "www.carousell.com": [2860], "pics.qxlstatic.dk": [13296], "www.anonyproz.com": [1081], "temai.taobao.com": [15952], "ru.norton.com": [11505], "pro.hostingas.lt": [19518], "galaxy.ansibleworks.com": [1058], "www.evernote.com": [5450], "partners.rackspace.com": [13506], "signup.leagueoflegends.com": [9206], "slm-assets1.secondlife.com": [14462], "tnt.aufbix.org": [1365], "www.downthemall.net": [4721, 4722], "trailers.apple.com": [1120], "www.f5networks.co.jp": [5547], "cio.com.au": [2610], "wiki.documentfoundation.org": [16221], "wyndhamjobs.com": [18489], "www.news.cornell.edu": [3676], "hope.net": [7493], "www2.extensis.com": [5523], "the42.ie": [19673], "forums.offensive-security.com": [11736], "webdesignmarketing.eu": [18100], "www.adspeed.com": [542], "www.drdobbs.com": [16927], "intranet.engineering.osu.edu": [11760], "svar.regjeringen.no": [13739], "www.viaduct.io": [17662], "cheetahmail.com": [3055], "display.intencysrv.com": [8223], "www.theweekendedition.com.au": [18182], "app.gusto.com": [7027], "unite.unity.com": [17220], "www.ftb.ca.gov": [2742], "t-mobile.nl": [15771], "www.rhb.ch": [13857], "*.trafficjunky.net": [16648], "bankieren.rabobank.nl": [13489], "cp.myvps.jp": [10795], "www.glasgowconsult.co.uk": [19220], "logancij.com": [9552], "nottingham.greenparty.org.uk": [6925], "www.thetfp.com": [16316], "nordea.*": [11471], "pidgin.im": [12672], "hertzondemand.com": [7372], "lovingsupport.fns.usda.gov": [17209], "gcmasia.com": [6309], "josm.openstreetmap.de": [11978], "crackstation.net": [3750], "g.liveinternet.ru": [9488], "old-webmail.hermes.cam.ac.uk": [17243], "activatejavascript.org": [494], "licensing.ribblevalley.gov.uk": [13865], "preprod.it.hispeed.ch": [19716], "www.weekplan.net": [18181], "static.wangyin.com": [17972], "synchronicer.dk": [15729], "www.mediciglobal.com": [10190, 10191], "blog.okturtles.com": [11773], "bugzilla.redhat.com": [13675], "www.thisproxykillscensors.uk": [19678], "*.hd.se": [7052], "onehelp.cz": [11643], "texthelp.com": [16160], "id.redhat.com": [13675], "m.eclipso.de": [5051], "html5rocks.com": [7104], "kundarea.wopsa.se": [18425], "hostgator.com": [7512], "www.ccc.de": [2538], "lynxtech.no": [9684], "www.warrington.gov.uk": [17984], "anthrocon.org": [1065], "jobthread.com": [8593], "thetrainline.com": [16238], "blog.netways.de": [11259], "updates-yum.ro.vutbr.cz": [17522], "www.ticketportal.sk": [16423], "shop.sp.nl": [14151], "www.cars.com": [2864], "community.sbaglobal.com": [14625], "www.abnamro.nl": [245], "instapaper.com": [8189], "images.sf.net": [15174], "www.wintiewin.com": [18331], "www.ucl.ac.uk": [17295], "assets.taobaocdn.com": [15953], "www.changedetection.com": [2993], "feeds2.feedburner.com": [5734], "alimama.com": [814], "creativepartnershipsaustralia.org.au": [3780], "www.cenowarka.pl": [2938], "*.aufeminin.com": [1469], "durchmesser.ch": [19130], "kunden.1und1.de": [68], "homesupport.cisco.com": [3162], "www.logika.net": [9557], "cas.iu.edu": [8064], "www.fineproxy.org": [5846], "iconnect.colchester.gov.uk": [3414], "www.wingware.com": [18354], "cdn.blog-sap.com": [14073], "www.qupzilla.com": [13380], "nextregister.com": [11361], "*.gamestar.de": [6440], "fdf.org.uk": [5562], "keepassx.org": [8834], "www.green.ch": [19228], "www.7chan.org": [192], "www.matildajaneclothing.com": [10072], "www.t-nation.com": [15773], "downloads.plex.tv": [12814], "www.tesco.com": [16134], "svgopen.org": [14202], "jobs.netways.de": [11259], "livebeta.dagbladet.no": [4106], "static.balboa.io": [1626], "maurus.net": [10086], "www.lvmanagement.com": [9159], "mail.qnetp.net": [13305], "www.drupalgardens.com": [4781], "vesica.ws": [17650], "jobs.timeshighereducation.com": [16464], "server.iad.liveperson.net": [2716, 9493], "s4.rationalcdn.com": [19536], "widgets.membership.microsoft.com": [10363], "www.coinpay.in.th": [3408], "www.humanism.org.uk": [7613], "webapps.nikhef.nl": [11402], "movabletype.com": [10629], "ds.heanet.ie": [7269], "bof.nl": [1537], "vhf.de": [19734], "about.bitso.com": [2018], "volusion.co.uk": [17837], "bentasker.co.uk": [1772], "forum.sourcefabric.org": [15180], "www.nitetimetoys.com": [11425], "xyntekinc.com": [18608], "www.alldebrid.com": [830], "www.translatewiki.net": [16673], "www.performancehorizon.com": [12567], "edu.netbeans.org": [11185], "media.govdelivery.com": [6862], "www.tsv.fi": [16436], "www.royalsociety.org": [14002], "*.airasia.com": [746], "secure.payconnect.net": [4894], "saimd.com": [3682], "postmaster.tdc.dk": [15796], "www.transportation.gov": [16682], "*.infra-fuerth.de": [8131], "www.simply-partner.com": [14831], "n1.octostatic.com": [11719], "*.icbdr.com": [2841], "brook.gs": [1920], "player.io": [12804], "www.independentmail.com": [8055], "careers.weather.com": [18033], "www.privacyfix.com": [13092], "proxmox.com": [13179], "www.davissystem.net": [4232], "www.programmableweb.com": [13130], "www.investsmart.com.au": [8316], "community.wholeliving.com": [10031], "videolab.avnet.kuleuven.be": [8816], "pubs.ext.vt.edu": [17740], "bsidesslc.org": [1546], "www.acluofnorthcarolina.org": [251], "www.blog.fau.de": [17311], "www.nordichardware.se": [11474], "ask.springshare.com": [15313], "graduateschool.wustl.edu": [17993], "siteground.com": [14865], "the-body-shop.ch": [3645], "benefits.usc.edu": [17278], "www.cdig.me": [2915], "www.improper.com": [8019], "cams.tm.com.my": [16083], "adserver.71i.de": [14636], "www.nos-oignons.fr": [11511], "alternet.org": [875], "www.register4less.com": [13733], "tml.engineering.osu.edu": [11760], "www.woobox.com": [18417], "www.pingability.com": [12685], "freedns.afraid.org": [708], "e.onthe.io": [11890], "api.7digital.com": [193], "www.apture.com": [6833], "pjmedia.com": [12263], "learn.adafruit.com": [550], "www.nelly.com": [11138], "www.knappschaft-bahn-see.de": [8940], "*.iljmp.com": [7964], "linux.rz.ruhr-uni-bochum.de": [14031], "social.mayfirst.org": [10100], "web-style.educ.cam.ac.uk": [17243], "ut13.xhcdn.com": [18514], "spotxchange.com": [15294], "www.hereford.greenparty.org.uk": [6925], "ardour.org": [1175], "speakychat.com": [15238], "webspace4clans.de": [18155], "*.pkware.com": [12265], "heckrath.net": [7281], "embed.newsinc.com": [11335], "www3.software.ibm.com": [7675], "startovac.cz": [19624], "edweek.org": [5069], "*.iapplicants.com": [8589], "idea.nottingham.ac.uk": [11528], "firmstep.com": [19183], "www.wustl.edu": [17993], "www.mywot.net": [10798], "www.slaveryfootprint.org": [14950], "*.bwin.com": [7733], "defora.org": [4313], "www.therealtalk.org": [16233], "bad-dragon.com": [18979], "www.pccu.edu.tw": [12220], "www.paste.ee": [12436], "feeds.soundcloud.com": [15161], "www.baifubao.com": [1621], "www.sott.net": [15155], "*.adition.com": [594], "im.post.ch": [12949], "openforum.westminster.gov.uk": [18220], "edge.centrify.com": [19048], "imagewz.winzip.com": [18333], "co3sys.com": [3333], "*.spreadshirt.dk": [15300], "pcn.birmingham.gov.uk": [19000], "www.sicontact.at": [14760], "mail.sohu.net": [15104], "kneon.com": [8941], "ad4.liverail.com": [9496], "getglue.com": [6574], "read.jd.com": [8423], "my.fsf.org": [5600], "www.mediawatch.dk": [10166], "qxl.no": [13385], "www.kolabsys.com": [8960], "freemarketlite.cc": [6128], "wordvine.sydney.edu.au": [19649], "swp.stanford.edu": [15382], "mysafe.f-secure.com": [5541], "www.dice.com": [4452, 4453], "aaltodoc.aalto.fi": [390], "media.charterbusiness.com": [3022], "opentabs.net": [12047], "vpn.uibk.ac.at": [19710], "keep2share.cc": [8704], "my.viaduct.io": [17662], "pbhs.com": [12210], "*.inwx.net": [8231], "www.3fm.nl": [126], "www.passsource.com": [12424], "www.accan.org.au": [247], "www.eleave.osu.edu": [11760], "hairsmize.com": [7166], "wiki.tools.ietf.org": [7721], "*.synacor.com": [15722], "*.newzbin2.es": [11351], "datadoghq.com": [4201], "neowin.net": [11158], "metrix.net": [10319], "sandbox.mydigipass.com": [10828], "www.waze.com": [18014], "secure.syndetics.com": [15733], "home.jd.com": [8423], "www.l0g.us": [9060], "*.cyberphoto.fi": [3963], "cfengine.com": [2590], "www.usa.canon.com": [2809], "ftp.rnl.tecnico.ulisboa.pt": [19203], "www.toolbarbrowser.com": [16554], "wolfire.com": [18395], "bookings.bookitsecure.com": [19011], "smugmug.com": [15014], "huawei.tmall.com": [19684], "new.enfield.gov.uk": [5258], "www.nasa.gov": [10869], "forum.ovh.pl": [12173], "huobi.com": [7624], "cgit.collabora.com": [3419], "www.piwik.uni-hamburg.de": [16951], "www.machinegunsvegas.com": [9829], "jobs.bce.ca": [1763], "forum.ovh.pt": [12173], "easily.co.uk": [5011], "agilebits.com": [727], "book.serversforhackers.com": [14618], "gemseek.com": [6520], "pixel.adsafeprotected.com": [538], "www.sofn.com": [15087], "sceper.eu": [14343], "modules.openmrs.org": [11953], "countysuppliesonline.hants.gov.uk": [7196], "wartstick.com": [17985], "etrieveca.htzpartners.com": [7372], "manageengine.jp": [9939], "utk.edu": [17341], "mymarshall.usc.edu": [17278], "pxlssl.ibpxl.com": [8280], "www.mastozytose-schweiz.org": [10060], "www.eaak.tk": [3533], "www.accessguardian.com": [445], "linutronix.de": [9390], "passport.webmoney.ru": [18076], "www.leaseweb.com": [9215], "www.bbpress.org": [1711], "webmail.bo.infn.it": [7766], "cdn.cdncomputer.com": [2919], "*.stagingspeak.com": [16830], "synokm.synology.com": [15738], "*.glassdoor.co.in": [6701], "www.landal.*": [18490], "engage.barnet.gov.uk": [18982], "thumbs.dachix.com": [3759], "forums.okturtles.com": [11773], "www.e4ward.com": [4864], "static.linuxdistrocommunity.com": [9421], "www.mnot.net": [10479], "support.evernote.com": [5450], "www.adobe.com": [615], "www.nknews.org": [10934], "www.fedoraproject.org": [5726], "www.hoku.co.jp": [14740], "www.prezi.com": [13046], "itradecimb.com.my": [2606], "www.menshealth.de": [10261], "szamlazo.mito.hu": [10458], "www.mcdelivery.com.my": [10119], "www.codeofconduct.wustl.edu": [17993], "mghocd.org": [9702], "*.bigbrotherwatch.org.uk": [1857], "www.egedalkommune.dk": [5113], "www.playerattack.com": [12801], "events.ya.ru": [18626], "searchengineland.com": [16367], "rateip.com": [13573], "broadbandreports.com": [4081], "images.instagram.com": [8182], "www.1cart.com": [43], "assets.lego.com": [9068], "ws.cnetcontent.com": [2635], "ikvc.slovakrail.sk": [14973], "alumni.cgi.rice.edu": [13868], "www.coolcart.net": [3637], "freightcalculator.com.au": [6193], "*.myheritage.se": [10834], "easy-tracking-protection.truste.com": [15856], "cdn.keepstat.com": [7891], "www.silkroad.ws": [14794], "cdme.osu.edu": [11760], "*.docstoc.com": [4622], "www.nasuni.com": [11040], "www.hybrid-analysis.com": [7640], "disk.yandex.kz": [18652], "www.csiac.org": [2670], "assets3.sendgrid.com": [14577], "admission.stanford.edu": [15383], "email.udacity.com": [17110], "overclockers.at": [12164], "www.roammobility.com": [13918], "community.artemis-ia.eu": [1228], "www.55ch.org": [172], "kb.isc.org": [7821], "dot5hosting.com": [4690], "www.thesexyhouse.com": [14646], "www.vtnews.vt.edu": [17740], "stiftung.htwk-leipzig.de": [7114], "*.wonderlandmovies.de": [18412], "*.shutterstock.com": [14755], "www.admin.asmp.org": [947], "nominatim.openstreetmap.org": [11979], "energydesk.greenpeace.org": [6937], "www.firmstep.com": [19183], "www.nettitude.com": [11254], "at.redhat.com": [13675], "www.123contactform.com": [23], "images1.videolan.org": [17688], "www.happyhardcore.com": [7198], "wiki.centos.org": [2942], "journalism.co.uk": [8647], "cf.thumbs.xxxbunker.com": [18607], "*.kau.se": [8708], "freifunk.net": [6192], "www.i2p2.de": [7658], "tritonlink.ucsd.edu": [16939], "*.shoptiques.com": [14731], "webmail.f-secure.com": [5541], "www.travelplan.gr": [16694], "meetup.com": [10219], "ad.adorika.com": [13881], "status.live.com": [9483], "status.gitbook.io": [6675], "passport.qcloud.com": [13301], "knowledge.verisign.co.nz": [17623], "store.origin.com": [12106], "bellareed.com": [10000], "www.mikeconley.ca": [10384], "wiki.onosproject.org": [11649], "www.mageia.org": [9847], "*.marinedepot.com": [9998], "mandiant.com": [10258, 19381], "www.meinfernbus.de": [10236], "www.aful.org": [286], "*.uk2.net": [16963], "m.seferler.yandex.com.tr": [18649], "keyghost.com": [8866], "cz.mbank.eu": [9722], "mozy.com": [10667], "www.stopthehacker.com": [15490], "kevinajacobs.com": [8863], "www.fiskeriverket.se": [5886], "secured.greenpeace.org": [6937], "xmlrpc.istockphoto.com": [19309], "bugs.ntp.org": [10965], "web1.login.cornell.edu": [3676], "websitealive4.com": [18149], "www.opentechfund.org": [11983], "www.expresscoin.com": [5517], "find.t-mobile.com": [15772], "lkimg.zamimg.com": [18782], "www.openlibrary.org": [12018], "e4.xhamsterpremiumpass.com": [18516], "upcase.com": [17385], "reverse.put.as": [13255], "www.blablacar.fr": [2035], "www.logilab.org": [9558], "r1.mzstatic.com": [1119], "hrweb.apple.com": [1120], "app-community.offerpop.com": [11739], "restorethefourth.net": [13817], "ist.utl.pt": [16033], "community.runabove.com": [14034], "www.oomphme.com": [11896], "autodiscover.ee.leeds.ac.uk": [17318], "www.bettersales.se": [1829], "stores.vodafone.co.nz": [17812], "itsdanbull.com": [4130], "arc.publicdebt.treas.gov": [17059], "www.om.nl": [12031], "www.babymed.com": [1593], "www.drillisch.de": [4760], "pixel.tapad.com": [15954], "home.pl": [7465], "www.filippo.io": [5804], "verisign-japan-domain.com": [17623], "certification.unity.com": [17220], "*.myfbo.com": [10756], "oauth.live.com": [9483], "owl.english.purdue.edu": [12178], "isnic.is": [7826], "webmail.mykolab.com": [10765], "smsl.osu.edu": [11760], "shop.openbsdeurope.com": [11920], "www.luxsci.mobi": [9675], "justpaste.it": [8692], "afcad.osu.edu": [11760], "reseller.seagate.com": [14437], "www.training.nih.gov": [11052], "windowshopping.11main.com": [20], "prisma-it.com": [13075], "www.bandaancha.eu": [18980], "ghstatus.dge.carnegiescience.edu": [2857], "storeimages.apple.com": [1120], "alternativeto.net": [884], "images.chillingeffects.org": [3079], "faq.erc.edu": [4949], "jetbrains.com": [8559], "clocks.yandex.com.ua": [18650], "www.braincert.org": [2269], "myorders.sky.com": [14924], "a4.lscdn.net": [9102], "dontspyonus.org.uk": [4680], "www.basildon.gov.uk": [18984], "images2.variety.com": [17565], "mail.ciw.edu": [2857], "blog.podio.com": [12846], "cf.scdn.co": [14088], "tmi.twitch.tv": [16888], "resources.whatwg.org": [17904], "www.eventim.*": [5443], "secure.brandify.com.au": [2284], "www.noscript.net": [11438], "app.paymoapp.com": [12482], "forum.jquery.com": [8451], "performance.demandbase.com": [4342], "www.rbdigital.com": [19537], "www.dcvote.org": [4017], "www.ausgamers.com": [1373], "cssiw.gov.wales": [6860], "www.neko.im": [11137], "*.mpnrs.com": [9782], "untangle.com": [17370], "js-seeker.newjobs.com": [11318], "safaribooksonline.com": [14222], "www.ciao.de": [3132], "wallet.tenpay.com": [16114], "yourcounciljobs.co.uk": [18734], "gmx.com.tr": [6350], "globetrotter.de": [6745], "m.f.ix.de": [8404], "*.switchnet.io": [15705], "e18.xhamsterpremiumpass.com": [18516], "*.footlocker.com": [6008], "ed25519.cr.yp.to": [3748], "*.thumbs.redditmedia.com": [13691], "www.jammerbugt.dk": [8506], "docs.asp.net": [353], "partner.just-eat.co.uk": [19328], "www.adpeepshosted.com": [546], "omnia.turris.cz": [16846], "www.sbarmen.no": [14321], "integration.quotes.bkb.ch": [19333], "app-portal.volexity.com": [17827], "status.dwolla.com": [4816], "portal.uk.clara.net": [3212], "sutn.sk": [14972], "www.navicast.co.jp": [14740], "*.howtogeek.com": [7570], "www.btctrade.com": [2381], "brave.piwikpro.com": [19497], "disel.enaza.ru": [5230], "jolla.com": [8622], "*.blogspot.se": [2107], "*.lookdumbass.com": [9595], "www.voipuserportal.co.uk": [5290], "mailbox.org": [9881], "utsouthwestern.edu": [17283], "www.uni-erlangen.de": [17311], "support.okta.com": [11776], "pirates.mail.ru": [9874], "www.khpi.com": [8847], "www.victi.ms": [17669], "www.fileformat.info": [5790], "techanarchy.net": [19665], "www.webooluinc.com": [18137], "pubweb.bnl.gov": [19009], "s-adserver.cxad.cxense.com": [2694], "accessprivacy.ca": [449], "*.condosforeveryone.com": [3560], "www.amoena.us": [979], "www.theconversation.com": [16262], "madboa.com": [9836], "forums.archlinux.fr": [1159], "msfn.org": [9790], "media.friendfinder.com": [6213], "www.usaspending.gov": [17034], "whosampled.com": [18259], "www.dmgt.co.uk": [4121], "cirw.in": [3160], "www.tescodiets.com": [16138], "partnercomputing.illinois.edu": [17258], "www.lumo.me": [9667], "burst.net": [2445], "amd.co.at": [924], "lh4.google.*": [6837], "blogs.aalto.fi": [390], "cscglobal.com": [3683], "east-riding.firmstep.com": [19183], "httpsecurityreport.com": [7110], "www.unbridled.info": [17155], "lib.law.washington.edu": [17291], "petitions.moveon.org": [10630], "primus.com": [13062], "www.soi.city.ac.uk": [3187], "www.yemeksepeti.com": [18674], "support.riverbed.com": [13907], "connecthr.nl": [2783], "redferret.net": [13673], "*.responsys.net": [13816], "www.sinnfein.ie": [14851], "linux42.org": [19461, 19462], "*.steelhousemedia.com": [15458], "*.oregonstate.edu": [12099], "gran-turismo.com": [6888], "career.stonybrook.edu": [15480], "it.vanderbilt.edu": [17556], "s.adroll.com": [536], "my.usc.edu": [17278], "answers.virginmobileusa.com": [17734], "mrmcd.net": [9786], "plusgirot.se": [12830], "fr.witness.org": [18382], "www.nfsec.pl": [10906], "payee.globalpay.westernunion.com": [18216], "casinoestrella.com": [2883], "beauty.taobao.com": [15952], "wakelet.com": [17953], "talentopoly.com": [15921], "chinadialogue.net": [3085], "ico.jobs": [4530], "downloads.openmicroscopy.org": [12021], "cyberstreetwise.com": [3975], "u.alicdn.com": [805], "giveto.mariestopes.org.au": [9992], "*.maine.edu": [17323], "www.nationalserviceresources.org": [11090], "www2.jcp.org": [8419], "hepe.com": [7319], "pt.malwarebytes.org": [9929], "pcel.com": [12222], "taskwarrior.org": [15971], "www.cyberguerrilla.info": [3960], "lukb.ch": [19333], "videos.usatoday.com": [17032], "mitre.org": [10459], "www.youtube.tn": [18709], "advent-hub.okta.com": [11776], "discuss.atom.io": [1324], "www.pinterest.com": [12699], "media3.congstar-media.de": [3576], "www.ernw.de": [4950], "www.similarweb.com": [14811], "www.monarch.co.uk": [10540], "www.tosdr.org": [16521], "adsafecontrol.com": [537], "ndia.org": [11049], "*.mandiant.com": [10258], "tco.osu.edu": [11760], "india.hivos.org": [7431], "appmarket.nexternal.net": [11365], "*.handy.de": [7193], "www.kabeldeutschland.de": [8760], "thewire.com": [16325], "auctionbunker.com": [1344], "apollohq.com": [1126], "www.strato.*": [14192], "www.nuxx.net": [11588], "distributed.net": [4575], "www.notalwaysfriendly.com": [19441], "ryot.org": [13484], "data2.whicdn.com": [17905], "sap.com": [14073], "idrsolutions.com": [7709], "www.uber.com": [17089], "nest.com": [11166], "sommerkunstskolen.jammerbugt.dk": [8507], "ustatik.com": [17449], "stream.cz": [15516], "sailfishos.org": [14241], "europa-apotheek.com": [5419], "usi.vutbr.cz": [17522], "ec.osu.edu": [11760], "charitywater.org": [3012], "cdn.c3voc.de": [2501], "*.osa.org": [12066], "campusspiele.htwk-leipzig.de": [7114], "*.w00t.com": [18424], "gentlelabs.com": [6528], "gic3.mycdn.me": [10824], "fantasyfootball.telegraph.co.uk": [16082], "release.theplatform.com": [16230], "www.barracuda.com": [1680], "4sysops.com": [164], "arec.vaes.vt.edu": [17740], "financiallink.ucsd.edu": [16939], "www.profed.acs.org": [929], "delivery.b.switchadhub.com": [15701], "www.hosterbox.com": [7522], "unistra.fr": [17279], "libraryfreedomproject.org": [9306], "www.lenovoorders.com": [9252], "chapman.edu": [3008], "hosts.co.uk": [7544], "transportstyrelsen.se": [16683], "trafik.yandex.com.tr": [18649], "www.amnesty.fi": [961], "gbatemp.net": [6305], "static.streetlife.com": [19633], "finance.google.com.*": [6837], "community.citrix.com": [3178], "jobs.cardiff.gov.uk": [19039], "www.msfn.org": [9790], "www.vouchedfor.co.uk": [17848], "www.oaa.osu.edu": [11760], "static.xrel.to": [18589], "automotive.dianomi.com": [4444], "www.insightexpress.com": [8171], "umap.openstreetmap.fr": [12045], "cdn.ckeditor.com": [2621], "*.gephi.org": [6551], "georgiegirl.com.au": [6548], "foodhub.co.nz": [6000], "cdn-retailers-dbapp.netdna-ssl.com": [4108], "feed2js.org": [5732], "beatsmedia.com": [1738], "de.cloudflare.com": [3285], "www.certificatemonitor.org": [2969], "facultydevelopment.stanford.edu": [15383], "bigjocker.com": [1863], "www.ovhtelecom.fr": [11687], "visibletechnologies.com": [17772], "*.australianclinicaltrials.gov.au": [1384], "www.pycon.sg": [13264], "www.sylvancompany.com": [15714], "cslipublications.stanford.edu": [15383], "blog.centreon.com": [2957], "jenkins.debian.org": [4275], "www.grove.io": [6981], "www.laravel-news.com": [9156], "static-mynews.apple.com": [1119], "panel.stopthehacker.com": [15490], "terveysportti.net": [16133], "www.wikispaces.asu.edu": [1195], "*.speakychat.com": [15238], "library.southampton.gov.uk": [15191], "www.vervehosting.com": [17645], "app.gyft.com": [7036], "mozillaignite.com": [10659], "www.nelonen.fi": [11139, 11140], "www.buffalo.edu": [17297], "www.fastshare.cz": [5674], "www.cryptotec.com": [19093], "portal.webgility.com": [18118], "agb.web.de": [18050], "fonts.voxmedia.com": [17852], "devnet.jetbrains.com": [8559], "www.wix.com": [18383], "*.ceejay.net": [2927], "www.bitmessage.org": [2008], "ngvpn04.nvidia.com": [10985], "www.chl.it": [2598], "silkroad.ws": [14794], "*.hwstatic.com": [18042], "gmclerkstlgaccess.hants.gov.uk": [7196], "blog.sucuri.net": [15575], "skortekaas.nl": [14130], "dev.yandex.com.tr": [18649], "m.pogoda.yandex.by": [18648], "user.ecc.u-tokyo.ac.jp": [16919], "knewone.com": [8943], "gehrcke.de": [6508], "firstdedic.ru": [5868], "www.provost.buffalo.edu": [17297], "www.charlottenaturemuseum.org": [3014], "donate.accessnow.org": [447], "www.hhid.com": [7064], "mediaquestcorp.com": [10181], "www.demonii.com": [4357], "www.cdbaby.com": [19045], "moveonpac.org": [10631], "community.akamai.com": [761], "rejo.zenger.nl": [18828], "brewtourism.com.ua": [2309], "cm-mail.stanford.edu": [15383], "nemid.dtu.dk": [16031], "www.mmedia.me": [10281], "www.balatarin.com": [1625], "www.huque.com": [7627], "www.mysociety.co.uk": [10785], "urlquery.net": [17412], "www.cryptopp.com": [3888], "cloudmailin.com": [3308], "www.researchcompliance.vt.edu": [17740], "liveupdate.symantec.com": [15715], "longurl.it": [10768], "www.mycanvas.com": [10749], "latimes.com": [9612, 16730], "sync.com": [15725], "whsmith.co.uk": [17909], "tvtorrents.com": [16859], "dl.boxcloud.com": [2256], "www.beaker-project.org": [1729], "esp.rt.com": [13468], "www.bookstore.ucsd.edu": [16939], "datacentrumgids.nl": [4199], "www.vpac.org": [17498], "kb.doteasy.com": [4701], "www.eweka.nl": [5470], "*.eukhost.com": [4979], "cyberghostvpn.com": [3959], "forum.hostdime.com": [7510], "bugs.pwmt.org": [13262], "collegiatepeaksbank.com": [3430], "www.toyfoundry.net": [16619], "www.surespot.me": [15646], "*.movieth.com": [10638], "team.ushahidi.com": [17443], "rizon.net": [13911], "www.opensignal.com": [11974], "www.forumatic.com": [6065], "unity3d.com": [17220], "archive.redhat.com": [13675], "francais.rt.com": [13468], "apps.facebook.com": [5620], "aerofs.com": [688], "netspi.com": [11206], "xyratex.com": [18609], "store.yubico.com": [18745], "startssl.org": [15407], "support.bitmain.com": [2003], "www.netswarm.net": [11251], "chatenabled.mail.google.com": [6834], "scriptobservatory.org": [14419], "mysecureconnect.com": [10783], "www.mpi-soft.mpg.de": [10089], "cadastre.openstreetmap.fr": [12045], "www.arkane-studios.com": [1197], "fw.jd.com": [8423], "groupes.renater.fr": [13764], "notalwaysrelated.com": [19441], "pentestgeek.com": [12542], "row.hants.gov.uk": [7196], "app-de4.resrc.it": [13599], "isppweb.tameside.gov.uk": [19660], "cart.wildwestdomains.com": [18300], "cruzid.ucsc.edu": [17305], "support.domaintools.com": [4659], "ssafastore.co.uk": [14171], "zendition.net": [18825], "c3s.cc": [2500], "www.spkrb.de": [19619], "*.skimlinks.com": [14911], "izquierda-unida.es": [8406], "obrazky.o2active.cz": [16075], "www.freedom.press": [6168], "www.alastore.ala.org": [298], "www.malegislature.gov": [9719], "dwarffortresswiki.org": [4814], "wiki.openssl.org": [11970], "auth.robokassa.ru": [13927], "www.facebook.es": [5623], "releases.ansible.com": [1057], "hexagon.cc": [7380], "www.burthub.com": [2451], "openinfosecfoundation.org": [12015], "www.stop-snoring-mouthpiece.org": [15481], "istanbulhs.org": [8380], "gtk-apps.org": [19461, 19462], "www.thawte.com": [16175], "export.yandex.com": [18651], "opinion.peytz.dk": [12606], "www.hrw.org": [7612], "www.cirtexhosting.com": [3159], "www.checkip.org": [17790], "stylessl.alibaba.com": [809], "suntrust.com": [15595], "secure.nypost.com": [11321], "docs.owncloud.org": [12182], "liv.ac.uk": [9479], "hostooplecms.hostooplecom.netdna-cdn.com": [7540], "gov.uk": [6366], "schedule.timetrade.com": [16455], "charlie.bz": [3013], "www.bviphotovideo.com": [1583], "adallom.com": [552], "c-and-a.com": [2496], "counter.hitslink.com": [7426], "search3.openobjects.com": [12022], "golinks.ncsu.edu": [11492], "indiemerchstore.com": [8070], "axptravel.americanexpress.com": [935], "axeso5.com": [1472], "www.onswitchit.ca": [11816], "al-akhbar.com": [772], "www.marinsoftware.com": [9997], "*.vhf.de": [19734], "www.dccc.org": [4014], "cci.ornl.gov": [11693], "www.performancewheel.com": [12570], "channels.us.dell.com": [4335], "ehrensenf.de": [5121], "a320.emulate.su": [5225], "autodiscover.education.leeds.ac.uk": [17318], "www.liwenhaosuper.com": [9519], "trybooth.com": [19701], "cdn9.iconfinder.com": [7921], "www.mirt.net": [10449], "v.ok.ru": [11769], "puma.com": [13227], "secure-nikeplus.nike.com": [11401], "www.bokborgen.se": [2183], "db.tt": [4768], "payments-parkright.westminster.gov.uk": [18220], "direct123.fi": [4523], "www.naturalresources.wales": [11102], "storebrand.no": [15494], "mansfield.gov.uk": [19382], "lists.asiabsdcon.org": [1258], "*.benzinga.com": [1782], "www.plurk.com": [12828], "git.rtems.org": [13472], "www.connochaetos.org": [3586], "support.google.com": [6834], "cdn.arkena.com": [1198], "www.allianz-fuer-cybersicherheit.org": [852], "support.realvnc.com": [13627], "ssl.pstatic.net": [13188], "derstandard.at": [19111], "fax.org": [13207], "www.ideastorm.com": [7928], "hydra.q1media.com": [13275], "i.ramhost.us": [13397], "www.djangoeurope.com": [4591], "privacy-policy.truste.com": [15856], "joyclub.de": [8650], "*.windriver.com": [18337], "webftp.pipni.cz": [12257], "www.reuffel.de": [19550], "mail.virginmedia.com": [17737], "cdn-storage.br.de": [1539], "static.bitcoinstats.com": [1972], "plmap.oracle.com": [12082], "blog.bizo.com": [2030], "*.hsr.ch": [17237], "www.mediatemple.net": [10165], "www.fs01.androidpit.info": [1009], "www.tagasauris.com": [15906], "cleanenergyexperts.com": [3224], "nbc.com": [11048], "ca.libreoffice.org": [9311], "ethics.data.gov": [4175], "www.twitpic.com": [16890], "pix.btrll.com": [2322], "www.isleaked.com": [8362], "orange.ch": [12088], "*.branch.com": [2276], "www.nrsr.sk": [14972], "play.yandex.com.tr": [18649], "service.gmx.com": [6350], "cloud.staticzacks.net": [18775], "secure.rocketnet.jp": [13940], "backoffice.mydigipass.com": [10828], "m.datart.cz": [4008], "www.recsports.osu.edu": [11760], "www.codementor.io": [3371], "jwpltx.com": [9589], "accountportal.uic.edu": [17231], "cabinet.pogamay.ru": [12849], "www.mi4urinsk.ru": [10332], "future.arte.tv": [18966], "items.alitrip.com": [818], "de.calameo.com": [2731], "reservoir.marketstudio.net": [10020], "apollo.unlimitedhost.asia": [17358], "indyreader.org": [8080], "openmedia.org": [11959], "www.norwegian.com": [11508], "suggests.seferler.yandex.com.tr": [18649], "spreadshirt.es": [15300], "ismart.engineering.osu.edu": [11760], "www.bournemouth.gov.uk": [2251], "www.ipcc.ch": [7789], "www.gust.com": [7025], "www.hiawatha-webserver.org": [7390], "scratchcards.williamhill.com": [18315], "central.terra.com.mx": [16128], "www.nealpoole.com": [11120], "nimbushosting.co.uk": [11408], "spreadshirt.ch": [15300], "www.meet.fm": [10208], "fortumo.com": [6060], "www.censys.io": [2941], "images.backstreetmerch.com": [1603], "flamehut.just-eat.ie": [19328], "tp.taobao.com": [15952], "www.korbit.co.kr": [8984], "mijnlandal.nl": [18490], "*.clear-link.com": [3228], "coveredca.com": [3731], "fastserv.com": [5682], "cloud.mobify.com": [10494], "*.wiredforchange.com": [14254], "httplab.it": [7590], "ras-gateway.ncl.ac.uk": [10884], "www.foodler.com": [6005], "azchampion.com": [5627], "reproducible.debian.net": [4273], "videolan.org": [17688], "s2.shinystat.com": [19587], "www.fanpagegeneratorpro.com": [6716], "crowdin.com": [3825], "forevernew.com.au": [6031], "onlineshop.cz": [19459], "upsploit.com": [17381], "qa.medicare.gov": [19392], "intevation.de": [8297], "www.blacklotus.net": [2047], "dl.bananian.org": [1636], "www.sp.nl": [14151], "icstars.com": [7923], "fmod.org": [5968], "cbe.engineering.osu.edu": [11760], "www.cheshiremerseysidecsu.nhs.uk": [10913], "dabs.com": [4100], "support.tenten.vn": [16117], "forums.udacity.com": [17110], "www.ziggo.com": [18861], "www.congresstmi.org": [5783], "mailnull.com": [9878], "www.cse.osu.edu": [11760], "jucy.co.nz": [8463], "tb.raiffeisendirect.ch": [13527], "www.gogotraining.com": [6806], "pingtest.net": [11894], "itrequest.ucsc.edu": [17305], "graphics.stanford.edu": [15383], "datenschutzzentrum.de": [8052], "static.wowhead.com": [18782], "cansecwest.com": [2789], "esuppliers.ic.nhs.uk": [10913], "tools.its.waikato.ac.nz": [17347], "northsomerset.greenparty.org.uk": [6925], "www.bostonglobe.com": [16251], "www.bgamed.de": [1516], "websrv01.kidshealth.org": [8883], "ch.ch": [19052], "*.acr.org": [941], "ceop.police.uk": [19049], "nameid.org": [11020], "blog.xapo.com": [18541], "www.oxfordtoday.ox.ac.uk": [17271], "secure.delicious.com": [4328], "open-data.europa.eu": [5421], "corp.onlinesbi.com": [11873], "campusvisit.osu.edu": [11760], "aerospace.osu.edu": [11760], "a0.webproxy.nic.tel": [16100], "*.visualrevenue.com": [17784], "www.transformativeworks.org": [16667], "media.business.spectrum.com": [15248], "media1.woolworths.com.au": [18422], "lists.ubuntu.com": [17102], "d.adrolays.de": [625], "www.studifit.htwk-leipzig.de": [7114], "student.uaa.alaska.edu": [17233], "*.vo.msecnd.net": [10677], "www.fiber7.ch": [5770], "labaia.ws": [9124], "m.oracle.com": [12082], "www.business.kaspersky.com": [8806], "docusign.net": [4630], "www.apps.ups.com": [17007], "apps.obfs.uillinois.edu": [16960], "weakdh.org": [18031], "static.atv.hu": [362], "staff.uclan.ac.uk": [17307], "www.crypteron.com": [3850], "verify.givingprograms.com": [6691], "*.fox-toolkit.org": [5589], "g3.std3.ru": [15445], "bcj.ch": [19333], "*.redbullmobile.com.au": [13670], "libraries.io": [9303], "static3.miniclipcdn.com": [10423], "www.aclunc.org": [260], "codeclub.org.uk": [3354], "elance.com": [5140], "ppc.osu.edu": [11760], "static-bii.businessinsider.com": [2454], "hud.gov": [17018], "gridforums.nvidia.com": [10985], "*.btc-trade.ru": [1554], "assetmanager.api.qbrick.com": [13300], "windstreambusiness.com": [18348], "www.trendmicro.de": [16715], "www.frivillighetshuset.no": [6221], "www.acttea.ut.ee": [17069], "www.emc2.cornell.edu": [3676], "testfamilysafety.bing.com": [1895], "www.suitey.com": [15587], "www.superteacherworksheets.com": [15623], "www.pirateparty.ca": [12712], "www.chatlio.com": [19053], "levoleague.com": [9276], "winswitch.org": [18341], "www.ams.jhu.edu": [16296], "www.mashape.com": [10044], "www.consumerreports.org": [3600], "ds1.static.rtbf.be": [14011], "www.trumba.com": [16778], "static.mediatemple.net": [10165], "*.cduniverse.ws": [2568], "www.interhyp.de": [8250], "*.influads.com": [8097], "freshmilk.tv": [6205], "roger.ucsd.edu": [16939], "www.socialcodedev.com": [15063], "www.verbling.com": [17615], "openbsc.osmocom.org": [12126], "*.adbutler.com": [518], "account.sonyentertainmentnetwork.com": [15149], "mxcursos.com": [9813], "localedge.com": [9538], "blogit.ashleymadison.com": [1254], "www.adjug.com": [526], "the-independent-news.com": [8056], "www1.livenation.*": [9481], "royaldns.net": [19558], "www.qt-apps.org": [19461], "*.ixquick-proxy.com": [8405], "cdn.cstatic.net": [3901], "songlist.hclippr.com": [7051], "www.lenovovision.com": [9251], "www.remusexhauststore.com": [13763], "graphics.nytimes.com": [11000], "nesl.edu": [10901], "sponsoredprograms.illinois.edu": [17258], "www.tweetadder.com": [16868], "www.esdiscuss.org": [4969], "metrics.geek.com": [18860], "www.sfconservancy.org": [15099], "www.wbginvestmentclimate.org": [8259], "www.sbvimprover.com": [14084], "hgst.com": [7059], "zen.nzherald.co.nz": [11314], "www.negativesum.net": [11135], "etipos.sk": [5388], "download.centreon.com": [2957], "888voip.com": [201], "portal.goldkeys.org": [6815], "orenburg.rt.ru": [13469], "www.nhsbsadental.nhs.uk": [10913], "*.twitter.com": [16892], "www.dmx-austria.at": [4049], "get-digital.nl": [6562], "gaauth.qq.com": [13285], "blog.fefe.de": [5742], "b0.thejournal.ie": [16224], "www.tradeblock.com": [16634], "unvanquished.net": [17374], "www.andaluciapropertyrentals.com": [996], "minecraftserverlijst.nl": [10416], "secure.bingads.microsoft.com": [10364], "www.torrentshack.me": [16584], "*.ekomi.co.uk": [4921], "addons.modulus.io": [10527], "publicfeed.stubhub.de": [15534], "edu.artschools.com": [1224], "www.anonymousspeech.com": [1050], "qrsolutions.com": [13287], "www.socrata.com": [15082], "www.dgl.cx": [4438], "my.ysu.edu": [18742], "www.cometdocs.com": [3464], "jobs.businessinsider.com": [2454, 14829], "bluemovie.net": [2126], "www.ballicom.co.uk": [1631], "www.gototraining.com": [6788], "ciety.com": [3133], "printchomp.com": [13069], "www.ultrafacil.com.br": [17134], "mail.silentcircle.com": [14786], "cspinet.org": [2675], "mse.osu.edu": [11760], "www.netistrar.com": [11237], "linc.mit.edu": [9749], "which.net": [18240], "cms.ipressroom.com.s3.amazonaws.com": [7796], "alumni.buffalo.edu": [17297], "www.jazz.co": [8536], "www.crosskeyshomes.co.uk": [19091], "shopping.nero.com": [11162], "buy.aliyun.com": [821], "interacposcentre.ca": [8235], "lippupalvelu.fi": [16421], "caixadirectaonline.cgd.pt": [2978], "hoteltotravel.com": [7555], "www.casro.org": [2887], "global.ib-ibi.com": [7674], "codeship.com": [3378], "www.eugene.kaspersky.com": [8806], "www.systemed.net": [15764], "eniro.se": [5276], "postbank.de": [12959], "inburke.com": [8040], "www.118information.co.uk": [19], "www.smartos.org": [14990], "secure.silverrushstyle.com": [14800], "streaming.linux-magazin.de": [9393], "cityoflondon.firmstep.com": [19183], "www.pressfreedomfoundation.org": [6173], "sellercentral.amazon.co.uk": [910], "doriancolor.com": [4685], "jobindex.dk": [8597], "v.web.de": [18050], "www.swisspost.com": [12949], "web.de": [18050], "translate.apan.org": [329], "southeast.greenparty.org.uk": [6925], "1nsk.ru": [59], "sprav.yandex.kz": [18652], "www.secure.denic.de": [4362], "beta.hstor.org": [7586], "developer.doublerobotics.com": [4713], "tesco.com": [16134], "www.canon.at": [2809], "delivery.g.switchadhub.com": [15701], "www.jamadu.ch": [3644], "c.enhance.com": [9984], "wpi.edu": [18426], "www.netguava.com": [11234], "leet.getdigital.de": [6611], "metooo.io": [10317], "ufies.org": [16950], "www.directspace.net": [4525], "wd.sharethis.com": [14668], "bible.com": [18710], "abr.gov.au": [1383], "www.ntsb.gov": [11086], "udistrital.edu.co": [17112], "mywebsite.1and1.co.uk": [53], "resilientcommunities.govspace.gov.au": [6867], "police.uic.edu": [17231], "icims.com": [7685], "*.nugg.ad": [11571], "www.918autoloans.com": [208], "support.localist.com": [9541], "myshaklee.com": [14656], "yosemitenews.info": [18697], "intranet.mecheng.ohio-state.edu": [11761], "stavrovski.net": [15439], "yandex.net": [18654], "www.bretagne-web.eu": [2305], "tools.ietf.org": [7721], "cpaptalk.com": [3745], "www.etapestry.com": [5370], "adcash.com": [567], "auth.withsix.com": [18379], "*.argusleader.com": [1189], "mail103.websupport.sk": [18160], "blog.xs4all.nl": [18535], "engineering.gosquared.com": [6784], "acpica.org": [264], "bugs.xdebug.org": [18552], "www.marketplace-used.com": [10019], "services.pressreader.com": [13035], "multicastmedia.com": [10699], "ncsc.nl": [10886], "shagaholic.com": [785], "www.easywhois.com": [5032], "www.aeea.asso.ulaval.ca": [17229], "upload.taobao.com": [15952], "sg.anz.com": [315], "serve.com": [14599], "bukkit.org": [19024], "wetransfer.com": [18025], "*.symanteccloud.com": [15715], "ece.engineering.osu.edu": [11760], "www.igtt.hscic.gov.uk": [19264], "watkins.edu": [18003], "metalab.at": [10306], "gotmerchant.com": [6856], "raps.wustl.edu": [17993], "www.viraj.ulaval.ca": [17229], "blog.viaduct.io": [17662], "threadingbuildingblocks.org": [16390], "cdn.myfonts.net": [10759], "www.appdevelopermagazine.com": [1112], "calmessages.berkeley.edu": [17240], "psara.abenteuerland.at": [409], "contacts.zoho.com": [18884], "simlar.org": [14812], "wetter.tagesschau.de": [19656], "www.observer.com": [18428], "*.parc.com": [12350], "resonant.org": [13809], "*.labaia.ws": [9124], "linuxpl.com": [9434], "gosquared.com": [6784], "meltwaternews.com": [10243], "lists.openstreetmap.org": [11979], "ibm.com": [7675], "sfs.wustl.edu": [17993], "www.maths.nottingham.ac.uk": [11528], "www.lipreading.org": [9441], "jmdekker.it": [19321], "*.necdisplay.com": [10895], "content.longtailvideo.com": [9589], "packages.sabayon.org": [14214], "511tactical.com": [169], "gl.ch": [19648], "www.keenot.es": [8837], "ntk.me": [11554], "xmlsearch.yandex.kz": [18652], "store.parallels.com": [12392], "www.vt.edu": [17740], "ssl.safaribooksonline.com": [14222], "www.ldpreload.com": [9188], "members.nearlyfreespeech.net": [11122], "power.freenet.de": [6180], "media-azeroth.cursecdn.com": [3934], "fidoalliance.org": [5572], "itunes.apple.com": [1120], "plagiarism.arts.cornell.edu": [3676], "www.cleanenergyexperts.com": [3224], "*.necuhb.org": [11130], "apismart.jd.com": [8423], "proj-lti.web.cern.ch": [2575], "vidble.com": [17681], "nars.osu.edu": [11760], "news.wustl.edu": [17993], "www.tangiblesecurity.com": [15945], "2015.eurobsdcon.org": [5404], "www.flixden.com": [5932], "seattleix.net": [14452], "www.guidestar.org": [7007], "calendar.northeastern.edu": [11499], "www.aclu-nj.org": [259], "www.bundespublikationen.admin.ch": [19648], "*.signals.com": [14782], "www.cwspod.com": [2692], "maps.mail.ru": [9874], "encrypt.to": [5235], "gyazo.com": [7035], "*.dmtracker.com": [4051], "infinet.com.au": [8092, 8093], "akira.org": [765], "www.bc.edu": [1503], "pue.zus.pl": [18769], "webmail.wedos.net": [17901], "amnistia.org.mx": [977], "*.pcwelt.de": [12498], "i.arvm.de": [1239], "www.nsfwcorp.com": [11549], "observatory.leeds.gov.uk": [19353], "blog.tape.tv": [15956], "distrowatch.org": [4577], "apps.washingtonpost.com": [17990], "na.decdna.net": [4281], "e.infogr.am": [8109], "openresty.org": [12043], "archive.installgentoo.net": [18700], "pollinghelp.cit.cornell.edu": [3676], "tokyotosho.se": [16537], "netswipe.com": [8672], "intrahr.nih.gov": [11052], "hofstra.edu": [7444], "autodiscover.boldchat.com": [2187], "www.cbfisap.ed.gov": [4889], "cdn.ncsu.edu": [11492], "tryzen99.com": [16807], "images.hostels.com": [18042], "www.cines.fr": [2609], "click4assistance.co.uk": [3242], "webclaim.net": [4894], "bugs.openmpt.org": [11951], "servercircle.com": [14610], "autoconfig.yandex.by": [18648], "account.yunos.com": [18749], "shop.newsmax.com": [11342], "*.premiumize.me": [13028], "shareweb.kent.gov.uk": [8851], "www.valdhaus.co": [17531], "lists.stanford.edu": [15383], "www.open.hpi.de": [7090], "www.drv-bund.de": [4407], "downloads.bitnami.com": [2011], "release.debian.org": [4275], "candhlures.com": [2806], "image-assets.stackcommerce.com": [15361], "laweval.northeastern.edu": [11499], "*.open-pc.com": [19462], "edu.tiki.org": [16444], "www.openfarmgame.com": [12010], "www.findlegalforms.com": [5838], "iqt.org": [8025], "www.prettylightsmusic.com": [13041], "www.gosuslugi.ru": [6852], "pro.realty.mail.ru": [9874], "suomi.fi": [19640], "www.escrowlive.net": [5355], "www.roboxchange.com": [13442], "www.helsingor.dk": [7313], "www.christ-swiss.ch": [3645], "mapquestapi.com": [9970], "swordfishdc.com": [15707], "worldlandscapearchitect.com": [18456], "blogs.msdn.com": [10361], "webforms.telford.gov.uk": [19669], "topatoco.com": [16564], "*.ea.com": [5151], "openstreetmap.fr": [12045], "*.hrep.nhmrc.gov.au": [7606], "mysql.it": [10780], "catchy.com": [2900], "luckymarmot.com": [9650], "forum.ipvanish.com": [7799], "s.mobioinsider.com": [10504], "planapp.tue.nl": [15874], "*.solidcactushosting.com": [15119], "www.simlystore.com": [14813], "nwf.org": [11088], "ruc.dk": [13971], "help.vodafone.co.nz": [17812], "thegcloud.com": [16279], "www.akismet.com": [766], "harperreed.com": [7209], "plusme.net": [12831, 12832], "cz-hosting.com": [2697], "engagingnetworks.net": [5262], "yourlocaledge.com": [18729], "sysnews.ncsu.edu": [11492], "www.textracer.dk": [16161], "diasporabr.com.br": [4449], "yoyogames.com": [19797], "point.vzp.cz": [17524], "*.lokus.se": [9567], "www.muspy.com": [10726], "developer.mediamath.com": [10157], "mice.jd.com": [8423], "propertydeals.com.pk": [13159], "fisync.dwolla.com": [4816], "secureholidays.com": [18490], "www.reddpics.com": [13689], "www.nightdev.com": [11394], "pan.baidu.com": [1618], "thephone.coop": [16347], "www.eriga.lv": [13880], "www.consilium.europa.eu": [5421], "intersectalliance.com": [8295], "www.icmag.*": [2808], "yoursav.net": [18739], "www.filmon.com": [5812], "cbb.dk": [2913], "vk.me": [17491], "opal.com.au": [11904], "www.strato-pro.com": [14194], "blackberry.com": [2050], "*.midasplayer.com": [8897], "contact.informahealthcare.com": [8119], "www.bitaddress.org": [1954], "blog.netspi.com": [11206], "caltech.edu": [2757], "www.hazing.cornell.edu": [3676], "support.contentful.com": [3614], "*.blogblog.com": [2107], "admin.xnet.cz": [18531], "www.aics.riken.jp": [13430], "secure.static.tumblr.com": [16826], "gnome.org": [6354], "www.devzing.com": [4419], "fxphd.com": [6290], "advisors.dell.com": [4335], "app-us5.resrc.it": [13599], "www.brighttalk.com": [2323], "se.norton.com": [11505], "www.magix.info": [9707], "cdn.photosynth.net": [12649], "www.minbzk.nl": [11132], "www.kiwicon.org": [8929], "anwiki.com": [16856], "proxify.com": [13178], "directory.fedoraproject.org": [5730], "mashape.com": [10044], "www.anon-ib.ru": [1038], "www.olimex.com": [11781], "www.pokemon-world-online.net": [12856], "soc.indusguard.com": [8075], "chase.com": [3026], "tram.stanford.edu": [15383], "forum.xfce.org": [18512], "maker.tv": [9912], "www.fictiv.com": [5773], "www.podupti.me": [12841], "nationstates.net": [11044], "religionnews.com": [13755], "adeccowaytowork.com": [580], "www.common-lisp.net": [3484], "one.ubuntu.com": [17102], "gifttool.com": [6641], "www.virtualqube.com": [17750], "cdn.bayan.ir": [1703], "gmx.at": [6350], "www.chickensoup.com": [3074], "strava.com": [15513], "esdal.dft.gov.uk": [19116], "*.adnxs.com": [612], "cdn.engine.adsupply.com": [544], "ftp.openmandriva.org": [11956], "itsh.bo": [19312], "wed.is": [18176], "s0.c4tw.net": [2505], "www.jobzonen.dk": [8604], "www.marxists.org": [10042], "partnerlocator.symantec.com": [15715], "www.ppl.cz": [12283], "www.adcap.biz": [519], "www.talkingfrench.com": [15932], "prisonphonejustice.org": [13077], "zohocorp.com": [18885], "www.starrez.com": [15394], "ucalgarymag.ca": [16944], "advertising.microsoft.com": [10364], "files.list.co.uk": [16199], "www.traffichaus.com": [16652], "www.muckrock.com": [10684], "orderit.stanford.edu": [15383], "ebankingbutsecure.ch": [4870], "wiki.mageia.org": [9847], "support.rhinosupport.com": [13862], "exeterfamily.co.uk": [5491], "alliedmods.net": [853], "ercpe.de": [5338], "www.calazan.com": [2733], "videopros.com": [17690], "shellterproject.com": [14697], "thespartaninstitute.com": [15226], "*.cyberphoto.se": [3963], "www.encrypt.to": [5235], "mietek.io": [10379], "subscribe.washingtonpost.com": [17990], "zd.net": [1920], "cdn.cdtoimge.com": [3922], "*.thepublicindex.org": [16206], "galois.com": [6410], "stats.avaaz.org": [1437], "shopmania.es": [14717], "forum.stratechery.com": [15508], "www.iraiser.eu": [8353], "parentsweekend.stanford.edu": [15383], "patechmasters.com": [12623], "wenda.taobao.com": [15952], "www.transactauto.com": [16662], "qa.debian.org": [4275], "www.jabjab.de": [8471], "www.docusign.com": [4629], "*.reddit.com": [13690], "lithive.com": [9454], "diff3.smartadserver.com": [14982], "www.dirk.to": [4535], "*.fmylife.com": [5580], "www.apsjobs.gov.au": [335], "stats.webplatform.org": [18079], "www.fluxx.io": [5959], "tm319.tumblr.com": [16826], "*.pocketcasts.com": [12837], "utoronto.ca": [17344], "developers.kongregate.com": [8977], "www.m-wm.com": [9718], "secure.gq.com": [6379], "help.songkick.com": [19609], "gobierno.usa.gov": [17029], "assistly.com": [4392], "*.alz.org": [900], "lasvegas.hertzequip.com": [7372], "fmworld.net": [6245], "legacydev.pfizerpro.com": [12612], "autodiscover.food.leeds.ac.uk": [17318], "passthepopcorn.me": [12425], "sudoroom.org": [15580], "nemlogin.wayf.dk": [17896], "www.portlandoregon.gov": [3195], "www.valtiolle.fi": [17535], "www.mdosche.de": [10130], "www.macports.org": [9821], "static.planetminecraft.com": [12770], "augmentedracing.redbull.es": [13666], "plus.politiken.dk": [12876], "myinteriordecorator.com": [10764], "sustainability.wustl.edu": [17993], "*.superbreak.net": [7452], "www.csob.sk": [3896], "slsp.sk": [14974], "cloudsleuth.net": [3294], "partner-myefc.efinancialcareers.com": [4911], "www.admin.cam.ac.uk": [17243], "statewatch.org": [15424], "www.citizensforscience.org": [3175], "vine.co": [17722], "*.behance.net": [1756], "www-cache-css.extensis.com": [5523], "gaborszathmari.me": [6402], "*.usbank.com": [17036], "www.postofficeshop.co.uk": [12955], "*.hrusecky.net": [10342], "www.dom.bg": [4645], "groupon.com.br": [6973], "www.latex-project.org": [9116], "www.thebuddyforum.com": [2230], "js.web.de": [18050], "brashear.me": [2289], "ib.swedbank.nl": [15682], "pimsweb.tameside.gov.uk": [19660], "whitehathouston.com": [18254], "www.kotulas.com": [8996], "dps.ws.hmrc.gov.uk": [7084], "*.atrativa.com.br": [1331], "oneexchange.com": [11832], "www.leadformix.com": [9193], "statistik-gallup.net": [15840], "www.blocket.com": [2093], "www.osdir.com": [11668], "californiawalkintubcompany.com": [2751], "*.intuit.com": [8304], "binsearch.net": [1888], "my.jhu.edu": [16296], "safeassign.com": [14226], "redditmade.com": [13694], "www.magicalbutter.com.au": [9857], "discovery.refeds.org": [13413], "webdesk.1and1.com": [51], "*.alumniconnections.com": [896], "folkets.dk": [5986], "www.elrepo.org": [4924], "www.banking.co.at": [1647], "gpg4usb.cpunk.de": [3746], "www.piware.de": [10034], "forum.worldofwarships.*": [18462], "www.zerocater.com": [18842], "warehouse.python.org": [13272], "www.liftware.com": [9340], "ld-st11.itunes.apple.com": [1120], "trusted-introducer.org": [16786], "ossswebcs.admin.uillinois.edu": [16960], "store.globalresearch.ca": [6732], "uxt.ucsd.edu": [16939], "surprisinglyfree.com": [15655], "www.kids.usa.gov": [17029], "blogs.nlnetlabs.nl": [10940], "david-campbell.org": [4223], "market.bigmir.net": [1866], "forums.plex.tv": [12814], "mcp.anchor.com.au": [993], "hosting90.cz": [7527], "admin-survey.usa.gov": [17029], "esta.cbp.dhs.gov": [4035], "*.d4designstudios.com": [3999], "www.1in3campaign.org": [11852], "hacks.mit.edu": [9747], "*.reevoo.com": [13715], "www.hr.od.nih.gov": [11052], "antergos.com": [1062], "www.drugs-forum.com": [4777], "ubmaviation.com": [16927], "engagedoncaster.co.uk": [5261], "imba.illinois.edu": [17258], "mikeash.com": [10383], "cloutoday.nl": [3277], "rbinvestwdc.eu": [13402], "kinox.nu": [19337], "akamai.kaltura.com": [8775], "static.spiceworks.com": [15266], "www.vue.com": [12506], "konto.t-mobilebankowe.pl": [19654], "blog.safariflow.com": [18428], "privatepaste.com": [13101], "www.societyforscience.org": [15078], "www.researchblogging.org": [13793], "gg.gov.au": [6874], "js.intercomcdn.com": [8245], "*.ede-look.org": [19462], "itella.fi": [19310], "gohugo.io": [19224], "housing.osu.edu": [11760], "uclearning.ucsd.edu": [16939], "www.3taps.com": [138], "vueling.com": [17870], "www.risiinfo.com": [13433], "*.creation.co.uk": [3775], "aoe.com": [316], "adspeed.net": [541], "tusfiles.net": [16849], "secure.ngagelive.com": [11372], "www.defenceandsecurity.ca": [2512], "d.adsbyisocket.com": [8373], "cdn.exm.nr": [5480], "status.silktide.com": [14796], "stripe.com": [15525], "howsecureismypassword.net": [7569], "si.wp.pl": [17921], "*.evotronix.com": [5463], "pa.drweb.com": [4783], "share.pingdom.com": [12687], "cchcatalog.com": [2548], "protu.fi": [13149], "cdn.ch2.stg.comcast.com": [3461], "audiencetargeting.com": [1356], "wiki.appnexus.com": [1109], "app.weswap.com": [18024], "www.fsa.go.jp": [5596], "international.berkeley.edu": [17240], "e2e-uat.ti.com": [16152], "quackquackgo.nl": [13320], "m.mutualofamerica.com": [10733], "sitemanager.itunes.apple.com": [1120], "cdn.print.io": [13065], "www.fronter.com": [19200], "cdn.images.dailystar.co.uk": [4112], "c2.thejournal.ie": [16224], "espace2013.cern.ch": [2575], "relevate.ru": [13753], "www.diasp.de": [4445], "login.mobile.de": [19403], "profile.ak.fbcdn.net": [5700], "s.bsd.net": [1541], "ece.illinois.edu": [17258], "contactus.netflix.com": [11229], "www.flipboard.com": [5925], "mbox9.offermatica.com": [11738], "www.asmc.de": [1269], "byu.edu": [1587], "www.emergingthreats.net": [5206], "lippu.fi": [9440], "www.chromium.org": [3119], "www.umich.edu": [17266], "q.stripe.com": [15525], "legal.nodejitsu.com": [11453], "www.cfengine.com": [2590], "uni-tuebingen.de": [17346], "www.abbo-shop.ch": [401], "www.aaai.org": [388], "www.mivolunteers.org": [17835], "cdn.raymond.cc": [13585], "www.fedorahosted.org": [5727], "hr.williams.edu": [18316], "www.tribalfusion.com": [16725], "ja.foursquare.com": [6082], "www.splone.com": [15284], "*.securepaynet.net": [14507], "assets.realclearpolitics.com": [13623], "srv1.openwireless.org": [12029], "poormanmotorsports.com": [12900], "mog.com": [9774], "www.ssafastore.co.uk": [14171], "ico.stanford.edu": [15383], "rb1.stockport.gov.uk": [19628], "www.headstrong.de": [7256], "support.maxcdn.com": [10091], "mytemp.email": [10790], "www.vtbrussia.ru": [17515], "aufeminin.com": [1469], "choice.microsoft.com": [10364], "*.brightcove.com": [2328], "*.media.mobyhub.com": [10506], "espacejeux.com": [5360], "gotvape.net": [6854], "www.afcea.org": [280], "www.courtlistener.com": [3720], "blogs.cpanel.com": [2651], "www.nydailynews.com": [10990], "img.metaboli.fr": [10303], "freedom-to-connect.net": [6166], "www.hackademix.net": [7139], "shs.ucsd.edu": [16939], "mailtracker.livingsocial.com": [9517], "employeeexpress.gov": [5217], "stats.ft.com": [5826], "apicasystem.com": [1092], "s4.qhimg.com": [13302], "cdn-www.reflected.net": [13718], "www.sentinelone.com": [14587], "turn.appear.in": [1114], "perl.org": [12576], "*.vba.va.gov": [17019], "analytics.yandex.by": [18648], "www.readability.com": [13615], "*.hboeck.de": [7049], "www.comdirect.de": [19072], "lokus.no": [9566], "weechat.org": [18177], "*.employment.gov.au": [4369], "*.vk.me": [17491], "logs1.smithsonian.museum": [15008], "php-fusion.co.uk": [12249], "rxpharmacyusa.com": [14051], "hi.alipay.com": [817], "usa.anon-ib.la": [1036], "wallet.la": [17961], "company.yandex.com": [18651], "acm.wustl.edu": [17993], "justitie.nl": [11132], "llvm.org": [9090], "addons.alfresco.com": [802], "*.danzappone.com": [16328], "affiliate.abftracker.com": [415], "ondemand.duke.edu": [4798], "newmysky.sky.com": [14924], "www.mobiusconsortium.org": [9769], "knot-dns.cz": [8947], "dzne.de": [6556], "leightlab.engineering.osu.edu": [11760], "support.countermail.com": [3705], "s5.qhimg.com": [13302], "datenschutz-ist-buergerrecht.de": [4218], "gic7.mycdn.me": [10824], "s3.thejournal.ie": [16224], "www.minedu.sk": [14972], "hongkongfp.com": [19258], "www.europa-apotheek.com": [5419], "secure-static-cdn2.ustream.tv": [17451], "media.crikey.com.au": [3796], "elliptictech.com": [5171], "www.adingo.jp": [592], "search.stanford.edu": [15383], "quickline.ch": [19530], "bahnshop.de": [1617], "buy.symanteccloud.com": [15715], "myphone.coop": [10822], "ir.homedepot.com": [7469], "lists.junge-piraten.de": [8679], "camaya.net": [2764], "erecruit.upu.int": [17008], "freejeremy.net": [6141], "www.eolewater.com": [5315], "*.avangate.com": [1439], "www.laaclu.org": [250], "www.valoancaptain.com": [17467], "www.scotthelme.co.uk": [14399], "youtube.com.es": [18709], "blog.genua.de": [19212], "cm.be": [3109], "www.areweslimyet.com": [1177], "portforward.com": [12931], "shared.gmocloud.com": [6343], "www.countermail.com": [3705], "militarysuper.gov.au": [10395], "www.scribblelive.com": [14412], "*.roundhouse.org.uk": [13987], "cdn.zuhah.com": [18921], "nttxstore.jp": [11557], "youtube.com.ee": [18709], "kwiksurveys.com": [9048], "youtube.com.eg": [18709], "weheartit.com": [18017], "publicintelligence.net": [13210], "zoosk.com": [18906], "telvue.com": [16067], "earthlink.net": [5007], "www.scene.org": [8269], "dein.dk": [4319], "www.strasweb.fr": [15507], "opensource.cse.ohio-state.edu": [11761], "mentoring.stanford.edu": [15383], "forumimages.somethingawful.com": [15130], "www.garron.me": [6461], "tm.com.my": [16083], "dg53.mycdn.me": [10824], "fazedores.catracalivre.com.br": [2908], "client.jabbi.pl": [8480], "zmr.wienit.at": [18284], "blackboard.stonybrook.edu": [15480], "appsconnect.oracle.com": [12082], "fangamer.net": [5653], "payments.camden.gov.uk": [2772], "fastweb.com": [5689], "warmcat.com": [17979], "www.4.cn": [140], "returnpath.net": [13834], "www.youtube.sn": [18709], "www.pijnacker-nootdorp.nl": [11132], "*.hegerys.com": [7282], "distrowatch.com": [4577], "bluez.org": [2138], "www.dearfcc.org": [4264], "ultrabug.fr": [17137], "www.judicialwatch.org": [8663], "develop.thegreatcoursesplus.com": [16284], "www.curesec.com": [3928], "www.jmdekker.it": [19321], "*.spotxchange.com": [15294], "traffic.gemius.com": [6516], "ip2location.com": [7786], "webtrends.com": [18171], "www.microsoft.com": [10364], "connected.tante.cc": [15949], "osp.drweb.com": [4783], "www.heanet.ie": [7268], "host.ie": [4513], "testweb.derby.gov.uk": [4380], "www.lib.uchicago.edu": [17246], "eyf.tameside.gov.uk": [19660], "www.eigenlab.org": [19151], "*.berlin-airport.de": [1790], "bedrockbluenext.msn.com": [9796], "castle-technology.co.uk": [2891], "www.youtube.hu": [18709], "annevankesteren.nl": [1029], "es.support.tomtom.com": [16540], "en.support.guildwars2.com": [13882], "lists.volatilesystems.com": [17824], "*.cheezburger.com": [3056], "webcontrolcenter.com": [18113], "www1.hgst.com": [7059], "s-paimai.taobao.com": [15952], "www.vehiclevisuals.com": [17591], "search.1and1.com": [51], "ads.paper.li": [12379], "my.covad.com": [3725], "hallgroup.engineering.osu.edu": [11760], "support.ihc.ru": [7736], "akademy2009.kde.org": [8718], "purdue.syncplicity.com": [15730], "www.flixbus.fr": [5931], "w01.my-files.de": [10742], "tweetnacl.cr.yp.to": [3748], "secure.somerset.gov.uk": [15127], "osucentralreceiving.osu.edu": [11760], "spartafx.com": [15225], "lists.desy.de": [4399], "alternalabs.com": [879], "maybemaimed.com": [10103], "www.zdv.uni-tuebingen.de": [17345], "www.london-nano.com": [9574], "www.fundersclub.com": [6261], "testobb.ppby.de": [12707], "verisignlabs.com": [17624], "ws.vtc.sim-technik.de": [14805], "rcm.amazon.com": [910], "shared.opendns.com": [11932], "caimao.com": [2719], "secure.consumerfinance.gov": [3602], "facebook.com": [5620], "activity.serving-sys.com": [14628], "*.business2community.com": [2456], "my.supplychain.nhs.uk": [10913], "wohnungsunternehmen.telecolumbus.de": [16073], "parkrun.org.uk": [12407], "www.ebankingabersicher.ch": [4870], "www.bananian.org": [1636], "www.ya.ru": [18626], "stackmonkey.com": [15362], "secure.twitch.tv": [16888], "paid.outbrain.com": [12150], "*.spd.de": [15201], "www.southlanarkshire.gov.uk": [15190], "www.howsmytls.com": [7573], "12mars.rsf.org": [13784], "warmlyyours.com": [17980], "easy-hebergement.fr": [5033], "carmen.osu.edu": [11760], "ymail.com": [18638], "forms.dover.gov.uk": [4718], "wi-fi.org": [18271], "groups.ic.nhs.uk": [10913], "my.bigcartel.com": [1850], "www.wienernetze.at": [18284], "www.iwight.com": [7877], "zh.community.dell.com": [4335], "*.wikimedia.org": [18296], "www.cbcrypt.org": [2522], "journalistforbundet.dk": [8648], "passets-ak.pinterest.com": [12699], "brighton.com": [2331], "s6.mt-cdn.net": [9798], "data.gov.au": [4181], "secure02.kidshealth.org": [8883], "cyber.law.harvard.edu": [7219], "*.ul.ie": [16979], "sc.videoemail.com": [17695], "pirates-forum.org": [16227], "nileshgr.com": [11406], "chase.leeds.ac.uk": [17318], "www.business.illinois.edu": [17258], "cfr.org": [3702], "viddler.com": [17683], "codeplex.com": [3373], "oculu.com": [11720], "ebuzzing.com": [5044], "www.semantic-mediawiki.org": [19581], "altinget.dk": [891], "saat.yandex.com.tr": [18649], "www.whitelabel.net": [18255], "de.gamigo.com": [6445], "givedirect.org": [6687], "nine-2-one.com": [11411], "torproject.org": [16576], "delivery.ads-creativesyndicator.com": [3781], "blog.0xbadc0de.be": [7], "nhn.com": [10909], "www.resrc.it": [13599], "ubuntu-art.org": [19461, 19462], "secure-cdn.maxcdn.com": [10091], "cdn.markets.ft.com": [5826], "improvely.com": [8020], "*.chitika.com": [3092], "www.btctrader.com": [1563], "blogs.manageengine.jp": [9939], "i1.blogs.msdn.com": [9788], "www.netpol.org": [11246], "hush.technology": [7631], "www.violetdarkling.com": [17727], "support.office.com": [11743], "josefsson.org": [8631], "ntp.niehs.nih.gov": [11052], "assets.wwf.ch": [19768], "blacktonic.com": [2041], "nos-oignons.net": [11511], "biotronicslab.osu.edu": [11760], "livingsocial.com": [9517], "mastercard.com": [10052], "medicalxpress.com": [10186], "startssl.eu": [15407], "mediastore.portsmouth.gov.uk": [19508], "tchibo.ch": [15985], "www.rugshd.com": [14029], "svnweb.mageia.org": [9847], "javascriptkicks.com": [8527], "research-explorer.dfg.de": [4412], "www.theedgeclimbing.com": [16271], "ngx.cc": [11376], "*.kununu.com": [9038], "beta.drweb.com": [4783], "fishshell.com": [5883], "sedo.de": [14543], "partnerzy.ceneo.pl": [2936], "partner.tageswoche.ch": [15907], "lists.manjaro.org": [9958], "learn.shrinktheweb.com": [14746], "www.jenkins-ci.org": [8551], "cf-wp-prod.sharethis.com": [14668], "shop.fsf.org": [5600], "support.dynatrace.com": [4825], "on-web.fr": [11807], "b2bservices.dell.com": [4335], "cache0.bigcartel.com": [1850], "www.meteorhacks.com": [10314], "merton.gov.uk": [10287], "manage.sencha.com": [14576], "webmail.tierra.net": [16435], "www.mturk.com": [9805], "www.drweb.com": [4783], "idp.opera.com": [12050], "outlook.utsystem.edu": [17284], "connect.liveramp.com": [9497], "scorerestore.com": [14392], "life.baifubao.com": [1621], "westdevon.gov.uk": [18209], "strato-mailcenter.com": [14193], "www.gaminatorslots.com": [6446], "*.rediris.es": [13661], "infusionsoft.com": [8136], "openarchives.org": [12000], "freifunk-ansbach.de": [6189], "borgerservice.kk.dk": [8730], "*.energymadeeasy.gov.au": [5255], "www.directbox.at": [4529], "www.smart.ly": [14985], "id.chef.io": [3057], "datacoup.com": [4179], "edit.php.net": [12250], "jenkins.x2go.org": [18499], "sin.thecthulhu.com": [16334], "www.technologyreview.com": [16041], "www.pay4bugs.com": [12466], "s.yjtag.jp": [18617], "www.platinumskincare.com": [12788], "open.t.qq.com": [13285], "armyoutlet.de": [1206], "static-ssl.exoclick.com": [5499], "api.fixer.io": [5898], "payments.ebay.*": [4874], "www.kent.ac.uk": [17317], "zwischenwelt.milchkind.net": [10391], "tempolibero.ffs.ch": [15693], "webmail.hispeed.ch": [19716], "ovp.qbrick.com": [13300], "netmediaeurope.co.uk": [11198], "redplum.com": [13662], "*.taz.de": [15787], "pma.wedos.net": [17901], "www.roadtrippers.com": [13917], "vgocom.com": [17485], "www.switchip.info": [3533], "gfi.com": [6324], "cs.coresecurity.com": [3668], "www.tbib.org": [15983], "bynumlaw.net": [2485], "fantasycricket.telegraph.co.uk": [16082], "docs.recurly.com": [13652], "www.touchandtravel.de": [16610], "try.taobao.com": [15952], "i.kissmetrics.com": [8727], "www.hertzrent2buy.fr": [7345], "fwc.gov.au": [5632], "music.ohiolink.edu": [11762], "*.opc.gov.au": [11749], "*.xing.com": [18574], "www.android-port.de": [1005], "*.vueling.com": [17870], "irkutsk.rt.ru": [13469], "blogs.halowaypoint.com": [7176], "www.forex-metal.com": [6032], "osmand.cz": [12123], "partnerdirect.dell.com": [4335], "community.f-secure.com": [5541], "megamozg.ru": [19394], "www.gpfi.org": [6370], "www.mixi.co.jp": [10467], "www.forsvarsforbundet.se": [6053], "mx.godaddy.com": [6773], "yourworld.anz.com": [315], "img.delvenetworks.com": [4340], "oodaloop.com": [11652], "european-privacy-seal.eu": [5408], "*.magserv.com": [9862], "raphaelhertzog.com": [13552], "ipv6.google.com": [6834], "pccasegear.com": [12221], "secure2.segpay.com": [14556], "www.sslshopper.com": [14182], "p.qpic.cn": [13309], "www.ygtech.tools": [18615], "www.ip-projects.de": [7785], "ripe71.ripe.net": [13895], "municode.com": [10705], "glasgowconsult.co.uk": [19220], "enpass.io": [5282], "puush.me": [13259], "www.database.com": [4194], "www.rednerd.com": [13699], "students.law.yale.edu": [18642], "www.leibniz-supercomputing-centre.eu": [9238], "api.unity.com": [17220], "koz.io": [9001], "www.stubhub.com": [15534], "www.youtube.com.ng": [18709], "www.click-sec.com": [3241], "bradford.gov.uk": [2264], "beta.rhb.ch": [13857], "portal.victorops.com": [17671], "www.lagen.nu": [9131], "feed.issuu.com": [8378], "www.ordercourses.com": [2937], "www.tvnz.co.nz": [15886], "uofi.illinois.edu": [17258], "movie4k.pe": [10636], "www-ne.ucsd.edu": [16939], "ssl.palmcoastd.com": [12346], "blockchainbdgpzk.onion": [2091], "www.vendercom.com": [17603], "citysearch.com": [3197], "blog.vpsfree.cz": [19743], "d.p-td.com": [467], "support.weixin.qq.com": [13285], "*.sublimegit.net": [15560], "pl.libreoffice.org": [9311], "lists.mindrot.org": [10413], "www.alkasir.com": [822], "cf5.100r.org": [9], "aquent.com": [1144], "www.partnernetprogram.com": [12418], "fry.workaround.org": [18440], "podpora.nic.cz": [11379], "*.fmworld.net": [6245], "advertising.criteo.com": [3801], "*.justiceinspectorates.gov.uk": [3798], "orbis.eastsussexlearning.org.uk": [19144], "status.parse.com": [12412], "www.codeaurora.org": [3347], "www.lkml.org": [9087], "*.chromedata.com": [3116], "www.consultwebs.com": [3596], "www.resiprocate.org": [13598], "vulnscan.org": [17872], "*.list-manage.com": [9446], "wqic.nal.usda.gov": [17209], "mynewflag.com": [11305], "www.waarschuwingsdienst.nl": [11132], "www.nymity.ch": [11598], "tyrus.java.net": [8525], "www.npddecisionkey.com": [4286], "tcrl.engineering.osu.edu": [11760], "www.sig-io.nl": [14773], "edge.ldscdn.org": [16219], "zht.alipay.com": [817], "*.zerve.com": [18848], "isocpp.org": [7831], "branchable.com": [2277], "www.orange.sk": [12087], "becker.wustl.edu": [17993], "tapiture.com": [15958], "www.cryptoparty.org": [3886], "cloudup.com": [3316], "oodt.apache.org": [1086], "laup.nu": [9170], "libre.lugons.org": [9108], "www.lunarline.com": [9671], "www.databricks.com": [4197], "fourdo.com": [150], "www.kd2.us": [8716], "bbs.es.gy": [5353], "www.umiacs.umd.edu": [17263], "cdn.punterlink.co.uk": [13230], "netgate.com": [11231], "www.wireshark.org": [18369], "eprints.nottingham.ac.uk": [11527], "www.videolicious.com": [17696], "pro-xy.com": [8820], "certivox.com": [2966], "www.sozone.de": [15051], "data.cmcore.com": [3663], "int.anon-ib.ru": [1038], "*.ingdirect.com": [7768], "www.hosokawa-alpine.com": [7499], "www.cimbclicks.com.sg": [2607], "my.alfresco.com": [802], "wot.mail.ru": [9874], "vocalarticles.com": [11300], "neooffice.org": [11150], "auth.giantbomb.com": [6636], "www.help.perle.com": [12577], "*.wooga.com": [18421], "ownedcore.com": [12184], "1and1.com": [51], "fw.adsafeprotected.com": [538], "taobao.fanli.com": [5655], "bouncerstation.com": [2245], "alternc.org": [878], "reports.epoch.com": [5325], "petri.com": [12597], "wikinvest.com": [18297], "www.mito.hu": [10458], "nakedcitizens.eu": [11013], "acluidaho.org": [16176], "www.threadingbuildingblocks.org": [16390], "publisher.weboolu.com": [18137], "plainenglish.co.uk": [19498], "fast.fonts.com": [5993], "www.yammer.com": [18647], "calmail.berkeley.edu": [17240], "www.tribler.org": [16729], "gtd.alicdn.com": [805], "www.websitealive3.com": [18149], "nationalreview.com": [11073], "www.securenet.com": [14493], "ems.sheffield.gov.uk": [14694], "cafegate.com": [2717], "www.copyright-watch.org": [3656], "www.xyntekinc.com": [18608], "a.xnimg.cn": [18581], "st.developer.here.com": [7326], "www.catooh.com": [2907], "login.numergy.com": [11579], "112cafe.com": [17], "www.acluva.org": [254], "*.techtarget.com": [16019], "advocate-europe.eu": [669], "md.taobao.com": [15952], "whisper.sh": [18246], "gonewsoft.com": [6781], "lists.libreswan.org": [9316], "media.washingtonpost.com": [17990], "welcomecottages.com": [18490], "na2.www.gartner.com": [6463], "ohsx.stanford.edu": [15383], "americanfuturefund.com": [944], "www.brandspankingnew.net": [2281], "code.berkeley.edu": [17240], "de.aldi.lu": [299], "bugzilla.mplayerhq.hu": [9784], "bookonline.saudiairlines.com": [14305], "login.jiveon.com": [8586], "www.btcmedia.org": [1568], "beta.disk.yandex.com.tr": [18649], "www.documentfoundation.org": [16221], "*.akamai.steamstatic.com": [15452], "careers.insidehighered.com": [8163], "tests.netsekure.org": [11249], "derpiboo.ru": [4381], "user.lucidmedia.com": [9643], "www.ouw.co.uk": [11986], "domain.fi": [4650], "*.chinadialogue.net": [3085], "ad.ghfusion.com": [6421], "www.brightcontext.com": [2319], "*.yottaa.com": [18702], "*.networktimefoundation.org": [11271], "strongloop.com": [15530], "t-media.educ.cam.ac.uk": [17243], "gfx8.hotmail.com": [7559], "www.yoursav.net": [18739], "spyshelter.com": [15325], "www.voicelessonstotheworld.com": [11300], "help.runbox.com": [14037], "ricardo.ch": [13866], "www.m2fjob.com": [9695], "secure.dundeecity.gov.uk": [4801], "americanfreedom.com": [943], "*.advocatesforyouth.org": [670], "*.imgur.com": [8002], "www.intgovforum.org": [8199], "executive.mit.edu": [9747], "isalo.org": [8364], "www.worldcommunitygrid.org": [18447], "s1.jrnl.ie": [19326], "blinkeye.ch": [2076], "css.x-cart.com": [18494], "securewww.esat.kuleuven.be": [8816], "www.websharks-inc.com": [18084], "hackable-devices.org": [7137], "horstaandemaas.nl": [11132], "blog.kryptnostic.com": [9018], "exhaleprovoice.org": [5492], "www.manyvids.com": [9967], "images.miretail.com": [10443], "lesershop24.de": [19357], "manta.com": [9960], "avcosystems.com": [18971], "i.w55c.net": [17891], "*.trefis.com": [16707], "nexus.od.nih.gov": [11052], "oeffentliche-it.de": [11729], "mobielbreedband.ziggozakelijk.nl": [18863], "*.sarenza.net": [14300], "my.textmagic.com": [16157], "portal.infinity-tracking.com": [8095], "admission.com": [16421], "www.sovereignman.com": [15198], "web-registry.com": [18045], "static.parastorage.com": [12395], "www.unsw.edu.au": [16995], "myportal.im": [10776], "www.eastsussex.gov.uk": [19142], "driverseddirect.com": [4765], "websurveys.govmetric.com": [6866], "*.aweber-static.com": [379], "cscprotectsbrands.com": [3683], "www.catracalivre.com.br": [2908], "www.directory.umd.edu": [17263], "*.kingsroadmerch.com": [8900], "g.denik.cz": [4363], "www.cjfe.org": [2619], "www.satoshidice.com": [14301], "www.1btcxe.com": [42], "www.lloydstsb-offshore.com": [9523], "www.icanhazip.com": [7908], "cefas.co.uk": [2928], "berufsmatura.so.ch": [19648], "*.cobaltmania.com": [3341], "solar-energy-installers.com": [15106], "adscendmedia.com": [627], "www.consumidor.gov": [3598], "prospect.org": [16241], "hbo.com": [19240], "vbulletin.com": [17471], "screenshots.debian.net": [4273], "www.commandfive.com": [3474], "source.ind.ie": [8048], "www.kimsufi.com": [8892], "*.linuxdaily.com": [19462], "banyen.com": [1658], "browser.export.yandex.com": [18651], "www.kinfolk.com": [8895, 8896], "support.devzing.com": [4419], "search.amd.com": [925], "talemetry.com": [15918], "obi.cz": [19452], "pilot.ethernetportal.equinix.com": [5334], "www.tifpa.infn.it": [7766], "super.fanli.com": [5655], "mdn.mozillademos.org": [10658], "extensiblewebmanifesto.org": [5520], "naoteam.imn.htwk-leipzig.de": [7114], "leeds.greenparty.org.uk": [6925], "instart0.flixster.com": [5933], "www.storminternet.co.uk": [15497], "hackaday.io": [7138], "khoc.co": [8723], "digg.com": [4468], "ssl2.ovh.net": [12173], "embed.theguardian.com": [16288], "www.jogorama.com.br": [8609], "leisurecourses.derby.gov.uk": [4380], "auth.quakenet.org": [13326], "www.leahscape.com": [9207], "mail.antok.co": [1071], "www.districtsentinel.com": [4576], "succeed.eloqua.com": [5178], "university.alfresco.com": [802], "enla.dict.cc": [4455], "mobilism.org": [19404], "association.typo3.org": [15894], "*.mpiweb.org": [9781], "riskware.sydney.edu.au": [19649], "webmail.wippies.com": [18359], "www.abuse.vutbr.cz": [17522], "tracker.bro.org": [2346], "googleonlinesecurity.blogspot.*": [2113], "hideme.ru": [7392], "*.collegehumor.com": [3428], "pbs.twimg.com": [16877], "transitlab.osu.edu": [11760], "otumm.com": [12135], "yfrog.com": [19791], "www.alumni.rmit.edu.au": [13437], "*.cbssportsnetwork.com": [2525], "m.snsbank.nl": [14144], "www.cqrollcall.com": [2655], "m.hi-tech.mail.ru": [9874], "artistscorner.jamendo.com": [8502], "learningcentre.netapp.com": [11183], "crypt.ncl.ac.uk": [10884], "www.giveto.osu.edu": [11760], "licensingregisters.southlanarkshire.gov.uk": [15190], "*.bookdepository.com": [16217], "www.spaceup.org": [15207], "dataexchangewales.org.uk": [19101], "nexternal.com": [11366], "cpro.baidu.com": [1619], "www.emacswiki.org": [5190], "*.vdownloader.com": [17479], "cryptosanta.xyz": [3869], "www.hostican.com": [7524], "socialcodedev.com": [15063], "sifomedia.tidningsnatet.se": [16434], "computing-templates.web.cern.ch": [2575], "syncany.org": [15727], "www.ovh.us": [11686], "rbl.ms": [1920], "*.cscglobal.com": [3683], "lists.openinfosecfoundation.org": [12015], "fitstudio.com": [5888], "www.fau.de": [17311], "self.maidstone.gov.uk": [9868], "svs.informatik.uni-hamburg.de": [16951], "www.cefas.co.uk": [2928], "gorod.yandex.com.tr": [18649], "visualisingadvocacy.org": [17786], "*.goodnet.com": [6826], "www.godoc.org": [6775], "www.gotmerchant.com": [6856], "apollo3.ds.leeds.ac.uk": [17318], "anchor.com.au": [993], "sc1.checkpoint.com": [3048], "www.value-domain.com": [17539], "be.gbot.me": [6808], "duiven.nl": [11132], "portal.scot.nhs.uk": [10913], "foodl.org": [6004], "www.mitmproxy.org": [10457], "cdn.codementor.io": [3371], "srware.net": [15343], "canon.com.au": [19037], "flashtalking.net": [5907], "www.speakpipe.com": [15233], "dragon.ak.fbcdn.net": [5700], "www.chrismatic.io": [3108], "*.growhq.com": [6982], "betterbills.com": [1824], "wwte8.com": [17937], "www.baylibre.com": [1700], "www.jpackage.org": [8449], "images.scribblelive.com": [14413], "www.datacenter.illinois.edu": [17258], "*.pornbb.org": [19507], "matrixgroup.net": [10078], "seeks-project.info": [14554], "blogtopsites.com": [2105], "knowledge.verisign.com.hk": [17623], "jguitar.com": [8434], "project-syndicate.org": [13136], "secure.comic-con.org": [3466], "top.list.ru": [9448], "www.nrel.gov": [11057], "www.gelgif.ulaval.ca": [17229], "nab.com.au": [10865], "procurement.crick.ac.uk": [19090], "thecustomizewindows.com": [19675], "ssa.gov": [15060], "blocktogether.org": [2089], "accc.gov.au": [1385], "dom.lenta.ru": [19356], "oas.five.tv": [5892], "blog.bugcrowd.com": [2406], "catalog.usmint.gov": [17062], "providercentral.org.uk": [19523], "d.agkn.com": [718], "taz.de": [15787], "mindtools.com": [10411], "git.gnu.io": [6356], "phpartners.org": [12253], "hazro.com": [19239], "www.gamefly.co.uk": [6419], "client.fitbit.com": [5887], "one.southend.gov.uk": [15193], "sheg.stanford.edu": [15383], "www.sandilands.info": [14279], "tms.alicdn.com": [805], "docs.pushbullet.com": [13251], "*.luxsci.com": [9675], "kb.askmonty.org": [1262], "suwebmasters.stanford.edu": [15383], "web.kn.vutbr.cz": [17522], "www.onorobot.org": [11650], "lynda.com": [9682], "www.apwu.org": [933], "lists.pwmt.org": [13262], "www.backstreet-merch.com": [1603], "update6.dedyn.io": [19107], "www.civicrm.org": [3200], "loopt.com": [9608], "schaffner.org": [14346], "techsay.com": [16017], "ritter.vg": [13904], "www.nubits.com": [11561], "rochesterhomepage.*": [13933], "report-uri.io": [13781], "www.mintguide.org": [10433], "ngvpn16.nvidia.com": [10985], "communitylife.cabinetoffice.gov.uk": [2701], "monkey.collabora.co.uk": [3418], "www.essaysreasy.net": [5364], "www.xsens.com": [18591], "kc.mcafee.com": [10114], "piwik.ei.rub.de": [13478], "biz.mail.ru": [9874], "sslvpn2.ntu.edu.tw": [10971], "store.daringfireball.net": [4147], "it.support.tomtom.com": [16540], "*.mietek.io": [10379], "ncats.nih.gov": [11052], "sexnarod.ru": [14640], "www.gethttpsforfree.com": [6592], "privatesearch.io": [13104], "cdn.playboy.com": [12799], "community.1and1.co.uk": [53], "scounter.rt.com": [13468], "privat.tdc.dk": [15796], "cdn.vidyard.com": [17705], "l.fsfe.org": [5601], "gorod.yandex.com": [18651], "www.depositprotection.com": [4375], "leisure.northlincs.gov.uk": [19438], "help.zencoder.com": [18820], "www.e-learning.uni-mainz.de": [17325], "avenue.argus.ch": [1188], "billiongraves.com": [1883], "npd.com": [10947], "ocf.berkeley.edu": [17240], "www.byte.com": [8124], "survey.constantcontact.com": [3592], "uniqueoffersghana.com": [17194], "www.zipcar.com": [18872], "fit.edu": [5942], "www.kevag-telekom.de": [8862], "webhostingtalk.com": [18039], "www.tripbod.com": [16744], "ispgids.com": [7832], "omnitec.com": [11800], "www.upv.cz": [17009], "www.drafthouse.com": [774], "serverapi.arcgisonline.com": [1156], "f2.drweb.com": [4783], "www.masspirgedfund.org": [9715], "help.pinterest.com": [12699], "g.adspeed.net": [541], "fmweb.fm.uic.edu": [17231], "www.upworthy.com": [17404], "ringcentral.com": [13891], "pressetreff.3sat.de": [135], "static5.avonmaquiagem.com.br": [1455], "bundesverfassungsgericht.de": [2435], "www.poste.ch": [12949], "corporatedomains.com": [3683], "*.everesttech.net": [5446], "*.compasscard.ca": [3515], "www.uen.org": [17452], "manage.nodeserv.com": [11450], "www.middelburg.nl": [11132], "jobs.apple.com": [1120], "sifomedia.idg.se": [7705], "ppb.cancer.gov": [2805], "ssl.zoomshare.com": [18904], "stopfasttrack.com": [15484], "www.pgpru.com": [11964], "www.bilio.com": [1875], "files.poulsander.com": [5802], "www.kenexa.jobs": [8847], "portal.bolehvpn.net": [2188], "terreactive.ch": [16130], "www.nxtforum.org": [11592], "cdn.opinionlab.com": [12054], "crm-metrix.com": [2658], "www.socialtyzetracking.com": [15073], "www.pizza.de": [12747], "helpdesk.leeds.ac.uk": [17318], "shoppbs.org": [12211], "deepbit.net": [4301], "home.console.aliyun.com": [821], "mid-suffolk.greenparty.org.uk": [6925], "custhelp.com": [3936], "*.workable.com": [18439], "www.ebankingbutsecure.ch": [4870], "cultura.unizar.es": [17356], "klimaschutzpartner-berlin.de": [8933], "myprojects.cancerresearchuk.org": [19035], "sae.sina.com.cn": [14842], "secure.ethicspoint.com": [5383], "e-junkie.com": [4852], "ss.brighthub.com": [2326], "postepay.poste.it": [12965], "spike.newswhip.com": [11333], "www.online.net": [11870], "www.cbb.dk": [2913], "www.rdash.nhs.uk": [10913], "imagecurl.com": [19284], "www.bitmarket.pl": [1936], "mathcircle.stanford.edu": [15383], "forums.southwark.gov.uk": [15196], "xmos.com": [18523], "git.thm.de": [15811], "knowledge.verisign.de": [17623], "www.york.edu": [18694], "secure.gettyimages.*": [6621], "Sesamstrasse.de": [14629], "*.reportnhsfraud.nhs.uk": [10913], "www.circules.com": [7273], "knowledge.verisign.dk": [17623], "*.thedrum.com": [16270], "registerresnet.neu.edu": [10902], "cloud.highcharts.com": [7405], "sheffield.gov.uk": [14694], "att.com": [364], "freesim.vodafone.co.uk": [17813], "lastpass.com": [9163], "www.linuxlovers.at": [9432], "loveourlocalbusiness.com": [9629], "valueapplications.com": [17538], "www.mi5.gov.uk": [9740], "*.secure-zone.net": [14487], "*.keepallthethings.com": [8839], "css.mapreporter.navteq.com": [10873], "init7.net": [8143], "www.hosteuropegroup.com": [7502], "blog.okcupid.com": [11772], "kiks.yandex.kz": [18652], "indicators.hscic.gov.uk": [19264], "omns.americanexpress.com": [935], "www.stablelib.com": [15358], "wirral.gov.uk": [18371], "platform.gigya.com": [6659], "oracle.taleo.net": [15922], "mattermark.com": [19387], "be.icecat.biz": [7914], "tv.mail.ru": [9874], "www.camtools.cam.ac.uk": [17243], "thebrighttag.com": [2324], "spanish.tags.literotica.com": [9467], "es.cloudflare.com": [3285], "lacrossetechnology.com": [9119], "*.pathofexile.com": [12453], "www.bricklink.com": [2313], "www.stablehost.com": [15357], "bingo.williamhill.com": [18314], "exacom.sk": [5476], "realty.ya.ru": [18626], "www.eiffel.com": [5124], "cas.inria.fr": [8159], "impulsedriven.com": [8022], "jtlebi.fr": [8658], "www.feedburner.com": [5734], "www.faithinmotion.com.au": [5637], "oyoony.net": [19475], "labs.isecpartners.com": [7825], "disq.us": [4570], "weibo.cn": [14844], "media.privacyinternational.org": [13082], "www.hannovermesse.de": [7195], "*.jabbr.net": [8472], "providesupport.com": [13174], "kinja.com": [8906], "static.vimention.com": [17716], "www.teachers.sky.com": [14924], "dev.apigee.com": [1093], "www.pauldreik.se": [12461], "www-edge.empflix.com": [5213], "play.pokemonshowdown.com": [12857], "www.pokemon.co.jp": [12855], "prettylittlething.com": [13042], "freelosophy.tiscali.it": [16498], "player.cdn.tv1.eu": [15879], "media.sailthru.com": [14243], "blogs.fsfe.org": [5601], "cf.bluehost-cdn.com": [2149], "pub.cookie.oup.com": [12192], "ilovebluesea.com": [7893], "www.yedxxx24hr.com": [18667], "tools.euroland.com": [5418], "winweb.desy.de": [4399], "www.cabinet-office.gov.uk": [2700], "upx69.com": [17405], "mygsb.stanford.edu": [15383], "i.yldbt.com": [18680], "www.getpol.org": [6608], "*.kitchenriddles.com": [8922], "treyperry.com": [16719], "blog.webonic.hu": [18136], "secure-usb.co.uk": [19577], "nadaguidesstore.com": [10867], "track.brighteroption.com": [2329], "www.chlomo.org": [3094], "git.hackerspace.pl": [7149], "we.taobao.com": [15952], "www.7search.com": [195], "notalwaysright.com": [19441], "www.petfinder.com": [12596], "www.atname.ru": [360], "www.stage-mobioinsider.com": [10504], "jide.com": [8438], "directdebit.rother.gov.uk": [13978], "uk.wwte4.com": [17937], "active24.sk": [18938], "www.h2hc.com.br": [7043], "calderdale.gov.uk": [2734], "b.collective-media.net": [3423], "my-beta.variomedia.de": [17567], "*.outwit.com": [12148], "fifedirect.org.uk": [5779], "www.dds2dds.com": [4020], "defensoruniversitario.unizar.es": [17356], "www.csis.dk": [2673], "streetlife.com": [19633], "analytics.yacuna.com": [18630], "eb.my.msn.com": [9794], "ptgmedia.pearsoncmg.com": [12505], "stopthehacker.com": [15490], "blog.bit9.com": [1922], "dundeecity.gov.uk": [4801], "www.googleadservices.com": [6851], "www.pardot.com": [12399], "devforums.apple.com": [1120], "www.ultrabug.fr": [17137], "rewards.dbs.com": [4010], "nrc.gov": [17211], "www.tmview.europa.eu": [5421], "wusmhelp.wustl.edu": [17993], "docsv2.dwolla.com": [4816], "season.kde.org": [8718], "www.lolnet.org": [9569], "www.upcbusiness.nl": [17003], "snapshots.pfsense.org": [12607], "www.constructor.maps.yandex.com": [18651], "wwwcf2.nlm.nih.gov": [11052], "netbank2.danskebank.dk": [4145], "www.bbcchildreninneed.co.uk": [1500], "cxholidays.com": [2904], "www.ricardoshops.ch": [13867], "lists.sabayon.org": [14214], "jp.pornworms.com": [12928], "dpreview.com": [4497], "*.starsearchcasting.com": [15398], "esc.edu": [5215], "planet.lugons.org": [9108], "peer5.com": [12514], "www.fb.com": [5698], "js-hx.newjobs.com": [11318], "www.wageningen.nl": [11132], "hilfe.telekom.de": [4410], "zona.t-com.sk": [16088], "www.pclob.gov": [12226], "instart1.flixster.com": [5933], "ctt.pt": [3908], "*.ardour.org": [1175], "nestle.de": [11168], "www.tribecafilminstitute.org": [16728], "efficios.com": [5111], "www.buyaplan.co.uk": [19030], "trustico.com": [16794], "www.blesta.com": [2070], "joueravecletemps.cff.ch": [15693], "www.tineye.com": [16468], "www.filefactory.com": [5789], "www.oit.umd.edu": [17263], "new.livejasmin.com": [9489], "support.fluidhosting.com": [5952], "becoquin.com": [1720], "itar.iana.org": [7667], "stats.openstreetmap.org": [11979], "udmedia.de": [16947], "www.gov.wales": [6860], "www.uef.fi": [17250], "nationalgrid.com": [11081], "corbanworks.com": [3658], "eletmodvaltok.aldi.hu": [299], "static.mixtapeleak.com": [10469], "login.f5.com": [5546], "auth.yell.com": [19790], "*.getglue.com": [6574], "asset-b.soupcdn.com": [15167], "www.veuwer.com": [17656], "www.parking.wustl.edu": [17993], "gowork.pl": [6791], "www.zuhah.com": [18921], "www.rainforestqa.com": [13532], "mail.ign.com": [7730], "www.kuantokusta.pt": [9027], "hark.com": [7206], "toggl.com": [16531], "start.rit.edu": [13434], "q4.qlogo.cn": [13304], "*.get.it": [6564], "scip.portsmouth.gov.uk": [19508], "www.solar-energy-installers.com": [15106], "count.spiegel.de": [15272], "bitex.la": [1993], "www.kimonolabs.com": [8890], "scrapbookroyalty.org": [3010], "advisory.juniper.net": [8682], "aspirations.sbi.co.in": [14082], "i.po.st": [12834], "das-elena-verfahren.de": [4922], "www.readynas.com": [13619], "*.taxpayersalliance.com": [15980], "app.com": [1244], "www-mail.magbio.ens.fr": [4930], "exmo.com": [5498], "community.virginmedia.com": [17737], "www.dshs.state.tx.us": [16151], "webforest.eu": [18101], "www.edoceo.com": [5089], "www.livewyer.com": [9498], "www.youtube.lt": [18709], "www.youtube.lv": [18709], "okturtles.com": [11773], "skyprogrammeinformation.co.uk": [14930], "*.buzzdock.com": [2477], "wiebetech.com": [18283], "status.runabove.com": [14034], "meetinleeds.co.uk": [10210], "apsjobs.gov.au": [335], "www.schoolpartnership.wustl.edu": [17993], "www.intuitpayments.com": [8303], "support.mailpoet.com": [9879], "login.cern.ch": [2575], "whistleout.com.au": [18248], "*.vmware.com": [17495], "hivoice-ct.hivos.org": [7431], "scheme.bikeability.org.uk": [18998], "www.spektrix.com": [19617], "bter.com": [2382], "serverfruit.com": [14615], "www.securepurchaseserver2.com": [14510], "www.fdic.gov": [5710], "perlentaucher.de": [12578], "*.gitorious.org": [6682], "customer.xfinity.com": [19784], "www.dominustemporis.com": [4674], "feedback.xbox.com": [18550], "enygf.eu": [5425], "www.gephardtinstitute.wustl.edu": [17993], "www.dialdirect.co.uk": [4442], "www.join.me": [8616], "be.gogobot.com": [6808], "pass.yandex.kz": [18652], "identitytheft.org.uk": [7939], "polldaddy.com": [12881], "www.coastalmicrosupply.com": [3339], "member.accesstrade.net": [456], "www.voicethread.com": [17821], "*.github.io": [6679], "spectraflow.com": [15247], "*.booking.com": [2202], "b2b.t-mobile.com": [15772], "c.xbox.com": [18550], "touch.livingsocial.com": [9517], "mi6.ua": [9741], "*.hoover.org": [7489], "directory.domaintools.com": [4660], "www.bitshares.org": [1946], "estateshelpdesk.nottingham.ac.uk": [11528], "zyado.com": [18928], "gargoyle.uni.illinois.edu": [17258], "static.clickon.com.ar": [3249], "ifixit.com": [7727], "blog.smashfly.com": [15002], "www.streak.com": [19632], "licai.renren.com": [13769], "blog.srcclr.com": [15337], "divessi.com": [4582], "www.thevideo.me": [16239], "wiki.parabolagnulinux.org": [12385], "www.medicaljane.com": [10187], "sr4.liveperson.net": [9493], "citadium.com": [3166], "nitrocloud.com": [11428], "www.atemda.com": [608], "seethisinaction.com": [14555], "www.quandl.com": [13335], "atemda.com": [608], "newsroom.intel.co.jp": [8206], "*.usenet.nl": [17427], "onelogin.com": [11835], "approve.nuug.no": [10980], "static.aboutus.org": [426], "www.amnesty.no": [974], "www.press.jhu.edu": [16296], "www.oeffentliche-it.de": [11729], "support.clever.com": [3238], "intranet.thm.de": [15811], "www.vxstream-sandbox.com": [17882], "showingcloud.com": [14743], "blogs.oucs.ox.ac.uk": [17271], "sso.uvt.nl": [16445], "tiswww.case.edu": [2874], "thought.artsci.wustl.edu": [17993], "www.scientific.net": [14385], "www.pikpok.com": [12673], "community.aarp.org": [234], "dydx.io": [4819], "wemineltc.com": [18200], "rpmfind.net": [14004], "www.awstrust.com": [376], "skreened.com": [14918], "obsoleet.org": [11707], "card.jd.com": [8423], "www.oz-affiliate.com": [12194], "dish.stanford.edu": [15383], "chbtc.com": [3036], "financement.m6r.fr": [9699], "bbr-wiki.slac.stanford.edu": [15383], "www.move.va.gov": [17019], "webjet.co.nz": [18124], "music.qq.com": [13285], "m.kennedy-center.org": [19335], "www.awards.acs.org": [929], "maps.salford.gov.uk": [19562], "biotech.inbre.alaska.edu": [17235], "*.sony.co.uk": [15144], "cemetech.net": [2933], "land.secondlife.com": [14462], "*.csupomona.edu": [2748], "www.transcend.org": [16663], "logovut.ro.vutbr.cz": [17522], "besmith.com": [1588], "subrosa.io": [15564], "www.fsdata.se": [5605], "live.mayfirst.org": [10100], "*.ucalgary.ca": [16943], "*.glad.org": [6339], "www.mobilecore.com": [10496], "dashboard.pingxx.com": [12690], "portal.velleman.be": [17596], "padlister.com": [12322], "corporate.sky.com": [14924], "www.guitar.co.uk": [10277], "my.jh.edu": [8435], "aktion.netcologne.de": [11188], "community.alumni.harvard.edu": [7219], "*.jumio.com": [8672], "mit.tdc.dk": [15796], "download.elastic.co": [5142], "ccdcoe.org": [2545], "remoteadvisor.apple.com": [1120], "*.notebooksbilliger.de": [11523], "angola3.org": [1017], "freescale.com": [6183], "blot.im": [2124], "www.freelanguage.org": [6142], "sanitarium.se": [14285], "taojinbi.taobao.com": [15952], "connect.apple.com": [1120], "primegrid.com": [13059], "get.asp.net": [353], "distilleryimage2.instagram.com": [8182], "upload.yubico.com": [18745], "airport-store.osu.edu": [11760], "bruteforce.gr": [2379], "libanywhere.com": [9304], "blog.tapatalk.com": [15955], "ntmx.de": [11555], "referral.wustl.edu": [17993], "wasc.stanford.edu": [15383], "coxds.com": [3738], "www.microcorruption.com": [10355], "*.stpete.usf.edu": [17275], "bugzilla.fsl.cs.sunysb.edu": [15480], "mikel.olasagasti.info": [10386], "webmail.websupport.sk": [18160], "blog.torrentbit.net": [16585], "jnet.jesus.cam.ac.uk": [17243], "secure.tameside.gov.uk": [19660], "kasimp3.co.za": [8804], "www.wimo.com": [18277], "accounts.cloud.databricks.com": [4197], "exeter.ac.uk": [17251], "lists.metalab.at": [10306], "indico.web.cern.ch": [2575], "nagra.com": [11010], "h.online-metrix.net": [11869], "overupc.upc.nl": [17002], "et12.xhcdn.com": [18514], "*.rega.ch": [13726], "c.mfcreative.com": [992], "anonimag.es": [1043], "2ton.com.au": [89], "paste.ngx.cc": [11376], "www.kore.io": [8985], "notblocked.telex.cc": [16097], "www.devprom.ru": [4431], "secure.voyage-prive.it": [17858], "kitd.com": [8728], "www.visaeurope.com": [17764], "*.boalt.com": [1535], "www.source-elements.com": [15168], "tal.de": [15917], "www.bostonreview.net": [2236], "gentoo-ev.org": [6530], "publications.europa.eu": [5421], "www.dedra.cz": [4024], "blogs.constantcontact.com": [3592], "www.corvisacloud.com": [3688], "*.themoneyreferral.com": [3505], "strasbourg.eu": [15506], "kokousalusta.fi": [8958], "*.force.com": [14249], "adl.engineering.osu.edu": [11760], "wiki.diasporafoundation.org": [4451], "bellinghamschools.org": [1767], "fnal.gov": [5754], "www.gpodder.net": [6377], "www.landalgreenparks.com": [18490], "nothing.ch": [11526], "android-arsenal.com": [1004], "static.flashback.org": [5905], "eiopa.europa.eu": [5421], "food.weibo.com": [18186], "one.actionkit.com": [11640], "adv.money.pl": [10547], "secure-dev.techxpress.net": [16022], "gitc.finance.gov.au": [3492], "www.brewtourism.com.ua": [2309], "cache1.bigcartel.com": [1850], "doresearch.stanford.edu": [15383], "phoenix.symantec.com": [15715], "*.ambest.com": [305], "money.yandex.kz": [18652], "esia.gosuslugi.ru": [6852], "*.wholeliving.com": [10032], "libcat.ornl.gov": [11693], "enterprisecioforum.com": [5292], "www.orafarm.com": [11658], "es-us.perryellis.com": [12580], "lists.oasis-open.org": [11606], "www.selfridges.com": [14568], "www.encryptmas.org": [5238], "rdfind.pauldreik.se": [12461], "true-security.nl": [15857], "static-cdn.malwarebytes.org": [9929], "research.bpcrc.osu.edu": [11760], "portal3.wildfire.paloaltonetworks.com": [12349], "img.ifcdn.com": [19285], "shop.sophos.com": [15154], "1984hosting.com": [41], "ticketservice.zdf.de": [19800], "tugg.com": [16821], "mobile.de": [19403], "parents.stanford.edu": [15383], "my.engr.illinois.edu": [17258], "www.facebook.mx": [5623], "stupid.com": [15547], "istar.usc.edu": [17278], "www.un.org": [16983], "www.dudley.gov.uk": [4795], "*.solarcity.com": [15109], "www.zoosk.com": [18906], "www.shop.harman.com": [7208], "paf-ps2.web.cern.ch": [2575], "mail.rambler.su": [13539], "cdn.themis-media.com": [16342], "pixcept.de": [12735], "i.onthe.io": [11890], "lenovo.co.uk": [9251], "www.blinddesign.nl": [2074], "home.ch": [7464], "*.qoo10.com": [13308], "koumbit.net": [8998], "7.*.wdfiles.com": [18294], "wiki.jqueryui.com": [8453], "www.provost.umd.edu": [17263], "*.intelliworkschat.com": [8220], "on.cfr.org": [1920], "yorkshireandhumber.greenparty.org.uk": [6925], "therocktrading.com": [16307], "what-if.xkcd.com": [19786], "dl.ngrok.com": [11375], "acoustid.org": [476], "www.browser.yandex.com": [18651], "ukonlinecentres.com": [16977], "libraries.highland.gov.uk": [19249], "*.mozilla.org": [10657], "www.slo-tech.com": [14966], "tweetriver.com": [10048], "siemens.*": [14770], "www.bmi.bund.de": [2429], "londoncityairport.com": [9580], "es.malwarebytes.org": [9929], "foodandwaterwatch.org": [6002], "*.lu.se": [9107], "www.stanfordhospital.org": [15386], "p.skimresources.com": [14912], "babylink.scot.nhs.uk": [10913], "6connect.com": [185], "nic.swiss": [19126], "www.decisionneurosciencelab.org": [4284], "opentag.qubitproducts.com": [13345], "au.pcpartpicker.com": [12497], "www.shoeshow.com.au": [14713], "fxsitecompat.com": [19205], "typo3.org": [15894], "icln.org": [7686], "outwit.com": [12148], "ffrf.org": [6165], "www.passwordwolf.com": [19481], "www.upsilon.cc": [17399], "wiki.osmfoundation.org": [11672], "clients.cleanenergyexperts.com": [3224], "albert.rit.edu": [13434], "www.vf.com": [3551], "seed.stanford.edu": [15383], "*.gdatasoftware.com": [6293], "orderng02.ikoula.com": [7963], "automx.org": [1430], "www.neocities.org": [11148], "ssl13.ovh.net": [12173], "gasngrills.com": [6465], "enbg.dict.cc": [4455], "careers.microsoft.com": [10364], "*.ds02.swisscom.com": [15698], "svn.o.qcloud.com": [13301], "jira.enaza.ru": [5230], "*.alwaysdata.com": [898], "oscommerce.com": [12117], "control.anchor.com.au": [993], "www.code42.com": [3346], "london.hackspace.org.uk": [9581], "jipiao.jd.com": [8423], "hydraproxy.party": [19270], "robotshop.com": [13928], "www.mare-system.de": [9712], "www.h.switchadhub.com": [15701], "www.mcxnow.com": [10128], "muri.osu.edu": [11760], "propertyinvesting.com": [13160], "www.seurinternacional.com": [14635], "www.seflorida.bbb.org": [1821], "*.torbit.com": [16570], "ga.libreoffice.org": [9311], "jit.si": [8583], "rechten.uvt.nl": [16445], "fb.com": [5698], "www.alternativet.dk": [883], "www.hastexo.com": [7233], "render.githubusercontent.com": [6680], "mail.yaziba.net": [19376], "www.scottishpowerpipeband.com": [14401], "bugzilla.novell.com": [11530], "graphics.pop6.com": [12901], "www.*.anl.gov": [1184], "orb-international.com": [11659], "salsalabs.com": [14254], "dicesoft.net": [4454], "jit.su": [8579], "www.foriswine.com": [6039], "cf1.100r.org": [9], "shop.askthebuilder.com": [1266], "urz.uni-heidelberg.de": [17174], "static.eloqua.com": [5179], "malcontentsgambit.com": [9921], "media.firstclassmagazine.se": [5876], "www2.enthought.com": [5299], "community.ican.org.uk": [19280], "greetingcards.barnardos.org.uk": [18981], "bilddb.gta.arch.ethz.ch": [4975], "download.enlightenment.org": [5280], "disk.yandex.by": [18648], "enit.dict.cc": [4455], "aemi.edu.au": [278], "legal.alibaba.com": [809], "giftedandtalented.com": [6642], "smallnetbuilder.com": [17601], "www.authorea.com": [1409], "www.newsmax.com": [11342], "wiki.piratenpartei.de": [12721], "api.twitch.tv": [16888], "metrica.yandex.kz": [18652], "www.socialtheater.com": [15068], "lane-preprod.stanford.edu": [15383], "thumbnail.myheritageimages.com": [10835], "myitworksevents.com": [10807], "*.i-grasp.com": [7735], "mobioinsider.com": [10504], "myheritageimages.com": [10835], "www.iraaa.org": [7811], "vlebb.leeds.ac.uk": [17318], "www.tahina.priv.at": [13079], "s1.jugger.mail.ru": [9874], "buckeyelink3.osu.edu": [11760], "www.std3.ru": [15445], "oodi.aalto.fi": [390], "mail.newsinc.com": [11335], "docs.oasis-open.org": [11606], "www.allianzfuercybersicherheit.de": [852], "www.randomhouse.biz": [13542], "ideone.com": [7943], "www.korruption.dk": [8991], "ohiounion.osu.edu": [11760], "harrow.io": [7213], "ssllin1.123-secure.com": [22], "www.osp.vt.edu": [17740], "*.upic.me": [17388], "jobs.n-kesteven.gov.uk": [10856], "developers.podio.com": [12846], "www.litle.com": [9470], "www.immunicity.org": [8006], "totalinvestor.co.uk": [16604], "dump.bitcoin.it": [1961], "www.openit.de": [11945], "travelinsiders.americanexpress.com": [935], "app-us7.resrc.it": [13599], "www.websitealive1.com": [18149], "archive.org": [8271], "www.belkin.com": [1762], "ads2.williamhill.com": [18315], "www.openeffect.ca": [19464], "gamelink.com": [6415], "apap.wustl.edu": [17993], "takecontrolbooks.com": [15914], "makeuseof.com": [9907], "www.standagainstspying.com": [15376], "soutien.laquadrature.net": [9113], "www.voiceteachertraining.com": [11300], "vip.sina.com.cn": [14842], "oagcargo.com": [16927], "*.briggs-riley.com": [2317], "stats.traffichaus.com": [16652], "processnet.hu": [4665], "my.kaspersky.com": [8806], "*.decorrespondent.nl": [4245], "yubico.com": [18745], "*.5apps.com": [177], "www.uw.edu": [17077], "unblocksit.es": [17150], "myplace.walthamforest.gov.uk": [17966], "*.netnea.com": [11244], "www.javascriptkicks.com": [8527], "www.factbook.ecc-platform.org": [4879], "schulbuchportal.vgwort.de": [17483], "www.vuze.com": [17879], "juniper.net": [8682], "*.active.com": [497], "www.on.lung.ca": [11888], "nextiva.com": [11369], "files.tested.com": [18244], "reefbuilders.com": [13708], "www.briteobjects.com": [2338], "media7.congstar-media.de": [3576], "login.ec21.com": [4878], "savana.cz": [14308], "images.hertz.com": [7372], "onlinemovies.virginmedia.com": [17737], "illinoislawreview.org": [7966], "openfabrics.org": [11937], "shopmanhattanite.com": [9954], "bezuegerechner.bva.bund.de": [5716], "static.theiconic.com.au": [16292], "p1.raasnet.com": [13655], "*.stowesports.com": [294], "login.sas.com": [14074], "img.zwame.pt": [18925], "cpkids.cp.pt": [3744], "mandrillapp.com": [9946], "issues.openmrs.org": [11953], "kr.calameo.com": [2731], "terpconnect.umd.edu": [17263], "net.educause.edu": [5096], "construx.com": [3593], "*.unblock-us.com": [17149], "wiki.mythtv.org": [10849], "www.obdev.at": [11695], "www.incapsula.com": [8043], "antitheft.drweb.com": [4783], "www.1art.cz": [63], "sciencecircle.stanford.edu": [15383], "www.infragard.net": [8133], "clickfun.com": [3260], "map.virustracker.net": [17759], "christianheilmann.com": [3111], "apps.n-somerset.gov.uk": [10857], "screenshotmachine.com": [14411], "oxfordtoday.ox.ac.uk": [17271], "museum.ceredigion.gov.uk": [2964], "*.robohash.org": [13926], "password.1and1.com": [51], "www.tar-jx.bz": [15959], "bidz.com": [1849], "thm.de": [15811], "help.blackberry.com": [2050], "www.bitmissile.com": [1938], "huntingbears.nl": [7623], "jako-o.*": [8496], "themarshallproject.org": [16297], "haarlemmermeer.nl": [11132], "www.bankid.no": [1643], "socialtyzetracking.com": [15073], "blog.contextweb.com": [3616], "www.mandiant.net": [10179], "ucat.osu.edu": [11760], "genelab-data.ndc.nasa.gov": [10869], "honorcards.heifer.org": [7284], "itaccounts.iu.edu": [8064], "hp.com": [7378], "*.onsecure.gov.au": [11814], "darkreading.com": [4150], "password.1and1.ca": [52], "eddieizzard.com": [5074], "domainbox.com": [4662], "bookings.tmbc.gov.uk": [15827], "mx.tumblr.com": [16826], "www.kbpublisher.com": [8710, 8711], "*.admin.onesite.com": [11646], "cliara.caltech.edu": [2756], "cjdns.info": [3204], "s.yimg.jp": [18685], "www.ifpa.ie": [7724], "www.cxsecurity.com": [3950], "resin.io": [13806], "mojeid.cz": [10536], "ad.xtendmedia.com": [18598], "api.unthem.com": [17373], "nbwn.de": [10877], "www.ncwit.org": [10889], "duba.com": [4789], "firehost.com": [5854], "verisign.com": [17623], "www.unseen.is": [17369], "www.uif.uillinois.edu": [16960], "schools.sheffield.gov.uk": [14694], "alexa.com": [795], "asus.com": [357], "webdev.pdu.edu": [12939], "netguava.com": [11234], "www.johnrennie.net": [18428], "static1.uk.businessinsider.com": [2454], "artsy.net": [1235], "www.nic.es": [4673], "shop.spiegel.de": [15272], "frugalware-art.org": [19461, 19462], "payments.rbwm.gov.uk": [19539], "www.anunciou.com": [1074, 1075], "ebanking2.danskebank.dk": [4145], "www.xiph.org": [18575], "www.blocked.org.uk": [2092], "secure.officeleaks.com": [11746], "infousa.com": [8110], "cdnb.kaltura.com": [8775], "insure-systems.co.uk": [4442], "forms.torbay.gov.uk": [16569], "www.scripts.mit.edu": [9749], "assets.guim.co.uk": [7014], "mediawatch.dk": [10166], "code.mythtv.org": [10849], "365tickets.co.uk": [113], "video.yandex.com.tr": [18649], "www.youtube.de": [18709], "disk.ya.ru": [18626], "globe.thecthulhu.com": [16334], "digitalmedia.oracle.com": [12082], "*.https.cdn.softlayer.net": [15094], "cert.fi": [2581], "*.2gis.ru": [85], "ojrq.net": [11768], "www3.sans.org": [14072], "assets.simplifydigital.co.uk": [19593], "statics1.beauteprivee.fr": [1739], "client-api.itunes.apple.com": [1120], "www.huzs.net": [7635], "join.me": [8616], "muusikoiden.net": [10734], "auth.edinburgh.gov.uk": [5084], "go.osu.edu": [11760], "mktg.clicktools.com": [3264], "myview.wirral.gov.uk": [18371], "thunderbird-mail.de": [16404], "waffle.io": [17944], "go.teamviewer.com": [16004], "*.malwaretracker.com": [9928], "content.incapsula.com": [8043], "livestat.derstandard.at": [19111], "savethelink.org": [14313], "lists.osadl.org": [11664], "dermpath.wustl.edu": [17993], "www.bigjocker.com": [1863], "files.gpg4win.org": [6875], "pickaweb.co.uk": [12660], "purdue.edu": [13235], "www.beckpc.ch": [1744], "wiki.mythic-beasts.com": [10850], "www.scriptobservatory.org": [14419], "br.support.tomtom.com": [16540], "wikia.com": [18292], "harrow.greenparty.org.uk": [6925], "www.paraduxmedia.com": [12387], "www.force11.org": [5586], "cdn.evbstatic.com": [5436], "mypoints.com": [10775], "ad.adriver.ru": [534], "insinuator.net": [8173], "www.bitso.com": [2018], "res.wx.qq.com": [13285], "www.leadwerks.com": [9202], "wa.ui-portal.de": [16952], "*.democratandchronicle.com": [4356], "www.uni-hamburg.de": [16951], "www.asiabsdcon.org": [1258], "cas.fit.edu": [5942], "bugs.gpodder.org": [6377], "fau.org": [5552], "eam-gmbh.com": [4866], "simquadrat.de": [14836], "berniesanders.com": [1796], "powys.gov.uk": [19513], "www.bikebiz.com": [8227], "www.futurelearn.com": [6282], "developer.3taps.com": [138], "ed2go.com": [2937], "fun.alipay.com": [816], "www.bit.ly": [2002], "ccp.osu.edu": [11760], "*.np-edv.at": [11536], "*.webmdhealth.com": [18071], "www.outflux.net": [12152], "www.whosampled.com": [18259], "developer.blender.org": [2067], "www.korelogic.com": [8986], "blogs-stage.oracle.com": [12082], "www.rac.co.uk": [13395], "blog.simplyhired.com": [14830], "breakoutband.com": [2299], "apps1.lbhf.gov.uk": [9064], "democrats.intelligence.house.gov": [17026], "lieblingskaffees.tchibo.de": [15985], "purduealumni.org": [13233], "apps.oseems.com": [12120], "www.networkredux.com": [11261], "sailthru.com": [14243], "oralb.com": [13121], "didier.mayfirst.org": [10099], "page.1688.com": [36], "www.fangamer.net": [5653], "www.ipredator.se": [7804], "*.dydx.io": [4819], "www.fcc.gov": [5709], "trac.videolan.org": [17688], "xhamster.com": [18515], "ad.netcommunities.com": [11174], "library.ingenico.com": [8138], "www.ercpe.de": [5338], "djrc.portal.dowjones.com": [11321], "en.avm.de": [1453], "mobil.dhl.de": [4034], "kudelskisecurity.com": [9031], "facultysenate.wustl.edu": [17993], "ads.eurogamer.net": [5415], "www.framasphere.org": [6096], "www.builditbreakit.org": [2412], "netbeat.de": [11217], "orgsync.com": [12102], "status.linaro.org": [9361], "secureupload.eu": [14497], "img4.leboncoin.fr": [19351], "app.protectnetwork.org": [13167], "www.pixeline.be": [12740], "www.frozentux.net": [6233], "www.berryreview.com": [1798], "southcambs.greenparty.org.uk": [6925], "www.workaround.org": [18440], "www.norx.io": [11510], "superherostuff.com": [15631], "hotfile.com": [7556], "www.rcitravelstore.co.uk": [18490], "*.precharge.com": [13016], "rapidssl.com": [13557], "ftp.darmstadt.ccc.de": [2538], "*.ugc.bazaarvoice.com": [1708], "my.curated.co": [3924], "gw2.alicdn.com": [805], "trader.tms.pl": [19686], "www.xetum.com": [18568], "www.hee.nhs.uk": [10913], "www.wordfence.com": [18433], "www.cachebrowser.info": [2707], "static.bullionstar.com": [2421], "erevenues.cheshireeast.gov.uk": [3067], "blockr.io": [2097], "www.uprod.biz": [17011], "foursquare.com": [6082], "www.singularityhub.com": [14849], "*.grdc.com.au": [6886], "npm.im": [11538], "openlearn.open.ac.uk": [11986], "digital.kent.gov.uk": [8851], "participation.usa.gov": [17029], "techpinions.com": [16048], "www.blimpme.com": [2073], "www.wwf.ch": [19768], "www.mygsb.stanford.edu": [15383], "kissmetrics.com": [8727], "trk.kissmetrics.com": [8727], "bioconductor.org": [1905], "robinsonpool.bedford.gov.uk": [18986], "www.dpea.scotland.gov.uk": [19575], "aoquadrado.catracalivre.com.br": [2908], "digitalcourage.de": [4503], "*.box-look.org": [19462], "*.mozilla.net": [10656], "www.hr.uic.edu": [17231], "pubchem.ncbi.nlm.nih.gov": [11052], "*.raeng.org.uk": [13991], "libdrc.org": [9293], "enda.dict.cc": [4455], "www.dfa.cornell.edu": [3676], "*.homedepot.com": [7470], "i1.gallery.technet.microsoft.com": [10364], "www.jackpotmillions.com": [8483], "www.swm-infrastruktur.de": [14208], "bookstore.ucsd.edu": [16939], "sisu.ut.ee": [17069], "securemedia.compete.com": [3519], "emptywheel.net": [5221], "social.expression.microsoft.com": [10364], "gymglish.com.br": [7037, 7038], "counter.mit.edu": [9747], "ifpa.ie": [7724], "dr.com.tr": [4077], "stats.dotsec.com": [4696], "images.theappendix.net": [16243], "www.youtube.co.kr": [18709], "www.avadomains.com": [1435], "mobile.portalpilot.equinix.com": [5334], "medicinescomplete.com": [10193], "rallydev.com": [13537], "draws.random.org": [13545], "a4.sphotos.ak.fbcdn.net": [5700], "www.bitbucket.org": [1926], "www.neck2neck.com": [11129], "neustarlocaleze.biz": [11283], "www.fhi.se": [5568], "m.newstral.com": [11347], "www.allclearid.com": [827], "fastclick.com": [17541], "www.coinjabber.com": [3396], "live.bitmissile.com": [1939], "ncric.org": [10885], "armory.monster-wow.com": [10566], "*.images-amazon.com": [915], "help.esellerate.net": [5357], "*.adseekmedia.com": [628], "www.medctr.ohio-state.edu": [11761], "bitcoin.co.th": [1963], "dashboard.open-mesh.com": [11908], "*.amahi.org": [906], "asset9.wwf.ch": [19768], "*.admeld.com": [607], "publishing-technology.de": [7114], "backoffice.vend-o.com": [17606], "boersenspiel.faz.net": [5554], "cdn0.iconfinder.com": [7921], "trash-mail.com": [16686], "www.unistra.fr": [17177], "www.verizonenterprise.com": [17627], "service.bitsighttech.com": [1947], "www.inform.umd.edu": [17263], "www.preney.ca": [13029], "2020mobile.es": [70], "www.northkoreatech.org": [11496], "granitephone.com": [14785], "mijnzakelijk.ing.nl": [7769], "bg.libreoffice.org": [9311], "purecine.fr": [13243], "noao.edu": [11053], "onlinepayment.com.my": [9775], "anubis.iseclab.org": [8365], "insights.gravity.com": [6901], "hass.de": [7232], "www.imgbox.com": [7996], "www.lonesurvivor.co.uk": [9585], "bth.se": [1572], "images.c-spanvideo.org": [2495], "hbonow.com": [19242], "static.infnx.com": [8088], "www.bmclogostore.com": [1528], "www.localbitcoins.com": [9540], "mac.github.com": [6680], "en-no.dict.cc": [4455], "*.bcj.ch": [19333], "www.glenscott.net": [6706], "*.sxnarod.com": [14640], "fusionhelp-stage.oracle.com": [12082], "www.etherpad.fr": [19162], "user.web.cern.ch": [2575], "acyba.com": [510], "hosokawa-alpine.com": [7499], "www.aivd.nl": [292], "secure.dotplex.de": [4703], "www.eftplus.asia": [4909], "quickgit.kde.org": [8718], "access.hinckley-bosworth.gov.uk": [7412], "www.discovermeteor.com": [4551], "*.trachtenshop24.de": [16629], "alumnicas.princeton.edu": [13064], "scai.fraunhofer.de": [6112], "www.royalnavy.mod.uk": [13995], "img01.bizrate-images.com": [2033], "www.remixdepolitiek.nl": [12708], "verifiedvotingfoundation.org": [17620], "www.amnesty.org.uk": [971], "partners.datamotion.com": [19102], "googlewatchblog.de": [6849], "*.collab.net": [3417], "datamonitorhealthcare.com": [4207], "www.mkateb.com": [10474], "bcv.ch": [19333], "www.webmaker.org": [10663], "cdnsecureservep1.amexserve-static.com": [903], "s3.percona.com": [12557], "maps.yandex.ua": [18656], "developer.palm.com": [12344], "store1.esellerate.net": [5357], "*.internetsuccess.at": [8289], "acluofnc.org": [251], "*.csdb.dk": [2668], "www.vavinet.vutbr.cz": [17522], "www.dvdfab.com": [4088], "*.web-stat.net": [18043], "www.teksyndicate.com": [16065], "calgunsfoundation.org": [2739], "schneier.com": [14360], "content.foto.mail.ru": [9874], "camo.githubusercontent.com": [6680], "profile.create.msdn.com": [9788], "1.www.s81c.com": [19561], "www.paymium.com": [12480], "gargoyle-router.com": [19207], "scistore.cambridgesoft.com": [2769], "www.tsbmag.com": [15859], "crawley.firmstep.com": [19183], "asset.zcache.com": [18805], "sss.ias.edu": [7669], "www.easyhomecontrol.at": [18284], "www.vbi.vt.edu": [17740], "cdn.gotraffic.net": [6857], "linguee.de": [19366], "deis.dict.cc": [4455], "void.gr": [6915], "fineproxy.org": [5846], "gencat.cat": [6524], "ba.yandex.by": [18648], "tools.swisscom.ch": [15698], "forum.openvz.org": [11990], "bi-fusioncrm.oracle.com": [12082], "gr.norton.com": [11505], "stats.feedsportal.com": [5740], "billpay.de": [1877], "yammer.com": [18647], "dephormation.org.uk": [4372], "www.join.acs.org": [929], "flybuys.com.au": [5961], "www.distil.it": [4572], "*.uh.edu": [17315], "www.challenge.gov": [2985], "www.liqd.net": [9442], "thumbs.motherlessmedia.com": [10608], "symlms.symantec.com": [15715], "feature.astaro.com": [1298], "cdn.realdebrid.xtnetwork.fr": [18600], "www.hands.com": [7190], "www.iberiabank.com": [7899], "curbed.cc": [1920], "subscribe.pcspublink.com": [12231], "globalsign.*": [6718], "freeapi.domaintools.com": [4660], "www.docketalarm.com": [4618], "biology4.wustl.edu": [17993], "helpouts.google.com": [6834], "support.photobucket.com": [18823], "*.nationalcapital.gov.au": [11066], "scordit.com": [2292], "about.downthemall.net": [4722], "rc.rlcdn.com": [13435], "faxcritics.com": [5694], "www.cathaypacific.com": [2904], "fotocommunity.de": [6076], "go.web.cern.ch": [2575], "solarpowerrocks.com": [15107], "*.mm.bing.net": [1894], "trac.openstreetmap.fr": [12045], "www.jaymart.co.th": [8535], "cdn2.static.xtube.com": [18602], "*.lockbox.com": [9543], "*.ketchum.com": [8860], "track.stubhub.com": [15534], "cdn4.iconfinder.com": [7921], "login.aau.dk": [389], "developers.soundcloud.com": [15161], "sanalmarket.com.tr": [14275], "value-domain.com": [17539], "secure.mashery.com": [10046], "partner.redhat.com": [13675], "tcf.org": [15790], "threestore.three.co.uk": [16397], "my.symantec.com": [15715], "community.gns3.com": [6355], "mobile.onlinesbi.com": [11873], "ccianet.org": [2549], "beender.co": [1750], "techtoolsforactivism.org": [16024], "entr.dict.cc": [4455], "shannonhealth.com": [14659], "bikeability.org.uk": [18998], "www.stylist.co.uk": [15552], "tor.com": [9831], "www.stemformatics.org": [15466], "www.printmojo.com": [13067], "xiscosoft.es": [18576], "www.thinkusc.com": [17277], "www.deutsche-rentenversicherung-bund.de": [4407], "*.accountservergroup.com": [463], "bill.relevate.ru": [13753], "www.geekevents.org": [6501], "a.intentmedia.net": [8228], "p.ya.ru": [18626], "www.compaign.ox.ac.uk": [17271], "www.arangodb.com": [1151], "www.nodejitsu.com": [11453], "rollapp.com": [13957], "10gen.com": [14], "www.blinksale.com": [2077], "www.fastmail.com": [5688], "visitthecapitol.gov": [17777], "www.santoku-linux.com": [14293], "bill.aol.com": [321], "safety-security.uchicago.edu": [17246], "www.bitvc.com": [1949], "www.andrewmunsell.com": [1002], "auth.enfield.gov.uk": [5258], "liboil.freedesktop.org": [6126], "squirrelmail.ouvaton.coop": [12155], "alloresto.fr": [19328], "desq.dict.cc": [4455], "www.vindicosuite.com": [17721], "sfm-offshore.com": [14109], "parents.usc.edu": [17278], "oascentral.sciencemag.org": [14382], "files.quizsnack.com": [13373], "theverge.com": [16213], "evolve.elsevier.com": [5185], "wfncnews.com": [17903], "login.insa-lyon.fr": [7771], "www.barna.org": [1673], "support.lucidpress.com": [9646], "www.intelligence.org": [8215], "www.esat.kuleuven.be": [8816, 9034], "www.skillsdevelopmentscotland.co.uk": [19597], "crocko.com": [3806], "www.addbooks.se": [570], "internet-banking.dbs.com.tw": [4010], "biz.waze.com": [18014], "www.chroniclesofgeorge.com": [16259], "rewards.comparethemarket.com": [3511], "aziende.tiscali.it": [16498], "asset-8.soupcdn.com": [15167], "broadbandconvergent.com": [2349], "alldebrid.fr": [831], "www.wilhelm-gym.net": [18310], "calnet.berkeley.edu": [17240], "www.rohieb.name": [13950], "assembly.com": [1281], "*.boingo.com": [2182], "stubhub.com": [15534], "git.enlightenment.org": [5280], "b8.yahoo.co.jp": [18640], "lincolnshire.gov.uk": [9364], "kryton.mysql.cesky-hosting.cz": [19051], "odoo.com": [11727], "img.ui-portal.de": [16952], "jobs.priorygroup.com": [13074], "slack.com": [14942], "agenda.athaliasoft.fr": [1312], "wolframalpha.com": [18397], "www.nuigalway.ie": [11064], "*.opendesktop.org": [19462], "online-mahnantrag.de": [11865], "aspplayground.net": [355], "wpvulndb.com": [17926], "static.businessinsider.com": [2454], "www.spaceweatherphone.com": [15213], "wan.jd.com": [8423], "www.1shoppingcart.com": [46], "html-differences.whatwg.org": [17904], "astrobotic.com": [1303], "manager.presspage.com": [13033], "secure.alamy.com": [775], "www.word.camera": [19763], "forum.pfsense.org": [12607], "assets.tumblr.com": [16826], "filin.mail.ru": [9874], "www.lso.com": [9101], "barclayscorporate.com": [1663], "stanfordvideo.stanford.edu": [15384], "www.savethechildren.org.uk": [14314], "clockers.at": [12164], "www.b2bmediaportal.com": [1486], "aka.highways.gov.uk": [19250], "java.com": [8526], "linuxhostsupport.com": [9429], "www.mynewflag.com": [11305], "tlcenter.wustl.edu": [17993], "www.chesterfieldroyal.nhs.uk": [10913], "tap-cdn.rubiconproject.com": [14014], "www.cloudinary.com": [3307], "oca.ucsc.edu": [17305], "trial.turbine.com": [16835], "airtop-pc.com": [756], "inventhelp.com": [8313], "images2.dailykos.com": [4116], "user.ameba.jp": [926], "gazellegames.net": [19209], "webmailer.1und1.de": [68], "arsenal.rubiconproject.com": [14014], "www.norden.org": [11472], "s4.ft-static.com": [19201], "*.express.co.uk": [4110], "registration.warnerbros.com": [17982], "www.euro-ix.net": [5401], "heise.de": [7288], "www.cloudpiercer.org": [3292], "www.ifex.org": [7723], "osadl.org": [11664], "webanalytics.acs.org": [929], "ngvpn32.nvidia.com": [10985], "www.covad.net": [3726], "hkedcity.net": [7073], "g1-bre.pagekite.net": [12330], "icefilms.info": [7911], "rs.broadcastjobs.co.uk": [2353], "www.aesload.de": [692], "meetings.ripe.net": [13895], "social.anz.com": [315], "sourcefire.com": [15181], "www.fusion-lifestyle.com": [6274], "ctc.engineering.osu.edu": [11760], "new.teamweek.com": [16005], "www.securetrust.com": [14512], "*.selectel.ru": [14565], "xdebug.org": [18552], "store.microsoft.com": [10364], "raw.github.com": [6680], "www.cadence.com": [2713], "http2.akamai.com": [761], "subscribe.inyt.com": [7772], "*.foto.mail.ru": [9874], "www.cooldestinations.net": [3641], "ciscolive.com": [3165], "airtime-demo.sourcefabric.org": [15180], "fa.libreoffice.org": [9311], "*.pivotallabs.com": [12731], "mpiweb.org": [9781], "headingley.greenparty.org.uk": [6925], "*.tufts.edu": [16818], "uptolike.com": [17382], "www.sueddeutsche-tickets.de": [15579], "*.corecommerce.com": [3662], "blogs.site24x7.com": [14861], "*.cinemanow.com": [3147], "exchange.nottingham.ac.uk": [11528], "dimauro.osu.edu": [11760], "static.tacdn.com": [19655], "smfta.com": [14137], "coinmate.io": [3398], "www.opencsw.org": [11926], "training.witness.org": [18382], "sact.atdmt.com": [10360], "uio.no": [17330], "crunchbase.com": [3833], "defensetravel.dod.mil": [17028], "tsbohemia.cz": [19702], "mason.gmu.edu": [6544], "nordichosting.com": [11476], "cdn03.gitter.im": [6684], "likeyed.com": [9351], "parapoupar.com": [12383], "images.google.com": [6840], "www.yorkfitness.com": [18696], "www.nextgen-gallery.com": [11367], "wp.colliertech.org": [3432], "identity.paloaltonetworks.com": [12349], "elt.oup.com": [12192], "*.usenetserver.com": [17428], "*.gammae.com": [6449], "shmoop.com": [14710], "www.nerfnow.com": [11161], "camden.gov.uk": [2772], "www.srm.de": [14168], "mp3-juices.com": [10668], "es.account.my.t-mobile.com": [15772], "press.post-gazette.com": [12948], "etegro.com": [4977], "picasaweb.google.*": [6837], "lonesysadmin.net": [9586], "org.mangolanguages.com": [9952], "*.bbci.co.uk": [1499], "kub.nl": [16445], "absolvent.vutbr.cz": [17522], "zh-cn.libreoffice.org": [9311], "netviewer.com": [11258], "ibmsmarteritservices.sf.net": [15174], "a.gfx.ms": [6624], "www.unfpa.org": [16988], "*.avectra.com": [1447], "crowd.wpm.neustar.biz": [11280], "en.exmail.qq.com": [13285], "www.metro.co.uk": [10320], "svn.fedorahosted.org": [5727], "blog.evenmere.org": [5438], "www2.fraedom.com": [19193], "edit.uaa.alaska.edu": [17233], "lcsa.gateshead.gov.uk": [6467], "info.newrepublic.com": [11308], "www.land-der-ideen.de": [9138], "railsbox.io": [13529], "www.onesolution.cz": [11647], "support.ikoula.com": [7963], "www.verisign.de": [17623], "*.harakah.net.my": [7202], "forum.libcinder.org": [3139], "www.foxydeal.de": [6089], "custodianvaults.com.au": [3937], "thankyoucard.citi.com": [3168], "joshbegley.com": [8634], "intra.cs.ut.ee": [17069], "www.kernl.us": [8859], "www.rhizome.org": [13863], "transparency.org": [16679], "my.upc.cz": [17000], "pin.ed.gov": [4889], "addy.co": [579], "*.klm.com": [8736], "files.5min.com": [178], "publicidees.com": [13204], "*.computeruniverse.net": [3541], "rbkc.gov.uk": [19538], "smartlingsource.com": [14998], "i.dell.com": [4335], "bo.xm.com": [18520], "www.sudo.ws": [6897], "static.ypautos.com": [15614], "specimens.cancer.gov": [2805], "*.floridatoday.com": [5943], "images.agoramedia.com": [5453], "*.eastsussex1space.co.uk": [19143], "www.imakethingswork.com": [7890], "appnexus.com": [1109], "www.privacyisawesome.com": [5783], "*.audiko.net": [1357], "ies.ikoula.com": [7963], "www.bit2c.co.il": [1921], "www.stiftung.htwk-leipzig.de": [7114], "getconnected.gmu.edu": [6544], "pls.webtype.com": [18095], "www.centralcomputers.com": [2954], "www.elsevier.ca": [5184], "*.traction-digital.com": [16633], "capec.mitre.org": [10459], "img08.rl0.ru": [13914], "www.sudoroom.org": [15580], "*.utwente.nl": [17072], "products.office.com": [11743], "www.isomorphic.com": [8374], "teletrust.de": [19668], "scambs.gov.uk": [19566], "planetdiscover.com": [12765], "store.openhost.net.nz": [12036], "o.ju.taobao.com": [15952], "origin-www.blackberry.com": [2050], "heatmap.me": [7279], "my.codecoon.com": [3364], "www.typotheque.com": [16917], "surplus.osu.edu": [11760], "www.kitd.com": [8728], "www.gradschool.umd.edu": [17263], "spotware.com": [15298], "tinychat.com": [16480], "*.colorado.edu": [17247], "www.usvisa-info.com": [2665], "nycla.org": [10989], "www.pushpopcorn.com": [13250], "franchiseradioshack.cloudapp.net": [13515], "jappix.org": [8517], "www.cert.se": [2582], "stats.silentcircle.com": [14786], "faancollegenetwork.org": [5549], "www.mutualart.com": [10732], "www.inductionsolutions.com": [8074], "ads.horyzon-media.com": [7498], "www.hvb.de": [7649], "audits.uillinois.edu": [16960], "wordstat.yandex.com.ua": [18650], "secure.jhu.edu": [16296], "hg.prosody.im": [13161], "eplus-gruppe.de": [4845], "www.robinsonpool.bedford.gov.uk": [18986], "library.leeds.ac.uk": [17318], "cubics.com": [3910], "nro.net": [11577], "www.gdata.co.mx": [6293], "jiagu.qcloud.com": [13301], "xenvps.com": [18559], "jsr311.java.net": [8525], "wiki.typo3.org": [15894], "trac.osgeo.org": [11669], "fotki.yandex.kz": [18652], "jobs.southglos.gov.uk": [15189], "amsciadmin.eresources.com": [946], "ilo.org": [7752], "democratandchronicle.com": [4356], "states.secular.org": [14472], "www.compulab.co.il": [3530], "gomoxie.com": [10645], "mail.zoho.com": [18884], "fcw.com": [5560], "www.upsploit.com": [17381], "oneonline.bradford.gov.uk": [2264], "assemble.me": [1279], "standeyo.com": [15374], "*.extreme-dm.com": [5526], "cscportal.org.uk": [19095], "www.torguard.net": [16567], "cms.iprsoftware.com": [7796], "www.gosquared.com": [6784], "voscast.com": [17845], "unmultimedia.org": [16996], "proxyshard.uk": [19524], "www.bios-mods.com": [1907], "aesnet.org": [930], "members.efa.org.au": [5152], "support.iopus.com": [7784], "*.patechmasters.com": [12623], "federalregister.gov": [5712], "ssl12.ovh.net": [12173], "ladesk.com": [9484], "www.oo-software.com": [11893], "foorumi.ovh-hosting.fi": [12173], "www.ieee-elearning.org": [7718], "taxi.yandex.com": [18651], "selby.greenparty.org.uk": [6925], "cdn.proxer.me": [13176], "www.empirehost.me": [19156], "*.datacell.com": [4177], "www.career.ru": [2840], "eventbrite.co.uk": [5441], "slate.me": [1920], "www.glyphicons.com": [6755], "www.harlandforms.com": [7207], "support.crypteron.com": [3850], "www.pgp.com": [12245], "www.domain.de": [4649], "wof-cluster.desy.de": [4399], "www.accellion.com": [441], "script-o-rama.com": [4757], "bankofamerica.com": [1648], "developers.xsolla.com": [18593], "www.ypassociation.org": [18668], "www.research.brown.edu": [2367], "ghosteryenterprise.com": [6630], "cobaltmania.com": [3341], "asia.elsevierhealth.com": [5187], "files.ezaxess.com": [5537], "steiermark.neos.eu": [10899], "*.jawbone.com": [8533], "*.sociomantic.com": [15079], "jizz.ppy.sh": [13006], "*.businesscatalyst.com": [2457], "ripe68.ripe.net": [13895], "update.gitter.im": [6684], "www.nyi.net": [10993], "client.wedos.com": [17901], "static-resource.np.community.playstation.net": [12794], "static.frostwire.com": [6229], "numato.com": [11576], "www.calligra.org": [2754], "www.brunel.ac.uk": [19021], "politico.com": [12873], "www.jobbik.hu": [8595], "api.snip2code.com": [15036], "gd4.alicdn.com": [805], "geolistening.com": [6540], "webmail.timeweb.ru": [16457], "capnproto.org": [2822], "alumni.buffalostate.edu": [2400], "shop.highsoft.com": [7405], "www.providercentral.org.uk": [19523], "haber.yandex.com": [18651], "nrk.no": [11546], "*.acm.org": [262], "video.linux.com": [9403], "www.xtremepapers.com": [18601], "www.bmf-steuerrechner.de": [1530], "www.fastwebmedia.com": [5671], "amnesty.de": [960], "movzeed.com": [18666], "lith.liu.se": [9084], "www.aldi.us": [299], "status.ghost.org": [6628], "helpdesk.infobox.ru": [8107], "ultimate-guitar.com": [19711], "www.metallica.com": [10307], "paypal.com": [12467], "www.101domain.com": [12], "misco.co.uk": [10452], "forum.siteground.com": [14865], "www.canarywatch.org": [2804], "blogs.sans.org": [14072], "ease.edp.pt": [4896], "dev.research.vt.edu": [17740], "bo-staging.getjaco.com": [6607], "modernlivingmedia.com": [17540], "ncei.noaa.gov": [11083], "mport.ua": [9785], "fhi.se": [5568], "e5.xhamsterpremiumpass.com": [18516], "*.e-fibank.bg": [5769], "three.ie": [16397], "www.coloradocollege.edu": [3442], "www.familie.plus.aok.de": [317], "eucalyptus.com": [5398], "www.hs-karlsruhe.de": [7582], "mxlogic.com": [10113], "members.vpnreactor.com": [17503], "www.activatejavascript.org": [494], "united-internet.de": [17205], "downloads.microsoft.com": [10364], "tiny.cc": [16478], "redmondmag.com": [13698], "www.seotrainingtoronto.com": [14103], "s.hofer.at": [299], "www.kinja.com": [8906], "player.qbrick.com": [13300], "kd.htw-berlin.de": [7112], "www.btc.to": [2380], "lilux.lu": [9284], "revenuesbenefits.westminster.gov.uk": [18220], "www.dnsdynamic.org": [4069], "my.pingdom.com": [12687], "stonewallcymru.org.uk": [19630], "m.pizza.de": [12747], "assets.strikingly.com": [15523], "socdwar.mail.ru": [9874], "verisign.com.hk": [17623], "fraudlabs.com": [6111], "livenation.co.*": [9481], "www.getcloak.com": [6567], "*.adhands.ru": [525], "hu.norton.com": [11505], "seniors.berkeley.edu": [17240], "www.wiredsafety.org": [18365], "cloudfront-assets.reason.com": [13635], "www.hertzequipsales.com": [7372], "sky.com": [14924], "www.siteparc.fr": [14884], "cdn.thegloss.com": [859], "yourmechanic.com": [18724], "www.sabayon.org": [14214], "*.spreadshirt.com.au": [15300], "leetmedia.com": [9224], "coreyabramson.com": [3673], "spontex.org": [15287], "biomedcentral.com": [1900], "tap2-cdn.rubiconproject.com": [14014], "*.swissreg.ch": [15696], "help.x-cart.com": [18494], "*.void.gr": [6915], "www.hotelplan.ch": [19262], "employers.indeed.com": [8051], "account.sourcefabric.com": [15179], "dn-walletla.qbox.me": [13299], "seferler.yandex.com.tr": [18649], "gatewaysb.com": [6468], "witham-braintree.greenparty.org.uk": [6925], "idaas.iam.ibm.com": [7675], "www.ilxgroup.com": [7753], "eipocimb.com": [2606], "www.outcampaign.org": [12149], "chat.stackoverflow.com": [15359], "travelocity.com": [16698], "www.vocalarticles.com": [11300], "d4designstudios.com": [3999], "sols.uow.edu.au": [17350], "eiseverywhere.com": [5389], "nytexaminer.com": [10999], "sample-solid.readme.io": [13608], "classic.storminternet.co.uk": [15497], "orwall.org": [12079], "www.siteorigin.com": [14868], "convox.com": [3632], "www.filetrip.net": [5795], "www.arts.leeds.ac.uk": [17318], "discoverypark.bnl.gov": [19009], "digikey.com": [4469], "*.mailinator.com": [9887], "www.al-akhbar.com": [772], "downloads.askmonty.org": [1262], "wf.cdn.gmru.net": [6349], "gosoapbox.com": [6783], "flix123.com": [5930], "www.bart.gov": [1681], "coincheck.jp": [3403], "dev.fitbit.com": [5887], "content.digicert.com": [4473], "adr.adriver.ru": [534], "anonymizer.com": [1048], "www.victorops.com": [17671], "mpp.emea.mxptint.net": [10741], "topfox.co.uk": [16561], "www.lgscout.com": [9600], "www.info.apple.com": [1119], "www.ic3.gov": [17022], "*.champssports.com": [2991], "youtube.qa": [18709], "www.hush.com": [7632], "*.pixelx.de": [12736], "android-git.linaro.org": [9361], "www.musalbas.com": [10707], "js.dmtry.com": [4604], "dianomi.com": [4444], "gemnasium.com": [6519], "www.kirei.se": [8914], "nova.mediatemple.net": [10165], "cdn.static.zdbb.net": [18759], "*.nss.udel.edu": [17249], "www.skipscreen.com": [15203], "secure.x-cart.com": [18494], "www.nottingham.ac.uk": [11528], "gamespot.com": [6426], "bayareaamusements.com": [1701], "ecigpros.com": [4884], "familyinfoservice.westsussex.gov.uk": [18211], "retail.onlinesbi.com": [11873], "content.outbrain.com": [12150], "*.www.gigaserver.cz": [6654], "sbms.bnl.gov": [19009], "www.pacebus.com": [12311], "*.bestbuy.com": [1801], "sites-auth.hubspot.com": [7594], "www.alljoyn.org": [832], "forumwizard.net": [6064], "myfreeschoolmeals.firmstep.com": [19183], "akademy.kde.org": [8718], "subscribe.condenastdigital.com": [3554], "clck.yandex.com.tr": [18649], "chrisanthemums.com": [3107], "virt-manager.org": [17743], "www.bundesnetzagentur.de": [2431], "www.mediamarkt.se": [10175], "epson.com": [5330], "www.studentaid.ed.gov": [4889], "*.memecdn.com": [10249], "security.stanford.edu": [15383], "www.naiin.com": [11012], "datasheetcatalog.com": [4214], "nihrecord.nih.gov": [11052], "www.billpay.de": [1877], "networkedblogs.com": [11272], "pq-direct.revsci.net": [13840], "www.nppa.org": [11054], "afd.calpoly.edu": [2747], "freeswitch.org": [6130], "rates.psc.gov": [19525], "www.legaldirectories.com": [9229], "wumatrix.wusm.wustl.edu": [17993], "www.exaccess.ru": [12786], "webmon.com": [18134], "www.defcon.ru": [4304], "ipv6.tunnelbroker.net": [16834], "autodiscover.merton.gov.uk": [10287], "*.digi.insightmgr.com": [4507], "static1.startnext.com": [15412], "hacklab.to": [7133], "m.mobot.net": [7549], "cssiw.wales.gov.uk": [17957], "assets.fit.edu": [5942], "www.cs.cornell.edu": [3676], "blog.osmfoundation.org": [11672], "cgfang.taobao.com": [15952], "wowjs.zamimg.com": [18782], "*.www.kidsfootlocker.com": [8884], "www.etouches.com": [5389], "www.instantssl.com": [8185], "svn.verisignlabs.com": [17624], "evo.com": [5462], "imasdk.googleapis.com": [6839], "images.yandex.kz": [18652], "cdn3.xvideosx.tv": [18537], "stats.zaehlwerk.net": [18778], "blog.diasporafoundation.org": [4451], "apps.secure.me": [14488], "email.wildwestdomains.com": [18300], "es.business.t-mobile.com": [15772], "scu.edu": [14290], "hypo.neos.eu": [10899], "forms.business.yahoo.co.jp": [18640], "moodle.net": [10574], "5.vgc.no": [17484], "*.turner.com": [16845], "blog.wegohealth.com": [18184], "mydundeeaccount.dundeecity.gov.uk": [4801], "www.chrisnewland.com": [3106], "*.transmode.se": [16677], "www.framalab.org": [6095], "0bin.net": [2], "mgm.congstar.de": [3577], "www.security-database.com": [14519], "information.dk": [8123], "www.srna.sk": [15341], "www.vis.occrp.org": [11611], "mail.bestmx.ru": [1810], "ori.dhhs.gov": [19117], "mygnu.de": [10762], "humpi.at": [7616], "www.vinoteka.hofer.si": [299], "patchwork.linuxtv.org": [9416], "*.spreadshirt.com": [15300], "totalrecall.com": [1889], "nam.aviationweather.gov": [18972], "se.godaddy.com": [6773], "www.hyperelliptic.org": [7645], "toplist.cz": [15847], "www.investigativedashboard.org": [8318], "nuwear.com": [11587], "ve.godaddy.com": [6773], "www.miramax.com": [10440], "login.proboards.com": [13110], "muse-cdn.warnerartists.com": [10709], "www.mos.org": [10714], "roofclimb.com.au": [19556], "goettingen.freifunk.net": [6190], "probikekit.co.uk": [13116], "community.fastly.com": [5687], "arsnova.thm.de": [15811], "apotea.se": [1098], "customsites.usc.edu": [17278], "www.elsevierhealth.com": [5187], "www.lsbu.ac.uk": [9098], "accel-ppp.org": [18936], "embed.wistia.com": [18377], "ivarch.com": [8399], "*.airbnb.ca": [749], "replay.pokemonshowdown.com": [12857], "syscoding.com": [15751], "www.inetinteractive.com": [7774], "www.sheamortgage.com": [8431], "hardware.support.eu.playstation.com": [12795], "2012.guadec.org": [6397], "www.depolitiezoekt.nl": [11132], "www.realfavicongenerator.net": [19542], "hecourse.engineering.osu.edu": [11760], "www.lucidsolutions.co.nz": [9644], "anon-ib.com": [1035], "masterh3.adriver.ru": [534], "eetimes.com": [4907], "opacs.stanford.edu": [15383], "global.oup.com": [12192], "images1.bovpg.net": [2252], "kirei.se": [8914], "blog.xsolla.com": [18593], "www.esc.edu": [5215], "izea.com": [7886], "www.rabbitporno.com": [13488], "alternative-settings.educ.cam.ac.uk": [17243], "jd.hk": [8424], "crowdfunding.correctiv.org": [3685], "projetos.ossystems.com.br": [11678], "mclu.org": [9727], "ecommercebrasil.com.br": [4885], "pdf.datasheetcatalog.com": [4214], "mall.jd.com": [8423], "stratechery.memberful.com": [10247], "tambov.rt.ru": [13469], "chcemvediet.sk": [3037], "www.gkvnet-ag.de": [6338], "www.ebanking.cimbthai.com": [2608], "fonder.ki.se": [8725], "pic.news.mail.ru": [9874], "www.23systems.net": [73], "otrs.datamotion.com": [19102], "marketplace.org": [10017, 10018], "www-static.ripe.net": [13895], "www.continental.com": [3619], "umd1.mycdn.me": [10824], "quch.io": [13346], "www.loveourlocalbusiness.com": [9629], "isoc24.com": [7830], "a.company-target.com": [3509], "topoption.com": [16562], "www.vodafone.ie": [17815], "www.tutanota.de": [16851], "*.wikia.com": [18292], "creativity-online.com": [3758], "www.patexia.com": [12449], "lenovovision.com": [9251], "abopage-mediafiles.tagesanzeiger.ch": [15908], "wiki.freenetproject.org": [6181], "contributors.debian.org": [4275], "image.ucuzu.com": [17108], "edublogs.org": [5092], "cph2010.drupal.org": [4780], "static.nexcess.net": [11356], "community.rapid7.com": [13553], "intranet.uow.edu.au": [17350], "coursefinder.northyorks.gov.uk": [19440], "*.doclix.com": [4074], "vtluug.org": [17518], "help.lighthouseapp.com": [4932], "stc.sandbox.pagseguro.uol.com.br": [16998], "*.sharetobuy.com": [19586], "www.gettag.mobi": [6606], "ma2.twimg.com": [16877], "autodiscover.lubs.leeds.ac.uk": [17318], "hometheaterreview.com": [7473, 7474], "*.richarddawkins.net": [13872], "sensiolabs.com": [14586], "appleseed.apple.com": [1120], "www.give.berkeley.edu": [17240], "partner.justeat.nl": [19328], "downloader.disk.yandex.com.tr": [18649], "ibs.sberbank.sk": [7905], "static8.twilio.com": [16876], "*.nextgenautoparts.com": [11368], "seattle.gov": [3192], "data.bitcoinity.org": [1984], "search.lbl.gov": [9065], "freizeit.sbb.ch": [15693], "news.osu.edu": [11760], "*.sockshare.com": [15080], "ccc.jd.com": [8423], "footlocker.eu": [6010], "www.seulonta.fi": [15744], "*.asada.gov.au": [345], "www.arcgis.com": [1155], "oaa.onlinesbi.com": [11873], "mathinstitutes.ima.umn.edu": [17268], "ezimg.it": [5004], "www.blossom.io": [2121], "as.blip.tv": [2079], "youtube.com.ro": [18709], "getmybalance.com": [6615], "denic.de": [4362], "horde-llc.com": [7495], "help.walmart.com": [17963, 17964], "opscode.com": [12061], "sourcesup.renater.fr": [13764], "si2.twimg.com": [16877], "spkrb.de": [19619], "s1.gismeteo.ua": [6670], "www.poddery.com": [12844], "www.smileexperts.osu.edu": [11760], "video.intelexit.org": [8212], "netscape.com": [11248], "ricochet.com": [13877], "rossendale.gov.uk": [13973], "cdn.pdc.comcast.com": [3461], "cdn.kde.org": [8718], "*.fmpub.net": [5722], "introversion.co.uk": [8301], "www.webwewant.org": [18097], "www.languageperfect.com": [9146], "goemerchant.com": [6776], "tp.wpml.org": [17922], "use-enco.com": [17420], "anibis.ch": [18956], "amnesty-in-bewegung.de": [957], "rbwm.objective.co.uk": [19454], "addiction-partnership.wustl.edu": [17993], "www.clkads.com": [3272], "mixbit.com": [10464], "monitor.bvg.de": [1582], "brianclifton.com": [2310], "*.purdue.edu": [13235], "educationnext.org": [5095], "ca.pcpartpicker.com": [12497], "dropboxteam.com": [4768], "www.atmos.uiuc.edu": [16956], "forums.alpinelinux.org": [869], "fj.simple.com": [14820], "kona32.kontera.com": [8981], "www.boxus.com": [12458], "www.scipy.org": [14374], "gleam.io": [6705], "chat.echoplex.us": [5047], "www.kch.nhs.uk": [10913], "shop.adapteva.com": [557], "www.bibl.liu.se": [9083], "cio.usc.edu": [17278], "www.codeship.com": [3378], "members.cdbaby.com": [19045], "components.xamarin.com": [18540], "uscurrency.gov": [17057], "forums.hak5.org": [7168], "support.sendgrid.com": [14577], "www.optimisemedia.com": [12070], "*.moveon.org": [10631], "wicnss.fns.usda.gov": [17209], "www.lumigon.com": [9665], "gq.com": [6379], "www.printm3d.com": [13068], "machines.chromeexperiments.com": [3117], "caller.com": [2753], "wheel.sk": [18237], "store.f-secure.com": [5541], "scaron.info": [14091], "www.inps.it": [7770], "secure-static.tagged.com": [15909], "nss.wustl.edu": [17993], "cpj.org": [2646], "mail.websupport.cz": [18092], "anpost.ie": [986], "a1afastcash.com": [220], "ssl.images-createspace.com": [7983], "beta.startmail.com": [15410], "prototyp.cerit.cz": [2572], "www.iei.liu.se": [9084], "www.judge.me": [8661], "www.hgst.com": [7059], "richmond.firmstep.com": [19183], "*.nap.edu": [16201], "manilaprinciples.org": [9956], "www.taringa.net": [15964], "*.247ilabs.com": [77], "www.bodum.com": [2173], "store.ar15.com": [337], "lane-beta.stanford.edu": [15383], "compass-ssl.microsoft.com": [10364], "streamwww.classroom.ohio-state.edu": [11761], "scripturaengage.com": [14426], "tpfrb.dk": [16623], "noo.org.uk": [10944], "melkweb.frieslandcampina.com": [2783], "www.tu-hamburg.de": [15876], "blog.zoho.com": [18884], "alaskaair.com": [778], "downloadster.net": [4728], "charts.smartmoney.com": [11320], "idsoftware.com": [7924], "docs.cloud.datapipe.com": [4212], "trasy.docelu.pl": [4615], "en.mtmei18n.com": [10211], "subscriberhelp.govdelivery.com": [6863], "stats.cyscon.net": [3990], "www.jwz.org": [19330], "data.highways.gov.uk": [19250], "trac.transmissionbt.com": [16676], "sc.sedo.com": [14542], "gmoserver.jp": [6347], "www.nancysgonegreen.com": [11028], "zugaina.com": [18918], "www.notary.icsi.berkeley.edu": [17240], "openprinting.org": [12041], "hub.togetherjs.com": [16530], "www.justpaste.it": [8692], "*.polldaddy.com": [12881], "static2cdn.hubspot.com": [7594], "www.shazam.com": [14689], "catalysthost.com": [2897], "*.backup.com": [11506], "www.crypto.graphics": [3852], "youri.zarb.org": [18796], "www.linaro.org": [9361], "i.gyazo.com": [7035], "kanotix.com": [8782], "*.passports.gov.au": [1398], "www.pokerstars.com": [19503], "poivy.com": [12854], "qtcloudservices.com": [13316], "wiki.zoho.com": [18884], "www.handbook.fca.org.uk": [5557], "iceintranet.admin.cam.ac.uk": [17243], "mvideos.stanford.edu": [15383], "acadinfo.wustl.edu": [17993], "ad.yieldmanager.com": [13881], "edixml.mycampina.com": [2783], "*.oit.umass.edu": [17265], "www.gitcop.com": [6677], "html.adobe.com": [614], "www.divitup.com": [4579], "www.xfce-look.org": [19461], "twistedmatrix.com": [16885], "insight.adsrvr.org": [635], "www.pictshare.net": [12670], "nebezi.cz": [11126], "www.r00tz.org": [13390], "*.esri.com": [5363], "oracleimg.com": [12082], "wiki.young-pirates.eu": [18716], "editola.com": [5086], "www.fosdem.org": [6069], "www.slickedit.com": [14956], "www.rachelbythebay.com": [13493], "medarbejdere.kk.dk": [8730], "www.eide-itc.no": [5123], "track.www.zazzle.com": [18804], "feedbackify.com": [5736], "www.10gen.com": [14], "www.derpiboo.ru": [4381], "cdn1.talkingpointsmemo.com": [15933], "bc.edu": [1503], "la-hora.org": [17120], "msp.f-secure.com": [5541], "www.movienewsletters.net": [10642], "www.scriptfodder.com": [14421], "www.openvpn.net": [11989], "youtube.lt": [18709], "www.host2.bg": [7506], "youtube.lv": [18709], "diffoscope.org": [4463], "www.popcorn-time.se": [12914], "www.xen-orchestra.com": [18556], "de.chaturbate.com": [3035], "c3.thejournal.ie": [16224], "indybay.org": [8081], "downloads.sms.cam.ac.uk": [17243], "sozialismus.info": [15202], "connect.globalcapacity.com": [6723], "static2.readyflowers.com": [13620], "opia.illinois.edu": [17258], "www.lulea.se": [9656], "www.in2code.de": [8028], "jaast.net": [12351], "btcmarkets.net": [1567], "www.flocabulary.com": [5935], "sciencenode.org": [14381], "passets-lt.pinterest.com": [12699], "www.zerigo.com": [18835], "img2.thejournal.ie": [16224], "eriga.lv": [13880], "rackspacecloud.com": [13507], "www.overviewproject.org": [12171], "sphotos-d.ak.fbcdn.net": [5700], "sipgate.co.uk": [14855], "www.partnernaurovni.sk": [12419], "www.internetstaff.com": [8285], "lektorium.tv": [9242], "*.secunet.com": [14474], "help.cloudforge.com": [3288], "saturnug.nottingham.ac.uk": [11528], "beta.talky.io": [15935], "www.hertz.at": [7337], "cms.gov": [17027], "popularresistance.org": [12920], "www.fxsitecompat.com": [19205], "exchange.pulsepoint.com": [13226], "blog.transifex.com": [16669], "markng.co.uk": [10006], "hg.adblockplus.org": [561], "www.garagegames.com": [6457], "xmpp.org": [18526], "cloud.ubuntu.com": [17102], "www.hertz.ae": [7370], "rollbar.com": [13958], "id.mashape.com": [10044], "blog.josefsson.org": [8631], "mail.hivos.org": [7431], "gu.twimg.com": [16877], "wiki.drweb.com": [4783], "www.swm.de": [14208], "foodsafety.gov": [5999], "cdn.11footballclub.com": [21], "moodle.lsbu.ac.uk": [9098], "acomp.stanford.edu": [15382], "testandtarget.omniture.com": [11803], "ahm.com.au": [737], "bitcoinplus.com": [1982], "www.redletter.link": [13676], "*.austiners.com": [1378], "fws.jd.com": [8423], "live.kent.ac.uk": [17317], "foofighters.com": [5996], "www.gentoo-ev.org": [6530], "a8.sphotos.ak.fbcdn.net": [5700], "www.pcel.com": [12222], "www.eduncovered.com": [5071], "www.iwantclips.com": [7874], "csjobb.idg.se": [7705], "support.vodafone.co.uk": [17813], "*.sheetmusicplus.com": [14693], "avatarpicker.com": [1445], "pad.systemli.org": [15765], "www.gmplib.org": [6348], "idp.iu.edu": [8064], "www.tros.nl": [16761], "www.webyog.com": [18175], "www.bivol.bg": [2028], "a2hosting.com": [222], "justice4assange.com": [8699], "www.servercraft.co": [14613], "www.tchibo.cz": [15985], "usatoday.com": [17031], "hosting.uaa.alaska.edu": [17233], "aeriagames.com": [686], "studentaffairs.stonybrook.edu": [15480], "www.kaiseki.me": [8768], "www.cpbonlinebanking.com": [3430], "www.adcash.com": [567], "www.veronmaksajat.fi": [17632], "*.ecash.io": [4883], "www.kingdomofloathing.com": [1308], "mappe.istella.it": [8381], "splashthat.com": [15281], "www.powerlinemanmag.com": [13003], "sapo.pt": [14297], "healthystart.nhs.uk": [10913], "www.prospectmagazine.co.uk": [13162], "c.microsoft.com": [10364], "obi.hu": [19452], "turngs.com": [16843], "www.ex10.biz": [5471], "digital-forensics.sans.org": [14072], "www.create-dmgmedia.co.uk": [3771], "dntly.com": [4608], "www.census.gov": [17027], "schweissgut.net": [12116], "www.fdopk.org": [5664], "intraweb.marion.ohio-state.edu": [11761], "smiliblog.stanford.edu": [15383], "isc.sans.org": [14072], "digitalbond.com": [4480], "www.idefimusic.com": [7932], "promo.awempire.com": [374], "www.deathmask.net": [4266], "eecs.umich.edu": [17266], "www.telenor.se": [16091], "seatgen.law.yale.edu": [18642], "www.sweflix.to": [15685], "dawsonera.com": [4235], "zooko.com": [18898], "docs.fedoraproject.org": [5726], "electronicintifada.net": [5154], "u.s.kqed.net": [8747], "pl.godaddy.com": [6773], "facultyhandbook.stanford.edu": [15383], "spectrumbusiness.net": [15249], "protonmail.ch": [13169], "*.communigator.co.uk": [3498], "auth.campact.de": [2777], "www.givingcomfort.com": [6690], "*.samwhited.com": [14260], "www.ica.se": [7680], "www.wilsoncenter.org": [18321], "egyptindependent.com": [5117], "www.climate-diplomacy.org": [3266], "intersango.com": [8294], "image.ahnlab.com": [739], "www.ch9.ms": [2979], "www.lippupalvelu.fi": [16421], "www.breuninger.com": [2306], "forum.junge-piraten.de": [8679], "mein2.dastelefonbuch.de": [4168], "www.promote.ie": [4513], "campusassist.sydney.edu.au": [19649], "www.houten.nl": [11132], "www.synaptop.com": [15724], "*.globalsources.com": [6733], "hb.valleyfirstcu.org": [17533], "www.mngt.waikato.ac.nz": [17347], "assets.mpc-hc.org": [19412], "newint.org": [11297], "www.illinois.edu": [17258], "association.drupal.org": [4780], "mysql.variomedia.de": [17567], "cityemail.com": [3183], "urlaubspiraten.de": [19719], "www.datacentrumgids.nl": [4199], "edigitalsurvey.com": [4901], "www.commonplacebooks.com": [3488], "community.bistudio.com": [2179], "www.georgiegirl.com.au": [6548], "topliners.eloqua.com": [5179], "fark.com": [5661], "www.w-tune.com": [18106], "www.ansible.com": [1056], "support.dsi.cnrs.fr": [6195], "images.switchadhub.com": [15701], "www.samknows.*": [14257], "live.wifidb.net": [18272], "www.kkbox.com": [8731], "www.sanoma.com": [14287], "www.opsterland.nl": [11132], "usc.edu": [17278], "car-hire.lastminute.com": [9165], "*.affiliatetracking.com": [702], "www.confianzaonline.es": [3568], "www.purehacking.com": [13238], "*.networks.nhs.uk": [10913], "cdn1.emilstahl.dk": [5208], "bbc.co.uk": [1499], "mixpanel.com": [10468], "vs.cfif.org": [2949], "ohs.stanford.edu": [15383], "pilot.marketplace.equinix.com": [5334], "www.farehamandgosportccg.nhs.uk": [10913], "spectrum.jino.ru": [8575], "jd.cdn.gmru.net": [6349], "megworld.co.uk": [10220], "www.runforyourlives.com": [14033], "wix.com": [18383], "mygov.elmbridge.gov.uk": [5173], "visindavefur.hi.is": [7066], "discuss.zetetic.net": [18851], "www.appsites.com": [1135], "synergy-foss.org": [15736], "*.omaze.info": [11790], "*.all-inkl.com": [825], "ticketing.trch.co.uk": [16420], "cdn.okccdn.com": [11770], "fr.verbling.com": [17615], "dashboard.stripe.com": [15525], "fhs.se": [5570], "www.riglogix.com": [1916], "api.proofpositivemedia.com": [13155], "arlanda.se": [1199], "pda-passport.yandex.kz": [18652], "www.wheel.sk": [18237], "esolangs.org": [5359], "adminguide.stanford.edu": [15383], "k2s.cc": [8704], "git.chromium.org": [3119], "rstforums.com": [13465], "oas.org": [12104], "mrfile.me": [10673], "www.dicesoft.net": [4454], "www.java-apps.org": [19461], "master.apan.net": [328], "new.eastsussex.gov.uk": [19142], "origin-enterprise.omniture.com": [11803], "jobshop.gateshead.gov.uk": [6467], "www.steaknshake.com": [15447], "service2.ess.apple.com": [1120], "baxter.mysql.cesky-hosting.cz": [19051], "thebluealliance.com": [16333], "sjofartsverket.tdconline.se": [15799], "webhost.biz": [18120], "secure.doublerobotics.com": [4713], "www.aokplus-online.de": [317], "www.legitbs.net": [9233], "blog.blocktrail.com": [2086], "*.findthebest.com": [5840], "my.ipswich.gov.uk": [8351], "www.mesamatrix.net": [10288], "support.mobify.com": [10494], "www.lsa.umich.edu": [17266], "track.newjobs.com": [11318], "cluedumps.mit.edu": [9747], "wumath.wustl.edu": [17993], "*.userapi.com": [17490], "www.bad-dragon.com": [18979], "*.vimeo.com": [17717], "www.cloudmark.com": [3309], "mini-dweeb.org": [4791], "www.sugarlabs.org": [15581], "hannahousetours.stanford.edu": [15382], "www.4gifs.com": [6037], "www.buytrezor.com": [2469], "stuke2.piratenpartei-bayern.de": [12719], "cache.agilebits.com": [727], "assist.zoho.com": [18884], "www.movzeed.com": [18666], "apply.onlinelaw.wustl.edu": [17993], "peterbroderick.com": [12589], "*.wineaustralia.com": [18351], "hidekisaito.com": [7393], "git.eleves.ens.fr": [4930], "velleman.be": [17596], "catooh.com": [2907], "www.smartauction.biz": [865], "reclog.jp": [13640], "openmw.org": [11954], "blackberryid.blackberry.com": [2050], "cryptoparty.org": [3886], "www.simonsfoundation.org": [14817], "cp-filin.mail.ru": [9874], "crypteianetworks.com": [3849], "www.frederikshavn.dk": [6117], "redcross.org": [13672], "valleyfirstcu.org": [17533], "*.store.cox.com": [3739], "www.domenovyprohlizec.cz": [4671], "subscribe.sloanreview.mit.edu": [9749], "cdn.myfonts.com": [10758], "clasconsultants.net": [19067], "openafs.mit.edu": [9749], "static.vliegtickets.nl": [17802], "www.googlemail.com": [6843], "avuedigitalservices.com": [1459], "img5.wsimg.com": [14507], "www.hollywoodlife.com": [7455], "*.ihub.co.ke": [19274], "ssl-cdn.highwebmedia.com": [7408], "ccr-abcam.cancer.gov": [2805], "drv-bund.de": [4407], "sb-ssl.google.com": [6834], "www.verbraucher-sicher-online.de": [17616], "eventlogger.soundcloud.com": [15161], "dataprovision.education.gov.uk": [19149], "luna1.co": [19373], "store-skin.nytimes.com": [11000], "wiki.pha.jhu.edu": [16296], "lsbbugs.linuxfoundation.org": [9412], "browser.yandex.by": [18648], "start.me": [15404], "admtl.com": [690], "sjobs.brassring.com": [19017], "www.colors-il.com": [3446], "include.reinvigorate.net": [13748], "navteqmedia.com": [10873], "18f.gsa.gov": [6386], "nbcudigitaladops.com": [10875], "solutions.canon.com": [2809], "subway.com": [15571], "*.piriform.com": [12725], "search.jd.hk": [8424], "members.zipcar.com": [18872], "www.tcl.tk": [15986, 15987], "www.givedirect.org": [6687], "www.relevate.ru": [13753], "forum.sparkfun.com": [15222], "images.cars.com": [2864], "mtgox.com": [10679], "penta.debconf.org": [4268], "mail.aol.co.uk": [320], "ams-login.dotomi.com": [4702], "www.wpml.org": [17922], "stardock.com": [15401], "www.undeb.bangor.ac.uk": [1640], "www.logmeinrescue.com": [9551], "surfmail.rrz.uni-hamburg.de": [16951], "staging-scoop.intel.com": [8209], "relayurl.xxxbunker.com": [18607], "restaurants.lastminute.com": [9165], "www.cse.umich.edu": [17266], "www.balabit.com": [1624], "www.omnirom.org": [11799], "www-pw.cr0.org": [3749], "ecn.t3.tiles.virtualearth.net": [17755], "www.supertracker.usda.gov": [17209], "libtoxcore.so": [9322], "springerzahnmedizin.de": [15310], "consumosocial.catracalivre.com.br": [2908], "statuscake.com": [15436], "alertaenlinea.gov": [11810], "www.fenland.gov.uk": [5750], "redmine.pfsense.org": [12607], "accounts.google.co.*": [6837], "*.worldofwarplanes.eu": [18461], "www.ourvacationcentre.net": [18489], "www.getmailbird.com": [6596], "www.productvisio.com": [13125], "www.hellolife.net": [7297], "notebook.zoho.com": [18884], "demandstudios.com": [4344], "kkh.de": [8732], "oxfam.org.uk": [12188], "news.cpanel.com": [2651], "life.taobao.com": [15952], "jammerbugt.dk": [8506], "*.solidcactus.com": [15119], "ww7.investorrelations.co.uk": [6714], "www.figshare.com": [5786], "ethicspoint.com": [5383], "www.usukita.org": [17068], "www.centrify.com": [19048], "conference.educ.cam.ac.uk": [17243], "chronicle-store.com": [3121], "hi.kickassapp.com": [8875], "www.kirklees.gov.uk": [8916], "cox.com": [3739], "cas.strode-college.ac.uk": [15528], "website.ws": [18086], "data.stubhub.com": [15534], "lists.w3.org": [17888], "lists.clearlinux.org": [3233], "ispid.nl": [7833], "*.grid5000.fr": [6949], "www.pcgarage.ro": [19483], "popcash.net": [12905], "www.calyxinstitute.org": [2760], "rstorage.filemobile.com": [5800], "vocaroo.com": [17810], "www.fi.ncsu.edu": [11492], "tshare.to": [15865], "rug.nl": [17254], "myimpact.ncl.ac.uk": [10884], "*.www.footaction.com": [6012], "*.austinfitmagazine.com": [1377], "www.dreamspark.com": [4749], "meetings.io": [10217], "vdqbulbs.com.au": [17477], "www.geovation.uk": [6550], "netiq.com": [11194], "railsconf.com": [13528], "bcomm.wales.gov.uk": [17957], "www.komplett.no": [8970], "*.mara.gov.au": [11750], "reproducible-builds.org": [13789], "youcanbook.me": [18703], "printfection.com": [13070], "xenforo.com": [18561], "www.disman.tl": [4564], "couponcabin.com": [3711], "gethttpsforfree.com": [6592], "www.arteradio.com": [18966], "www.python.org": [13272], "funds.gofundme.com": [6779], "u.outbrain.com": [12150], "www.identrust.com": [7934], "kickassapp.com": [8875], "secure.nationalarchives.gov.uk": [11065], "navicast.co.jp": [14740], "netmath.illinois.edu": [17258], "commande.easy-hebergement.fr": [5033], "arcadeflex.com": [5224], "p.liadm.com": [7793], "www.ownedcore.com": [12184], "accrualnet.cancer.gov": [2805], "vivaldi.net": [17797], "mobile.hillingdon.gov.uk": [7410], "*.v.gd": [19726], "mp.alipay.com": [817], "jabberd.org": [8479], "www.personalausweisportal.de": [12583], "dspace.harvard.edu": [7219], "*.cvent.com": [3948], "git.decadent.org.uk": [4280], "pando.com": [12357], "s-media-cache-ak1.pinimg.com": [12691], "greenqloud.com": [6919], "boutique.rts.ch": [19621], "bretagne-web.eu": [2305], "resadmin.lsbu.ac.uk": [9098], "google-melange.com": [6842], "upcmail.upc.cz": [17000], "sw.csiac.org": [2670], "www.bitcoin.co.id": [1964], "anonymox.net": [1049], "vtracy.de": [17867], "statesmanjournal.com": [15423], "origin.cdbaby.com": [19045], "reklamport.com": [13750], "bittorrent.org": [2024], "mail.deathmask.net": [4266], "www.dnswatch.info": [4066], "www.dataskydd.net": [4215], "www.braunschweig.de": [2291], "www.teletrust.de": [19668], "fr.tchibo.ch": [15985], "rettighedsalliancen.dk": [13831], "www.pragprog.com": [13012], "media.amctv.com": [306], "crowdcurity.com": [3824], "helponclick.com": [7305], "maps.gstatic.com": [6841], "srv.cdn-asknet.de": [1268], "img5.leboncoin.fr": [19351], "www.odir.org": [12007], "*.entertainment.ie": [5296], "m86security.com": [9701], "www.us.elsevierhealth.com": [5187], "www.cvis.vutbr.cz": [17522], "ru.verbling.com": [17615], "www.tagesschau.de": [19656], "iibuy.com.au": [7957], "fr.libreoffice.org": [9311], "www.openhunt.co": [12014], "a.adroll.com": [536], "diskcryptor.net": [4562], "kdab.com": [8717], "time2play.mobi": [16454], "trusted.kaspersky.com": [8806], "gruen-digital.de": [6985], "potager.org": [12985], "www.zlavadna.sk": [18878], "people.com": [12546], "pcmi.ias.edu": [7669], "www.the-independent-news.com": [8056], "historytoday.com": [7419], "tetadrogerie.cz": [19672], "civicscience.com": [3201], "www.retrousb.com": [13828], "www.acast.com": [18935], "lever.co": [9269], "donations.rspca.org.uk": [13461], "mydigipass.com": [10828], "www.xively.com": [18577], "commerce.ti.com": [16152], "www.rrz.uni-hamburg.de": [16951], "cjs.leeds.ac.uk": [17318], "microca.st": [10352], "teslamotors.com": [16142], "www.lanyrd.com": [9153], "services28.ieee.org": [7715], "campina.de": [2782], "olb.nationwideinternational.com": [11091], "*.jottit.com": [8639], "www.smartrecruiters.com": [14994], "utl.pt": [16033], "www.onthemedia.org": [11818], "*.usgs.gov": [17061], "identitytheft.gov": [7938], "*.blogspot.ca": [2107], "neoseeker.com": [11157], "blog.zen.co.uk": [18815], "www.deutschepost.com": [19112], "www.assistance-multimedia.fr": [1284], "www.sec.informatik.uni-goettingen.de": [17166], "www.southwark.gov.uk": [15196], "coralproject.net": [19080], "forum.ovh.es": [12173], "tinhte.vn": [16474], "www.emeraldinsight.com": [5205], "connect.iso.org": [7827], "www.federalregister.gov": [5712], "pd.rkn.gov.ru": [13913], "linguee.com": [9373], "faiusa.org": [5998], "webmdhealth.com": [18071], "*.studyinaustralia.gov.au": [15543], "questioncopyright.org": [13356], "egedalkommune.dk": [5113], "blog.cpanel.com": [2651], "forum.filezilla-project.org": [5796], "nserver.ru": [11548], "www.airvpn.org": [748], "dedikuoti.lt": [4292], "www.vodafone.com": [17816], "people.collabora.co.uk": [3419], "www.pingless.co.il": [12688], "anonysurfer.com": [1047], "sc4.maps.live.com": [9483], "www.genua.de": [19212], "www.esri.ie": [4965], "www.proxpn.com": [19519], "static.gbot.me": [6808], "www.xbetsport.com": [18549], "*.secure-secure.co.uk": [14485], "www.its.thm.de": [15811], "eet.eu": [4905], "*.telerik.com": [16094], "www.theexplorercard.com": [16272], "www.iceheberg.fr": [7912], "hrdivision.usc.edu": [17278], "ilmasto-opas.fi": [7971], "www3.camden.gov.uk": [2771], "*.onlineshoes.com": [11874], "www.usainteanne.ca": [19720], "live.assets.mybcdna.com": [10821], "marc.info": [9711], "www.apsislead.com": [1140], "www.indiemerchstore.com": [8070], "www.moreinterop.com": [10588], "cdn.washingtonexaminer.biz": [16214], "nustarz.com": [11563], "spunq.oe24.strgstatic.com": [11728], "www.youtube.dk": [18709], "www.foecvliab.com": [5971], "eiffel.com": [5124], "bar.yandex.com": [18651], "act.credoaction.com": [3793], "*.internap.com": [8254], "mybcvs.ch": [1655], "camsis.cam.ac.uk": [17243], "www.gemeentenoordenveld.nl": [11132], "bitpay.com": [1941], "ssl.zoho.co.jp": [18883], "ssl.zus.pl": [18769], "blinddesign.nl": [2074], "www.youtube.co.at": [18709], "*.mediahub.com": [10153], "support.anubisnetworks.com": [1073], "ciao.de": [3132], "fender.com": [5749], "www.metanet.ch": [10309], "dochelp.debian.net": [4273], "freebiblesoftware.com": [6139], "erb.copeland.gov.uk": [19079], "popehat.com": [12916], "www.trustpilot.com": [16798], "www.kokousalusta.fi": [8958], "amazonsupply.com": [916], "educacursos.com": [5093], "mydatapipe.net": [10804], "www.iglo.tk": [3533], "basecamp.com": [1687], "webmail.xs4all.nl": [18535], "crm.panoptykon.org": [12365], "ugc.futurelearn.com": [6282], "lists.sans.org": [14072], "mirrors.ocf.berkeley.edu": [17240], "account.cyanogenmod.org": [3954], "refer.istockphoto.com": [19309], "services.renater.fr": [13764], "assets.ubuntu.com": [17102], "porvoo.fi": [19509], "css.washingtonpost.com": [17990], "pq.kagi.com": [8766], "www.macfound.org": [9818], "support.pogoplug.com": [12851], "browse.dict.cc": [4455], "bettershopping.eu": [1830], "newsletter.quickline.com": [19530], "compass-ssl.xboxlive.com": [18551], "paste.openttdcoop.org": [11982], "www.nawaat.org": [11115], "twenga-solutions.com": [16872], "outlook.office365.com": [11745], "bitgamer.su": [1996], "www.dbs.com.tw": [4010], "drugs-forum.com": [4777], "www.cyberpatrol.com": [3962], "www.douban.com": [4707], "*.nmugroup.com": [10942], "windriver.com": [18337], "cimbclicks.co.id": [2605], "blog.getsatisfaction.com": [6617], "img.buch.ch": [16171], "38.de": [119], "appstore.alipay.com": [817], "www.vedomosti.ru": [19730], "www.carekris.com": [2846], "womble.decadent.org.uk": [4280], "blog.malwarebytes.org": [9929], "dmgt.co.uk": [4121], "toolbar.vip.symantec.com": [15715], "modernpgp.org": [10522], "videoaidedinstruction.com": [17691], "ssl.buch.de": [16171], "translate.yandex.by": [18648], "quitnow.smokefree.nhs.uk": [10913], "southwark.gov.uk": [15196], "www.idstronghold.com": [7937], "qtool.leeds.ac.uk": [17318], "edgewall.org": [5083], "www.fldemo.nsf.gov": [11060], "www.cohnreznick.com": [3389], "careereagles.osu.edu": [11760], "m-privacy.de": [9693], "fahrinfo.bvg.de": [1582], "twisp.me": [16882], "www.dragonflybsd.org": [4738], "secure.xtwo.ne.jp": [18603], "togetherjs.com": [16530], "support.jobscore.com": [8590], "www.freifunk.net": [6192], "www.mondovino.ch": [3645], "*.dotcloud.com": [4693], "www.temp-mail.ru": [16105], "beta.fastmail.com": [5688], "sierraclubgreenhome.com": [14771], "www.blogher.com": [2102], "studentgrantreview.acs.org": [929], "parkingin.sheffield.gov.uk": [14694], "cvimellesgriot.com": [2691], "lsvr.engineering.osu.edu": [11760], "lackname.org": [19346], "www.gov.uk": [6366], "sellercentral.amazon.com": [910], "blogs.datadirect.com": [4180], "static.outspark.com": [12154], "okcoin.cn": [11627], "onthe.io": [11890], "npre.illinois.edu": [17258], "usbclientadvocacy.com": [17054], "gist.github.com": [6680], "www.anzen.org.uk": [1082], "www.ntmx.de": [11555], "x.translateth.is": [16672], "www.biofitt.com": [1906], "partnernaurovni.sk": [12419], "audioarchives.oc.usda.gov": [17209], "*.demdex.net": [4351], "islington.gov.uk": [8370], "www.fakturownia.pl": [5639], "secure.webmercs.com": [4171], "app.vssps.visualstudio.com": [17785], "www.secureinthecircle.com": [14498], "serverdensity.io": [14614], "dediserve.com": [4293], "www.dnfsb.gov": [4310], "login.f-secure.com": [5541], "www.yoursav.com": [18737], "loyaloop.tele2.lt": [16069], "*.righthaven.com": [13885], "datatilsynet.no": [4216], "*.beenverified.com": [1749], "evm.dk": [5461], "www.qsstats.com": [13289], "pimienta.org": [12985], "4sevens.com": [162], "log.pinterest.com": [12699], "www.icio.us": [7920], "*.travis-ci.org": [16701], "condosforeveryone.com": [3560], "netloan.kent.gov.uk": [8851], "www.privacytool.org": [13090], "*.webtraffiq.com": [18166], "www.gpsoft.com.au": [4532], "engage.webtrends.com": [18171], "www.asjo.org": [1260], "jjc.edu": [8440], "yougov.de": [18705], "ontology.co": [11891], "www.mygoya.de": [10832], "lab.pentestit.ru": [12543], "www.kaufland.cz": [8822], "new.showrss.info": [14744], "geo.itunes.apple.com": [1120], "grml.org": [6382], "www.consecur.de": [3548], "www.ntw.nhs.uk": [10913], "view.atdmt.com": [10360], "pshared.5min.com": [178], "www-cdn3.pardot.com": [12399], "asmallorange.com": [214], "www.cryptohaze.com": [3873], "web4u.cz": [18051], "s1.mzstatic.com": [10852], "api.twingly.com": [16879], "www.garron.net": [6462], "www.whitehatsec.com": [18250], "www.wwte2.com": [17937], "www.esdominios.com": [5356], "trust.zscaler.com": [18913], "www.jsfiddle.net": [19327], "*.thegrommet.com": [16286], "web-content.educ.cam.ac.uk": [17243], "accesslabs.net": [446], "open.kent.gov.uk": [8851], "ygnition.com": [18677], "freeassangenow.org": [6137], "timroes.de": [16451], "karger.com": [8794], "games.mountyhall.com": [10622], "www.lowpowerlab.com": [9635], "vovici.com": [17849], "support.sonatype.com": [15132], "www.tiki-toki.com": [16443], "gerrit.onosproject.org": [11649], "ep91prd.acs.ncsu.edu": [11492], "www.datamonitorhealthcare.com": [4207], "shopmimigreen.com": [14722], "safesetup.guidancesoftware.com": [7006], "quan.smzdm.com": [15017], "simflight.*": [14806], "www.leadspend.com": [9196], "*.tor2web.org": [16566], "www.rivalseek.com": [13905], "energystar.gov": [5256], "www.velex.htwk-leipzig.de": [7114], "version5.edeveloperz.com": [4899], "family.utoronto.ca": [17343], "*.heatmap.it": [7279], "desktop.telegram.org": [16080], "www.firemail.de": [5863], "*.aweber.com": [379], "legitscript.com": [9232], "www.uni-potsdam.de": [17333], "www.clevelandclinic.org": [3236], "reichelt.de": [13744], "www.moana-surfrider.com": [10482], "communities.netapp.com": [11183], "*.prweb.com": [12291], "cryptocoding.net": [19092], "istella.it": [8381], "themesandco.com": [16341], "plssl.com": [13032], "tls.mbed.org": [10109], "www.quantamagazine.org": [13336], "svetlodarsk.com": [15674], "beforeyoudig.nationalgrid.com": [11081], "politicshome.com": [12875], "www.pdu.edu": [12939], "chartbigchart.gtm.idmanagedsolutions.com": [8240], "www.postsuisseid.ch": [12949], "onderwijssso.tue.nl": [15874], "kuler.adobe.com": [615], "extranet.libis.be": [9302], "www.blackbox.co.uk": [2044], "support.preyproject.com": [4931], "*.tu-ilmenau.de": [15873], "www.rz.htw-berlin.de": [7112], "www.researchonline.org.uk": [19547], "aplikace.skolaonline.cz": [19598], "sozone.de": [15051], "mail.theatomgroup.com": [16178], "support.bt.com": [1551], "www.cam.ac.uk": [17243], "www.engineering.osu.edu": [11760], "www.jobscout24.de": [8591], "*.usajobs.gov": [17030], "chatlio.com": [19053], "www.institute.nhs.uk": [10913], "bypassingcensorshipinthe.uk": [19032], "khms1.google.com": [6841], "www.wigan.gov.uk": [18286], "www.rnpdigital.com": [13441], "i3.code.msdn.s-msft.com": [14058], "dis.us.criteo.com": [3801], "*.eease.com": [5216], "www.amctheatres.com": [307], "whatsuccesstakes.com": [6716], "halebop.se": [7173], "eply.com": [4945], "m.here.com": [7326], "www.mload.freenet.de": [6180], "ctools.umich.edu": [17266], "digitaltransactions.net": [4484], "www.krystal.co.uk": [9024], "*.wosign.com": [18393], "www.apps1.lbhf.gov.uk": [9064], "nordicsemi.com": [11477], "www.imine.co": [8004], "womensaid.ie": [18409], "static.artskills.com": [1222], "www.avatarpicker.com": [1445], "ecr6.engineering.osu.edu": [11760], "www.uni-goettingen.de": [17166], "video.petfinder.com": [12596], "www.mcssl.com": [10127], "stv.columbia.edu": [3448], "www.bethblog.com": [18829], "morrisonscellar.com": [10602], "debian-facile.org": [4270], "botaanikaaed.ut.ee": [17069], "www.drawingbynumbers.org": [4745], "www.manisec.com": [9934], "esportsea.com": [4846], "cdn.lesfurets.com": [9258], "www.ruptly.tv": [14039], "www.comparitech.com": [3514], "*.networkworld.com": [11267], "m.ffs.ch": [15693], "www.sync.com": [15725], "tejia.taobao.com": [15952], "www.experiencedays.co.uk": [5507], "inquirehire.pstprod.peoplestrategy.com": [12549], "irccloud.com": [8354], "paymants.snelis.com": [15033], "*.scu.edu": [14290], "paste.gajim.org": [6406], "www.n-2.org": [10853], "voyage-prive.co.uk": [17856], "ricochet.im": [13878], "thetinhat.com": [16319], "images-2.gog.com": [6365], "blog.dandb.com": [4137], "infile.com": [8091], "www.whatsmydns.net": [18236], "cdn.nomensa.com": [11464], "*.tut.fi": [15877], "securelist.ru": [14504], "www.warmcat.com": [17979], "products.secureserver.net": [14511], "m.slovari.yandex.kz": [18652], "chat.wikileaks.org": [18291], "www.luxuryreplica.net": [9678], "ppcdn.500px.org": [167], "cp.win-is.com": [18324], "www.lookinglocal.gov.uk": [9599], "*.elevenpaths.com": [5160], "da-dk.facebook.com": [5620], "adelaide.edu.au": [581], "*.designaddict.com": [4387], "seroundtable.com": [14105], "digitalegesellschaft.de": [4505], "getty.edu": [6619], "www.uppmax.uu.se": [17074], "now.source-elements.com": [15168], "loadimpact.com": [9529], "tchibo.de": [15985], "www.redditmedia.com": [13691], "docs.scipy.org": [14374], "www.linuxmint-art.org": [19461], "cdnbakmi.kaltura.com": [8775], "myvigor.draytek.com": [4746], "fls-eu.amazon.co.uk": [915], "www.phusionpassenger.com": [12654], "vptl.stanford.edu": [15383], "www.hkex.com.hk": [7484], "powells.com": [12988], "anatomiaembriologiagenetica.unizar.es": [17356], "wahl.tagesschau.de": [19656], "www.packetflagon.is": [19476], "study.monash": [15542], "gmx.co.in": [6350], "images.paypal.com": [12467], "www.f5.htw-berlin.de": [7112], "www.npi.org.uk": [10948], "intelrad.com": [8221], "ann.cc.ntu.edu.tw": [10971], "*.markit.com": [10023], "manager.linode.com": [9387], "www.klikki.fi": [19340], "oyun.yandex.com.tr": [18649], "whitehouse.gov": [18251], "admatic.com.br": [605], "dailyedge.ie": [19099], "static.intranet.tue.nl": [15874], "www.law.cuny.edu": [3188], "magister.unizar.es": [17356], "cuusoo.com": [3946], "bitinvest.com.br": [1998], "git.netfilter.org": [11225], "acr.org": [941], "www.pha.ulaval.ca": [17229], "isc2.sans.org": [14072], "kontakt.gmx.net": [6350], "opsterland.nl": [11132], "www.adscendmedia.com": [627], "vsoeapp1.vsoe.usc.edu": [17278], "login.paloaltonetworks.com": [12349], "welcome.logmein.com": [9549], "help.pushbullet.com": [13251], "support2.microsoft.com": [10364], "dev.bananian.org": [1636], "www.shellmix.com": [14160], "alldebrid.com": [830], "cms.lifereimagined.org": [9330], "jobs.leeds.ac.uk": [17318], "refferer.disqus.com": [4570], "www.otr.to": [11682], "boss.exmail.qq.com": [13285], "www.sba-research.org": [14080], "registry.npmjs.org": [11540], "e17.xhamsterpremiumpass.com": [18516], "smartcard.nih.gov": [11052], "schallert.com": [14347], "special.habrahabr.ru": [7129], "*.briansmith.org": [2311], "fetlife.com": [5761], "small-firms.fca.org.uk": [5557], "lkml.org": [9087], "www.windowsphone.com": [18346], "content.truste.com": [15856], "ona.gov.au": [11748], "www.abis-studien.se": [243], "johnlewis.ie": [8610], "mollom.com": [10537], "www.gmu.edu": [6544], "housing.illinois.edu": [17258], "www.youtube.com.sg": [18709], "www.wind.com.gr": [18336], "s.yeoldreader.com": [16225], "careandsupportforyou.halton.gov.uk": [19236], "www.arrisi.com": [1215], "kgnb.am": [8721], "tesla-new.desy.de": [4399], "www.m.metro.ya.ru": [18626], "*.london2012.com": [9573], "*.flokinet.is": [5938], "www.archive-it.org": [1163], "ssl1.washingtonpost.com": [17990], "hi.chaturbate.com": [3035], "www.wwte13.com": [17937], "norwegian.com": [11508], "*.citadium.com": [3166], "*.shopstyle.co.uk": [14720], "ovscruise.com": [18490], "search.motherpipe.com": [10611], "yabs.yandex.com.tr": [18649], "earthlink.biz": [5007], "orkut.com": [12110], "autodiscover.chem.leeds.ac.uk": [17318], "www.birthdayinabox.com": [1913], "www.wp-tao.com": [17919], "theedgeclimbing.com": [16271], "mirt.net": [10449], "app.onelogin.com": [11835], "who.wildwestdomains.com": [18300], "portal.redpill-linpro.com": [13700], "justgive.org": [8690], "portal.cf.ac.uk": [2835], "www.itechnician.co.uk": [7863], "www.vizzit.se": [17801], "abma.de": [421], "rrts.com": [13450], "www.rhombus-tech.net": [13864], "it.pornworms.com": [12928], "suckup.de": [15574], "rtl-videoclip-player.rtl.de": [13474], "clicklivechat.com": [3261], "cavium.com": [2911], "odn.io": [16570], "*.gostats.com": [6785], "vmail.me": [17804], "drownedinsound.com": [4773, 4774], "you.38degrees.org.uk": [120], "addictech.com": [574], "www.terminatorx.org": [16124], "broadcasting.gamesports.net": [6423], "www.browser.yandex.com.tr": [18649], "benaughty.com": [1721], "tripadvisor.ca": [19696], "nsomniture.nvidia.com": [10985], "bugzilla.flamingspork.com": [5902], "*.wlxrs.com": [17914], "lucidchart.com": [9645], "www.mondediplo.com": [10542], "dhammaloka.org.au": [1544], "repository.jisc.ac.uk": [8578], "myvolunteerpage.com": [17834], "*.base.de": [1491], "pixel-secure.solvemedia.com": [15126], "i.crackedcdn.com": [4343], "affiliates.walmart.com": [17964], "stat.heiseshop.de": [7289], "developer.netflix.com": [10045], "domenkozar.com": [4668], "commons.era.nih.gov": [11052], "*.fyre.co": [9509], "whoisaccuracy-portal.register.com": [13732], "mysupport.symantec.com": [15715], "openstack.org": [11975], "grsecurity.net": [6383], "tune.yandex.by": [18648], "img03.taobaocdn.com": [15953], "tnbc.tanomail.com": [15948], "givinghistory.stanford.edu": [15383], "www.syoparekisteri.fi": [15744], "jobs.nodejs.org": [14829], "coinsecure.in": [3409], "bitcointoyou.com": [1986], "boxopus.com": [2259], "www.norman.com": [11487], "www.p-tano.com": [12200], "freshmilk.de": [6204], "www.overclock.net": [12162], "impactradius.com": [8011], "kunde.oeffentliche.de": [11730], "www.dephormation.org.uk": [4372], "wusmaccount.wustl.edu": [17993], "panel.bnc4free.com": [2164], "clearlink.com": [3234], "stars.chromeexperiments.com": [3117], "website.1and1.ca": [52], "manage.www.namecheap.com": [11019], "*.chron.com": [7565], "partner.market.yandex.com": [18651], "home.comparethemarket.com": [3511], "cnr.berkeley.edu": [17240], "amur.rt.ru": [13469], "pspmedia.ign.com": [7730], "secureconnect.com": [14490], "www.datavantage.com": [4189], "comics.dailykos.com": [4116], "mail2.virginmedia.com": [17737], "www.corbanworks.com": [3658], "calligra.org": [2754], "www.sway.com": [15681], "engr.uw.edu": [17077], "laptoponline.hu": [9155], "www.playosmo.com": [12125], "888173.net": [200], "www.andrewblum.net": [1001], "spectrumbusinessinsights.com": [15250], "www.naughtyshowreviews.com": [11108], "s0.cyberciti.org": [3966], "btsport.com": [1576], "api.linksalpha.com": [9378], "static3.twilio.com": [16876], "webmail.1and1.co.uk": [53], "*.piraten-partei.ch": [12284], "socialcampaign.com": [3818], "www.bet365.com": [1811], "cooliris.com": [3643], "manage.ixwebhosting.com": [7882], "www.u-blox.com": [16921], "www.freedomonlinecoalition.com": [6171], "www.crunchbangplusplus.org": [3835], "oebb.at": [19455], "demo.com": [4027], "www.imf.org": [7757], "help.yahoo.co.jp": [18640], "web.slashdotmedia.com": [14948], "www.cccure.org": [2541], "fi.libreoffice.org": [9311], "enisa.europa.eu": [5421], "cybersymposium.isis.poly.edu": [12888], "wac.51d5.edgecastcdn.net": [13257], "*.bromley.gov.uk": [2360], "teksyndicate.com": [16065], "www.blocktrail.com": [2086], "content.jwplatform.com": [8467], "parapa.mail.ru": [9874], "blob.freent.de": [6180], "tuxingsun.net": [16811], "www-edc.eng.cam.ac.uk": [17243], "*.seattle.gov": [3192], "filenuke.com": [5792], "malwr.com": [9931], "www.viveris.fr": [17798], "www.moodle.com": [10572], "www.eydap.gr": [6915], "regiobank.nl": [13729], "guerrillamail.com": [7005], "engage.rescue.org": [19546], "forum.cyanogenmod.org": [3953], "community.namecheap.com": [11019], "alumni.lsbu.ac.uk": [9098], "popcorn.webmaker.org": [10663], "www.butlerandthechef.com": [16181], "*.cihar.com": [3134], "marsupi.org": [10030], "libreoffice.collabora.co.uk": [3419], "www.team-cymru.org": [16000], "knab.nl": [8939], "cloud.jeffreifman.com": [8548], "gna.org": [6758], "www.mailigen.com": [9886], "my.101domain.com": [12], "www.netgate.com": [11231], "www.zuno.cz": [18768], "www.staysafeonline.org": [15441], "ba.yandex.com.tr": [18649], "pds.jpl.nasa.gov": [10869], "cbks0.google.com": [6834], "business.upc.cz": [17000], "ffprofile.com": [5765], "support.fastwebhost.com": [5679], "*.cupidplc.com": [3921], "www.protu.fi": [13149], "ets.org": [4976], "www.teamintraining.org": [16002], "*.shannonhealth.com": [14659], "onenote.com": [11839], "m.fastcompany.com": [5670], "cleverbridge.com": [3240], "gdatasoftware.com": [6293], "static.flickr.com": [5918], "static.shareasale.com": [14661], "www.surveys.cardiff.ac.uk": [2835], "www.scaleengine.com": [14327], "analytics.sparkfun.com": [15222], "cesky-hosting.cz": [19051], "bamsoftware.com": [1635], "a.zencdn.net": [18816], "smackcoders.com": [14978], "listes.cru.fr": [3829], "cdn.content.compendiumblog.com": [3517], "www.gotowebinar.com": [6789], "www.spiderwebsoftware.com": [15270], "solo.bodleian.ox.ac.uk": [17271], "oied.ncsu.edu": [11492], "mobile.bahn.de": [1617], "test-ipv6.cz": [16143, 16144], "pic.yify-torrent.org": [18616], "riccilab.stanford.edu": [15383], "fsawebenroll.ed.gov": [4889], "onlinewellnessassociation.com": [11879], "admin.verkaufen.ch": [19733], "swi.ucollege.wustl.edu": [17993], "ims-dm.com": [8237], "www.samgentle.com": [14258], "nrl.navy.mil": [17028], "www.givetocal.berkeley.edu": [17240], "advancedligo.mit.edu": [9747], "www.quikcallus.com": [13364], "fp.my.uh.edu": [17315], "it.verbling.com": [17615], "partner.just-eat.dk": [19328], "www.scottishpower.co.uk": [14400], "i-d-images.vice.com": [17667], "hg.fanboy.co.nz": [5650], "www.pcsp-emu.com": [5224], "ea-cdn.voxmedia.com": [17852], "ps.bahn.de": [1617], "employment.gov.au": [4369], "droplr.com": [4771], "youtube.com.gr": [18709], "cards.linaro.org": [9361], "conference2005.kde.org": [8718], "trustkeeper.net": [16782], "www.bulbman.com": [2414], "www.bardwilhome.com": [1665], "www.blockbuster.co.uk": [2082], "www.npjhub.org": [8317], "www.skandiabanken.no": [14895], "www.medikamente-per-klick.de": [10196], "mail.marmotte.net": [10027], "denuncia.uol.com.br": [16998], "www.vungle.com": [17877], "www.iamthecavalry.org": [7887], "bemobile.ua": [1724], "developer.mydigipass.com": [10828], "adobeconnect.com": [616], "indico.cern.ch": [2575], "app-us.resrc.it": [13599], "account.qt.io": [13315], "esd.kent.ac.uk": [17317], "access.earthdata.nasa.gov": [10869], "arena.razerzone.com": [13587], "phonon.kde.org": [8718], "si.se": [14118], "speedtest.net": [15258], "online.ofsted.gov.uk": [19456], "tyk.io": [16904], "*.yahoofs.com": [18638], "www.groenlinks.nl": [6962], "www.rc.fas.harvard.edu": [7219], "dashlane.com": [4163], "*.ubi.com": [17091], "2012.de.pycon.org": [13263], "www.imfimg.com": [7990], "cdn4.openculture.com": [12006], "bitcoinxt.software": [1975], "cbcblueprint.com": [2521], "cgran.org": [2591], "svn.openezx.net": [11935], "aka-cdn.adtechus.com": [639], "vianetfuelsolutions.com": [17663], "www.sohosted.com": [15049], "cdn.at.ai": [796], "docs.alfresco.com": [802], "installments.com": [19295], "fsl.cs.sunysb.edu": [15480], "client.scribblelive.com": [14413], "members.enlightenedperl.org": [5279], "riscure.com": [13899], "*.ballou.se": [1633], "b.s.thebrighttag.com": [2325], "ibc.researchcompliance.vt.edu": [17740], "www.securify.nl": [14516], "httpswatch.com": [7108], "prep.rci.com": [18490], "www.ikeepincloud.com": [7750], "path.com": [12451], "img.thalia.at": [16171], "*.plus.net": [12829], "router-quality.maps.yandex.com": [18651], "bem.info": [1511], "www.chip-app.de": [2595], "2gwc-kbhkort.kk.dk": [8730], "assu-web.stanford.edu": [15382], "gitlab.com": [6678], "dl.stgraber.org": [15353], "*.ad-juster.com": [512], "www.redplum.com": [13662], "amazon.ca": [913], "amazon.cn": [913], "www.exclusivex.com": [5487], "facultynotes.williams.edu": [18316], "service.marshall.usc.edu": [17278], "www.ornl.gov": [11693], "www.opswat.com": [11657], "experts.giffgaff.com": [19217], "signalblog.stanford.edu": [15383], "blogspot.*": [2107], "www.epoxate.com": [5328], "solutions.drweb.com": [4783], "www.bartleby.com": [1684], "new.aviationweather.gov": [18972], "golucid.co": [6793], "*.ubuntu-art.org": [19462], "svn.ninux.org": [11421], "postbox-inc.com": [12960], "log.outbrain.com": [12150], "yts.to": [18623], "archive.fosdem.org": [6069], "ar.norton.com": [11505], "tppinfo.org": [18428], "www.hds.ucsd.edu": [16939], "www.jcore.fr": [8420], "www.stc.tid.gov.hk": [7077], "messagingengine.com": [10291], "*.poppysports.com": [12917], "qian.qq.com": [13285], "proboards.com": [13110], "kuvalehdet.fi": [12131], "doku.spline.inf.fu-berlin.de": [6188], "cno.org": [3425], "buzzhosting.org": [2480], "www.quickline.ch": [19530], "tippcenter.zdf.de": [19800], "eclipso.de": [5051], "altontowers.com": [893], "identi.ca": [7936], "ariejan.net": [1192], "shibboleth.illinois.edu": [17258], "www.wirralccg.nhs.uk": [10913], "investor.visa.com": [16380], "*.perl.org": [12576], "btg.mtvnservices.com": [17661], "www.elderscrollsonline.com": [5146], "www-it.desy.de": [4399], "metrics.tesco.com": [16135], "sns-static.aolcdn.com": [323], "homepages.see.leeds.ac.uk": [17318], "join.queervids.com": [13349], "hi5.com": [19247], "demonsaw.com": [4359], "staff.washington.edu": [17291], "cdn.evbuc.com": [5437], "www.domaincoin.net": [4652], "documentation.mamp.info": [19379], "www.campbx.com": [2775], "grapher.compete.com": [3519], "eu.api.soyoustart.com": [15052], "i2.social.microsoft.com": [10364], "www.libraryfreedomproject.org": [9306], "moodle.uowplatform.edu.au": [17350], "*.paymentech.com": [12477], "www.flatlinesecurity.com": [5909], "picomoney.com": [12664], "www.paulschreiber.com": [12462], "www.dell.com": [4334, 4335], "fsd84.bis.bnl.gov": [19009], "*.vulture.com": [17874], "user.ornl.gov": [11693], "www.jive.com": [8584], "www.epochstats.com": [5326], "www.civica.co.uk": [19064], "legaldirectories.com": [9229], "www.cadlink.com": [19033], "*.secure.epi.org": [5059], "y.slashdot.org": [14947], "*.bpa.gov": [2198], "factorable.net": [5626], "www.survivetheclaireperryinter.net": [15661], "openmicroscopy.org": [12021], "ikiwiki.info": [7962], "www.cei.org": [3520], "www.tetadrogerie.cz": [19672], "static-hp.s-msn.com": [14059], "www.seattletechnicalbooks.com": [14454], "*.shop.sandsmedia.com": [14213], "www.dagensgetaway.dk": [4109], "pacsec.jp": [12308], "wrzuta.pl": [18476], "*.walgreens.com": [17958], "enttextbook.stanford.edu": [15383], "www.gnuheter.org": [6764], "portal.lsbu.ac.uk": [9098], "cdn.ghstatic.com": [6327], "www.poloniex.com": [12885], "blog.whatsapp.com": [18234], "www.oxfam.org.uk": [12188], "www.pamnews.com": [12351], "www.ticket4u.com.my": [19681], "*.teenrevenue.com": [16059], "plus.sandbox.google.com": [6834], "defcon.org": [4305], "*.presslabs.com": [13031], "www.insight.bn-mclp.org": [2162], "webmail.hosts.co.uk": [7545], "interac.ca": [8234], "www.falkirk.gov.uk": [5641], "samgentle.com": [14258], "www.abcmusicpublishing.com.au": [238], "click.showcase-tv.jp": [14740], "compassionjournal.stanford.edu": [15383], "givskudzoo.dk": [6692], "subscribe.gq.com": [6379], "www.germantv.net": [6555], "sexysitehosting.com": [14647], "www.nhncorp.com": [10909], "usessh001.com": [17424], "try.mongodb.org": [10554], "consult.manchester.gov.uk": [9944], "lobste.rs": [9534], "subscribe.newscientist.com": [11298], "www.f9.fi": [5548], "waivers.stanford.edu": [15382], "www.megaglest.org": [10227], "*.journal-news.net": [8640], "iolproperty.co.za": [7776], "open.spotify.com": [15296], "wiki.opencorporates.com": [11931], "www.alchemyglobal.com": [784], "www.sll.org.uk": [15076], "theinspirationroom.com": [16194], "gaming.msi.com": [9792], "www.newsledge.com": [19434], "asterix.berkeley.edu": [17240], "my.playosmo.com": [12125], "jobs.hasgeek.com": [7221], "oesp.horizon.tv": [19716], "file3.answcdn.com": [1059], "www.humanevents.com": [7609], "openflow.stanford.edu": [15383], "cc3.dealer.com": [4256], "www.eveger.de": [5433], "selfcare.tiscali.it": [16498], "www.tcf.org": [15790], "blog.selfhtml.org": [19580], "wiki.freifunk.net": [6192], "www.dsc.soic.indiana.edu": [8065], "sefton.greenparty.org.uk": [6925], "www.univ-smb.fr": [17224], "sucuri.net": [15575], "forge.ocaml.org": [11612], "www.altii.de": [889], "mpp.vindicosuite.com": [17721], "classrecordings.wusm.wustl.edu": [17993], "dandb.com": [4137], "www.webmaster.yandex.com": [18651], "hslu.ch": [7583], "pearl.plymouth.ac.uk": [12833], "commandoboxing.com": [3476], "*.cufp.org": [2688], "img02.findgravy.com": [5843], "4rx.com": [152], "www.atstuff.com": [1333], "cdn.itproportal.com": [11174], "secure2.comic-con.org": [3466], "esw.osu.edu": [11760], "westpac.com.au": [18222], "n-joy.de": [10855], "*.fastly.net": [5686], "link.wmtransfer.com": [18076], "www.unisend.com.mx": [17198], "monitor.haskell.org": [7229], "www.ehostpros.com": [5679], "subs.foreignaffairs.com": [6025], "www.cntraveler.com": [3555], "soylent.com": [15199], "2ksports.com": [88], "www.weeklyplus.com": [18183], "www.beersofeurope.co.uk": [18989], "blog.digital.cabinetoffice.gov.uk": [2701], "saymedia.com": [14320], "www.precos.com.pt": [13021], "*.liftsecurity.io": [9337], "*.pssl.com": [12299], "www.compete.org": [3518], "www.pinescharter.net": [12679], "www.spectrumbusiness.net": [15249], "stopthinkconnect.org": [15487], "hastrk1.com": [7235], "www.sans.edu": [14071], "www.instagram.com": [8182], "static.solfoinc.netdna-cdn.com": [18622], "bungie.net": [2438], "indexoncensorship.org": [8059], "trk.names.co.uk": [11026], "markonefoods.com": [10025], "clocks.yandex.by": [18648], "thesixthaxis.com": [16237], "wallacecenter.rit.edu": [13434], "spanair.com": [15216], "www.thinglinkblog.com": [16357], "www.onlinepayment.com.my": [9775], "forum.tampermonkey.net": [15939], "simplepickup.com": [14823], "www.mooshi.com.au": [10580], "www.benmarshall.me": [1773], "netbetsport.fr": [11186], "*.brightoncollectibles.com": [2331], "www.debian-fr.org": [4271], "interac.vogogo.com": [19740], "cfire.mail.ru": [9874], "www.juicycanvas.com": [8669], "ptmt.fi.ncsu.edu": [11492], "api.iperceptions.com": [19275], "merchant.exmo.com": [5498], "*.publicradio.org": [10429], "arranca.org": [1212], "images.11main.com": [20], "telfordandwrekin.greenparty.org.uk": [6925], "www.lfait.com": [9072], "*.dhgate.com": [4036], "completelyprivatefiles.com": [3523], "eventmanagement.wustl.edu": [17993], "www.synology.com": [15738], "hiveage.com": [7428], "lynchinteractive.com": [9681], "emsisoft.com": [5223], "*.merchantquest.net": [10278], "verisign.co.jp": [17623], "www.trainingcenter.nih.gov": [11052], "greenwich.greenparty.org.uk": [6925], "media.tmz.com": [15832], "www.scene7.com": [14340], "portal.gradwell.com": [6883], "www.hackerboard.de": [7146], "*.easydns.com": [5024], "feedmyinbox.com": [5739], "bluemountain.com": [2142], "sicuz.unizar.es": [17356], "*.creativelittlereaders.com": [3783], "www.tylercipriani.com": [16905], "thewordpro.com": [18430], "login.alibaba.com": [809], "as00.estara.com": [5367], "www.drserver.net": [4736], "s.ynet.io": [18687], "usfsp.edu": [17275], "www.fishshell.com": [5883], "www.anon.click": [1040], "wiki.yabause.org": [18628], "globusreisen.ch": [19262], "www.ccc.co.il": [2536], "www.rapidshare.com": [13558], "porta.codes": [12933], "www.blankslate.io": [2059], "donate.garyjohnson2012.com": [6464], "xadmin.green.ch": [19228], "www.audioboo.fm": [1359], "azt.allianz.com": [18950], "www.talemetrytoday.com": [15918], "www.nifc.gov": [10924], "images.liftshare.com": [9336], "www.remotecoder.io": [13760], "assets2.jimstatic.com": [8571], "www.ibqonline.com": [7904], "enhr.dict.cc": [4455], "www.jbox.com": [19318], "images-tv.adobe.com": [615], "meetings.internet2.edu": [8279], "film.qq.com": [13284], "security.ncsa.illinois.edu": [17258], "www.ethersheet.org": [5380], "www.tancity.de": [15940], "lobby.clubredgaming.com": [3322], "therealtalk.org": [16233], "www.crosswire.org": [3815], "cyberphoto.fi": [3963], "partners.overdrive.com": [12159], "ads.adriver.ru": [534], "cokecce.com": [3413], "chromedata.com": [3116], "jpackage.org": [8449], "www.elektro-paloucek.cz": [19152], "rbwm.moderngov.co.uk": [19405], "www.rstforums.com": [13465], "www.stgraber.org": [15353], "www.sparx.org.nz": [15227], "southdevon.greenparty.org.uk": [6925], "www.taobao.com": [15952], "base-valid.com": [1686], "todoist.com": [16526], "www.netgo.hu": [11193], "agent.blackphone.ch": [2048], "bradleyf.id.au": [2265], "clients.electricstudio.co.uk": [5149], "sec-i0.mail.com": [9872], "xuan.jd.com": [8423], "www.blocktogether.org": [2089], "api.authbox.io": [1408], "forum.gethashing.com": [6577], "webmail.earthlink.net": [5007], "www.totalrecall.com": [1889], "forum.yunohost.org": [18751], "quirks.com": [13367], "track.affiliate-b.com": [701], "contactus.sky.com": [14924], "ns-cdn.neuweb.biz": [11284], "diasp.org": [4447], "student.gototraining.com": [6788], "www.businesscompanion.info": [2459], "lv.hertzequip.com": [7372], "cotse.net": [3696], "tv.help.sky.com": [14924], "seminary.lds.org": [16219], "pulse.me": [13224], "*.inpros.net": [8158], "sustain.wustl.edu": [17993], "cdn.app.compendium.com": [3516], "wolframscience.com": [18400], "*.communigate.com": [3497], "10.vgc.no": [17484], "apiportal.whitepages.com": [18257], "www.chartio.com": [3024], "recruitment.powys.gov.uk": [19513], "t.j-schmitz.net": [8408], "whitefence.com": [18249], "prod1si.click4assistance.co.uk": [3242], "www.bestvpn.com": [1808], "corporate.cqrollcall.com": [2655], "clock.yandex.kz": [18652], "www.oralb-blendamed.de": [12084], "aerlingus.com": [682], "botconf.eu": [2240], "www.cryptbin.com": [3847], "issue.swisscom.ch": [15698], "corkuniversitypress.com": [3674], "www.cybercamp.es": [3958], "www.berniw.org": [1797], "m.legal.yandex.com": [18651], "selectricity.org": [14566], "www.cp.fonality.com": [3743], "www.hola.org": [7445], "yp4h.osu.edu": [11760], "fundusze-emerytalne.money.pl": [10546, 10547], "placeimg.com": [12753], "www.portadi.com": [12934], "affiliatewindow.com": [4486], "emailvision.com": [5194], "forum.eset.com": [5358], "handelsbanken.fi": [7186], "destroyallsoftware.com": [4396], "warrington.greenparty.org.uk": [6925], "www.r66t.com": [13392], "marketo.net": [10015], "www.lbl.gov": [9065], "kontoeroeffnung.cash.ch": [19043], "ordermychecks.com": [7207], "*.onbeing.org": [11809], "www.getmybalance.com": [6615], "www.automotivelinux.org": [1429], "media9.congstar-media.de": [3576], "www.firstintegrity.com": [5877], "www.vlagtwedde.nl": [11132], "rcm-na.amazon-adsystem.com": [909], "sessioncam.com": [14631], "mbed.org": [10109], "algolia.com": [803], "gdata.co.jp": [6293], "viedemerde.fr": [1815], "wusfnews.wusf.usf.edu": [17274], "www.montyprogram.com": [10569], "sans.edu": [14071], "support.lis.illinois.edu": [17258], "samknows.*": [14257], "www.donmai.us": [19125], "www.charlie.bz": [3013], "wiki.kde.org": [8718], "www.ingentaconnect.com": [8139], "mail.bluepoint.com.ph": [2154], "www.wizards.com": [18387], "www.jasondavies.com": [8523], "www-static.ubuntu-fr.org": [17096], "*.motherjones.com": [10606], "*.cafepress.co.uk": [2716], "sharefest.me": [14676], "plexapp.com": [12815], "scontent-a.cdninstagram.com": [2558], "c.sg.msn.com": [9796], "notabug.org": [11514], "*.belezanaweb.net.br": [1760], "goldsborowebdevelopment.com": [6817], "btguard.com": [1571], "www.floek.net": [5937], "www.tridium.com": [16733], "ijreview.com": [7747], "www.kti.admin.ch": [19648], "developer.jivesoftware.com": [8585], "lvmanagement.com": [9159], "exsila.ch": [19171], "solo-prd.bodleian.ox.ac.uk": [17271], "www.digiday.com": [4476], "static.sourceforge.net": [15174], "unlimited.mail.de": [9873], "hints.netflame.cc": [11227], "www.foundationbeyondbelief.org": [6078], "www.curlingworld.com": [3931], "health.knowledgeblog.org": [8948], "www.yourbittorrent.com": [18723], "lsf.htwg-konstanz.de": [7113], "basildon.objective.co.uk": [19454], "www.mycp.co.nz": [12036], "sondage.leboncoin.fr": [19351], "*.dailyherald.com": [4111], "*.kantarlatam.com": [8785], "s.delvenetworks.com": [4340], "www.courscrypto.org": [3716], "playstation.com": [12795], "mybigcommerce.com": [1853], "www.pcr-online.biz": [8227], "www.orwall.org": [12079], "www.mobile.yandex.com.ua": [18650], "*.socialbakers.com": [15069], "doc.owncloud.org": [12182], "tagged.com": [15909], "www.stunnel.org": [15545], "www.panoptykon.org": [12365], "jotform.com": [8637], "manual.limesurvey.org": [9356], "secure.freedesktop.org": [6126], "www.siff.net": [14121], "pic.afisha.mail.ru": [9874], "www.memberful.com": [10247], "nieuws.asnbank.nl": [351], "idgfm.corp.aol.com": [321], "chzb.gr": [3056], "polibuda4life.dosowisko.net": [4688], "www.bioxfel.org": [1904], "www.morningstar.co.uk": [10595], "number4.herefordshire.gov.uk": [7327], "www.marketing.htwk-leipzig.de": [7114], "bioinformatics.crick.ac.uk": [19090], "www.podtrac.com": [19502], "www.esrb.org": [4964], "constructor.maps.yandex.com": [18651], "kea.nu": [2292], "english.al-akhbar.com": [772], "spectrum.stanford.edu": [15383], "*.cloudset.net": [3315], "blog.haproxy.com": [7045], "safecurves.cr.yp.to": [3748], "insider.businessinsider.com": [2454], "poweredbypaquin.com": [12999], "abuse.vutbr.cz": [17522], "sub.ft.com": [5826], "www.smyl.es": [14141], "firsts.com": [5880], "printm3d.com": [13068], "turbosquid.com": [16836], "ad.us-ec.adtechus.com": [639], "*.supadupa.me": [15611], "*.sgkb.ch": [19333], "cloudswitch.com": [3296], "suite.io": [15586], "forums.sabnzbd.org": [14215], "ecitizen.walthamforest.gov.uk": [17966], "cp.zoneedit.com": [18893], "cdn.filefactory.com": [5789], "osumychart.osumc.edu": [11676], "platformadmin.com": [12785], "*.legtux.org": [9236], "www.nccam.nih.gov": [11052], "www.fishwrapper.com": [5884], "www.jetbrains.com": [8559], "www.sirrix.de": [14859], "windowsphone.com": [18346], "mygoya.de": [10832], "www.insurance.va.gov": [17019], "www.osec.pl": [11911], "chat.freed0m4all.net": [6163], "public.nurd.space": [10976], "knowledge.verisign.co.uk": [17623], "dev.mysql.com": [10780], "*.nhmrc.gov.au": [11069], "themler.com": [16343], "meetic.pt": [10215], "signup.network-maker.com": [11270], "asset-1.java.net": [8525], "*.progreso.pl": [13131], "www.linux.com": [9403], "faq.gymglish.com": [7037], "*.sc.edu": [14085], "jobs.dwolla.com": [4816], "forum.gsmhosting.com": [6992], "*.covisint.com": [3736], "www.apnaindia.com": [1096], "*.reimanpub.com": [13746], "certs.vutbr.cz": [17522], "fraglive.cl": [6094], "www.ianonym.com": [7673], "webmail.web4all.fr": [18052], "www.tuftsmedicalcenter.org": [16820], "calispora.org": [2752], "www.ntk.me": [11554], "tools.verisignlabs.com": [17624], "www.betvictor.com": [17670], "oekostrom.web.de": [18050], "lms4.learnshare.com": [9210], "www.about.me": [424], "secure.broadland.gov.uk": [2357], "piratehd.com": [12704], "blog.openlibrary.archive.org": [8271], "lobbyradar.de": [19800], "ocien.tm.com.my": [16083], "www.tmz.com": [15832], "junostatic.com": [8684], "www.1and1.ca": [52], "openshift.redhat.com": [13675], "jitscale.com": [8581], "www2.enphase.com": [5283], "photos.univers-libre.net": [17226], "www-rba.educ.cam.ac.uk": [17243], "freedomboxfoundation.org": [6174], "preyproject.com": [13044], "cdn.gusto.com": [7027], "eprize.com": [4946], "postaonline.cz": [2974], "anz.com": [315], "www.zdmcirc.com": [18760], "my.psychologytoday.com": [13189], "git.xenomai.org": [18565], "*.4chan-ads.org": [158], "www.processing.org": [13120], "images.bertrams.com": [1820], "oncampus.csr.oberlin.edu": [11698], "tanks.mail.ru": [9874], "www.getmymgmbalance.com": [6615], "gmocloud.com": [6343], "www.phihold.be": [12619], "nypf.org.uk": [19448], "www.textpad.com": [16158], "wikileaks.org": [18291], "techslinger.com": [16051], "s.ppy.sh": [13006], "*.customersvc.com": [3943], "cch.law.stanford.edu": [15383], "mail.sedo.de": [14543], "cache.freescale.com": [6183], "login.vutbr.cz": [17522], "player.kent.ac.uk": [17317], "oe24.at": [11728], "pardot.com": [12399], "wiki.novell.com": [11530], "*.dealextreme.com": [4253], "mail.python.org": [13272], "login.iis.net": [7741], "tchibo.sk": [15985], "dingyue.taobao.com": [15952], "wonga.com": [18414], "oks.enaza.ru": [5230], "support.ccbill.com": [2534], "blog.matatall.com": [10063], "pieperhome.de": [19493], "bitcoin.com": [1965], "www.bauwesen.htwk-leipzig.de": [7114], "www.test-ipv6.cz": [16143], "photos.pcpro.co.uk": [12228], "*.scribdassets.com": [14414], "lpac.co.uk": [9094], "box.illinois.edu": [17258], "jezebel.com": [8564], "*.crossref.org": [3814], "secure.iphone.mtvn.com": [17661], "asterix.uvt.nl": [16445], "snowdenarchive.cjfe.org": [2619], "www.wed.is": [18176], "bigcityplan.birmingham.gov.uk": [19000], "www.liquidlight.co.uk": [9444], "www.connect.me": [3580], "attribute.adometry.com": [621], "api.wipmania.com": [17912], "lucy.apache.org": [1086], "docs.clusterhq.com": [3323], "*.uvcdn.com": [17459], "www.booktype.pro": [2206], "zaragoza.es": [19778], "*.corecode.at": [3661], "www.vsipprogram.com": [17513], "www.hellosign.com": [7298], "www.ping.fm": [12681], "www.wetstonetech.com": [18223], "www.itc.u-tokyo.ac.jp": [16919], "www.census-labs.com": [2940], "*.pega.com": [12526], "texastribune.org": [16156], "www.onename.com": [11836], "community.mcafee.com": [10114], "www.xnet.cz": [18531], "www.purecambogia.com": [13241], "www.itrust.org.cn": [8393], "ww2.wirral.gov.uk": [18371], "www.lever.co": [9269], "*.widgetserver.com": [18282], "hillingdon.greenparty.org.uk": [6925], "www.sexnarod.ru": [14640], "www.972mag.com": [210], "unisend.com.mx": [17198], "www.bluechip.hu": [2146], "economicimpact.uic.edu": [17231], "p.po.st": [12834], "www.av-comparatives.org": [370], "applicantid.cornell.edu": [3676], "*.aemi.edu.au": [278], "*.hbrstatic.com": [2937], "www.microspot.ch": [3645], "www.capitolmachine.com": [2821], "wordtothewise.com": [18431], "www.loanliner.com": [9532], "forgestaging.puppetlabs.com": [13232], "operations.sumologic.com": [15592], "nes.ncdc.noaa.gov": [11083], "geneseephoto.com": [6525], "www.giving.cornell.edu": [3676], "kohls.com": [8956], "eventsstg.linuxfoundation.org": [9412], "www.nti.org": [10961], "helpcenter.capitalone360.com": [2819], "boc.engineering.osu.edu": [11760], "email.webtrends.com": [18171], "fosscon.us": [6070], "www.robertsspaceindustries.com": [13922], "coventry.firmstep.com": [19183], "www.shepherdsfriendly.co.uk": [14699], "developers.2checkout.com": [82], "www.phy.ornl.gov": [11693], "semantic-mediawiki.org": [19581], "www.helbing.ch": [19245], "www.police.wustl.edu": [17993], "www.bytemark.co.uk": [2489], "www1.mplayerhq.hu": [9784], "www.filezilla-project.org": [5796], "www.ru-golos.ru": [13477], "*.cashback.co.uk": [2881], "status.docker.com": [4616], "aboutmyvote.co.uk": [427], "onestop.umn.edu": [17268], "fimfiction.net": [5816], "huggies.com.au": [7602], "www.alumni.ox.ac.uk": [17271], "ressources.w4a.fr": [17890], "blesta.com": [2070], "webmail.pobox.com": [12835], "joshtriplett.org": [8635], "help.remind.com": [13759], "rtd.rt.com": [13468], "www.accuenmedia.com": [466], "secure.trust-guard.com": [16780], "www.sysmex.com": [15755], "voltage.com": [17832], "www.vkontakte.ru": [17490, 17494], "api.posteo.de": [12969], "cancermodels.nci.nih.gov": [11052], "pccomponentes.com": [19482], "iono.fm": [8341], "library.ecc-platform.org": [4879], "netsparker.com": [11250], "outlook.wustl.edu": [17993], "stats.owncloud.org": [12182], "www.aspplayground.net": [355], "msi.tmall.com": [19684], "transactauto.com": [16662], "promo.rhb.ch": [13857], "developers.urx.com": [17016], "www.freightcalculator.com.au": [6193], "www.samssoftware.com.au": [14262], "teo.lt": [16118], "freefind.com": [6127], "*.unileoben.ac.at": [17178], "californiaunitedbank.com": [2750], "ced.sascdn.com": [14982], "www.purdueplantdoctor.com": [13234], "icenter.stanford.edu": [15383], "yunohost.org": [18751], "global.blackberry.com": [2050], "portal.cisofy.com": [2616], "dfsweb.web.cern.ch": [2575], "studentservices.leeds.ac.uk": [17318], "www.5july.org": [175], "proxy.lib.ohio-state.edu": [11761], "www.endpoint.com": [5243], "www.ontrac.com": [11892], "omi.osu.edu": [11760], "toolserver.org": [18296], "www.michaelwlucas.com": [10341], "*.emc.com": [4929], "www.localist.com": [9541], "pass.tmall.com": [19684], "fteproxy.org": [6240], "woz.ch": [18467], "conditionsurveys.southampton.gov.uk": [15191], "www.mediaquestcorp.com": [10181], "www.fitnessmarket.com.au": [5889], "onswitchit.ca": [11816], "idrix.fr": [7707], "resources.vzaar.com": [17883], "sap.hslu.ch": [7583], "secure.hbo.com": [7047], "*.qualtrics.com": [13332], "godvillegame.com": [6804], "*.tau.ac.il": [15786], "linuxacademy.com": [9418], "www.mjg.in": [9753], "danny.mantor.org": [9963], "mantor.org": [9963], "lifehacker.com": [9331], "www.amway.com": [888], "defaultsmblog.stanford.edu": [15383], "www.tdf-telecom.fr": [15801], "www.kent.gov.uk": [8851], "teamxlink.co.uk": [16006], "assetstest.acs.org": [929], "*.ssl.qhimg.com": [13302], "moderngov.sutton.gov.uk": [19643], "waeplus.co.uk": [17892], "sherrin.com.au": [14701], "vidarholen.net": [17680], "www.isv.liu.se": [9084], "s.cmcdn.net": [3327], "zakupki.rt.com": [13468], "www.spacex.com": [15209], "my.polyu.edu.hk": [12891], "ifttt.com": [7725], "*.uci.edu": [17242], "pit-format-online.pl": [19496], "nationalexpress.com": [11050], "adsby.webtraffic.se": [18167], "mx.norton.com": [11505], "www.heusden.nl": [11132], "directline.com": [4526], "arbitrage.webmoney.ru": [18076], "www.mercurial-scm.org": [10279], "tubeoffline.com": [16815], "mdev.gogobot.com": [6808], "*.limun.org": [9359], "power.org": [12989], "o2online.de": [11602], "*.4cdn.org": [158], "www.elatinos.com": [4927], "www.polk.com": [12879], "www.effi.org": [5110], "cjib.nl": [11132], "help.smartertools.com": [14996], "git.gitbook.com": [6674], "idms.financialpost.com": [5825], "partner.ncloud.dk": [11118], "eduroam.org": [5100], "www.freepracticetests.org": [6156], "bitchmagazine.org": [1955], "ted.ucsd.edu": [16939], "kamchatka.rt.ru": [13469], "emea.littlehotelier.com": [9474], "intelliot.com": [8217], "bokelskere.no": [2184], "jackandjillraffle.org": [8481], "www.securepoint.de": [14509], "*.img.digitalriver.com": [4483], "gml.cz": [6757], "www.compose.io": [3526], "roundcube.carezone.cz": [2849], "youtube.com.jo": [18709], "developer.github.com": [6680], "datacenterworld.com": [4191], "cs.marinsoftware.com": [9997], "www.brennannovak.com": [2303], "youtube.com.mx": [18709], "srm.de": [14168], "www.red-bean.com": [13665], "studentchaptersreview.acs.org": [929], "dmtracking2.alibaba.com": [809], "elearning.nursing.osu.edu": [11760], "api.rasp.yandex.by": [18648], "*.bhosted.nl": [1518], "m.dailykos.com": [4117], "blog.gravity.com": [18428], "prometric.com": [13152], "gju1.alicdn.com": [805], "youtube.hr": [18709], "base.de": [1491], "www.tape.tv": [15956], "*.providesupport.com": [13174], "www.keepassx.org": [8834], "menus.livingsocial.com": [9517], "desmond.yfrog.com": [19791], "scott.arciszewski.me": [1172], "land-der-ideen.de": [9138], "optify.net": [12067], "uhr.stanford.edu": [15383], "downloads6.mamp.info": [19379], "app-updates.agilebits.com": [727], "www.broadcasthe.net": [2354], "journal-republican.com": [12657], "culture.wnyc.org": [17916], "*.thinkingchristian.net": [16365], "autodiscover.as.leeds.ac.uk": [17318], "lists.illinois.edu": [17258], "online.maine.edu": [17322], "passport-ckicheck.yandex.by": [18648], "blogs.faz.net": [5554], "oses.tm.com.my": [16083], "censys.io": [2941], "motherboard-images.vice.com": [17667], "lulea.se": [9656], "torbit.com": [16570], "secure.powertech.no": [12994], "wog.ch": [18451], "projectmeshnet.org": [13139], "technologyreview.in": [19666], "www.flightglobalimages.com": [5920], "lib.stanford.edu": [15383], "procurement.usc.edu": [17278], "www.tocco.ch": [16524], "belpino.se": [1770], "archangelsk.rt.ru": [13469], "securedrop.theguardian.com": [16288], "manutan.fr": [9965], "frallc.com": [5592], "www.cirt.net": [2613], "explosm.net": [5511], "www.origin.digicert.com": [4473], "pingidentity.com": [12684], "*.electoralcommission.org.uk": [5147], "*.discovernetwork.com": [4552], "rotherham.gov.uk": [13979], "www.telekom.hu": [9863], "kubuntuforums.net": [9030], "tenpay.com": [16114], "blog.lenovo.com": [9251], "www.web-hosting.com": [18044], "www.magictouch.com": [9858], "howtowriteabookasap.com": [6716], "www.voat.co": [17809], "*.capture.umbel.com": [17142], "www.thegreatcoursesplus.com": [16284], "www.cbp.gov": [2523], "webmail.ovh.net": [12173], "lh3.google.co.*": [6837], "meded.dom.wustl.edu": [17992], "script.google.com": [6834], "www.cospar-assembly.org": [2641], "www.glowing.com": [6751], "*.flurry.com": [5954], "www.strasbourg.eu": [15506], "www.propertyinvesting.com": [13160], "www.tryhaskell.org": [16805], "webmail.gresille.org": [6945], "citizensinformation.ie": [3176], "istlsfastyet.com": [8363], "marinsoftware.de": [9996], "*.vpn.alaska.edu": [17235], "ncp-e.com": [19428], "gju2.alicdn.com": [805], "softperfect.com": [15095], "ethz.ch": [4975], "andre.hemk.es": [7315], "honors.utdallas.edu": [17071], "www.utrecht.nl": [11132], "timbro.se": [16453], "servicestatus.sky.com": [14924], "www.starmotorcycles.com": [15389], "www.cpanel.com": [2651], "registryrocket.com": [13737], "act.freepress.net": [6147], "lib.calpoly.edu": [2747], "antibodies.cancer.gov": [2805], "zyngaplayersupport.com": [18934], "elgiganten.se": [5162], "img1.xcart.com": [18505], "s.twimg.com": [16877], "careers.dbs.com": [4010], "open.manchester.gov.uk": [9944], "qrd.qualcomm.com": [13328], "axosoft.com": [1477], "git.renater.fr": [13764], "www.pagekite.net": [12330], "bluewin.wemfbox.ch": [2157], "cdn.evidon.com": [5458], "myaccount.hackney.gov.uk": [7156], "modsecurity.org": [10514], "servercrate.com": [14605], "youtube.co.ma": [18709], "www.lichfielddc.gov.uk": [19364], "nucleus.nursing.osu.edu": [11760], "www.cinapalace.com": [3137], "drm.info": [4080], "www.dmlp.org": [4046], "*.pentacon-dresden.de": [14358], "www.uni-kl.de": [17169], "cryptostorm.org": [3891], "bugs.openmw.org": [11954], "www.mediamarkt.es": [19774], "*.emknowledge.gov.au": [1389], "www.tookapic.com": [16553], "ato.gov.au": [1402], "www.xeromag.com": [18566], "websvn.kde.org": [8718], "www.harlandclarkewebsmart.com": [7207], "botbot.me": [2238], "www.wildfiregames.com": [18308], "mbank.pl": [9722], "subply.com": [15555], "www.truthinadvertising.org": [16802], "*.sae.kau.se": [8707], "esec-lab.sogeti.com": [15101], "www.powerdns.com": [12990], "tdm.pharm.buffalo.edu": [17297], "ssl.trendmicro.com": [16717], "cdn2.kongcdn.com": [8976], "payments.valeofglamorgan.gov.uk": [17532], "*.morrisonscellar.com": [10602], "marionstar.com": [10001], "www.twisp.me": [16882], "www.vice.com": [17667], "*.invodo.com": [8331], "*.o2.de": [16076], "commerce.microsoft.com": [10364], "wsw.afip.gob.ar": [18945], "www.enom.com": [5281], "philzimmermann.com": [12620], "partner.gmocloud.com": [6343], "ghrc.nsstc.nasa.gov": [10869], "douban.com": [4707], "www.ashford.com": [1252], "jpg.st.audiko.net": [1357], "www.youtube.it": [18709], "www.kipoint.it": [8913], "das-labor.org": [4159], "srv.asknet.com": [1268], "www.adlibris.com": [603], "musikskole-tilmelding.dk": [10722], "www.ringcentral.com": [13891], "www.ekomi.co.za": [4921], "d.me": [3994], "www.projet-plume.org": [13145], "lgbtiq-greens.greenparty.org.uk": [6925], "library.rit.edu": [13434], "www.wupaymentsolutions.com": [17935], "newrelic.com": [11291], "*.hcl.in": [7050], "news-images.vice.com": [17667], "*.lfhair.com": [9075], "youtube.de": [18709], "analytics.zipy.co.il": [18875], "www.icracked.com": [7702], "rcc.stanford.edu": [15383], "truthinadvertising.org": [16802], "jacksfetishtube.com": [8484], "www.oaklandish.com": [11694], "corporate.aldi.us": [299], "*.commondatastorage.googleapis.com": [6839], "postgresql.eu": [12974], "www.flixbus.se": [5931], "www.pumo.com.tw": [13229], "spelthorne.firmstep.com": [19183], "dynamics.com": [4829], "ipv4.doesnotwork.eu": [4632], "appdevelopermagazine.com": [1112], "viveris.fr": [17798], "www.semaphoreci.com": [14571], "www.thecommunicationtrust.org.uk": [19674], "www.fftlive.org": [5567], "ipaddresslabs.com": [7788], "ssl.panoramio.com": [12367], "billetten.dk": [1880], "*.telia.se": [16099], "*.channelintelligence.com": [3001], "n-4-2.dcs.redcdn.pl": [13685], "o.aolcdn.com": [323], "www.hertz.ie": [7351], "www.alertsite.com": [14986], "synaptop.com": [15724], "backoffice.botscanner.com": [2239], "www.hertz.it": [7352], "*.and.co.uk": [4599], "images.12wbt.com": [10343], "kontalk.org": [8980], "support-en.upc-cablecom.ch": [19716], "respectourprivacy.com": [13813], "mitro.co": [10460], "storefront.nr-assets.net": [10953], "varuste.net": [17570], "goto.google.com": [6834], "www.smallingerland.nl": [11132], "*.kriso.ee": [9013], "dge.stanford.edu": [15383], "nuevasync.com": [11570], "beacon-dub-nopii.krxd.net": [9016], "my.everplans.com": [5451], "multimedia.hrw.org": [7612], "www.twylah.com": [16902], "pce.uw.edu": [17077], "www.xpd.se": [18533], "status.mediatemple.net": [10165], "static.trustedreviews.com": [16792], "litecoin.info": [9461], "www.jobs.barclays.co.uk": [1662], "insightseries.splashthat.com": [15281], "djoser.nl": [7452], "www.kdoes.nl": [8832], "jamadu.ch": [3644], "*.akg.com": [7208], "corelio.be": [3672], "www.opensvc.com": [11972], "secure.netistrar.com": [11238], "page.ly": [12331], "autodiscover.macfound.org": [9818], "linksmail.de": [9380], "law.wustl.edu": [17993], "de-is.dict.cc": [4455], "*.useresponse.com": [17422], "kazan.rt.ru": [13469], "irssi.org": [8359], "www.pacbsd.org": [12307], "www.tango.me": [15946], "www.g2a.com": [6296], "www.yourkarma.com": [18728], "billing.camelhost.net": [2773], "www.zdrojak.cz": [18807], "slm-assets2.secondlife.com": [14462], "afsic.nal.usda.gov": [17209], "tools.wmflabs.org": [18296], "pr.norton.com": [11505], "*.brenet.de": [2296], "swisspost.ch": [12949], "www.ugenr.dk": [17116], "voipdistributor.net": [17808], "*.bmmetrix.com": [2161], "news.illinois.edu": [17258], "wiki.jasig.org": [8522], "ssp-rce.veeseo.com": [17587], "www.mysciencework.com": [10781], "kopiosto.fi": [8983], "adwords.google.*": [6837], "vvztahy.vutbr.cz": [17522], "www.gigaset.com": [6655], "itunes.swisscom.com": [15698], "*.mobstac.com": [10487], "www.yellowpagesoptout.com": [18672], "www.vogogo.com": [19740], "ecoscentric.com": [4886], "m.office.co.uk": [11742], "panic.com": [12361], "www.youtube.com.ar": [18709], "forum.mythtv.org": [10849], "www.ja.hideki.hclippr.com": [7051], "a.orkut.gmodules.com": [12110], "suggests.rasp.yandex.com.tr": [18649], "pit.dirty.ru": [4536], "*.banners.victor.com": [17670], "productimages.nimbledeals.com": [11407], "*.yoctoproject.org": [18688], "www.foodhub.co.nz": [6000], "www.toolserver.org": [18296], "nearlyfreespeech.net": [11122], "acorns.com": [475], "myprofile.oracle.com": [12082], "www.shands.org": [17253], "*.schetu.net": [14350], "autodiscover.eecs.berkeley.edu": [17240], "crocs.com": [3807], "www.451research.com": [145], "rhinosupport.com": [13862], "conference.libreoffice.org": [9311], "webgility.com": [18118], "sustainablebusiness.com": [15666], "mirage.io": [10438], "d66.nl": [4000], "paypal.co.uk": [12467], "*.kernel.org": [8857], "*.bcv.ch": [19333], "joomla.org": [8627], "debug.fastly.com": [5687], "www.secureuk.net": [14513], "www.informahealthcarestore.com": [8120], "cdn.tubemogul.com": [16814], "vpsmanager.vc-server.de": [17472], "nationwide-jobs.co.uk": [11091], "wifi.xfinity.com": [19784], "engineering.mit.edu": [9749], "www.heroup.com": [7331], "account.jwplayer.com": [9589], "images.eurogamer.net": [5416], "evals.wustl.edu": [17993], "*.jeffnabers.com": [8546], "www.sivers.org": [14888], "www.noisebridge.net": [11458], "www.platform.sh": [12784], "www.anonymousads.com": [1051], "www.surf.nl": [14197], "*.cardealerstudy.com": [1531], "consumersniper.com": [3601], "nttdocomo.com": [10968], "www.bizland.com": [2029], "aka.ms": [296], "bespoke.hertz.com": [7372], "www.lumendatabase.org": [9661], "panel.cj2.nl": [2618], "health.ucsd.edu": [16939], "ssl-cdn-media.tmz.com": [15832], "16personalities.com": [38], "*.aspen.com": [1272], "www.netsparker.com": [11250], "www.bulksms.co.uk": [2415], "80.93.17.242": [4512], "lugons.org": [9108], "chitika.net": [3091], "cdn6.iconfinder.com": [7921], "media10.congstar-media.de": [3576], "www.scribusstuff.org": [19461], "tomtom.com": [16540], "*.dyne.org": [4834], "*.fotki.com": [6073], "budgetplanner.adviceguide.org.uk": [665], "fuskator.com": [6279], "*.audienceiq.com": [1355], "srv.cdn-asknet.com": [1268], "www.okcoin.com": [11628], "telerik-web-assets.com": [16093], "unrealircd.org": [17364], "docs.nodejitsu.com": [11453], "staging-cq.citrix.com": [3178], "chroniclebooks.com": [10120], "nuxx.net": [11588], "site-cdn2.ghosteryenterprise.com": [6630], "www.internet-radio.com": [8273], "co.clickandpledge.com": [3255], "app.resilientsystems.com": [13805], "nex.sx": [11353], "www.zeringo.com": [18836], "i2p2.de": [7658], "forum.vodafone.co.nz": [17812], "albin.web.de": [18050], "unixmen.com": [17355], "*.transparencytoolkit.org": [16680], "businessapps.swisscom.ch": [15698], "pwdhash.com": [13261], "adultcineporn.com": [648], "abc.alipay.com": [817], "brockman.com": [2358], "pogoda.yandex.com.ua": [18650], "blog.shopstyle.co.uk": [14719], "extensions.libreoffice.org": [9310], "caits.iu.edu": [8064], "afford.com": [705], "sustainability.asu.edu": [1195], "*.foreseeresults.com": [6022], "trm128.brassring.com": [19017], "*.cyberwar.nl": [3977], "sitesafe.org.nz": [14878], "executiveinterviews.biz": [5488], "www.tastekid.com": [15973], "sexualviolence.wustl.edu": [17993], "*.collegeboundfund.com": [3426], "migrosmagazin.ch": [19399], "www.kabeldeutschland.com": [8760], "offcloud.com": [11735], "portal.scanscout.com": [14339], "*.techendo.com": [16027], "www.siemens.com.*": [14770], "www.fafsalivehelp01.ed.gov": [4889], "static.fatwallet.com": [5691], "www.alphadominche.com": [868], "skydrive.live.com": [9483], "kabeldeutschland.de": [8760], "www.gdata.be": [6293], "www.dyn.com": [4820], "www.fbnstatic.com": [6085], "www2.physics.ox.ac.uk": [17271], "*.viewmychart.com": [10752], "api.thebrighttag.com": [2325], "images.dt-static.com": [4660], "www.portrait.gov.au": [11072], "cottages4you.co.uk": [18490], "it.johnshopkins.edu": [8611], "dn-bterimg.qbox.me": [13299], "docs.nexcess.net": [11356], "www.registration123.com": [13734], "demo.owncloud.org": [12182], "adscale.de": [626], "iptorrents.us": [7798], "www.jua.com": [8462], "vis.occrp.org": [11611], "asset-5.soupcdn.com": [15167], "enpl.dict.cc": [4455], "www.just-eat.be": [19328], "tv.jobindex.dk": [8597], "www.techxpress.net": [16022], "www.ibood.com": [7903], "portmorgan.com": [12932], "aacqa.gov.au": [231], "beta.kontalk.net": [8980], "www.turtl.it": [16847], "f.money.chtah.net": [3127], "*.gridzdirect.com": [6952], "fanhattan.com": [5654], "www.fastclick.com": [17541], "london2011.drupal.org": [4780], "www.scintilla.utwente.nl": [14387], "guidestar.org": [7007], "rca.org": [13403], "strategic.usc.edu": [17278], "klient.ppl.cz": [12283], "haiku-os.org": [7163], "younited.com": [18719], "ookla.com": [11895], "*.unvanquished.net": [17374], "slm-assets0.secondlife.com": [14462], "www.popads.net": [12902], "signup.hasoffers.com": [7222], "www.plugunplug.net": [12825], "blog.plug.dj": [12822], "bennetts.co.uk": [1779], "vtiger.com": [17866], "*.modcloth.net": [10511], "www.freeprivacypolicy.com": [6716], "apwg.org": [1066], "global.wustl.edu": [17993], "partner.robokassa.ru": [13927], "www.univers-libre.net": [17226], "www.pipl.com": [12701], "pss.united.com": [17212], "idi.ntnu.no": [10964], "lists.nongnu.org": [5600], "www-cdn.pardot.com": [12399], "visualstudiogallery.msdn.microsoft.com": [10364], "www.panax.net": [12355], "mailstation.de": [9891], "bettersales.se": [1829], "blog.maxcdn.com": [10091], "planet.debianforum.de": [4276], "plsiii.plsinfo.org": [12537], "csc.ncsu.edu": [11491], "m.v.qq.com": [13284], "agent.mail.ru": [9874], "www.icehost.is": [7915], "www.wdr2.de": [18015], "piwik.documentfoundation.org": [16221], "www.jobfinder.dk": [8596], "myed.wachovia.com": [17941], "www.bespied-ons-niet.nl": [1800], "pipl.com": [12701], "webmercs.no": [4170], "truecrypt.org": [16772], "*.zenfolio.com": [18827], "www.draugr.de": [4743], "set-hiring.cs.stonybrook.edu": [15480], "www.bankrate.com": [1651], "www.cedia.org.ec": [2570], "rockzi.com": [13443], "www.gnu.pl": [6358], "www.xine-project.org": [18573], "*.debian-art.org": [19462], "www.ilmasto-opas.fi": [7971], "*.chase.com": [3026], "images.crocs.com": [3807], "bst8.gismeteo.ru": [6669], "www.3dsupply.de": [133], "www.euroforum.com": [5413], "a3.mzstatic.com": [10852], "domainsbyproxy.com": [4664], "www.mikemasin.com": [10385], "securelime.com": [14503], "careers.stackoverflow.com": [15359], "jua.com": [8462], "www.adium.im": [595], "ablegamers.com": [420], "forms.canterbury.gov.uk": [2811], "arachnys.com": [1149], "ice.gov": [17021], "suntimes.com": [15594], "molevalley.objective.co.uk": [19454], "www.ntnu.no": [10964], "www.portal.leeds.ac.uk": [17318], "active24.cz": [18938], "cubehash.cr.yp.to": [3748], "www.jba.io": [8538], "intelligentexploit.com": [8216], "billing.helpjuice.com": [7309], "*.bitdeli.com": [1989], "www.constantcontact.com": [3592], "static.rubyforge.org": [14019], "admin.1and1.co.uk": [53], "*.systemcenteradvisor.net": [15760], "www.bitgamer.com": [1996], "img.realty.mail.ru": [9874], "www.anpdm.com": [1053], "www.list.co.uk": [16199], "www.chcidoo2.cz": [16076], "graphics.friendfinder.com": [6213], "www.dreamnews.jp": [4750], "authbox.io": [1408], "glossary.knowledgeblog.org": [8948], "account.bitmain.com": [2003], "support.foursquare.com": [6082], "www.videogamegeek.com": [17685], "www.verisign.com.br": [17623], "zencache.com": [18817], "exploithub.com": [5509], "images.sciencedaily.com": [14378], "www.igaming.biz": [7732], "intelliworkschat.com": [8220], "www.hh.se": [7061], "bitterwallet.com": [7548], "a5.sphotos.ak.fbcdn.net": [5700], "hertz.co.uk": [7371], "karriere.aldi-sued.de": [299], "www.laughingsquid.us": [9166], "is20.snstatic.fi": [14145], "*.dagbladet.no": [4107], "umwblogs.org": [17261], "*.sidereel.com": [14762], "irb.fraunhofer.de": [6112], "spm.southwark.gov.uk": [15196], "cdn.culturesforhealth.com": [3917], "creatavist.com": [3770], "image.spreadshirtmedia.net": [15300], "app.resrc.it": [13599], "www.shaun.net": [14685], "www.blake2.net": [19006], "mail.netscape.com": [11248], "cdn.unibet.com.au": [17179], "toofishes.net": [16551], "lha-direct.voa.gov.uk": [19739], "atinternet-solutions.com": [363], "cloudfront.debian.net": [4273], "intelli-direct.com": [8214], "piriform.com": [12725], "sehirfirsati.com": [14562], "www.liberis.co.uk": [19362], "*.represent.us": [13788], "mvapich.cse.ohio-state.edu": [11759], "lady.mail.ru": [9874], "www.neustar.com": [11282], "kncminer.com": [8938], "*.verzekeringssite.nl": [17648], "dn.dk": [4054], "www.providesupport.ru": [13173], "*.mail2web.com": [15090], "www.grouponworks.com": [6979], "ielts.org": [7719], "llwebprod2.ll.mit.edu": [9749], "amarok.kde.org": [8718], "kamila.mysql.cesky-hosting.cz": [19051], "lpc-afs.web.cern.ch": [2575], "*.tictail.com": [16428], "ecm74.com": [5052], "calendar.google.com": [6834], "nd.edu": [17329], "blog.foreignpolicy.com": [6024], "blog.ikoula.com": [7963], "rambler.ru": [13540], "blog.popcorntime.io": [12915], "stablelib.com": [15358], "*.billiongraves.com": [1883], "resweb.passkey.com": [12430], "extranet.wienenergie.at": [18284], "www.downloadhelper.net": [4725], "*.blaze.com": [2061], "jumpingjack.com": [8675], "zombeewatch.org": [18891], "publicsuffix.org": [13215], "*.yourmoney.ch": [19333], "jsbi.org": [8456], "mol.gov.sa": [14306], "majestic12.co.uk": [9898], "filehosting.sanet.me": [14077], "login.web.de": [18050], "mozilla-russia.org": [10651], "*.switchplus.ch": [15706], "buddypress.org": [2391], "pages.qualcomm.com": [13328], "careers.checkpoint.com": [3048], "*.t.eloqua.com": [5179], "group.xakep.ru": [18539], "img.bol.de": [16171], "www.mpagano.com": [10669], "oncourse.iu.edu": [8064], "accessweb.publish.uic.edu": [17231], "forums.ouvaton.org": [12155], "idp.godaddy.com": [6773], "wikiwand.com": [19759], "asset-3.soupcdn.com": [15167], "blog.nvisium.com": [10986], "circularhub.com": [3157], "sharing.ashampoo.com": [1250], "*.policymic.com": [12866], "www.fiercewireless.com": [5778], "taxbenefits.sheffield.gov.uk": [14694], "variomedia.de": [17567], "cash.ch": [19043], "jsk.stanford.edu": [15384], "*.homelessveterans.co.uk": [7478], "ad-juster.com": [512], "2ch.cm": [91], "sec-sso.click-sec.com": [3241], "www.acnc.gov.au": [263], "*.wpdigital.net": [17927], "shop.die-linke.de": [4457], "metrica.yandex.com": [18651], "wubio.wustl.edu": [17993], "leapmotion.com": [9209], "nouveau.freedesktop.org": [6126], "www.asacp.org": [344], "*.m-privacy.de": [9693], "www.multicore-devcon.com": [10700], "nlayer.net": [10939], "ssl.net-m.net": [11212], "live.1nsk.ru": [60], "www.idnet.net": [7706], "suche.gmx.net": [6350], "harland.com": [7207], "firma.money.pl": [10546], "trust-it.gr": [16781], "kaluga.rt.ru": [13469], "member.hide.me": [7391], "mediafire.com": [10151], "static4.businessinsider.com": [2454], "wiki.rit.edu": [13434], "fs01.androidpit.info": [1009], "www.atsec.com": [1332], "insa-strasbourg.fr": [8192], "sprintrebates.com": [15316], "babbel.com": [1590], "oastats.mit.edu": [9749], "midkemiaonline.com": [19398], "hon.ch": [7088], "*.mynewsdesk.com": [10841], "static.bn-static.com": [1533], "www.impactsoftcompany.com": [8012], "assets.mcc.gov": [19388], "*.catalysthost.com": [2897], "beta.stacksocial.com": [15363], "theticketfactory.com": [16416], "qa.fastmail.fm": [5688], "heroku.com": [7332], "lists.nic.cz": [11379], "www.copyright.com": [3657], "pop.claranet.de": [3212], "nhs.uk": [10913], "keys.pbsci.ucsc.edu": [17304], "www.yopto.com": [18693], "www.joomlancers.com": [8629], "d.rlcdn.com": [13435], "labintel.cnrs.fr": [6195], "nlbb.engineering.osu.edu": [11760], "kaneva.com": [8780], "rspcashop.co.uk": [13462], "www.travelrepublic.co.uk": [16695], "app.fastshoppingcart.com": [13359], "www.playerio.com": [12804], "delivery.support.theplatform.com": [16230], "commsys.isy.liu.se": [9083], "*.totalwebsecure.com": [16605], "enterprisezones.gov.wales": [6860], "djurrattsalliansen.se": [4594], "swedbank.nl": [15682], "voa.gov.uk": [19739], "www.konstfack.se": [8979], "www.mathbuntu.org": [10067], "*.bild.de": [1874], "www.oxforddictionaries.com": [12191], "it-offshore.co.uk": [7840], "www.filmlush.com": [5811], "*.scsstatic.ch": [14428], "www.internetevolution.com": [4404], "samsclass.info": [14263], "reading.ac.uk": [17335], "www.studentlife.osu.edu": [11760], "bundestag.de": [4414], "piwik.oppelt.com": [12059], "*.chatoncdn.com": [3030], "savvyhawk.com": [14317], "tmt.org": [16370], "www.digilinux.ru": [4478], "ds4.static.rtbf.be": [14011], "www.videopp.com": [17689], "trashmail.net": [16688], "mobilfunk.tchibo.de": [15985], "computerworld.com": [3534], "post.update.chartbeat.com": [3018], "hosting.earthlink.net": [5007], "www.cheapssls.com": [3042], "ergon.ch": [5340], "sslcam.news.com.au": [11338], "yplanapp.com": [19798], "opkode.com": [12057], "static.ocf.berkeley.edu": [17240], "services.libis.kuleuven.be": [8816], "ffmpeg.mplayerhq.hu": [9784], "udacity.com": [17110], "www.david-campbell.org": [4223], "www.fedgeno.com": [5725], "employer.dice.com": [4453], "www.mni.thm.de": [15811], "www.collegiatepeaksbank.com": [3430], "communaltv.sky.com": [14924], "ancud.de": [995], "limun.org": [9359], "de-fr.dict.cc": [4455], "tagcommander.com": [15904], "concussion.leeds.ac.uk": [17318], "fnic.nal.usda.gov": [17209], "baomoi.com": [1660], "www.prad.de": [13009], "www.telekom.com": [16087], "*.caltech.edu": [2757], "www.nllgg.nl": [10937], "apomedifot.de": [1097], "forums.bukkit.org": [19024], "brownpapertickets.com": [2366], "www-stage.oracle.com": [12082], "visa.jd.com": [8423], "winhawille.edu.hel.fi": [18355], "www.nsrc.org": [10958], "mcp.bucket.nchr.io": [19426], "data.cloud.unity3d.com": [17220], "otr.im": [11681], "adintegration.insideygs.com": [8169], "www.luxomo.com": [9676], "hover.com": [7566], "www.leibniz-supercomputing-centre.de": [9238], "efax.co.uk": [5107], "www.magix-online.com": [9706], "untergeschoss.ch": [17372], "www.own-mailbox.com": [12180], "publib.boulder.ibm.com": [7675], "diversity.wustl.edu": [17993], "linux.com": [9403], "www.anquanbao.com": [1054], "sharepoint.nexus.ox.ac.uk": [17271], "artedolar.com.br": [1227], "js.microsoft.com": [10364], "mail.zaehlwerk.net": [18778], "*.veruta.com": [17644], "track.adcocktail.com": [267], "vacenza.com": [17527], "skimlinks.com": [14911], "orchid.cs.illinois.edu": [17258], "*.silkroad.com": [14792], "voyage-prive.it": [17858], "au.redhat.com": [13675], "www.dreampass.jp": [4752], "j.wpimg.pl": [19766], "www.homebello.com": [7466], "www.btcgreece.com": [1558], "sharedtech.wustl.edu": [17993], "*.codepen.io": [3350], "guttmacher.org": [7029], "www.linuxnewmedia.de": [9395], "knowledge.verisign.com.tw": [17623], "cdnapisec.kaltura.com": [8775], "bugs.freebsd.org": [6120], "www.cga.ct.gov": [2680], "newyorkneedsyou.org": [11312], "forum.spring.io": [15302], "www.lesershop24.de": [19357], "dareboost.com": [4146], "goslice.com": [14955], "www.consultation.rbkc.gov.uk": [19538], "tr0n.net": [16625], "mix-computer.de": [9752], "www.openfiler.com": [12034], "www.bmibaby.com": [2160], "www.sacredcrystalsingingbowls.net": [14219], "vuze.com": [17879], "www.sonatype.com": [15132], "skillselect.govspace.gov.au": [6867], "www.userscripts.org": [17432], "www.voyage-prive.co.uk": [17856], "www.ereceptionist.co.uk": [4951], "www.hertz247.de": [7346], "costco.cyberpowerpc.com": [19098], "*.linuxaria.com": [9427], "anest.wusm.wustl.edu": [17993], "do-it.org": [4609], "www.csszengarden.com": [3898], "www.kat.ph": [8879], "dobrochan.com": [4612], "icbit.se": [7683], "blog.obnox.de": [11705], "invisionpower.com": [8325], "czone.eastsussex.gov.uk": [19142], "www.truenudists.com": [16775], "ca.norton.com": [11505], "mosaicscience.com": [10603], "www.maddcalifornia.org": [9705], "www.test.tibia.com": [19777], "*.indystar.com": [8067], "event.fanli.com": [5655], "*.prosystemfx.com": [13164], "www.luminoworld.com": [9666], "static.focus.de": [5974], "bytelove.*": [2490], "affiliates.eblastengine.com": [4877], "securityinabox.org": [14533], "ovh.es": [12173], "trustsign.com.br": [16783], "www.amara.org": [907], "dsl.1und1.de": [68], "www.credit-suisse.com": [3792], "gns3.com": [6355], "matrix.org": [10077], "blogmark.me": [2109], "www.agol.dk": [731], "exchange.contextweb.com": [3616], "www.desertory.de": [4386], "bugzilla.libsdl.org": [9290], "nationaleatingdisorders.org": [11095], "lauramercier.ugc.bazaarvoice.com": [887], "as-ezsvn-prod.ist.berkeley.edu": [17240], "allafrica.com": [18949], "www.otummstore.se": [12136], "nstatic1.freepik.com": [6182], "*.eff.org": [4908], "login.domaindiscount24.com": [19123], "dlv.isc.org": [7821], "www.cryptabyte.com": [3841], "forum.andesi.org": [998], "*.openf2.com": [11936], "lightbluetouchpaper.org": [9343], "xml.yandex.com": [18651], "medikamente-per-klick.de": [10196], "order.thephone.coop": [16347], "bia2.com": [1838], "blog.ixwebhosting.com": [7882], "www.timeweb.com": [16456], "st6.gismeteo.ru": [6669], "ghbtns.com": [6626], "uspirates.org": [17066], "gridzdirect.com": [6953], "platt.com": [12789], "*.wechat.com": [18018], "harakahdaily.net": [7202], "meter-svc.nytimes.com": [11000], "www.tchibo.com.tr": [15985], "www.swedbank.nl": [15682], "marketplace.cisco.com": [3162], "*.coverforyou.com": [3733], "akamaitest.lg.com": [9077], "verasafe.com": [17613], "www.glue.umd.edu": [17263], "www.wegoted.com": [18019], "jobs.zentralbahn.ch": [19802], "www.piraten-aargau.ch": [12284], "tops.yandex.com.tr": [18649], "images.vice.com": [17667], "media.tumblr.com": [16826], "oo-software.com": [11893], "www.girlscouts.org": [6666], "img.1und1.de": [68], "fastshare.cz": [5674], "*.thewrap.com": [16215], "www.e-magin.se": [4854], "honeynet.org.mx": [19256], "my.1and1.co.uk": [53], "www.acuityscheduling.com": [504], "*.linux42.org": [19462], "cypherpunks.ca": [3985], "yourlogicalfallacyis.com": [18730], "www.gmodules.com": [6839], "cdn01.animenewsnetwork.com": [18957], "www.priorygroup.com": [13074], "piwik.kevag-telekom.de": [8862], "sas-origin.onstreammedia.com": [11885], "docelu.pl": [4615], "img05.taobaocdn.com": [15953], "webftp.active24.cz": [18938], "home.regit.org": [13738], "*.moikrug.ru": [10532], "*.personalitypage.com": [12584], "rnrsweetdeals.newsreview.com": [11339], "static1.mailerlite.com": [9882], "html5video.org": [7106], "www.govtrack.us": [6868], "fsras.htwk-leipzig.de": [7114], "www.aegee-enschede.nl": [276], "www.lv.com": [9511], "sustainability.publish.uic.edu": [17231], "e-sirket.mkk.com.tr": [9754], "email.secureserver.net": [14511], "exposefacts.org": [5513], "www.thoughtworks.com": [16386], "www.jiscmail.ac.uk": [8439], "landsend.com": [9140], "www.wemonit.de": [18021], "www.luxhv.com": [9675], "bugs.i3wm.org": [7660], "v3.lolagrove.com": [9568], "mytime.com": [10792], "metasearch.kib.ki.se": [8725], "vvcap.net": [17523], "*.wgcdn.net": [18225], "snapengage-8.wpengine.netdna-cdn.com": [15027], "*.wsjeuropesubs.com": [11321], "*.familie-redlich.de": [5644], "www.dailydot.com": [4114], "www.speakyoursilence.org": [15234], "codesourcery.com": [10264], "assets.vodafone.co.uk": [17813], "www.bagatoo.se": [1614], "*.mediastorehouse.com": [10146], "tags.api.umbel.com": [17142], "cookie.monster.com": [10564], "*.fetshop.co.uk": [5762], "*.wcl.american.edu": [934], "xplr.com": [18586], "blog.serverdensity.com": [14614], "status.iwantmyname.com": [19313], "platform.tumblr.com": [16826], "se.icecat.biz": [7914], "www.andywalsh.com": [1011], "www.nice.org.uk": [10921], "myapm.apm.com": [332], "answers.uillinois.edu": [16960], "myvoice.earthlink.net": [5007], "nuug.no": [10980], "images.yandex.com": [18651], "eastsussex1space.co.uk": [19143], "res2.nabtrade.com.au": [10865], "analytics.1and1.com": [51], "*.pgi.com": [12247], "casinoaffiliateprograms.com": [2882], "www.wienerlinien.at": [18284], "ny.regjeringen.no": [13739], "security.berkeley.edu": [17240], "eu.api.kimsufi.com": [8892], "e2.xhamsterpremiumpass.com": [18516], "www.scea.com": [14089], "static.data.gov": [4175], "straply.com": [15505], "webapp.ftb.ca.gov": [2742], "bunsen.wapolabs.com": [17939], "www.lucaspetter.com": [9641], "cdncss-socialcomediallc.netdna-ssl.com": [16775], "www.yourmailinglistprovider.com": [18722], "xtgem.com": [18597], "gdp.stanford.edu": [15383], "*.armytimes.com": [1205], "www.paramountmovies.com": [12394], "mikaela.info": [10382], "windowssecrets.com": [18347], "checkout.lenovo.com": [9251], "*.optimizely.com": [12073], "eurobilltracker.com": [19165], "ireeco.com": [8355], "evesys.unisys.co.jp": [17202], "www.qubes-os.org": [13344], "*.compiz-fusion.org": [3522], "yourkarma.com": [18728], "cdn1.therepublic.com": [16207], "www.fresh-hotel.org": [6199], "support.doublerobotics.com": [4713], "*.pbsrc.com": [12495], "jobs.swisscom.ch": [15698], "oiss.wustl.edu": [17993], "www.skyviewinghelp.com": [14927], "hosting2go.nl": [7526], "pgp.webtru.st": [18174], "aolo.tk": [3533], "www.rhapsody.com": [13858], "forums.usa.canon.com": [2809], "digitabportals.com": [4479], "applicationstemp.barnsley.gov.uk": [18983], "reg.163.com": [35], "www.basecamp.com": [1687], "auth.corvisacloud.com": [3688], "*.shortyawards.com": [14736], "brand.wustl.edu": [17993], "support.oracle.com": [12082], "commoncraft.com": [3489], "www.saudi.gov.sa": [14306], "renewals.cheshire.gov": [3065], "2014.eurobsdcon.org": [5404], "cdn-w.gettraffic.com": [6581], "www.zeronet.io": [18843], "images.parkrun.org.uk": [12407], "*.igodigital.com": [7734], "polleninfo.org": [12883], "snp.cdn.dell.com": [4335], "getgo.de": [6613], "s1.rationalcdn.com": [19536], "onlinestore.ccccloud.com": [2539], "enhanceie.com": [5272], "www.mensaplan.de": [10260], "mail.piraten-ufr.de": [12717], "accelaworks.com": [440], "reservation-desk.com": [13802], "uwaterloo.ca": [17292], "walthamforest.moderngov.co.uk": [19405], "sunrise.ch": [15603], "yourmailinglistprovider.com": [18722], "gpgauth.org": [6876], "pic.iptorrents.com": [7798], "pass.beta.ya.ru": [18626], "cmdev.com": [2630], "enlighten.enphaseenergy.com": [5284], "ru.pornworms.com": [12928], "wac.20f5.edgecastcdn.net": [13712], "smartcardservices.macosforge.org": [9820], "nbound.nvidia.com": [10985], "liquidweb.com": [9443], "game.taobao.com": [15952], "guides.web4all.fr": [18052], "rollingstonesubscriptions.com": [13961], "etravelway.com": [5392], "dasource.ch": [4165], "*.fatcow.com": [5690], "www.cdgcommerce.com": [2552], "www.tno.nl": [15839], "store.linksys.com": [9382], "www.jabber.no": [8475], "ssl9.ovh.net": [12173], "buffalostate.edu": [2401], "dyndns.berlin": [4822], "cms.manchester.gov.uk": [9944], "applications.barnsley.gov.uk": [18983], "forum.bitcoin.pl": [1967], "www.bluekrypt.be": [2134], "www.paxtonrecord.net": [12464], "mjam.net": [10472], "trysuperbgreencoffee.com": [16806], "gradschool.utah.edu": [17288], "*.webxakep.net": [18098], "www.ekiga.org": [5131], "dashboards.cern.ch": [2575], "startjesucces.nl": [19277], "xmpp-ftw.jit.su": [8579], "*.spec.org": [14156], "typtest.tivi.de": [19800], "www1.my.commbank.com.au": [3477], "cryptosms.org": [3863], "www.hightail.com": [7407], "api.roblox.com": [13924], "wimpmusic.com": [18276], "weblogawards.org": [18128], "pastemarkdown.com": [12445], "www.graasmilk.net": [6878], "www.botconf.eu": [2240], "docs.arangodb.com": [1151], "subgraph.com": [15558], "lse.ac.uk": [9099], "nsn.com": [11462], "docstorepro.com": [4623], "version.clearlinux.org": [3233], "www.report-uri.io": [13781], "starwars.com": [15396], "infradead.org": [8132], "customercare.symantec.com": [15715], "www.appgratis.com": [1105], "oxs.mediabistro.com": [10169], "www.hostbillapp.com": [7508], "hostedtalkgadget.google.com": [6834], "ntvspor.net": [10974], "csc.beap.ad.yieldmanager.net": [13881], "vetdepot.com": [17654], "pod.juliareda.eu": [8671], "www.blekko.com": [2066], "my.godaddy.com": [6773], "techxpress.net": [16022], "www.movie4k.tv": [10636], "www.faq.mail.com": [9872], "badges.fedoraproject.org": [5726], "prevention.cancer.gov": [2805], "unite.ut.ee": [17069], "www.sacnas.org": [14066], "www.domoticz.com": [4675], "www.movie4k.to": [10636], "www.knowledgeblog.org": [8948], "platform.sh": [12784], "*.arhivach.org": [18960], "www.dlitz.net": [4042], "www.icc-cpi.int": [7684], "m.kuruc.info": [9045], "posterous.com": [12972], "mouseflow.de": [10624], "group.jd.com": [8423], "*.uio.no": [17330], "filmdates.co.uk": [5809], "www.audioprointernational.com": [8226], "connectssl.find.ly": [5837], "*.webshoprevolution.com": [18085], "www-ssl.intel.com": [8209], "html5sec.org": [7105], "iconfinder.com": [7921], "unlimited401k.com": [17359], "www.abysmal.nl": [433], "mobile.webtrends.com": [18171], "zerobin.net": [18839], "api.addresspicker.io": [578], "www.initex.com": [8145], "wf.mail.ru": [9874], "videos.sproutvideo.com": [15320], "youtube.se": [18709], "getcomposer.org": [6588], "bokon.se": [2185], "matalan.co.uk": [10062], "www.e-mielenterveys.fi": [4855], "community.joomla.org": [8627], "erben.rhb.ch": [13857], "ru.foursquare.com": [6082], "redirect.disqus.com": [4570], "thunderranchinc.com": [16403], "savetheinternet.eu": [14316], "qrcode.kaywa.com": [8827], "cdn.business.comcast.com": [3461], "donate.hrw.org": [7612], "help.proboards.com": [13110], "*.f-cdn.com": [5539], "uvm.edu": [17075], "*.googlesource.com": [6844], "status.onfleet.com": [11858], "www.e-onlinedata.com": [4856], "ami.com": [308], "*.www.salford.ac.uk": [17337], "www.xiscosoft.com.es": [18576], "lowes.com": [9636], "seekingarrangement.com": [14553], "www.store.xkcd.com": [19786], "*.golflink.com": [6820], "*.moxiesoft.com": [10645], "delivery.a.switchadhub.com": [15701], "www.pbebank.com.my": [13203], "*.myheritage.com": [10834], "ftp.intevation.de": [8297], "*.boards.ie": [2168], "track.roiservice.com": [13952], "www.gruen-digital.de": [6985], "mpi.onlinesbi.com": [11873], "lists.zaehlwerk.net": [18778], "bodoni.stanford.edu": [15383], "mycotopia.net": [10827], "static.fashionara.com": [5668], "a6.sphotos.ak.fbcdn.net": [5700], "www.aamc.org": [232], "www.dkit.ie": [4040], "feedback.chef.io": [3057], "xapo.com": [18541], "moodle.htw-berlin.de": [7112], "www.href.li": [7578], "lumovies.com": [9669], "deals.sourceforge.net": [15174], "www.edeka-verbund.de": [19147], "nationalexpress.jobs": [11050], "biotest.t-nation.com": [15773], "www.pingxx.com": [12690], "www.mypostbusiness.ch": [12949], "secure2.roisolutions.net": [13446], "blogs.janestreet.com": [8511], "publeaks.nl": [13202], "earthsci.stanford.edu": [15383], "www.samsunglfd.com": [14269], "chaox.net": [3007], "cal.berkeley.edu": [17240], "freesecure.timeanddate.com": [16461], "mirror.datapipe.com": [4211], "websafe.virginmedia.com": [17737], "www.imation.com": [7986], "www.coderwall.com": [3377], "chatme.im": [3029], "www.dediserve.com": [4293], "*.host.ie": [4513], "www.zerzar.com": [18849], "confuzzled.org.uk": [3574], "www.tutanota.com": [16850], "www.meetings.acs.org": [929], "profiles.udacity.com": [17110], "fah.stanford.edu": [15383], "blogs.nursing.osu.edu": [11760], "www.getbeagle.co": [6585], "ssl.kaptcha.com": [8793], "www.amnesty.ch": [959], "soic.indiana.edu": [8065], "care-hhh.web.cern.ch": [2575], "eddie.linux-mips.org": [9413], "wp.0x539.se": [6], "gaiahost.coop": [6302], "*.metapress.com": [10299], "panel.cinfu.com": [3148], "www.hackthe.computer": [7159], "cdn1.static.xtube.com": [18602], "www.virtual-server.org": [17747], "www.smava.de": [19602], "login.m.taobao.com": [15952], "aclunc.org": [260], "img.printfection.com": [13070], "eia.gov": [4917], "www.netmarketshare.com": [11197], "members.cloudatcost.com": [3282], "service.wienerstadtwerke.at": [18284], "www35t.glam.com": [6697], "www.cure53.de": [3927], "static7.twilio.com": [16876], "www.wdm.org.uk": [18454], "webmail.cj2.nl": [2618], "www.corp.mamba.ru": [9932], "www.dpmc.gov.au": [4076], "ci.jenkins-ci.org": [8551], "newyorker.com": [16203], "dispenser.tf": [4568], "www.tm.com.my": [16083], "*.aspsys.com": [1274], "www.feitbulbs.com": [5745], "control.preyproject.com": [13045], "www.porta.codes": [12933], "*.pypy.org": [10285], "www.secureprosoftware.com": [14494], "*.spring-tns.net": [15301], "www.notacon.org": [11520], "ethn.io": [5384], "*.zappos.com": [18792], "www.spiceworks.com": [15266], "teams.nikhef.nl": [11402], "recruiting.aldi.hu": [299], "rtt.adrolays.de": [625], "qa.openresty.org": [12043], "termsofservicegenerator.com": [6716], "i.t.webtracker.jp": [18165], "www.bing.com": [1895], "lists.x2go.org": [18499], "gambleid.com": [6412], "ma0.twimg.com": [16877], "www.aclu-sc.org": [252], "www.snipcart.com": [15037], "search.microsoft.com": [10364], "www.2pay.ru": [97], "www.bet555.eu": [1812], "shop.digitalcourage.de": [4503], "secure.directorsdesk.com": [10871], "ldscdn.org": [16219], "join.gay180.com": [6478], "forum.dokuwiki.org": [4638], "hr.buffalo.edu": [17297], "imagesource.allposters.com": [835], "endace.com": [5244], "forum.sozone.de": [15051], "jackpotmillions.com": [8483], "www.huuto.net": [19267], "edrive-hosting.cz": [5090], "www.megabigpower.com": [10224], "policy.gmu.edu": [6544], "otapps.wustl.edu": [17993], "forum.ciphershed.org": [3151], "webmate.io": [18132], "linuxgamepublishing.com": [9423], "www.warosu.org": [17983], "safecharge247.com": [14231], "powersource.post-gazette.com": [12948], "*.nelonenmedia.fi": [11141], "mysql12.vas-hosting.cz": [19729], "talemetrytoday.com": [15918], "slenderkitchen.com": [14952], "crowd.xenserver.org": [18557], "emanuelduss.ch": [5195], "falkvinge.net": [5642], "www.thingsquare.com": [16359], "mobi.drweb.com": [4783], "code.prod.facebook.com": [5620], "cdn.thinglink.me": [16356], "downloadeu3.teamviewer.com": [16004], "sp.onlinelibrary.wiley.com": [18309], "www.northpole.fi": [11502], "justeat.it": [19328], "www.acsac.org": [265], "protected.fscs.org.uk": [5598], "*.infojobs.net": [8100], "www.sc.pages05.net": [12333], "www.tinkerforge.com": [16476], "research.cbc.osu.edu": [11760], "www.talky.io": [15935], "wiki.geant.org": [6314], "www.telushealth.co": [16103], "telemetryverification.net": [16090], "contactprivacy.com": [3608], "guestcentral.bnl.gov": [19009], "*.webmail.dotcomhost.com": [4692], "www.ucuzu.com": [17108], "lucina.net": [9647], "www.blockstream.com": [2099], "londonsockcompany.com": [9583], "framework.web.cern.ch": [2575], "aim.com": [290], "hhpprtv.ornl.gov": [11693], "hackthissite.org": [7136], "data.bistudio.com": [2179], "internetcoup.org": [8281], "payments.amazon.co.uk": [910], "fasterbadger.com": [5684], "www.mport.ua": [9785], "5july.org": [175], "owncloud.kairo.at": [8767], "dc1.client.hip.live.com": [9483], "lists.linaro.org": [9361], "*.starfieldtech.com": [15403], "files.adspdbl.com": [632], "*.globalvoicesonline.org": [6735], "*.displaymarketplace.com": [4569], "www.dbrgn.ch": [4238], "sk-nic.sk": [14893], "www.sms.cam.ac.uk": [17243], "hospitalityleaders.com": [7500], "diy.jd.com": [8423], "www.lakebtc.com": [9133], "www.snapsurveys.com": [19604], "pa.elsevier.com": [5185], "website.1and1.com": [51], "alumsso.mit.edu": [9749], "www.safariflow.com": [14223], "us-ignite.org": [17020], "myservice.bradford.gov.uk": [2264], "kundenservice.web.de": [18050], "stream.radiox.ch": [13516], "www.giganews.com": [6650], "www.symbolab.com": [15716], "portal.polyu.edu.hk": [12891], "thumb.pr0gramm.com": [19514], "goaldet.com": [6801], "historyofmedicine.wustl.edu": [17993], "teams.surfconext.nl": [14198], "www.nuug.no": [10980], "ola.kent.gov.uk": [8851], "pega.com": [12526], "yhoo.it": [18638], "hhid.com": [7064], "etarget.ro": [5372], "help.instagram.com": [8182], "palsolidarity.org": [12338], "aldi-nord.de": [299], "hebook.engineering.osu.edu": [11760], "www.aldi.co.uk": [299], "in.pinterest.com": [12699], "www.openitp.org": [11947], "seller.ju.taobao.com": [15952], "*.ggpht.com": [6844], "handbook.fca.org.uk": [5557], "feedly.com": [5738], "davis.com": [4233], "www.moviease.com": [10640], "info.whitehatsec.com": [18250], "academiapress.be": [434], "m.kosmas.cz": [8742], "platba.cz": [18938], "sensepost.com": [14585], "websupport.novell.com": [11530], "passwordreset.dkit.ie": [4040], "source.opennews.org": [11963], "atmos.illinois.edu": [17258], "www.cloudflare.com": [3285], "imerys.com": [7989], "secure.netflix.com": [11229], "ksaglass.com": [8749], "www.landscape.io": [9141], "doctortrusted.org": [4624], "broadcasthe.net": [2354], "cateee.net": [2901], "*.zugerkb.ch": [19333], "hotpics-amateur.com": [7550], "www.yeahtv.com": [18614], "wiredsafety.org": [18365], "www.makeagif.com": [9911], "answers.stripe.com": [15525], "atrativa.com.br": [1331], "www.aralbalkan.com": [1150], "eventing.coursera.org": [3719], "cryptojedi.org": [3875], "*.ixquick.com": [8405], "www.jameco.com": [8501], "*.magnatune.com": [9859], "dobro.mail.ru": [9874], "img.geocaching.com": [6542], "masterh2.adriver.ru": [534], "gg.google.com": [6834], "billmaher.com": [1878], "partners.vouchedfor.co.uk": [17848], "www.law.wustl.edu": [17993], "*.sonos.com": [15140], "www.crashplan.com": [3762], "www.emaileri.net": [5192], "partners.guidestar.org": [7007], "newmoon.com": [11290], "sparkstudios.com": [15224], "de-pt.dict.cc": [4455], "coolkeywest.com": [3642], "dl.hexchat.net": [19246], "octodex.github.com": [6680], "*.sc.omtrdc.net": [11805], "*.32red.com": [100], "www.slack.com": [14942], "www.marketplace.org": [10017], "login.taobao.com": [15952], "docs.mesosphere.com": [10290], "www.clicklivechat.com": [3261], "www.visibletechnologies.com": [17772], "rememberthemilk.jp": [13758], "synergy-stage.eamobile.com": [5151], "cdn02.animenewsnetwork.com": [18957], "minigames.mail.ru": [9874], "www.localsearchassociation.org": [18668], "developer.epa.gov": [4937], "everydayhero.com.au": [5454], "iuware.iu.edu": [8064], "avatars2.githubusercontent.com": [6680], "*.riga.lv": [13880], "apps.cisco.com": [3162], "www.alexcabal.com": [794], "researchmap.jp": [13800], "savannah.vc": [14309], "www.emaileri.fi": [5192], "vpn.nordicacademy.no": [11475], "password.gmu.edu": [6544], "class-central.com": [3216], "www.fsf.org": [5600], "go.babbel.com": [1590], "affiliate.bitbay.net": [1924], "mail.ziggo.nl": [18862], "*.ganzestore.com": [6456], "webmail.gradwell.com": [6883], "adl.osu.edu": [11760], "f5networks.*": [5545], "www.optagelse.dk": [12065], "static.ow.ly": [12176], "akamai.com": [761], "*.blogmark.me": [2109], "www.blockscript.com": [2085], "www.inapub.co.uk": [8036], "cyberlaw.stanford.edu": [15383], "www.ebi.co.uk": [5423], "*.inventati.org": [1413], "*.serverloft.com": [14617], "zareason.com": [18797], "goingup.com": [6810], "www.titanshare.to": [16503], "www.success.tid.gov.hk": [7077], "at.godaddy.com": [6773], "coreix.net": [3671], "www.ideasonboard.com": [7930], "dahmw.org": [4672], "dsl.wrating.com": [18473], "*.duosecurity.com": [4803], "sade.com": [14220], "www.futurity.org": [6285], "www.ewents.ya.ru": [18626], "www.bitcard.org": [1928], "www.df.eu": [4029], "*.sonystyle.com.mx": [15150], "api.t.sina.com.cn": [14840], "lli.ucollege.wustl.edu": [17992], "mail.justice.com": [8698], "videohelp.cit.cornell.edu": [3676], "kapsi.fi": [8791], "www.fuerzapopular.pe": [6244], "static.androidpit.info": [1009], "news.google.co.*": [6837], "ssl-i.xx.openx.com": [11995], "www.zaehlwerk.net": [18778], "www.iplocation.net": [19304], "easychair.org": [5022], "xiscosoft.info": [18576], "ads.simplyhired.com": [14830], "sweflix.net": [15685], "m.tune.yandex.com": [18651], "baremetal.com": [1666], "ws.amazon.co.jp": [1286], "social.sbi.co.in": [14082], "s2.lemde.fr": [9244], "recipelab.org": [13644], "wbplay.com": [17897], "www.redbridge.gov.uk": [13683], "okcupid.com": [11772], "m.rabota.yandex.by": [18648], "shirazlug.ir": [14708], "www.imgking.co": [19286], "www.sweflix.net": [15685], "www.privacyscore.com": [13094], "virginiamason.org": [17739], "www.ouaza.com": [12137], "web.stonewall.org.uk": [19629], "dafont.com": [4103], "www.progllc.com": [13151], "www.jensge.org": [8553], "help.mailgun.com": [9883], "iad.apple.com": [1120], "internal.dynstatus.com": [4823], "www.nlg.org": [10936], "prod3si.click4assistance.co.uk": [3242], "www.postbydnx.com": [12961], "eclaim.walthamforest.gov.uk": [17966], "passport.bigmir.net": [1866], "accesd.affaires.desjardins.com": [4391], "ngvpn33.nvidia.com": [10985], "faq-o-matic.net": [5658], "img.web.de": [18050], "eminhuseynov.com": [5210], "www.inria.fr": [8159], "juggler.services.disqus.com": [4570], "www.empflix.com": [5213], "nie-wieder-vds.de": [11391], "s7.uicdn.net": [16958], "www.semabuzz.com": [14100], "www.365tickets.com": [114], "personalausweisportal.de": [12583], "www.torrentz.in": [16591], "airbornescience.nasa.gov": [10869], "beartracks-new.berkeley.edu": [17240], "lazykush.com": [9185], "cloud.webtype.com": [18095], "www.boulder.swri.edu": [15197], "ox.htw-berlin.de": [7112], "picture.stanford.edu": [15384], "ripe70.ripe.net": [13895], "www.police.uk": [12863], "stubconnect.stubhub.de": [15534], "cart.tmall.com": [19684], "*.4channel.org": [158], "*.frederik-braun.com": [6116], "www.votesmart.org": [13141], "www.biovendor.cz": [1902], "www.trove.com": [16762], "thestamp.umd.edu": [17263], "searscommerceservices.com": [14446], "www.josefsson.org": [8631], "www.upcase.com": [17385], "wealden.gov.uk": [19750], "searchwww.sec.gov": [17023], "www.sailthru.com": [14243], "*.ip-search.ch": [15696], "st.drweb.com": [4783], "www.space2u.com": [15205], "*.medgadget.com": [10141], "sfsite.com": [14110], "wiki.galaxyproject.org": [6408], "oron.com": [12112], "clickserv.sitescout.com": [14871], "townnews365-dot-com.bloxcms.com": [16614], "www.eurodns.com": [5406], "www.officersforbundet.se": [11752], "www.tune.pk": [16829], "secure.asufoundation.org": [1194], "edms.cern.ch": [2575], "checkout.google.com": [6834], "www.hermite.uvt.nl": [16445], "www.boltbus.com": [2193], "www.immi.is": [7759], "cdn3.jitscale.com": [8582], "enigmail.net": [5275], "www.supporterz.jp": [15639], "www.sandsmedia.com": [14213], "static.xxxbunker.com": [18607], "wickedfiber.com": [18280], "secureimages.teach12.com": [16211], "www.frozencpu.com": [6231], "alipass.alipay.com": [817], "www.sans.org": [14072], "www.americanfreedom.com": [943], "www.adsurve.com": [636], "api.pushover.net": [13254], "www.kenshoo.com": [8784], "distraction.gov": [4574], "www.cassinoestrela.com": [2888], "web.retriever-info.com": [13826], "www.canon.no": [2809], "www.canon.nl": [2809], "microchipdirect.com": [10354], "vps.net": [17509], "fbf8.com": [5701], "neengland.greenparty.org.uk": [6925], "portal.equinix.com": [5334], "tempolibero2.ffs.ch": [15693], "aaai.org": [388], "online.hmrc.gov.uk": [7084], "awe.sm": [1460], "nhmrc.gov.au": [11069], "vegas.williamhill.com": [18314], "www-csli.stanford.edu": [15383], "connect.wustl.edu": [17993], "wicnss.nal.usda.gov": [17209], "v.qq.com": [13284], "www.grist.org": [19229], "qwww.aexp-static.com": [678], "*.hush-hush.com": [7630], "elizabethsmartfoundation.org": [5169], "jigsaw.com": [8569], "www.w1.fi": [17887], "cdn.adrtx.net": [591], "archives.jres.org": [8455], "assistant.ricardo.ch": [13866], "ebankingentoutesecurite.ch": [4870], "www.gritdigital.co.uk": [6959], "allseenalliance.org": [837], "pgnet.stanford.edu": [15383], "www.icloud.com": [7698], "www.blogtopsites.com": [2105], "homebase.com": [7476], "www.dan.me.uk": [4131], "en-cs.dict.cc": [4455], "www.ekmpowershop.com": [5132], "rossulbricht.org": [13972], "secure.disqus.com": [4570], "link.azet.sk": [1481], "*.mozo.com.au": [10666], "ftp-master.debian.org": [4275], "banniere.reussissonsensemble.fr": [13835], "kenshoo.com": [8784], "sourcesoftdownload.com": [15183], "www.openclipart.org": [11905], "securecomputing.stanford.edu": [15383], "int.sitestat.com": [14885], "www.gabry.hu": [6403], "www.linux.conf.au": [9404], "pfefferkoerner.de": [12608], "linksyssmartwifi.com": [9383], "static.dl.mail.ru": [9874], "pacebus.com": [12311], "makeagif.com": [9910, 9911], "www.esv.de": [4968], "bizshark.com": [2034], "festeirice.com.br": [5759], "dnschain.net": [4060], "www.zocalopublicsquare.org": [18881], "sprav.yandex.com.tr": [18649], "www.jci.org": [8646], "litecointalk.org": [9464], "ushmm.org": [17444], "edu.github.com": [6680], "www.frameworks-scotland2.scot.nhs.uk": [10913], "myjd.jd.com": [8423], "www.apeul.asso.ulaval.ca": [17229], "elgiganten.dk": [5162], "www.raymii.org": [13584], "laquadrature.net": [9113], "cdn.dealer.com": [4256], "www.digitalmarketplace.civilservice.gov.uk": [19066], "hg.gajim.org": [6406], "monitor.returnpath.net": [13834], "supportion.org": [15640], "aurous.me": [1371], "forums.qrz.com": [13313], "m.ccs.com": [2551], "tenmarks.com": [16107], "ih3.redbubble.net": [13660], "www.nhw.se": [11474], "www.sheffield.gov.uk": [14694], "www.oagcargo.com": [16927], "perryellis.com": [12580], "info.enphase.com": [5283], "wiki.demonsaw.com": [4359], "mangaupdates.com": [9950], "scan.coverity.com": [3734], "www.kryptos.sh": [9020], "adlibris.com": [603], "hertz247.es": [7365], "attic.apache.org": [1086], "login.hubspot.com": [7594], "www.dobrochan.com": [4612], "admin.websupport.sk": [18160], "rlrose.co.uk": [13436], "charles-carreon.com": [18428], "infospyware.com": [8128], "www.glitterbank.com": [6711], "dailydot.com": [4114], "www.bufferapp.com": [2402], "*.jtlebi.fr": [8658], "*.april.org": [1139], "secure.sipgate.co.uk": [14855], "e3.xhamsterpremiumpass.com": [18516], "www.gibill.va.gov": [17019], "drchrono.com": [4747], "wordfence.com": [18433], "forum.pipni.cz": [12257], "nationalpriorities.org": [11085], "comixology.com": [3465], "caseking.biz": [2875], "www.linuxcontainers.org": [9420], "epbfi.com": [4940], "static.syncsearch.jp": [15731], "trakt.tv": [19692], "mozo.com.au": [10665, 10666], "blamestella.com": [2058], "blog.obdev.at": [11695], "palms.com": [12348], "odesk.by": [11724], "fail0verflow.com": [19173], "www.arneswinnen.net": [18964], "buy.wistia.com": [18377], "bedrockformsbluenext.msn.com": [9796], "*.thetestcloud.com": [16145], "jobs.nintendo.de": [11418], "postbus.ch": [12949], "bluepoint.com.ph": [2154], "*.kicknews.com": [8878], "www.beamyourscreen.de": [1730], "ajax.vacationroost.com": [17526], "fr.hertz.ch": [7367], "traffic.libsyn.com": [9321], "libdems.org.uk": [9292], "fr.hertz.ca": [7341], "www.spacetelescope.org": [7596], "zj.taobao.com": [15952], "www.hertz-autovermietung.pl": [7358], "www.waag.org": [17940], "i1.nyt.com": [10997], "hello.myfonts.net": [10759], "www.crocko.com": [3806], "projects.parabola.nu": [12384], "*.anyoption.com": [1080], "idevelop.ro": [7944], "www.digikey.de": [4469], "secure.eventim.*": [5443], "www.fakena.me": [19174], "cgi.timeinc.net": [16460], "www.emporioalberghiero.com": [5219], "*.myhosting.com": [15090], "s2.reutersmedia.net": [16381], "e-activist.com": [4847], "*.bookdepository.co.uk": [16217], "www.see.leeds.ac.uk": [17318], "media-cache-ec1.pinterest.com": [12699], "developer.ubuntu.com": [17102], "go.disqus.com": [4570], "vice-sundry-assets-cdn.vice.com": [17667], "doc.powerdns.com": [12990], "bapco.com": [1490], "ietf.org": [7721], "i1.c.dk": [2498], "src.chromium.org": [3119], "www.websitealive4.com": [18149], "www.techdirt.com": [16026], "exchange.uic.edu": [17231], "mobilism.me": [19404], "*.greenhouse.io": [6931], "www.heliny.com": [7291], "wza.us": [18493], "*.invincea.com": [8324], "assets.dt-static.com": [4660], "www.cjdns.info": [3204], "fedorapeople.org": [5729], "initex.com": [8145], "www.infobox.ru": [8107], "redbullmobile.at": [13669, 13670], "newsgator.com": [11329], "login.ezproxy1.library.sydney.edu.au": [19649], "nitetimetoys.com": [11425], "oregon.gov": [15421], "www.aarondcampbell.com": [394], "hesaplabakalim.com": [7373], "www.anubisnetworks.com": [1073], "de-no.dict.cc": [4455], "apamsa.stanford.edu": [15382], "saph.twistedmatrix.com": [16885], "aboutads.quantcast.com": [13337], "blog.gotomeeting.com": [6787], "www.cantheyseemydick.com": [2791], "www.tuxic.nl": [16857], "homebase.co.uk": [7476], "uwb.edu": [17078], "selfservice.sevenoaks.gov.uk": [14638], "*.atlas.sk": [2959], "forgerock.com": [19189], "*.sinaapp.com": [14843], "*.pazaruvaj.com": [12492], "cdn.tinypass.com": [16489], "assets.omniture.com": [11803], "lutube.leeds.ac.uk": [17318], "delivery.e.switchadhub.com": [15701], "crypteia.moreal.co": [10587], "semor.cz": [14101], "cloud.oracle.com": [12082], "connect.qq.com": [13284], "*.statcounter.com": [15417], "woothemes.com": [18416], "trumpia.com": [16779], "wiki.jenkins-ci.org": [8551], "supportcenter.checkpoint.com": [3048], "o2shop.cz": [16076], "astatic.alicdn.com": [805], "www.a1community.net": [217], "rad.microsoft.com": [10364], "threatwiki.checkpoint.com": [3048], "torusknot.com": [16596], "hbanet.org": [7046], "easydns.net": [5024], "firstfloor.org": [5879], "fsb.org.uk": [5724], "embedded.communities.intel.com": [8209], "www.aneros.com": [1013], "mail.biovendor.cz": [1902], "support.switchconcepts.com": [15701], "amiunique.org": [904], "esbie.ie": [4952], "api.yokl.com": [18689], "www.initlab.org": [8144], "www.polity.co.uk": [12878], "www.q3k.org": [13276], "www.nzherald.co.nz": [11004], "webshared.mcore.com": [10617], "fontspring.com": [5995], "www.srware.net": [15343], "www.spark.ru": [15219], "on.rt.com": [13468], "www.hotelmangaby.com": [7552], "www3.labcorp.com": [9122], "prime.500px.com": [166], "yourls.org": [19795], "tom.vgwort.de": [17483], "winservices.web.cern.ch": [2575], "www.vesselbags.com": [17652], "sfxhosted.exlibrisgroup.com": [5472], "vpn-us-west.symantec.com": [15715], "1btcxe.com": [42], "video.yandex.ua": [18656], "www.dnainfo.com": [19121], "amazingweb.co": [908], "mulliner.org": [19416], "*.change.org": [2992], "dsb.zh.ch": [19648], "www.nlm.nih.gov": [11052], "yworks.com": [19788], "eastriding.connecttosupport.org": [19076], "community.netapp.com": [11183], "www.jbp.io": [8539], "inconshreveable.com": [8047], "recruiters.jobs.telegraph.co.uk": [16082], "yoursole.com": [18731], "*.failuremag.com": [5630], "www.fkie.fraunhofer.de": [6112], "browser.yandex.com.tr": [18649], "ruhr-uni-bochum.de": [14031], "car-pictures.cars.com": [2864], "*.nakanohito.jp": [17433], "www.boingboing.net": [2181], "*.gambling-affiliation.com": [7733], "pilot-eip.stanford.edu": [15383], "superuser.com": [15359], "news.huobi.com": [7624], "continental.com": [3619], "*.waeckerlin.org": [17943], "majordesignsdollfashions.com": [9899], "www.forum.bitcoin.pl": [1967], "www.wodc.nl": [11132], "a14.wal.co": [17954], "trefis.com": [16707], "suppliersignup.kagi.com": [8766], "associatedcontent.com": [1293], "www.ohiolink.edu": [11762], "unilever.com": [17189], "gdata.be": [6293], "www.bip.io": [1910], "m.vodafone.co.nz": [17812], "happyknowledge.com": [7199], "cdnjs.cloudflare.com": [3285], "reco.se": [13646], "glb.adtechus.com": [639], "disc.yandex.com": [18651], "portnerpress.com.au": [12941], "www.onetaste.us": [11845], "support.us.playstation.com": [12795], "swisspost.com": [12949], "crtl.aimatch.com": [742], "*.mnginteractive.com": [9767], "www.ffsg.org": [5566], "c-cex.com": [2493], "aisec.fraunhofer.de": [6112], "cdn.apple-mapkit.com": [1117], "dtc.umn.edu": [17268], "zip.kiva.org": [8926], "stage-api.digitalmedia.hhs.gov": [7062], "design.ubuntu.com": [17102], "www.jeja.pl": [8549], "www.bergdorfgoodman.com": [15851], "www.kyberia.sk": [9050], "mediaroots.org": [19390], "i-cdn.servedbyopenx.com": [14602], "scmp.com": [15187], "abo.lemonde.fr": [9192], "www.epuap.gov.pl": [19139], "e16.xhamsterpremiumpass.com": [18516], "jisc.ac.uk": [8578], "store.fruitninja.com": [6235], "sfconservancy.org": [15099], "lsf.htw-berlin.de": [7112], "www347.americanexpress.com": [935], "members.dukeexechealth.org": [4799], "viewpoints.iu.edu": [8064], "www.monitoring-plugins.org": [10556], "oculusvr.com": [11722], "www.musixmatch.com": [10723], "cp.rentalserver.jp": [13774], "www.nametiles.co": [11027], "rt.debian.org": [4275], "www.webhostingstuff.com": [18067], "amnesty.tw": [973], "videre.ntnu.no": [10964], "ld-4.itunes.apple.com": [1120], "www.ebis.ne.jp": [5040], "semiaccurate.com": [14572], "sharenet.brent.gov.uk": [2304], "littlesis.org": [9476], "twit.tv": [15892], "piwik.shop.heise.de": [7288], "schwab.com": [14370], "portal.smartertrack.com": [14997], "music.usc.edu": [17278], "apple.com": [1120], "www.securelist.com": [14492], "et11.xhcdn.com": [18514], "*.typef.com": [4343], "en-sv.dict.cc": [4455], "getdnsapi.net": [6612], "www.iqt.org": [8025], "www.vimention.mobi": [17716], "account.qubitproducts.com": [13345], "travelrepublic.com": [16695], "webtatic.com": [18162], "online.mbank.pl": [9722], "www.funkyandroid.com": [6267], "*.getmango.com": [6597], "personalitypage.com": [12584], "thechinastory.org": [16257], "maps.yandex.by": [18648], "www.chartmogul.com": [3016], "givetolocal.stanford.edu": [15383], "ir.demandmedia.com": [4343], "order.bytemark.co.uk": [2489], "baremetrics.io": [1667], "js.chefkoch.de": [3058], "www.nullrefer.com": [11573], "gemius.com": [6516], "irc.tiki.org": [16444], "plblog.kaspersky.com": [8806], "jboss.com": [8416], "www.vidyard.com": [17705], "docs.redhat.com": [13675], "cardiffmail.cf.ac.uk": [2835], "civilservicelearning.civilservice.gov.uk": [19066], "usa.anon-ib.co": [1034], "payments.discourse.org": [4545], "www.skype.com": [14938], "drillisch.de": [4760], "nobitcoinlicense.org": [11442], "static0.startnext.com": [15412], "quadpoint.org": [13321], "www.hustlermagazine.com": [7633], "cipr.uwm.edu": [17294], "meow.bnw.im": [19010], "www.neodrive.co": [11149], "egms.cancerresearchuk.org": [19035], "agol.dk": [731], "law.ox.ac.uk": [17271], "www.ruhr-uni-bochum.de": [14030, 14031], "*.marthastewart.com": [10032], "*.forums.grsecurity.net": [6383], "bishopinteractive.com": [1917], "www.srb2.org": [14165], "webmail.onebit.cz": [11642], "www.m.maps.yandex.by": [18648], "dev-www3": [305], "www.kir.hu": [11777], "somevid.com": [15131], "stealthy.io": [15449], "online.businesslink.gov.uk": [2460], "*.jmldirect.com": [8443], "productadvisor.symantec.com": [15715], "lab.geektimes.ru": [6507], "plutof.ut.ee": [17069], "www.freedompop.com": [6169], "ncsoft.com": [10891], "www.p3pwiz.com": [11176], "partnernet.avira.com": [1449], "dev.liveperson.net": [9493], "secureorders.digiweb.ie": [4513], "app.keeptempo.com": [8838], "mtrx.go.sonobi.com": [15139], "hpcc.usc.edu": [17278], "www.istella.it": [8381], "algorithm.contest.yandex.com": [18651], "helpdesk.cloudlinux.com": [3290], "www.budgetinsurance.com": [2392], "xchatdata.net": [18506], "vsac.nlm.nih.gov": [11052], "www.brulinesfuelsolutions.com": [17663], "lists.webkit.org": [18125], "www.money.pl": [10547], "simlystore.com": [14813], "shared.od.org": [11615], "thirddoormedia.com": [16366], "victi.ms": [17669], "mtekk.us": [10681], "jstor.org": [8460], "www.nevis.columbia.edu": [3448], "assets.amung.us": [18267], "news-info.wustl.edu": [17993], "www.industrybotnetgroup.org": [8076], "www.gns3.com": [6355], "www.badwarebusters.org": [1612], "imagerights.com": [7980], "atp.alicdn.com": [805], "fbidhs.thecthulhu.com": [16334], "www.dinahosting.com": [4519], "images3.sanalmarket.com.tr": [14275], "xtremepapers.com": [18601], "www.fsawebenroll.ed.gov": [4889], "livehelp.cancer.gov": [2805], "www.backupify.com": [1604], "catalog.nhlbi.nih.gov": [11052], "www.telvue.com": [16067], "nodejs.org": [11454], "selfserve.swale.gov.uk": [19645], "community.freescale.com": [6183], "cvs.web.cern.ch": [2573], "it.metooo.io": [10317], "www.gemini.com": [6515], "dir.jpl.nasa.gov": [10869], "www.imperialviolet.org": [8017], "inaturalist.org": [7773], "bitin.io": [1997], "carasutra.co.uk": [2829], "sous-surveillance.fr": [15185], "*.fuzzing-project.org": [6286], "digitalforensicsmagazine.com": [4487], "m.feedback.yandex.ua": [18656], "srcclr.com": [15337], "regex101.com": [13728], "www.dancesafe.org": [4135], "www.onenews.cz": [11644], "compass2g.illinois.edu": [17258], "marionlibrary.osu.edu": [11760], "www.vc.ru": [17579], "emailpref.acs.org": [929], "*.developerforce.com": [14249], "*.volusion.co.uk": [17837], "gmo-registry.com": [6346], "www.spotplanet.org": [15297], "grassroots.org": [6895], "www.gum.co": [7018], "developer.iconfinder.com": [7921], "undergraduatecouncil.wustl.edu": [17993], "*.volotea.com": [17831], "connexity.net": [3584], "www.mayfirst.org": [10100], "argosemails.co.uk": [1186], "www.deutschebkk.de": [4406], "www.tuningworld.com.au": [16831], "udn.epicgames.com": [5320], "*.bm23.com": [2361], "www.alzforum.org": [899], "maksukaista.fi": [19377], "meraki.com": [10272], "studenthealth.ucsd.edu": [16939], "www.website.webgo.de": [18064], "verkkouutiset.fi": [17630], "bucketexplorer.com": [2386], "yannick.net": [18659], "a.hrc.onl": [7577], "www.calendars.com": [2738], "blinktrade.com": [2078], "www.acs.ncsu.edu": [11492], "www.adjust.com": [597], "www.morphis.com": [10598], "www.hostoople.com": [7539], "www.infinitydev.org": [8094], "*.marvelheroes.com": [10039], "www.coolminiornot.com": [3638], "cdn.shoutlet.com": [19588], "sb.scorecardresearch.com": [14393], "secure.pornhublive.com": [12927], "hcda.usc.edu": [17278], "rc.active24.cz": [18938], "synopsys.com": [15739], "www.solmusica.com": [15105], "www.opencryptoaudit.org": [12004], "www.photonconsulting.com": [12647], "www.obedovat.sk": [11696], "webmail.nyi.net": [10992, 10993], "*.conduit.com": [3564], "picload.org": [12661], "webmail.byte.nl": [2486], "thumbs.redditmedia.com": [13691], "www.netcloude.cz": [11218], "images-jp.amazon.com": [915], "*.httpbin.org": [7591], "luciosgold.ca": [9648], "www.banx.io": [1657], "static04.vg.no": [17484], "www.caniusepython3.com": [2790], "m.legal.yandex.com.tr": [18649], "internetprotectionlab.net": [8284], "dhminor.stanford.edu": [15383], "thinkwithgoogle.com": [16364], "img.askleomedia.com": [1264], "register.cocubes.com": [3335], "neo-direct.com": [10898], "join.kcvids.com": [8715], "spkcn.com": [15279], "*.charitywater.org": [3012], "www.env.leeds.ac.uk": [17318], "www.farmlogs.com": [5662], "cdn.picstat2.com": [785], "bookshop.europa.eu": [5421], "tintup.com": [16477], "franchise.7-eleven.com": [187], "wayf.wayf.dk": [17896], "bugs.swift.org": [15688], "*.wikimedia.de": [18296], "www.imageshack.com": [7981], "cybersicherheits-allianz.de": [852], "www.thecustomizewindows.com": [19675], "overheid.nl": [11132], "www.ssb.no": [14172], "secure.xperiencedays.com": [18584], "huiyuan.alipay.com": [817], "specto.io": [15246], "mcafeemobilesecurity.com": [10115], "techopedia.com": [16047], "www.netlib.re": [11195], "*.canv.as": [2813], "jax-rs-spec.java.net": [8525], "www.eai.org": [5150], "clients.uber.com": [17089], "*.savethechildren.org.uk": [14315], "*.hpcf.upr.edu": [17006], "krasnodar.rt.ru": [13469], "upaymobile.co.uk": [17384], "gruen.net": [6384], "www.ilovefreegle.org": [7892], "www.go8.edu.au": [6768], "www.ludialudom.sk": [9652], "patrickbateman.biz": [12457], "zh-tw.libreoffice.org": [9311], "libertymutual.economist.com": [5060], "*.cbsstore.com": [2530], "piwik.okturtles.com": [11773], "labcorp.com": [9122], "9.vgc.no": [17484], "securix.org": [14535], "cn.cloudflare.com": [3285], "vidyard.com": [17705], "sslshopper.com": [14182], "www.npted.org": [10951], "community.yieldmanager.com": [13881], "news9daily.org": [11325], "giveto.usc.edu": [17278], "totalboox.com": [16600], "www.djoserwandelenfiets.nl": [7452], "schooladmissions.cheshireeast.gov.uk": [3067], "cdn.dianomi.com": [4444], "*.visitorboost.com": [1464], "report.boldchat.com": [2187], "www.tauday.com": [15977], "jhsmh.org": [8854], "www.ud-media.de": [16947], "punchouttest.digikey.de": [4469], "www.stickhet.com": [15473], "www.opintoluotsi.fi": [12056], "www.ncbar.org": [10890], "id.avast.com": [1444], "*.virginaustralia.com": [17735], "hostpointpartner.ch": [7542], "pronosticuri-tenis.com": [7732], "knowledgecentral.federalreserve.org": [5717], "ftp.dell.com": [4335], "freenode.org": [19196], "magazinesdirect.com": [9846], "www.sss.gov": [17024], "www.sgi.com": [14111], "*.asahi.com": [1241], "cdn.securelist.ru": [14504], "www.makershed.com": [9913], "youtube.com.bh": [18709], "*.huawei.com": [7592], "ws-na.amazon-adsystem.com": [909], "hipointinc.com": [7389], "www.egopay.com": [5116], "*.myshannonconnection.org": [14659], "logs-01.loggly.com": [9554], "econz.unizar.es": [17356], "remedy.stanford.edu": [15383], "uie.com": [16955], "api.bt.com": [1551], "www.domaintools.com": [4660], "sec.video.qq.com": [13285], "dbrgn.ch": [4238], "gamefly2.gameflycdn.com": [6420], "www.tubbergen.nl": [11132], "griffith.edu.au": [6955], "youtube.pt": [18709], "aftership.com": [713], "booklibrarycomputer.derby.gov.uk": [4380], "accesslabs.org": [446], "*.jobware.de": [8603], "www.smoothieblend.com": [15011], "beta.openbadges.org": [12001], "company.icq.com": [7690], "www.hazro.com": [19239], "xadmin.exchange.1and1.com": [51], "www.how-old.net": [7567], "wonderwall.msn.com": [9794], "federalsoup.com": [5719], "www.gp2x.de": [6369], "services.hon.ch": [7088], "uzh.digitale-diathek.net": [4504], "www.imeem.com": [7987], "clickon.com.ar": [3249], "*.getsatisfaction.com": [6618], "community.mville.edu": [9955], "search1.taobao.com": [15952], "*.filmtrackonline.com": [5806], "apel.osu.edu": [11760], "pepephone.com": [19776], "www.bridgeways.com": [2315], "www.sittard-geleen.nl": [11132], "www.piratelinux.org": [12711], "authors.iop.org": [8195], "vidup.me": [17704], "ngvpn20.nvidia.com": [10985], "www.peteraba.com": [12591], "b.yandex.kz": [18652], "chemistryjobs.acs.org": [940], "policia.es": [12865], "cfosat.cnes.fr": [2634], "www.ukashcardsatis.com": [17123], "www.hyperboria.net": [7646], "planet-source-code.com": [12757], "osu.edu": [11760], "audible.de": [1349], "www.feedarea.de": [12843], "i2coalition.com": [7657], "codexns.io": [3383], "www.dokuwiki.org": [4638], "*.ctpsnet.com": [3799], "www.casper.com": [2885], "blog.linode.com": [9387], "www.thestorefront.com": [16314], "online.drweb.com": [4783], "player.vzaar.com": [17883], "www.ccc-mannheim.de": [2535], "nexcess.net": [11356], "www.novartisart.com": [11529], "maps.google.com.*": [6841], "hotmail.co.uk": [7558], "www.openbookpublishers.com": [12002], "bcp.crwdcntrl.net": [9613], "de-ro.dict.cc": [4455], "social.webtrends.com": [18171], "www.winpcap.org": [18327], "git.wj32.org": [18390], "savannah.cern.ch": [2575], "jimshaver.net": [8570], "a1.ec-images.myspacecdn.com": [10848], "stirling.gov.uk": [15475], "visit.berkeley.edu": [17240], "sparkmed.stanford.edu": [15383], "lankylife.com": [9150], "shop.blazingthyme.com": [11365], "www.bundesrat.de": [2433], "fireeye.com": [5852], "www.sharethenetwork.com": [14670], "*.itv.com": [7853], "www.ibario.com": [7678], "www.aka.ms": [296], "www.cert.fi": [2581], "www.*.soton.ac.uk": [17276], "www.omniti.com": [11794], "*.service.gov.uk": [14621], "datavantage.com": [4189], "brighttalk.com": [2323], "npddecisionkey.com": [4286], "www.syntevo.com": [15741], "ravensoft.com": [13579], "www.defora.org": [4313], "www.slu.se": [14135], "sso-prod2.cisco.com": [3162], "*.megworld.co.uk": [10220], "apt.mopidy.com": [10583], "service.snafu.de": [15023], "*.visiblemeasures.com": [17770], "thesatanictemple.org": [16308], "et06.xhcdn.com": [18514], "smos.cnes.fr": [2634], "immunicity.org": [8006], "use.typekit.com": [16913], "dropbox.com": [4768], "download.wpsoftware.net": [17925], "cdn1.onlinelaw.wustl.edu": [17993], "cdn.mycommerce.com": [10753], "www.darktable.org": [4154], "dc.mit.edu": [9749], "fr.godaddy.com": [6773], "dearfcc.org": [4264], "v1.std3.ru": [15445], "*.mixi.jp": [10467], "www.ivents.ya.ru": [18626], "sa.segpay.com": [14556], "app.tutanota.de": [16851], "*.thinglink.com": [16356], "www.adamcaudill.com": [553], "alpha.linuxfr.org": [9410], "www.braintree.gov.uk": [2273], "*.mbsportsweb.com": [9721], "www.securix.org": [14535], "api.eat.ch": [4867], "erecruitment.wto.org": [17934], "manage.name.com": [11015], "developers.yubico.com": [18745], "vfemail.net": [17482], "www.mollom.com": [10537], "*.dassaultfalcon.com": [4166], "emaileri.fi": [5192], "www.thainetizen.org": [16167], "*.envirostyles.ca": [5308], "demo-merchant.xsolla.com": [18593], "account.oneplus.net": [11841], "graphics.cams.com": [2787], "l3.51fanli.net": [171], "oplata.info": [12058], "biz.tigerdirect.com": [16440], "hostbaby.com": [7507], "ultrasurf.us": [17138], "ws.amazon.ca": [910], "exeterfriendly.co.uk": [5491], "apps.splash.riverbed.com": [13907], "www3.cs.sunysb.edu": [15480], "m.fitbit.com": [5887], "themoneyreferral.com": [3505], "sportisimo.ro": [14158], "hits.guardian.co.uk": [7000], "forums.servethehome.com": [14601], "c3.reifman.org": [13745], "www.startlogic.com": [15409], "fogbugz.com": [5979], "www.betterfap.com": [1827], "gaming.adobe.com": [614], "godownloadsongs.com": [15203], "www.rivieratours.com": [13909], "reportingitc.apple.com": [1120], "www.social-engineer.com": [15056], "blackbox.co.uk": [2044], "secure.uac.advertising.com": [662], "rentalpro.zillow.com": [18864], "webstarts.com": [18090], "engine.surfconext.nl": [14198], "cms.iopscience.iop.org": [8194], "www.technical.ly": [16034], "iedgmbh.de": [7712], "*.richmond.edu": [13874], "medialayer.com": [10155], "winpcap.org": [18327], "www.healthonnet.org": [7260], "www.playlists.net": [12807], "bcf.ch": [19333], "explore.data.gov": [4175], "www.woolworthsonline.com.au": [18422], "blog.mageia.org": [9847], "archive.anon-ib.ru": [1038], "static.cocubes.com": [3335], "pt.godaddy.com": [6773], "spell.roundcube.net": [13986], "www.insecure.ws": [8162], "www.hopstudios.com": [7491], "www.countbayesie.com": [3704], "webdl.symantec.com": [15715], "charitynavigator.org": [3009], "imap-01.ct.infn.it": [7766], "reservationcounter.com": [13803], "dong.nikhef.nl": [11402], "webcompat.com": [18112], "heusden.nl": [11132], "ufcfit.com": [16949], "www.trustwave.com": [16799], "machinegunsvegas.com": [9829], "www.tcd.ie": [16736], "status.chartbeat.com": [3018], "support.leahscape.com": [9207], "magazin.io": [9845], "www.fullrate.dk": [6256], "association.cern.ch": [2575], "www.ccedlookup.acs.org": [929], "blog.statcounter.com": [15416], "www.gmx.de": [6350], "amt-softwareportal.axosoft.com": [1477], "canaldigital.dk": [2803], "kagi.com": [8766], "www.varietylatino.com": [17566], "buerger-cert.de": [2396], "www.yosemitenews.info": [18697], "kraken.com": [9004], "linuxjournal.com": [9430], "*.infomaniak.com": [8112], "sites.yammer.com": [18647], "webmailer.hosteurope.de": [7516], "vremya.yandex.kz": [18652], "gifgratis.net": [6639], "www.wunderlist.com": [18483], "www.metro.ya.ru": [18626], "cli-apps.org": [19461, 19462], "social.technet.microsoft.com": [10364], "www.delico.se": [4330], "koldfront.dk": [8962], "codeclimate.com": [3363], "www.bitsighttech.com": [1947], "www.pod.geraspora.de": [6552], "www.feefo.com": [5741], "imperial.ac.uk": [8016], "descss.zamimg.com": [18782], "www.nikosdano.com": [11404], "officepreview.microsoft.com": [10364], "esomar.org": [4963], "*.depositfiles.com": [4374], "snoonet.org": [15040], "justgiving.com": [8691], "walkinhershoes.careinternational.org.uk": [19041], "bigchangeuk.co.uk": [1851], "*.libcal.com": [9288], "bewell.stanford.edu": [15383], "ad.himediadx.com": [7411], "host.cc.ntu.edu.tw": [10971], "greenleft.org.au": [6924], "en-is.dict.cc": [4455], "pensions.staffordshire.gov.uk": [15370], "static.xhamster.com": [18515], "secure.indeed.com": [8051], "osha.gov": [11670], "www.sweetslyrics.com": [15684], "res-x.com": [2972], "www.metroethernetforum.com": [10323], "de-fi.dict.cc": [4455], "internt.slu.se": [14135], "www.vs.ch": [19648], "bryansk.rt.ru": [13469], "kp.biovendor.cz": [1902], "mcclurken.org": [17261], "webropolsurveys.com": [18141], "gmx.org": [6350], "help.yandex.com": [18651], "www.wealthytheatre.org": [6889], "ivn.us": [8057], "*.eventbrite.co.uk": [5441], "partnernoc.cpanel.net": [2653], "properpet.com": [13158], "wikihub.berkeley.edu": [17240], "*.ofb.net": [11620], "oit.williams.edu": [18316], "monabo.lemonde.fr": [9192], "cecpdonline.org": [2948], "webmail.freenet.de": [6180], "technical.bestgrid.org": [1722], "www.jamesthebard.net": [8504], "is.lacie.com": [9117], "piwikphpnet.phpnet.org": [12251], "andrewbrookins.com": [1003], "www.admin.ufl.edu": [17252], "wis.sndcdn.com": [15032], "marketplace.firefox.com": [5859], "calendar.activedatax.com": [498], "telefonica.cz": [16076], "www.techpresident.com": [16014], "www.photobtc.com": [12638], "pci-ids.ucw.cz": [12223], "nr7.us": [11179], "www.schneideroptics.com": [14359], "www.wienmobil-karte.at": [18284], "open-mpi.org": [11907], "www.bankia.es": [19769], "migration.digitale-diathek.net": [4504], "www.joinos.com": [8618], "ppcoin.org": [12282], "www.meduza.io": [10204], "ak.quantcast.com": [13337], "minijob-zentrale.de": [10424], "btcchina.com": [1557], "census-labs.com": [2940], "south-america.hivos.org": [7431], "examp1e.net": [5481], "webmail.anchor.net.au": [18955], "www.invoca.com": [8329], "engage.advent.com": [654], "*.academia.edu": [436], "www.popularmechanics.com": [12921], "www.fme.vutbr.cz": [17522], "www.flixbus.com": [5931], "megaglest.org": [10227, 10228], "widget.quantcast.com": [13337], "www.greyhound.com.mx": [6947], "magazakayit.bilio.com": [1875], "*.hosting.ru.nl": [13510], "www.constructor.maps.yandex.com.tr": [18649], "stanmed.stanford.edu": [15382], "www.nz.anz.com": [315], "*.gpgtools.org": [6371], "compiz.org": [3522], "*.mtb.com": [9690], "mintguide.org": [10433], "images.hostcentric.com": [7509], "secure.www.cfr.org": [3702], "normation.com": [11488], "www.bitquick.in": [1943], "origin-software.intel.com": [8209], "tipmobileint.sbb.ch": [15693], "python.org": [13272], "client-event-reporter.twitch.tv": [16888], "familie.aok.de": [317], "e-food.gr": [4850], "*.bransonzipline.com": [2288], "lpdedicated.com": [569], "norwalkreflector.com": [11507], "www.bedd.tk": [3533], "dyson.ie": [4837], "www.astronautix.com": [5240], "pg.com": [13121], "nnetworks.co.jp": [11434], "*.adultadworld.com": [642], "shopstyle.co.*": [14720], "placesonline.com": [12755], "www.lrp.nih.gov": [11052], "www.i3wm.org": [7660], "accounts.silentcircle.com": [14786], "sphotos-h.ak.fbcdn.net": [5700], "www.hertz.qa": [7360], "canvas.net": [2812], "gpsfleetportal.cabinetoffice.gov.uk": [2701], "cdn.printfriendly.com": [13066], "equalitytrust.org.uk": [5331], "glad.org": [6339], "www.directbox.de": [4529], "*.tusfiles.net": [16849], "www.extremetracking.com": [5528], "onbeing.org": [11809], "messenger.live.com": [9483], "freelanguage.org": [6142], "socialfixer.com": [15064], "h.holder.com.ua": [7448], "assetinsightinc.com": [1282], "www.oisshome.wustl.edu": [17993], "munin.openstreetmap.fr": [12045], "piratenpartei-bayern.de": [12719], "extranet.swisscom.ch": [15698], "w.sharethis.com": [14668], "www.soom.cz": [19610], "e-nls.com": [11398], "media.digikey.com": [4469], "nl.aldi.be": [299], "33across.com": [101], "www.uclh.nhs.uk": [10913], "www.mailerlite.com": [9882], "www.tolaris.com": [16538], "seurinternacional.com": [14635], "bugs.tizen.org": [16506], "haendler.mobile.de": [19403], "www.argonit.cz": [1183], "answers.argos.ie": [1185], "da-dk.facebook.dk": [5623], "imagestash.org": [7985], "gr.support.tomtom.com": [16540], "images.dailystar-uk.co.uk": [4112], "*.lternet.edu": [9103], "icts.kuleuven.be": [8816], "*.wimm.com": [17911], "identity.mageia.org": [9847], "fareham.gov.uk": [5660], "www.youtube.co.th": [18709], "www.pulse.me": [13224], "*.testcloud.de": [16145], "turku.fi": [19706], "dolphin-emu.org": [4644], "developer.qtcloudservices.com": [13316], "infoworld.com": [8130], "next-geebee.ft.com": [5826], "facebook.es": [5623], "*.plantsolution.de": [12776], "es-es.facebook.com": [5620], "lelo.com": [9243], "www.deutschland-spielt.de": [19113], "partner.justeat.it": [19328], "buy.sky.com": [14924], "upi.com": [17005], "blumenthals.com": [2158], "www01.tracer.jp": [10967], "dams.stanford.edu": [15383], "www.bingplaces.com": [1896], "metro.yandex.by": [18648], "jasig.org": [8522], "www.fnal.gov": [5754], "sallie.stanford.edu": [15383], "mayfirst.org": [10100], "www.ctt.pt": [3908], "www.adxpansion.com": [545], "taringa.net": [15964], "www-950.ibm.com": [7675], "www.careercenter.wustl.edu": [17993], "www.opentpx.org": [11980], "tutanota.de": [16851], "daac.ornl.gov": [11693], "tsw.createspace.com": [3772], "www.acdd.tk": [3533], "echo24.cz": [19146], "www.asana.com": [1242], "auth.bournemouth.gov.uk": [2251], "keelog.com": [8835], "iamthecavalry.org": [7887], "my.1and1.com": [51], "forum.opnsense.org": [11656], "pan.taobao.com": [15952], "*.campaignercrm.com": [2780], "www.pixel.fsg.ulaval.ca": [17229], "www.ifightsurveillance.net": [7888], "tinfoilsecurity.com": [16472], "members.trustedcomputinggroup.org": [16791], "metrics.reedbusiness.net": [13705], "pirati.cz": [12722], "webspace4all.eu": [18154], "www.candhlures.com": [2806], "mail.lavaboom.com": [9173], "www.ecpic.gov": [4880], "chelmsfordgov.firmstep.com": [19183], "www.toysrus.com": [16621], "forums.checkpoint.com": [3047], "die.net": [4458], "www.linguee.de": [19366], "direkt.postbank.de": [12959], "totem.web.cern.ch": [2575], "www.kaneva.com": [8780], "pogoplug.com": [12851], "assets.unbounce.com": [17153], "cesar.resinfo.org": [13807], "publications.cabinetoffice.gov.uk": [2701], "www.fotoblur.com": [6075], "www.ahmia.fi": [738], "www.peterboroughandstamford.nhs.uk": [10913], "downloads8.mamp.info": [19379], "*.spreadshirt.es": [15300], "heroesofnewerth.com": [14062], "www.epocs.leeds.ac.uk": [17318], "i.alipayobjects.com": [817], "care-net.org": [2837], "www.vandyke.com": [17549], "outbrain.com": [12150], "cacti.atech.io": [366], "demostore.x-cart.com": [18494], "*.alzheimers.org.uk": [901], "www.wpad.leeds.ac.uk": [17318], "ihc.ru": [7736], "mobiusconsortium.org": [9769], "code.visualstudio.com": [17785], "www.ecowatch.com": [5064], "telegeography.com": [16071], "us-st.xhamster.com": [18515], "*.foxydeal.de": [6088], "orezpraw.com": [12101], "checkout.virginmedia.com": [17737], "popatomic.org": [12904], "www.cbo.gov": [17017], "*.mytalkdesk.com": [19420], "www.accessibility.nl": [452], "developer.alfresco.com": [802], "ngrok.com": [11375], "r8.mzstatic.com": [1119], "davissystem.net": [4232], "remotelyanywhere.com": [13762], "www.kproxy.com": [8746], "visitor.r20.constantcontact.com": [3592], "forum.tdc.dk": [15796], "manager.londit.com": [9571], "de-de.facebook.com": [5620], "*.nextag.it": [11363], "secure.hosting.vt.edu": [17740], "www.oh-tech.org": [11623], "www.saltstack.com": [14255], "*.sgizmo.com": [15658], "blog.wmtransfer.com": [18076], "shopping.ba.com": [1488], "www.biblegateway.com": [1842], "www.reasons.to": [13637], "myposteimpresa.poste.it": [12965], "*.pcbooster.com": [12233], "przetargi.money.pl": [10546], "www.gfi-italia.com": [6319], "www.sole.dk": [15115], "pixid.ideeinc.com": [16468], "www.ielts.org": [7719], "www.offlinemode.org": [11755], "beautyblog.thebodyshop.co.uk": [16250], "tour.ua.edu": [16924], "zom.im": [18889], "bigdinosaur.org": [1861], "cloudsso.cisco.com": [3162], "schoolsonlineservices.leeds.gov.uk": [19353], "www.cognitionsecure.com": [3387], "status.hostdime.com": [7510], "code.osu.edu": [11760], "donate.lls.org": [9089], "*.svn.sourceforge.net": [15174], "remote.nhclu.org": [11306], "fusionio.com": [6276], "learn.agilebits.com": [727], "my.illumina.com": [7968], "siteor.pl": [14883], "albumarsiv.com": [781], "packages.deepin.org": [4302], "conference.apnic.net": [1256], "press.virtkick.io": [17744], "communigate.com": [3497], "meta.serverfault.com": [15359], "www.kde-help.org": [19461], "allynisconnect1.gemalto.com": [6514], "consult.education.gov.uk": [19149], "www.abebooks.com": [408], "nwswimshop.com": [11503], "ovh.biz": [11685], "img.rt.com": [13468], "maemo-apps.org": [19461, 19462], "vineyardvines.com": [17723], "community.nasdaq.com": [10871], "www.thegrandtheatre.com": [16283], "www.datart.sk": [4008], "instructables.com": [8198], "kontalk.net": [8980], "ns.ibnlive.in.com": [7764], "www.norton.com": [11505], "www.matomymedia.com": [10075], "es.account.t-mobile.com": [15772], "www.spamcop.net": [19613], "www.nebelwelt.net": [11125], "stopcyberspying.com": [15483], "www.bchydro.com": [1509], "ukwebsolutionsdirect.co.uk": [16968], "blogs.monash.edu": [10541], "democracy.brent.gov.uk": [2304], "structures.ucsd.edu": [16939], "www.fulcrumbiometrics.com": [6247], "imakethingswork.com": [7890], "dare.kotex.com": [8994], "login.gradwell.com": [6883], "a.s.thebrighttag.com": [2325], "livenation.com.au": [9481], "webmanager.cronius.net": [3808], "mediamatters.org": [10158], "inventivedesigners.com": [8314], "tue.nl": [15874], "*.iomtt.com": [8336], "0xbadc0de.be": [7], "dhl.de": [4034], "ehmlive.n-somerset.gov.uk": [10857], "pentacon.de": [14358], "*.blogspot.co.uk": [2107], "www.angel.co": [1014], "openmamba.org": [19465], "www.bookshare.org": [2205], "www.ripe.net": [13895], "www.providesupport.jp": [13173], "roundtable.stanford.edu": [15383], "www.tweegy.nl": [16867], "linkshare.com": [13534], "static.avaaz.org": [1437], "static-wap-stg.norton.com": [11505], "www.monster-wow.com": [10566], "www.cnes.fr": [2634], "p9.raasnet.com": [13655], "cdn.sstatic.net": [15359], "www.kelcomaine.com": [8843], "col.stb00.s-msn.com": [14059], "pay.paddle.com": [12324], "reliability.seagate.com": [14437], "wlfriends.org": [6217], "nartac.com": [11038], "salk.edu": [14251], "www.vufind.org": [17868], "www.citizenweb.io": [3173], "ovh.nserver.ru": [11548], "aetherflyff.com": [694], "api.fastly.com": [5687], "perens.com": [2377], "www.ocharles.org.uk": [11614], "paste.informatick.net": [8122], "m.uw.edu": [17077], "mailxchange.1and1.com": [51], "wvu.edu": [18213], "torrentz.com": [16591], "www.runbox.com": [14037], "cdn.stackcommerce.com": [15361], "static.kameleoon.com": [8776], "scholarships.stanford.edu": [15383], "static.tumblr.com": [16826], "*.epson.com": [5330], "*.eventim.co.il": [5443], "www.niteflirt.com": [11424], "*.launchpadlibrarian.net": [9169], "neobookings.com": [11153], "static5.wonderwall.com": [18413], "intohigher.com": [8298], "www.imageforensic.org": [7982], "www.torrentsmirror.com": [16588], "ess.stanford.edu": [15383], "cdn3.eurodns.com": [5406], "www.lsc-group.phys.uwm.edu": [17294], "*.buzzfeed.com": [2473], "semaphoreci.com": [14571], "vanderbilthealth.com": [17556], "www.internetconsultatie.nl": [11132], "lincolnshire.moderngov.co.uk": [19405], "images.selfridges.com": [14568], "anderson-stage.leadershipacademy.nhs.uk": [10913], "noransom.kaspersky.com": [8806], "ra.vutbr.cz": [17522], "*.nadir.org": [11008], "cyngn.com": [3980], "landalgreenparks.com": [18490], "www.soroush.secproject.com": [14466], "www.clickandpledge.com": [3255], "55chan.org": [173], "www.cchcatalog.com": [2548], "*.partito-pirata.ch": [12284], "umiacs.umd.edu": [17263], "2buntu.com": [90], "images.nvidia.com": [10985], "clicktools.com": [3264], "xpiconly.com": [18534], "zuv.cms.rrze.uni-erlangen.de": [17311], "lists.pld-linux.org": [12267], "www.itch.io": [8389], "tradeinchecker.com": [16641], "www.mightyupload.com": [10380], "*.www.academiapress.be": [434], "io9.com": [8335], "51fanli.net": [171], "www.pkcsecurity.com": [12264], "pma-old.wedos.net": [17901], "daymet.ornl.gov": [11693], "photos.prnewswire.com": [12286], "www.scotborders.gov.uk": [14394], "www.notwithoutawarrant.com": [11518], "quidco.com": [13362], "www.anchor.com.au": [993], "www.sh.ch": [19648], "gys.1688.com": [36], "www.netcologne.de": [11188], "m.stubhub.co.uk": [15534], "www.hackhands.com": [7132], "irc.jquery.org": [8450], "www.imgjam.com": [7994], "www.ask.fm": [1261], "www.windowssecrets.com": [18347], "track.socializer.cc": [15071], "ws.amazon.fr": [910], "todo.x2go.org": [18499], "www.rottenecards.com": [13982], "seattleprivacy.org": [14453], "source.winehq.org": [18352], "cts.vresp.com": [17641], "eastmidlands.greenparty.org.uk": [6925], "osvdb.org": [11677], "www.slts.osu.edu": [11760], "www.isecpartners.com": [7825], "help.securingthehuman.org": [14517], "*.ovpn.to": [11689], "cdn6.openculture.com": [12006], "moonfruit.com": [10579], "*.radioleaks.se": [13519], "*.umw.edu": [17262], "serviceshop.asus.com": [357], "southend-on-the-move.org.uk": [19612], "vpol.stanford.edu": [15383], "i.canvasugc.com": [2813], "*.epic.com": [5319], "www.planningconsult.rbkc.gov.uk": [19538], "domanhanteraren.iis.se": [7742], "solar1.net": [15108], "www.accesslabs.net": [446], "*.insinuator.net": [8173], "api.challenge.gov": [2985], "assets.highways.gov.uk": [19250], "www.kinkontap.com": [8908], "jupiter.ysu.edu": [18742], "www.packagelab.com": [12314], "chip-app.de": [2595], "worldmarkbywyndham.com": [18490], "images.apple.com": [1120], "postdocs.ucsf.edu": [17302], "cdn.hackaday.io": [7138], "webhostingpad.com": [18104], "images.highspeedbackbone.net": [14211], "om.dowjoneson.com": [11321], "content.marketdojo.com": [10010], "site.biz.id": [7504], "devever.net": [4421], "rimg03.rl0.ru": [13914], "p.gr-assets.com": [6877], "*.netflix.com": [11228], "www.nb.admin.ch": [19648], "careers.dkit.ie": [4040], "carters.com": [2868], "www.raynersoftware.com": [13586], "privacy-cd.org": [13084], "*.ibsrv.net": [8280], "squarepenguin.co.uk": [15330], "schetu.net": [14350], "www.tus.ac.jp": [16536], "kdenlive.org": [8831], "www.dragonbyte-tech.com": [4737], "*.kunk.org": [10950], "online.firsttechfed.com": [5871], "wuro.wustl.edu": [17993], "wiki.python.org": [13272], "www.dg.ens.fr": [4930], "www.manageengine.com": [9940], "liquidmatrix.org": [9445], "www.ivacy.com": [8398], "gamigo.com": [6445], "www.ip-check.info": [7801], "together.wustl.edu": [17993], "usweeklysubscriptions.com": [17418], "bayfiles.net": [1698], "uptodate.apple.com": [1120], "images.linuxcontainers.org": [9420], "www.genivi.org": [6316], "www.rade.tk": [3533], "support.skysql.com": [14926], "gettag.mobi": [6606], "tech.lds.org": [16219], "blog.songkick.com": [19609], "corts.hq.nasa.gov": [10869], "www.encosia.com": [5233], "www.snort.org": [15041], "stockcharts.com": [15477], "eresearch.osu.edu": [11760], "sccjobs.sheffield.gov.uk": [14694], "www.newgrounds.com": [11317], "2.sendvid.com": [14584], "adserver.cxad.cxense.com": [2694], "socialprogressimperative.org": [15065], "*.ero-advertising.com": [5347], "movietickets.com": [10639], "shop.forgefields.com": [6035], "www.erlang.org": [5345], "go.microsoft.com": [10364], "support.mindtouch.com": [10409], "*.starnet.com": [15393], "kyleisom.net": [9053], "corecommerce.com": [3662], "www.aclum.org": [258], "p4.raasnet.com": [13655], "www.simonswain.com": [14816], "gw3.alicdn.com": [805], "www.housting.de": [11177], "shop.bvg.de": [1582], "m.chromeexperiments.com": [3117], "www.computerbasedmath.org": [3539], "www.dragonflydigest.com": [4739], "supplyframe.com": [15638], "www.troopers.de": [16758], "www.ultradns.*": [17132], "*.metro.co.uk": [10321], "subscribe.hearstmags.com": [7273], "usask.ca": [17338], "www.rushmypassport.com": [14041], "www.infosecisland.com": [8127], "svn.nmap.org": [11433], "tangiblesecurity.com": [15945], "timeanddate.com": [16461], "siosm.fr": [14854], "www.sigmabeauty.com": [14778], "widgets.outbrain.com": [12150], "www.srcclr.com": [15337], "m.outlook.com": [12153], "secure.mythic-beasts.com": [10850], "smartftp.com": [14988], "blogher.com": [2102], "stats.scooter-attack.com": [14390], "hfs.washington.edu": [17291], "newsyslog.org": [6897], "analytics.stanford.edu": [15383], "*.dellin.ru": [19109], "wrc.osu.edu": [11760], "www.engagingnetworks.net": [5262], "*.factoryselecthomes.com": [5627], "n-2.org": [10853], "ecomm2.dell.com": [4335], "*.projectplace.com": [13144], "*.getpebble.com": [12508], "www.theintercept.com": [16294], "www.globalsign.co.in": [6718], "www.atomz.com": [1329], "www.mi6.ua": [9741], "comic-con.net": [3466], "www.jako-o.eu": [8496], "medfacilities.stanford.edu": [15382], "www.efiliale.de": [19112], "wk3.org": [18391], "moodle.dudley.gov.uk": [4794], "www.waste.org": [17895], "hangul.istockphoto.com": [19309], "clientportal.fox-it.com": [6084], "strava.fitbit.com": [5887], "www.fixingtao.com": [5899], "www.kenexapods.com": [8847], "nasa.gov": [10869], "comscoredatamine.com": [3454], "login.evergage.com": [5447], "pangea.stanford.edu": [15383], "www.tv.gsn.com": [6416], "www.elotouchexpress.com": [5176], "www.carnegiescience.edu": [2857], "keenot.es": [8837], "*.parti-pirate.ch": [12284], "www.xdomain.ne.jp": [18553], "threatmetrix.com": [16392, 16393], "enfi.dict.cc": [4455], "depl.dict.cc": [4455], "www.linguistlist.org": [9081], "zeus.krystal.co.uk": [9024], "forum.ovh.us": [11686], "cdc-tree.stanford.edu": [15382], "www.adoyacademy.se": [622], "myscore180.com": [10782], "www.stylehatch.co": [15551], "bitkonan.com": [1999], "flights.webjet.co.nz": [18124], "*.amiando.com": [955], "www.looktothestars.org": [9596], "e-estonia.com": [4838], "plex.tv": [12814], "digiday.com": [4476], "dashboard.temando.com": [16104], "wtreset.wellcome.ac.uk": [19752], "services.mobile.de": [19403], "*.monsoon.co.uk": [10563], "schooladmissions.northyorks.gov.uk": [19440], "ultratools.com": [17133], "dynamitedata.com": [4831], "myaccgyap.psc.agilisys.co.uk": [18947], "ai.yimg.jp": [18685], "dna-bucket-dna.cf.rawcdn.com": [4494], "www.performer.england.nhs.uk": [10913], "mrp.illinois.edu": [17258], "soccerpunt.com": [7732], "software.brown.edu": [2367], "www.youtube.no": [18709], "www.warframe.com": [17977], "www.politicopro.com": [12874], "trac.webkit.org": [18125], "vehbidz.com": [17590], "sc5.rgstatic.net": [13422], "partners.x-cart.com": [18494], "www.autoblog.com": [1421], "www.ubuntu-mate.boutique": [17097], "idp.brunel.ac.uk": [19021], "www.mtmweb.biz": [10188], "www.eat.ch": [4867], "www.active-srv02.de": [496], "cometdocs.com": [3464], "yoursav.com": [18737], "iwowcase.com": [7873], "shelf.frictionalgames.com": [6210], "www5.plymouth.ac.uk": [12833], "ads.afraccess.com": [5634], "hackpad.com": [7158], "devcup.evernote.com": [5449], "docs.exchange.coinbase.com": [3402], "www.eshopbrokers.co.uk": [19131], "www.whyblockme.info": [3533], "get.popcorntime.io": [12915], "securemail.southend.gov.uk": [15193], "m6d.com": [10149], "email.ipswich.gov.uk": [8351], "39dollarglasses.com": [121], "passport-ckicheck.yandex.com.tr": [18649], "support.xamarin.com": [18540], "cepa.stanford.edu": [15383], "images.yandex.ua": [18656], "ruanko.taobao.com": [15952], "web.tameside.gov.uk": [19659], "developer.staging.yammer.com": [18647], "loc1.hitsprocessor.com": [7427], "www.careers.cam.ac.uk": [17243], "m.cash.ch": [19043], "*.store1.mentor.com": [10264], "indexcat.nlm.nih.gov": [11052], "www.qgazette.com": [13347], "gionn.net": [6664], "www.yourworld.anz.com": [315], "www.deaconess.com": [4248], "eleave.osu.edu": [11760], "www.credoaction.com": [3793], "cyberstewards.org": [3965], "medienberufe-sde.kursbuero.de": [9044], "webbyawards.com": [18110], "www.vmail.me": [17804], "www.crowdin.net": [3826], "www.thepiratebay-proxylist.org": [16227], "research.nvidia.com": [10985], "ticketportal.sk": [16423], "client.towerdata.com": [16613], "jia.tmall.com": [19684], "fanatics.com": [5649], "www.teachingcenter.wustl.edu": [17993], "bknpt-web5.bknpt.usc.edu": [17278], "owa.ncl.ac.uk": [10884], "*.industrybrains.com": [9984], "filehoot.com": [5791], "pthree.org": [13191], "aweirdimagination.net": [387], "www.fortnite.com": [6057], "videolicious.com": [17696], "acrobatusers.com": [481], "www.sexysitehosting.com": [14647], "www.openweb.or.kr": [12028], "*.wiley.com": [18309], "ja-jp.facebook.jp": [5623], "projectplace.*.dimelo.com": [13144], "sauth.webtrends.com": [18171], "haveibeenpwned.com": [19238], "betnet.fr": [11186], "www.globalhumanrights.org": [6726], "survey.cancerresearchuk.org": [19035], "assets1.redbubble.net": [13660], "www.domainwho.is": [4661], "www.internetvotes.org": [2947], "www.complex-systems.com": [3524], "ffsg.org": [5566], "images.cdn.rackspace.com": [13506], "*.tinypass.com": [16488], "adentifi.com": [583], "www.funoverip.net": [19204], "www.ultimate-guitar.com": [19711], "*.hitbox.com": [7423], "counterwallet.io": [3708], "members.webs.com": [18143, 18144], "postauto.ch": [12949], "suitabletech.com": [15585], "www.net-mobile.com": [11178], "cjs-cdkeys.com": [2620], "at.icecat.biz": [7914], "attic-backup.org": [1338], "*.skroutzstore.gr": [14921], "assets.patriotpost.com": [16305], "www.zdtronic.com": [18758], "poczta.hekko.pl": [7290], "inboxapp.com": [8039], "tracking.verisign.com.tw": [17623], "virtualizationreview.com": [17756], "hostingas.lt": [7535], "www.flexport.com": [5915], "y.qq.com": [13284], "www.nfadmin.net": [10905], "www.thalasseo.com": [16168], "adamboalt.wpengine.netdna-cdn.com": [1535], "status.braintreepayments.com": [2274], "zz.connextra.com": [3585], "people.zoho.com": [18884], "dental.uw.edu": [17077], "www.gustavus.edu": [7026], "riaa.com": [13427], "noncombatant.org": [11468], "send.atechmedia.com": [367], "lms.resus.org.uk": [13820], "www.eon-uk.com": [4860], "we-energies.com": [18016], "i3.answers.microsoft.com": [10364], "webmail.digi.hu": [4470], "familie.rps.aok.de": [317], "abovealloffers.com": [824], "www.mynxt.info": [10771], "uploaded.to": [3952], "gfx6.hotmail.com": [7559], "ebroder.net": [5041], "popsugar.com": [12911], "oaa.osu.edu": [11760], "www.fb18.de": [5555], "www.study.monash": [15542], "ad.zanox.com": [18787], "jobs.carecareers.com.au": [2839], "www.coinaxis.com": [3391], "performancealley.com": [12569], "www.intevation.de": [8297], "ctf.isis.poly.edu": [12888], "www.ttl.ut.ee": [17069], "www.getjaco.com": [6607], "pthumbnails.5min.com": [178], "codeofhonor.com": [3344], "www.winsupersite.com": [18330], "genius-upload-2.itunes.apple.com": [1120], "www.familie.hessen.aok.de": [317], "www.bayfiles.net": [1698], "anomos.info": [1033], "untied.cr.yp.to": [3748], "hashbang.ca": [7225], "www.ede-look.org": [19461], "www.megayoutubeviews.com": [10233], "imququ.com": [7974], "boarnsterhim.nl": [11132], "secure.eloqua.com": [5179], "www.rit.edu": [13434], "pro.lookup.whitepages.com": [18257], "csr.register.com": [13732], "bob131.so": [2170], "s.uicdn.com": [16957], "readit.youmail.com": [18706], "www.reichelt.de": [13744], "www.j.mp": [8409], "tolvutaekni.is": [16539], "conference2008.kde.org": [8718], "luez.tk": [3533], "www.uglymugs.ie": [17117], "www.diogomonica.com": [4521], "decryptedmatrix.com": [4290], "ethics.uillinois.edu": [16960], "lennier.info": [9249], "newstatesman.com": [11310], "theaj.co.uk": [1162], "hao.360.cn": [106], "*.pokemon.com": [12855], "www.buzzvpn.com": [2475], "dco-cdn.w55c.net": [17891], "pandaction.wwf.ch": [19768], "www.goodsearch.com": [6830], "www.flippa.com": [5927], "loader.engage.gsfn.us": [6991], "demo.op5.com": [11902], "tools.percona.com": [12557], "www.lebsanft.org": [19352], "*.roe.ch": [13944], "www.service.futurequest.net": [6283], "data.tumblr.com": [16826], "twittercommunity.com": [16893], "www.avm.de": [1453], "atomicinsights.com": [1326], "aravo.kompany.com": [8969], "*.kldp.net": [8734], "www.sp.parallels.com": [12392], "samharris.org": [14259], "avatar-ssl.xboxlive.com": [18551], "home.mcafee.com": [10114], "www.cusp.com": [15851], "backstage.soundcloud.com": [15161], "smetrics.aftonbladet.se": [716], "mail01.ndc.nasa.gov": [10869], "snabb.co": [15018], "en-pt.dict.cc": [4455], "payments.ebay.com.*": [4874], "this-download-would-be-faster-with-a-premium-account-at-good.net": [6826], "www.hoorn.nl": [11132], "www.howsmyssl.com": [7573], "www.forsakringskassan.se": [6050], "support.solarflare.com": [15112], "elearn.tenable.com": [16108, 16109], "*.net.edgesuite.net": [760], "havering.gov.uk": [7244], "www.enfuseconference.com": [7006], "dfrdb.gov.au": [4307], "www.deimos.fr": [4318], "westasia.hivos.org": [7431], "*.image-qoo10.cn": [13307], "mynortonaccount.com": [11505], "hrsmart.com": [7096], "blog.hitbtc.com": [7420], "*.firstclassmagazine.se": [5875], "litecoinlocal.net": [9465], "*.schwabcdn.com": [14371], "www.teardowniq.com": [16007], "selfservice.blackpool.gov.uk": [2056], "d.254a.com": [80], "www.safetythermometer.nhs.uk": [10913], "bulletin-int.wustl.edu": [17993], "onlinehelp.microsoft.com": [10362], "odir.org": [12007], "www.dersverilir.net": [4383], "sphotos-b.ak.fbcdn.net": [5700], "www.squarefree.com": [8556, 15331], "flaschenpost.piratenpartei.de": [12721], "bugreport.filemobile.com": [5799], "schoorsteen.geenstijl.nl": [19211], "trakehner-nord-west.de": [16658], "registration.ymcastlouis.org": [18618], "hamppu.net": [7183], "irrlab.com": [18428], "analysis.avira.com": [1449], "myaccount.gcion.com": [6308], "docsonline.wto.org": [17934], "subdownloader.net": [15554], "www.vodafone.co.uk": [17813], "imagesb.btol.com": [1623], "pass.alitrip.com": [818], "ntlds.variomedia.de": [17567], "dashboard.voice.aol.com": [321], "www.tip.net.au": [15820], "connect.gov": [3579], "pytamy.pl": [19528], "www.ontology.co": [11891], "meta.discourse.org": [4545], "counter.goingup.com": [6810], "hivoice-ot.hivos.org": [7431], "www.hak5.org": [7167, 7168], "www.getdigital.eu": [6571], "boxee.tv": [2258], "recalll.co": [13642], "beefree.io": [1746], "blog.replicant.us": [13779], "remote.derby.gov.uk": [4380], "static.nytimes.com": [11000], "as.upc.ie": [17001], "resrc.it": [13599], "prodfederate.pfizer.com": [12610], "*.onion.to": [11860], "pws.sc.egov.usda.gov": [17209], "*.adelaide.edu.au": [581], "docketalarm.com": [4618], "www.mni.th-mittelhessen.de": [15809], "www.whispergifts.com": [18245], "*.stunnish.com": [15546], "cisco-images.cisco.com": [3162], "uat.eceemarketplace.equinix.com": [5334], "www.machcomedyfest.co.uk": [9828], "www.domena.cz": [4669], "www.livebusinesschat.com": [9500], "www.sieciovo.pl": [14768], "authdb.ohiolink.edu": [11762], "*.se-mc.com": [15145], "numbersusa.com": [11578], "www.ece.ucsd.edu": [16939], "internet.org.nz": [8277], "trademoremargin.com": [16637], "mps.theplatform.com": [16230], "oebb-co2-ticker.at": [19455], "www.siteimprove.com": [14880], "*.upstart.com": [17400], "j.mozest.com": [10649], "saisapp67.stanford.edu": [15382], "www.webpay.cl": [18139], "www.cimbpreferred.com": [2606], "uweb3.host.ie": [4512], "openblox.org": [11924], "discuss.dwolla.com": [4816], "www.anybots.com": [1078], "fr-fr.facebook.com": [5620], "dt.scanscout.com": [14339], "www.nullday.de": [11574], "m.rescue.org": [19546], "www.qxl.dk": [13295], "workable.com": [18439], "rhapsody.com": [13858], "www.site.yandex.com.tr": [18649], "poste.io": [12964], "www.cartersoshkosh.ca": [2869], "fastmail.com": [5688], "archive.stsci.edu": [15212], "support.simplyhired.com": [14830], "eulerian.sarenza.com": [14300], "precisionpros.com": [13019], "shop.computerbild.de": [19075], "blogs.vinuthomas.com": [17726], "codex.bbpress.org": [1711], "weatherspark.com": [18035], "sculpteo.com": [14430], "batstrading.com": [1492], "es.foursquare.com": [6082], "marketing.dell.com": [4335], "*.snapnames.com": [8865], "mediaspanonline.com": [10163], "www.acuityplatform.com": [505], "thiswebhost.com": [16372], "static.ctctcdn.com": [3903], "productforums.google.com": [6834], "www.sharefilesupport.com": [14665], "validator-suite.w3.org": [17888], "southkesteven.firmstep.com": [19183], "lccn.loc.gov": [9528], "forum.opengarden.com": [12011], "klimaat.groenlinks.nl": [6962], "*.imgflip.com": [7997], "landofbitcoin.com": [9139], "my.a2hosting.com": [222], "dynamitedeals.com": [4830], "pricezombie.com": [13054], "flash.desy.de": [4399], "www.classymotherfucker.com": [3219], "*.humanbrainproject.eu": [7608], "suivi.openstreetmap.fr": [12045], "static.zend.com": [18821], "beta.mcafee.com": [10114], "*.americancensorship.org": [5783], "1anh.com": [55], "verifiedvoting.org": [17620], "www.abcm.ch": [2192], "www.igolder.com": [7954], "reverbnation.com": [13842], "portal.ct.gov": [2680], "digitalriver.com": [4483], "f-secure.com": [5541], "nwk-unbrick2.apple.com": [1120], "developer.akamai.com": [761], "beej.us": [18988], "cdn2.hubspot.com": [7594], "forum.ovh.nl": [12173], "alpha.app.net": [1102], "www.nominatefellow.acs.org": [929], "media.cmcdn.net": [3327], "download.icq.com": [7690], "b.zmtcdn.com": [19803], "es.my.t-mobile.com": [15772], "io.swisscom.ch": [15698], "pirateparty.gr": [6915], "i2.code.msdn.s-msft.com": [14058], "bahn-bkk.de": [1616], "bsi.bund.de": [5711], "techtv.mit.edu": [9749], "samples.asp.net": [353], "blog.tinypic.com": [18428], "help.github.com": [6680], "webassetse.scea.com": [14089], "the-fca.org.uk": [16190], "passport-ckicheck.yandex.com": [18651], "tiuz.unizar.es": [17356], "tag.perfectaudience.com": [12559], "redcoon.pt": [13686], "dolimg.com": [4641], "cc1.dealer.com": [4256], "origin-www.progress.com": [13132], "aacf.stanford.edu": [15382], "idgkonto.idg.se": [7705], "www.nbwn.de": [10877], "www.post.cz": [14648], "vologda.rt.ru": [13469], "*.computerandvideogames.com": [6281], "fairphone.com": [5636], "fonts.googleapis.com": [6839], "hxcc.secureserver.net": [14511], "www.site24x7.com": [14861], "www.post.ch": [12949], "sstats.adobe.com": [615], "redbubble.com": [13660], "i.socialrank.com": [15058], "*.content.ad": [3610], "fruct.org": [5595], "us.norton.com": [11505], "*.opscode.com": [12061], "cmu.edu": [2859], "campus.leeds.ac.uk": [17318], "*.buyboard.com": [2467], "www.solutionshealthcare.com": [15125], "siedler25.org": [13832], "athena.dialup.mit.edu": [9749], "oberpfalz.piratenpartei.de": [12707], "img.icefilms.info": [7911], "uchastings.edu": [16941], "deutschland-spielt.de": [19113], "trustthevote.org": [16784], "upstream.where.com": [18238], "www.gotomeeting.com": [6787], "pace.com": [12309], "www.craphound.com": [3760], "shibboleth.main.ad.rit.edu": [13434], "www.pingone.com": [12683], "ems.calderdale.gov.uk": [2735], "ausinfotech.net": [1375], "pictomania.com": [12668], "www.resin.io": [13806], "www.webtraxs.com": [18169], "lists.gajim.org": [6406], "aldi-sued.de": [299], "denver2012.drupal.org": [4780], "www.zuno.sk": [18768], "topeka.ccmr.cornell.edu": [3676], "momentusmedia.com": [10538], "entropywave.com": [5301], "www.darjeelin.fr": [4148], "www.meine-verbraucherzentrale.de": [17617], "*.englishdefenceleague.net": [5270], "cloudwear.com": [3317], "cookbooks.adobe.com": [615], "nettitude.com": [11254], "chessbase.com": [3069], "policemutual.co.uk": [12864], "www.hertztrucks.de": [7346], "dropdav.com": [4767], "help.cbp.gov": [2523], "*.imag.fr": [7975], "www.dcerpc.org": [19104], "pashm.com": [12421], "www.docelu.pl": [4615], "preney.ca": [13029], "orionhub.org": [12107], "www.valuedial.com": [17546], "www.rightmove.co.uk": [13886], "login.asp.net": [353], "www.events.ya.ru": [18626], "codepunker.com": [3352], "cimbclicks.com.my": [2606], "supplierportal.sandia.gov": [14278], "dating.taobao.com": [15952], "hampshire.firmstep.com": [19183], "studyrooms.lib.plymouth.ac.uk": [12833], "bitnamihosting.com": [1945], "img1.wsimg.com": [14507], "immi.is": [7759], "recruiting.piazza.com": [12658], "pastebin.sabayon.org": [14214], "www.supportion.org": [15640], "wantful.com": [17974], "*.infrastructure.gov.au": [4371], "www.gcaptain.com": [6311], "myportableworld.com": [10814], "lincs.fr": [9080], "www.taras.yandex.com.ua": [18650], "myheritage.pl": [10834], "www.justseed.it": [19329], "www.ono.es": [11882], "cal.net": [2724], "my.ispsystem.com": [7835], "embed.5min.com": [178], "iplocation.zoho.com": [18884], "annualreport.stanford.edu": [15383], "*.cloudswitch.com": [3296], "www.pressflex.com": [13037], "xm.com": [18520], "www.defectivebydesign.org": [4306], "security.google.com": [6834], "www.travelocity.com": [16698], "www.slashbits.com": [14945], "professionals.engineering.osu.edu": [11760], "00f.net": [0], "tsl.state.tx.us": [16153], "heroup.com": [7331], "apnic.net": [1257], "nieuwsblad.be": [11393], "license.drweb.com": [4783], "www.zenimaxonline.com": [18829], "roomscheduling.uwm.edu": [17294], "sitemanager.ncl.ac.uk": [10884], "www.franciskim.co": [6100], "www.slashdot.org": [14947], "*.identi.ca": [7936], "niederoesterreich.neos.eu": [10899], "fullcirclestudies.com": [6248], "portal.nccgroup.com": [10879], "ad.epochtimes.com": [5327], "ads.undertone.com": [17160], "www.cryptorave.org": [3862], "polls.newsvine.com": [11348], "facturaelectronica.unizar.es": [17356], "events.bc.edu": [1502], "behance.net": [1756], "easthants.gov.uk": [5013], "api.weibo.com": [18187], "google.tv2.dk": [15880], "www.vendosupport.com": [17605], "click.a-ads.com": [215], "congress.gov": [3575], "openbsdstore.com": [11921], "slu.tdconline.se": [15799], "browsingprotection.f-secure.com": [5541], "experiencedays.co.uk": [5507], "books.enaza.ru": [5230], "emc.force.com": [4929], "events.berkeley.edu": [17240], "secure2.zylom.com": [18929], "www.jaim.at": [8494], "cmcenroe.me": [3328], "eup-network.de": [5397], "www.illinoistech.org": [7967], "online.vodafone.co.uk": [17813], "*.cruisersforum.com": [3832], "*.cognesia.net": [3386], "www.searsecommercejobs.com": [14447], "www.bosh.io": [2229], "www.jud.ct.gov": [2680], "totaltravel.com": [18638], "www.variety.com": [17565], "st.dizzcloud.com": [4589], "greenmangaming.com": [6932], "app.datadoghq.com": [4201], "preprod.fr.hispeed.ch": [19716], "*.autohits.vn": [1415], "geek.com": [6492], "www.unanimis.co.uk": [17146], "guides.lib.washington.edu": [17290], "fylde.gov.uk": [6291], "create.demandstudios.com": [4343], "cdn.derkeiler.com": [4379], "www.script-o-rama.com": [4757], "thumbnails-tv.adobe.com": [615], "getadblock.com": [517], "spectrum.com": [15248], "tr.verbling.com": [17615], "www.onlineshop.cz": [19459], "sirportly.com": [14858], "static.openvz.org": [11991], "www.bazzapp.com": [1710], "tech.netapp.com": [11183], "reviews.reviewboard.org": [13844], "bugs.unrealircd.org": [17364], "selfridges.com": [14568], "www.html5rocks.com": [7104], "getjaco.com": [6607], "helpdesk.softcom.com": [15090], "www.mexbt.com": [10132], "security.mail.ru": [9874], "anti-theft.kaspersky.com": [8806], "www.assoc-amazon.com": [1288], "tgthr.com": [16166], "graduateapp.ucsd.edu": [16939], "i5k.nal.usda.gov": [17209], "www.cryptonomicon.com": [3885], "i1.services.social.microsoft.com": [10364], "www.aviationweather.gov": [18972], "cf1.vuze.com": [17879], "itbiz.cz": [8387], "suspiciousumbrella.uk": [19642], "download.aircrack-ng.org": [750], "www.forums.nexusmods.com": [6066], "*.bellsouth.com": [1765], "e11.xhamsterpremiumpass.com": [18516], "img-seeker.newjobs.com": [11318], "svb.com": [14791], "ukfast.co.uk": [16969], "buildxp.deathmask.net": [4266], "ta.libreoffice.org": [9311], "solidarity-us.org": [15121], "www.slashdotmedia.com": [14948], "www.kurly.fr": [9042], "frack.nl": [6092], "ec2.cdn.dell.com": [4335], "simage4.pubmatic.com": [13194], "www.v3.co.uk": [17464], "jobs.hostdime.com": [7510], "www.torreycommerce.com": [16593], "gftplns.org": [15465], "local.amazon.com": [913], "secure.rallycongress.com": [13536], "auth.adfox.ru": [524], "library.mit.edu": [9749], "colocationamerica.com": [3435], "www.messenger.com": [10292], "s.gzhls.at": [13025], "gradle.org": [6882], "mapquest.com": [9970], "yourvideohost.com": [18733], "*.nulab-inc.com": [11572], "kachingle.com": [8764], "www.60plus.vcd.org": [17474], "athena.krystal.co.uk": [9024], "www.fapmc.ru": [5551], "cinema.usc.edu": [17278], "ag.ouvaton.coop": [12155], "*.solus-project.com": [15124], "www.digitalegesellschaft.de": [4505], "*.neo-interactive.hu": [11145], "www.spendvision.com": [19618], "evdrive.com": [4984], "testbed.aviationweather.gov": [18972], "mondo2000.net": [10544], "www.acrobatusers.com": [481], "www.mumble.info": [10702], "btnapps.net": [2354], "djoserjunior.nl": [7452], "blogs.nottingham.ac.uk": [11528], "c1.neweggimages.com": [11316], "startssl.us": [15407], "www.kmymoney.org": [8738], "myaccount.rotherham.gov.uk": [13979], "legal.yandex.com.tr": [18649], "*.sail-horizon.com": [14242], "deliveras.gr": [4332], "barnet.moderngov.co.uk": [19405], "www.net.vutbr.cz": [17522], "www.ecommercebrasil.com.br": [4885], "app.fastly.com": [5687], "*.oppictures.com": [17218], "udc.bing.com": [1895], "www.latimes.com": [16730], "www.sign-up.to": [14780], "president.stanford.edu": [15383], "medicaljane.com": [10187], "www.changeip.com": [2994], "webmail.informatik.uni-hamburg.de": [16951], "www.faxrobot.com": [5696], "globalecology.stanford.edu": [15383], "static8.businessinsider.com": [2454], "www.cimbsecurities.co.th": [2608], "www.dft.gov.uk": [19116], "developer.buttercoin.com": [2463], "fast.wistia.net": [18376], "europe-miniatures.com": [5422], "clocks.yandex.com": [18651], "www.brandnewbooty.com": [2280], "it.civilservice.gov.uk": [19066], "capsuleweb.ulaval.ca": [17229], "dashboard.towerdata.com": [16613], "libraries.ceredigion.gov.uk": [2964], "webmail.fastwebhost.com": [5678], "dolphin.com": [19122], "asgard.paragonie.com": [12389], "appstore.blackphone.ch": [2048], "nifc.gov": [10924], "www.urlparser.com": [17015], "fsfla.org": [5599], "www.torchbox.com": [16572], "chromium.org": [3119], "exchange.1and1.com": [51], "www4c.medicare.gov": [19392], "get-digital.es": [6560], "efas.cen.uiuc.edu": [16956], "safelinks.f-secure.com": [5541], "www.lensrentals.com": [9255], "bloggar.aftonbladet.se": [716], "www.getgophish.com": [19214], "*.ltu.se": [9657], "www.uqwimax.jp": [17013], "web3.login.cornell.edu": [3676], "isohunt.com": [8372], "csites.ornl.gov": [11693], "files.slack.com": [14942], "www-304.ibm.com": [7675], "www.ncwlookup.acs.org": [929], "blackboard.brunel.ac.uk": [19021], "*.web-servers.com.au": [18046], "wcms-prod-web-3.ucsc.edu": [17305], "syntax.xtgem.com": [18596], "studentbursarysupport.education.gov.uk": [19149], "www.guidebook.com": [7009], "316space.com": [2132], "img0.leboncoin.fr": [19351], "loomio.org": [9603], "*.groupersocialclub.com": [6972], "trinityfi.org": [16737], "www.dotcologne.de": [4694], "cdn.mail.aol.com": [321], "bereavement.bedford.gov.uk": [18986], "static.inaturalist.org": [7773], "bournemouth.gov.uk": [2251], "terrapass.com": [16127], "logmein.com": [9549], "*.telework.gov.au": [16096], "*.nagra.com": [11010], "ssl.aimpulse.com": [743], "www.six.feec.vutbr.cz": [17522], "boerse-frankfurt.de": [2177], "ec.consumerreports.org": [3600], "ynot.gigantic.com": [6651], "nic.cz": [11379], "www.uberads.com": [17086], "cloudmark.com": [3309], "myricom.com": [10843], "portugues.istockphoto.com": [19309], "www.prisma-it.com": [13075], "www.psy.plymouth.ac.uk": [12833], "si3.twimg.com": [16877], "www.sug.htwk-leipzig.de": [7114], "www.lawnandlandscape.com": [9180], "www.inventivedesigners.com": [8314], "wikimedia.org.il": [18296], "hellholecheesefactory.org": [7292], "doc.zarafa.com": [18795], "www.pashm.com": [12421], "www.canon.fi": [2809], "www.cuusoo.com": [3946], "cdn.sploder.com": [15283], "ca.vas-hosting.cz": [19729], "download.qt-project.org": [13314], "www.reason.com": [13635], "www.paket.de": [12337], "mygannett.gannett.cornell.edu": [3676], "extranet.bfwien.at": [18284], "scientificlinux.org": [14386], "www.opentransfer.com": [12049], "www.ifca.ai": [8266], "parallels.com": [12392], "codemirror.net": [3372], "*.cox.net": [3739], "designcentersearch.com": [3551], "www.zimperium.com": [18869], "webregister.web.cern.ch": [2574], "securifera.com": [14515], "news.cointrader.net": [3411], "extra.sankakucomplex.com": [19563], "apptest.mobile.de": [19403], "sstic.org": [14185], "nalchik.rt.ru": [13469], "mywot.com": [10798], "vpn.ashampoo.com": [1250], "mandriva.com": [9948], "jobs.nzz.ch": [19450], "publishers.esellerate.net": [5357], "static.symplicity.com": [15721], "tinfoil.co": [16472], "www.sony.eu": [15142], "deferpanic.com": [4312], "www.pizzacharts.com": [12749], "track.hubspot.com": [7594], "www.beefree.io": [1746], "www.vendorportal.ecms.va.gov": [17019], "*.fwmrm.net": [6136], "www.roc-noc.com": [13930], "gosuslugi.ru": [6852], "www.datasheetcatalog.com": [4214], "static.vg.no": [17484], "techblog.workiva.com": [18442], "eventim.*": [5443], "www.usuhs.edu": [17052], "kentuckyonehealth.org": [8854], "forum.ramhost.us": [13397], "vetmed.illinois.edu": [17258], "www.publications.cabinetoffice.gov.uk": [2701], "csapps.norfolk.gov.uk": [19436], "profiles.petfinder.com": [12595], "www.issafrica.org": [7837], "time.yandex.com": [18651], "badssl.com": [1611], "www.guadec.org": [6397], "jscsecmat.ctscdn.com": [3906], "*.samsung.com": [14265], "www.rackspacecloud.com": [13507], "services.connect.microsoft.com": [10364], "www.hizlisaat.com": [7432], "my.xmarks.com": [18579], "ec.razerzone.com": [13587], "icedivx.com": [7910], "www.smarthide.com": [14989], "capris.no": [603], "www.tshare.to": [15865], "worldfoodprize.org": [18455], "piratenpartei.at": [12720], "carbonmade.com": [2831], "*.wildstar-online.com": [18303], "update.virtualbox.org": [17748], "m.superpages.com": [15633], "littlesvr.ca": [9478], "online.alumni.rice.edu": [13869], "freethoughtblogs.com": [6186], "abcm.ch": [2192], "admin.google.com": [6834], "www.downtownhost.com": [4730], "phishd.com": [12630], "www.hvidovrekajakklub.dk": [7636], "www.dha.gov.au": [4308], "a.lscdn.net": [9102], "www.brainpickings.org": [2268], "files.qabel.de": [13298], "mountspace.com": [10621], "forums.zotero.org": [18911], "orrick.websitealive.com": [18149], "web.boldchat.com": [2187], "ip-projects.de": [7785], "www.peelregion.ca": [12510], "www.atlasofprejudice.com": [1320], "www.fifengine.de": [5573], "eforms.gov.ie": [19150], "customersonly.dtint.com": [4085], "www.whosgamingnow.net": [18270], "scriptjunkie.us": [14423], "crazyegg.com": [3764], "webcamboys.us": [18111], "static6.uk.businessinsider.com": [2454], "tatepublishing.com": [15975], "forum.disconnect.me": [4543], "jobs.ieee.org": [7713], "*.grsecurity.net": [6383], "b.strikingly.com": [15523], "affiliate.hitbtc.com": [7420], "www.domcomp.com": [4666], "www.icsalabs.com": [7691], "www.parametersecurity.com": [12393], "www.instat.com": [8026], "portal.zg.ch": [19648], "www.uniquefiler.com": [17193], "balkanleaks.eu": [1628], "photobtc.com": [12638], "www.comic-con.org": [3466], "*.cert-bund.de": [2576], "conference.oracle.com": [12082], "*.mycontactual.com": [3609], "grc.com": [6380], "git.cru.fr": [3829], "www.cybersitter.com": [2695], "my.webtapestry.net": [1466], "cdn.ht.trafficforce.com": [16651], "api.piwik.org": [12733], "www.alchemistowl.org": [783], "www.hub.jhu.edu": [16296], "www.draytek.com": [4746], "rood.sp.nl": [14151], "www.briehost.com": [2316], "telegr.am": [16077], "www.milodev.com": [10399], "aucklandairport.co.nz": [1343], "loopfuse.com": [9604], "genome.ucsc.edu": [17305], "service-access-data.web.cern.ch": [2575], "politiken.dk": [12876], "kb.gigaserver.cz": [14589], "www.slenderkitchen.com": [14952], "www.peliaika.fi": [6394], "familysearch.org": [5646], "news.moniker.com": [8864], "bitcoin.co.id": [1964], "secure.sakura.ad.jp": [14068], "ohiobar.org": [11763], "rtfd.org": [13611], "www.wirelessleiden.nl": [18368], "pubsub-edge.twitch.tv": [16888], "images.pcel.com": [12222], "listonic.com": [9452], "torrentz.me": [16591], "lte.mg2mobile.com": [10329], "kaufman.usc.edu": [17278], "crucial.com": [3831], "knowledge.hubspot.com": [7594], "*.juno.co.uk": [8684], "www.macular.org": [9834], "dw.com.com": [2526], "twtpoll.com": [16901], "uc.edu": [17308], "secure.assets.tumblr.com": [16826], "heteml.jp": [7375], "www.jguitar.com": [8434], "www.de-centralize.com": [4241], "diff.smartadserver.com": [14982], "*.cypherpunks.ca": [3985], "dev.elsevier.com": [5185], "sysadmin.kde.org": [8718], "www.electronicinsanity.com": [5153], "autoact.mobile.de": [19403], "livechatinc.com": [9480], "download2.mikrotik.com": [10388], "www.people.com": [12546], "telebasel.ch": [19667], "www.fimc.net": [10163], "observium.org": [11706], "chapin.williams.edu": [18316], "constantcontact.com": [3592], "www.gocoin.com": [6771], "www.helpspot.com": [7306], "www.familie.bayern.aok.de": [317], "diagonalperiodico.net": [4441], "ccbill.com": [2534], "manage.chef.io": [3057], "slo-tech.com": [14966], "www2.slac.stanford.edu": [15383], "enovance.com": [19138], "*.spoonful.com": [15288], "faxbigbrother.com": [5695], "tridium.com": [16733], "git.libav.org": [9291], "roaringpenguin.com": [13919], "*.sct.gov.au": [15624], "kulturhusetislandsbrygge.kk.dk": [8730], "garoa.net": [6460], "info.ecosia.org": [5063], "www.exsila.ch": [19171], "hao.qq.com": [13284], "download.spotify.com": [15296], "www.888voip.com": [201], "www.gifttool.com": [6641], "drugstore.com": [4779], "www.overdrive.com": [12160], "rooms.library.jhu.edu": [16296], "www.spacelaunchreport.com": [15211], "www.auth.usyd.edu.au": [19723], "www.amnesty.org.ru": [969], "sources.opencorporates.com": [11931], "www.adsafecontrol.com": [537], "www.danhlode.com": [4140], "*.vlc-addons.org": [19462], "allclearid.com": [827], "s1.ckeditor.com": [2621], "weathersafe.allianz.com": [18950], "bibbitec.com": [1841], "status.buttercoin.com": [2463], "deichmann.com": [4317], "www.formassembly.com": [6040], "api2.fri-gate.org": [6208], "webappl.web.sh.se": [14114], "m-fanshop.ch": [19399], "builtwith.com": [2413], "discussions.apple.com": [1120], "ohloh.com": [11766], "www.23andme.com": [74], "connect.facebook.com": [5620], "p7.raasnet.com": [13655], "flyingcameras.ca": [5965], "mor.nlm.nih.gov": [11052], "ee-www.stanford.edu": [15383], "meteoprog.kz": [10312], "wennect.info": [18201], "mybetter.com": [10746], "sync.mathtag.com": [10071], "donate.homelessveterans.co.uk": [7479], "lists.us.dell.com": [4335], "www.afiestas.org": [706], "portal.sevenoaks.gov.uk": [14638], "yarddigital.com": [18661], "www.scottlinux.com": [14402], "www.binaryturf.com": [1890], "www.qualaris.com": [13327], "www.xvideosx.tv": [18537], "usvisa-info.com": [2665], "www.domainskate.com": [4657], "qianbao.baidu.com": [1619], "*.solarbotics.com": [15111], "drivee.jp": [4764], "hr.harvard.edu": [7219], "advq.yandex.com.ua": [18650], "www.mysmartrend.com": [14981], "www.kingston.greenparty.org.uk": [6925], "shop.novell.com": [11530], "*.pipedot.org": [12700], "www.icardnet.uillinois.edu": [16960], "www.travelnow.com": [16692], "support.cape-it.de": [2816], "delegated.osu.edu": [11760], "ansibleworks.com": [1058], "sites.usa.gov": [17029], "dev.modernrepo.com": [10524], "www.1x.com": [49], "unindented.org": [17191], "cancer.fi": [15744], "postmaster.outlook.com": [12153], "support.runbox.com": [14037], "beesecure.prpa.org": [15044], "www.csie.ntu.edu.tw": [10971], "p17.qhimg.com": [13302], "brainstorage.me": [2272], "eumostwanted.eu": [19164], "webadmin.endora.cz": [5248], "www.enterprisersproject.com": [5293], "www.hertzautovermietung.pl": [7358], "cdn.digits.com": [4509], "gkg.net": [6337], "rectpweb.admin.uillinois.edu": [16960], "addison.vt.edu": [17740], "www.yacuna.com": [18630], "refer.ly": [13716], "account.t-mobile.com": [15772], "vocativ.com": [17811], "i.t.net.ar": [15964], "tickets.chef.io": [3057], "assets.cookieconsent.silktide.com": [14796], "pro.stubhub.com": [15534], "brabant.nl": [11132], "shop.msicomputer.com": [9793], "ssl-images.newegg.com": [11316], "*.talkactive.net": [15926], "weblogin.stanford.edu": [15383], "pro.darkreading.com": [16927], "artinstitutes.edu": [16177], "*.eharmony.com": [19135], "ols.business.yahoo.co.jp": [18640], "hiesorrentovalley.hotelwifi.com": [7553], "asc.wustl.edu": [17993], "www.doublerobotics.com": [4712], "www.openmoko.org": [12039], "wrms.catalyst.net.nz": [2896], "*.spectator.org": [15245], "www.qstack.com": [13290], "www.pss.sk": [13187], "order.1and1.co.uk": [53], "marhababrighton.co.uk": [9986], "www.acspul.asso.ulaval.ca": [17229], "www.mims.co.id": [9743], "mauerspecht.zdf.de": [19800], "drupalgardens.com": [4781], "lists.openswan.org": [12046], "taki.hizlisaat.com": [7432], "assets1-new.akamai.coub.com": [3697], "visiba.com": [17769], "gaia-gis.it": [6404], "sics.se": [14119], "tekgoblin.com": [16064], "*.www.mozdev.org": [10647], "whatson.sydney.edu.au": [19649], "www.fabiankeil.de": [5617], "www.xtgem.com": [18597], "www.idr-biz.com": [9743], "gallery.hizliresim.com": [7433], "staging.extranet.nsidc.org": [11062], "catalysis.com": [2895], "www.juki.co.jp": [8464], "www.ukwebsolutionsdirect.co.uk": [16968], "my.tealiumiq.com": [15996], "lavaboom.com": [9173], "*.buysellads.com": [2468], "pics.librarything.com": [9305], "*.webfaction.com": [18063], "www.billmaher.com": [1878], "www.encoding.com": [5232], "developer.appcelerator.com": [1113], "www.a16z.com": [219], "proxy.uchicago.edu": [17246], "discuto.io": [4560], "masterh8.adriver.ru": [534], "download.alipay.com": [817], "*.biowarestore.com": [1903], "form.mbank.com.pl": [9722], "info.ssl.com": [14176], "wwwsecure.lego.com": [9068], "emailcenter.acs.org": [929], "www.edigital.hu": [5529], "scmagazineus.com": [14325], "polpix.sueddeutsche.com": [15578], "lrc.businesslink.gov.uk": [2460], "www.xfire.com": [18569], "www.villas4you.co.uk": [18490], "qipai.sina.com.cn": [14842], "stories.rackspace.com": [13506], "www.aeepcpul.asso.ulaval.ca": [17229], "www.antiphishing.org": [1066], "cdn.betteradvertising.com": [5458], "img5.thalasseo.com": [16168], "pagseguro.captcha.uol.com.br": [16998], "nextgenautoparts.com": [11368], "now.mmedia.me": [10281], "lvoc.org": [9111], "southend.firmstep.com": [19183], "cdn.posteo.de": [12969], "ebms.cimb.com": [2606], "*.passthepopcorn.me": [12425], "vumanity.net": [17875], "qualityagent.com": [13330], "openhunt.co": [12014], "www.goturkey.com": [6796], "esa.int": [5430], "www.solarpowerrocks.com": [15107], "secure.prleap.com": [3559], "www.resolv.org": [13415], "whos.amung.us": [18267], "touch.afisha.mail.ru": [9874], "linuxmint-art.org": [19461, 19462], "library.ucsc.edu": [17305], "*.laverna.cc": [9175], "prezi.com": [13046], "www.buch.de": [16171], "www.handelsregister.de": [7188], "www.nghttp2.org": [11373], "www.datatilsynet.no": [4216], "postalheritage.org.uk": [12958], "slov-lex.sk": [14972], "ask.linaro.org": [9361], "presenter.player.qbrick.com": [13300], "*.nkb.ch": [19333], "dignityindying.org.uk": [4514], "darjeelin.fr": [4148], "anidb.net": [1022], "nc-buyiphone.apple.com": [1120], "redirect.1und1.de": [68], "support.distilnetworks.com": [4573], "www.biologie.ens.fr": [4930], "*.templatemonster.com": [16106], "*.habets.se": [7126], "*.r-kom.de": [13388], "www.blender.org": [2067], "vn5socks.com": [17807], "mymagnet.magnet.ie": [9860], "mentoring.hhs.gov": [7062], "postpoints.washingtonpost.com": [17990], "sverigesradio.se": [15673], "www.siemens.*": [14770], "mobile.leboncoin.fr": [19351], "*.fused.com": [6273], "fms.treas.gov": [17059], "images-www.localist.com": [9541], "invest.dha.gov.au": [4308], "blog.bitcoin.de": [1966], "inch-ci.org": [8044], "play.freeciv.org": [6160], "esellerate.net": [5357], "dms-sweden.com": [4047], "support.burst.net": [2445], "*.ethereum.org": [5379], "giphy.com": [6665], "indabamusic.com": [8049], "www.lauramercier.com": [888], "events.birmingham.gov.uk": [19000], "dustri.org": [4811], "www.wargaming.com": [17978], "mykolab.com": [10765], "www.identityworkshop.eu": [7940], "cdneu2.wahanda.net": [17948], "e4ward.com": [4864], "svn.thedarkmod.com": [16266], "hekko.pl": [7290], "notalwayshopeless.com": [19441], "idportal.lrz-muenchen.de": [9238], "vandyke.com": [17549], "reviewingcomics.com": [13845], "cics.osu.edu": [11760], "iterm2.com": [19276], "jt.india.com": [8060], "www.pirates-forum.org": [16227], "*.activeevents.com": [495], "retailsails.com": [13823], "www3.open.ac.uk": [11986], "nds.rub.de": [13478], "adp.com": [1427], "www.webfestglobal.com": [18116], "www.dowjones.com": [11320], "*.shopstyle.com.au": [14720], "forum.pirati.cz": [12722], "rum.wpm.neustar.biz": [11280], "*.newyorker.com": [16203], "www.bluekrypt.com": [2134], "www.eply.com": [4945], "mail.kn.vutbr.cz": [17522], "www.vmwareblogs.com": [17496], "lbcomet.cern.ch": [2575], "www.goodlucktrunk.com": [6828], "publicorigin.wix.com": [18383], "www.greenparty.org": [6926], "*.mountsinai.org": [10618], "ag.gov.au": [1340], "zazzle.com": [18804], "summerexperiences.wustl.edu": [17993], "linshunghuang.com": [9360], "redeem.itunes.apple.com": [1120], "boingboing.net": [2181], "cyp.halton.gov.uk": [19236], "www.majordesignsdollfashions.com": [9899], "origin.business.upc.cz": [17000], "store.litespeedtech.com": [9458], "www.123rf.com": [25], "h-node.org": [7042], "planet.haskell.org": [7229], "faround.net": [5665], "cumulusnetworks.com": [3919], "documentfoundation.org": [16221], "my.betteradvertising.com": [5458], "rescomp.stanford.edu": [15383], "bbzsogr.so.ch": [19648], "km.support.apple.com": [1120], "www.anxbtc.com": [314], "airs.com": [751], "www.froggynet.com": [19199], "grid.worldcommunitygrid.org": [18447], "lounge.qacafe.com": [19529], "mypages.aldi-mobile.ch": [299], "services.maidstone.gov.uk": [9868], "www.tchibo.pl": [15985], "www.customworks.ca": [9579], "lxr.missinglinkelectronics.com": [10455], "ultrafacil.com.br": [17134], "online.statefarm.com": [15418], "*.printrbot.com": [13072], "www.brennancenter.org": [2302], "no.libreoffice.org": [9311], "www.freedominc.nl": [6170], "netzpolitik.org": [11278], "public.slidesharecdn.com": [14963], "onlineplanningregister.northyorks.gov.uk": [19440], "www.redditstatic.com": [13692], "asweb.stanford.edu": [15383], "www.biop.ox.ac.uk": [17271], "app.coinjar.com": [3397], "my.wmtransfer.com": [18076], "wiki.archlinux.fr": [1159], "www.coisas.com": [3412], "*.partipirate.ch": [12284], "www.ticketsage.com": [15818], "fuwu.alipay.com": [817], "docs.getfoxyproxy.org": [6591], "www.bsideslv.org": [1545], "esrb.org": [4964], "www.luckyshare.net": [9651], "www.aldi-mobile.ch": [299], "www.koumbit.org": [8999], "www.2k.com": [86], "cs.kindful.com": [8893], "coreinfrastructure.org": [3667], "secure.claranetsoho.co.uk": [3212], "correctiv.org": [3685], "publicobject.com": [13214], "www-ssrl.slac.stanford.edu": [15384], "*.unm.edu": [16993], "growleadchange.wustl.edu": [17993], "www.aboutmyvote.co.uk": [427], "btcstore.eu": [1569], "m3server.com": [9697], "na.schottenland.de": [14366], "bulletin.net": [2417], "creative.adobe.com": [615], "kyhwana.org": [9051], "www.pddoc.com": [12234], "www.campina.ru": [2782], "donorregister.nl": [11132], "kulturstationen.kk.dk": [8730], "ad.yieldlab.net": [18682], "www.mongodb.com": [10553], "*.verticalresponse.com": [17642], "www.mlpchan.net": [9758], "modmyi.com": [10513], "ubit.buffalo.edu": [17297], "img03.findgravy.com": [5843], "demo-anonymous.piwik.org": [12733], "www.express-vpn.com": [5516], "oascentral.comcast.net": [3460], "esc.isis.poly.edu": [12888], "www.amnesty.or.jp": [966], "ssl-ccstatic.highwebmedia.com": [7408], "surveys.researchresults.com": [13799], "matomymedia.com": [10075], "*.sescoops.com": [14104], "cis.rit.edu": [13434], "popvote.hk": [12912], "mysql.pipni.cz": [12257], "parcelforce.com": [12397], "image13.bizrate-images.com": [2033], "www.blueorigin.com": [2143], "manage.zerigo.com": [18835], "accan.org.au": [247], "my.vpnglobe.com": [17502], "e621.net": [4865], "asset.dr.dk": [4078], "afilias.info": [707], "siseveeb.ut.ee": [17069], "mail.win.dtu.dk": [16031], "www.pushplay.com": [13249], "customerrewards.sky.com": [14924], "aldi-mobile.ch": [299], "canvas.uw.edu": [17077], "www.gayakuman.com": [6481], "mwave.com.au": [10736], "www.alexandercoward.com": [797], "zdmcirc.com": [18760], "www.eoft.eu": [4935], "*.luv.asn.au": [9110], "rugshd.com": [14029], "www.zsim.de": [18914], "matildajaneclothing.com": [10072], "marcan.st": [9982], "cdn1.iconfinder.com": [7921], "www.e-activist.com": [4847], "*.slate.wvu.edu": [18212], "alertir.com": [789], "firstlook.org": [5878], "www.aess.asso.ulaval.ca": [17229], "directline.metafaq.com": [4526], "www.42floors.com": [143], "www.cheznous.com": [18490], "www.geology.illinois.edu": [17258], "dovetailservices.com": [4719], "suche.golem.de": [6819], "news.scotland.gov.uk": [19575], "money.yandex.by": [18648], "www.64px.com": [180], "thebrigade.thechive.com": [16258], "api.plixi.com": [9545], "www.textmagic.com": [16157], "jobs.allianz.com": [18950], "*.bin-store.com": [1886], "atomz.com": [1329], "m.geektimes.ru": [6507], "o.xbox.com": [18550], "leisureonline.chesterfield.gov.uk": [19058], "www.securusglobal.com": [14537], "www.domeny.sk": [18938], "www.usi.vutbr.cz": [17522], "www.cait.wustl.edu": [17993], "it.cornell.edu": [3676], "tiki.vorratsdatenspeicherung.de": [295], "www.pc-ostschweiz.ch": [12217], "www.stand.org": [15375], "*.blog.upc.edu": [12895], "esat.kuleuven.be": [8816, 9034], "m.apan.org": [329], "*.confused.com": [3573], "www.netim.com": [11236], "gnumeric.org": [6765], "*.hackerschool.com": [7148], "www.*.uh.edu": [17315], "vremya.yandex.com": [18651], "www.webdam.com": [18059], "*.meeting.afrinic.net": [709], "meetfriends.rt.com": [13468], "wso2.com": [17930], "images.plattstatic.com": [12790], "cio2.uchastings.edu": [16942], "www.dotcomsecurity.de": [4698], "superfast-openreach.co.uk": [15629], "annonce.borsen.dk": [2224], "www.betts.com.au": [1831], "nvdeveloper.nvidia.com": [10985], "www.jeeptopsdirect.com": [8544], "www.lwn.net": [9112], "c.cksource.com": [2622], "click.otaserve.net": [19470], "ping.fm": [12681], "kyn.me": [9054], "nih.gov": [11052], "*.mktoresp.com": [10475], "*.odn.io": [16570], "ebscohost.com": [4872], "websitealive10.com": [18149], "nacp.ornl.gov": [11693], "img07.taobaocdn.com": [15953], "ww690.smartadserver.com": [14982], "svn.python.org": [14204], "www.beastnode.com": [1736], "www.cpaptalk.com": [3745], "www.footlocker-inc.com": [6011], "crowd.geant.net": [6313], "www.openmpt.org": [11951], "*.search.etargetnet.com": [5375], "ssl.toplist.cz": [15847], "hpi.uni-potsdam.de": [17333], "css.chefkoch-cdn.de": [3058], "tapestry.tapad.com": [15954], "www.kickassvps.com": [8877], "ew.com": [5297], "www.100-gute-gruende.de": [8], "*.gentoo.org": [6531], "repository.cwi.nl": [2958], "pt.stackoverflow.com": [15359], "totalfanshop.net": [16603], "www.newyorktimes.com": [11313], "www.sustainability.asu.edu": [1195], "googleonlinesecurity.blogspot.co.*": [2113], "*.motorola.com": [10615], "www.odmenazadobiti.cz": [16076], "www.calendario.cc": [2737], "c.mail.ru": [9874], "tendencias.vozpopuli.com": [17861], "okura.nl": [11778], "sklik.cz": [14915], "thc.bioinfo.pl": [1898], "www.bullionstar.com": [2421], "janestanford.stanford.edu": [15383], "image.winzip.com": [18333], "slooh.com": [14134], "check.symantec.com": [15715], "www.dmjx.dk": [4600], "firmware.intel.com": [8209], "www.gigster.com": [6658], "platform.unifiedsocial.com": [17184], "ninthdecimal.com": [11420], "rethink.org": [19549], "www.openlinksys.info": [11950], "www.bluemix.net": [2152], "gb.jd.com": [8423], "t-mobile.co.uk": [15769], "e2ma.net": [4863], "ramnode.com": [13538], "publicinsightnetwork.org": [13209], "*.crossrider.com": [3817], "www.spiegel.de": [15272], "www.nl.frieslandcampina.com": [2782], "*.pnc.com": [12274], "my.yieldmanager.com": [13881], "tools.otenet.gr": [12132], "summerhumanities.stanford.edu": [15383], "a.udimg.com": [16948], "researchstore.com": [4206], "secure.bigbrother.se": [1856], "sccps.silentcircle.com": [14786], "contributoria.com": [3620], "*.wargaming.net": [17978], "mathid-origin.mathtag.com": [10071], "*.victorinox.com": [17674], "questia.com": [13354], "images.lynku.com": [9683], "www.kb.cert.org": [2583], "n.rivals.com": [19553], "ngvpn21.nvidia.com": [10985], "companiesintheuk.co.uk": [3507], "career.teamtailor.com": [16003], "siterecruit.comscore.com": [3453], "lists.altlinux.org": [304], "www.aldi.hu": [299], "*.ortolo.eu": [12113], "tap.rubiconproject.com": [14014], "amnesty.gr": [963], "aldi.lu": [299], "www.sizzlesitesinc.com": [14891], "secure.chesterfield.gov.uk": [19058], "*.differencebetween.net": [4462], "jacoblangvad.com": [8488], "www.authbox.io": [1408], "waffles.fm": [17945], "openxmpp.com": [11996], "www.greenparty.org.uk": [6925], "*.flyersrights.com": [5962], "pedsit.stanford.edu": [15383], "talkoclock.com": [15934], "visaliatimesdelta.com": [17767], "www.bikt.de": [1521], "*.nic.br": [10919], "android-client.fitbit.com": [5887], "russian.rt.com": [13468], "mapillary.com": [9971], "affiliates.nexcess.net": [11356], "api.lenta.ru": [19356], "soom.cz": [19610], "idp.lsbu.ac.uk": [9098], "vws3.primus.ca": [13063], "*.rhcloud.com": [13424], "www.collabora.ca": [3419], "openfiler.com": [12034], "nantes.indymedia.org": [8085], "whatismyip.com": [18231], "www.cnsi.ucla.edu": [17241], "*.kinja.com": [8904], "caktusgroup.com": [2723], "ams.hhs.gov": [7062], "fokus.fraunhofer.de": [6112], "dashboard.lob.com": [9533], "web.clicktools.com": [3264], "sealedabstract.com": [14438], "www.swapoff.org": [15677], "www.fakaheda.eu": [5638], "cryptoexperts.com": [3858], "star.duodecim.fi": [4804], "cimacorp.net": [5627], "vistech.net": [17781], "118information.co.uk": [19], "www.gktw.org": [6686], "insight.com": [8170], "www.broadcom.com": [2355], "tremendesk.com": [569], "help.dkit.ie": [4040], "icommons.org": [7700], "friendster.com": [6218], "*.psu.edu": [12538], "*.w3roi.com": [1464], "bugs-master.debian.org": [4275], "*.telfort.nl": [16098], "flightglobalshop.com": [5921], "www.boston.com": [2233], "atlassec.web.cern.ch": [2575], "prihlasenie.azet.sk": [1481], "www.myiu.org": [10808], "www.sa-as.com": [17768], "suppliercenter.walmart.com": [17964], "www.mims.com.ph": [9743], "*.intelli-direct.com": [8214], "www.opentext.com": [11984], "c.1tw.org": [47], "becuonlinebanking.org": [2175], "www.ibc.researchcompliance.vt.edu": [17740], "www.ees.elsevier.com": [5183], "magento.com": [9850], "cas.uvm.edu": [17075], "csa.canon.com": [2809], "amsterdam2014.drupal.org": [4780], "www.es.amnesty.org": [956], "www.safebilling.com": [14230], "flyertown.ca": [5964], "www.spicebox.co.jp": [15265], "www.1deg.org": [50], "jobs.broadcom.com": [2355], "www.ubmchannel.com": [16927], "www.comixology.com": [3465], "thunderkick.com": [16406], "www.dsg.cs.tcd.ie": [15789], "getresponse.com": [6580], "api.simplyhired.com": [14830], "addbooks.se": [570], "shibboleth.net": [14702], "myheritage.com.il": [10834], "tancity.de": [15940], "*.dnb.no": [4058], "972mag.com": [210], "www.uploaded.to": [3952], "wireshark.org": [18369], "versioneye.com": [17634], "support.wmtransfer.com": [18076], "weburbanist.com": [18096], "communigator.co.uk": [3498], "collab.net": [3417], "www.unclineberger.org": [16986], "ghazisaeidigroup.engineering.osu.edu": [11760], "ocio.nih.gov": [11052], "benefitsweb.com": [1777], "www.plusgirot.se": [12830], "www.housing.illinois.edu": [17258], "youtube.tn": [18709], "www.aok.de": [317], "*.myjobscotland.gov.uk": [10838], "judici.com": [8662], "clipperz.is": [3271], "widget.boomads.com": [2208], "cognitionsecure.com": [3387], "www.susestudio.com": [14200], "stats.adobe.com": [615], "gwywx.taobao.com": [15952], "www.opal.com.au": [11904], "assets.vidyard.com": [17705], "www.ecm74.com": [5052], "www.jobsatosu.com": [8599], "join.pirateparty.org.au": [12713], "takuu--saatio-fi.directo.fi": [15916], "demo1.odoo.com": [11727], "womeninnovatemobile.com": [18405], "*.servage.net": [14598], "verizonenterprise.com": [17627], "postgresql.us": [12974], "adserver.openx.org": [11994], "safeandsavvy.f-secure.com": [18428], "admin.adultshopping.com": [644], "ntia.doc.gov": [17058], "unimi.it": [17190], "gnuradio.org": [6359], "eduncovered.com": [5071], "nytimesathome.com": [11001], "www.elmbridge.gov.uk": [5174], "www.flixbus.cz": [5931], "*.typesafe.com": [16915], "saltstack.com": [14255], "*.smartling.com": [14999], "www.master.yandex.by": [18648], "research.domaintools.com": [4660], "firelady.com": [5862], "profiles.tmt.org": [16370], "www.haiku-os.org": [7163], "images.randomhouse.com": [13543], "rtd.tubemogul.com": [16814], "standards.data.gov.uk": [19100], "feedback.userecho.com": [17430], "apollo.ro.vutbr.cz": [17522], "ukash.com": [17122], "admissions.uic.edu": [17231], "shellfish.io": [14695], "ibank.privatbanka.sk": [13096], "www.hotukdeals.com": [7549], "docs.puppetlabs.com": [13232], "fulltraffic.net": [6253], "wix.gosquared.com": [6784], "admin.na5.acrobat.com": [480], "cdn.mxpnl.com": [10740], "*.android.com": [1006], "www.sigmaxi.org": [14779], "dev.jd.com": [8423], "mkssoftware.com": [9755], "assets.sbnation.com": [14079], "www.elanex.biz": [5141], "vanityfair.com": [3551], "cnda.condenast.co.uk": [3553], "wordpress.tv": [18428], "feeds.feedburner.com": [5734], "status.bnc4free.com": [2164], "coinfloor.co.uk": [3404], "cdn.innerbody.com": [19293], "api.pinterest.com": [12699], "m.aldi.be": [299], "partner.yandex.kz": [18652], "www.habets.pp.se": [7125], "allerderm.com": [14993], "radoncinternal.stanford.edu": [15383], "www.netmediaeurope.fr": [11198], "webassetsd.scea.com": [14089], "metrics.westernunion.com": [18216], "*.epbfi.com": [4940], "www.openshift.com": [11973], "*.thenextweb.com": [16204], "webmail.jimdo.com": [8572], "x.jd.com": [8423], "fourecks.de": [6080], "m.web.cern.ch": [2575], "bitcoinstats.com": [1971], "my.rusi.org": [13480], "gamesrocket.de": [6439], "www.getdigital.co.uk": [6570], "ixmaps.ca": [19315], "viaduct.io": [17662], "img3.store.microsoft.com": [10364], "*.advel.cz": [653], "a.fastcompany.net": [5681], "www.gchat.com": [6312], "blog.popads.net": [12902], "mci.edu": [10125], "trustwave.com": [16799], "static.login.persona.org": [10662], "extreme-light-infrastructure.eu": [5527], "blackboardtest.ncl.ac.uk": [10884], "computerworld.com.au": [7704], "forum.taobao.com": [15952], "media.wwte.com": [17937], "newsblur.com": [11326], "www.vtech.com": [17519], "thecreatorsproject.com": [16263], "www.quup.com": [13382], "www.wikiwand.com": [19759], "www.aerio.biz": [687], "uptilo.com": [17401], "archive.icommons.org": [7699], "www.mega.com": [10221], "www.as112.net": [343], "forum.ovh.com": [12173], "advancement.uic.edu": [17231], "cdn.w55c.net": [17891], "www.canon.com.mk": [2809], "rasp.yandex.com.tr": [18649], "packetflagon.is": [19476], "sslvpn.ntu.edu.tw": [10971], "acdn.stsdb.com": [14195], "ibeu2.mookie1.com": [10576], "anongit.mindrot.org": [10413], "image.trucktrend.com": [16764], "magazine.redhat.com": [18428], "www.youtube.com.qa": [18709], "brandensittich.de": [2282], "itmb.nl": [7848], "boxus.com": [12458], "pledge.freestateproject.org": [6152], "www.spatialbuzz.com": [15230], "www.german-design-council.de": [6554], "go.cz.bbelements.com": [1713], "remind.com": [13759], "sealinfo.websecurity.norton.com": [11505], "yuilibrary.com": [18625], "weblearn.ox.ac.uk": [17271], "www.cerit.cz": [2572], "www.sparkstudios.com": [15224], "m.fazjob.net": [5554], "www.whodoyou.trust": [18260], "northeastern.edu": [11499], "newsletters.1105pubs.com": [16], "www.g-ir.com": [6714], "skycityauckland.co.nz": [14128], "nxtforum.org": [11592], "www.comnap.aq": [2639], "carpromods.com": [2828], "*.marktplaats.net": [19385], "www.virtualedge.com": [272], "clinicaltrials.gov": [3268], "a.darjeelin.fr": [4148], "*.easyvoicebiometrics.com": [5031], "coderbits.com": [3374], "web.geogebra.org": [6537], "roddis.net": [13943], "marc-stevens.nl": [9980], "andesi.org": [998], "newscientist.com": [11298], "www.asirobots.com": [349], "secure.derby.gov.uk": [4380], "theiet.org": [7720], "doel.kuleuven.be": [8816], "jenkins.libtoxcore.so": [9322], "ellak.gr": [6915], "www.telekom-partnerwelt.de": [16084], "wiki.x2go.org": [18499], "*.standaard.be": [15379], "my.lsbu.ac.uk": [9098], "submittable.com": [19636], "support.startmail.com": [15410], "cmgm3.stanford.edu": [15383], "www.lfg.com": [19360], "www.uvt.nl": [16445], "visaforchina.org": [17766], "www.openssl.org": [11970], "www.flyn.org": [5967], "ixmaps.piwikpro.com": [19497], "blog.us.playstation.com": [12795], "ssl.weborama.fr": [18138], "www.informahealthcare.com": [8120], "datacell.is": [4177], "www.ytchannelembed.com": [18624], "webshop.scooter-attack.com": [14390], "codehs.com": [3349], "updates.postecert.poste.it": [12965], "*.foresight.org": [6028], "allmychanges.com": [833], "cse.ucsd.edu": [16939], "swingfree.co.uk": [15692], "4armed.com": [157], "u2.outbrain.com": [12150], "piwik.adelphi.de": [582], "broadland.gov.uk": [2357], "reserveaspace.wustl.edu": [17993], "pcp.com": [12227], "rts.ch": [19621], "people.php.net": [12250], "www.lyrishq.com": [9686], "veronmaksajat.fi": [17632], "app.gigster.com": [6658], "wiki.arkos.io": [1196], "fuwu.taobao.com": [15952], "switchvpn.net": [15702], "vikingvpn.com": [17711], "synergistscada.com": [15735], "hullcc.firmstep.com": [19183], "one.iu.edu": [8064], "cf2.vuze.com": [17879], "apps.nero.com": [11162], "tickets.cpanel.net": [2653], "force.ft.com": [5826], "barra.r7.com": [13393], "control.fraedom.com": [19193], "*.bornthiswayfoundation.org": [2223], "fonts.rovio.com": [13989], "a4-images.myspacecdn.com": [10848], "www.nextbus.com": [11360], "ftp.intevation.net": [8297], "www.lavabit.com": [9172], "adserv.quality-channel.de": [15271], "im.jd.com": [8423], "www.yify-torrent.org": [18616], "ezimages.eu": [5004], "www.bezrealitky.cz": [18995], "mirrors.berkeley.edu": [17240], "lolnet.org": [9569], "patron.fsf.org": [5600], "getmondo.co.uk": [19215], "www.smuxi.net": [15016], "docs.docker.com": [4616], "execed.economist.com": [5060], "www.teddyhyde.com": [16056], "www.megamozg.ru": [19394], "sysdig.com": [19651], "gqrcode.alicdn.com": [805], "cars.com": [2864], "center.kaspersky.com": [8806], "www.debian-facile.org": [4270], "join.acs.org": [929], "www.m6r.fr": [9699], "www.registro.br": [13735], "*.directline.com": [4526], "use.resrc.it": [13599], "it.umd.edu": [17263], "tickets.eth-0.nl": [5376], "knight.stanford.edu": [15384], "apt.syncthing.net": [15732], "webmail.schokokeks.org": [19570], "lifeline.org.au": [9332], "nyc-lane.wj32.org": [18390], "www.comstern.at": [3456], "as.cornell.edu": [3676], "forums.nexusmods.com": [6066], "www.sinsofasolarempire.com": [14853], "www.litecoin24.nl": [9463], "www.county-star.com": [3710], "site.inria.fr": [8159], "*.digia.com": [4475], "analytics.citizenweb.io": [3173], "lis.gov": [9082], "*.spire.umass.edu": [17265], "*.ipaddresslabs.com": [7788], "promo.calendar.mail.ru": [9874], "fencecenter.com": [5747], "*.portlandmercury.com": [12938], "cryptonit.net": [3884], "tuftsgiving.org": [16819], "www.skatelescope.org": [19595], "uptime.netcraft.com": [11219], "truevault.com": [16770], "zulius.com": [18922], "becu.org": [2175], "www.fjellner.eu": [3113], "ceskaposta.cz": [2974], "cnb.cx": [1920], "ovpn.se": [11688], "stats.ams-ix.net": [983], "*.allseenalliance.org": [837], "gearsourcecdn.com": [6484], "new.ftc.gov": [5720], "smail.websupport.sk": [18160], "www.inspirehep.net": [8178], "community-cache-uat.freescale.com": [6183], "www.mapzen.com": [9978], "user.img.todaoferta.uol.com.br": [16998], "mobil.danskebank.dk": [4145], "ideasonboard.com": [7930], "dinahosting.com": [4519], "www.livenation.co.*": [9481], "dev.hellobond.com": [7299], "www.sagernotebook.com": [14240], "support.calameo.com": [2732], "klondike.xiscosoft.es": [18576], "homepages.ihug.co.nz": [7956], "moodle.strode-college.ac.uk": [15528], "panel.bytemark.co.uk": [2489], "www.medistack.com": [10143], "tps30.doubleverify.com": [4709], "buyfacefx.com": [14793], "www.rsf.org": [13784], "www.tem.fi": [16909], "segment.com": [14558], "idm.mit.edu": [9749], "defenseindustrydaily.com": [4309], "*.minus.com": [10436], "www.piazza.com": [12658], "www.intellnews.net": [19299], "lists.linux-foundation.org": [9412], "www.ritter.vg": [13904], "s3o.ft.com": [5826], "www.goalworthy.com": [6800], "www.zerodium.com": [18761], "css.slough.gov.uk": [14971], "ship-ment.com": [14705], "www.zareason.com": [18797], "ssl.sifomedia.se": [15843], "www.yourchoiceyourhome.org.uk": [19794], "*.git.sourceforge.net": [15173], "iglo.tk": [3533], "acronymfinder.com": [484], "leastfixed.com": [9217], "forum.aircrack-ng.org": [18948], "rr.com": [13916], "yoursav.me": [18738], "navercorp.com": [11113], "*.pearsonvue.com": [12506], "catalog.video.msn.com": [9796], "dsa.debian.org": [4275], "ssl-sgc.static.rtbf.be": [14011], "www.rentex.com": [13775], "www.dn.no": [4055], "www.massagemag.com": [10049], "php.net": [12250], "sigxcpu.org": [14784], "classx-admin.stanford.edu": [15383], "blog.po.st": [12834], "*.samsungapps.com": [14266], "megafiles.se": [10225], "notalone.stanford.edu": [15383], "dfiles.eu": [4032], "secure.zooku.ro": [18899], "godaddy.com": [6773], "darujme.ludialudom.sk": [9652], "academy.amnesty.at": [958], "p8.raasnet.com": [13655], "www.jdoqocy.com": [3481], "spu.taobao.com": [15952], "elektro-paloucek.cz": [19152], "www.linnrecords.com": [9385], "*.www.odcdn.com": [11747], "www.spla.ulaval.ca": [17229], "kyb.buttercoin.com": [2463], "media.showcase.ca": [14742], "www.sierraclubgreenhome.com": [14771], "www.christianprayercenter.com": [3110], "*.faround.net": [5665], "123count.com": [24], "*.jobsgopublic.com": [8600], "*.topcoder.com": [16560], "*.hosting-advantage.com": [11192], "www.fralin.vt.edu": [17740], "kvarterhuset.kk.dk": [8730], "www.washpostco.com": [17989], "newsagent.scoop.co.nz": [14388], "hobocomp.com": [7439], "store.cpanel.net": [2653], "tchibo-ideas.de": [15985], "*.lighttpd.net": [9346], "www.kaspersky.com": [8806], "www.alum.kuleuven.be": [8816], "etreshop.com": [5393], "getdigital.de": [6611], "trinityhome.org": [16738], "www.forbrukerportalen.no": [6019], "canaldigital.se": [2803], "store.speedtree.com": [15254], "tts.uol.com.br": [16998], "www.octorate.com": [11717], "www.websense.com": [18083], "warnerartists.com": [17981], "tdcanadatrust.com": [15800], "my.webmoney.ru": [18076], "payments.livingsocial.com": [9517], "forum.kapsi.fi": [8791], "esp.attachmategroup.com": [1335], "xm1math.net": [18578], "passwordreset.leeds.ac.uk": [17318], "newyorkcasual.com": [11350], "blog.localist.com": [9541], "consumer.gov": [3598], "*.futurequest.net": [6283], "weather.sina.com.cn": [14840], "www.alts.trade": [302], "www.darkfasel.net": [4152], "*.ibb.ubs.com": [16929], "de.discussions.tomtom.com": [16540], "migros-shop.de": [19399], "*.cryptocloud.com": [3871], "get.cm": [6563], "filetransfer.bathnes.gov.uk": [1689], "khms0.google.com": [6841], "cms-smbmarketplace.cisco.com": [3162], "telepigeon.com": [16092], "www.megiteam.pl": [10234], "static7.startnext.com": [15412], "support.starrez.com": [15394], "serve.quickbitcoin.co.uk": [13360], "wepawet.iseclab.org": [8365], "*.3scale.net": [136], "*.fidelity.com": [5774], "gcmcomputers.com": [6310], "thesafety.us": [16236], "photo.isu.pub": [8382], "jobregister.aas.org": [235], "bcgolf.com": [1507], "www.reclog.jp": [13640], "i.mail.qq.com": [13285], "sig-io.nl": [14773], "capture.condenastdigital.com": [3554], "www.gumstix.com": [7021], "www.ok.de": [11626], "gov1.info": [6861], "www.govdex.gov.au": [6864], "www.ethercalc.net": [5378], "packs.clearlinux.org": [3233], "*.skydsl.eu": [14934], "ad-cdn.technoratimedia.com": [16044], "*.rtrcdn.com": [13772], "sentinelone.com": [14587], "discourse.mozilla-community.org": [10650], "www.friedhoefewien.at": [18284], "www.jococruise.com": [8588], "kortschakcenter.usc.edu": [17278], "www.pardus.org.tr": [12400], "use.sourcedna.com": [15171], "staging.eastmon.com.au": [5020], "developer.whitepages.com": [15614], "notalwaysromantic.com": [19441], "*.scrs.gc.ca": [2802], "workforceportal.elabor.com": [4926], "system8.rbwm.gov.uk": [19539], "aws.tracker.squidanalytics.com": [15334], "www.bandpass.me": [1637], "lenoblast.rt.ru": [13469], "cits.wustl.edu": [17993], "secure.startlogic.com": [15409], "sunsport.stanford.edu": [15383], "www.deltager.no": [4338], "koji.fedoraproject.org": [5730], "welcometometlife.com": [18190], "gap.stanford.edu": [15383], "account.deepin.org": [4302], "interest.sky.com": [14924], "members.internetdefenseleague.org": [8282], "eprints.dkit.ie": [4040], "*.studentaidcalculator.com": [15536], "app.curdbee.com": [17649], "www.trendmicro.com": [16717], "nowybip.pl": [11535], "patent.resource.org": [13207], "seattletechnicalbooks.com": [14454], "static.gog.com": [6365], "tv.slashdot.org": [14947], "recordstoreday.tuneportals.com": [13649], "*.colossal.com": [16373], "polk.com": [12879], "login.uptobox.com": [19718], "www.overpass-turbo.eu": [19474], "files.vbulletin.com": [17471], "shrewsburynorthshropshire.greenparty.org.uk": [6925], "ssl134.penguinhost.net": [12535], "image.ceneo.pl": [2936], "secusmart.com": [14539], "icq.com": [7690], "www.mtnacertification.org": [9800], "*.mynaweb.com": [10840], "reporting.shop.telegraph.co.uk": [16082], "sg.godaddy.com": [6773], "discount.teengfs.com": [13039], "qrz.com": [13313], "help.pardot.com": [12399], "www.filterbypass.me": [5814], "*.yourhosting.nl": [18736], "fpdownload.adobe.com": [615], "fgdb2010.imn.htwk-leipzig.de": [7114], "waarschuwingsdienst.nl": [11132], "www.orange.co.il": [12088], "caps-login.usc.edu": [17278], "www.underhandedcrypto.com": [17157], "myaccount.southend.gov.uk": [15193], "socialshows.com": [15061], "c.msn.co.jp": [9795], "consuwijzer.nl": [3594], "www.btcchina.com": [1557], "cdn8.openculture.com": [12006], "www.1time.aero": [65], "www.alexandrasangelgifts.co.uk": [798], "www2.guidestar.org": [7007], "www.tortoisegit.org": [16595], "intranet.crick.ac.uk": [19090], "zuno.sk": [18768], "www.voa.gov.uk": [19739], "www.hertz247.be": [7339], "auth.api.sonyentertainmentnetwork.com": [15149], "www.ebankingentoutesecurite.ch": [4870], "www.printfection.com": [13070], "*.corp.googleusercontent.com": [6844], "*.randombit.net": [13546], "m.voyage-prive.com": [17857], "www.junge-piraten.de": [8679], "www.monsterdivx.com": [10565], "*.corporate-ir.net": [3680], "stuwww.uvt.nl": [16445], "tofinosecurity.com": [16528], "nerdpol.ch": [11159], "www.slideshare.net": [14962], "www.ekmsecure22.co.uk": [5136], "st5.gismeteo.ru": [6669], "biz.zumzi.com": [18923], "www.adbrite.com": [564], "www.courtesan.com": [6897], "service.wienernetze.at": [18284], "*.38.de": [119], "www.*.vaforvets.va.gov": [17019], "service.garagegames.com": [6457], "*.piratenpartei.ch": [12284], "www.gannettridge.com": [6455], "coinpay.in.th": [3408], "admin.kapsi.fi": [8791], "www.billetten.dk": [1880], "meetrics.de": [10218], "www.hertz.be": [7339], "tastekid.com": [15973], "www.hertz.bh": [7338], "cdimage.linuxdeepin.com": [4302], "community.dynamics.com": [4829], "argosonline.es": [1186], "www.grepular.com": [6944], "aka.education.gov.uk": [19149], "2012.eurobsdcon.org": [5403], "*.claranet.nl": [3212], "northherts.greenparty.org.uk": [6925], "zaguan.unizar.es": [17356], "www.vpncritic.com": [17507], "oyoony.de": [19475], "app.clicktools.com": [3264], "accounts.login.idm.telekom.com": [16087], "ballotmeasuredomains.com": [1632], "www.wasilczyk.pl": [17995], "cloudsigma.com": [3293], "about.gigaom.com": [6644], "www.bonding.de": [2195], "*.abccommercial.com": [239], "www.sunybroome.edu": [2365], "zeist.nl": [11132], "fb.mobile.de": [19403], "exootlab.com": [5500], "www.audience-discovery.com": [1352], "static.domainnamesales.com": [4655], "i4.gallery.technet.microsoft.com": [10364], "passport.fanli.com": [5655], "www.vivaciti.net": [17796], "www.paper.li": [12379], "landalcampings.nl": [18490], "www.colossal.jp": [3447], "*.wemfbox.ch": [18199], "*.ostkcdn.com": [12170], "don.pasteur.fr": [12446], "resources.windowsphone.com": [18346], "paymentsportal.dell.com": [4335], "domeny.aerohosting.cz": [689], "www.wordnik.com": [18434], "*.earwolf.com": [5010], "honk.sigxcpu.org": [14784], "blog.cyphertite.com": [3986], "helpdesk.proxy.org": [13180], "login.rubiconproject.com": [14014], "*.staticwars.com": [15428], "www.blockexplorer.com": [2083], "i.technet.microsoft.com": [10364], "pathdefender.com": [12452], "planet.kde.org": [8718], "pong.qubitproducts.com": [13345], "vrijstellingoldtimer.nl": [19744], "www.eipocimb.com": [2606], "www.modelviewculture.com": [10518], "ruptly.tv": [14039], "ssl.apple.com": [1120], "rcitravelstore.co.uk": [18490], "www.uptonhomehardware.co.uk": [17402], "*.internetretailer.com": [17640], "static.dealer.com": [4256], "help-zh-tw.nike.com": [11401], "chicago2011.drupal.org": [4780], "sso.smq.mydatapipe.com": [10803], "www.onelogin.com": [11835], "kundeservice.tdc.dk": [15796], "parents.asu.edu": [1195], "icu-project.org": [8257], "www.perryellis.com": [12580], "manufrog.com": [9964], "www.lucky2u.net": [9649], "www.vgwort.de": [17483], "shop.list.co.uk": [16199], "bluemix.net": [2152], "www.superdrug.com": [15627], "anonym-surfen.de": [8623], "rack911.com": [13495], "*.bellareed.com": [10000], "www.mappingmediafreedom.org": [9974], "www.wwte11.com": [17937], "mail.bfriars.ox.ac.uk": [17271], "webpush.weixin.qq.com": [13285], "api.badgekit.org": [1605], "flipkart.com": [5926], "www.tptq-arabic.com": [15854], "www.bnz.co.nz": [1534], "schrodinger.com": [14747], "0kbhkort.kk.dk": [8730], "*.decisionbriefs.com": [4285], "*.wimpmusic.com": [18276], "express.servicenow.com": [14622], "tracfone.com": [16626], "krb-sjobs.brassring.com": [19017], "kis.hosteurope.de": [7516], "cache.gizmodo.com": [6695], "thestanfordfund.stanford.edu": [15383], "familie.plus.aok.de": [317], "code.theads.me": [16332], "*.sculpteo.com": [14430], "colors-il.com": [3446], "ovh.us": [11686], "libcal.com": [9288], "ausregistry.com.au": [1374], "*.trails.com": [4343], "yokl.com": [18689], "th.silverrushstyle.com": [14800], "vendercom.com": [17603], "direct.yandex.by": [18648], "anonbox.net": [1045], "baratikor.com": [4742], "iweb.com": [7875], "hwcdn.libsyn.com": [9321], "www-stage.websitealive.com": [18149], "signup.memberful.com": [10247], "www.jackson-it.de": [8485], "blogsp.ashleymadison.com": [1254], "humanresources.illinois.edu": [17258], "images1.q8car.com": [13278], "www.virginmedia.ie": [17738], "www.durham.police.uk": [4808], "connect.charter.com": [3020], "opengroup.org": [16205], "dev.ssllabs.com": [14180], "opalang.org": [11903], "www.gmo.jp": [6345], "www.broadcomfoundation.org": [2356], "uillinois.edu": [16960], "i5.walmartimages.com": [17965], "stat.webhostingsearch.com": [18038], "www.gscdn.nl": [19211], "www.telebrands.net": [16072], "consultldf.tauntondeane.gov.uk": [15978], "www.sydney.edu.au": [19649], "pfact.nottingham.ac.uk": [11528], "www.devpress.com": [4430], "cdn.imgstat.com": [3922], "www.privacy-cd.org": [13084], "mysweetiq.com": [10788], "graysofwestminster.co.uk": [6903], "www.spacepolicyonline.com": [15206], "svnlab.com": [14203], "leaseweb.com": [9215], "www.prisonlegalnews.org": [13076], "web-stat.net": [18043], "youtu.be": [18709], "thewesternworld.com": [16324], "datadepot.hscic.gov.uk": [19264], "speedof.me": [15257], "*.managers.hr.columbia.edu": [3448], "*.newslook.com": [11330], "www.nrk.no": [11546], "www.cals.cornell.edu": [3676], "drc.ohiolink.edu": [11762], "profile.oracle.com": [12082], "dealzon.com": [4023], "www.base-valid.com": [1686], "www.windowsitpro.com": [18345], "support.ixsystems.com": [7884], "projects.puppetlabs.com": [13232], "www.m.maps.yandex.kz": [18652], "www.geeksquad.co.uk": [6498], "mastozytose-schweiz.org": [10060], "www.securityexperten.com": [14529], "torlock.com": [16568], "i3.zst.com.br": [18915], "biostat.wustl.edu": [17993], "www.turris.cz": [16846], "brandisty.com": [2285], "xmission.com": [18530], "ads.shareth.ru": [14680], "apple.com.cn": [1122], "americanflyertrains.com": [942], "*.gstatic.com": [6839], "hakko.com": [7171], "r00tz-org.theidentityproject.com": [13390], "*.bloo.ie": [2114], "www.linux-magazine.com": [9394], "b0.raptrcdn.com": [19533], "mysullivannews.com": [10819], "tescodiets.com": [16138], "belarus.indymedia.org": [8085], "sa1.www4.irs.gov": [7819], "apschedule.com": [336], "www.bobafamily.com": [2171], "thomascook.com": [16375], "*.myheritage.nl": [10834], "*.myheritage.no": [10834], "www.pinta-outlet.fi": [12698], "admissions.plymouth.gov.uk": [19500], "hivos.nl": [7430], "status.rackspace.com": [13506], "*.blutmagie.de": [2159], "iop.org": [8195], "rma.demandmedia.com": [4344], "huntonprivacyblog.com": [19266], "www.riscure.com": [13899], "www.saucytime.com": [14304], "www.auphonic.com": [1370], "fncash.com": [5581], "backblaze.com": [1595], "manage.rooof.com": [13966], "berkeleylug.com": [1785], "donate.shadowproof.com": [14655], "jabber.hot-chilli.net": [7546], "www.becoquin.com": [1720], "questions.medicaid.gov": [19391], "business.kaspersky.ru": [8807], "smjg.org": [15010], "loopia.se": [9606], "sheffield0to19.sheffield.gov.uk": [14694], "eecscal.mit.edu": [9749], "stupidcensorship.com": [15548], "cdn2.colocationamerica.com": [3435], "libraryh3lp.com": [11492], "www.killscreen.com": [8887], "wikidot.com": [18294], "www.orangestatic.com": [12091], "avadirect.com": [1438], "*.ch.ch": [19052], "wanglibao.com": [17971], "www.washingtonpostmedia.com": [17989], "blog.siteground.com": [14865], "www.jansbrug.nl": [8513], "myleague.com": [10766], "zeringo.com": [18836], "auth.jino.ru": [8575], "powernotebooks.com": [13004], "2014.appseccalifornia.org": [1133], "netpol.org": [11246], "www.perception.psy.ulaval.ca": [17229], "4kbhkort.kk.dk": [8730], "*.qoo10.cn": [13307], "www.fishbase.us": [5881], "*.craftstats.com": [3753], "secure.landal.com": [18490], "digitalrepository.smu.edu": [14140], "searchnetworking.de": [16018], "petitions.southglos.gov.uk": [15189], "bp.nserver.ru": [11548], "shop.kagi.com": [8766], "www.sherrin.com.au": [14701], "velocitymicro.com": [17598], "jolexa.net": [8620], "*.yimg.com": [18684], "deutsch.istockphoto.com": [19309], "runbox.com": [14037], "halifax.co.uk": [7174], "shubh.am": [14749], "www.shutthebackdoor.net": [14752], "www.evisa-vietnam.com": [5460], "kayak.co.uk": [8823], "unix4lyfe.org": [17354], "*.git.sf.net": [15173], "images.secureserver.net": [14511], "redbullusa.com": [13666], "dbs.com.sg": [4010], "cert.se": [2582], "www.gavinhungry.io": [6473], "boots.no": [2215], "vip.chbtc.com": [3036], "ese.engineering.osu.edu": [11760], "lvs.truehits.in.th": [16774], "www.romdashboard.com": [13447], "www.channel4.com": [3003], "atrpms.net": [369], "tolaris.com": [16538], "www.virtualinventions.com": [17752], "static2.urbandictionary.com": [17407], "p0.qhimg.com": [13302], "walsall.greenparty.org.uk": [6925], "*.tibco.com": [15817], "*.myleague.com": [10766], "forums.stablehost.com": [15357], "maps.yandex.com": [18651], "www.rt.com": [13468], "travelzoo.com": [16700], "www.akamai.com": [761], "remote.modern.ie": [10519], "gamefly.co.uk": [6419], "treasury.uillinois.edu": [16960], "servizi.tiscali.it": [16498], "*.craftbanter.com": [3752], "malwaredomainlist.com": [9930], "hants.gov.uk": [7196], "*.1984.is": [40], "assets-s3.usmagazine.com": [17417], "www.weather.yandex.by": [18648], "ads.pro-market.net": [13108], "support.upc-cablecom.ch": [19716], "www.unlimited401k.com": [17359], "www.pcisecuritystandards.org": [12224], "crc.id.au": [2656], "disman.tl": [4564], "support.recordedfuture.com": [13650], "ld-1.itunes.apple.com": [1120], "www.geogebra.org": [6537], "bitgamer.com": [1996], "petakillsanimals.com": [12241], "*.lunarpages.com": [569], "*.16personalities.com": [38], "a.fsdn.com": [216], "blog.engineyard.com": [5265], "www.purechat.com": [13242], "www.chcemvediet.sk": [3037], "www.stedebroec.nl": [11132], "jinx.com": [8576], "www.3v4l.org": [139], "*.jotformpro.com": [8637], "wiki.ornl.gov": [11693], "webdevstudios.com": [18060], "www.atlseccon.com": [18968], "gnu.io": [6356], "www.cecpdonline.org": [2948], "corporate.navteq.com": [10872], "hastrk3.com": [7236], "www.londonstockexchange.com": [9577], "www.survs.com": [15662], "b2b.clickvoyage.ru": [3254], "coinimal.com": [3405], "recrute.parrot.com": [12410], "walletgenerator.net": [17962], "p.acxiom-online.com": [508], "christophertruncer.com": [3114], "rss.mmedia.me": [10281], "www.xiscosoft.info": [18576], "motherboard.vice.com": [17667], "id.google.*": [6837], "allposters.com": [835], "*.www.starwoodhotels.com": [15414], "yellowpagesoptout.com": [18672], "tracker.openitp.org": [11947], "choutatsu.riken.jp": [13430], "mynewsdesk.com": [10841], "i4.microsoft.com": [10364], "s.update.chartbeat.com": [3018], "*.chatter.com": [3034], "lh.co.th": [9283], "www.zenger.nl": [18828], "hpi.de": [7090], "namecentral.com": [11018], "*.wdtinc.com": [18036], "crowdtangle.com": [3822], "us.pycon.org": [13263], "www.datatables.net": [4188], "keckapps.usc.edu": [17037], "*.blogspot.de": [2107], "accredible.com": [464], "pandawhale.com": [12356], "sape.ru": [14296], "nervous.io": [11163], "lendingclub.com": [9246], "frsupport.msi.com": [9792], "www.sptag.com": [15322], "www.ndia.org": [11049], "softlayer.com": [15094], "repeaterstore.com": [13777], "www.arquetype.org": [1211], "www.lettre-de-motivation-facile.com": [9266], "www.thecthulhu.com": [16334], "video.eetimes.com": [4906], "www.eup-network.de": [5397], "img.borsen.dk": [2224], "rsa.com": [13453], "relate.org.uk": [13751], "www.notenoughshaders.com": [11516], "gidforums.com": [6332], "sitedata.xramp.com": [18588], "my.nanorep.com": [11033], "*.imss.caltech.edu": [2756], "discuss.codemirror.net": [3372], "citp.princeton.edu": [13064], "inside.wpp.com": [17923], "*.leo.org": [9256], "*.smartmoney.net": [11321], "1.*.wdfiles.com": [18294], "www.etext.illinois.edu": [17258], "mtnacertification.org": [9800], "static.criteo.com": [3801], "ri.gov": [19552], "segpaycs.com": [14556], "boozallen.com": [2220], "www.nervoussystems.org": [11164], "cdn.distilnetworks.com": [4573], "www.it.johnshopkins.edu": [8611], "jcea.es": [8540], "juno.co.uk": [8684], "www.ibm.com": [7675], "dropdeadpaper.com": [4770], "instraffic.com": [8197], "view.us.adjug.com": [526], "secure.torrentday.com": [16579], "whmcs.com": [17906], "www.soraiseyourglasses.com": [15045], "gansvr2.desy.de": [4399], "test.hertzequip.com": [7372], "hackover.de": [7157], "www.wweek.com": [18312], "zipcloud.com": [8689], "netcompetition.org": [11175], "www.krlmedia.nl": [8748], "*.companieshouse.gov.uk": [3506], "www.playerauctions.com": [12803], "www.clubcompy.com": [3320], "barnskospecialisten.se": [1679], "*.sciverse.com": [14375], "dr-qubit.org": [4734], "shop.amnesty.de": [960], "buffy.eecs.berkeley.edu": [17240], "voa.va.gov": [17019], "cambridge.greenparty.org.uk": [6925], "www.youtube.in": [18709], "hacdc.org": [7131], "www.mlno6.com": [9761], "discussions.agilebits.com": [727], "cheznous.com": [18490], "u4.uicdn.net": [16958], "www.youtube.ie": [18709], "ssl.theatlantic.com": [16246], "www.epson.com.mx": [5330], "www.scrambl.is": [14403], "www.fossies.org": [19191], "cable6.net": [2702], "lunarpages.com.mx": [569], "www.awltovhc.com": [3481], "prxy.com": [13185], "www.andesi.org": [998], "www.mwop.net": [10738], "stucomp.stanford.edu": [15383], "www.elance.com": [5140], "*.wac.edgecastcdn.net": [5079], "www.gq-magazine.co.uk": [6378], "s.clickability.com": [4827], "www.wusmhealth.wustl.edu": [17993], "*.aspi.org.au": [1401], "*.arizona.edu": [17299], "distilleryimage1.instagram.com": [8182], "todaoferta.uol.com.br": [16997], "online.illinois.edu": [17258], "nxtck.com": [11593], "www.myendnoteweb.com": [5242], "blogs.amnesty.org.uk": [971], "www.gemklub.hu": [6518], "contact.comparethemarket.com": [3511], "manager.travelspecialistsite.com": [16699], "www.media.gta.arch.ethz.ch": [4975], "hcm-fusioncrm.oracle.com": [12082], "connect.ala.org": [298], "www.tornadoweb.org": [16574], "cdn.mysql.com": [10780], "bugs.mageia.org": [9847], "koellinglab.engineering.osu.edu": [11760], "www.openwrt.org": [11992], "www.2buntu.com": [90], "*.homecomputing.fr": [7477], "www.ocelot.li": [11710], "static.mailigen.com": [9886], "www.cert.org": [2583], "bronx.esat.kuleuven.be": [8816], "hackerone.com": [7142], "www.cacert.org": [2520], "oesrc.researchcompliance.vt.edu": [17740], "superguarantee.com": [15613], "gradimages.com": [6881], "www.dbs.com.sg": [4010], "*.a1000words.com": [383], "www.rr.com": [13916], "www.canon.co.nz": [2809], "docuwiki.hearstdigitalnews.com": [7271], "shaun.net": [14685], "buy.stubhub.com": [15534], "fazschule.net": [5554], "www.oneweb.cz": [11648], "ccs.com": [2551], "csedweek.org": [2669], "www.the-body-shop.ch": [3645], "static.ijreview.com": [7747], "www.dct.org.uk": [19105], "*.ad.ad-srv.net": [15962], "customer.comcast.com": [3461], "develop2050.vcd.org": [17474], "*.bloodhoundgang.com": [2116], "www.onemonth.com": [11850], "www.bluegenio.com": [2131], "*.store.winzip.com": [18333], "www.tehtri-security.com": [15807], "ab-dep-op-elogbook.web.cern.ch": [2575], "wiki.cxense.com": [2694], "financialprotection.usa.gov": [17029], "coventgarden.london": [19083], "www.zvv.ch": [19806], "pingxx.com": [12690], "i.warosu.org": [17983], "www.amnesty.se": [972], "www.isc.org": [7821], "*.wapy.com": [17894], "*.mycdsglobal.com": [2564], "myaccount.courierpostonline.com": [3715], "www.allmybase.com": [846], "admin.kuleuven.be": [8816], "pics.cdn.librarything.com": [9305], "broxtowe.firmstep.com": [19183], "*.towelroot.com": [19691], "g.christianbook.com": [3112], "blog.asmallorange.com": [214], "www.ubuntu-art.org": [19461], "passport01.leeds.ac.uk": [17318], "connect.news.com.au": [11338], "spektrix.com": [19617], "hotwire.com": [7561], "cryptopro.ru": [3861], "nullrefer.com": [11573], "research.sparx.org.nz": [15227], "form.sk.mbank.eu": [9722], "sso.debian.org": [4275], "www.weblogin.umich.edu": [17266], "secure.torbay.gov.uk": [16569], "www.golflink.net": [6820], "data.appguru.com": [1106], "seventorrents.org": [14637], "www.golfdigestschool.com": [3551], "apl.osu.edu": [11760], "www.nie-wieder-vds.de": [11391], "www.hyper.sh": [7644], "deansnewsletter.stanford.edu": [15382], "streetmoda.com": [15521], "webmail.hermes.cam.ac.uk": [17243], "fr.centos.org": [2942], "lastfm-z.plexapp.com": [12815], "www.openmedianow.net": [11960], "www.mechse.uiuc.edu": [16956], "i.ju.taobao.com": [15952], "simon.butcher.name": [14815], "curate.us": [3923], "itaccounts.nottingham.ac.uk": [11528], "corporate.aldi.co.uk": [299], "www.asciinema.org": [1247], "screendaily.com": [14409], "support.bioconductor.org": [1905], "beonespark.com": [1512], "corecode.at": [3661], "data.nodc.noaa.gov": [11083], "digitalocean.com": [4495], "*.vpnbook.com": [17862], "www.bluemovie.net": [2126], "bluessl.com": [2135], "midnight-commander.org": [10377], "www.explore.co.uk": [7452], "vendorsvoice.idg.se": [7705], "pajustice.org": [12539], "www.123count.com": [24], "vc-kundenservice.de": [17472], "www.linuxluddites.com": [9424], "prettyincash.com": [13039], "na3.www.gartner.com": [6463], "*.coxds.com": [3738], "library.ohio-state.edu": [11761], "staging-charts.ycharts.com": [18613], "vedomosti.ru": [19730], "ewellnessmag.com": [4992], "cccure.org": [2541], "www.poodle.io": [12277], "*.wsws.org": [17931], "communities.cisco.com": [3162], "image.syncsearch.jp": [15731], "ad.netshelter.net": [11208], "jekyllrb.com": [19320], "*.livenation.be": [9481], "www.scieneo.de": [14383], "www.hsmr.cc": [7584], "www.seancassidy.me": [14440], "www.ruag.com": [19559], "insightcommunity.com": [5940], "so36.net": [19605], "support.t-mobile.com": [15772], "oneday.lvrj.com": [9160], "economicimpact.publish.uic.edu": [17231], "console.online.net": [11870], "connect.ulaval.ca": [17229], "ilearningcontent.oracle.com": [12082], "*.frype.com": [4742], "clear-code.com": [3227], "chukotka.rt.ru": [13469], "*.nadaguides.com": [10867], "*.pcworld.com": [12232], "www.sencha.com": [14576], "www.cinemacon.com": [3146], "httpbin.org": [7591], "pss.sk": [13187], "client.presspage.com": [13033], "www.liu.se": [9084], "three.ne.jp": [15814], "www.diybanter.com": [4037], "www.gogobot.com": [6808], "forensic.to": [18831], "admin.websupport.cz": [18092], "online.colchester.gov.uk": [3414], "i-cares.wustl.edu": [17993], "au3.effectivemeasure.net": [5109], "forums.unrealircd.org": [17364], "hamburg.freifunk.net": [6192], "dnb.com": [4138], "goturkey.com": [6796], "www.piraten-oberpfalz.de": [12715], "v3.pebblepad.co.uk": [12509], "labs.tineye.com": [16468], "www.alditalk.de": [299], "assets.metartnetwork.com": [10296], "realtime.email": [13625], "happyassassin.net": [7201], "*.iamplify.com": [7672], "abakus.freenet.de": [6180], "www.isoc.org": [7829], "*.infinet.com.au": [8092], "www.bestlawyers.com": [1802], "www.delta.com": [4336], "zoomeye.org": [18902], "sealserver.trustkeeper.net": [16782], "www.cloudfoundry.com": [3300], "eaglerockreservation.org": [5006], "videocast.nih.gov": [11052], "my-uat.symantec.com": [15715], "buy.yahoo.com.tw": [18636], "events.ccc.de": [2538], "failover.intel.com": [8205], "groupon.gr": [6975], "webmail.hcltech.com": [7050], "login.mail.sohu.com": [15103], "www.zugaina.com": [18918], "www.biteasy.com": [1992], "rhizome.org": [13863], "alumni.gsb.stanford.edu": [15383], "ourvacationcentre.net": [18489], "www.flybuys.com.au": [5961], "feeds.amung.us": [18267], "odmwheels.com": [11616], "www.libreboot.org": [9315], "*.webalert.jp": [18053], "vavinet.vutbr.cz": [17522], "my.enalean.com": [5229], "www.motherboard.tv": [10607], "threatvault.paloaltonetworks.com": [12349], "nz.taobao.com": [15952], "www.americanscientist.org": [946], "wiki.piratenpartei.at": [12720], "www.zeist.nl": [11132], "thebookpeople.co.uk": [16218], "www.bloggeek.me": [2101], "masterchan.org": [10053], "bitte.overclockers.at": [12164], "www.editorialmanager.com": [5087], "guichet.jura.ch": [19648], "purecars.com": [13236], "www.erinn.org": [5344], "m.addthisedge.com": [572], "whatsmychaincert.com": [18235], "cdn.aim.com": [290], "today.gmu.edu": [6544], "adpub.desjardins.com": [4391], "postident.deutschepost.de": [19112], "duck.co": [4792], "*.gamedesire.net": [6430], "jive.com": [8584], "onespace.kcl.ac.uk": [8899], "*.addthis.com": [571], "cms.corporate.walmart.com": [17964], "www.bookshop.theguardian.com": [16288], "rtb.sitescout.com": [14871], "learn.code.org": [3345], "cnc.exmail.qq.com": [13285], "kr.forums.oracle.com": [12082], "www.truecrypt71a.com": [16767], "join.epoch.com": [5325], "www.spamgourmet.com": [15214], "www.rawgithub.com": [13581], "secure.hostsearch.com": [7514], "*.swmed.edu": [17283], "pb.switchadhub.com": [15701], "ngvpn37.nvidia.com": [10985], "www.marcrogers.org": [9981], "download.videolan.org": [17688], "int.anon-ib.net": [1037], "www.cryptovpn.me": [19094], "jason-3.cnes.fr": [2634], "order.zen.co.uk": [18815], "viber.com": [17664], "www.wizbangpop.com": [18389], "ghost.org": [6628], "ea.com": [5151], "*.www.eastbay.com": [5017], "www.8r.com": [202], "www.ftlgame.com": [5608], "ko.community.dell.com": [4335], "scandinavianphoto.se": [14334], "passwordbox.com": [12433], "apps.admob.com": [532], "benetech.org": [1778], "mobilesecurity.norton.com": [11505], "bcol.barclaycard.co.uk": [1664], "watsi.org": [18004], "pgeveryday.ca": [13121], "www.coop.no": [3646], "cdn.ywxi.net": [18753], "deepin.com": [4302], "educationsso.tue.nl": [15874], "support.citrix.com": [3178], "acenet-inc.net": [471], "umd3.mycdn.me": [10824], "gongyi.jd.com": [8422], "backup.ob.f-secure.com": [5541], "mlsecproject.org": [9759], "www.bityes.com": [1952], "www.coevorden.nl": [11132], "free.360totalsecurity.com": [109], "ictserv1.lsbu.ac.uk": [9098], "help-en-us.nike.com": [11401], "www.arrivabus.co.uk": [1216], "*.npr.org": [10950], "cablesurf.de": [2705], "micahflee.com": [10340], "labs.inspirehep.net": [8178], "www.woothemes.com": [18416], "info.undp.org": [16987], "www.uow.edu.au": [17350], "brueckenkurse.thm.de": [15811], "code.freenet.de": [6180], "www.moar.so": [10483], "www.mysullivannews.com": [10819], "*.trekaroo.com": [16708], "btcxindia.com": [1575], "shop.xeu.com": [18510], "deluge-torrent.org": [4339], "www.linux.org.ru": [9408], "upload.xhamster.com": [18515], "learnshare.com": [9210], "callcenter.berkeley.edu": [17240], "www.khub.net": [8724], "webreg.vsoe.usc.edu": [17278], "mediafactory.fm": [10168], "*.kobobooks.nl": [8949], "instantssl.com": [8185], "ru.godaddy.com": [6773], "*.dfiles.eu": [4032], "www.jayisgames.com": [8534], "emily.st": [5209], "www2.bibl.liu.se": [9083], "heml.is": [7316], "bioshockinfinite.com": [1901], "intevation.net": [8297], "*.arxiv.org": [1148], "*.xda-developers.com": [18508], "assembla.com": [1278], "eforms.copeland.gov.uk": [19079], "eu.elsevierhealth.com": [5187], "numbering.neustar.biz": [11280], "alumni.utah.edu": [17288], "www.hearthbuddy.com": [2230], "thebigweddingmovie.com": [16248], "digitallibrary.norfolk.gov.uk": [19436], "my.netclean.com": [11187], "www.campfireunion.com": [2781], "www.facebook.com": [5620], "isites.harvard.edu": [7219], "informationactivism.org": [8125], "www.retailsails.com": [13823], "www.comcav.com": [3451], "img2.dditscdn.com": [4239], "www.freemailer.ch": [6179], "my.jumpline.com": [8676], "feedback.truste.com": [15856], "www.platt.com": [12789], "ipse.co.uk": [7797], "www.subgenius.com": [3128], "easymail.ca": [5026], "www.internetessentials.com": [19300], "www.nos.pt": [11512], "www.itbookshelf.com": [7859], "secure.rochford.gov.uk": [13934], "nuevocloud.com": [19446], "m.tnaflix.com": [16518], "files.ozbargain.com.au": [12195], "www.helloneighbour.com": [7295], "helpsu.stanford.edu": [15383], "*.bluessl.com": [2135], "westorangehistory.com": [18210], "centreforeffectivealtruism.org": [2955], "homesharing.itunes.apple.com": [1120], "cumbria.police.uk": [3918], "i1.social.microsoft.com": [10364], "dashboard.tawk.to": [15979], "factbook.ecc-platform.org": [4879], "www.4armed.com": [157], "www.otr.im": [11681], "gridserver.com": [6951], "id.guim.co.uk": [7014], "comptepro.leboncoin.fr": [19351], "www.media-proweb.de": [10145], "www.drupal.org": [4780], "edp1.adriver.ru": [534], "tweegy.nl": [16867], "www.shubh.am": [14749], "nouba.dsi.cnrs.fr": [6195], "ist.mit.edu": [9749], "massmail.argonit.cz": [1183], "webmail.gogetssl.com": [6780], "swe.fronter.com": [19200], "cordis.europa.eu": [5421], "cdn.livechatinc.com": [9480], "www.t-mobile.nl": [15771], "max.se": [10090], "git.xiph.org": [18575], "bx.businessweek.com": [2455], "reasons.to": [13637], "www.cs.ox.ac.uk": [17271], "de-captcher.com": [4240], "www.uk.adjug.com": [526], "alternativet.dk": [883], "gunadiframework.com": [453], "bioconductor.riken.jp": [13430], "*.smfboards.com": [14138], "www.theme.co": [16340], "blog.cacert.org": [2520], "redbull.co.uk": [13666], "www.nylas.com": [11597], "prenumeration.idg.se": [7705], "sync.ad-stir.com": [513], "www.logoyes.com": [9562], "gallery.debconf.org": [4268], "*.dntrck.com": [4072], "helpdesk.xmarks.com": [18579], "www.boredtodeath.me": [2222], "www.ifttt.com": [7725], "www.omniture.com": [11803], "securem.ikea.com": [7959], "bhosting.ru": [1519], "www.op5.com": [11902], "www.ikgalekkerslapen.nl": [7960], "architectsjournal.co.uk": [1162], "www.profesia.sk": [19521], "birmingham.greenparty.org.uk": [6925], "profiles.allthingsd.com": [840], "delivery.swid.switchads.com": [15701], "*.hawaiianair.com": [7246], "antifa.cz": [1068], "www.videotron.com": [17700], "*.jacobinmag.com": [8489], "img.linux.cn": [9402], "www.valeofglamorgan.gov.uk": [17532], "www.wooconf.com": [18415], "es.chaturbate.com": [3035], "garron.me": [6461], "status.illinois.edu": [17258], "www.waindigo.org": [17949], "datalink2.labcorp.com": [9122], "homelessworldcup.org": [7480], "downloads.malwarebytes.org": [9929], "drupal-images.tv2.dk": [15881], "ar.witness.org": [18382], "www.onthehub.com": [19460], "www.paypal.com": [12467], "cdni.wired.co.uk": [18363], "learningwithoutlimits.educ.cam.ac.uk": [17243], "giving.stanford.edu": [15383], "oae.uic.edu": [17231], "byod.qq.com": [13285], "ict-helpdesk.lsbu.ac.uk": [9098], "media.coindesk.com": [3394], "legislationsurveys.com": [9231], "www.gomez.com": [3544], "limeservice.com": [9355], "shared.sub.infousa.com": [8110], "www.mobil.yandex.com.tr": [18649], "customercare.23andme.com": [74], "*.adobelogin.com": [619], "www.kompany.com": [8969], "libraryreserve.com": [19363], "www.discoveryplacekids.org": [4556], "ko.libreoffice.org": [9311], "mail.aol.com": [321], "travelocity.ca": [16698], "*.www.erowid.org": [5351], "www.citywerkz.com": [3198], "status.runscope.com": [14038], "audit.median.hu": [10177], "www.elementary.io": [5158], "www.staticwhich.co.uk": [18240], "www.makezine.com": [9918], "www.helponclick.com": [7305], "www.verizonbusiness.com": [17626], "ixsystems.com": [7884], "www.srclib.org": [15339], "magictouch.com": [9858], "whois.serveriai.lt": [14616], "www.notalwaysrelated.com": [19441], "binary.cr.yp.to": [3748], "www.tweetdeck.com": [16869], "vinilox.eu": [17724], "forge.laravel.com": [9157], "osl.iu.edu": [8064], "www.csedweek.org": [2669], "support.software.dell.com": [4335], "www.virtualspirits.com": [17754], "www.yahoo-help.jp": [18634], "xs.powerdns.com": [12990], "*.careerbuilder.co.uk": [2841], "ehsaweb.wusm.wustl.edu": [17993], "aboutthedata.com": [428], "www.facebook.se": [5623], "www.utinam.cnrs.fr": [6195], "copyright.illinois.edu": [17258], "www.imperialcollegeunion.org": [8015], "www.foscam-bg.com": [6068], "www.forumwizard.net": [6064], "messages.moodle.net": [10573], "www.easymail.ca": [5026], "wordstat.yandex.com": [18651], "nz.norton.com": [11505], "*.tickets.com": [16425], "s3.uicdn.net": [16958], "www.idi.ntnu.no": [10964], "www.secure.jhu.edu": [16296], "images.jitsmart.com": [8675], "www.aftenposten.no": [711], "auth.whiskeymedia.com": [18244], "minimania.migros.ch": [19399], "defendinnovation.org": [4908], "ecs-store.engineering.osu.edu": [11760], "visatovietnam.org": [17765], "www.wallet.la": [17961], "www.membernumberlookup.acs.org": [929], "uoflphysicians.com": [17377], "aereo.com": [685], "lists.dns-oarc.net": [4059], "www.kimpluscraig.com": [8891], "www.studentchaptersreview.acs.org": [929], "www.fotpms.plymouth.ac.uk": [12833], "ashampoo.com": [1250], "selectel.ru": [14565], "screenit.com": [14407], "mgid.com": [9739], "*.bitnami.org": [1944], "exep.jpl.nasa.gov": [10869], "immunitysec.com": [8007], "ionaudio.com": [7777], "hyperelliptic.org": [7645], "www.poshliving.com": [12944], "www.active24.cz": [18938], "pool.gridcoin.us": [6950], "assets1.postalheritage.org.uk": [12958], "syn.5min.com": [178], "circle.wustl.edu": [17993], "openaccess.easthants.gov.uk": [5013], "www.seattleprivacy.org": [14453], "www.awe.sm": [1460], "www.switchvpn.net": [15702], "cdnjs.dmjx.dk": [4600], "nicotine-anonymous.org": [11388], "boum.org": [2242], "www.jesus.cam.ac.uk": [17243], "mobi.pccu.edu.tw": [12220], "bugzilla.openvz.org": [11991], "edelivery.oracle.com": [12082], "s.bit.ly": [2002], "stgeorges.nhs.uk": [10913], "*.tkb.ch": [19333], "www.scottish-country-cottages.co.uk": [18490], "lists.gnu.org": [6357], "password.kuleuven.be": [8816], "fsrwiwi.htwk-leipzig.de": [7114], "challengepost.com": [2986], "support.verio.com": [17622], "paymium.com": [12480], "campushuesca.unizar.es": [17356], "www.cricketwireless.com": [3795], "bodum.com": [2173], "www.pyd.io": [13268], "yingxiao.taobao.com": [15952], "idp.peoplefluent.com": [12548], "goodnet.com": [6826], "company.drweb.com": [4783], "uofi.uillinois.edu": [16960], "fxsystems.com": [5611], "design.yammer.com": [18647], "academics.de": [437], "*.umaine.edu": [17321], "www.metin2.co.nz": [10316], "community.office365.com": [11745], "tutor.com": [16852], "*.state.gov": [17067], "pulpix.co": [13223], "www.nhn.com": [10909], "www.rscweb.org": [13997], "kenexapods.com": [8847], "www.clyp.it": [3326], "listes.openstreetmap.fr": [12045], "blog.bitmain.com": [2003], "recalls.gov.au": [13123], "*.sc.hodesdigital.com": [1795], "resortquestsecure.com": [18490], "feedback.arma3.com": [1202], "kanotix.org": [8782], "gcmprm.oracle.com": [12082], "checkip.dedyn.io": [19107], "www.wilkinsons-auctioneers.co.uk": [19760], "frim.nl": [6220], "remote.cathaypacific.com": [2904], "comodogroup.com": [3504], "www.hidepay.net": [7397], "*.adjuggler.net": [528], "tver.rt.ru": [13469], "www.ideone.com": [7943], "wx1.qq.com": [13285], "mtgsy.net": [10371], "cdn.gnd-tech.com": [6352], "vsexshop.ru": [17865], "informatick.com": [8122], "fraedom-cdn.com": [19192], "www-cdn1.pardot.com": [12399], "inf2011.dosowisko.net": [4688], "www.2ksports.com": [88], "philatelie.deutschepost.de": [19112], "ea.voyage-prive.co.uk": [17856], "payperpost.com": [12469], "hackers.fi": [7147], "strategicplan.illinois.edu": [17258], "bethere.co.uk": [16076], "evision.kent.ac.uk": [17317], "my.knightswarm.com": [8944], "claimyourname.io": [3207], "ctswholesalesunglasses.com": [2686], "*.oscommerce.com": [12117], "www.pressable.com": [13036], "www.acikakademi.com": [474], "www.addresspicker.io": [578], "argoscareers.com": [1186], "hanford.gov": [7194], "extensis.com": [5523], "static.licdn.com": [9085], "smdd.adviva.net": [668], "online.barrons.com": [11321], "www.clearchain.com": [3231], "eina.unizar.es": [17356], "www.smartertrack.com": [14997], "www.paginazero.com.br": [12334], "10mtweet.netmeister.org": [11243], "alumni.fit.edu": [5942], "control.thebrighttag.com": [2325], "media2.woolworths.com.au": [18422], "digitec.ch": [4508], "www.zeushash.com": [18852], "www.karmankardon.nl": [7208], "hm.com": [7083], "opentext.com": [11984], "www.morpho.hu": [10599], "www.gn.apc.org": [1294], "space.dtu.dk": [16031], "rage3d.com": [13526], "area17.com": [1179], "button.flattr.com": [5911], "zmap.io": [18762], "www.milepoint.com": [10393], "medicare.gov": [19392], "www.mclu.org": [9727], "l.rapimg.com": [13561], "push.web4all.fr": [18052], "customerservice.aldi.com.au": [299], "organdonation.gov.wales": [6860], "thehub.walthamforest.gov.uk": [17966], "gotinder.com": [16469], "cs.bite.lt": [1991], "youtube.fi": [18709], "archiveofourown.org": [1167], "mjg.in": [9753], "si.gmu.edu": [6544], "paraduxmedia.com": [12387], "backbox.org": [1597], "www.dyankov.eu": [4818], "levny-hosting.cz": [9274], "d.prbrds.com": [13110], "ngvpn10.nvidia.com": [10985], "www.independent.co.uk": [8053], "www.pgi.com": [12248], "www.stg.comcast.com": [3461], "netbeans.org": [11185], "*.utk.edu": [17341], "*.tidalhifi.com": [16432], "apps.irs.gov": [7819], "auditorius.ru": [1362], "arin.net": [338], "roadside-mba.stanford.edu": [15383], "labs.spotify.com": [15296], "old-wiki.freenetproject.org": [6181], "*.analytics.edgekey.net": [988], "www.dashpay.io": [4164], "*.web4u.cz": [18051], "postofficeshop.de": [19112], "www.mapbox.com": [9968], "arvixe.com": [1238], "docs.vogogo.com": [19740], "static.hosteurope.de": [7516], "www.hubspot.com": [7594], "iproduction.com": [7805], "*.greystripe.com": [6948], "www.estoniaevoting.org": [5368], "www.kenengba.com": [8846], "www.openmedia.org": [11959], "www.hackthissite.org": [7136], "www2.webmetrics.com": [18133], "universal.iperceptions.com": [19275], "dropbox.wustl.edu": [17993], "lifesaving.com": [9334], "www.anomos.info": [1033], "transferwise.com": [16664], "stg.gogobot.com": [6808], "raymond.cc": [13585], "greasyfork.org": [6905], "fckme.org": [12266], "www.allistene.fr": [855], "*.neobux.com": [11147], "secure-os.org": [14480], "*.housingwire.com": [7564], "zomato.com": [18890], "www.12foothedgehog.com": [28], "asteriskexchange.com": [1300], "hammacher.com": [7182], "ppm.lowes.com": [9636], "www.rspca.org.uk": [13461], "freakattack.com": [5593], "ekmsecure6.co.uk": [5135], "nordkappnett.no": [11478], "richmondandtwickenham.greenparty.org.uk": [6925], "polleverywhere.com": [12880], "hackinparis.com": [7135], "accessories.dell.com": [4335], "bettercrypto.org": [1826], "simrussia.com": [14806], "*.man.com": [9935], "lyris.com": [9686], "www.nazwa.pl": [11117], "webarchive.jira.com": [8577], "www.ameba.jp": [18954], "teachingcommons.stanford.edu": [15383], "ohnopodcast.com": [15332], "www.gg.gov.au": [6874], "*.factoryexpo.net": [5627], "shop.heise.de": [7288], "external.ak.fbcdn.net": [5700], "extranet.fmed.ulaval.ca": [17229], "cbsstore.com": [2530], "xrel.to": [18589], "mondediplo.com": [10542], "accessnow.createsend.com": [3773], "www.borvilag.aldi.hu": [299], "*.afsa.gov.au": [1392], "admissions.com": [609], "imagecache.allposters.com": [835], "48months.ie": [148], "www.peopleclick.com": [12551], "rmcybernetics.com": [13794], "chelmsford.greenparty.org.uk": [6925], "dev.globus.org": [6747], "consumerprivacy.merkleinc.com": [19397], "netfronts.com": [11191], "docs.derby.gov.uk": [4380], "www.urlaubspiraten.de": [19719], "austrade.gov.au": [1379], "img.honest.com": [7481], "secure-checkout.t-mobile.com": [15772], "rostov.rt.ru": [13469], "plugins2.status.net": [15437], "www.computerfulfillment.com": [3535], "git.spatialbuzz.com": [15230], "www.sberbankdirect.de": [14323], "*.ivn.us": [8057], "www.peterodding.com": [12593], "zh.greatfire.org": [6907], "hertzentertainment.com": [7372], "cdn-ru.thinksteroids.com": [9737], "www.subgraph.com": [15558], "blesk.sk": [2069], "how-old.net": [7567], "chatsecure.org": [3031], "amnesty.org.tr": [970], "discuss.popcorntime.io": [12915], "conference.joomla.org": [8627], "wiki.openstreetmap.org": [11979], "ipcc.ch": [7789], "www.eliminatejunkemail.com": [12336], "erhverv.tdc.dk": [15796], "domino.watson.ibm.com": [7675], "www.gridcoin.us": [6950], "nbl.osu.edu": [11760], "openknowledge.stanford.edu": [15383], "lovefilm.*": [9625], "www.wdr5.de": [18015], "www.flockport.com": [5936], "www.verisigninc.com": [17623], "wiki.edubuntu.org": [5068], "cm1.criticalmass.com": [3802], "scoop.intel.com": [8209], "de.norton.com": [11505], "www.zerorobotics.org": [18838], "www.strategysignals.com": [15511], "laughable-jam.surge.sh": [15653], "mysql.fr": [10780], "www.pinsentmasons.com": [12146], "ix.equinix.com": [5334], "bardwilhome.com": [1665], "sites.cardiff.ac.uk": [2835], "cuttlefish.com": [3945], "*.cbs.com": [2526], "accounts.snapchat.com": [15029], "canary.silentcircle.com": [14786], "help.egopay.com": [5116], "www.wellcomelibrary.org": [19753], "idp.mit.edu": [9749], "www.kulcs-soft.hu": [9033], "academy.oracle.com": [12082], "wiki.whatwg.org": [17904], "om.cnet.com.au": [2526], "git.videolan.org": [17688], "www.reyn.ir": [13852], "x2go.org": [18499], "linux-tips.org": [9399], "www.sydostran.se": [15711], "newcastle.gov.uk": [11315], "www.ciphershed.org": [3151], "*.adpay.com": [623], "chidsweb1.admin.uillinois.edu": [16960], "*.imperial.ac.uk": [8016], "academy.kaspersky.com": [8806], "live.piratenpartei.de": [12721], "*.applebees.com": [1124], "img2.wsimg.com": [14507], "app3.checksconnect.com": [7207], "www-astro.physics.ox.ac.uk": [17271], "westyorkshireobservatory.org": [18214], "www.uoflphysicians.com": [17377], "www.myub.buffalo.edu": [17297], "localsearchassociation.org": [18668], "en.nullday.de": [11574], "cart.rackspace.com": [13506], "discourse.mailinabox.email": [9880], "eng.umd.edu": [17263], "orangeplant.co.uk": [19467], "*.deviantart.net": [4423], "www.db.ripe.net": [13895], "www.onehub.com": [11834], "banu.com": [1656], "ilivid.com": [7754], "nicegraphs.web.cern.ch": [2575], "www.lists.apple.com": [1120], "www.android-arsenal.com": [1004], "pfennigparade.de": [12609], "layerbnc.org": [9182], "auth.athensams.net": [11918], "tectonic.com": [16055], "www.jamesvillas.co.uk": [18490], "v.tumblr.com": [16826], "amazon.de": [917], "www.kpdyer.com": [8757], "pandoblog.com": [12358], "archives.fedoraproject.org": [5726], "trust-guard.com": [16780], "texaco.com": [16149], "bortarsasag.hu": [2225], "optimizegoogle.com": [12072], "www.pdc.prd.xfinity.com": [19784], "spreadshirt.be": [15300], "time.yandex.by": [18648], "mail.multiseek.net": [10696], "www.cals.vt.edu": [17740], "www.attictv.com": [1339], "www.studentaffairs.stonybrook.edu": [15480], "csdb.dk": [2668], "www.research.cals.vt.edu": [17740], "www.trinityhome.org": [16738], "www.regjeringen.no": [13739], "www.grabcad.com": [6879], "debian.piwik.org": [12733], "*.poivron.org": [12985], "pagekite.net": [12330], "www.omniture-static.com": [11802], "www.andreafabrizi.it": [1000], "habbo.fi": [7122], "ma.mesaazcorruptionreport.com": [13896], "vcommerce.com": [17580], "download.geogebra.org": [6537], "www.lordsoftheblog.net": [9609], "www.alertaenlinea.gov": [11810], "usa.anon-ib.su": [1039], "www.backstreetmerch.com": [1603], "military.stanford.edu": [15383], "cheapassfiction.com": [3044], "marketpress.com": [10009], "identity.lbl.gov": [9065], "novartisart.com": [11529], "dartmouth.edu": [4158], "www.sexslurp.com": [14641], "*.startcom.org": [15407], "pure-privacy.org": [13237], "craftcoffee.com": [3754], "wiki.sitelock.com": [14867], "www.archaicbinary.net": [1160], "www.corbettreport.com": [3659], "sipsolutions.net": [14124], "channeladvisor.com": [2999], "www.mykplan.com": [270], "www.arin.net": [338], "ch9.ms": [2979], "www.collabora.co.uk": [3419], "ui.rk.doublepimp.com": [4717], "lab.msdn.microsoft.com": [10364], "yho.com": [18678], "xbee.net": [18548], "wildfiregames.com": [18308], "down.360.cn": [106], "www.nominate.acs.org": [929], "flexinvestments.net": [5914], "*.tu-harburg.de": [15876], "www.qksz.net": [3481], "it2.nl": [7842], "www.tc3.edu": [16543], "www.madetech.com": [9839], "*.primus.com": [13062], "cybergolf.com": [3972], "mail.o2active.cz": [16076], "yespic69.com": [18676], "widgets.bufferapp.com": [2402], "elements.yandex.kz": [18652], "education.gov.uk": [19149], "ssl.washingtonpost.com": [17990], "charts.ycharts.com": [18613], "*.infusedsystems.com": [8135], "citialumninetwork.com": [3169], "www.globalservices.bt.com": [1551], "www.northwarks.gov.uk": [11498], "drugpolicy.org": [4775], "hosting.asp.net": [353], "api.mk2.com": [19402], "www.dtcc.edu": [4323], "theapp.voicelessonstotheworld.com": [11300], "www.scadacs.org": [14086], "*.bodybuilding.com": [2174], "service.ringcentral.com": [13891], "nl.mouseflow.com": [10624], "www.maarssen.nl": [11132], "wowimg.zamimg.com": [18782], "*.glimg.net": [6820], "jucycruize.co.nz": [8463], "www.bitcoin-contact.org": [1958], "www.edgewall.org": [5083], "demisto.com": [4352], "nets-danid.dk": [11247], "obermassing.at": [11699], "forum.namecoin.info": [11024], "film.list.co.uk": [16199], "schwabplan.com": [14372], "email-lists.org": [5191], "www.di.dk": [3566], "www.godaddymobile.com": [6774], "nerd.lavaboom.com": [9173], "ca.com": [2511], "bornthiswayfoundation.org": [2223], "www.kicknews.co.uk": [8878], "www.aan.sh": [391], "a1.jimstatic.com": [8571], "darwinbuild.macosforge.org": [9820], "www.security.nl": [14524], "www.spotify.com": [15296], "bundesrat.de": [2433], "stellar.org": [15464], "a5.websitealive.com": [18149], "br.redhat.com": [13675], "owncloud.documentfoundation.org": [16221], "www.a1afastcash.com": [220], "languageperfect.co.nz": [9146], "wdg2.apple.com": [1120], "live.asp.net": [353], "www.kimberly-clark.com.*": [8889], "*.tradedoubler.com": [16640], "hhg.osu.edu": [11760], "www.clevercoin.com": [3239], "geeksphone.com": [6506], "315.taobao.com": [15951], "bartleby.com": [1684], "www.comcast.com": [3461], "theora.org": [16345], "nattstad.se": [11099], "www.usuhs.mil": [17053], "cdw.com": [2566], "americancensorship.org": [5783], "2008mail.sina.com.cn": [14842], "freeporngif.com": [6145, 6146], "www.subdownloader.net": [15554], "hilversum.nl": [11132], "www.buttercoin.com": [2463], "betabeat.com": [1816], "sso.secureserver.net": [14511], "ap.mnocdn.no": [712], "www.ouifm.fr": [12138], "tripadvisor.co.nz": [19697], "*.kixeye.com": [8729], "www.oblic.com": [11608], "www.pugetsystems.com": [19527], "pcache.alexa.com": [795], "poderpda.com": [12845], "opendemocracy.net": [12032], "www.myheritageimages.com": [10835], "www.schema.org": [19568], "ealing.greenparty.org.uk": [6925], "www.londonpreparesseries.com": [9572], "alivenotdead.com": [820], "extranet.wienerlinien.at": [18284], "www.questionnaires.ecn.ulaval.ca": [17229], "investsmart.com.au": [8316], "asapps.artsci.wustl.edu": [17993], "www.hslu.ch": [7583], "my.tv.mail.ru": [9874], "www.vineyardvines.com": [17723], "nationaleombudsman.nl": [11132], "www.lysator.liu.se": [9084], "blogs.fau.de": [17311], "www.emptywheel.net": [5221], "myaccount.houstonchronicle.com": [7565], "wholesale.1688.com": [36], "codereview.qt-project.org": [13314], "post.harvard.edu": [7219], "myjobs.gloucestershire.gov.uk": [6749], "cache1.neodevlda.netdna-cdn.com": [11147], "www.tableau.com": [15897], "ssl2buy.com": [14177], "btwifi.co.uk": [1579], "www.getambassador.com": [6584], "calfutures.berkeley.edu": [17240], "developer.filemobile.com": [5800], "maxmind.com": [10097], "daydeal.ch": [19103], "www.sourcecoast.com": [15170], "defr.dict.cc": [4455], "runbook.io": [14036], "optin.stopwatching.us": [15488], "babeljs.io": [1592], "geeknetmedia.com": [6505], "www.pipping.org": [12702], "lists.openwrt.org": [11992], "mailoutinteractive.com": [9889], "www.netviewer.com": [11258], "support.balabit.com": [1624], "comparitech.com": [3514], "www.ntchosting.com": [10960], "skrilnetz.net": [14920], "nokia.co.uk": [11461], "*.sfdcstatic.com": [14249], "greyhound.ca": [6947], "casper.infradead.org": [8132], "miscssl.360buyimg.com": [112], "files.gyazo.com": [7035], "i2.gallery.technet.s-msft.com": [14058], "bargains4business.com.au": [1669], "www.diffuse.ca": [4464], "smartmoney.com": [11321], "adserver.exoticads.com": [5501], "labs-staging.data.gov": [4175], "careers.kch.nhs.uk": [10913], "dashboard.rapleaf.com": [13551], "*.bishopi.com": [1917], "timesofmoney.com": [16466], "m.maps.yandex.kz": [18652], "eas8.emediate.eu": [5203], "www.cornerstone.wustl.edu": [17993], "apps.uat.communities.coverity.com": [3734], "interactivemediaawards.com": [8238], "assets.halowaypoint.com": [7176], "public.enthought.com": [5299], "direct.yabumi.cc": [18629], "sheamortgage.com": [8431], "investorflow.com": [14799], "markets.on.nytimes.com": [11000], "auth.awempire.com": [647], "the109.org": [16240], "jura.ch": [19648], "directory.unm.edu": [16991], "www.mix-computer.de": [9752], "virusec.com": [17760], "ssl-static.libsyn.com": [9321], "apiservices.krxd.net": [9016], "www.webarch.net": [18108], "trac.linuxcounter.net": [9391], "www.partnerinfo.lenovo.com": [9251], "cede.ch": [19047], "bury.gov.uk": [19027], "www.qrsolutions.com": [13287], "alionet.org": [815], "publicwhip.org.uk": [13216], "spinoff.nasa.gov": [10869], "gofundme.com": [6779], "www.groupon.com.br": [6973], "yadui.business.yahoo.co.jp": [18640], "www.npm.im": [11538], "www.insurancetech.com": [16927], "webpub.mit.edu": [9749], "auth.telegraph.co.uk": [16082], "omniupdate.com": [11797], "stuaff.usc.edu": [17278], "myplaydirect.com": [10774], "fotoservice.telekom.de": [4410], "adultswim.com": [18942], "bpt.me": [2366], "humanrights.gov.au": [1395], "thebea.st": [1920], "www.mouseblocker.com": [10623], "images.iop.org": [8195], "*.townnews.com": [16614], "www.postaffiliatenetwork.com": [12952], "sharesix.com": [14667], "rd.io": [13595], "respectnetwork.com": [13812], "www.veloplus.ch": [19732], "eforms.redbridge.gov.uk": [13683], "cdn.connect.mail.ru": [9874], "cjfe.org": [2619], "secure.capitalone360.com": [2819], "knihy.nic.cz": [11379], "paste.ee": [12436], "longdistance.uaa.alaska.edu": [17233], "ss.zumzi.com": [18923], "nips.cc": [10930], "www.purchasing.osu.edu": [11760], "*.pentacon.de": [14358], "*.valuedopinions.co.uk": [17545], "internetlivestats.com": [8283], "corp.sts.microsoft.com": [10364], "groups.drupal.org": [4780], "static.youmix.co.uk": [18715], "forum.kde.org": [8718], "opensvc.com": [11972], "www.recordedfuture.com": [13650], "www.mpc-hc.org": [19412], "click-sec.com": [3241], "simba3.web.cern.ch": [2575], "static.stubhub.co.uk": [15534], "www.gtk-apps.org": [19461], "www.moh.nhs.uk": [10913], "forms.oig.hhs.gov": [7062], "lbhf.gov.uk": [9064], "www.manhattan-institute.org": [9953], "scintilla.utwente.nl": [14387], "uden.nl": [11132], "www.guug.de": [6398], "www.lambda-tek.com": [9136], "www.cosic.esat.kuleuven.be": [8816], "ulaval.ca": [17229], "static.usatoday.com": [17031], "*.apply2jobs.com": [1127], "www.highfidelity.io": [7402], "www.intuitlabs.com": [8305], "videopp.com": [17689], "aboutus.org": [425], "www.necu.org": [11130], "form.education.gov.uk": [19149], "m.netbet.fr": [11186], "www.exeterfriendly.co.uk": [5491], "www.superblock.net": [15625], "superbreak.com": [7452], "blosxom.com": [2123], "www.ci.uchicago.edu": [17246], "my.xmission.com": [18529], "*.stlinux.com": [14191], "www.purinastore.com": [13246], "funker530.com": [6266], "fastspringblog.com": [5676], "*.morrisons.co.uk": [10601], "mirror.debianforum.de": [4276], "delaware.gov": [15420], "www.swca.org": [14206], "33option.com": [103], "bugs.chromium.org": [3119], "docker.com": [4616], "img4.picload.org": [12661], "static-titanium.cursecdn.com": [3934], "harlandclarkewebsmart.com": [7207], "contactus.com": [3606], "services.bournemouth.gov.uk": [2251], "www.voyagegroup.com": [17859], "www.exactag.com": [5479], "getjive.com": [8584], "carphonewarehouse.com": [2861], "www.insa-lyon.fr": [7771], "www.bright-things.com": [2318], "www.infosec.ox.ac.uk": [17271], "resources.mentoringcentral.net": [10265], "images.proboards.com": [13110], "*.uiowa.edu": [17316], "smokefree.gov": [19603], "cpbonlinebanking.com": [3430], "greyhound.com.mx": [6947], "luxuryreplica.net": [9678], "promotionbuilder.livingsocial.com": [9517], "*.actionallocator.com": [493], "staging.hellobond.com": [7299], "www.picoville.com": [12666], "*.kikatek.com": [8885], "brownschool.wustl.edu": [17993], "www.phoronix.com": [12637], "aldi.dk": [299], "www.realworldocaml.org": [13629], "superhexagon.com": [15620], "b.jd.com": [8423], "rrl.osu.edu": [11760], "help.ubuntu.com": [17102], "www.sysadmincasts.com": [15750], "www.caremad.io": [2847], "www.fredandpickles.co.uk": [6114], "barter.vg": [1683], "repo.parabola.nu": [12384], "membercentre.fairfax.com.au": [5634], "www.adperium.com": [624], "www.aldi.pt": [299], "www.adeccowaytowork.com": [580], "content.worldnow.com": [18450], "projects.coin-or.org": [3531], "www.emily.st": [5209], "in-the-sky.org": [8027], "secure.thestar.com": [16575], "www.humanityplus.org": [7614], "www.gavinnewsom.com": [6472], "devzone.missinglinkelectronics.com": [10455], "marthastewartweddings.com": [10032], "www.hertz.co.za": [7363], "*.banu.com": [1656], "www.aldi.pl": [299], "internet.csr.nih.gov": [10926], "amblin.io": [922], "imgking.co": [19286], "www.rttire.com": [13476], "www.nobitcoinlicense.org": [11442], "au.norton.com": [11505], "wiki.junge-piraten.de": [8679], "seal.osu.edu": [11760], "www.seeedstudio.com": [14552], "www.ripmixmake.org": [4908], "protect.iu.edu": [8064], "www.notevenpast.org": [11517], "www.iea.org": [8265], "www.sundayworld.com": [15598], "*.vk.com": [17490], "*.bighugelabs.com": [1854], "www.siia.net": [15100], "support.braintreepayments.com": [2274], "asset-2.soupcdn.com": [15167], "developer.snapengage.com": [15026], "www.padlister.com": [12322], "*.ja.net": [8414], "www.ocronusa.net": [11713], "userimages.static.zgncdn.com": [18855], "my.commbank.com.au": [3477], "www.cdon.se": [2562], "*.minted.com": [10434], "brooklinecollege.edu": [2363], "*.renttherunway.com": [13772], "www.byte.nl": [2486], "ctftime.org": [2684], "tracker-software.com": [16631], "myheritage.dk": [10834], "informatik.imn.htwk-leipzig.de": [7114], "www.ubuntu-de.org": [17093], "pdos.csail.mit.edu": [9749], "gogoinflight.com": [6807], "www.bitinstant.com": [1933], "blackoutcongress.org": [2055], "*.itu.int": [7852], "support.zend.com": [18821], "www.geizhals.de": [6511], "roadiq.axosoft.com": [1477], "russian.101domain.com": [12], "worldforpets.com.au": [18460], "supportkb.riverbed.com": [13907], "downloads.freenetproject.org": [6181], "dhansak.collabora.co.uk": [3419], "i3.gallery.technet.s-msft.com": [14058], "www.archiveofourown.org": [1167], "*.violetindigo.com.au": [17728], "static.yubico.com": [18745], "tune.yandex.com.tr": [18649], "mcvpacific.com": [8226], "responder.wt-safetag.com": [18170], "wiki.metroethernetforum.com": [10323], "londonist.com": [9584], "vodafone.co.uk": [17813], "legiscan.com": [9230], "blog.bitmex.com": [1935], "helpdesk.panopto.com": [12364], "uw.edu": [17077], "www.flexnow.ruhr-uni-bochum.de": [14031], "www.structuralengineering.de": [7114], "myaccount.talktalkbusiness.co.uk": [15930], "onlinecensorship.org": [11875], "mobileimages.lowes.com": [9636], "www.searscommerceservices.com": [14446], "*.auctions.godaddy.com": [6773], "*.prxy.com": [13185], "www.ew-online.de": [4990], "www.openvirtualizationalliance.org": [12027], "isolde.web.cern.ch": [2575], "carbonwind.net": [2832], "scottlinux.com": [14402], "www.library.cornell.edu": [3676], "awaps.yandex.ua": [18656], "zcarc.com": [7372], "www.iwoulddo.it": [7879], "static.jiasule.com": [8566], "*.fwc.gov.au": [5632], "globaldatabase.wustl.edu": [17993], "*.shopatron.com": [14724], "mysql.com": [10780], "www.tdrevolution.com": [15802], "paymybill.uic.edu": [17231], "media.ibm.com": [7675], "amnesty.org": [956], "shwyz.ca": [14756], "theiphonewiki.com": [16330], "partners.drweb.com": [4783], "vanessatorrivilla.com": [7973], "oxfamirelandunwrapped.com": [12189], "www-s.housing.illinois.edu": [17258], "affiliate.ashleymadison.com": [1255], "thevideo.me": [16239], "www.aok-gesundheitspartner.de": [317], "videoly.co": [17697], "www2.sharefile.com": [14663], "login.zooniverse.org": [18905], "www.mcitizen.com": [9865], "dnb.no": [4058], "files.nyaa.se": [11596], "workkafe.com": [18437], "ox.mediabistro.com": [10169], "dev.getclouder.com": [6568], "berryreview.com": [1798], "mediacentre.vodafone.co.uk": [17813], "raptureready.com": [13563], "mycalendarbook.com": [10748], "nintendoworldreport.com": [11419], "mi-ms.com": [9991], "dev.withsix.com": [18379], "filemobile.com": [5800], "t1.mediamath.com": [10157], "ocaml.janestreet.com": [8511], "lgscout.com": [9600], "open.plymouth.ac.uk": [12833], "www.gbatemp.net": [6305], "www.globalpolicy.org": [6730], "piglit.freedesktop.org": [6126], "service1.ess.apple.com": [1120], "blogs.forbes.com": [6017], "www.dynatech.de": [4832], "support.linksys.com": [9382], "www.discourse.org": [4545], "dentistry.usc.edu": [17278], "siteadvisor.com": [14863], "www.nemertes.com": [11144], "controllermax.com": [3622, 3623], "*.c13.hesecure.com": [7374], "www.medicalxpress.com": [10186], "www3.bio.org": [1522], "*.suggester.pl": [15583], "www.hslda.org": [7099], "email.bild.de": [1873], "elearning.sydney.edu.au": [19649], "ensq.dict.cc": [4455], "www.wings.buffalo.edu": [17297], "customerservice.costco.com": [3694], "dennikn.sk": [4365], "www.dar.fm": [4006], "apps.rackspace.com": [13506], "billycreative.com": [1885], "mirrors.fedoraproject.org": [5726], "esi2calculator.hmrc.gov.uk": [7084], "www.cs.cf.ac.uk": [2835], "www.trendweight.com": [16712], "authzth.alipay.com": [817], "www.online.osu.edu": [11760], "www.eregulations.ct.gov": [2680], "*.bris.ac.uk": [17301], "proxy.org": [13180], "www.gigafreak.net": [6648], "bitvisor.org": [1950], "*.thetimes.co.uk": [16463], "a.fiksu.com": [5787], "puui.qpic.cn": [13309], "downloads.sf.net": [15174], "providesupport.cn": [13173], "cert.org": [2583], "cxsecurity.com": [3950], "www.vaes.vt.edu": [17740], "foscam-bg.com": [6068], "pekwm.org": [12529], "informationweek.com": [8124], "biz.kolektiva.com": [8963], "www.webmail.byte.nl": [2486], "mysql.active24.cz": [18938], "www.thedaywefightback.org": [16267], "www.sparklabs.com": [15220], "dogsbodyhosting.net": [4635], "uploading.com": [17394], "*.bitmask.net": [2005], "torrentbutler.eu": [16578], "t.channeladvisor.com": [3000], "kb.vpsfree.cz": [19743], "www.vwp.su": [17881], "*.brave.com": [19018], "mail.happyassassin.net": [7201], "www.coolkeywest.com": [3642], "bepress.com": [1783], "videomeet.telekom.de": [4410], "nsslabs.com": [10959], "www.scrapbookroyalty.org": [3010], "www.mdshooters.com": [10043], "developer.basespace.illumina.com": [7968], "slotsfrisoren.dk": [14970], "www2.hostingsolutions.cz": [7531], "www.sha2sslchecker.com": [14115], "theweek.com": [16323], "mail.math.ias.edu": [7669], "chriscoyne.com": [3104], "nerdster.org": [19430], "marineshop.net": [9999], "*.startssl.net": [15407], "expo.getbootstrap.com": [6609], "getgophish.com": [19214], "military.ncpw.gov": [11078], "unmaintained.git.collabora.co.uk": [3419], "ad.targetingmarketplace.com": [1353], "www.bclaconnect.ca": [1508], "fablabtacoma.com": [5614], "umd.edu": [17263], "lefebvre.org": [9190], "*.sysward.com": [15749], "login.andersonvalleypost.com": [4989], "www.micron.com": [10357], "tdesktop.com": [15989], "collectifstoptafta.org": [3422], "amd.com": [925], "media.community.dell.com": [4335], "mysql9.vas-hosting.cz": [19729], "help.zscaler.com": [18913], "www.cdromland.nl": [2567], "eltatar.com": [5189], "www.startlab.sk": [15411], "code.jd.com": [8423], "assets1.vzaar.com": [17883], "dotultima.com": [4706], "www.bofh.it": [2178], "en.inria.fr": [8159], "www.kentuckyonehealth.org": [8854], "mybenefitscalwin.org": [10745], "api.search.cam.ac.uk": [17243], "linux.conf.au": [9404], "*.medical-treatments-management.com": [10188], "lists.openmamba.org": [19465], "vectormediagroup.com": [17586], "arbejdsgiver.jobzonen.dk": [8604], "www.wefightcensorship.org": [18028], "account.sogou.com": [19606], "tuakiri.ac.nz": [16812], "dragonbyte-tech.com": [4737], "how-to-box.com": [7571], "dom.riastatic.com": [13428], "stgraber.org": [15353], "forums-stage.oracle.com": [12082], "services.devon-cornwall.police.uk": [4429], "shop.whyopencomputing.ch": [19758], "asset1.betterplace.org": [1828], "agmk.net": [729], "elementary.io": [5158], "www.xmission.com": [18530], "1105-sub.halldata.com": [7175], "www.showrss.info": [14744], "chimeric.de": [3081], "support.ooyala.com": [11899], "lists.gnutls.org": [6763], "confirmsubscription.com": [3571], "www.selenic.com": [10279], "charities.org": [950], "*.cafepress.com": [2716], "*.allplayers.com": [834], "www.directbox.tv": [4529], "trane.com": [19693], "www.bth.se": [1572], "ubermedia.com": [17086], "www.sedo.de": [14543], "www.sgno.org": [14112], "uguu.se": [17118], "mip2014.engineering.osu.edu": [11760], "account.1and1.com": [51], "thediplomat.com": [16187], "cmw.htwk-leipzig.de": [7114], "lists.immunityinc.com": [8007], "lists.grok.org.uk": [6963], "www.afford.com": [705], "www.register.com": [13732], "metal-detector-town.com": [10305], "europe-consommateurs.eu": [19166], "thefind.com": [16335], "code.openhub.net": [12013], "www.pollendiary.com": [12882], "www.boarnsterhim.nl": [11132], "freeworld.thc.org": [15810], "linkinghub.elsevier.com": [5185], "*.cfr.org": [3702], "datacenter.cj2.nl": [2618], "delivery.c.switchadhub.com": [15701], "library.polyu.edu.hk": [12891], "www.eindhoven.nl": [5127], "m.andersonvalleypost.com": [4988], "barvaux.org": [1685], "support.pinterest.com": [12699], "comms.informahealthcare.com": [8119], "i.ngx.cc": [11376], "www.kontalk.net": [8980], "*.staradvertiser.com": [7485], "static.hootsuite.com": [7488], "hendrik.luup.info": [7318], "facebook.us": [5623], "service.optify.net": [12067], "nor.fronter.com": [19200], "mijnlenen.snsbank.nl": [14144], "www.noxa.de": [19444], "ds.hpci.nii.ac.jp": [10928], "*.phobos.apple.com": [1119], "homebello.com": [7466], "*.uimserv.net": [16961], "www.californiasunday.com": [2749], "images.amcnetworks.com": [18953], "www.kontoapi.de": [8982], "hertztrucks.com.au": [7336], "nancysgonegreen.com": [11028], "adultportal.tameside.gov.uk": [19660], "www.openkeychain.org": [12038], "haystacksoftware.com": [7250], "myinterfase.com": [10836], "eplanning.derby.gov.uk": [4380], "cssm.entrust.com": [5303], "planet.chromium.org": [3119], "britishgas.co.uk": [2340], "sp0.baidu.com": [1619], "colossal.jp": [3447], "www.spcala.com": [14153], "junglee.com": [8680], "metrica.yandex.com.tr": [18649], "www.ecb.europa.eu": [5421], "avm.de": [1453], "*.hoovers.com": [7490], "www.livingsocial.com": [9517], "kosmetik-per-klick.de": [10196], "linuxquestions.org": [9415], "rapidsite.jp": [13559], "www.zimbatm.com": [18867], "smartling.com": [14999], "imp.ovh.net": [12173], "themoviedb.org": [16299], "fz.htwk-leipzig.de": [7114], "grupoavante.org": [6988], "ssl.datamotion.com": [19102], "www.effectivemeasure.com": [5108], "cms.hhs.gov": [7062], "4cdn.org": [158], "incisivemedia.com": [8045], "zyvoxassist.com": [18771], "www.bath.ac.uk": [17300], "www.thebaffler.com": [16247], "mesamatrix.net": [10288], "*.alrc.gov.au": [1396], "www.wifilib.fr": [18285], "faq.1and1.com": [51], "www.epe.admin.cam.ac.uk": [2763], "phparch.com": [12652], "www.myshaklee.com": [14656], "cdns-files.deezer.com": [4303], "*.mega.nz": [10223], "mload.freenet.de": [6180], "janus.wayf.dk": [17896], "www.tsdd.org": [15860], "www.eastbayteamservices.com": [5018], "delivery.api.qbrick.com": [13300], "www.bitpay.com": [1941], "mobile.yandex.by": [18648], "intelexit.org": [8212], "owa.bury.gov.uk": [19027], "linphone.org": [9389], "www.wholesalelabels.com": [18265], "www.londondrugs.com": [9579], "cdn1.xamarin.com": [18540], "www.thunderkick.com": [16406], "eprize.net": [4946], "bmail.berkeley.edu": [17240], "contrastsecurity.com": [19078], "upmedia.plymouth.ac.uk": [12833], "takeaway.com": [15915], "ui.bingads.microsoft.com": [10364], "yourfone.de": [18735], "ingdirect.com.au": [7768], "hetman.epuap.gov.pl": [19139], "www.onehelp.cz": [11643], "apoc.freedesktop.org": [6126], "temando.com": [16104], "blog.bartbania.com": [1682], "seals.trustsign.com.br": [16783], "w00tsec.blogspot.com.*": [2113], "www.thejournal.ie": [16224], "www.barnsley.nhs.uk": [10913], "*.ramnode.com": [13538], "rate.taobao.com": [15952], "ai.pricegrabber.com": [13052], "shamansgarden.com": [14657], "hbdm.hbsp.harvard.edu": [7219], "lists.96boards.org": [209], "*.inspectlet.com": [8176], "asset-3.netbeans.org": [11185], "www.cdon.no": [2562], "status.groupon.com": [6974], "forms.monmouthshire.gov.uk": [10560], "fellowship.fsfeurope.org": [5602], "ally.com": [865], "rev.com": [13837], "community.kde.org": [8718], "wiki.flirble.org": [16191], "*.perceptivepixel.com": [12556], "frascatiproducties.nl": [6107], "everplans.com": [5451], "chatpro.ap.dell.com": [4335], "wiki.geogebra.org": [6537], "www.kasserver.com": [8706], "ostel.co": [12128], "myspace.com": [10847], "dashboard.stanford.edu": [15383], "educatetheworld.com.au": [5094], "toysrus.com": [16621], "www.proultratrim.com": [13117], "static.googlewatchblog.de": [6849], "gwent.greenparty.org.uk": [6925], "greek.rit.edu": [13434], "www.ameliaandersdotter.eu": [927], "gd.libreoffice.org": [9311], "daad.de": [6553], "www.watsi.org": [18004], "www.amd.com": [925], "i.grvcdn.com": [6900], "courses.washington.edu": [17291], "babergh.greenparty.org.uk": [6925], "www.foodsharing.de": [19188], "aspen.com": [1272], "certsimple.com": [2965], "www.hkn.de": [7079], "www.directadvert.ru": [4524], "www.libraryreserve.com": [19363], "motherboard.tv": [10607], "www.vbseo.com": [17469], "*.dodlive.mil": [17028], "own-mailbox.com": [12180], "vespermarine.co.*": [17651], "*.hpcloud.com": [7091], "niskanencenter.org": [11423], "admin.linuxfoundation.org": [9412], "compiz-fusion.org": [3522], "www.guldencoin.com": [7016], "thecompassionclub.org": [16261], "wikis.oracle.com": [12082], "www.woltlab.com": [18403], "status.stormpath.com": [15500], "vtv.fi": [17537], "onapp.com": [11808], "www.telex.cc": [16097], "www.myfolder.net": [10830], "scripts.kissmetrics.com": [8727], "blog.lookout.com": [9601], "earthfirst.org.uk": [5008], "myshr.med.usc.edu": [17278], "www.qt.io": [13315], "webmail.hslu.ch": [7583], "www.ezgram.com": [5002], "olincareers.wustl.edu": [17993], "www.lib.ncsu.edu": [11492], "sq.jd.com": [8423], "ponychat.net": [12898], "wildcardcorp.com": [18305], "touch.meetic.pt": [10215], "certifiedsecure.com": [2970], "affiliates.websharks-inc.com": [18084], "www.crazzed.com": [3767], "img.tradepub.com": [16645], "www.haskell.org": [7229], "www.xmpp.jp": [18524], "static.popads.net": [12902], "payconnect.net": [4893], "ssl.perfora.net": [19487], "internetfreedomfestival.org": [19301], "www.dma.ens.fr": [4930], "aax-us-east.amazon-adsystem.com": [909], "s.gotomeeting.com": [6787], "shanghaicenter.harvard.edu": [7219], "store.playstation.com": [12795], "www.greenit-bb.de": [6917], "www.aulani.jobs": [1367], "accesd.desjardins.com": [4391], "www.nuget.org": [11562], "inventati.org": [1413], "jfrog.com": [8433], "www.vulnhub.com": [17871], "my.syncplicity.com": [15730], "elearning.zg.ch": [19648], "rigb.org": [13994], "thehub.intel.com": [8209], "lgbtrc.usc.edu": [17278], "ourlocality.org": [12144], "www.intersectalliance.com": [8295], "www.fbf8.com": [5701], "*.tchmachines.com": [16601], "www.tirerack.com": [16495], "iqualita.link": [8352], "global.gotomeeting.com": [6787], "btb-preview.stanford.edu": [15383], "ono.es": [11882], "novgorod.rt.ru": [13469], "m.unibet.com.au": [17179], "curlingworld.com": [3931], "washingtonpostmedia.com": [17989], "burningshed.co.uk": [2442], "www.anarplex.net": [991], "st.yell.com": [19790], "ssegs.btrll.com": [2322], "*.whispersystems.org": [18247], "t.co": [15776], "clickbank.net": [3243], "fbs.usc.edu": [17278], "burtcorp.com": [2448], "www.mytalkdesk.com": [19420], "intelfellowships.com": [8210], "npi.org.uk": [10948], "eduid.cz": [5097], "tageswoche.ch": [15907], "patchwork.linux-mips.org": [9413], "private-communities.netapp.com": [11183], "forum.avast.com": [1444], "skm.io": [14916], "scrypt.cc": [14427], "home.slac.stanford.edu": [15383], "*.loopfuse.net": [9604], "i.eroshare.com": [5350], "cdn.scriptlogic.com": [14424], "www.open-mesh.com": [11908], "bike24.de": [1871], "www.openpetition.de": [11966], "raspberrypi.org": [13569], "cdn5.iconfinder.com": [7921], "docutiles.cnrs.fr": [6195], "blog.tivi.de": [19800], "arkane-studios.com": [1197], "diningservices.wustl.edu": [17993], "go.brightcove.com": [5177], "merchant3.chinabank.com.cn": [3084], "malvernhills.greenparty.org.uk": [6925], "www.maastricht.nl": [11132], "dax.comscore.com": [3453], "infojobs.net": [8100], "www.pirati.cz": [12722], "linuxplumbersconf.org": [9397], "www.lse.ac.uk": [9099], "t411.me": [15781], "rsshog.com": [14008], "*.slimerjs.org": [19600], "stat.coxds.com": [3737], "theblog.blip.tv": [2079], "pentabarf.org": [12541], "manilla.7eer.net": [194], "packetflagon.uk": [19477], "*.redbull.tv": [13671], "thumbnailer.thestudio.condenast.com": [3551], "tagasauris.com": [15906], "ir.riverbed.com": [13907], "www.eyeos-apps.org": [19461], "www.capitadiscovery.co.uk": [19038], "www.datart.cz": [4008], "www2.f-secure.com": [5541], "uk2.net": [16963], "meso.osu.edu": [11760], "chip-kiosk.de": [2595], "alkasir.com": [822], "tv.yandex.com.ua": [18650], "w2.sndcdn.com": [15032], "teacherservices.education.gov.uk": [19149], "glitterbank.com": [6711], "www.spatialpoint.com": [15232], "jobs.brassring.com": [19017], "www.professionalprivacypolicy.com": [6716], "www.pindrop.com": [19494], "aka-cdn-ns.adtechus.com": [639], "bpt.bz": [2366], "www.gmoregistry.com": [6346], "www.mjam.net": [10472], "cheapoz.com.au": [3040], "news.cornell.edu": [3676], "www.scraporchard.com": [14405], "piazza.com": [12658], "drm.chipworks.com": [3089], "www.2dialog.com": [84], "pgsql.vas-hosting.cz": [19729], "startengine.com": [15408], "www.1u1s.de": [67], "fundacion.walmart.com": [17964], "www.spa.wustl.edu": [17993], "machcomedyfest.co.uk": [9828], "5gwc-kbhkort.kk.dk": [8730], "www.cryptomator.org": [3878], "*.wso2.com": [17930], "www.mediamatters.org": [10158], "cdn.filepicker.io": [5801], "leisureworldmemberships.colchester.gov.uk": [3414], "www.slotsfrisoren.dk": [14970], "www.spu.ac.th": [15324], "tpc.com": [15849], "c2rsetup.officeapps.live.com": [9483], "www.greenpolkadotbox.com": [6927], "idp.shibboleth.ox.ac.uk": [17271], "harass.stanford.edu": [15383], "www.hetlnvloket.nl": [11132], "adfs.vutbr.cz": [17522], "secure.democraticservices.coventry.gov.uk": [19085], "ma.twimg.com": [16877], "www.snapchat.com": [15029], "sse.jpl.nasa.gov": [10869], "www.xs4all.nl": [18535], "nwprogressive.org": [11590], "i1.microsoft.com": [10364], "www.nanohub.org": [11031], "lists.ffmpeg.org": [5565], "www.douglas.firmstep.com": [19182], "hipl.hnfe.vt.edu": [17740], "www.manasource.org": [9943], "mya.godaddy.com": [6773], "williams.edu": [18317], "www.e-cegjegyzek.hu": [4849], "cp.rackspace.com": [13506], "*.citizen-times.com": [1251], "platinumskincare.com": [12788], "www.rheinland24.info": [13860], "www.iflygo.com": [19223], "online.fit.edu": [5942], "www.aircargoworld.com": [16927], "vletrain.lsbu.ac.uk": [9098], "*.newsblur.com": [11326], "dev-lounge.gamigo.com": [6445], "www.budsgunshop.com": [2395], "secure.codeforamerica.org": [3359], "*.spreadshirt.be": [15300], "leadnow.ca": [9201], "oswatch.net": [11679], "api.23andme.com": [74], "actel.com": [489], "www.iptorrents.us": [7798], "thetvdb.com": [16352], "www.tdnam.com": [15990], "*.tilt.com": [16448], "www.openfmri.org": [12033], "uits.iu.edu": [8064], "icculus.org": [7909], "apress.com": [1137], "*.httpwatch.com": [7111], "thumbs.xmarks.com": [18579], "*.sonicwall.com": [15137], "garciniacambogiavitalmend.com": [6458], "secure.aadcdn.microsoftonline-p.net": [10366], "ezproxy.plsinfo.org": [12537], "lp.liverail.com": [9496], "www.eugenekolo.com": [19163], "performance.westsussex.gov.uk": [18211], "blog.haschek.at": [7223], "www.kovidgoyal.net": [9000], "edeka.de": [19147], "moverall.com": [10633], "linux.org.au": [9407], "facebook.no": [5623], "*.mygreenbeanextract.com": [6923], "www.atomicinsights.com": [1326], "facebook.nl": [5623], "www.nrc.gov": [17211], "upcbusiness.nl": [17003], "www.paymoapp.com": [12482], "adviceguide.org.uk": [665], "*.stayfriends.ch": [15444], "mvps.org": [9808], "sl.libreoffice.org": [9311], "bediff.com.br": [1723], "www.soccerpunt.com": [7732], "www.snelpanel.com": [15033], "order.emcraft.com": [5201], "spins.fedoraproject.org": [5726], "www.sedo.co.uk": [14541], "*.jobs2web.com": [8598], "store.csiac.org": [2670], "www.ada.osu.edu": [11760], "freitag.de": [6194], "ads.intergi.com": [8249], "app.unbounce.com": [17153], "content.findnsave.com": [5836], "www.quinstreet.com": [13366], "*.explosm.net": [5511], "shop.bt.com": [1549], "www.fedbizopps.gov": [5714], "www.mivamerchant.com": [10463], "www.socialsafety.org": [15059], "orangestatic.com": [12091], "webmaster.streamray.com": [15454], "www.subway.com": [15571], "www.lizard-cloud.htwk-leipzig.de": [7114], "earthdata.nasa.gov": [10869], "community.linksys.com": [9382], "www.varuste.net": [17570], "www.uptobox.com": [19718], "*.cheapssl.com": [3041], "verisign.be": [17623], "www.eso.org": [5426], "*.memberclicks.net": [10246], "btc100.com": [1556], "www.proteansec.com": [13165], "facebook.malwarebytes.org": [9929], "gerrit.libreoffice.org": [9311], "www.ixmaps.ca": [19315], "www.coralproject.net": [19080], "www.dynadot.com": [4824], "forum.snsbank.nl": [14144], "www.confidence.org.pl": [3569], "moat.com": [10484], "www.publicintelligence.net": [13210], "bbsey.es": [1714], "www.metalab.at": [10306], "www.jinx.com": [8576], "acrobat.com": [480], "panel.cint.com": [3149], "casro.org": [2887], "tmshop.tm.com.my": [16083], "mysliderule.com": [10818], "visualstudio.com": [17785], "forums.nvidia.com": [10985], "betterscience.org": [18993], "sr2.liveperson.net": [9493], "*.webchuckhosting.com": [18055], "w3counter.com": [17889], "www.portaildescours.ulaval.ca": [17229], "www.seagm.com": [14095], "www.dac.co.jp": [4002], "xeromag.com": [18566], "hacoder.com": [7121], "express.hertz.com": [7372], "*.iberdrola.es": [7897], "*.watershed.co.uk": [18002], "www.33bits.org": [102], "support.astaro.com": [1298], "*.bcge.ch": [19333], "www.swft.nhs.uk": [10913], "boomerang.com": [2209], "s.uploadhero.com": [17392], "javadoc.io": [8530], "support.gitter.im": [6684], "www.slovensko.sk": [14972], "www.physics.ox.ac.uk": [17271], "www.esinet.norfolk.gov.uk": [19436], "www.invasion.com": [8310], "volgograd.rt.ru": [13469], "www.disability.gov": [4538], "www.afd.calpoly.edu": [2747], "submissiontechnology.co.uk": [15563], "appgratis.com": [1105], "aci-europe.org": [248], "*.ptpimg.me": [13192], "www.lundi.am": [9672], "upworthy.com": [17404], "www.oldebroek.nl": [11132], "*.grooveshark.com": [6965], "umassathletics.com": [17264], "www.gemoney.com.au": [6315], "provantage.com": [13170], "kb.siteground.com": [14865], "www.projet-coclico.org": [3343], "*.fwdcdn.com": [6288], "www.datapipe.com": [4212], "vanhaaren.net": [17550], "www.quotesnsayings.com": [13378], "personal.xively.com": [18577], "abbo-shop.ch": [401], "claimformsplus.com": [3208], "www.gamedev.net": [6418], "www.clover.com": [3318], "honors.illinois.edu": [17258], "huxo.co.uk": [7634], "arrivabus.co.uk": [1216], "payments.virginmedia.com": [17737], "admin.groupcommerce.com": [6968], "kg.qq.com": [13284], "logon.billpay.de": [1877], "marinedepot.com": [9998], "foto.vpsfree.cz": [19743], "deutsche-rentenversicherung.de": [4407], "cloudsponge.com": [3295], "socialbakers.com": [15069], "webchat.quakenet.org": [13326], "kickass-torrents.to": [8879], "www.uaa.alaska.edu": [17233], "clock.yandex.by": [18648], "atrack.allposters.com": [835], "*.myheritage.fr": [10834], "www.kinox.pe": [19337], "get.fedoraproject.org": [5726], "*.myheritage.fi": [10834], "www.pay.va.gov": [17019], "opcw.org": [11653], "siraweb.portal.srgssr.ch": [19621], "cbse.soe.ucsc.edu": [17305], "*.parkersoft.co.uk": [12404], "www.dotplex.de": [4703], "faxian.smzdm.com": [15017], "www.knot-dns.cz": [8947], "pricegrabber.com": [13052], "ndr.de": [11119], "www.udistrital.edu.co": [17112], "www.portmorgan.com": [12932], "gestiona.unizar.es": [17356], "trade.taobao.com": [15952], "pdu.edu": [12939, 12940], "join.fedoraproject.org": [5726], "catraquinha.catracalivre.com.br": [2908], "terminatio.org": [16123], "baxterbulletin.com": [1697], "jira.bls.ch": [1526], "data.gov.uk": [19100], "solucoespme.cisco.com": [3162], "kameleoon.com": [8776], "ux-eco.corp.appnexus.com": [1109], "techbase.kde.org": [8718], "goes-app.cbp.dhs.gov": [4035], "widgetbox.com": [18282], "shuma.jd.com": [8423], "*.plssl.com": [13032], "login.ezproxy.uvm.edu": [17075], "*.acalogadmin.com": [439], "www.xprize.org": [18495], "www.objectsecurity.com": [11701], "terena.org": [16121], "www.armorybids.com": [1204], "admin.tagman.com": [15905], "www.nic.ch": [10920], "b7.yahoo.co.jp": [18640], "advel.cz": [653], "www.miles-and-more.com": [10394], "clic-study.org": [2623], "*.garciniacambogiavitalmend.com": [6458], "www.adobeformscentral.com": [618], "www.propertydeals.com.pk": [13159], "www.english-heritage.org.uk": [5268], "www.sur.ly": [15642], "www.linux-tage.de": [9398], "pixeline.be": [12740], "images.discogsmp3.com": [4541], "virtualboximages.com": [17749], "www.malverndiabeticfoot.org": [9925], "portlandmercury.com": [12938], "mytempjobs.gloucestershire.gov.uk": [6749], "www.stv.columbia.edu": [3448], "www.moon.greenpeace.org": [6937], "academico.unizar.es": [17356], "www.techanarchy.net": [19665], "sera.stanford.edu": [15383], "www.starkist.com": [15391], "tlug.jp": [16535], "strlabs.wpengine.netdna-cdn.com": [14680], "ask.openstack.org": [11975], "cdn.crowdrise.com": [3827], "community.shaw.ca": [14687], "status.easypost.com": [5029], "oclaserver.com": [11711], "www.markeedragon.com": [10007], "wwwrc.hertzentertainment.com": [7372], "mydrl.umd.edu": [17263], "profiles.stanford.edu": [15383], "signup.hootsuite.com": [7487], "www.moevideo.net": [10530], "www.nbg.gr": [6911], "r.kissinsights.com": [8726], "tools.linuxlovers.at": [9432], "ru.domaincontext.com": [4653], "secure.disney.co.jp": [4565], "developer.mbed.org": [10109], "asset-4.soupcdn.com": [15167], "optoutprescreen.com": [12064], "freedom.voys.nl": [17860], "wiki.opendaylight.org": [11934], "wyenet.co.uk": [18487], "www.terreactive.ch": [16130], "armstrong.osu.edu": [11760], "www.invisionpower.com": [8325], "www.unblocksit.es": [17150], "icsdelivery.com": [7922], "gnunet.org": [6360], "admin.mims.com": [9743], "*.webmail.uni-weimar.de": [1696], "mylimehouse.cheshirewestandchester.gov.uk": [19057], "browsealoud.com": [2368], "assets.pinterest.com": [12699], "itmetrics.stanford.edu": [15383], "www.cybercompex.org": [3967], "www.ymstat.com": [18621], "web5.uottawa.ca": [17270], "secure.logmein.com": [9549], "old.bitcoin.cz": [10425], "forums.mageia.org": [9847], "stagingspeak.com": [16830], "appkb.ch": [19333], "www.computerbild.de": [19075], "*.rtmcdn.net": [13758], "www.bse.vt.edu": [17740], "chemsysbio.stanford.edu": [15383], "nie.washingtonpost.com": [17990], "byte.com": [8124], "www.gearslutz.com": [6488], "elburg.nl": [11132], "www.style.com": [15550], "trent.utfs.org": [17453], "markup.io": [10026], "redmine.hackerspace.pl": [7149], "nabconnect2.nab.com.au": [10865], "kaltura.com": [8775], "thinkusc.com": [17277], "online.fahrplan.zvv.ch": [19806], "myaccount.utopianet.org": [17457], "www.lacie.com": [9117], "gets.faz.net": [5554], "freeunlocks.com": [6133], "www.tinyurl.com": [16484], "team.hon.ch": [7088], "www.boostbybenz.com": [2212], "ffmpeg.org": [5565], "support.zadarastorage.com": [18777], "lh2.google.co.*": [6837], "hra-news.org": [7094], "fwd.youcanbook.me": [18703], "faq.nearlyfreespeech.net": [11122], "*.pharmgkb.org": [19490], "tryk.jammerbugt.dk": [8507], "portal.donotpay.treasury.gov": [16704], "www.tfp-quebec.psy.ulaval.ca": [17229], "www.familysearch.org": [5646], "contentcafe2.btol.com": [1623], "cryoutcreations.eu": [3839], "fisd.westminster.gov.uk": [18220], "weather.yandex.by": [18648], "planet.osgeo.org": [11669], "status.uillinois.edu": [16960], "mmahq.com": [9762], "www.apotheke.de": [1100], "shop.vcd.org": [17474], "www.webtimeclock.com": [18164], "badges.instagram.com": [8182], "de.godaddy.com": [6773], "static.flixstercdn.com": [5933], "www.parabola.nu": [12384], "cem.events.adobe.com": [615], "www.accredible.com": [464], "cheezburger.com": [3056], "thefnf.org": [16273], "v.calheers.ca.gov": [3731], "p2.raasnet.com": [13655], "www.moroccanbazaar.co.uk": [10597], "www.svetlodarsk.com": [15674], "turbot.opencorporates.com": [11931], "realtime.services.disqus.com": [4570], "lqfb.piratenpartei.de": [12721], "connect.megapathwholesale.com": [10230], "mail.tiscali.it": [16498], "blog.terminal.com": [16122], "raven.cam.ac.uk": [17243], "www.domainbox.com": [4662], "system.casalemedia.com": [2870], "www.escholarship.org": [4971], "*.bytejail.com": [2488], "revosec.ch": [13850], "*.snatchly.com": [15031], "media.mcclatchyinteractive.com": [10118], "www.cs.stonybrook.edu": [15480], "nxtblocks.info": [10987], "l4.51fanli.net": [171], "www.crowdcurity.com": [3824], "www.etracker.de": [5390], "www.student.liu.se": [9084], "osm13.openstreetmap.fr": [12045], "cnet.stacksocial.com": [15363], "2kbhkort.kk.dk": [8730], "edeveloperz.com": [4899], "accounts.havant.gov.uk": [19237], "www.oumedicine.com": [12139], "internal.ncsa.illinois.edu": [17258], "poloniex.com": [12885], "courses.osu.edu": [11760], "labs.nic.cz": [11379], "athletics.cmu.edu": [2858], "www.hosteurope.de": [7516], "eshop.eset.com": [5358], "www.katzporn.in": [8820], "*.elle.com": [5170], "about.me": [424], "www.cloudmailin.com": [3308], "job.web.cern.ch": [2575], "*.circularhub.com": [3157], "firefoxosdevices.org": [5861], "seafileserver.de": [14435], "ssl5.ovh.net": [12173], "guatemala.engineering.osu.edu": [11760], "webaccess.bassetlaw.gov.uk": [1688], "www.tidbits.com": [16431], "krystalstatus.co.uk": [18428], "www.canvasholidays.co.uk": [18490], "twylah.com": [16902], "fcitx-im.org": [5702], "hydrus-prod.stanford.edu": [15383], "www.ssl.com": [14176], "www.vm.ag": [17803], "no-cache.hubspot.com": [7594], "forums.openmandriva.org": [11956], "redmine.documentfoundation.org": [16221], "crypto.cat": [3851], "www.dagbladet.no": [4106], "shb.myuni.sydney.edu.au": [19649], "secure-id.impressiondesk.com": [19290], "*.rollernet.us": [13959], "www.webcijfers.nl": [18056], "turbotax.com": [8304], "sifomedia.thelocal.se": [9537], "*.eex.com": [5429], "assessment.plymouth.ac.uk": [12833], "donate.fightforthefuture.org": [5784], "*.mega.co.nz": [10223], "erc.europa.eu": [5421], "dl.bintray.com": [1897], "o2.co.uk": [16076], "www.iis.se": [7742], "planet.documentfoundation.org": [16221], "m.bilio.com": [1875], "www.finance.gov.sk": [14972], "www.croscill.com": [3811], "gab.cookie.oup.com": [12192], "www.508surveys.com": [168], "www.hon.ch": [7088], "cs.jhu.edu": [16296], "webrtchacks.com": [18142], "linuxcloudvps.com": [9419], "livelingua.com": [9501], "knappschaft.de": [8940], "portaildescours.ulaval.ca": [17229], "www.funstockdigital.co.uk": [6268], "www.youtube.ae": [18709], "common.restaurantfurnitureresource.com": [8154], "reestr-svyaz.rkn.gov.ru": [13913], "www.flickr.com": [5918], "ris.bka.gv.at": [13431], "55ch.org": [172], "img.guerrillamail.com": [7005], "www1.vocativ.com": [17811], "*.telegr.am": [16077], "www.eloquentjavascript.net": [5180], "www.nodesource.com": [11451], "www.jobs.cam.ac.uk": [2763], "*.thesatanictemple.com": [16308], "www.wazapp.im": [18013], "www.primegrid.com": [13059], "onthemedia.org": [11818], "mb.srb2.org": [14165], "accessibility.nl": [452], "kevag-telekom.de": [8862], "auto.ro": [1414], "www.congress.gov": [3575], "www.96boards.org": [209], "www.minecraftserverlijst.nl": [10416], "telegram.com": [16078], "spine.osu.edu": [11760], "easa.europa.eu": [5421], "www.tms.pl": [19686], "www.bucknell.edu": [2388], "www.colocationamerica.com": [3435], "arvutiabi.ut.ee": [17069], "translate.yandex.com": [18651], "www.gemeentewestland.nl": [11132], "addons.privacyfix.com": [13092], "*.computerworld.com.au": [7704], "calendar.comcast.net": [3460], "www.strath.ac.uk": [17280], "uscnow.usc.edu": [17278], "www.sceper.ws": [14343], "mapy.cz": [9977], "poradte.cz": [19506], "deliver.trafficforce.com": [16651], "kb.radware.com": [13524], "altquick.co": [872], "bigcommerce.com": [1853], "*.neatoshop.com": [11123], "decathlon.es": [19771], "*.airshowjournal.com": [753], "jonasboserup.dk": [19323], "www.joppix.com": [8630], "*.vegaspartnerlounge.com": [17589], "www.worldmarkbywyndham.com": [18490], "clnk.me": [10768], "www.calgunsfoundation.org": [2739], "teendriversource.org": [16058], "bluecatnetworks.com": [2127], "aplus-flint-river-ranch.com": [385], "tpb.pirateparty.org.uk": [12714], "www.globalhivmeinfo.org": [6725], "www.bitmit.net": [2009], "baycitizen.org": [1702], "moaf.org": [10480], "www.netlock.hu": [11196], "*.emailsrvr.com": [5193], "elderscrolls.com": [18829], "www.hkedcity.net": [7073], "*.sparxtrading.com": [15228], "www.podbean.com": [12842], "www.thebookpeople.co.uk": [16218], "benefits.redbridge.gov.uk": [13683], "mtc.cdn.vine.co": [17722], "pindrop.com": [19494], "www.argos-spain.co.uk": [1186], "otsuka-shokai.co.jp": [12134], "fanpagegeneratorpro.com": [6716], "www.tiresnwheels.ca": [16496], "pc-ostschweiz.ch": [12217], "netzservice.wienenergie.at": [18284], "dailymed.nlm.nih.gov": [11052], "ssl-cert-shop.com": [14174], "domreg.flirble.org": [16191], "static2.uk.businessinsider.com": [2454], "*.spreadshirt.nl": [15300], "mikrotik.com": [10388], "*.aer.gov.au": [1390], "www.yourmechanic.com": [18724], "cora.ucc.ie": [16933], "analytics.similargroup.com": [14810], "content.logmein.com": [9549], "xfel.desy.de": [4399], "fr33tux.org": [6091], "www.metal-detector-town.com": [10305], "herdprotect.com": [7324], "sac.uol.com.br": [16998], "*.heimdalsecurity.com": [7285], "youraccount.salford.gov.uk": [19562], "*.inductionsolutions.com": [8073], "linbit.com": [9078, 9079], "skyviewinghelp.com": [14927], "cat.postto.me": [12956], "adriver.ru": [534], "www.mzstatic.com": [10852], "www.getsharex.com": [6604], "blog.360totalsecurity.com": [109], "docs.i2p2.de": [7658], "pivotaltracker.com": [12732], "www.kccmediahub.net": [8714], "www.triphip.com": [16742], "docs.cyrus.foundation": [3989], "www.dns-ip.net": [4606], "*.skilldrum.com": [1111], "pan.sohu.net": [15104], "www.n-tv.de": [19424], "giftshop.cancerresearchuk.org": [19035], "it.jobindex.dk": [8597], "m.spokane.wustl.edu": [17993], "ansible.com": [1056], "energycompare.citizensadvice.org.uk": [19062], "barikat.gr": [6915], "www.openstreetmap.org": [11979], "medici-manager.com": [10189], "stats.eon-uk.com": [4860], "www.meetinleeds.co.uk": [10210], "apex.oracle.com": [12082], "www.chs.us": [3126], "secure.newrepublic.com": [11309], "www.mp3skull.is": [9779], "assets-on.spiceworksstatic.com": [15267], "www.messerfinancial.com": [10293], "static.truetrophies.com": [16776], "ju.taobao.com": [15952], "www.lrc.usuhs.edu": [17052], "www.elastictrace.com": [5143], "www.newswhip.com": [11332], "*.askadmissions.net": [7440], "*.blesk.sk": [2069], "caa.co.uk": [3203], "*.cashboardapp.com": [15559], "www.uua.org": [17204], "careers.guidancesoftware.com": [7006], "mypack.acs.ncsu.edu": [11492], "xfinityconnect.mail.comcast.net": [3460], "localmedia.org": [9539], "stats.webarch.net": [18108], "sertifikatai.lt": [14597], "zoho.com": [18884], "bityes.com": [1952], "e.jd.com": [8423], "gate.crashing.org": [6466], "islands.yandex.by": [18648], "oralb-blendamed.de": [12084], "www.frid.ge": [6211], "static.cloudmagic.com": [3291], "neatoshop.com": [11123], "ulassessment.gmu.edu": [6544], "jino.ru": [8575], "riglogix.com": [1916], "www.discusslr.com": [4559], "cdn.debuggify.net": [4279], "www.harlandclarke.com": [7207], "adelphi.de": [582], "www.retailhosting.fi": [13824], "blog.uni-erlangen.de": [17311], "roc-noc.com": [13930], "dkc1.digikey.com": [4469], "www.viaforensics.com": [17658], "govcert.nl": [11132], "ramhost.us": [13397], "fredandpickles.co.uk": [6114], "lunarline.com": [9671], "1pipfix.com": [45], "wiki.gpehosting.com": [6376], "joblist.ala.org": [298], "openideo.com": [11944], "schijndel.nl": [11132], "www.amadeu-antonio-stiftung.de": [905], "exchangewire.com": [5485], "www.clubnix.fr": [3321], "gismeteo.ru": [6669], "pinta-outlet.fi": [12698], "www.fcw.com": [5560], "www.softperfect.com": [15095], "vorratsdatenspeicherung.de": [295], "ianonym.com": [7673], "www.dikkenberg.net": [4516], "www.proposal.illinois.edu": [17258], "metrics.stanford.edu": [15384], "footlocker.com": [6008], "irishtimes.com": [16195], "fisz.bls.ch": [1526], "api.rasp.yandex.com": [18651], "ssl.chroot-me.in": [3124], "lovehoney.co.uk": [9626], "camm.osu.edu": [11760], "community.ubuntu.com": [17102], "portal.videohub.tv": [17687], "panel.cloudatcost.com": [3282], "*.demandware.net": [4348], "misc.www.switch.ch": [15699], "mailing.channel4.com": [3002, 3003], "www.fifedirect.org.uk": [5779], "www.dalemacartney.com": [4127], "www.1anh.com": [55], "calyx.net": [2761], "cdn-api.ooyala.com": [11900], "anti-theft.eset.com": [5358], "lists.pfsense.org": [12607], "artskills.com": [1222], "*.customcare.fender.com": [5748], "e7.xhamsterpremiumpass.com": [18516], "webmail01.register.com": [13732], "payments.ebay.co.uk": [4874], "*.le.ac.uk": [17319], "analytics.ind.ie": [8048], "ultimedecathlon.com": [19712], "www.quiterss.org": [13368], "admin.q1media.com": [13275], "landalcampings.de": [18490], "opm.gov": [11654], "discussions.nessus.org": [11165], "waeckerlin.org": [17943], "woodgreen.org.uk": [18418], "www.minfin.nl": [11132], "proxy1.switchadhub.com": [15701], "freed0m4all.net": [6163], "media.readspeaker.com": [13610], "camcors.cam.ac.uk": [17243], "www.americanaexchange.com": [948], "*.lurkmore.so": [9673], "www.bitcoinity.org": [1984], "mare-system.de": [9712], "www.btwholesale.com": [1578], "www.foundingfathers.info": [6079], "monkeysaudio.com": [10559], "ubounce.wpengine.netdna-cdn.com": [17153], "ad5.netshelter.net": [11208], "infos.anz.com": [315], "instructlab.educ.cam.ac.uk": [17243], "www.fasterbadger.com": [5684], "bbb.org": [1822], "ftp.mplayerhq.hu": [9784], "www.airs.com": [751], "wiki.zarafa.com": [18795], "www.phil.camera": [19491], "online.gifts.washington.edu": [17291], "exgf.teenbff.com": [13040], "*.audemarspiguet.com": [1347], "apidocs.serverdensity.com": [14614], "vfd2dyn.vodafone.de": [17814], "developer.chrome.com": [3115], "shop.overclockers.at": [12164], "scalesystemweb.tdcserviceonline.com": [15798], "*.walkingmen.com": [17959], "www.usbclientadvocacy.com": [17054], "www.mail.de": [9873], "pad.freifunk.net": [6192], "spade.twitch.tv": [16888], "arguggi.co.uk": [1187], "i.rgstatic.net": [13422], "zenimaxonline.com": [18829], "downloads.powerdns.com": [12990], "astro.uchicago.edu": [17245], "shared.ilovefreegle.org": [7892], "www.bargains4business.com.au": [1669], "zutphen.nl": [11132], "www.pet-portal.eu": [12240], "images.bizrate.com": [2033], "hsmr.cc": [7584], "www.timezero.ru": [16458], "www.bayareaamusements.com": [1701], "www.langui.sh": [9147], "*.theory.org": [16346], "www.hugendubel.info": [19265], "pugetsystems.com": [19527], "www.burstmedia.co.uk": [2446], "login.outspark.com": [12154], "checkout.springer.com": [15309], "player.fm": [12802], "ea.voyage-prive.it": [17858], "cluster016.ovh.net": [12173], "forum.bits.media": [2015], "telfort.nl": [16098], "extranet.wlb.at": [18284], "ssl.jumpline.com": [8676], "us.gizmodo.com": [6695], "ksiegarniawarszawa.pl": [9025], "piratepad.ca": [12706], "*.mediaspanonline.com": [10163], "drive.zipcar.com": [18872], "www.voucherexpress.co.uk": [7317], "icons.wxug.com": [18032], "www.infinow.net": [8096], "*.news-gazette.com": [11322], "vip.asus.com": [357], "www.meteor.com": [10313], "redir.evernote.com": [5450], "sacredcrystalsingingbowls.net": [14219], "alertonline.nl": [791], "dashboard.opendns.com": [11932], "help.pressable.com": [13036], "www.vmd.defra.gov.uk": [4314], "www.gsi.de": [6389], "m.highways.gov.uk": [19250], "online.birmingham.gov.uk": [19000], "www.qksrv.net": [3481], "*.computerworld.com": [3534], "net-security.org": [11181], "www.strava.com": [15513], "ice.cheshireeast.gov.uk": [3067], "techhub.osu.edu": [11760], "tpd.sk": [16622], "leap.se": [9067], "cdn4.spiegel.de": [15272], "clever.com": [3238], "lbrehr.stanford.edu": [15383], "es.corporate.walmart.com": [17964], "registration123.com": [13734], "www.ifightsurveillance.org": [7888], "forums.fanboy.co.nz": [5650], "blstc.msn.com": [9796], "builds.96boards.org": [209], "www.jlos.go.ug": [17115], "c.t4ft.de": [5870], "cdn5.fnmag.co": [5583], "adroll.com": [536], "stat.ethz.ch": [4975], "*.alienvault.com": [812], "*.ana.net": [1297], "www.globalnetwork.pl": [6727], "www.isshub.io": [8377], "www.fullcoin.com": [6249], "www.nameid.org": [11020], "tripodo.de": [16747], "www.internetbrands.com": [8280], "demonoid.ph": [4358], "kb.gfi.com": [6324], "www.hub.sciverse.com": [14375], "mailinabox.email": [9880], "cvis.vutbr.cz": [17522], "*.foolcdn.com": [10613], "www.seagate.com": [14437], "imgc.nxjimg.com": [11591], "studentchaptergrants.acs.org": [929], "blog.mdosche.de": [10130], "users.dal.net": [4003], "demonoid.pw": [4358], "support.mattermark.com": [19387], "list.jd.com": [8423], "samsung.cn": [14265], "www.opentechfund.com": [11983], "images.mobilism.me": [19404], "kotex.com": [8994], "et01.xhcdn.com": [18514], "godzilla.websitealive.com": [18149], "walthamforest.gov.uk": [17966], "*.gettyimages.com": [6621], "secure2.techxpress.net": [16022], "www.microchipdirect.com": [10354], "i1.zst.com.br": [18915], "lists.emergingthreats.net": [5207], "www.net-dns.org": [10941], "towerhamlets.greenparty.org.uk": [6925], "habracdn.net": [7128], "www.gifsauce.us": [6640], "*.c.yimg.jp": [18685], "secure.commbank.com.au": [3477], "bi.formstack.com": [6046], "www.three.ne.jp": [15814], "www.cuidadodesalud.gov": [3913], "*.a4uexpo.com": [227], "reviews.eastbay.com": [5016], "newsletter.canon-europe.com": [2809], "www.billund.dk": [1884], "lizardtech.com": [2930], "www.freshcode.club": [6202], "pkgs.clearlinux.org": [3233], "*.cybertip.ca": [3976], "emergency.illinois.edu": [17258], "*.linuxaudio.org": [9428], "hdfury.com": [7053], "mfi.re": [9738], "www.a1webstats.com": [221], "ubuntuusers.de": [17103], "bancastato.ch": [19333], "axantum.com": [1467], "www.keygens.nl": [8869], "www.portsmouth.gov.uk": [19508], "www.echoditto.com": [5046], "trustedreviews.com": [16792], "www.connecticon.org": [3582], "easylist-downloads.adblockplus.org": [561], "gulesider.no": [7017], "aviris.fi": [1450], "billetnet.dk": [16421], "eyeos-apps.org": [19461, 19462], "selfcare.tdc.dk": [15796], "www.sportys.com": [15292], "wilsoncenter.org": [18321], "weather.yandex.kz": [18652], "sciencedirect.com": [14375], "*.coe.int": [3701], "*.mesh-internet.co.uk": [10289], "*.spreadshirt.de": [15300], "intranet.fch.vutbr.cz": [17522], "sportbookings.ipswich.gov.uk": [8351], "www.wyenet.net": [18487], "www.mediademocracyfund.org": [10144], "img14.360buyimg.com": [112], "webmail.shaw.ca": [14687], "info.anz.com": [315], "sudo.ubuntu-tr.net": [17101], "mtna.org": [9800], "ca.godaddy.com": [6773], "www.kollegorna.se": [8964], "chatserver.comm100.com": [3471], "www.poistenie.financnahitparada.sk": [5828], "support.comixology.com": [3465], "www2.fdic.gov": [5710], "onamae-server.com": [11820], "my.npre.illinois.edu": [17258], "www.get.pictos.cc": [12669], "jeeptopsdirect.com": [8544], "www.ourskillsforce.co.uk": [19472], "eram.umich.edu": [17266], "getfinal.com": [6590], "*.scribus.net": [14417], "www.freethoughtblogs.com": [6186], "arch.usc.edu": [17278], "www.euobserver.com": [4982], "ict.swisscom.ch": [15698], "lourdas.name": [9624], "biggestloserclub.com": [1862], "nathnac.org": [11087], "b.rad.msn.com": [9796], "ebanking.cic.ch": [1654], "www.ipvanish.com": [7799], "www.f-secure.com": [5541], "slanted.de": [14943], "t.eml.office.co.uk": [11742], "fribid.se": [6209], "cryptdown.eu": [3843], "*.bendigobank.com.au": [1774], "*.muni.cz": [10704], "*.memory-alpha.org": [10251], "arxiv.org": [1148], "stg.getfedora.org": [6589], "secure.techrepublic.com": [16016], "city.yandex.com.tr": [18649], "s5.boxcdn.net": [2253], "www.snelserver.com": [15033], "ipower.com": [7794], "www.real-debrid.com": [13621], "sysaid.com": [15747], "ru.bem.info": [1511], "acronis.com": [483], "forum.clara.io": [3210], "intuitpayments.com": [8303], "ori.hhs.gov": [7062], "hootsuite.com": [7488], "bestmastersdegrees.com": [1803], "www.postoffice.travelmoneycard.co.uk": [12954], "downloads.iridiumbrowser.de": [8356], "www.uden.nl": [11132], "www.fr.lastminute.com": [9165], "mapping.milton-keynes.gov.uk": [10401], "app.solarlist.com": [15110], "payments.leeds.gov.uk": [19353], "static.dangpu.com": [4139], "rigzone.com": [13888], "milodev.com": [10399], "freewheel.tv": [6135], "partners.a2hosting.com": [222], "7ny.tv": [1920], "sonobi.com": [15139], "networkredux.com": [11261], "www.spaceindustrynews.com": [15210], "linux.oracle.com": [12082], "www.dps.uiuc.edu": [16956], "www.holtstrom.com": [7459], "home.wistia.com": [18377], "gpfi.org": [6370], "*.wyndhamvrap.com": [18490], "internationalpayments.co.uk": [8267], "*.manchester.ac.uk": [17327], "www.equity.org.uk": [5336], "wwws.whitehouse.gov": [18251], "crazespaces.pw": [19089], "strategyanalytics.com": [15510], "editor.flipboard.com": [5925], "ameliaandersdotter.eu": [927], "masterspaswi.com": [10056], "static.alipayobjects.com": [817], "dongxi.douban.com": [4707], "www.ebroder.net": [5041], "www.cdkeys.com": [2916], "www.rightscon.org": [13887], "*.javelinstrategy.com": [8531], "www.idrtrade.com": [9743], "singularityhub.com": [14849], "*.avinc.com": [1448], "m.hava.yandex.com.tr": [18649], "www.volunteermatters.com": [17836], "www.op-co.de": [11901], "uneddit.com": [17162], "m.focus.de": [5974], "cottageselection.co.uk": [18490], "blog.nazwa.pl": [11117], "*.contextly.com": [3615], "www.opus-codec.org": [12078], "gaug.es": [6996], "idp.data.gov": [4175], "entrust.webtrust.org": [18093], "kfwebs.net": [8720], "www.linuxcounter.net": [9392], "maplight.org": [9969], "brightcontext.com": [2319], "images.thebookpeople.co.uk": [16218], "www.securityweek.com": [14525], "maemo.org": [9844], "msnbc.com": [9797], "www.trueachievements.com": [16771], "alterapraxis.com": [877], "*.thegazette.co.uk": [16280], "blog.flirble.org": [16191], "devstructure.com": [4418], "safety.stanford.edu": [15383], "www.swisscom.com": [15698], "renew.norton.com": [11505], "rocketnet.jp": [13940], "www.privacytools.io": [13091], "cdn2.onlinelaw.wustl.edu": [17993], "assets.okfn.org": [12017], "rbcommons.com": [13401], "service.msicomputer.com": [9793], "wisoreisen.zdf.de": [19800], "support.dell.com": [4335], "limango.de": [9354], "bettercgi.com": [1825], "static.mythic-beasts.com": [10850], "i4.rgstatic.net": [13422], "elements.yandex.com.ua": [18650], "www.litecoin.org": [9462], "www.xmpp.net": [18525], "cdn01.boxcdn.net": [2253], "avia.yandex.by": [18648], "www.kuppingercole.com": [9040], "*.gymglish.co.uk": [7037], "popcorntime.io": [12915], "www.accesslabs.org": [446], "feedback2.yandex.com": [18651], "www.rallydev.com": [13537], "www.findmyorder.com": [5841], "reactor.osu.edu": [11760], "reviewboard.kde.org": [8718], "support.ucsf.edu": [17302], "www.islington.gov.uk": [8370], "sott.net": [15155], "*.comodo.com": [3504], "ntnu.edu": [10963], "webtransfer.vs.ch": [19648], "djw.cs.washington.edu": [17291], "www.justice.sk": [14972], "tutorials.getclouder.com": [6568], "cdn4.sure-assist.com": [15644], "training.obfs.uillinois.edu": [16960], "cdn.evergage.com": [5447], "help.xapo.com": [18541], "talk.jekyllrb.com": [19320], "iyouport.com": [7885], "chat.koumbit.net": [8998], "open.exmail.qq.com": [13285], "safari.tampermonkey.net": [15939], "www.cern.ch": [2575], "bisformat.nazwa.pl": [11117], "istar-chla.usc.edu": [17278], "www.scripps.edu": [14418], "image.adjug.com": [526], "*.penninecare.nhs.uk": [10913], "dujia.jd.com": [8423], "www.incommon.org": [8031], "*.mndcdn.com": [9766], "www.usplusu.com": [17447], "swisssign.com": [12949], "*.speakyweb.com": [15238], "eis.uow.edu.au": [17350], "syndetics.com": [15733], "diety.wp.pl": [17920], "phantompeer.com": [12615], "iact.atdmt.com": [10360], "www.hostcenter.com": [2156], "bm.img.com.ua": [7991], "www.moderncrypto.org": [10520], "accountonline.com": [462], "portal.roadworks.org": [19554], "www.bostonglobemedia.com": [2234], "crimecommission.gov.au": [1386], "www.trumanlibrary.org": [7214], "www.tradeleaks.com": [16636], "*.kpn.com": [8744], "connect.brunel.ac.uk": [19021], "coinforum.de": [3395], "dagensgetaway.dk": [4109], "www.animenfo.com": [1024], "www.registrar.cornell.edu": [3676], "*.e-prawnik.pl": [4858], "bibl.sh.se": [14114], "liftsecurity.io": [9337], "stg.m.here.com": [7326], "fileconnect.symantec.com": [15715], "www.quadrant.org.au": [13322], "temai.alitrip.com": [818], "ning.com": [11415], "camdenactive.camden.gov.uk": [2772], "www.cdwg.com": [2566], "in.norton.com": [11505], "earth.stanford.edu": [15383], "mobile.wwf.ch": [19768], "communicatoremail.com": [3500], "joindiaspora.com": [4448], "*.bdimg.com": [1718], "kattare.com": [8818], "www.rspamd.com": [14007], "jobsite.com": [8601], "oami.europa.eu": [5421], "www.braintreepaymentsolutions.com": [2274], "cdn.imgjam.com": [8503], "drupal.soundonsound.com": [15159], "learningcentral.cardiff.ac.uk": [2835], "www.landalskilife.fr": [18489], "www.canon-europe.com": [2809], "partners.smartname.com": [11021], "*.zapato.ru": [14295], "*.vistech.net": [17781], "www.net-housting.de": [11177], "beacon.guim.co.uk": [7014], "library.angus.gov.uk": [1020], "webcitz.com": [18057], "www.vegasdealhunter.com": [17588], "db-ip.com": [4009], "tdc.tdconline.se": [15799], "monarc.ift.ulaval.ca": [17229], "*.standup2cancer.ca": [15377], "customers.qwk.net": [13293], "quikpayasp.com": [13363], "media.newjobs.com": [11318], "www.polarnopyret.se": [12862], "secure.research.illinois.edu": [17258], "*.us.hsbc.com": [7098], "assets.api.qbrick.com": [13300], "s.ntv.io": [11558], "campaigner.com": [2779], "friend.weblogin.umich.edu": [17266], "*.frys.com": [6237], "freebusy.io": [6125], "barracudanetworks.com": [1680], "www.flixster.com": [5933], "storage.outbrain.com": [12150], "channel.jd.com": [8422], "maldon.gov.uk": [19378], "*.vanillamastercard.com": [17559], "files.sans.org": [14072], "armatactics.com": [18962], "bandpass.me": [1637], "videolab.cc.kuleuven.be": [8816], "stories.doublerobotics.com": [4711], "tornadoweb.org": [16574], "standup2cancer.ca": [15377], "forums.d2jsp.org": [3997], "www.retailmenot.com": [13822], "kupschke.net": [19344], "ecaforums.com": [5294], "behemoth.nlnetlabs.nl": [10940], "www.security-portal.cz": [14520], "support.therocktrading.com": [16307], "www.ricoh.sg": [13879], "cyphdbyhiddenbhs.onion": [3984], "www.joindiaspora.com": [4448], "conference2006.kde.org": [8718], "essex.police.uk": [5366], "community.sharefilesupport.com": [14664], "*.kobobooks.com": [8949], "*.justapple.com": [8694], "matt.ucc.asn.au": [17296], "sync.teads.tv": [15995], "blog.yammer.com": [18647], "prediction.io": [13023], "vellemanusa.com": [17596], "*.1d4.us": [57], "help.tvsupport.net": [16862], "*.wizard.ca": [18385], "www.handtekening.nl": [7192], "nti.org": [10961], "www.ovscruise.com": [18490], "nbcnews.com": [10874], "mayoclinic.org": [10106], "powerspeaking.com": [12996], "yakala.co": [18641], "e1.cdn.qnsr.com": [13306], "wiki.webmoney.ru": [18076], "kronix.xeneris.net": [18560], "*.timesrecordnews.com": [16465], "www.thinkpad.com": [9251], "magellanmodels.com": [9848], "app.upatient.com": [17010], "sysdata.cl.cam.ac.uk": [17243], "forum.girlsoutwest.com": [6667, 19219], "glenoit.com": [6707], "www.policia.es": [12865], "i4.services.social.microsoft.com": [10364], "*.nd.edu": [17329], "trackingtool.ncwit.org": [10889], "webmail.domaindiscount24.com": [19123], "schuelervz.net": [14367], "pay4bugs.com": [12466], "*.pixnet.cc": [12744], "*.mbsvr.net": [10550], "m.habrahabr.ru": [7129], "www.codeascraft.com": [3358], "assets-animated.rbl.ms": [13592], "www.wickedfiber.com": [18280], "moevideo.net": [10530], "www.globalnetworkinitiative.org": [6728], "www.renater.fr": [13764], "*.ethicaldata.co.uk": [5381], "mauras.ch": [10085], "ssl.synovite-scripts.com": [15740], "business.wales.gov.uk": [17957], "licensing.scarborough.gov.uk": [19567], "www.metaproducts.com": [10301], "download.gimp.org": [19218], "piwik.enahost.com": [5228], "www.era.int": [4948], "gogobot.com": [6808], "www.audicon.net": [1350], "cdn.dealerfire.com": [4257], "vc-server.de": [17472], "clear-link.com": [3228], "www.quantummansite.com": [13342], "pgeverydaysolutions.com": [13121], "www.bbsey.es": [1714], "perle.com": [12577], "wearewizards.io": [18027], "stockport.greenparty.org.uk": [6925], "www.bbcshop.com": [1712], "www.literatureandlatte.com": [9466], "*.theeca.com": [5295], "www.comlaude.com": [3459], "*.consumersunion.org": [3604], "huzs.net": [7635], "www.trinityfi.org": [16737], "*.alliedmods.net": [853], "mototradeup.com": [10616], "fuerzapopular.pe": [6244], "americanexpress.com": [935], "rdc.bremer.com": [2300], "finance.socrata.com": [15082], "globusvoyages.ch": [19262], "www.myfreecopyright.com": [10760], "www.kraxel.org": [9007], "www.judici.com": [8662], "www.tilburguniversity.edu": [16445], "www.deciduouspress.com.au": [4282], "daily.co.uk": [4113], "www.all4xs.net": [826], "job.alipay.com": [817], "congstar.de": [3577], "www.focus.de": [5974], "wijchen.nl": [11132], "www.nvidia.eu": [10984], "*.shopwiki.com": [14721], "ulakbim.gov.tr": [16980], "reelvidz.com": [13712], "www.gmoserver.jp": [6347], "bitquick.me": [1942], "nl.godaddy.com": [6773], "facilities.ucsd.edu": [16939], "bedfordhospital.nhs.uk": [10913], "ondemand.cisco.com": [3162], "weitao.taobao.com": [15952], "www.ce1.com": [3776], "blog.paperspace.io": [12381], "secular.org": [14472], "www.videoaidedinstruction.com": [17691], "amazon.co.uk": [917], "petrogen.com": [12600], "apis.live.net": [9482], "runscope.com": [14038], "barnebys.com": [1676], "*.host1plus.com": [7505], "cn.bter.com": [2382], "community.marketdojo.com": [10010], "bugzilla.netfilter.org": [11225], "info.bitsighttech.com": [1947], "active-srv02.de": [496], "activatie.kuleuven.be": [8816], "marx.org": [10042], "rss.seagate.com": [14437], "www.isoc.org.br": [7828], "filecrypt.cc": [19178], "gloucestershire.gov.uk": [6749], "www.evm.dk": [5461], "grilletlab.stanford.edu": [15383], "i.blip.tv": [2079], "www.avadirect.com": [1438], "*.njit.edu": [10932], "info.publicintelligence.net": [13210], "blog.irccloud.com": [8354], "xumaa.com": [18604], "lists.osgeo.org": [11669], "mail.be": [9871], "livingforsport.skysports.com": [14931], "www.securestudies.com": [14495], "www.tsbohemia.cz": [19702], "rd.bizrate.com": [2033], "altimatewellness.com": [890], "tenants.southampton.gov.uk": [15191], "static.avast.com": [1444], "bitinstant.com": [1933], "www.botbot.me": [2238], "reslife.wustl.edu": [17993], "www.rows.io": [13990], "earlyhelp.bedford.gov.uk": [18986], "www.rtbf.be": [14011], "falconjet.com": [4166], "www.ncric.org": [10885], "www.nedcc.org": [10896], "gt5-jres2015.univ-montp3.fr": [17223], "biz.wangyin.com": [17972], "www.mariadb.org": [9988], "www.biotrimlabs.com": [1909], "bitaddress.org": [1954], "www.f5networks.*": [5545], "i3.rgstatic.net": [13422], "im.gifbt.com": [8061], "www1.pfizerpro.com": [12612], "dental.washington.edu": [17291], "login.unifiedsocial.com": [17184], "diy.rescue.org": [19546], "dev.evernote.com": [5450], "clasohlson.se": [3215], "amoena.us": [979], "fis.dudley.gov.uk": [4795], "www.thirddoormedia.com": [16366], "cdn.bunadformenn.info": [2423], "webftp.vas-hosting.cz": [19729], "tvnutt.com": [15889], "www.ysu.edu": [18742], "twcardsonline.anz.com": [315], "*.53.com": [5781], "tetra.osmocom.org": [12126], "saforms.stanford.edu": [15383], "s2c.aol.com": [321], "et08.xhcdn.com": [18514], "springy.libapps.com": [9287], "modlife.com": [10526], "1.usa.gov": [1920], "www.gpadmissions.osu.edu": [11760], "www.chocolatey.org": [3095], "www.uchastings.edu": [16941], "www.paymentwall.com": [12479], "workshop.chromeexperiments.com": [3117], "sidibouras.com": [14766], "translations.cacert.org": [2520], "*.roi.ru": [13445], "www.solidalert.com": [15118], "*.akamaihd.net": [762], "bugs.gnupg.org": [6762], "cdn3.iconfinder.com": [7921], "sam.sso.bluewin.ch": [2157], "www.zilog.com": [18866], "usdoedregistration.ed.gov": [4889], "employment.harvard.edu": [7219], "tuftsmedicalcenter.org": [16820], "*.riseup.net": [13900], "account.playwarz.com": [17975], "currents.plos.org": [12271, 13206], "embed.vidyard.com": [17705], "*.noc.ac.uk": [17276], "telekom-profis.de": [16085], "s2.gismeteo.ua": [6670], "www.showcase.ca": [14741], "www.youtube.com.au": [18709], "avatar.xboxlive.com": [18551], "lists.aktivix.org": [771], "ecm.nationalgrid.com": [11081], "www.packer.io": [12315], "*.cleanprint.net": [3226], "k.yimg.jp": [18685], "www.staffordshireandstokeontrent.nhs.uk": [10913], "assets.gradwellcloud.com": [6884], "blogs.citrix.com": [3178], "www.speedppc.com": [15253], "imageslocal.fineartamerica.com": [5844], "haas.variety.com": [17565], "dbs.com": [4010], "*.dabs.com": [4100], "fluttertoday.com": [5955], "www.500px.com": [166], "contact.familysearch.org": [5646], "i.wpimg.pl": [19766], "igolder.com": [7954], "gsu.edu": [6391, 6392], "www.gov1.info": [6861], "*.affec.tv": [699], "staging.muttscomics.com": [10731], "colorado.edu": [17247], "click-west.acuityplatform.com": [505], "toptip.ch": [3645], "navigator.web.de": [18050], "www.myinteriordecorator.com": [10764], "fws.tmall.com": [19684], "hertz247.fr": [7345], "adfs.brunel.ac.uk": [19021], "www.agrisupply.com": [735], "static.telus.com": [16103], "www.motherlessmedia.com": [10608], "zycie-wsrod-kamer.panoptykon.org": [12365], "wiki-zeuthen.desy.de": [4399], "titanshare.to": [16503], "dropboxforum.com": [4769], "ent.ro.vutbr.cz": [17522], "www.homebuzz.co.uk": [7475], "i2.zst.com.br": [18915], "wiki.eclipse.org": [5049], "www.xrel.to": [18589], "courrielweb.videotron.com": [17700], "eastlancs.greenparty.org.uk": [6925], "ct.tms.pl": [19686], "giving.cornell.edu": [3676], "edwardtufte.com": [5104], "observer.com": [18428], "offensivebits.com": [11737], "press.internet.org": [8278], "kfz-versicherung.faz.net": [5554], "zipapps.lincolnshire.gov.uk": [9364], "antpool.com": [1072], "*.trulia-cdn.com": [16777], "represent.us": [13788], "www.securitykiss.com": [14522], "delicious.com": [4328], "publicaccess.canterbury.gov.uk": [2811], "www.fujitsu-webmart.com": [6245], "www.airtop-pc.com": [756], "darch.ch": [4007], "hackaday.com": [18428], "www.creator.zoho.com": [18884], "imca.ic.nhs.uk": [10913], "pod.geraspora.de": [6552], "www.clickerheroes.com": [3259], "fusion-lifestyle.com": [6274], "*.blog.alwaysdata.com": [897], "www.powerlineman.com": [13002], "profile.federalreserve.org": [5717], "cdn0.sbnation.com": [14079], "directory.rbwm.gov.uk": [19539], "www.normation.com": [11488], "appv2.adextent.com": [521], "frauen.htwk-leipzig.de": [7114], "www.spbas.com": [14152], "frs.monotypeimaging.com": [10562], "www.fuzeqna.com": [1410], "www.cloudproven.net": [3301], "www.travelrepublic.com": [16695], "careers.americanexpress.com": [935], "one2buy.com": [11829], "developer.opensignal.com": [11974], "www.foxydeal.com": [6089], "n-somerset.gov.uk": [10857], "mais.uol.com.br": [16998], "www.btcjam.com": [1560], "en-ru.dict.cc": [4455], "secure.acceptiva.com": [443], "konachan.com": [8972], "www.hastrk1.com": [7235], "c.affil.walmart.com": [17964], "www.tmbc.gov.uk": [15827], "www.sv.no": [14201], "fshare.vn": [6238], "*.perfectmarket.com": [12561], "ftb.ca.gov": [2742], "*.pszaf.hu": [12301], "virtualenv.pypa.io": [13265], "www.llis.dhs.gov": [4035], "bandinelli.net": [1639], "gsx.apple.com": [1120], "admin.ias.edu": [7669], "www.altmetric.com": [892], "www.de.adjug.com": [526], "pt.cloudflare.com": [3285], "banki.ru": [1646], "blog.udemy.com": [17111], "game.msi.com": [9792], "www.bilddb.gta.arch.ethz.ch": [4975], "blog.mariadb.org": [9988], "it.desy.de": [4399], "vestacp.com": [17653], "www.infradead.org": [8132], "easywallet.org": [5037], "www-robotics.jpl.nasa.gov": [10869], "lh5.google.com.*": [6837], "klm.com": [8736], "domainfest.com": [12169], "orhelp.osu.edu": [11760], "www.hertz.com.jo": [7353], "locdeva.hertz.com": [7372], "widget.shopstyle.fr": [14719], "developer.baidu.com": [1619], "showmecon.parametersecurity.com": [12393], "www.wifidb.net": [18272], "documentation.onesignal.com": [11843], "painelhost.uol.com.br": [16998], "webmail.opentransfer.com": [12049], "source-elements.com": [15168], "simplybusiness.co.uk": [14833], "www.brixwork.com": [2344], "forums.xfinity.com": [19784], "*.meetup.com": [10219], "www.project-syndicate.org": [13136], "www.levny-hosting.cz": [9274], "static.itunes.apple.com": [1120], "www.sevenonemedia.de": [14636], "www.elderscrolls.com": [18829], "www.precisionmarinetools.com": [13020], "www.studivz.net": [15539], "support.youmail.com": [18706], "smartrecruiters.com": [14994], "www.ezaccessory.com": [5535], "*.appsecusa.org": [1132], "www.optimise.com.br": [12069], "myaccount.aol.com": [321], "sitizens.com": [14886], "assets.blog.start.me": [15405], "my.civilservice.gov.uk": [19066], "twitchinstalls.com": [16889], "www.nesl.edu": [10901], "hidepay.net": [7397], "lib.doteasy-nocookie.com": [4700], "dd-wrt.com": [4018], "www.das-parlament.de": [4160], "bedrockformskaw.msn.com": [9796], "emaileri.net": [5192], "www.oyoony.de": [19475], "www.portugal.gov.pt": [12943], "www.bisnow.com": [1918], "webtorrentsearch.mrcarch.com": [16228], "portal.distil.it": [4572], "awscf.cdngeek.net": [2920], "hp.msn.com": [9796], "www.talentsmart.com": [15920], "www.shrinktheweb.com": [14746], "tracking-stage.websitealive.com": [18149], "www.guifi.net": [7010], "my.blood.co.uk": [2115], "stumbleupon.com": [15544], "oldham.greenparty.org.uk": [6925], "m.exmail.qq.com": [13285], "euim.mstar.com": [10678], "cdnsl.coveritlive.com": [3735], "www.just-eat.com": [19328], "irc.gitter.im": [6684], "sitegeist.sunlightfoundation.com": [15601], "trycelery.com": [16804], "s.imgrap.com": [7999], "support.zoho.com": [18884], "www.medstop.se": [10203], "sso-cas.rmit.edu.au": [13437], "www.onemancan.org": [11849], "www.blamestella.com": [2058], "cams.pornworms.com": [12929], "services.retsinformation.dk": [13830], "assetstore.unity3d.com": [17220], "blog.cloudfoundry.org": [3299], "as-sec.casalemedia.com": [2870], "*.corp.google.com": [6834], "*.sandsmedia.com": [14212], "partners.kaspersky.ua": [8808], "enro.dict.cc": [4455], "ssl14.ovh.net": [12173], "www.worldlandscapearchitect.com": [18456], "expomobilehomes.com": [5627], "www.performancealley.com": [12569], "media.go2app.org": [7222], "*.wgea.gov.au": [18444], "auth.gfx.ms": [6624], "ksplice.com": [9026], "www.fbdatesecure.com": [8426], "holoscripter.org": [7458], "www.igb.uiuc.edu": [16956], "downloads.canon.com": [2809], "www.ejabberd.im": [5130], "booredatwork.com": [2210], "ereturns.wirral.gov.uk": [18371], "askubuntu.com": [15359], "www.earthlink.net": [5007], "git.devuan.org": [4433], "myeddebt.com": [9814], "thenanfang.com": [16300], "esad.ulaval.ca": [17229], "support.aetherflyff.com": [694], "kaimi.ru": [19332], "www.fuelcdn.com": [6243], "cdn.cxense.com": [2694], "www.privacynotprism.org.uk": [13088], "s3.freepress.net": [6147], "myfbo.com": [10756], "gdata.at": [6293], "wordstat.yandex.by": [18648], "footprints02.main.ad.rit.edu": [13434], "geo.data.gov": [4175], "arsca.linneanet.fi": [9386], "www.euronuclear.org": [5424], "www.fmv.se": [5579], "jazzy.id.au": [8537], "in.godaddy.com": [6773], "*.adjust-net.jp": [596], "flixbus.se": [5931], "www.opendesktop.org": [19461], "scrambl3.com": [14404], "apidev.accuweather.com": [465], "ericw.us": [5342], "support.zynga.com": [18933], "images.amazon.com": [915], "nordichardware.com": [11474], "drdobbs.com": [16927], "commercialappeal.com": [4989], "quotemedia.com": [13377], "bcobandits.com": [1716], "www.transip.nl": [16660], "web.consumerreports.org": [3600], "dt.developer.here.com": [7326], "kiss.tdc.no": [15797], "www.mashery.com": [10046], "prg.computerandvideogames.com": [6280], "itunes.stanford.edu": [15383], "yaca.yandex.by": [18648], "vladikavkaz.rt.ru": [13469], "ambitiousaboutautism.org.uk": [18952], "andytyson.com": [1010], "www.gettyimages.co.*": [6621], "suche.web.de": [18050], "holarse-linuxgaming.de": [7446], "ip.casalemedia.com": [2870], "*.altlinux.org": [303], "www.lenta.ru": [19356], "www.shopinfo.net": [14726], "emory.edu": [5212], "haskell.org": [7229], "www.engineering.wustl.edu": [17993], "shop.sky.com": [14924], "security.ias.edu": [7669], "gameladen.com": [6432], "mediapart.fr": [10180], "www.afsp.org": [931], "api.forecast.io": [6023], "archives-ouvertes.fr": [1168], "iconnect.cathaypacific.com": [2904], "vpnglobe.com": [17502], "demworks.org": [4341], "ld-6.itunes.apple.com": [1120], "www.eroakirkosta.fi": [5348], "wupd.wustl.edu": [17993], "sonderdesign.com": [15133], "*.ebay.com": [4874], "baidu.com": [1619], "admeld.com": [607], "scholarship.berkeley.edu": [17240], "tigger.uic.edu": [17231], "medstop.se": [10203], "www.rsbac.org": [13456], "download.vzaar.com": [17883], "dayz.com": [4236], "university.cpanel.net": [2653], "getawaygrey.com": [6565], "*.tfag.de": [5974], "www.flinkster.de": [19184], "*.azabani.com": [1479], "web-app.usc.edu": [17278], "paste.ubuntu.com": [17102], "c1.microsoft.com": [10364], "*.resultspage.com": [13818], "www.frieslandcampina.nl": [2782], "www.naturvardsverket.se": [11106], "www.istanbulhs.org": [8380], "boardzoo.com": [2167], "middleeastmonitor.com": [10375], "av-comparatives.org": [370], "www.space.dtu.dk": [16031], "servage.*": [14598], "guildford.firmstep.com": [19183], "www.cobalt.io": [3340], "garnet.openmandriva.org": [11956], "256.com": [81], "www.cyphertite.com": [3986], "handbrake.fr": [7185], "bugs.wireshark.org": [18369], "www.hitbox.tv": [7424], "planet.com": [12760], "www.frascatiproducties.nl": [6107], "blkb.ch": [19333], "communities.acs.org": [929], "binaryapi.ap.org": [1291], "mpg.de": [9780], "windowsitpro.com": [18345], "*.palbin.com": [12340], "*.pairnic.com": [12336], "platform.bitly.com": [2001], "myaccount.coventry.gov.uk": [19085], "m.xkcd.com": [19786], "t-mobile.com": [15772], "wsio.buttercoin.com": [2463], "twofactorauth.org": [16899], "assets2.vice.com": [17667], "shop.southbankcentre.co.uk": [15192], "ind.pn": [1920], "employees.usc.edu": [17278], "www.shaaaaaaaaaaaaa.com": [14651], "acs.ucsd.edu": [16939], "monitor.ccccloud.com": [2539], "bigcartel.com": [1850], "www.wholeearth.com": [18262], "www.asianfanfics.com": [1259], "illinois.edu": [17258], "objectsecurity.com": [11701], "emknowledge.gov.au": [1389], "searchcode.com": [14443], "www.mytatasky.com": [15974], "www.gowork.pl": [6791], "schuilenburg.org": [14368], "www.dulwich.io": [4800], "dell.com": [4334, 4335], "thmb.inkfrog.com": [8146], "*.clicktracks.com": [9686], "diybanter.com": [4037], "rackspace.com": [13506], "fotomarburg.digitale-diathek.net": [4504], "museum.stanford.edu": [15383], "status.udacity.com": [17109], "repo1.maven.org": [10088], "www.liftdna.com": [9338], "lrcd.com": [9642], "expert.bger.ch": [18996], "forums.digitalpoint.com": [4498], "err.ee": [5369], "*.santander.co.uk": [14291], "localbitcoins.com": [9540], "*.cansecwest.com": [2789], "websense.com": [18083], "www.pipni.cz": [12257], "lciapi.ninthdecimal.com": [11420], "infinow.net": [8096], "www.jewelosco.com": [8562], "deals.boston.com": [2233], "truenudists.com": [16775], "support.netapp.com": [11183], "system.spektrix.com": [19617], "photosugar.com": [12643], "html5.org": [7589], "www.academics.de": [437], "directtoyou.derby.gov.uk": [4380], "*.wishpot.com": [18374], "*.eltatar.com": [5189], "www.gradsch.ohio-state.edu": [11761], "www.quamnet.com": [13334], "*.bellinghamschools.org": [1767], "www.orangegeek.com": [12090], "sport.leeds.gov.uk": [19353], "heasarc.gsfc.nasa.gov": [10869], "www.openmarket.org": [11957], "reiseauskunft.bahn.de": [1617], "paste.leloop.org": [9191], "adobeid-na1.services.adobe.com": [615], "limelight.assets.stitcher.com": [15476], "im.sohu.net": [15104], "www.tachanka.org": [15900], "archi-strasbourg.org": [1161], "www3.student.liu.se": [9084], "ad.mail.ru": [9874], "trust-center.verisign.es": [17623], "www.engagemedia.org": [5260], "hdw.artsci.wustl.edu": [17993], "www.dakko.us": [4126], "blog.digicert.com": [4473], "inwx.es": [8231], "www.radartv.nl": [13509], "info.puppetlabs.com": [13232], "*.payson.se": [12488], "ews-sdc.federalreserve.org": [5717], "revv-static.rubiconproject.com": [14014], "nkl.fi": [11014], "www.syspectr.com": [15757], "viaf.org": [17487], "support.redbubble.com": [13660], "www.get-digital.it": [6561], "static.bpddn.com": [1737], "getharvest.com": [6576], "asic.gov.au": [348], "ventoso.org": [17609], "assets.aarp.org": [234], "nl.norton.com": [11505], "eoportal.org": [5314], "navynews.co.uk": [13995], "content9.flixster.com": [5933], "laforge.gnumonks.org": [6766], "www.mobilism.me": [19404], "zc-paimai.taobao.com": [15952], "www.geog.illinois.edu": [17258], "jeffnabers.com": [8547], "secure.currys.co.uk": [3933], "www.ammec.de": [309], "*.teamsales.eastbay.com": [5017], "hub.docker.com": [4616], "zcomm.org": [18756], "tv.bt.com": [1551], "axisbank.com": [1474], "console.ipinyou.com": [7803], "pizzahut.co.uk": [12750], "gutenberg.org": [7028], "www.allmychanges.com": [833], "im2.smartadserver.com": [14982], "bookie.io": [2201], "xui.ptlogin2.tenpay.com": [16114], "accountcenter.mediatemple.net": [10165], "www.vestacp.com": [17653], "*.khoc.co": [8723], "ixquick.com": [8405], "redfin.com": [13696], "co-operativebank.co.uk": [3332], "www.area17.com": [1179], "doc.ddg.lth.se": [9104], "dishonored.com": [18829], "passport.bitmain.com": [2003], "web.lib.aalto.fi": [390], "blogs.studyinsweden.se": [19635], "www.dosowisko.net": [4688], "anon-ib.co": [1034], "cas.thm.de": [15811], "*.giphy.com": [6665], "myuhc.com": [10793], "tag.researchnow.com": [13798], "portalsp.acs.ncsu.edu": [11492], "mlpforums.com": [9757], "feedback.unity3d.com": [17220], "new.jd.com": [8423], "connectbyhertz.com": [7372], "svn.php.net": [12250], "artsedge.kennedy-center.org": [19335], "images.nationalarchives.gov.uk": [11065], "www.blumenthals.com": [2158], "www.cacert.net": [2520], "www.nfb.org": [11096], "soundcloud-wpengine.netdna-ssl.com": [15161], "silktide.com": [14796], "*.marionstar.com": [10001], "team-share.net": [15997], "www.polyu.edu.hk": [12891], "www.bwurst.org": [1585], "southernct.edu": [15195], "br.norton.com": [11505], "www.mmoculture.com": [9764], "*.r.msn.com": [9796], "*.wwte10.com": [17937], "www.osutravel.osu.edu": [11760], "knowledge.allianz.com": [18950], "*.mmahq.com": [9762], "www.arlt.com": [1201], "mondemp3.com": [10543], "p16.qhimg.com": [13302], "mountainreservations.com": [10620], "www.jackandjillraffle.org": [8481], "www.atech.io": [366], "mail.sohu.com": [15103], "list.taobao.com": [15952], "baichuan.taobao.com": [15952], "www.ail.htwk-leipzig.de": [7114], "*.nwf.org": [11088], "www.blocketsannonswebb.se": [2095], "*.secunia.com": [14475], "filebox.tv": [5788], "c3.rgstatic.net": [13422], "cdon.fi": [2562], "arhivach.org": [18960], "www.uplay.ubi.com": [17390], "*.ihgmerlin.com": [7737], "student.societyforscience.org": [15078], "affiliates.esellerate.net": [5357], "*.uni-greifswald.de": [17313], "www.tmobile.com": [15834], "*.thenewsmarket.com": [16301], "cimbbank.com.my": [2606], "*.mango.com": [9951], "www.biddeal.com": [1846], "popgoestheweek.com": [12913], "hacktionlab.org": [7160], "tel.mail.ru": [9874], "a.ichiba.jp.rakuten-static.com": [13533], "*.vzw.com": [17628], "secure.www.mercurynews.com": [10280], "www.womensaid.ie": [18409], "musictemp.xbox.com": [18550], "visit.stanford.edu": [15383], "impulse.net": [8021], "*.anb.com.sa": [313], "ipsidixit.net": [8348], "jobs.lincolnshire.gov.uk": [9364], "100r.org": [9], "www.powerdns.net": [12991], "jacobsstudent.ucsd.edu": [16939], "blogs.jetbrains.com": [8558], "*.moneyadviceservice.org.uk": [10548], "recruiter.jobfinder.dk": [8596], "hurricaneelectric.net": [7629], "www.berniesanders.com": [1796], "olioboard.com": [11782], "www.startech.com": [15395], "backoffice.sedo.de": [14543], "bugs.cse.iitb.ac.in": [7744], "forum.openmpt.org": [11951], "bato.to": [18985], "tech.safehubcollective.org": [14229], "stag.cntraveler.com": [3555], "www.316space.harralmedia.com": [2132], "*.meetme.com": [10211], "*.ada.edu.au": [1387], "www.zylon.net": [18930, 18931], "www.gradwellcloud.com": [6884], "nso.wustl.edu": [17993], "www.gesetze-im-internet.de": [6559], "cup-of-tea.it.ox.ac.uk": [17271], "i.li.ru": [9487], "cdn.fronter.com": [19200], "mentalhealth.asn.au": [10263], "home.web.cern.ch": [2575], "www.seedboxes.cc": [14550], "yooco.de": [18691], "gammae.com": [6449], "my.appcelerator.com": [1113], "www.porvoo.fi": [19509], "depositfiles.com": [4374], "www.echosign.adobe.com": [615], "partner.archive-it.org": [1163], "istore.ccccloud.com": [2539], "refeds.org": [13413], "vtnews.vt.edu": [17740], "account.aliyun.com": [821], "care.bluecatnetworks.com": [2127], "apac.redhat.com": [13675], "accom.brunel.ac.uk": [19021], "twibright.com": [16875], "www.fhserve.com": [5767], "makibox.com": [9919], "oit.ncsu.edu": [11492], "*.buffalostate.edu": [2401], "ehcb.westminster.gov.uk": [18220], "signup.jiveon.com": [8586], "www.osmand.cz": [12123], "www.gawker-labs.com": [6475], "secure2.mastermindpro.com": [10058], "dee.uidaho.edu": [18428], "roi.ru": [13445], "www.ccs.com": [2551], "zhaocaibao.alipay.com": [817], "www.keksbude.net": [8842], "tcrl.osu.edu": [11760], "mbi.mbnet.fi": [9723], "lancashire.firmstep.com": [19182], "app-us4.resrc.it": [13599], "my.ixwebhosting.com": [7882], "ouya.tv": [11684], "fehm2016.unizar.es": [17356], "managers.usc.edu": [17278], "business.kaspersky.com": [8806], "www.tolvutaekni.is": [16539], "www.tg.ethz.ch": [4975], "www.jobsite.com": [8601], "lite.apan.org": [329], "beta.nativo.net": [11092], "no.godaddy.com": [6773], "fw.cdn.technolutions.net": [16042], "store.xamarin.com": [18540], "noelia.fi": [11456], "www.all-about-security.de": [843], "resortpro.net": [13810], "*.crypteianetworks.com": [3849], "www.instapanel.com": [8188], "postimg.org": [12978], "questionnaires.ecn.ulaval.ca": [17229], "sunroofwinddeflectors.com": [15606], "www.fastwebhost.com": [5679], "www.uscurrency.gov": [17057], "my.goldsborowebdevelopment.com": [6817], "*.sdss3.org": [14967], "store.ssl2buy.com": [14177], "*.cagw.org": [2513], "*.mycanvas.com": [10750], "ny.curbed.com": [3926], "www.globalscaletechnologies.com": [6739], "swiftype.com": [15689], "g.alicdn.com": [805], "servery.cz": [18938], "www.english.ox.ac.uk": [17271], "www.massdrop.com": [10050], "t1.stormiq.com": [15499], "forums.hubic.com": [7597], "s1.reutersmedia.net": [16381], "www.sideshowtoy.com": [14765], "www.babeljs.io": [1592], "www.evidence.nhs.uk": [10913], "faz.net": [5554], "www.distraction.gov": [4574], "cdn.rooof.com": [13966], "zarkzork.com": [18799], "info.profitbricks.com": [13129], "*.ets.org": [4976], "*.videogateway.tv": [3505], "www.heidelberg.de": [7283], "*.tradedirect.ch": [19333], "mpi-soft.mpg.de": [10089], "c3tag.com": [2503], "www.thechangelog.com": [16256], "au.prime7.yahoo.com": [18635], "www.slax.org": [14951], "www.ihc.ru": [7736], "*.bodyworkmovementtherapies.com": [8642], "upic.me": [17388], "paw.princeton.edu": [13064], "www.tickermadness.com": [16413], "cyberguerrilla.info": [3960], "blog.echoplex.us": [5047], "cdimage.deepin.com": [4302], "www.45millionvoices.org": [147], "tt.vutbr.cz": [17522], "*.storesecured.com": [15493], "www.fcpablog.com": [5559], "medieval.history.ox.ac.uk": [12187], "files.tv2.dk": [15881], "www.business.spectrum.com": [15248], "www.wishlistgranted.com": [18373], "www.proxer.me": [13176], "chango.com": [2997], "pilegaarden.kk.dk": [8730], "inuits.eu": [8309], "storystudio.oculusvr.com": [11722], "reap.mit.edu": [9749], "voice.megapath.com": [10229], "support.gogetssl.com": [6780], "www.dragonsreach.it": [4741], "*.tsl.state.tx.us": [16153], "www.iki.fi": [7961], "www.globalsign.com.*": [6718], "www.cdon.fi": [2562], "www.aaenhunze.nl": [11132], "www.krebsdaten.de": [9011], "media.marketwire.com": [10022], "intel.co.uk": [8205], "law.stanford.edu": [15383], "data1.bell.ca": [1763], "www.kuleuven.be": [8816], "scholar.google.*": [6837], "m.sockassist.com.au": [16101], "www.hydraproxy.party": [19270], "blendle.nl": [2068], "www.kdelive.org": [8830], "www.insurance.wustl.edu": [17993], "www.tronixcomputers.com": [16757], "youtube.com.om": [18709], "www.dr.dk": [4078], "images.excaliburfilms.com": [5483], "www.cronkitenewsonline.com": [3810], "cnes.fr": [2634], "funkyandroid.com": [6267], "flex.atdmt.com": [10360], "sonypictures.co.uk": [15151], "lists.posteo.de": [12969], "blog.ludialudom.sk": [9652], "status.fitbit.com": [5887], "arbitrary.ch": [1153], "*.fishwrapper.com": [5885], "amsterdam.nl": [11132], "www.xkcd.com": [19786], "www.googleartproject.com": [6833], "www.thetvdb.com": [16352], "www.accelaworks.com": [440], "deadspin.com": [4251], "photos.nsrc.org": [10958], "jwchat.org": [8466], "onedrive.com": [11831], "www.organicconsumers.org": [12103], "www2.netflix.com": [11229], "hr.carnegiescience.edu": [2857], "www.mangolanguages.com": [9952], "erowid.com": [5351], "mappingmediafreedom.org": [9974], "si0.rgstatic.net": [13422], "cs.lpi.org": [9095], "www.chaturbate.com": [3035], "zmtr.zscaler.com": [18913], "www.connecttosupport.org": [19076], "www.courthousenews.com": [3721], "brainpickings.org": [2268], "*.manta-r1.com": [9960], "listart.mit.edu": [9749], "www.atomicorp.com": [1328], "gb.youcanbook.me": [18703], "torrents-time.com": [19689], "peerlibrary.org": [12516], "cms.fightforthefuture.org": [5784], "www.it.umd.edu": [17263], "monitor.wpm.neustar.biz": [11280], "jamieoliver.com": [8505], "www.humanresources.illinois.edu": [17258], "luckyshare.net": [9651], "provision.relay.kaseya.net": [8803], "airshipventures.com": [752], "www.soylent.com": [15199], "*.npd.com": [10947], "www.excelsior-usa.com": [5484], "alpha.irccloud.com": [8354], "finansportalen.no": [5830], "www.pebblepad.co.uk": [12509], "file.answcdn.com": [1059], "samples.mplayerhq.hu": [9784], "vh2.vutbr.cz": [17522], "sandilands.info": [14279], "www.werstreamt.es": [18203], "*.ua.edu": [16925], "highland.objective.co.uk": [19454], "www.3suisses.de": [137], "findtbresources.cdc.gov": [19046], "*.ndi.org": [10893], "scwd.stockport.gov.uk": [19628], "www.gmx.ch": [6350], "notanet.com.br": [11519], "www.scapsync.com": [14087], "goto.ucsd.edu": [16938], "ipv6.nebezi.cz": [11126], "opc.gov.au": [11749], "nzbplanet.net": [11600], "indymedia.nl": [8082], "franceserv.fr": [6098], "www.heifer.org": [7284], "siff.net": [14121], "www.gaos.com": [6908], "www.onapp.com": [11808], "*.nsm.stat.no": [11039], "acms.ucsd.edu": [16939], "www.f5networks.co.uk": [5545], "css-cdn.7digital.com": [193], "opensourcehacker.com": [12026], "contacts.msn.com": [9796], "fr.canon.be": [2809], "www.trakt.tv": [19692], "northstaffs.greenparty.org.uk": [6925], "little.my": [9475], "guildmc.com": [7012], "syscan.org": [15748], "assets.huggies-cdn.net": [7602], "westandsouthdorset.greenparty.org.uk": [6925], "www.eater.com": [5038], "www.gnuheter.com": [12767], "cryptotec.com": [19093], "www.pr.co": [13007], "ajax.aspnetcdn.com": [354], "www.flattr.net": [5910], "experts.stanford.edu": [15383], "learning.gov.wales": [6860], "idp.hs-esslingen.de": [7441], "contactus.aol.com": [321], "www.landliebe.de": [2783], "digifense.com": [4477], "www.coopathome.ch": [3645], "www.bihira.com": [1868], "estore.perle.com": [12577], "pages.github.com": [6680], "buyiphone2.apple.com": [1120], "tydenik.echo24.cz": [19146], "www.hhh.umn.edu": [17268], "www.slidedeck.com": [14960], "radware.com": [13524], "compass.xboxlive.com": [18551], "intern.arch.ethz.ch": [4975], "*.longurl.it": [10768], "www.vps.net": [17509], "www.alitrip.com": [818], "www.videoplaza.tv": [17698], "kldp.org": [8735], "ziedot.lv": [18858], "tp2.sinaimg.cn": [14845], "au.gwn7.yahoo.com": [18635], "protectwise.com": [13166], "secure.friendfinder.com": [6213], "photonconsulting.com": [12647], "alt.altmetric.com": [892], "vps1.roffey.org": [13947], "www.cksource.com": [2622], "www.goke.me": [6811], "shop.nero.com": [11162], "viestintavirasto.fi": [17708], "publicaccess.nih.gov": [11052], "playboystore.com": [12800], "www.thuisbezorgd.nl": [16400], "ev.kde.org": [8718], "goduke.com": [4799], "publish.illinois.edu": [17258], "csiac.org": [2670], "www.sferra.com": [14649], "help.asana.com": [1242], "shop.vodafone.co.uk": [17813], "www.cusu.cam.ac.uk": [17243], "u-blox.com": [16921], "www.google.com.kapsobor.de": [8792], "emi.wpengine.com": [5532], "www.hosting.com": [19260], "www.tripwell.com": [16748], "www.reethus-adeline.de": [13714], "puppetlabs.com": [13232], "www.xara.com": [18542], "blog.perfectaudience.com": [12559], "www.hamppu.net": [7183], "wusmapply.wustl.edu": [17993], "plimus.com": [12817], "*.media.smithsonianmag.com": [15009], "www.abiresearch.com": [244], "sks-keyservers.net": [14127], "et.libreoffice.org": [9311], "audtd.com": [1363], "*.clara.net": [3212], "exedweb.cc.uic.edu": [17231], "mail.fa.vutbr.cz": [17522], "wwwow.osumc.edu": [11676], "www.lnf.infn.it": [7766], "resiprocate.org": [13598], "www.jekyllrb.com": [19320], "cache.iwowcase.com": [7873], "www.bnw.im": [19010], "www.proxybay.la": [16227], "hostingcon.com": [7529], "philadelphiabar.org": [12621], "youtube.ca": [18709], "*.asmp.org": [947], "www.zandvoort.nl": [11132], "sh.ch": [19648], "www.telushealth.com": [16103], "www.array.is": [1213], "www.sparklit.com": [15223], "youtube.cl": [18709], "www.taskforceonshalegas.uk": [15969], "youtube.co": [18709], "contests.nvidia.eu": [10984], "my.maricopa.edu": [9989], "cdn4.kongcdn.com": [8976], "m.news.mail.ru": [9874], "dl.360safe.com": [108], "studiegids.tue.nl": [15874], "02.files.namecheap.com": [11019], "www.ebas.ch": [4870], "suas.ie": [15553], "omaze.com": [11789], "jesus.cam.ac.uk": [17243], "www.fluendo.com": [5951], "*.snapengage.com": [15027], "sandbox.sandvine.com": [14284], "*.domain.com": [4648], "schulte.org": [14369], "new.bulkorder.ftc.gov": [5720], "monitoring-plugins.org": [10556], "www.epa.ie": [4939], "m.bw.com": [1584], "laptop.hu": [9155], "m.prace.cz": [13008], "static0.twilio.com": [16876], "www.forum.1and1.ca": [52], "i3.gallery.technet.microsoft.com": [10364], "pixel.redditmedia.com": [13691], "otley.greenparty.org.uk": [6925], "www.fafsa.ed.gov": [4889], "xprize.org": [18495], "groups.inovem.com": [19294], "www.binrev.com": [1887], "sipb.mit.edu": [9749], "subscribe.ft.com": [5826], "blaagaarden.kk.dk": [8730], "feide.no": [5743], "services.libis.be": [9302], "*.cas.org": [3059], "be.ch": [19648], "searchmobius.org": [9770], "dalemacartney.com": [4127], "www.pogoda.yandex.com": [18651], "www.titanfile.com": [16500], "www.mcclurken.org": [17261], "argeweb.nl": [1181], "ct-mkt.sakura.ne.jp": [14246], "stopwatching.us": [15488], "h.msn.com": [9796], "webmail.tiggerswelt.net": [16441], "blog.pagefair.com": [12329], "www.codefisher.org": [3367], "www.pushover.net": [13254], "business.illinois.edu": [17258], "kaiserslautern.de": [8770], "www.whamcat.com": [18226], "nevistashealth.com": [11287], "helpcenter.stanford.edu": [15383], "highpeak.objective.co.uk": [19454], "senate.gov.ph": [14575], "web.stanford.edu": [15383], "parking.hastings.gov.uk": [7234], "pewrsr.ch": [1920], "www.protectnetwork.org": [13167], "policy.greenparty.org.uk": [6925], "www.nuclearcat.com": [11568], "pharmacy.buffalo.edu": [17297], "graphene-lda.com": [6893], "objednavka.active24.cz": [18938], "www.regalii.com": [13727], "discovermerchants.com": [4550], "cem.danskebank.dk": [4145], "munchies.vice.com": [17667], "www.entrust.com": [5303], "www.skat.dk": [14897], "maeweb.ucsd.edu": [16939], "boundarydevices.com": [19014], "store.apple.com": [1120], "*.consumerreports.org": [3603], "kurly.fr": [9042], "rarediseases.org": [13567], "wegotwax.com": [18020], "facebook.fr": [5623], "www.chef.io": [3057], "en.greatfire.org": [6907], "ece.osu.edu": [11760], "forum.torrentbit.net": [16585], "lacaixa.es": [9114], "blogs.bing.com": [1895], "www.pizza.fr": [12748], "*.m01.eu": [9694], "www.gamingonlinux.com": [6447], "www.access-kaiseki-tools.com": [444], "www.bugcrowd.com": [2406], "globalhivmeinfo.org": [6725], "rki.de": [13912], "humankode.com": [7605], "i3a.unizar.es": [17356], "embed.tumblr.com": [16826], "charterbusiness.com": [3022], "2016.appseccalifornia.org": [1133], "sbucciami.com": [14324], "www.galaxis.at": [6407], "cme-online.wustl.edu": [17993], "periscope.io": [12572], "*.wesnoth.org": [18204], "blu.stb.s-msn.com": [14059], "transcend.org": [16663], "w1.buysub.com": [2564], "cc2.dealer.com": [4256], "www.einslive.de": [18015], "redmatrix.me": [13678], "housingwire.com": [7564], "sidebar.issuu.com": [8378], "www.hivelocity.net": [7429], "www.headphone.com": [7255], "www.truelife.com": [16769], "static.adzerk.net": [675], "secureselfservice.northwarks.gov.uk": [11498], "lwssvcs.lowes.com": [9636], "www.comic-con.net": [3466], "www.2020mobile.es": [70], "www.virtualnewscenter.com": [17753], "geodacenter.org": [1194], "www.balboa.io": [1626], "thainetizen.org": [16167], "moja.postovabanka.sk": [12982], "www.ustream.tv": [17451], "gusto.com": [7027], "pidpic.stanford.edu": [15383], "*.massrelevance.com": [10048], "www.gdatasoftware.co.uk": [6293], "beautybar.com": [1741], "ikoula.com": [7963], "lbrundb.cern.ch": [2575], "springpadit.com": [15311], "ub.retargeter.com": [13600], "static.sascdn.com": [14982], "www.tritonlink.ucsd.edu": [16939], "www.arbornetworks.com": [1154], "sales.admin.cam.ac.uk": [17243], "www.bitnz.com": [1940], "service.upc.nl": [17002], "www.eddieizzard.com": [5074], "macgamestore.com": [9827], "liu.se": [9084], "info.giffgaff.com": [19217], "www.linksalpha.com": [9378], "freelauri.com": [6143], "www.kateheddleston.com": [8814], "vjs.zencdn.net": [18816], "careers.tvnz.co.nz": [15886], "www.gtt.net": [6395], "www.darkreading.com": [4150], "project-voisins.web.cern.ch": [2575], "sophievipescort.com": [15153], "licensingprograms.symantec.com": [15715], "www.nsa.gov": [11061], "kb.uwm.edu": [17294], "kicknews.co.uk": [8878], "propublica.net": [13111], "www.garlandscience.com": [8118], "rs.gwallet.com": [13522], "www.url2png.com": [17411], "www.tms.va.gov": [17019], "support.microsoft.com": [10364], "mibew.org": [10339], "www.cryptomaths.com": [3877], "doctorswithoutborders.org": [4625], "newmatilda.com": [11289], "privatbanka.sk": [13096], "int.anon-ib.la": [1036], "l.de": [9057], "magicalbutter.com": [9857], "buyiphone1.apple.com": [1120], "www.digits.com": [4509], "www.kinox.ag": [19337], "mail.capsd.usc.edu": [17278], "geocaching.com": [6541, 6542], "mspartnerlp.mspartner.microsoft.com": [10364], "paperspace.io": [12382], "www.lef.org": [9226], "img.alipay.com": [817], "www.pastebin.ca": [12442], "dante-analytics.net": [4004], "www.codeigniter.com": [19070], "*.vitalcred.com.br": [12328], "webirc.skynet.ie": [16210], "ganzestore.com": [6456], "qlgroup.quickline.ch": [19530], "www.suma-ev.de": [15589], "www.sofort.com": [15089], "www.raphaelhertzog.com": [13552], "harland.net": [7207], "*.foresters.com": [6030], "www.virginmobile.com.au": [17736], "www.tradeinchecker.com": [16641], "publons.com": [13219], "noxamail.de": [19444], "mlv-cdn.com": [10768], "www.delish.com": [4331], "dev.nsslabs.com": [10959], "static.shorte.st": [14735], "ew-online.de": [4990], "beacon.classrooms.walmart.com": [17964], "www.hashicorp.com": [7227], "delivery.switchadhub.com": [15701], "1.life.taobao.com": [15952], "www.footlocker.eu": [6010], "hiconversion.com": [7386], "www.hostasaurus.com": [7520], "notenoughshaders.com": [11516], "dynatrace.com": [4825], "turnonsocial.com": [16844], "drweb.com": [4783], "yahoo.tw.weibo.com": [18187], "*.carestream.com": [2848], "secunet.com": [14474], "computing.scs.illinois.edu": [17258], "api.creator.zoho.com": [18884], "secure.aarp.org": [234], "internationalsos.com": [8268], "el-tramo.be": [5137], "static2.businessinsider.com": [2454], "silentcircle.com": [14786], "dns.dynect.net": [4835], "techpresident.com": [16014], "snelserver.com": [15033], "leadlander.com": [9194], "www.e14n.com": [4861], "www.highland.gov.uk": [19249], "www.sitelabs.co.uk": [19594], "img.grouponcdn.com": [6978], "dev.maxmind.com": [10097], "checkmyrota.com": [19055], "*.anonym-surfen.de": [8623], "www.levonline.com": [9277], "ign.com": [7729], "www3.citymapper.com": [3193], "www.stewilliams.com": [19626], "tisarana.ca": [16497], "adsecurity.org": [274], "www.digitaldefenders.org": [4491], "enhancedsteam.com": [5273], "xpd.se": [18533], "*.ens-lyon.org": [5285], "www.nesea.org": [10900], "ru.redhat.com": [13675], "researchmatch.org": [13797], "m.money.mail.ru": [9874], "teenshealth.org": [8883], "atsevents.neustar.biz": [11280], "challenge.gov": [2985], "ws.sharethis.com": [14668], "www.512pixels.net": [170], "mcvuk.com": [8227], "community.liveperson.com": [9494], "www.onlychange.com": [11881], "ads.chango.ca": [2997], "www.mulliner.org": [19416], "uit.stanford.edu": [15383], "gitcop.com": [6677], "console.lingospot.com": [9372], "imediaconnection.com": [7761], "www.sacredcrystalsingingbowls.com": [3894], "iapt-sglos.awp.nhs.uk": [10913], "*.gamefactory.jp": [6431], "ltu.se": [9657], "hotukdeals.com": [7549], "www.fotki.yandex.kz": [18652], "v4.windowsupdate.microsoft.com": [10363], "www.nodeserv.com": [11450], "on.maxspeedcdn.com": [10093], "www.adform.com": [585], "hugedomains.com": [7601], "wiki.umeahackerspace.se": [17143], "www.telerik-web-assets.com": [16093], "www.gruen.net": [6384], "archlinux.de": [1169], "dialogue.shareholder.com": [14677], "smileysnetwork.com": [15006], "www.ibens.ens.fr": [4930], "hiawatha-webserver.org": [7390], "www.chbe.illinois.edu": [17258], "*.sternkom.de": [15468], "*.unr.li": [17367], "kivikakk.ee": [19339], "dbs.com.cn": [4010], "www.openprinting.org": [12041], "support.enthought.com": [5299], "www.podcast.at": [12843], "rohc-lib.org": [13444], "www.thehoxton.com": [16291], "nyt.com": [10997], "www.namebright.com": [11016], "neos.typo3.org": [15894], "*.dmri-library.com": [4602], "indiegala.com": [8071], "www.internet.org": [8278], "portfolio.debian.net": [4273], "*.haymarketmedia.com": [7249], "*.joyent.com": [8651], "delico.se": [4330], "www.startengine.com": [15408], "polybrowser.com": [12889], "www.projectsecretidentity.org": [13140], "www.yourlogicalfallacyis.com": [18730], "*.eventbrite.com": [5442], "mathoverflow.net": [15359], "code.msdn.microsoft.com": [10364], "tanki.mail.ru": [9874], "evernote.com": [5450], "retargeting.sklik.cz": [14915], "mail.ntu.edu.tw": [10971], "doxygen.openinfosecfoundation.org": [12016], "*.accordancebible.com": [457], "dms.wiiings.com": [18288], "www.hotel.ch": [19261], "fertecon.agra-net.com": [733], "nomino.openstreetmap.fr": [12045], "csa-cee-summit.eu": [2662], "*.flyasite.com": [5960], "www.fablabtacoma.com": [5614], "hideman.net": [7394], "www.sta.sh": [15356], "wck2.companieshouse.gov.uk": [3508], "owlfolio.org": [12179], "www.teamxlink.co.uk": [16006], "silverrushstyle.com": [14800], "www.livestock-transport.com": [9513], "lp.longtailvideo.com": [9589], "www.arne.schuldt.info": [1207], "hh.ru": [7060], "m.proxfree.com": [13175], "media.univcomm.cornell.edu": [3676], "images.thecarconnection.com": [7398], "phpbb.com": [12650], "www.counterpartychain.io": [3707], "celiac.org": [2931], "plannedgiving.com": [12773], "pizza.de": [12747], "collector.opensvc.com": [11972], "rss.packetstormsecurity.com": [12317], "loisirs2.cff.ch": [15693], "svn.keksbude.net": [8842], "secure.acpa.ca": [745], "jotter.educ.cam.ac.uk": [17243], "www.scottevest.com": [14398], "ads.ign.com": [7730], "honcode.ch": [7089], "vook.com": [17842], "archive.anon-ib.la": [1036], "partner.symantec.com": [15715], "jiadian.taobao.com": [15952], "www.it-sicherheit.de": [8193], "secure.runbox.com": [14037], "jobs.fitbit.com": [5887], "smc.cybercon.com": [3968], "www.shareholder.anz.com": [315], "dev.c-ware.de": [2497], "journal.paul.querna.org": [13350], "www.lullabot.com": [9658], "whatimg.com": [18233], "summertime.fazekas.hu": [5697], "bancopostaclick.poste.it": [12965], "teamgaslight.com": [16001], "intercom.io": [8244], "happylaptop.chef.io": [3057], "wosign.cn": [18392], "m.my.t-mobile.com": [15772], "pixel.facebook.com": [5620], "www.foresters.biz": [6030], "www.tpg.com": [15850], "www.otakumode.com": [12129], "yellowpages.superpages.com": [15633], "thp.io": [16388], "www.lxcenter.org": [9679], "www.hornbach.nl": [7496], "www.fragdenstaat.de": [6093], "me.jd.com": [8423], "media.mnn.com": [9768], "developers.facebook.com": [5620], "www.sandofsky.com": [14280], "modelmayhem.com": [10517], "ultimatebootcd.com": [17129], "espanol.smokefree.gov": [19603], "leviathansecurity.com": [9272, 9273], "nutrition.gov": [11584], "ybitcoin.com": [18611], "sendvid.com": [14584], "hellerlab.stanford.edu": [15383], "www.buddycube.com": [2390], "ohiostatealumni.org": [11764], "isis.jhu.edu": [16296], "watch.yandex.kz": [18652], "jigsaw.w3.org": [17888], "huffingtonpost.com": [7600], "billing.ivacy.com": [8398], "www.questia.com": [13354], "images.hertz247.com": [7372], "gypsy.freedesktop.org": [6126], "turris.cz": [16846], "www.bydavidwittig.com": [2484], "goldenpass.ch": [19225], "owa.connect.kent.ac.uk": [17317], "www.movieposter.com": [10643], "www.tailormadeanswers.com": [15913], "*.webmail.sk": [15676], "1x.com": [49], "dbforums.com": [4011], "pactf.com": [12203], "mailerlite.com": [9882], "www.codebasehq.com": [3360], "rpm4.zarb.org": [18796], "huff.to": [1920], "www.libreofficebox.org": [9312], "*.couragecampaign.org": [3713], "ahpra.gov.au": [1394], "online-go.com": [11868], "www.loginza.ru": [9560], "developer.leafly.com": [9204], "www.oculusvr.com": [11722], "cms.here.com": [7326], "mysql.ut.ee": [17069], "www.liquidmatrix.org": [9445], "*.blackvpn.com": [2042], "www.checksconnect.com": [7207], "www.xroxy.com": [18590], "www.piratenpartei-bayern.de": [12719], "testssl.sh": [16147], "me.com": [9735], "unblocked.red": [17151], "www.zoneedit.com": [18893], "www.frequentis.com": [6197, 6198], "*.liberalamerica.org": [9295], "ehawaii.gov": [7245], "buyaplan.co.uk": [19030], "portal.gigaclear.com": [6647], "press.walthamforest.gov.uk": [17966], "tvlicensing.co.uk": [16861], "workfor.greenpeace.org": [6937], "*.swt.com": [14209], "training.ebsco.com": [4872], "secure.bizland.com": [2029], "mailings.gmx.net": [6350], "www.htwk-leipzig.de": [7114], "pengpod.com": [12534], "sites.fastspring.com": [5677], "zerocater.com": [18842], "leroyfcpress.com": [9257], "businesshelp.comcast.com": [3461], "glimmerblocker.org": [6709], "id.secondlife.com": [14462], "www.seba-geek.de": [15129], "volunteerbooking.london.gov.uk": [9578], "cdn3.sbnation.com": [14079], "www.fora.tv": [5585], "wiki.projectmeshnet.org": [13139], "genius-2.itunes.apple.com": [1120], "livestock-transport.com": [9513], "www.carrier-lost.org": [2863], "api-v1.websitealive.com": [18149], "www.vanderbilthealth.com": [17556], "www.metabunk.org": [10304], "www.teendriversource.org": [16058], "lijit.com": [9349], "*.lockerdome.com": [9544], "frype.com": [4742], "vivad.aolcdn.com": [322], "www.trustifier.com": [16795], "vpn-service.us": [17499], "scripts.sil.org": [14122], "gorsel.yandex.com.tr": [18649], "*.unilever.com": [17189], "www.mozo.com.au": [10665], "cdn.mouseflow.com": [10624], "widgets.amazon.com": [910], "gmx.info": [6350], "politi.co": [1920], "www.stefan-betz.net": [15461], "ss.knet.cn": [8739], "puritan.com": [13247], "keyserver2.pgp.com": [12245], "www.hostingsolutions.cz": [7531], "*.longaccess.com": [9590], "www.groupme.com": [6970], "ingenuity.net.au": [8140], "iwcp.usuhs.edu": [17052], "*.aerlingus.com": [682], "portal.azure.com": [1483], "*.creativepartnershipsaustralia.org.au": [3780], "www.onesignal.com": [11843], "secdev.com": [14458], "www.mbed.org": [10109], "expo.engineering.osu.edu": [11760], "jedec.com": [8430], "developer.marvel.com": [10038], "api.cloudcontrol.com": [3283], "dashboard.eindhoven.nl": [5127], "edoceo.com": [5089], "*.jstor.org": [8460], "www.chbtc.com": [3036], "riksgalden.se": [13890], "*.legacyconnect.ning.com": [9227], "www.undergraduateresearch.osu.edu": [11760], "ir-de.amazon-adsystem.com": [909], "smtrcs.redhat.com": [13675], "media.memrise.com": [10254], "www.dataxu.com": [4190], "www.direct.gov.uk": [4531], "paste.debian.net": [4273], "www.mantisbt.org": [19383], "www.scripturaengage.com": [14426], "dribper.com": [19127], "images2.sanalmarket.com.tr": [14275], "a4.websitealive.com": [18149], "*.sanoma.fi": [14288], "scholarcommons.usf.edu": [17274], "gotvape.com": [6854], "www.european-privacy-seal.eu": [5408], "partner.just-eat.be": [19328], "www.o2tv.cz": [16076], "www.dealspwn.com": [7549], "*.skitch.com": [14914], "atmia.com": [18969], "*.comingolstadt.de": [3468], "gallup.com": [6409], "feature.rescue.org": [19545], "math.ias.edu": [7669], "kiwiirc.com": [8930], "spotseeker.cac.washington.edu": [17291], "www.resonant.org": [13809], "www.yt-dl.org": [18744], "*.crunchboard.com": [12585], "tasha.serversaurus.com.au": [14619], "www.red-dove.com": [13656], "provost.illinois.edu": [17258], "lists.young-pirates.eu": [18716], "unbound.net": [17154], "a.ucsd.edu": [16939], "answers.nei.nih.gov": [11052], "fr.norton.com": [11505], "www.microsoftventures.com": [10370], "p6.qhimg.com": [13302], "www.wordtothewise.com": [18431], "buddycube.com": [2390], "derwesten.de": [4384], "glx-dock.org": [16856], "epayments.ipswich.gov.uk": [8351], "trello.com": [16710], "www.codefund.io": [3369], "sknvibes.com": [14126], "estore.drweb.com": [4783], "www.cstatic-graphics.com": [3899], "adressbuch.mail.de": [9873], "webfolio.spla.ulaval.ca": [17229], "jve.linuxwall.info": [9437], "*.linuxquestions.org": [9415], "www.verisign.co.uk": [17623], "www.kids.org.uk": [19336], "*.moovweb.com": [10582], "asada.govspace.gov.au": [6867], "m.internet.org": [8278], "solola.ca": [15123], "stitcher.com": [15476], "blog.babbel.com": [1589], "bhamcommunity.nhs.uk": [10913], "understanding.webtrends.com": [5177], "umich.edu": [17266], "www.openideo.com": [11944], "supportprofile.apple.com": [1120], "www.alumniweb.ox.ac.uk": [17271], "www.dotdeb.org": [4699], "starwoodhotels.com": [15414], "m.cygnus.cc.kuleuven.be": [8816], "www.northern-indymedia.org": [11500], "www.polleverywhere.com": [12880], "www.broadbandbuyer.co.uk": [2351], "debbugs.gnu.org": [6357], "ib24.csob.sk": [3896], "snapdeal.com": [15030], "wms.assoc-amazon.co.uk": [1287], "artsprojekt.com": [18803], "exchange.ulaval.ca": [17229], "en-sk.dict.cc": [4455], "*.brownpapertickets.com": [2366], "our.intel.com": [8209], "images.palcdn.com": [12206], "btc.diet": [1555], "desertory.de": [4386], "fr.pcisecuritystandards.org": [12224], "trk.tidaltv.com": [16433], "www.edigitalresearch.com": [4900], "stunnish.com": [15546], "www.myshadow.org": [10816], "small.linncdn.com": [9385], "aarhus.dk": [392], "partner.etracker.de": [5390], "www.girlsoutwest.com": [6667], "customerhub.net": [8136], "cdn.btrcdn.com": [1573], "www.wyzerme.com": [18492], "listbox.com": [9449], "www.turku.fi": [19706], "www.sharenice.org": [19585], "www.timeclockdeals.com": [16459], "apexea.oracle.com": [12082], "cityoflondon.gov.uk": [3190], "three.ma": [16399], "inkfrog.com": [8147], "pro-linux.de": [13106], "www.linuxvoice.com": [9425], "ufa.rt.ru": [13469], "my.newark.ohio-state.edu": [11761], "sealswithclubs.eu": [14439], "zeeland.nl": [11132], "report.nrls.nhs.uk": [10913], "itrusteauth.nih.gov": [11052], "bitnami.org": [1944], "cs.libreoffice.org": [9311], "*.sabayon.org": [14214], "*.networksgroup.com": [11210], "discover.com": [4547], "qis.hs-karlsruhe.de": [7582], "doc.mageia.org": [9847], "akademy2006.kde.org": [8718], "www.dbs.com.cn": [4010], "telefoniczna-kopalnia.panoptykon.org": [12365], "*.kpn.nl": [8744], "formassembly.com": [6040], "www.cronius.nl": [3809], "s5.mt-cdn.net": [9798], "developer.bluetooth.org": [2155], "www.worldhealth.net": [18463], "wwwstage.cityoflondon.gov.uk": [3190], "blog.hslu.ch": [7583], "www.openinventionnetwork.com": [11906], "coveredcacertifiedpartners.com": [3731], "www.thefrozenfire.com": [16336], "edirectdebit.com": [4902], "forum.palemoon.org": [12341], "dmjx.dk": [4600], "humblebundle.com": [7615], "e.lvme.me": [9492], "cdn.elegantthemes.com": [5156], "jiscmail.ac.uk": [8439], "www.bitservicex.com": [4883], "healthiernorthwestlondon.nhs.uk": [10913], "passsource.com": [12424], "*.verkkomaksut.fi": [17629], "iwork.com": [7878], "www.olin.edu": [6104], "swissinfo.ch": [19621], "environmental-impact.web.cern.ch": [2575], "miamire.com": [10336], "publish.escholarship.org": [4970], "jobscout24.de": [8591], "*.ebay.com.sg": [4874], "playlists.net": [12807], "rdns.cc": [3996], "forum.dee.su": [4294], "www.icanlocalize.com": [7695], "www.sickdaysurfshop.com": [14758], "dlitz.net": [4042], "public01.milton-keynes.gov.uk": [10401], "buckid.osu.edu": [11760], "esp.ap.equinix.com": [5334], "www1.netflix.com": [11229], "www.joslin.org": [8636], "www.airsoftgi.com": [754], "nifty.com": [10925], "theengineroom.org": [16329], "www.tv4play.se": [15882], "butlerandthechef.com": [16181], "jobs.newscientist.com": [11298], "burymbc.firmstep.com": [19183], "www.icefilms.info": [7911], "www.cluster1.easy-hebergement.net": [5033], "*.ally.com": [865], "europython.eu": [5409], "sft.its.cern.ch": [2574], "openwebmail.org": [11913], "www.fav.me": [4422], "www.a-ads.com": [215], "secure.teamforge.net": [15999], "www.coinwallet.eu": [3400], "xt-commerce.co.uk": [18594], "open.com.au": [11914], "*.moses.com": [14881], "macromedia.com": [9833], "projects.vpsfree.cz": [19743], "wa236.teamviewer.com": [16004], "nciphub.org": [19427], "login.seznam.cz": [14648], "www.jabber.org.uk": [8476], "gupnp.org": [6354], "www.koumbit.net": [8998], "re.taobao.com": [15952], "www.r00tz-org.theidentityproject.com": [13390], "twitch.tv": [16888], "www.aviris.fi": [1450], "pass.yandex.com.tr": [18649], "u3.uicdn.net": [16958], "*.togevi.com": [8400], "music.jd.com": [8422], "www.lifehacker.com": [9331], "cdn.krxd.net": [9016], "downloads.mamp.info": [19379], "itc.mzstatic.com": [10852], "1in3campaign.org": [11852], "4qinvite.4q.iperceptions.com": [19275], "mae-hpc.engineering.osu.edu": [11760], "cp.win-sv.jp": [18326], "nz.godaddy.com": [6773], "youlun.jd.com": [8423], "www.lazycoins.com": [9184], "smartfacts.cr.yp.to": [3748], "manisec.com": [9934], "media.bizj.us": [16180], "www.citi.com": [3168], "www.efinancialcareers.com": [4911], "sparkfun.com": [15222], "web.archive.org": [1166], "snipcart.com": [15037], "whistleout.co.uk": [18248], "grad.uic.edu": [16953], "coursefinder.uow.edu.au": [17350], "id.itradecimb.com.sg": [2607], "stg.here.com": [7326], "litlab.stanford.edu": [15383], "coinmarketcap.com": [19071], "harlandforms.com": [7207], "jobs.urbandictionary.com": [16234], "book.majordomo.ru": [9901], "*.wyndham.com": [18490], "www.invest.dha.gov.au": [4308], "escrowlive.net": [5355], "sr.libreoffice.org": [9311], "api.deferpanic.com": [4312], "content.s8bbs.com": [14639], "arbornetworks.com": [1154], "getmailbird.com": [6596], "www.internet.org.nz": [8277], "www.webfonts.fonts.com": [5993], "www.studiegids.tue.nl": [15874], "www.getmondo.co.uk": [19215], "blogs.law.stanford.edu": [15383], "c.bing.com": [1895], "partner.fastdomain.com": [5672], "staff.snel.com": [15034], "cecpp.cheshireeast.gov.uk": [3067], "intranet.creatis.insa-lyon.fr": [7771], "www.hongkongpost.gov.hk": [19259], "security.alibaba.com": [809], "goodlucktrunk.com": [6828], "developer.onedrive.com": [11831], "cospar-assembly.org": [2641], "s3.reutersmedia.net": [16381], "pinkong.taobao.com": [15952], "caseking.de": [2876], "*.aans.org": [928], "docs.id.yahoo.co.jp": [18640], "healthysteps.stanford.edu": [15383], "*.cduniverse.com": [2568], "www.manitu.net": [9957], "www.zend.com": [18821], "vantage.rubiconproject.com": [14014], "rackspace.com.hk": [13502], "www.understood.org": [17159], "clearchain.com": [3231], "*.ukfast.co.uk": [16969], "internal.pti.iu.edu": [8064], "apm.com": [332], "arbor.net": [1154], "cdn.etrade.net": [5391], "iinet.net.au": [7958], "app.qualaris.com": [13327], "hugendubel.info": [19265], "languageperfect.com": [9146], "fundusze-inwestycyjne.money.pl": [10546, 10547], "*.intuitcdn.net": [8304], "courses.it.ox.ac.uk": [17271], "www.jodel-app.com": [8606], "www.cuny.edu": [3189], "mozilla.com": [10654], "*.secusmart.com": [14539], "munin.debian.org": [4275], "www.atlantis.sk": [1319], "www.shotgunclub.com": [14737], "www.365ticketscentral.com": [115], "www.infektionsschutz.de": [8090], "pcworld.com": [12232], "hmv.co.jp": [7086], "account.longtailvideo.com": [9589], "efukt.com": [4914], "denso-wave.com": [4367], "webmail.forthnet.gr": [6054], "register.smext.faa.gov": [5713], "acg.taobao.com": [15952], "eyereturnmarketing.com": [5532], "onlinebenefitclaim.basildon.gov.uk": [18984], "api.jquery.com": [8451], "www.minijob-zentrale.de": [10424], "www.tipp10.com": [16493], "*.pinme.ru": [12695], "shop.medikamente-per-klick.de": [10196], "www.notesappstore.com": [10102], "cloud.loggn.de": [9555], "www.allstartire.com": [847], "www.alternativlos.org": [885], "www.heroesofnewerth.com": [14062], "www.dslreports.com": [4081], "surftown.com": [15652], "static.weboffice.uwa.edu.au": [17293], "backstage.forgerock.com": [19189], "www.abanet.org": [938], "help.yandex.kz": [18652], "www.atmos.illinois.edu": [17258], "www.layerbnc.org": [9182], "www.copernico.net": [3650], "youtube.com.hr": [18709], "api.blockspring.com": [2098], "aquilaclothing.co.uk": [1146], "infowar.com": [8105], "dev.ashampoo.com": [1250], "www.rottnestfastferries.com.au": [13984], "tableau.com": [15897], "cdni.condenast.co.uk": [3553], "www.mileiq.com": [10392], "olvi.fi": [11785], "thinkculturalhealth.hhs.gov": [7062], "asada.gov.au": [345], "ee.co.uk": [5457], "*.uakron.edu": [17082], "lists.xenserver.org": [18557], "base.liveperson.net": [9493], "lh6.google.co.*": [6837], "img.sanet.me": [14077], "rebeltorrent.net": [13639], "meeting.teamviewer.com": [16004], "switchplus.ch": [15706], "buy.symantec.com": [15715], "s.gr-assets.com": [6877], "justfordomino.com": [10101], "webmerge.me": [18075], "www.kismetwireless.net": [8919], "democracy.kent.gov.uk": [8851], "www.woodgreen.org.uk": [18418], "*.www.dialdirect.co.uk": [4442], "support.firmstep.com": [19183], "cdn.css-tricks.com": [2678], "sourcefabric.com": [15179], "www.aulo.in": [1368], "forum.e-hentai.org": [4840], "media.umbel.com": [17142], "www.beforeyoudig.nationalgrid.com": [11081], "www.tauceti.org.au": [15976], "www.codecentric.de": [3362], "xenomai.org": [18565], "euscripts.msi.com": [9792], "*.prf.hn": [12567], "labs.chevronwp7.com": [9127], "*.gullipics.com": [19232], "awaps.yandex.com.tr": [18649], "hubspot.com": [7594], "kickass.to": [8879], "blog.jessfraz.com": [8555], "*.awm.gov.au": [1405], "www.dynamics.com": [4829], "www.bistudio.com": [2179], "*.egnyte.com": [5115], "search.disconnect.me": [4543], "www.jhsmh.org": [8854], "zeltser.com": [18813], "assets.puma.com": [13227], "seacloud.cc": [14434], "square.com": [15329], "biofitt.com": [1906], "tsapps.nist.gov": [11051], "desk.dict.cc": [4455], "garage.maemo.org": [9844], "quamnet.com": [13334], "seecrypt.com": [14548], "overpass-turbo.eu": [19474], "posta.ch": [12949], "media.skyandtelescope.com": [14932], "www.btc100.com": [1556], "publicfeed.stubhub.com": [15534], "duckduckgo.com": [4792], "s.ixiaa.com": [7881], "*.rfecom.com": [13854], "optimisemedia.com": [12070], "images.h.switchadhub.com": [15701], "www.optimizegoogle.com": [12072], "www.thebrighttag.com": [2324], "vc-kundencenter.de": [17472], "williamhill.com": [18315], "cnre.vt.edu": [17740], "*.landslide.com": [9143], "8r.com": [202], "seravo.fi": [14594], "www.fod.osu.edu": [11675], "which.co.uk": [18240], "www.mixtapeleak.com": [10469], "r.ad6media.fr": [515], "intern.connecthr.nl": [2783], "www.login.vutbr.cz": [17522], "www.passwordscon.org": [19480], "www.wikileaks.org": [18291], "support.ispbilling.com": [16817], "imis.the-dma.org": [16185], "www.buildbetter.software": [2411], "www.warmlyyours.com": [17980], "pep.foundation": [12502], "katalog.bib.htwk-leipzig.de": [7114], "au.org": [949], "puck.nether.net": [11235], "kumu.io": [9036], "www.dgex.com": [4033], "guildwars2.com": [7011], "www.bitcoin.org": [1930], "vanillamastercard.com": [17559], "www.techfreedom.org": [16011], "bluetooth.org": [2155], "alliedmedia.org": [854], "yandex.by": [18648], "ondemand.sans.org": [14072], "citmedialaw.org": [4046], "services.community.lego.com": [9068], "sptag.com": [15322], "d.adroll.com": [536], "mzl.la": [19423], "dagbladet.no": [4106], "wiki.myportal.im": [10776], "www.vc-kundenservice.de": [17472], "www.jackandjill.ie": [8481], "hackint.org": [19234], "jiwire.com": [8565], "docxpress.stanford.edu": [15383], "apply-berkeley-edu.cdn.technolutions.net": [16042], "www.ca.niif.hu": [10929], "j-schmitz.net": [8408], "factoryexpo.net": [5627], "cdn.vni.la": [17558], "www.edihealth.com": [4894], "my.gmocloud.us": [6344], "www.usc.edu": [17278], "help2.talktalk.co.uk": [15929], "talktalk.co.uk": [15929], "no.norton.com": [11505], "assets.wantful.com": [17974], "distilleryimage3.instagram.com": [8182], "*.eetgroup.com": [4905], "*.omnitec.com": [11800], "pasazfin.wp.pl": [17921], "www.opticsinfobase.org": [12066], "estavisas.org.uk": [4966], "caremad.io": [2847], "www.transit.land": [16670], "wiki.aalto.fi": [390], "www.it-cube.net": [7839], "style.omniture.com": [11803], "mobypicture.com": [10506], "wbs-law.de": [18306], "www.nedlinux.com": [11131], "bbs.boingboing.net": [2181], "bleep.com": [2065], "*.epson.jp": [5330], "novosoft.net": [11532], "secure.victoriassecret.com": [17672], "pathofexile.com": [12453], "www.cardiff.gov.uk": [19039], "www.active24.sk": [18938], "*.opensuse.org": [11971], "pythonanywhere.com": [13273], "lillypad.lilly.ca": [5163], "nixsrv.com": [11431], "2kgames.com": [87], "t.btstatic.com": [1580], "www.djangoproject.com": [4590], "i1.iis.net": [7741], "shipto.com": [14707], "*.shurgardpayment.eu": [14751], "www.staticgen.com": [15427], "ucuzu.com": [17108], "mcmelectronics.com": [9728], "webmail.ukeer.de": [17124], "foreverinfamous.com": [8089], "campusactivities.usc.edu": [17278], "snowmagazineonline.com": [15042], "bullguard.com": [2420], "beanbaginc.com": [1731], "open-mesh.org": [12020], "www.peerj.com": [12515], "www.cp.pt": [3744], "api.ccbill.com": [2534], "oshkosh.com": [12121], "www.trustlogo.com": [3504], "ss3.vas-hosting.cz": [19729], "support.leboncoin.fr": [19351], "firstcentralsb.com": [5867], "delivery.d.switchadhub.com": [15701], "www.harland.com": [7207], "hosting.wedos.com": [17901], "img.tnastatic.com": [16517], "masspirg.org": [9714], "sata-io.org": [14075], "*.levexis.com": [9271], "order.nexcess.net": [11356], "*.hungryforchange.tv": [7620], "volusion.com": [17837], "xerxes.calpoly.edu": [2747], "myheritage.se": [10834], "secure.xaraonline.com": [18544], "www.rothaconference.leeds.ac.uk": [17318], "vsipprogram.com": [17513], "uicbookstore.org": [16954], "cache.addthiscdn.com": [571], "andyet.com": [1012], "blog.honest.com": [7481], "bmf-steuerrechner.de": [1530], "www.three.ie": [16397], "*.loopiasecure.com": [9607], "*.panel.home.pl": [7465], "www.betterbills.com.au": [1823], "tribalfusion.com": [16725], "images.ccs.com": [2551], "www.dental.washington.edu": [17291], "blog.mandriva.com": [9947], "getbootstrap.com": [6609], "*.adrxmedia.com": [17540], "i.computerbild.de": [19075], "*.abiliba.net": [418], "www.mi-ms.com": [9991], "www.bahn.de": [1617], "disconnect.me": [4543], "aggregateknowledge.com": [726], "www.fictionpress.com": [5772], "businessforums.verizon.net": [9468], "www.csa-cee-summit.eu": [2662], "scripts.verticalacuity.com": [17638], "www.h-node.org": [7042], "diasp.eu": [4446], "extremetracking.com": [5528], "www.watchmedier.dk": [17996], "www.tag1consulting.com": [15903], "www.xhamster.biz": [785], "www.wingolog.org": [18353], "ui.streamate.doublepimp.com": [4717], "*.nwtime.org": [11271], "thankyou.com": [16173], "house.resource.org": [13207], "cdn.knightlab.com": [8945], "www.stgeorge.com.au": [19627], "evotronix.evotronix.netdna-cdn.com": [5463], "www.screendaily.com": [14409], "alsoactebis.com": [301], "images.travelnow.com": [16692], "idprotect.vip.symantec.com": [15715], "bugzilla.untangle.com": [17370], "rbss.wirral.gov.uk": [18371], "kgs.steampowered.com": [15450], "kulcs-soft.hu": [9033], "bath.greenparty.org.uk": [6925], "mythtv.org": [10849], "www.ukfsn.org": [16966], "www.mychatagent.com": [8689], "cdn-static.liverail.com": [9495], "www.postto.me": [12956], "*.axa-winterthur.ch": [381], "autoitscript.com": [1417], "partner.quickline.ch": [19530], "argos-spain.co.uk": [1186], "www.thalysthecard.com": [16172], "images.costco-static.com": [3693], "sip.derby.gov.uk": [4380], "participant.identrust.com": [7934], "main.exoclick.com": [5499], "arkos.io": [1196], "teamtailor.com": [16003], "*.yahoo.com": [18638], "mersenne.org": [10286], "go2.trendmicro.com": [16717], "www.peterbroderick.com": [12589], "www.transportstyrelsen.se": [16683], "www.systembolaget.se": [15763], "www.oebb.at": [19455], "*.ipxe.org": [7800], "www.notabug.org": [11514], "help.snapengage.com": [15026], "api.toster.ru": [16598], "adwords.google.co.*": [6837], "*.msnbc.msn.com": [9794], "1phads.com": [61], "moinmo.in": [10533], "gmx.biz": [6350], "signin.epek.com": [5318], "www.alphassl.com": [867], "www.habets.se": [7125], "defcon.ru": [4304], "blogs.cisco.com": [3162], "redmine.replicant.us": [13779], "bricklink.com": [2313], "riverisland.fr": [13906], "affiliate.law.yale.edu": [18642], "uno.im": [17361], "blackpoolfylde.greenparty.org.uk": [6925], "evermap.com": [5445], "support.opencorporates.com": [11931], "www.trademark.harvard.edu": [7219], "www.lexmachina.com": [9279], "www.gl.ciw.edu": [2857], "www.pcpartpicker.com": [12497], "gigafreak.net": [6648], "blossoms.mit.edu": [9749], "complice.spla.ulaval.ca": [17229], "www.mequoda.com": [10268], "wiki.leloop.org": [9191], "www.mi-pro.co.uk": [8226], "dacapoalfine-dd.de": [4099], "quantcast.com": [13337], "ballerup.dk": [1630], "cdn.corporate.walmart.com": [17964], "accounts.hants.gov.uk": [7196], "app-us2.resrc.it": [13599], "d2.nal.usda.gov": [17209], "ums.adtech.de": [638], "aka-cdn-ns.adtech.de": [638], "images.cdn.static.malwarebytes.org": [9929], "www.contiki-os": [3617], "myhailprotector.com": [7164], "users.venturebeat.com": [17611], "*.media.tumblr.com": [16826], "meynconnect.com": [10328], "sallie-info.stanford.edu": [15383], "www.websupport.at": [18091], "convar.com": [3625], "staffsmoorlands.greenparty.org.uk": [6925], "www.gammagroup.com": [6448], "ideas.hubspot.com": [17440], "cwisdb.kuleuven.be": [8816], "webcruiter.no": [18114], "hipaa.wustl.edu": [17993], "www.physics.osu.edu": [11760], "www.hkw.de": [7080], "www.enhanceie.com": [5272], "api.vistumbler.net": [13544], "www.map.pol.ulaval.ca": [17229], "software.nasa.gov": [10869], "dramaticarts.usc.edu": [17278], "trk.cetrk.com": [2589], "ofb.net": [11620], "*.ticketsnow.com": [16427], "www.da.isy.liu.se": [9084], "jaguar.cis.vutbr.cz": [17522], "www.jfrog.com": [8433], "events.geogebra.org": [6537], "kau.toke.dk": [16533], "uploads.billiondigital.com": [1882], "www.gnomejournal.org": [6354], "*.wwte1.com": [17937], "forum.lowyat.net": [9637], "www.cryptocoincharts.info": [3872], "*.pimienta.org": [12985], "community.adobe.com": [615], "sabb.com": [7098], "gemeentewesterveld.nl": [11132], "*.sheppyware.net": [14700], "playframework.com": [12798], "usps.com": [17049], "m.wolverhampton.gov.uk": [18404], "payment.empflix.com": [5213], "lug.mtu.edu": [9802], "mail.uu.se": [17074], "www.opcw.org": [11653], "www.qtcloudservices.com": [13316], "ads.neudesicmediagroup.com": [11281], "ddktoday.niddk.nih.gov": [11052], "*.gulli.com": [19232], "www.haveibeenpwned.com": [19238], "www5.nottingham.ac.uk": [11528], "www.mathinf.uni-heidelberg.de": [17174], "suppliers.cheshire.gov": [3065], "getclicky.com": [6610], "campaigns.paypal.com": [12467], "www.uniblue.com": [17180], "learnerview.ofsted.gov.uk": [19456], "coisas.com": [3412], "jailbreakingisnotacrime.org": [8493], "talks.stanford.edu": [15383], "statics.meetic-affinity.com": [10214], "manabalss.lv": [9937], "*.quora.com": [13375], "export.skat.dk": [14897], "db.debconf.org": [4268], "alta.com": [873], "portal.etc.cmu.edu": [2858], "webcon.japias.jp": [8516], "ubuntu-mate.boutique": [17097], "vttts.readspeaker.com": [13610], "ige.ch": [15696], "www.formilux.org": [6044], "swale-consult.objective.co.uk": [19454], "prdownloads.sourceforge.net": [15174], "*.no-ip.com": [17791], "wokingham.gov.uk": [19762], "service.eudoxus.gr": [6912], "opinionmeter.com": [12055], "www.macgamestore.com": [9827], "images.placesonline.com": [12755], "www.linuxslut.net": [9436], "www.sektioneins.de": [14563], "www.commentarymagazine.com": [3478], "www.blackironbeast.com": [2046], "download.spiceworks.com": [15266], "techworld.idg.se": [7705], "www.commercialappeal.com": [4989], "m.feedback.yandex.com": [18651], "www2.mrc-lmb.cam.ac.uk": [17243], "ssl-tools.net": [19622], "www.plantcommunity.de": [12775], "bellingcat.com": [1766], "sierraware.com": [14772], "knowledge.seagate.com": [14437], "www.iwowcase.com": [7873], "il.srgssr.ch": [19621], "hrweb.cdn-apple.com": [2553], "www.nothing.ch": [11526], "movie2k.pe": [10635], "wpc.*.edgecastcdn.net": [5079], "indiemerchandising.com": [8069], "www.agar.io": [719], "community.norton.com": [11505], "midandeastcornwall.greenparty.org.uk": [6925], "www.mint.com": [10432], "namecheap.com": [11019], "ipvanish.com": [7799], "*.inburke.com": [8040], "www.lolzparade.com": [4118], "panel.preyproject.com": [13045], "support.avast.com": [1444], "cpf.engineering.osu.edu": [11760], "1deg.org": [50], "buffalo-technology.com": [2398], "epetitionslincolnshire.firmstep.com": [19182], "reviews.argos.ie": [1185], "www.videolan.org": [17688], "sav.sk": [14972], "pixel.crosspixel.net": [3812], "spring.io": [15303], "hwsw.hu": [7119], "*.typography.com": [16916], "southtyneside.greenparty.org.uk": [6925], "accounts.adafruit.com": [550], "*.volkswagenbank.de": [17830], "app.peer5.com": [12514], "medicinenet.com": [10192], "discoverbsd.com": [4548], "sp.nl": [14151], "fonts.typotheque.com": [16917], "payments.sky.com": [14924], "ws-ea.amazon-adsystem.com": [909], "survey.hslu.ch": [7583], "www.domenkozar.com": [4668], "postfinance.ch": [12949], "internetbanking.bnz.co.nz": [1534], "biowarestore.com": [1903], "query.yahooapis.com": [18639], "mmixr.com": [10476], "denman.osu.edu": [11760], "forum.freifunk.net": [6192], "img.coxnewsweb.com": [3740], "www.daha.net": [15090], "www.totalboox.com": [16600], "yun.taobao.com": [15952], "yelp.com": [18673], "www.sendmail.com": [14581], "digium.com": [4510], "s.ign.com": [7730], "store.fileforum.com": [1817], "videos.ti.com": [16152], "gpt.nserver.ru": [11548], "webmail.sydney.edu.au": [19649], "dev.yandex.com": [18651], "slashdot.org": [14947], "mytm.tm.com.my": [16083], "webwsp.aps.kuleuven.be": [8816], "ses.leeds.ac.uk": [17318], "forum.nasaspaceflight.com": [10870], "www.coolwebscripts.com": [3640], "*.netindex.com": [11211], "collector.statowl.com": [15415], "www.webtrends.com": [18171], "bugs.freenetproject.org": [6181], "sueddeutsche-tickets.de": [15579], "nesterov.pw": [11167], "*.myconan.net": [10826], "chisel.eecs.berkeley.edu": [17240], "secure.classmates.com": [3218], "global.sky.com": [14924], "r3.mail.ru": [9874], "www.engineering.illinois.edu": [17258], "drivertraining.hertsdirect.org": [7334], "cryengine.com": [3838], "nodejitsu.com": [11453], "www.affair-guide.com": [697, 698], "solar.engineering.osu.edu": [11760], "maxcdn.com": [10091], "api.mixcloud.com": [10465], "www.hqpower.eu": [17596], "www.govwaste.co.uk": [6869], "connect.tms.pl": [19686], "trafficholder.com": [16646], "s1.2mdn.net": [94], "webtype.com": [18095], "www.msf.org.uk": [9789], "app.marketo.net": [10015], "*.jalopnik.com": [8497], "www.cdn-net.com": [2917], "sourceforge.net": [15174], "pearsonvue.com": [12506], "www.350zevolution.com": [105], "alumni.ntnu.no": [10964], "www.newstral.com": [11347], "blog.getcloudapp.com": [9370], "boingohotspot.net": [2182], "www.wog.ch": [18451], "bookcase.chromeexperiments.com": [3117], "www.pharmacievirtuelle.pha.ulaval.ca": [17229], "sourceconference.com": [15177], "csat.apple.com": [1120], "p2-u.itunes.apple.com": [1120], "iforgot.apple.com": [1120], "sso.amd.com": [925], "de-es.dict.cc": [4455], "employerview.ofsted.gov.uk": [19456], "t.webtracker.jp": [18165], "legal.yandex.com": [18651], "h.atdmt.com": [10360], "www.dealnews.com": [4261], "secure.blood.co.uk": [2115], "prepaid.onlinesbi.com": [11873], "proxybay.la": [16227], "basemap.stanford.edu": [15383], "www.kmpt.nhs.uk": [10913], "rating-widget.com": [13576], "*.youversion.com": [18710], "readings.owlfolio.org": [12179], "wgo.mmstat.com": [10477], "www.climatecentral.org": [3265], "maxcdn.bootstrapcdn.com": [2217], "awin1.com": [4486], "tunnelsup.com": [19705], "amstelveen.nl": [11132], "www.encryptallthethings.net": [5236], "printmojo.com": [13067], "kariera.hofer.si": [299], "*.tradenetworks.com": [16638], "www.geekify.com.au": [6504], "moonpig.com": [10578], "static.pressable.com": [13036], "rugby.gov.uk": [14027], "www.nic.cz": [11379], "www.gixen.com": [6693], "emu.freenetproject.org": [6181], "www.insidecelebs.com": [8168], "sundance.tv": [19638], "minfil.org": [10403], "discuss.synapsepay.com": [19650], "www.kantarainitiative.org": [8787], "hpcloud.com": [7091], "hereford.greenparty.org.uk": [6925], "eus-www.sway-cdn.com": [15680], "images.newrepublic.com": [11309], "modulus.io": [10527], "wa103.teamviewer.com": [16004], "www.doncaster.engagedoncaster.co.uk": [5261], "*.helpdocsonline.com": [7308], "www.dcsec.uni-hannover.de": [17168], "assetweb.psc.gov": [19525], "www.dyson.co.uk": [4837], "orchid.hosts.jhmi.edu": [8436], "reut.rs": [1920], "www.fxphd.com": [6290], "hamptons.curbed.com": [3926], "campamentos.unizar.es": [17356], "ui.tescoassets.com": [16135], "www.lexity.com": [9280], "tradelab.fr": [16642], "3c.m.tmall.com": [19684], "forums.catalysttg.com": [2898], "vision.gel.ulaval.ca": [17229], "staging.piwik.org": [12733], "blackboard.ncl.ac.uk": [10884], "kantarainitiative.org": [8787], "npower.com": [11543], "mathiasbynens.be": [10069], "*.ethn.io": [5384], "uproxy.org": [17012], "*.cdn.office.net": [11744], "*.eetimes.com": [4907], "api.clever.com": [3238], "www.rememberthemilk.jp": [13758], "i6.walmartimages.com": [17965], "www.virginiamason.org": [17739], "*.e-junkie.com": [4852], "*.mmixr.com": [10476], "americanancestors.org": [937], "a1000words.com": [383], "embed.wakelet.com": [17953], "www.ringrevenue.com": [13892], "cdn.thejournal.ie": [16224], "gp2x.de": [6369], "forum.bittiraha.fi": [2022], "www.sedo.com": [14542], "ras.jpl.nasa.gov": [10869], "govwaste.co.uk": [6869], "prstatics.com": [12294], "gridcoin.us": [6950], "blog.malcovery.com": [9922], "*.filmdates.co.uk": [5809], "www.beeldengeluid.nl": [1748], "*.healthcare.gov": [7261], "www.nces.ed.gov": [4889], "banners.8ch.net": [203], "piwik.piraten-schwaben.de": [12716], "hiring.monster.com": [10564], "www.modmypi.com": [10512], "help-ja-jp.nike.com": [11401], "www.scepsis.ru": [14344], "www.storebrand.no": [15494], "*.wolfram.com": [18396], "*.eager.io": [5005], "anonabox.com": [1044], "*.vogel.de": [17818], "vpp.itunes.apple.com": [1120], "dpmbapps.lowes.com": [9636], "www.dentistry.osu.edu": [11760], "volgistics.com": [17828], "hardenedbsd.org": [7204], "*.viepratique.fr": [17706], "www.likeyed.com": [9351], "ssl.drgnetwork.com": [4079], "staging.syncplicity.com": [15730], "www.securityheaders.io": [14534], "www.verifiedvoting.org": [17620], "chnm.gmu.edu": [6544], "www.delta.no": [4337], "blogs.uw.edu": [17077], "shmoocon.org": [14709], "*.bookware3000.ca": [19012], "developer.musixmatch.com": [10723], "billingproxy.enaza.ru": [5230], "salon.com": [14253], "*.pg.com": [13121], "cf6.100r.org": [9], "pccu.edu.tw": [12220], "www.netcompetition.org": [11175], "mobilitaet2050.vcd.org": [17474], "mobile.1und1.de": [68], "online.contractsfinder.businesslink.gov.uk": [2460], "www.linkomanija.net": [9377], "mentor.ieee.org": [7713], "*.oracleoutsourcing.com": [12083], "www.whoisology.com": [18261], "forum.porteus.org": [12937], "apps.uat.splash.riverbed.com": [13907], "iq.adtechus.com": [639], "desjs.zamimg.com": [18782], "www.digi77.com": [4471], "www.mixbit.com": [10464], "mit150.mit.edu": [9749], "diaspora.subsignal.org": [15567], "www.padlet.com": [12325], "tml.osu.edu": [11760], "www.euromail.se": [16091], "dudle.inf.tu-dresden.de": [15871], "blablacar.fr": [2035], "thinglinkblog.com": [16357], "corp.zaif.jp": [18780], "ad.crwdcntrl.net": [9613], "schoolforge.net": [14363], "baja.osu.edu": [11760], "forum.susliving.org": [15663], "animallaw.info": [1023], "*.moonfruit.com": [10579], "hackinthebox.org": [7154], "*.lurkmo.re": [9673], "login.qt.io": [13315], "auth.vt.edu": [17740], "www.vagrantcloud.com": [17528], "linuxaudio.org": [9428], "www.assemble.me": [1279], "funoverip.net": [19204], "gradsch.osu.edu": [11760], "lillypad.lilly.com": [5163], "zenfolio.com": [18827], "c.kum.com": [9035], "shop.wwf.ch": [19768], "www.dwarffortresswiki.org": [4814], "publish.omniture.com": [11803], "wooconf.com": [18415], "www.privateinternetaccess.com": [13097], "www.freesoundeffects.com": [6132], "*.blogcatalog.com": [2100], "www3.smartadserver.com": [14982], "coverartarchive.org": [3728], "capita.bathnes.gov.uk": [1689], "prezident.sk": [14972], "vip.jd.com": [8423], "export.delicious.com": [4328], "blogburst.com": [4343], "files.edx.org": [5070], "ad.ipredictive.com": [8347], "*.meetrics.com": [10218], "eticketing.co.uk": [16421], "bttrack.com": [2384], "twitcasting.tv": [16886], "wdc-cmp01.mollom.com": [10537], "mecca.ca": [5119], "rainforestrescue.sky.com": [14924], "www.syslog-ng.org": [15754], "www.sfa.osu.edu": [11760], "vistumbler.net": [13544], "rimg06.rl0.ru": [13914], "www.defcon.org": [4305], "floridatoday.com": [5943], "www.huk.de": [7117], "slough.gov.uk": [14971], "zanox.com": [18787], "www.aimpulse.com": [743], "cdon.eu": [2562], "www.wpveda.com": [18470], "www.posten.se": [12968], "rutlandcounty.moderngov.co.uk": [19405], "www.focuscamera.com": [5975], "chronicle.com": [3122], "www.peercraft.com": [12519], "clear.com": [3229], "ch.godaddy.com": [6773], "www.uniformwares.com": [17186], "sfa.osu.edu": [11760], "www.genomicseducation.hee.nhs.uk": [10913], "trac.ffmpeg.org": [5565], "annett.piware.de": [10034], "www.rapidleaf.com": [13556], "nccam.nih.gov": [11052], "cupid.com": [3920], "www.iis.net": [7741], "hofer.at": [299], "localist.com": [9541], "a3-images.myspacecdn.com": [10848], "*.bankoftaipei.com.tw": [1645], "www.krystal.info": [19342], "forum.kimsufi.com": [8892], "*.hailguardian.com": [7165], "owenservices.com": [12177], "www.getdropbox.com": [4768], "debian.org": [4275], "awsinsider.net": [375], "www.ministerialtidende.dk": [10426], "service.wienit.at": [18284], "confianzaonline.es": [3568], "www.youtube.co.ae": [18709], "photos.travelblog.org": [16690], "brendaneich.com": [2301], "beyondsecurity.com": [1832], "dev.sourcefabric.org": [15180], "kontoapi.de": [8982], "usyd.edu.au": [19723], "portal.bobcares.com": [2172], "login.dotomi.com": [4702], "www3.gotomeeting.com": [6787], "guarantorusloans.co.uk": [6998], "plantronics.com": [12780], "volume.itunes.apple.com": [1120], "gigamon.com": [6649], "*.sitemasonmail.com": [14881], "pki.google.com": [6834], "style.codeforamerica.org": [3359], "5vpn.net": [179], "www.martineve.com": [10033], "giblod.no": [6634], "www.envoymediagroup.com": [5311], "help.skrill.com": [14919], "gdata.it": [6293], "premier.fortiguard.com": [6055], "www.bike24.de": [1871], "www.youtube.ng": [18709], "passport.yandex.com": [18651], "www.tv.yandex.by": [18648], "lbo-news.com": [18428], "emsonline.eastriding.gov.uk": [5015], "*.forums.sabnzbd.org": [14215], "forum.zentyal.org": [18834], "www.klinikum.uni-heidelberg.de": [17174], "bernardportal.axosoft.com": [1477], "www.walletgenerator.net": [17962], "www.codebeamer.com": [3348], "swww22.glam.com": [6697], "forum-en.msi.com": [9792], "zylon.net": [18930, 18931], "data.aad.gov.au": [1382], "www.elitekeyboards.com": [5166], "www.doclerholding.com": [4619], "lego.com": [9068], "maps.halton.gov.uk": [19236], "www.qrz.com": [13313], "s-eu.thebrighttag.com": [2325], "iraaa.org": [7811], "weisf.essex.gov.uk": [5365], "*.secure-payment-processing.com": [14483], "*.ipower.com": [7794], "www.bamsoftware.com": [1635], "tcsm.creatavist.com": [3770], "www22.glam.com": [6697], "jobs.calderdale.gov.uk": [2735], "www.webgility.com": [18118], "*.avo.gov.au": [1404], "pathologyservices.wustl.edu": [17993], "justseed.it": [19329], "shop.oracle.com": [12082], "openswan.org": [12046], "*.cloudhexa.com": [3305], "action.dccc.org": [4014], "pooi.tk": [3533], "strato-pro.com": [14194], "question-defense.com": [13355], "www.weoinvoice.com": [18202], "*.fundageek.com": [6259], "www.sadecehosting.com": [14221], "www.centili.com": [2952], "www.koinify.com": [8957], "www.spring.org.uk": [15304], "static.hupso.com": [7625], "www.veggiekarte.de": [19731], "www.tilburguniversity.nl": [16445], "www.alertonline.nl": [791], "divitup.com": [4579], "b6.yahoo.co.jp": [18640], "*.crimethinc.com": [3797], "surespot.me": [15646], "www.telekom-profis.de": [16085], "intelligence.house.gov": [17027], "vidling.com": [17712], "www.gyft.com": [7036], "charity.acnc.gov.au": [263], "foreninger.canaldigital.dk": [2803], "www.buzzhosting.org": [2480], "idp.micropolia.com": [10349], "*.euroflorist.no": [5407], "portal.iitb.ac.in": [7744], "hub.jhu.edu": [16296], "www.mailgun.net": [9885], "give.stanford.edu": [15383], "www.vivaldi.net": [17797], "xkcd.com": [19786], "www.crowdjustice.co.uk": [3821], "www.tuftsgiving.org": [16819], "pantherportal.cdnetworks.com": [2560], "iraiser.eu": [8353], "www.amiga.adage.com": [3758], "community.spot.im": [15293], "olat.skolaonline.cz": [19598], "viz.polleverywhere.com": [12880], "blog.sigfig.com": [14774], "engine.trklnks.com": [16754], "spreadshirt.ie": [15300], "ccc.berkeley.edu": [17240], "rockhursthawks.com": [13941], "prod.idrix.fr": [7708], "*.arm.com": [340], "static1.readyflowers.com": [13620], "secure.momentusmedia.com": [10538], "adxpansion.com": [545], "uberads.com": [17086], "spreadshirt.it": [15300], "dejure.org": [4321], "teachingexcellence.mit.edu": [9749], "citizensforscience.org": [3175], "associatie.kuleuven.be": [8816], "cointrader.net": [3411], "www.nikhef.nl": [11402], "www.delicious.com": [4328], "www.voicestar.com": [9984], "508surveys.com": [168], "express.co.uk": [4110], "radioshack.com": [13515], "merlinux.eu": [10285], "rnl.ist.utl.pt": [16033], "stayfriends.at": [15444], "recettes.univers-libre.net": [17226], "segpay.com": [14556], "*.miles-and-more-kreditkarte.com": [10394], "publicaccess.barnet.gov.uk": [18982], "portalen.dtu.dk": [16031], "metrics.extremetech.com": [5530], "www.thecustomizewindows.net": [19675], "ripe67.ripe.net": [13895], "wb.mysql.com": [10780], "sapseod.mindtouch.us": [10410], "stats.economist.com": [5060], "api.maillift.com": [9877], "blekko.com": [2066], "qualaris.com": [13327], "opentrackers.org": [12048], "s.wldcdn.net": [17913], "*.sharethrough.com": [14680], "www.spyderco.com": [15326], "git.coderouge.co": [3375], "x-cart.com": [18494], "logs.spatialbuzz.com": [15230], "tivi.de": [19800], "bournetocode.com": [2250], "www.ems-ph.org": [5222], "wlogin.icq.com": [7690], "wearechoosy.com": [1186], "ssl.ptlogin2.qq.com": [13285], "www.finnchristiansen.de": [5850], "owncloud.com": [12181], "transmarine.org": [16661], "s.zst.com.br": [18915], "www.prometric.com": [13152], "checkout.adultshopping.com": [644], "blicko.com": [2072], "*.wsjpro.com": [11320], "webmail07.register.com": [13732], "theleanstartup.com": [16198], "taobao.com": [15952], "ita.hsr.ch": [17236], "redmine.darktable.org": [4154], "store.virginmedia.com": [17737], "foia.fbi.gov": [5708], "www.mysitemyway.com": [10845], "www.polleninfo.org": [12883], "forum.vodafone.de": [17814], "www.visn2.va.gov": [17019], "www.embeddedarm.com": [5198], "asset-e.soupcdn.com": [15167], "www.re-publica.de": [13597], "www.inventhelp.com": [8313], "log.otaserve.net": [19470], "api.stevesie.com": [15471], "*.tweetreach.com": [16871], "ekmpowershop.com": [5132], "srs.synology.com": [15738], "www.vdownloader.com": [17479], "www.vadino.com": [19727], "www.mythicalcreatureslist.com": [10851], "findababysitter.com.au": [5835], "careers.jazz.co": [8536], "*.realrobothigh.com": [13628], "hizliresim.com": [7433], "www.lovefood.com": [9631], "lv.foursquare.com": [6082], "domaintank.hu": [4665], "be.redhat.com": [13675], "sportisimo.de": [14158], "fbsbx2q4mvcl63pw.onion": [5621], "niceadminreview.web.cern.ch": [2575], "retrousb.com": [13828], "community.wbgames.com": [3502], "img07.rl0.ru": [13914], "mobile.learnerview.ofsted.gov.uk": [19456], "sivers.org": [14888], "*.chessbase.com": [3069], "ezinearticles.com": [5538], "fang.taobao.com": [15952], "blog.peopleschoice.com": [18428], "prod6.magentohotel.dk": [9853], "www.techempower.com": [16009], "forum.ovh.cz": [12173], "www.bircko.com": [1911], "creare.co.uk": [3769], "skat.dk": [14897], "www.wetransfer.com": [18025], "www.plumbr.eu": [12827], "trac.aircrack-ng.org": [18948], "i1.gmx.com": [6350], "www.imo.im": [8008], "sigterm.no": [14783], "optimizely.com": [12073], "www.ticketea.com": [16419], "familie.rh.aok.de": [317], "www.ruc.dk": [13971], "jipiao.alitrip.com": [818], "www.mapillary.com": [9971], "bekb.ch": [19333], "illinoistech.org": [7967], "www.sendpepper.com": [14578], "www.netdoktor.se": [11223], "plugins.serverdensity.com": [14614], "www.gwrymca.org": [7031], "deciduouspress.com.au": [4282], "images2.q8car.com": [13278], "my.edinburgh.gov.uk": [5084], "forum.transmissionbt.com": [16676], "msb.sbi.co.in": [14082], "enrol.norfolk.gov.uk": [19436], "macpaper.com": [9704], "www.tgthr.com": [16166], "photos-a.ak.fbcdn.net": [5700], "wwwd.amd.com": [925], "www.androidpolice.com": [1007], "corp.riyadonline.com": [13910], "www.adaptivecomputing.com": [558], "www.buch.ch": [16171], "www.kbc.com": [8709], "blog.cir.ca": [3153], "www.cihr.eu": [2603], "getmeadow.com": [6598], "www.rackspace.com": [13501, 13506], "blogmaverick.com": [18428], "www.post-gazette.com": [12948], "condor.de": [3561], "hilfe.vodafone.de": [17814], "extranet.fkl.fi": [5831], "cardiff.moderngov.co.uk": [19405], "commercecentral.lexity.com": [9280], "www.dexmedia.com": [4434], "cdn.emilstahl.dk": [5208], "gemeentenoordenveld.nl": [11132], "www.sysaid.com": [15747], "office.com": [11743], "people.stanford.edu": [15383], "support.privatelayer.com": [13098], "feedpress.me": [5735], "a.triggit.com": [16734], "symbeta.symantec.com": [15715], "moderngiver.com": [10521], "www.forgefields.com": [6036], "*.9gag.com": [212], "odmenazadobiti.cz": [16076], "girlscouts.org": [6666], "123rf.com": [25], "*.rrts.com": [13450], "just-eat.be": [19328], "uni.yandex.com.tr": [18649], "cloud.ihme.washington.edu": [17290], "bugtracker.rsbac.org": [13455], "photo.cypouz.com": [3987], "blogs.hopkins-interactive.com": [7494], "nfsec.pl": [10906], "contacts.live.com": [9483], "agency.brassring.com": [19017], "store.jfklibrary.org": [8432], "www4.va.gov": [17019], "blogs.akamai.com": [761], "demo-res.cloudinary.com": [3307], "lists.ocaml.org": [11612], "webfonts.fonts.com": [5993], "thewallacecenter.rit.edu": [13434], "www.blacksuitit.com": [2040], "*.performgroup.com": [12565], "cdon.no": [2562], "medialayer.net": [10156], "farmaciforbundet.se": [5663], "alumni.brunel.ac.uk": [19021], "photos-e.ak.fbcdn.net": [5700], "titania.com": [16501], "thecthulhu.com": [16334], "*.staples.com": [15388], "www.lfov.net": [9076], "sgcdn.startech.com": [15395], "www.aat-net.de": [844], "www.do-it.org": [4609], "iam.hhs.gov": [7062], "www.sehirfirsati.com": [14562], "dreamhost.com": [4748], "www.freeporngif.com": [6145, 6146], "technologyreview.com": [16041], "zugaina.org": [18919], "voyagegroup.com": [17859], "*.carepackage.org": [2516], "wmjobs.co.uk": [17915], "ideas.pardot.com": [12398], "edri.org": [4898], "www.bitgamer.su": [1996], "www1.sunybroome.edu": [2365], "*.crowdfactory.com": [3818], "www.songkick.com": [19609], "premier.dell.com": [4335], "www.ras.org.uk": [13992], "*.hochschule-trier.de": [7442], "my.nyi.net": [10993], "www.hosting.cz": [18938], "www1.cnsi.ucla.edu": [17241], "www.obi.de": [19452], "kirkusreviews.com": [8917], "lotro.mail.ru": [9874], "infobox.ru": [8107], "theory.stanford.edu": [15382], "www.100fans.de": [10], "search.secondlife.com": [14462], "pirateparty.org.au": [12713], "*.gandi.net": [6451], "latex-project.org": [9116], "www.bit-sentinel.com": [1919], "*.hostelworld.com": [18042], "ems.staffordshire.gov.uk": [15370], "bitbucket.org": [1926], "*.calchamer.com": [2726], "*.wire.com": [18360], "inphi.com": [8157], "mvn.tocco.ch": [16524], "computerandvideogames.com": [6281], "orange.co.il": [12088], "widget.barnebys.com": [1676], "whamcat.com": [18226], "cyanogenmod.org": [3954], "glenscott.net": [6706], "lcamtuf.blogspot.*": [2113], "www.sjd.net": [8631], "www.megapath.com": [10229], "abs.twimg.com": [16877], "ntsb.gov": [11086], "*.uwinnipeg.ca": [17079], "booking.clickvoyage.ru": [3253], "twf.wales.gov.uk": [17957], "www.theticketfactory.com": [16416], "www.liveperson.com": [9494], "www.star-pool.com": [15390], "registration.cesnet.cz": [2585], "www.primedice.com": [13060], "s.w.org": [17885], "flsenate.gov": [19186], "udk.com": [16946], "www.securesuite.co.uk": [13452], "*.cad-comic.com": [3904], "shop.jolla.com": [8622], "www.gearhog.com": [6486], "www.geti2p.net": [6593], "www.uniregistry.com": [17196], "portal.erp.ohio-state.edu": [11761], "community.obi.de": [19452], "edu.cookingschools.com": [3636], "www.atechmedia.com": [368], "sumac.stanford.edu": [15383], "arlen.io": [1200], "dada.cs.washington.edu": [17291], "switch.co": [15700], "gpugrid.net": [6374], "lists.ciphershed.org": [3151], "mathjobs.org": [10070], "result.cntraveler.com": [3555], "itunes.osu.edu": [11760], "www.haarlemmermeer.nl": [11132], "*.orkut.com": [12110], "worldcommunitygrid.org": [18447], "visualsonline.cancer.gov": [2805], "sslstatic.wix.com": [18383], "login.beckerproxy.wustl.edu": [17993], "picshareunit.com": [12668], "progressreport.cancer.gov": [2805], "dap.digitalgov.gov": [4489], "www.dafdirect.org": [4102], "textpad.com": [16158], "magro.nikhef.nl": [11402], "pages.kiva.org": [8926], "www.media.mit.edu": [9749], "*.up0.net": [17379], "networksolutions.com": [11263], "indymedia.org": [8085], "www.isy.liu.se": [9084], "tmall.hk": [16513], "www.fusion.net": [18428], "pgp.com": [12245], "www.macmillandictionary.com": [9832], "swt.com": [14209], "librivox.org": [9318], "walderwyss.com": [17956], "help.sixapart.com": [14889], "mykplan.com": [270], "www.myitworksevents.com": [10807], "www.zazzle.com": [18804], "openaccess.bournemouth.gov.uk": [2251], "hotelmangaby.com": [7552], "www.o2.co.uk": [16076], "www.gratisoft.us": [6897], "www.ribblevalley.gov.uk": [13865], "morethantwo.com": [10586], "tools.taskcluster.net": [15968], "awards.indexoncensorship.org": [8059], "www.schiphol.nl": [14353], "www.rubyforge.org": [14019], "caniusepython3.com": [2790], "*.wolrdssl.net": [18402], "askf5.f5.com": [5546], "personforce.com": [12586], "b2b.amoena.us": [979], "*.dennogumi.org": [19110], "s2.jrnl.ie": [19326], "109.201.146.247": [18607], "stavropol.rt.ru": [13469], "verigames.com": [17621], "secure.extensis.com": [5523], "cds1.yospace.com": [18698], "tehconnection.eu": [16062], "bitmazk.com": [2006], "logasnet.communities.gov.uk": [19073], "www.icez.net": [7917], "yandexadexchange.net": [18658], "racetohealth.co.uk": [13492], "www.mauivaaircruise.com": [10084], "www.psy.ulaval.ca": [17229], "*.tyndall.ie": [16906], "go2.microsoft.com": [10364], "s1.linkvp.com": [17782], "tools.google.com": [6834], "export.yandex.com.tr": [18649], "media.monster.com": [10564], "www.cru.fr": [3829], "www.kr36.co": [9003], "www.secure-resumption.com": [14484], "www.dutchbulbs.co.uk": [4812], "www.pabo.nl": [12306], "www.mandrillapp.com": [9946], "quantifiedcode.com": [13338], "browser.yandex.kz": [18652], "*.quoracdn.net": [13375], "coe.int": [3701], "login.umd.edu": [17263], "*.emsisoft.com": [5223], "www.majesticseo.com": [9898], "www.tampermonkey.net": [15939], "shangjia.tmall.com": [19684], "maps.cheshire.gov": [3064], "ld-3.itunes.apple.com": [1120], "revstr.com": [13851], "www.ticketweb.co.uk": [16421], "www.fedoramagazine.org": [5728], "youtube.com.gh": [18709], "bill.ccbill.com": [2534], "*.carleton.edu": [2853], "helpdesk.easyspace.com": [5035], "www.quackquackgo.nl": [13320], "dynadot.com": [4824], "collection.bnz.co.nz": [1534], "wiki.schokokeks.org": [19570], "www.banym.de": [1659], "b1.raptrcdn.com": [19533], "pharmgradprograms.usc.edu": [17278], "releases.flowplayer.org": [5948], "www.hackertarget.com": [7145], "meeting.zoho.com": [18884], "piwik.mutantbrains.com": [10727], "www.isalo.org": [8364], "www.brandensittich.de": [2282], "www.pathdefender.com": [12452], "p.simg.uol.com.br": [16998], "www.ovh-hosting.fi": [12173], "testnet.bitmex.com": [1935], "ereceptionist.co.uk": [4951], "sflogo.sourceforge.net": [15174], "patchofland.com": [12447], "www.secure.avahost.net": [1436], "spark.bazaarvoice.com": [1708], "kcvids.com": [8715], "kde-files.org": [19461, 19462], "*.sellaband.com": [14569], "bs.mail.ru": [9874], "www.email-lists.org": [5191], "supportforums.blackberry.com": [2050], "spcs.stanford.edu": [15383], "www.bof.nl": [1537], "informationsecurity.wustl.edu": [17993], "docstoc.com": [4622], "renewals.symantec.com": [15715], "whatdotheyknow.com": [18230], "zorrovpn.com": [18910], "cdn.jariangibson.com": [8521], "www.hostingcatalog.com": [7533, 7534], "www.cryptrader.com": [3840], "www.office365.com": [11745], "www.measuredvoice.com": [2824], "blottr.com": [2125], "aldi.ie": [299], "www.msnbc.com": [9797], "nazwa.pl": [11117], "oraweb.web.cern.ch": [2575], "www.appharbor.com": [1107], "benchmarkdevelopment.mitre.org": [10459], "sigdet.nu": [14776], "ziplist.com": [18874], "www.myvolunteerpage.com": [17834], "backoffice.cdn.arkena.com": [1198], "www.zohocorp.com": [18885], "vimention.com": [17716], "www.jsna.portsmouth.gov.uk": [19508], "wap.dating.sxnarod.com": [14640], "linuxslut.net": [9436], "moderngov.halton.gov.uk": [19236], "*.tenderapp.com": [4933], "cryptovpn.me": [19094], "s3.www.universalsubtitles.org": [17227], "download.teamviewer.com": [16004], "art.stanford.edu": [15383], "search.vuze.com": [17879], "st7.gismeteo.ru": [6669], "www.charitynavigator.org": [3009], "dnsleaktest.com": [4068], "www.mpetroff.net": [10082], "northclicks.com": [11494], "auth.mayday.us": [10104], "www.eurodiet.co.uk": [5411], "www.mahoneshomedecor.com": [9866], "secure.nationaljournal.com": [1316], "*.golf2go.net": [1506], "e-boks.dk": [4848], "earthsystems.stanford.edu": [15383], "media.corp.whiskeymedia.com": [18244], "*.iinet.net.au": [7958], "jingzhi.jd.com": [8423], "*.janrain.com": [8508], "www.creativelittlereaders.com": [3784], "ssum-sec.casalemedia.com": [2870], "greatdomains.com": [6906], "licensing.plymouth.gov.uk": [19500], "c.fsdn.com": [216], "www.completelyprivatefiles.com": [3523], "www.secular.org": [14472], "jappix.com": [8518], "clientservices.quinstreet.com": [13366], "groups.google.com.*": [6837], "next.co.uk": [11359], "www.le-vpn.com": [9189], "ticketcorner.ch": [16418], "dr.exactag.com": [5479], "voltaicsystems.com": [17833], "alliance.cisecurity.org": [2617], "oppo.com": [12060], "*.beatport.com": [1737], "portuguesbrasileiro.istockphoto.com": [19309], "bh.contextweb.com": [3616], "www.kattare.com": [8818], "*.boots.com": [2213], "www.itmb.nl": [7848], "ir.convio.com": [3629], "trial.resrc.it": [13599], "*.btdigg.org": [1570], "h5.taobao.com": [15952], "www.arsq.asso.ulaval.ca": [17229], "hg.debian.org": [4275], "att-i.shoebuy.com": [14714], "*.repost.us": [13786], "www.collectifstoptafta.org": [3422], "www.whitehouse.gov": [18251], "gcc.gnu.org": [6357], "kentcc.firmstep.com": [19183], "moechel.com": [10528], "www.comic-rocket.com": [3467], "asbestossafety.gov.au": [1243], "prolific.com.tw": [13147], "www.prace.cz": [13008], "www6.homedepot.com": [7469], "*.sysproserver.de": [19652], "www.waitrose.com": [17950], "*.vippy.co": [17730], "pao-pao.net": [12376], "nationalgeographic.com": [11080], "www.browser.yandex.kz": [18652], "pro.whitepages.com": [18257], "intuitivepassword.com": [8307], "lubswww.leeds.ac.uk": [17318], "m.legal.yandex.ua": [18656], "atagar.com": [1309], "www.nwswimshop.com": [11503], "math.williams.edu": [18316], "www.tradelab.fr": [16642], "www.os3.nl": [11663], "blog.sourcetreeapp.com": [15176], "support.alexa.com": [795], "www.rockhursthawks.com": [13941], "*.nature.org": [16202], "trust.jivesoftware.com": [8585], "kredyty-gotowkowe.money.pl": [10546, 10547], "everything4bet.net": [5456], "supporterz.jp": [15639], "www.barkbox.com": [1670], "www.studentgrantreview.acs.org": [929], "my.maximintegrated.com": [10096], "bitsapphire.com": [2016], "ciphershed.org": [3151], "archive.kororaproject.org": [8990], "*.copy.com": [3654], "os.uk": [11662], "je-s.rcuk.ac.uk": [13408], "alts.trade": [302], "xmlrpc2.mollom.com": [10537], "vogogo.com": [19740], "youtube.co.kr": [18709], "engemannshc.usc.edu": [17278], "ssl2.cdngc.net": [2560], "www.hypanova.com": [7642], "routingpacketsisnotacrime.uk": [19557], "www.projectslice.com": [14955], "kent.gov.uk": [8851], "homementors.com": [7472], "s4.mt-cdn.net": [9798], "roccat.org": [13931], "pullingladies.com": [12266], "bugs.php.net": [12250], "es.libreoffice.org": [9311], "www.blog.kaspersky.com": [8806], "info.drweb.com": [4783], "www.floatinghospital.org": [5934], "www.railsconf.com": [13528], "mochahost.com": [10507], "www.usb.org": [17035], "forum.icefilms.info": [7911], "*.firstcentralsb.com": [5867], "www.asecus.ch": [1249], "www.clic-study.org": [2623], "stat.onestat.com": [11844], "wireedit.com": [18361], "www.fontdeck.com": [5990], "tunnelbroker.net": [16834], "apollo.krystal.co.uk": [9024], "www.newclimateforpeace.org": [11302], "a1webstats.com": [221], "speakyweb.com": [15238], "behr.com": [1758], "res-3.cloudinary.com": [3307], "gentoo.wheel.sk": [18237], "my.turbobytes.com": [16837], "cas.fbm.vutbr.cz": [17522], "www.adweek.com": [672], "ecitizen.tameside.gov.uk": [19660], "scripts.cocubes.com": [3335], "*.hailstormproducts.com": [7165], "oculus.com": [11721], "lbre-apps.stanford.edu": [15383], "*.export.gov": [17027], "www.contentreserve.com": [19077], "*.fool.com": [10613], "cruzcat.ucsc.edu": [17305], "ma1.twimg.com": [16877], "12.191.21.228": [3430], "or.berkeley.edu": [17240], "cdn-sec.optmd.com": [12063], "hosting.0x539.de": [5], "*.ytimg.com": [18709], "blog.snipt.net": [15038], "www.vpstudentsblog.utoronto.ca": [17343], "www.jacoblangvad.com": [8488], "www.soundonsound.com": [15159], "bst7.gismeteo.ru": [6669], "cpsc.gov": [2649], "www.cip.ikea.com": [7959], "datalogix.com": [4202], "ipfs.com": [7791], "www.slov-lex.sk": [14972], "wwwcdn.channel5.com": [2998], "login.effectivemeasure.com": [5108], "www.appetize.io": [1115], "polylearn.calpoly.edu": [2747], "www.hexplo.it": [7382], "docs.maxcdn.com": [10091], "www.ticketdriver.com": [16415], "earlyyears.valeofglamorgan.gov.uk": [17532], "*.allyoucanarcade.com": [848], "www.n-somerset.gov.uk": [10857], "scottish-country-cottages.co.uk": [18490], "www.hackerrank.com": [7143], "gw.alicdn.com": [805], "pro.stubhub.de": [15534], "glassdoor.com": [6701], "mybenefits.aol.com": [321], "news.ycombinator.com": [7141], "www.website.ws": [18086], "www.tinychat.com": [16480], "www.duiven.nl": [11132], "mechon-mamre.org": [10136], "ivacy.com": [8398], "idp.aalto.fi": [390], "www.fonticons.com": [5991], "fast.animenewsnetwork.com": [18957], "sentineldiscussion.safenet-inc.com": [14227], "cartoons.osu.edu": [11760], "auth.demandbase.com": [4342], "gktw.org": [6686], "knightswarm.com": [8944], "support.tango.me": [15946], "www.cs.drexel.edu": [4758], "www.ikk-gesundplus.de": [7748], "domains.live.com": [9483], "parking.bedford.gov.uk": [18986], "securelogin.org": [14505], "www.hidekibin.hidekisaito.com": [7393], "www.netdev01.org": [11220], "engelschall.com": [5263], "meego.com": [10207], "forum.geizhals.de": [6511], "www.infinet.com.au": [8093], "*.vendetta-online.com": [17604], "defsounds.com": [4315], "info.tiki.org": [16444], "my.rethink.org": [19549], "phaser.io": [12616], "konami.com": [8974], "www.narodnipanel.cz": [19425], "wargaming.net": [17978], "goodsearch.com": [6830], "static.php.net": [12250], "organizer.gmx.com": [6350], "dirs.cis.rit.edu": [13434], "rdgate01.newark.ohio-state.edu": [11761], "gr.godaddy.com": [6773], "cdn.ch2.xfinity.com": [19784], "wizbangblog.com": [18388], "cache-www.linksys.com": [9382], "mega.nz": [10223], "imgrush.com": [8000], "info.thoughtworks.com": [16386], "pde.cc": [12581], "hostcenter.com": [2156], "www.barnebys.co.uk": [1675], "www.youtube.com.lv": [18709], "munzinger.de": [10706], "www.fukuchi.org": [6246], "*.bigdinosaur.org": [1861], "www.dynavision.de": [4833], "downstreamtoday.com": [4729], "www.ensigniamail.com": [5287], "gearworkstire.com": [6489], "www1c.medicare.gov": [19392], "www.youtube.com.lb": [18709], "*.actionkit.com": [491], "support.skype.com": [14938], "www.rossulbricht.org": [13972], "www.first.org": [5576], "p.raasnet.com": [13655], "*.redbullmobile.at": [13669], "srcclr.help": [15338], "*.fool.co.uk": [10613], "*.airbnb.es": [749], "kvm-vps.com": [8755], "saucelabs.com": [14303], "emailsrvr.com": [5193], "fybsg.com": [5612], "childrens.mycareinbirmingham.org.uk": [10802], "configuration.apple.com": [1120], "research.hks.harvard.edu": [7219], "www.springer-gabler.de": [15307], "formscentral.acrobat.com": [480], "whispersystems.org": [18247], "documentation.cpanel.net": [2653], "static.theadex.com": [16331], "www.bve.ulaval.ca": [17229], "downloads.mariadb.org": [9988], "filologiainglesa.unizar.es": [17356], "www.codeforamerica.org": [3359], "www.tfsprays.com": [15808], "www.ico.ee": [15936], "*.anonymous-proxy-servers.net": [8623], "erdt.plymouth.ac.uk": [12833], "new.1lotstp.com": [44], "site.ya.ru": [18626], "forum.syncthing.net": [15732], "apps.lincolnshire.gov.uk": [9363], "gsfn.us": [6991], "www.rca.org": [13403], "a.rad.msn.com": [9796], "www.digicert.com": [4473], "axelsimon.net": [1471], "addons.opera.com": [12050], "steamcommunity.com": [15451], "content.newegg.com": [11316], "www.freeunlocks.com": [6133], "www.nc.me": [10878], "adminer9.vas-hosting.cz": [19729], "nick.30boxes.com": [99], "www.mbusa.com": [9724], "my.milton-keynes.gov.uk": [10401], "www.geocaching.com": [6541, 6542], "billettservice.no": [16421], "www.ao2.it": [1083], "andover.edu": [12623], "www.revbens.manchester.gov.uk": [9944], "www.sciencedaily.com": [14377], "perimetertrail.stanford.edu": [15383], "mano.tele2.lt": [16069], "analytics.performable.com": [12566], "cimbniaga.com": [2605], "*.launchpad.net": [9169], "*.infinity-tracking.net": [8095], "vpnreviewer.com": [17508], "www.westlandutrecht.nl": [18217], "mitmproxy.org": [10457], "stijl.kuleuven.be": [8816], "www.alt.ac.uk": [1295], "bitbay.net": [1924], "www.gnome-help.org": [19461], "mauivaaircruise.com": [10084], "outlook.com": [12153], "biomechanics.osu.edu": [11760], "barnesjewish.org": [1677], "footlocker.ca": [6009], "www.woodtreeswing.com": [18420], "b-link.bucknell.edu": [2387], "assets.gusto.com": [7027], "hailstormproducts.com": [7165], "www.evdrive.com": [4984], "asmp.org": [947], "www.nativo.net": [11092], "www.xagyl.com": [18500], "btwholesale.com": [1578], "www.defensetravel.dod.mil": [17028], "www.spring.io": [15303], "www.elsevierhealth.com.au": [5186], "www.howtoforge.de": [7575], "a.tumblr.com": [16826], "applications.contactatonce.com": [3607], "www.quitter.se": [13371], "geoportal.statistics.gov.uk": [19625], "fakedomains.accessnow.org": [447], "maps.telford.gov.uk": [19669], "cache.lifehacker.com": [9331], "learn.websecurify.com": [18146], "www.fstoppers.com": [6239], "applyweb.com": [1129], "www.ertos.nicta.com.au": [10922], "adbuyer.com": [566], "www.vpnreviewer.com": [17508], "tokyo-tosho.net": [16537], "sfederation.intel.com": [8209], "hostinglabs.pe": [7530], "wineaustralia.com": [18351], "blog.zencoder.com": [18820], "www.digitalcourage.de": [4503], "morals.ias.edu": [7669], "diplomaframe.com": [3129], "images.brightidea.com": [2330], "cf.komo.com": [8740], "www.domainmarket.com": [4654], "massrelevance.com": [10048], "servers.opennicproject.org": [19466], "my.phone.coop": [12635], "allyours.virginmedia.com": [17737], "*.aboutads.info": [423], "www.stubhub.co.uk": [15534], "www.register.bg": [13731], "points.yahoo.co.jp": [18640], "www.identrustssl.com": [7935], "clicktoverify.truste.com": [15856], "elstatic.weborama.fr": [18138], "edas.info": [5073], "www.mycommerce.com": [10753], "swissreg.ch": [15696], "www.silabs.com": [14788], "*.apwg.org": [1066], "adm.leeds.ac.uk": [17318], "slovari.yandex.ua": [18656], "*.rejseplanen.dk": [13749], "*.hetzner.de": [7376], "www.soundslice.com": [15165], "foldingcoin.net": [5983], "assets.thump.vice.com": [17667], "education-stage.oracle.com": [12082], "*.simmarket.com": [14807], "content.developer.mashery.com": [10046], "domain.de": [4649], "s3.chuug.com": [3130], "blogs.kent.ac.uk": [17317], "mbs.microsoft.com": [10364], "*.slsp.sk": [14974], "www.gacollege411.org": [6304], "acp.stanford.edu": [15383], "workwithcolor.com": [18438], "claimconnect.net": [4894], "www.cmswire.com": [2629], "unknowncheats.me": [17357], "testdrive.alfresco.com": [802], "afisha.mail.ru": [9874], "www.777coin.com": [188], "maxkitap.com": [10094], "*.www.freelancer.co.uk": [6176], "www.ovh.cz": [12173], "bovpg.net": [2252], "learning.ausport.gov.au": [1400], "www.moodle.net": [10574], "ttv.tv2.dk": [15880], "*.musiciansfriend.com": [10718], "www.odoo.com": [11727], "www.tiaa-cref.org": [15816], "dmesg.gr": [4598], "rivals.n.rivals.com": [19553], "cubplat.bidsystem.com": [3910], "quickline.com": [19530], "redirect.1and1.co.uk": [53], "juniperresearch.com": [8681], "corporate.eastsussexlearning.org.uk": [19144], "www.csirt.cz": [2672], "metrica.yandex.by": [18648], "m-pindemo.certivox.org": [2966], "www.schnellno.de": [14361], "www.art.com": [1219], "mail.dielinke-sachsen.de": [4459], "now.eloqua.com": [5178, 5179], "speedppc.com": [15253], "lth.se": [9104], "cmascenter.org": [2625], "orioninc.com": [12109], "www.sebastianwick.net": [14456], "*.squarefree.com": [8556], "bitlendingclub.com": [1934], "www.aaronbrotherscircular.com": [393], "assets2.vzaar.com": [17883], "m.fotki.yandex.by": [18648], "www.sitecontrol.us": [14877], "paste.fedoraproject.org": [5726], "factiva.com": [11321], "www.pviq.com": [13260], "unbound.nlnetlabs.nl": [10941], "app.syspectr.com": [15757], "kapiton.se": [8789], "skipscreen.com": [15203], "swapspace.net": [15678], "artsinstitute.stanford.edu": [15383], "www.nccgroupdomainservices.com": [10881], "www.opensource.com": [12044], "www.campaign.cam.ac.uk": [17243], "centennialbulb.org": [9510], "p2p.chbtc.com": [3036], "*.hhmi.org": [7572], "w.sunybroome.edu": [2365], "eindhoven.cr.yp.to": [3748], "store.theonion.com": [11861], "sbiapp.sbi.co.in": [14082], "cdnstage.lynda.com": [9682], "paf-spsu.web.cern.ch": [2575], "www.lumesse.com": [9663], "*.visa.com": [17761], "hs.fi": [7312], "wiki.mumble.info": [10702], "www.leaderlandnews.com": [9200], "ads2.where.com": [18238], "shadowofmordor.com": [14654], "consumeraffairs.com": [3599], "localmotors.com": [19369], "jdi.na.ro.vutbr.cz": [17522], "whonix.org": [18266], "www2.polskieradio.pl": [12887], "new.edit.bulkorder.ftc.gov": [5720], "developerbugs.linuxfoundation.org": [9412], "ajax.googleapis.com": [6839], "www.muut.com": [10735], "*.brooklinecollege.edu": [2363], "*.startssl.eu": [15407], "www.cyph.com": [3982], "www.filenuke.com": [5792], "strato-hosting.co.uk": [14192], "siteblindado.com": [14876], "services.bostonglobe.com": [16251], "hometab.boldchat.com": [2187], "binaries.mpc-hc.org": [19412], "fiksu.com": [5787], "0x41.no": [4], "www.opensc-project.org": [11968], "broadcom.com": [2355], "www.elburg.nl": [11132], "supportapj.dell.com": [4335], "oip.sc.egov.usda.gov": [17209], "www.eforms.gov.ie": [19150], "www.voxmedia.com": [17852], "verizonbusiness.com": [17626], "www.boxuk.com": [2255], "www.sanet.me": [14077], "minimed.wustl.edu": [17993], "sig.ias.edu": [7669], "mork.no": [10592], "www.jamtrackcentral.com": [8499], "dero.dict.cc": [4455], "partners.xhamster.com": [18515], "cda.nl": [10935], "www.click4assistance.co.uk": [3242], "www.macromedia.com": [9833], "stats.ox.cx": [7641], "wtfuzz.com": [17932], "www.nae.edu": [11075], "services.social.microsoft.com": [10364], "keksbude.net": [8842], "emeajobs.oracle.com": [12082], "www.acunetix.com": [507], "service.nemid.nu": [11142], "fass.se": [5669], "tiles.cdnst.net": [2557], "hadrons.org": [7161], "www.adsonar.com": [539], "linuxmonk.ch": [9433], "settrade.com": [14634], "static.prsa.pl": [12293], "era.nih.gov": [11052], "blog.recurly.com": [13652], "hkn.de": [7079], "service.govdelivery.com": [6863], "*.marktplaats.nl": [19385], "www.posteshop.it": [12966], "nabconnect1.nab.com.au": [10865], "cryptomator.org": [3878], "scaleway.com": [14328], "hypem.com": [7643], "thegrandtheatre.com": [16283], "*.powerhousemuseum.com": [13001], "help.basespace.illumina.com": [7968], "www.memphiscourtside.com": [10253], "effectivemeasure.com": [5108], "ethereum.org": [5379], "giganews.com": [6650], "wrapbootstrap.com": [18471], "pubdash.q1media.com": [13275], "www.timeinc.net": [16460], "renew.acs.org": [929], "www.woahh.com": [18394], "paddleapi.com": [12324], "docs.synapsepay.com": [19650], "notebook-kisker.hu": [9155], "n-aana.org": [11093], "my.gov.au": [19417], "s4.media.ft.com": [5826], "blog.osysadmin.net": [11692], "*.spreadshirt.ie": [15300], "cask.scotch.io": [14395], "*.mediaite.com": [10171], "col.stb01.s-msn.com": [14059], "blog.ibutsu.org": [19279], "*.wikispaces.com": [16111], "opensource.srlabs.de": [14521], "cdn.riastatic.com": [13428], "static.myitworks.com": [7858], "bank.simple.com": [14820], "*.clbr.tv": [3257], "www.singlehop.com": [14847], "www.regmedia.co.uk": [13740], "www.icstars.com": [7923], "shopping.e2enetworks.com": [4862], "*.kidsfootlocker.com": [8884], "www.jambit.com": [8500], "analytics.freedom.press": [6168], "support.goldenfrog.com": [6814], "target.mail.ru": [9874], "www.bitcoin.co.th": [1963], "tug.org": [15991], "secretcon.com": [14468], "golfrev.com": [6821], "media.supplychain.nhs.uk": [10913], "www.cal.net": [2724], "www1.va.gov": [17019], "usmint.gov": [17062], "www.t-engine.org": [15768], "univ-brest.fr": [17222], "files.yandex.com.tr": [18649], "opentransfer.com": [12049], "ecsi.com": [4881], "shop.teac.com": [15804], "gymglish.*": [7037, 7038], "goke.me": [6811], "hayward-pool.com": [7251], "cdn.assets-phoenix.net": [12633], "www.youtube.be": [18709], "my.opera.com": [12050], "cryptoanarchy.freed0m4all.net": [6163], "www.gusto.com": [7027], "buy.stubhub.de": [15534], "www.skinflint.co.uk": [14913], "www.demand-driver.com": [4346], "www.velleman.eu": [17596], "tvnz.co.nz": [15886], "qxl.dk": [13295], "ticketsnow.com": [16427], "vid.me": [17676], "*.csis.org": [2674], "0nl1ne.at": [3], "developers.cloudflare.com": [3285], "f.e.ccs.com": [2551], "register.mitre.org": [10459], "anyfi.net": [1079], "nexac.com": [11354], "bankofscotland.de": [1650], "fkl.fi": [5831], "media.campaign.harvard.edu": [7219], "ientry.com": [19273], "www.nruns.com": [10859], "tl.r7ls.net": [13394], "www.lobbyradar.de": [19800], "prdownloads.sf.net": [15174], "tube4.me": [16813], "pad.jhalderm.com": [8470], "*.marketplace.org": [10018], "my.hscic.gov.uk": [19264], "hightail.com": [7407], "www.bgr.com": [1515], "gallery.op-co.de": [11901], "sandstorm-media.de": [14281], "s.sharethis.com": [14668], "www.poradte.cz": [19506], "pluscontrollers.com": [3624], "opendatacity.de": [19463], "snelis.com": [15033], "www.assured.se": [18967], "tacoma.uw.edu": [17077], "img.empstatic.com": [5220], "www.benthamsgaze.org": [1780], "www.tweakhound.com": [16864], "static.opml.org": [11655], "www.lihm.net": [9347], "www.rooof.com": [13965], "buch.ch": [16171], "*.helpshift.com": [7310], "www.ditii.com": [3993], "forums.getfoxyproxy.org": [6591], "www.pcp.ch": [12496], "quiz.tivi.de": [19800], "image-store.slidesharecdn.com": [14963], "nikeplus.nike.com": [11401], "blog.gitorious.org": [18428], "vf.fifedirect.org.uk": [5779], "zhiku.tmall.com": [19684], "danbooru.donmai.us": [19125], "wupaymentsolutions.com": [17935], "siggraph.org": [14777], "simmarket.com": [14807], "www.synology.com.tw": [15737], "mansfield.objective.co.uk": [19454], "my.adap.tv": [554], "account.xbox.com": [18550], "fop.thecthulhu.com": [16334], "nightcode.info": [11396], "vdownloader.com": [17479], "www.blah.im": [2057], "opensecrets.org": [2946], "alumni.pragmaticstudio.com": [13014], "sslimgs.xkcd.com": [19786], "nixos.org": [11430], "www.horde-llc.com": [7495], "naytev.com": [11116], "overijssel.nl": [11132], "pse.osu.edu": [11760], "protect.tacticaltech.org": [15901], "*.orange.ch": [12088], "ii.techdirt.com": [16026], "overlay.ringtonematcher.com": [13893], "linode.com": [9387], "soundcloud.com": [15161], "site-cdn3.ghosteryenterprise.com": [6630], "www.booklog.jp": [2203], "www.aboutairportparking.com": [12169], "marketingsolutions.masslive.com": [10047], "www.amazon.co.jp": [918], "libreoffice-from-collabora.com": [9309], "wap.mail.ru": [9874], "www.notanet.com.br": [11519], "beli.cisco.com": [3162], "emacswiki.org": [5190], "weeklyplus.com": [18183], "neos.eu": [10899], "tour.girlsoutwest.com": [6667], "clothingattesco.com": [3275], "ben.debian.net": [4273], "*.sjrdesign.net": [15533], "call.stopwatching.us": [15488], "www.plantronics.com": [12780], "www.kkh.se": [8733], "icons-ak.wxug.com": [18032], "www.kinox.me": [19337], "dataxu.com": [4190], "sure-assist.com": [15644], "eforms2.westlothian.gov.uk": [19755], "www.mythtv.org": [10849], "zakird.com": [18781], "sunshineweek.org": [15607], "p19.qhimg.com": [13302], "speedworldgrafix.com": [15255], "www.e-gold.com": [4851], "ethersheet.org": [5380], "wikispaces.asu.edu": [1195], "developers.filepicker.com": [5801], "de.colocation-datacenter.com": [19228], "www.takeaway.com": [15915], "www.sketchthemes.com": [14905], "makeagift.stanford.edu": [15383], "render.groupon-content.net": [14562], "blogs.oracle.com": [12082], "www.lifesaving.com": [9334], "*.oculus.com": [11721], "accessories.sky.com": [14924], "*.mypressplus.com": [13034], "a3.websitealive.com": [18149], "www.mathoverflow.net": [15359], "blog.viddler.com": [17682], "msdn.microsoft.com": [10364], "*.jimg.dk": [8573], "company.here.com": [7326], "www.jitec.ipa.go.jp": [7787], "rubygems.org": [14021], "*.bay.livefilestore.com": [9503], "*.kintera.org": [8912], "www.pricegrabber.com": [13052], "hi4em.derby.gov.uk": [4380], "www.gradle.org": [6882], "littlecms.com": [9477], "forum.mediatemple.net": [10165], "www.cuttlefish.com": [3945], "www.nic.ad.jp": [10918], "osp.vt.edu": [17740], "www.gdata.pt": [6293], "everyanglemedia.com": [5452], "qd.alibaba.com": [809], "www.dshield.org": [4084], "metrika.yandex.kz": [18652], "www.ecosia.org": [5063], "www.femtoduino.com": [5746], "digid.nl": [11132], "www.helmholtz-berlin.de": [7302], "edusoft.hslu.ch": [7583], "www.familie.rps.aok.de": [317], "www.apkmirror.com": [1095], "www.exhaleprovoice.org": [5492], "www.infonline.de": [7767], "www.marum.de": [10036], "doncaster.greenparty.org.uk": [6925], "banki.wp.pl": [17921], "publicappointments.cabinetoffice.gov.uk": [2701], "www.jino.ru": [8575], "*.udel.edu": [17249], "de-pl.dict.cc": [4455], "developer.getcloudapp.com": [9370], "www.wj32.org": [18390], "www.thurrott.com": [16407], "account.netflix.com": [11229], "creditcards.citi.com": [3168], "www.stripe.com": [15525], "clickberry.tv": [3257], "beta.dzone.com": [4095], "jbeekman.nl": [8415], "medium.com": [10197], "post.audioscrobbler.com": [1360], "www.freetvonline.com": [6153], "www.zencoder.com": [18820], "domaintools.com": [4660], "login.youku.com": [18713], "cardiffnetwork.cf.ac.uk": [2835], "assets1.sendgrid.com": [14577], "www.genges.com": [6521], "www.serve.com": [14599], "lumension.com": [9662], "andrewmunsell.com": [1002], "testing.drupal.org": [4780], "s.jtvnw.net": [16888], "blog.dbrgn.ch": [4238], "www.twit.tv": [15892], "actualidad.rt.com": [13468], "www.volgistics.com": [17828], "wiki.trustthevote.org": [16784], "naughtydog.com": [11107], "www.7springs.com": [191], "forums.whirlpool.net.au": [18243], "uscyberchallenge.org": [17416], "www.forums.playfire.com": [12805], "cyph.com": [3982], "dbs.com.tw": [4010], "bcaa.com": [1504], "www.theappendix.net": [16243], "www.uni-ulm.de": [19715], "www.securejoinsite.com": [14502], "btdigg.org": [1570], "www.kinesis-ergo.com": [8894], "dev.windows.com": [18342], "addresspicker.io": [578], "gigaom.com": [6644], "printink.si": [13071], "workforce.oracle.com": [12082], "www.exposefacts.org": [5513], "psmedia.playstation.com": [12795], "www.edonorcentral.com": [4903], "privacyenforcement.net": [13087], "barnesandnoble.com": [1678], "www.ttip-stoppen.at": [15867], "1and1.co.uk": [53], "www.dignityindying.org.uk": [4514], "ctunnel.com": [2687], "gamefly1.gameflycdn.com": [6420], "tba.stanford.edu": [15383], "www.familie.niedersachsen.aok.de": [317], "iwight.com": [7877], "*.stelladot.com": [15463], "affutd.com": [696], "xs4all.nl": [18535], "univers-libre.net": [17226], "peteraba.com": [12591], "spark.ru": [15219], "blogs.ncl.ac.uk": [10884], "fortiguard.com": [6055], "img.domaintools.com": [4660], "www.cossacklabs.com": [3692], "www.anonimag.es": [1043], "www.goodzer.com": [6832], "www.tinfoil.co": [16472], "umu.se": [17144], "www.aweirdimagination.net": [387], "bluestatedigital.com": [2144], "*.comparis.ch": [3513], "www.jura.uni-potsdam.de": [17333], "gestespaceprive.moncompteformation.gouv.fr": [19407], "ublearns.buffalo.edu": [17297], "sagecell.sagemath.org": [14239], "www.silverum.cz": [14804], "ad1.netshelter.net": [11208], "cypouz.com": [3987], "image.logmein-inc.com": [9548], "*.onamae.com": [11821], "stanfordmedicine.stanford.edu": [15383], "www.jcrosoft.com": [8421], "mcc.gov": [19388], "hjr-verlag.de": [7072], "ctracking.gpehosting.com": [6376], "assets2.sendgrid.com": [14577], "phusionpassenger.com": [12654], "www.periscope.tv": [12573], "www.acyba.com": [510], "widgets.awe.sm": [1460], "justice.gov.uk": [10427], "familie.niedersachsen.aok.de": [317], "luxsci.com": [9675], "getmango.com": [6597], "onescreen.com": [11842], "static.wonderwall.com": [18413], "www.piratpartiet.no": [12724], "go.berniesanders.com": [1796], "www.fusionforge.org": [6275], "www.ricoh.com.hk": [13879], "www.leetmedia.com": [9224], "my.talktalk.co.uk": [15929], "www.spiil.org": [15274], "passport.alipay.com": [817], "www.reporter-ohne-grenzen.de": [13783], "www.authorizenet.com": [1410], "npmawesome.com": [11541, 11542], "register.plos.org": [13206], "jlist.com": [8442], "awxcnx.de": [1465], "shared.aces.illinois.edu": [17258], "www.websitealive6.com": [18149], "www.calpolyarts.org": [2729], "www.townnews365.com": [16614], "disk.yandex.com.tr": [18649], "www.apoteket.se": [1099], "*.escapistexpo.com": [16188], "www.site.biz.id": [7504], "cn1.websitealive.com": [18149], "worldcat.org": [18446], "www.tmall.hk": [16513], "offlinemode.org": [11755], "regiobankadviseurs.nl": [13730], "docs.google.com": [6834], "www.trustees.osu.edu": [11675], "secured.sandbag.uk.com": [14276], "theamericanscholar.org": [16242], "www.olcf.ornl.gov": [11693], "www.securedrop.org": [14491], "pinknews.co.uk": [12692], "cta.cern.ch": [2575], "gmads.mookie1.com": [10576], "sc.cdnma.com": [11179], "www.icecat.biz": [7914], "secure.leadback.advertising.com": [662], "www.zillowstatic.com": [18865], "www.audubon.org": [1364], "cdn.tele2.lt": [16069], "mattwilcox.net": [10081], "svn.postgresqlfr.org": [12973], "evolvesocially.org": [5467, 5468], "wichmann.indymedia.org": [8085], "www.ooyala.jp": [11899], "www.vonage.com": [17838], "oeit-tsa.mit.edu": [9749], "mythic-beasts.com": [10850], "jobs.ch": [19322], "shop.interkassa.com": [8251], "s-static.ak.facebook.com": [5620], "*.makerble.com": [9914], "cloudconnect.norton.com": [11505], "hotmail.com": [7559], "www.glimmerblocker.org": [6709], "opticsinfobase.org": [12066], "ca-fr.norton.com": [11505], "helsinki.fi": [17255], "widget.us.criteo.com": [3801], "liquid.piratenpartei.at": [12720], "www.aclusocal.org": [257], "freedompop.com": [6169], "concierge.apple.com": [1120], "malwarebytes.org": [9929], "www.amstelveen.nl": [11132], "arretsurimages.net": [18965], "www.novoed.com": [11531], "www.threat2alert.com": [16391], "www.entroware.com": [5302], "outspark.com": [12154], "btcmedia.org": [1568], "www.blocket.se": [2094], "porlaputa.com": [12924], "www.sysdig.com": [19651], "playertest.longtailvideo.com": [9589], "img.mail.ru": [9874], "www.bva.bund.de": [5716], "www.itau.com.br": [8386], "www.zombeewatch.org": [18891], "www.ekiga.net": [5131], "trust-center.verisign.co.uk": [17623], "www.adultdp.portsmouth.gov.uk": [19508], "www.1pipfix.com": [45], "i1.connect.microsoft.com": [10364], "thinkmobile.appcelerator.com": [1113], "nohats.ca": [11443], "www.brockman.com": [2358], "groupon.com": [6974], "onetaste.us": [11845], "www.welcomecottages.com": [18490], "gcs.civilservice.gov.uk": [19066], "dev.mobileread.com": [10498], "thoughtworks.com": [16386], "vdownloader.es": [17479], "syspectr.com": [15757], "powweb.com": [12987], "unoeuro.com": [17362], "infrequently.org": [8134], "hillingdon.firmstep.com": [19183], "mobil.tdc.dk": [15796], "www.southend-on-the-move.org.uk": [19612], "www.sensic.net": [11581], "artcoordination.aalto.fi": [390], "www.wethegoondas.in": [18030], "bobcares.com": [2172], "esf-works.com": [4958], "*.datstathost.com": [4169], "traffic.lan.switch.ch": [15699], "codecentric.de": [3362], "u.fsf.org": [5600], "*.pixlr.com": [12743], "www.digipaper.fi": [10140], "orel.rt.ru": [13469], "umd2.mycdn.me": [10824], "www.fsrwiwi.htwk-leipzig.de": [7114], "www.simplesharebuttons.com": [14824], "ld.svt.se": [14205], "s0.plays.tv": [12809], "cdn.xs4all.nl": [18535], "login.trustwave.com": [16799], "forum.adium.im": [595], "fornex.com": [6047], "signals.com": [14782], "*.agu.org": [287], "cspbuilder.info": [3897], "status.run.pivotal.io": [12730], "rredc.nrel.gov": [11057], "www.vellemanusa.com": [17596], "svn.sukimashita.com": [15588], "*.fastclick.net": [17541], "mysql.carezone.cz": [2849], "jobsgopublic.com": [8600], "vm.ag": [17803], "vault.fbi.gov": [5708], "finforms.wigan.gov.uk": [18286], "s8.uicdn.net": [16958], "*.cfda.gov": [2894], "result.webplatform.org": [18079], "g.tbcdn.cn": [15982], "designova.net": [4389], "www.spnet.nl": [14161], "assets.newsinc.com": [11335], "givingprograms.com": [6691], "forms.canonical.com": [2810], "www.lunarmods.com": [569], "www.linux-tips.org": [9399], "esetnod32.ru": [4956], "dudley.greenparty.org.uk": [6925], "northeastjobs.org.uk": [19437], "panel.kei.pl": [8841], "www.marinsoftware.de": [9996], "emunewz.net": [5224], "*.tso.co.uk": [15863], "www.getnikola.com": [19216], "www.direktmarketingcenter.de": [19112], "zuhah.com": [18921], "codewords.recurse.com": [13653], "www.frederikssund.dk": [6118], "aldi.com.au": [299], "www.meraki.com": [10272], "*.rpmfusion.org": [13448], "assets.adobedtm.com": [620], "huodong.fanli.com": [5655], "static1.wonderwall.com": [18413], "www.cimbniaga.com": [2605], "www.feralinteractive.com": [5753], "uni-ulm.de": [19715], "www.alex.se": [793], "*.sdsc.edu": [14093], "developer.mulesoft.com": [10691], "dfa.cornell.edu": [3676], "dtc.*.gplhost.com": [6372], "www.cli-apps.org": [19461], "indiemerch.com": [8068], "track.omguk.com": [11634], "sy.taobao.com": [15952], "youtube.com.ua": [18709], "nymity.ch": [11598], "www.ab9il.net": [237], "*.jotform.com": [8637], "mobile.cc.stonybrook.edu": [15480], "gc.agar.io": [719], "*.marketingresearch.org": [10013], "www.bluemountain.com": [2142], "www.runabove.com": [14034], "www.hs-rm.de": [7580], "www.previa.se": [13043], "stbeehive.oracle.com": [12082], "business2.comcast.com": [3461], "stats.xmission.com": [18530], "what.cd": [18229], "internet.yandex.kz": [18652], "ecn.t2.tiles.virtualearth.net": [17755], "www.syllabusshare.com": [15712], "www.recode.net": [13647], "www.his.se": [7069], "emcraft.com": [5201], "infolinks.com": [8111], "download.winzip.com": [18333], "tfsprays.com": [15808], "lists.openafs.org": [11915], "getnikola.com": [19216], "solus-project.com": [15124], "noris.net": [11484], "applianceshop.eu": [1125], "hds.ucsd.edu": [16939], "kaazing.com": [8759], "mysociety.org": [10786], "seeedstudio.com": [14552], "exacttarget.com": [5478], "www.pogoplug.com": [12851], "free.mail.de": [9873], "www.apricorn.com": [1138], "cache.img.gmo.jp": [6345], "hamradioscience.com": [7180], "billing.epoch.com": [5325], "www.codepoet.com": [18428], "unm.edu": [16991, 16993], "maas360.com": [9817], "www.bitmazk.com": [2006], "ilearn.cathaypacific.com": [2904], "www.boathousecrewshop.com": [2169], "www.mathiasbynens.be": [10069], "donottrack-doc.com": [4611], "www.aeolusproject.org": [680], "cdn2.outspark.com": [12154], "yolotrain.oebb.at": [19455], "contact.bad-dragon.com": [18979], "stats.mediciglobal.com": [10191], "universalenroll.dhs.gov": [4035], "www.bsidesslc.org": [1546], "www.buzzbytes.net": [2476], "www.sketchfab.com": [14906], "www.diasporafoundation.org": [4451], "www.sensiolabs.com": [14586], "assange.rt.com": [13468], "grassroots.groupon.com": [6974], "community.spotify.com": [15296], "www.pony.fm": [12897], "my.screenname.aol.com": [321], "jabber.linuxlovers.at": [9432], "secunia.com": [14475], "www.vaultproject.io": [17576], "static4.wonderwall.com": [18413], "www.resilientsystems.com": [13805], "kotulas.com": [8996], "slp4.somerset.gov.uk": [15127], "review.openstack.org": [11975], "*.socialsecurity.gov": [15060], "autodiscover.cs.berkeley.edu": [17240], "allcrypt.com": [829], "priberam.pt": [13048], "*.de-cix.net": [4022], "img3.wsimg.com": [14507], "www.hf.ntnu.no": [10964], "name.com": [11015], "www.clippod.com": [3270], "laprox.com": [9154], "cdn.executive.mit.edu": [9749], "forums.adobe.com": [615], "www.sigdet.nu": [14776], "br.de": [1539], "m.voyage-prive.it": [17858], "*.alcatel-lucent.com": [782], "tp1.sinaimg.cn": [14845], "my.profitbricks.com": [13129], "www.poolp.org": [12899], "htc.com": [7103], "naturvardsverket.se": [11106], "madmimi.com": [9835], "www.dimauro.osu.edu": [11760], "globalvoicesonline.org": [6735], "www.secondmarket.com": [14461], "id.washingtonpost.com": [17990], "www.glype.com": [6753], "macapi.xamarin.com": [18540], "docs.zoho.com": [18884], "forum.typo3.org": [15894], "gwhois.org": [6400], "vast.com": [17572], "www.tracking-point.com": [16632], "learning.microsoft.com": [10364], "www.eatnow.com.au": [19145], "protectedtext.com": [13168], "*.becu.org": [2175], "lshtm.ac.uk": [9576], "www.linear.com": [9368], "plantsolution.de": [12776, 12777], "*.inwx.com": [8231], "www.greenbillion.org": [6922], "pen.org": [12238], "ws.pagseguro.uol.com.br": [16998], "*.our-hometown.com": [12141], "www.sportschau.de": [18015], "login.virginmedia.com": [17737], "backstreetmerch.com": [1603], "images.icecat.biz": [7914], "www.pauldotcom.com": [12460], "img2.thalasseo.com": [16168], "www.alternativeto.net": [884], "jrnl.ie": [1920], "www.golf2go.net": [1507], "www.dangpu.com": [4139], "pro.syncsearch.jp": [15731], "www.abhayagiri.org": [416], "winsupersite.com": [18330], "creativecow.net": [3779], "pt.norton.com": [11505], "groupon.de": [6977], "admin.hosts.co.uk": [7545], "appseccalifornia.org": [1133], "supporthtml.oracle.com": [12082], "administrace.hosting90.cz": [7527], "portal.miun.se": [9751], "fimc.net": [10163], "website.1and1.co.uk": [53], "2dialog.com": [84], "www.opentabs.net": [12047], "eat.ch": [4867], "www.commandoboxing.com": [3476], "npmjs.com": [11539], "*.clicksor.com": [3263], "stateoftheinternet.com": [15422], "labs.opendatacity.de": [19463], "securepaths.com": [14506], "pilgrimagesoftware.com": [12674], "bgamed.de": [1516], "www.carrefoursa.com": [2862], "icecat.biz": [7914], "www.123ehost.com": [26], "login.proxy.lib.ohio-state.edu": [11761], "mail.desy.de": [4399], "metroethernetforum.com": [10323], "chroot-me.in": [3124], "my.rackspace.com": [13506], "www.orchiddiva.com": [12094], "hotmail.msn.com": [9796], "*.grinnell.edu": [6957], "*.viber.com": [17664], "*.24ways.org": [78], "vansso.harland.net": [7207], "www.greenpeace.de": [6936], "my.lib.ncsu.edu": [11492], "*.drinkaware.co.uk": [4761], "www.lsi.com": [9100], "freemovement.org.uk": [6144], "community.snsbank.nl": [14144], "show.zoho.com": [18884], "sp.itunes.apple.com": [1120], "app-de.resrc.it": [13599], "stedebroec.nl": [11132], "aea.se": [679], "rockpapershotgun.com": [13937], "www.apigility.org": [1094], "*.winzip.com": [18332], "keepsthelightson.vpsboard.com": [17863], "updates.oracle.com": [12082], "s1.lemde.fr": [9244], "i.c.dk": [2498], "nemendafelog.hi.is": [7066], "www.unknowncheats.me": [17357], "ar.udacity.com": [17110], "here.com": [7326], "forgottenlands.eu": [6038], "consult.barnsley.gov.uk": [18983], "taschenorakel.de": [15967], "hashtalk.org": [7224], "www.sankakucomplex.com": [19563], "cdn0.onlinelaw.wustl.edu": [17993], "zidisha.org": [18857], "game.jd.com": [8423], "tmobile.ecustomersupport.com": [5065], "exchange.dnv.com": [4073], "bpf.deathmask.net": [4266], "toonpool.com": [16555], "*.feralhosting.com": [5752], "*.opensecrets.org": [2946], "photo.kaywa.com": [8826], "www.freenetproject.org": [6181], "movie2k.cm": [10635], "der-preis-jaeger.de": [4378], "pclob.gov": [12226], "lsf.uni-due.de": [17165], "www.ablegamers.com": [420], "auth.smext.faa.gov": [5713], "www.srihash.org": [14167], "givetocal.berkeley.edu": [17240], "raiffeisen.ch": [13527], "ra4-gifs.weather.gov": [18034], "*.pentontech.com": [12545], "static.justhookup.com": [8425], "*.epfl.ch": [4942], "v.calameo.com": [2731], "ifb.htwk-leipzig.de": [7114], "www.digitalgov.gov": [4488], "gscdn.nl": [19211], "mta.openssl.org": [11970], "www.mitro.co": [10460], "*.www.final-score.com": [5818], "images3.bovpg.net": [2252], "www.omarandwill.com": [11788], "l2.51fanli.net": [171], "sustainable.stanford.edu": [15383], "cpxl.golem.de": [6819], "www.do.de": [4647], "*.younited.com": [18719], "quantixtickets8.com": [13339], "linuxluddites.com": [9424], "ece.ucsd.edu": [16939], "tocco.ch": [16524], "uhrada.vas-hosting.cz": [19729], "sandwell.greenparty.org.uk": [6925], "www.krautchan.net": [9006], "sandsmedia.com": [14212, 14213], "www.federalreserve.org": [5717], "www.bloomingtonfools.org": [6110], "wegohealth.com": [18185], "www.marmotte.net": [10027], "www.utopia.ai": [17456], "gerrit.beaker-project.org": [1729], "cdn3.xsolla.com": [18593], "d.calameo.com": [2732], "metrics.aftonbladet.se": [716], "fold.liqd.net": [9442], "www.historytoday.com": [7419], "customer.convio.net": [3630], "secure.freshbsd.org": [6200], "www.slb.com": [14355], "www.one.com": [11828], "www2.whipplehill.com": [18242], "www.us-cert.gov": [17415], "*.dating.superforum.org": [14640], "cdn2.sbnation.com": [14079], "www.mybitcointrade.com": [1956], "store.digitalriver.com": [4483], "barclays.co.uk": [1662], "www.fanfiction.net": [5648], "crissp.poly.edu": [12888], "androidpit.de": [1009], "nine.ch": [11412], "content.presspage.com": [13033], "my.plexapp.com": [12815], "*.shmoop.com": [14710], "monster-wow.com": [10566], "au2.uicdn.net": [16958], "api.data.gov": [4175], "aspirationtech.org": [1273], "hilfe.web.de": [18050], "winners.flonline.eu": [5578], "kundencenter.telekom.de": [4410], "elementaryos.org": [5159], "webauth.ncsu.edu": [11492], "sportifik.com": [15290], "listenerapproved.com": [9451], "www.articulate.com": [1232], "www.rts.ch": [19621], "sharpmen.com": [14684], "*.halifax.co.uk": [7174], "trac-plugins.gajim.org": [6406], "www.freebarrettbrown.org": [6138], "autodiscover.earth.leeds.ac.uk": [17318], "aa.com": [229], "forms.brent.gov.uk": [2304], "ecn.t5.tiles.virtualearth.net": [17755], "forensischinstituut.nl": [11132], "madeinafreeworld.com": [9837], "www.ymcastlouis.org": [18618], "docs.prediction.io": [13023], "opnotes.stanford.edu": [15383], "counter.theconversation.edu.au": [16262], "my.oracle.com": [12082], "lam.norton.com": [11505], "ifightsurveillance.org": [7888], "ratingsportal.food.gov.uk": [19187], "cn.forums.oracle.com": [12082], "pl.cloudflare.com": [3285], "*.phparch.com": [12652], "wiki.unbit.it": [17148], "www.nationalarchives.gov.uk": [11065], "sldvs.uic.edu": [17231], "www.checkmyrota.com": [19055], "delivery.com": [4333], "direct.govdelivery.com": [6862], "myinmon.com": [10809], "static-azeroth.cursecdn.com": [3934], "avosapi.delicious.com": [4328], "*.wpmudev.org": [18469], "www.cryptonetwork.com": [3860], "www.zipy.co.il": [18875], "pa.bandinelli.net": [1639], "www.cryptoseal.com": [3864], "www.hotmail.msn.com": [9796], "typography.com": [16916], "ticketone.it": [16414], "harbour.jolla.com": [8622], "cereproc.com": [2963], "content.prnewswire.com": [12286], "westwilts.greenparty.org.uk": [6925], "*.gameological.com": [6434], "www.anibis.ch": [18956], "usplusu.com": [17447], "drupal.org": [4780], "developer.axosoft.com": [1477], "yandex.com.tr": [18649], "cve.mitre.org": [10459], "www.jakearchibald.com": [8495], "your-file-system.com": [18720], "kingston.greenparty.org.uk": [6925], "hrkgame.com": [7579], "translate.yandex.com.tr": [18649], "www.comkort.com": [3469], "safariflow.com": [14223], "*.advertstream.com": [657], "*.mayoclinic.org": [10106], "hupstream.com": [7626], "*.vtrenz.net": [14802], "*.r.axf8.net": [3544], "tuv.com": [3625], "drawingbynumbers.org": [4745], "infobaselistexpress.com": [509], "*.blogo.it": [2112], "ahpcrc.stanford.edu": [15382], "api.elsevier.com": [5185], "cdn.oreillystatic.com": [11661], "morphis.com": [10598], "*.optionsanimal.com": [12076], "cdn.mobify.com": [10494], "webservices.web.cern.ch": [2575], "bits.debian.org": [4275], "images.f.switchadhub.com": [15701], "mail.ru": [9874], "apideva.hertz.com": [7372], "shaunlorrain.com.au": [14686], "ssl.facebook.com": [5620], "www.imerys.com": [7989], "davidlazar.org": [4227], "community.jivesoftware.com": [8585], "www.httpsnow.org": [4908], "my.firstvds.ru": [5872], "img.auctiva.com": [1346], "safe-mail.net": [14225], "tuscany.apache.org": [1086], "payment.schibsted.no": [14351], "*.websocially.com": [18087], "savethekoala.com": [1381], "o2.sk": [16076], "es.gamigo.com": [6445], "wodc.nl": [11132], "support.kaspersky.ru": [8807], "si3.rgstatic.net": [13422], "trendmicro.eu": [16716], "ihub.co.ke": [19274], "mdh.se": [9732], "metrics.ikea.com": [7959], "ntchosting.com": [10960], "www.coinmarketcap.com": [19071], "lists1.mail.ruhr-uni-bochum.de": [14031], "usertags.jeremybieger.com": [17087], "portalpilot.equinix.com": [5334], "www.crbug.com": [3768], "*.media.net": [10148], "www.radioeins.de": [13518], "static.strawpoll.me": [15515], "3dsupply.de": [133], "ai.taobao.com": [15952], "mail.qwknetllc.com": [13294], "www.tkqlhce.com": [3481], "xt-commerce.com": [18595], "filmlair.com": [5810], "www.pcbsd.org": [12216], "marketplace.constantcontact.com": [3592], "albinoloverats.net": [780], "*.argos.co.uk": [1186], "reinsurance.tdc.dk": [15796], "seller.flipkart.com": [5926], "www.humanaction.com": [7607], "affiliate.itunes.apple.com": [1120], "www.hostingcon.com": [7529], "app.recurly.com": [13652], "*.ucm.es": [16936], "blog.sitelock.com": [14867], "www.usi.edu": [17232], "mednews.wustl.edu": [17993], "i.fuwu.taobao.com": [15952], "ngvpn15.nvidia.com": [10985], "www.servage.com": [14598], "c.jp.msn.com": [9796], "www.vozpopuli.com": [17861], "stratechery.com": [15508], "www.digitalforensicsmagazine.com": [4487], "www.berkeley.edu": [17240], "aircargoworld.com": [16927], "www.linuxmusicians.com": [9414], "*.www.cadsoft.de": [2711], "www.thecityuk.com": [16220], "oracle-base.com": [12080], "voys.nl": [17860], "talkactive.net": [15925], "*.lucent.com": [782], "mah.se": [9709], "domino.research.ibm.com": [7675], "www.coventgarden.london": [19083], "media.sundance.tv": [19638], "*.media6degrees.com": [10149], "people.uwm.edu": [17294], "time.yandex.com.tr": [18649], "startlab.sk": [15411], "*.flyingmeat.com": [5966], "labs.parabola.nu": [12384], "vishnu.netfilter.org": [11225], "willleathergoods.com": [18311], "consumersupport.lenovo.com": [9251], "*.mypcbackup.com": [8689], "www.cvl.isy.liu.se": [9084], "c.amazon-adsystem.com": [909], "deepsec.net": [4298], "mongodb.org": [10554], "missinglinkelectronics.com": [10455], "www.onthe.io": [11890], "surveydaddy.com": [15660], "*.qwobl.net": [1351], "maxserv.com": [10092], "archaea.ucsc.edu": [17304], "www.appiehein.com": [1116], "imap-02.ct.infn.it": [7766], "redletter.link": [13676], "translatewiki.net": [16673], "api.coderwall.com": [3377], "thumb.mais.uol.com.br": [16998], "forum.sabayon.org": [14214], "atlas.web.cern.ch": [2575], "beauteprivee.fr": [1739], "autodiscover.ya.ru": [18626], "myaccount.n-somerset.gov.uk": [10857], "wandsworth.greenparty.org.uk": [6925], "help.just-eat.co.uk": [19328], "www.fazekas.hu": [5697], "api.steampowered.com": [15450], "www.filmlair.com": [5810], "www.europe.redhat.com": [13675], "davidtisch.com": [4224], "carenet.fnfismd.com": [5970], "edx.org": [5070], "shoptiques.com": [14731], "mci4me.at": [10126], "holidays.cathaypacific.com": [2904], "www.axelarnbak.nl": [1470], "www.playonlinux.com": [12793], "www.clinicalkey.com": [3267], "cir.ca": [3153], "www.btckan.com": [1561], "stage.mbusa.com": [9724], "myheritage.no": [10834], "myheritage.nl": [10834], "star-pool.com": [15390], "www.soundonsight.org": [15160], "teruel.stanford.edu": [15383], "playmates.com": [12808], "apcmag.com": [330], "so.awe.sm": [1460], "pixel.alexametrics.com": [795], "developers.elsevier.com": [5185], "www.domainfest.com": [12169], "*.norid.no": [11483], "cdn.postovoy.org": [19512], "secure.plymouth.gov.uk": [19500], "cottagesdirect.co.uk": [18490], "*.makeagif.com": [9910], "ads.adap.tv": [554], "origin.www.upc-cablecom.ch": [19716], "labs.sign-up.to": [14780], "auth.ohiolink.edu": [11762], "*.ussco.com": [17218], "www.ooyala.com": [11900], "oae.stanford.edu": [15383], "lhc.web.cern.ch": [2575], "dnt.twimg.com": [16877], "isc1.sans.org": [14072], "raspbian.org": [13570], "*.joomlart.com": [8626], "www.bit.nl": [1523], "adagio.com": [551], "fool.com.au": [10613], "irish-country-cottages.co.uk": [18490], "www.caimao.com": [2719], "www.virwox.com": [17731], "www.bayden.com": [1705], "gitbook.io": [6675], "game.co.uk": [6417], "www.sfn.org": [15077], "www.kommaer.dk": [8965], "www.redhat.com": [13675], "realmedia.channel4.com": [3003], "www.ambx.com": [923], "www.vouchers.bt.com": [1551], "ssl-i.cdn.openx.com": [11995], "thl.osu.edu": [11760], "*.elitecastingnetwork.com": [5167], "fr.nakedcitizens.eu": [11013], "satoshidice.com": [14301], "btp.police.uk": [2383], "blog.hubspot.com": [7594], "web2.login.cornell.edu": [3676], "jabber.org.uk": [8476], "cryptostorm.is": [3890], "sunglasswarehouse.com": [15600], "metamap.nlm.nih.gov": [11052], "www.mitre.org": [10459], "graph.renren.com": [13769], "www.reservation-desk.com": [13802], "accounts.apigee.com": [1093], "dmp.theadex.com": [16331], "parkinsonsblog.stanford.edu": [15383], "campusship.ups.com": [17007], "cheapssls.com": [3042], "sustainability-ornl.org": [11693], "stork.eid.lt": [5122], "resistsurveillance.org": [13808], "profile.weather.com": [18033], "kalbookings.kirklees.gov.uk": [8916], "ssl-product-images.www8-hp.com": [7378], "acs.onlinesbi.com": [11873], "sso.dell.com": [4335], "new-nations.net": [11295], "affiliate.niteflirt.com": [11424], "inc.com": [8041, 8042], "orderstatus.earthlink.net": [5007], "www.publichealth.wustl.edu": [17993], "pki.irisgrid.es": [13661], "my.nottingham.ac.uk": [11528], "www.libreswan.org": [9316], "www.w3counter.com": [17889], "www.brabysads.com": [2263], "set.tidaltv.com": [16433], "www.wcfia.harvard.edu": [7219], "synology.com.tw": [15737], "pol.fronter.com": [19200], "subs.yandex.com": [18651], "hmapps.net": [7437], "i2.code.msdn.microsoft.com": [10364], "svn.osgeo.org": [11669], "voicestar.com": [9984], "www.swissdigicert.ch": [15698], "sharedvalue.org": [14673], "www.visual-paradigm.com": [17782], "www.gatag.it": [14216], "logika.net": [9557], "shopperapproved.com": [14727], "be.contentful.com": [3614], "business-blog.zomato.com": [18890], "www.kinox.sg": [19337], "gabriel.fca.org.uk": [5557], "www.zuse-crew.de": [18924], "learn.uvm.edu": [17075], "www.rockcreek.com": [13935], "tracking.m6r.eu": [9700], "www.filebox.tv": [5788], "time.com": [15819], "movian.tv": [10634], "acceptonline.leeds.ac.uk": [17318], "condor.com": [3561], "pda.drweb.com": [4783], "www.waffles.fm": [17945], "www.analysis.avira.com": [1449], "www.ubuntu-fr.org": [17096], "www.expandedsupport.com": [5502], "www.mbank.pl": [9722], "vp1-voiceportal.megapath.com": [10229], "*.australia-unsc.gov.au": [1380], "branch.com": [2276], "www.schijndel.nl": [11132], "enrol.kirklees.gov.uk": [8916], "trac.enlightenment.org": [5280], "digilinux.ru": [4478], "patriotssuperbowl.us": [12458], "www.engineeringforchange.org": [5267], "lithium.com": [9469], "m.eat.ch": [4867], "exoclick.com": [5499], "www.netzpolitik.org": [11278], "jobs.wellcome.ac.uk": [19752], "jobs.telegraph.co.uk": [16082], "*.gpshopper.com": [6373], "www2.citymapper.com": [3193], "go.wustl.edu": [17993], "passport.everydayhero.com": [5454], "img5.picload.org": [12661], "itv.com": [7853], "www.yed24hr.com": [18666], "remusexhauststore.com": [13763], "www.atmail.com": [1323], "www.chiphell.com": [3088], "jobcloud.ch": [19322], "accounts.surfeasy.com": [15649], "makershed.com": [9913], "sstatic.net": [15359], "jarosz.stanford.edu": [15384], "www.youtube.co.il": [18709], "jumpinformatiqueportal.axosoft.com": [1477], "www.youtube.co.in": [18709], "pay.gov": [12465], "www.simplegiver.com": [10521], "www.mymediamagnet.com": [10811], "hlat.us": [7123], "us.7digital.com": [193], "privacytool.org": [13090], "sso.cc.stonybrook.edu": [15480], "mullet.se": [10693], "jottit.com": [8639], "verisigninc.com": [17623], "treasurydirect.gov": [16705], "www.manage.cm": [9938], "m.fotki.yandex.kz": [18652], "*.duke.edu": [4799], "p.fr33tux.org": [6091], "*.nyx.com": [10996], "static.manutan.fr": [9965], "krakenbenchmark.mozilla.org": [10652], "springboard.fastspring.com": [5677], "discovermeteor.com": [4551], "ripoffreport.com": [13896], "www.tarsnap.com": [15966], "partner.just-eat.no": [19328], "bbhelp.cit.cornell.edu": [3676], "endchan.xyz": [5245], "gq-magazine.co.uk": [6378], "dg54.mycdn.me": [10824], "dotmailer.com": [4695], "wiki.osgeo.org": [11669], "onemonth.com": [11850], "*.justcloud.com": [8689], "admissions.calpoly.edu": [2728], "chat1.ap.dell.com": [4335], "www.sanwork.com": [14294], "emea3.recruitmentplatform.com": [13651], "fbi.gov": [5708], "descience06.carbonmade.com": [2831], "www.pbwebdev.com": [12212], "*.westjet.com": [18206], "www.piwik.univention.de": [17225], "vpic.video.qq.com": [13285], "freesnowden.is": [6150], "www.aldi-sued.de": [299], "filetrip.net": [5795], "inoreader.com": [8156], "adminer.pipni.cz": [12257], "flixbus.cz": [5931], "flixden.com": [5932], "www.mcwhirter.com.au": [10123], "www.wishmich.org": [9903], "www.ifc.org": [8258], "*.bennetts.co.uk": [1779], "ui.aggregateknowledge.com": [726], "p5.raasnet.com": [13655], "zap2it.com": [18788], "hu.libreoffice.org": [9311], "www.hamburg.de": [7181], "cloudworks.nu": [3298], "cao.stanford.edu": [15383], "static.thefullsignal.com": [6254], "cgit.collabora.co.uk": [3419], "documentation.mailgun.com": [9883], "savethechildren.org.uk": [14314, 14315], "3.vgc.no": [17484], "*.rdoproject.org": [13409], "dyankov.eu": [4818], "ld-2.itunes.apple.com": [1120], "wpx.ne.jp": [18468], "www.weather.yandex.com.tr": [18649], "kommaer.dk": [8965], "bitcoinfoundation.org": [1980], "berkeley.edu": [17240], "survs.com": [15662], "www.pamconsult.com": [12352], "soulmates.guardian.co.uk": [7000], "www.nordichardware.com": [11474], "includes.okccdn.com": [11770], "*.adsrvmedia.com": [633], "osmfoundation.org": [11672], "es.support.t-mobile.com": [15772], "tailgatersparking.com": [15912], "www.postgresql.eu": [12974], "pdftoword.com": [12237], "www.hdfury.com": [7053], "bitmissile.com": [1939], "www.youtube.com.tn": [18709], "*.backlift.com": [1600], "apobox.com": [334], "forums.unrealengine.com": [17365], "webmail.names.co.uk": [11026], "pin.harvard.edu": [7219], "www.resurs.se": [13819], "www.kanotix.de": [8782], "developer.berkeley.edu": [17240], "www.bt.no": [1550], "ooda.com": [11651], "youtube.co.uk": [18709], "content-public-dc2.govdelivery.com": [6862], "auctions.godaddy.com": [6773], "nextstudioapps.com": [9129], "www.skeptic.org.uk": [14901], "451unavailable.org": [146], "www.companiesintheuk.co.uk": [3507], "www.maxcdn.com": [10091], "edc1.healthtap.com": [7258], "announce.ft.com": [19202], "www.magazin.io": [9845], "ilogo.in": [7755], "dmca.com": [4045], "www.quotemedia.com": [13377], "api.facebook.com": [5620], "youtube.co.ug": [18709], "warez-bb.org": [17976], "www.usecryptos.com": [17421], "vbg.de": [17468], "developers.bitinvest.com.br": [1998], "spreadshirt.at": [15300], "tweetreach.com": [16871], "static5.readyflowers.com": [13620], "ymcmbofficial.com": [18619], "dnscurve.org": [4062], "help.elsevier.com": [5185], "www.tradepub.com": [16639, 16645], "sbiforsme.sbi.co.in": [14082], "*.photoprintit.com": [12648], "*.meebo.com": [10206], "eastdevon.greenparty.org.uk": [6925], "www.munzinger.de": [10706], "www.proxy.org": [13180], "b11.yahoo.co.jp": [18640], "domain-dns.com": [4646], "*.weissinc.com": [18188], "securedrop.org": [14491], "espanol.istockphoto.com": [19309], "openclassrooms.com": [11928], "static.thinksteroids.com": [9737], "p2.qhimg.com": [13302], "ox.ac.uk": [17271], "interlan.se": [8252], "status.acuityscheduling.com": [504], "mightyupload.com": [10380], "v2ex.com": [17463], "apps.ubuntu.com": [17102], "ighome.com": [7948], "labconnect.wustl.edu": [17993], "myitworks.com": [7858], "license.psoft.net": [12945], "openhub.net": [12013], "bycraft.cz": [2483], "global.alipay.com": [817], "www.cryptojedi.org": [3875], "profil.topnet.cz": [15845], "www.topuniversities.com": [16563], "cloudafrica.net": [3281], "proxpn.com": [19519], "www.diasporabrazil.org": [4450], "www.bnf.org": [2342], "thechangelog.com": [16256], "blog.bandcamp.com": [18428], "om.tdc.dk": [15796], "accountkiller.com": [459], "www.yamgo.com": [18644], "www.stationlrowingclub.com": [15434], "*.woot.com": [18424], "loopiasecure.com": [9606], "metadata.ftp-master.debian.org": [4274], "volunteermatters.com": [17836], "www.sundance.tv": [19638], "accountsupport.com": [460], "2013.eurobsdcon.org": [5403], "www.mailnull.com": [9878], "linkomanija.net": [9377], "undergrad.usc.edu": [17278], "www.addtoany.com": [573], "public.medicaid.gov": [19391], "*.moddb.com": [10515], "www.diskcryptor.net": [4562], "theads.me": [16332], "payrollapp.com": [12485], "blogs.netapp.com": [11183], "www.threatmetrix.com": [16392, 16393], "www.courtsofnz.govt.nz": [3722], "licensing.west-lindsey.gov.uk": [18205], "assistive.usablenet.com": [17419], "scache.microsoft.com": [10364], "beget.ru": [1752], "my.ucsc.edu": [17305], "www.es.gy": [5352], "arrl.org": [342], "jogos.zwame.pt": [18925], "printfriendly.com": [13066], "secure.n-able.com": [10858], "mexicoleaks.mx": [10327], "www.datacell.is": [4177], "m.yandex.ua": [18656], "www.veber.co.uk": [17585], "www.mdh.se": [9732], "www.paloaltonetworks.com": [12349], "freebaselibs.com": [6158], "www.iyouport.com": [7885], "beta.mining.bitcoin.cz": [10425], "www.userreport.com": [17437], "comcenter.netcologne.de": [11188], "www.opensrs.com": [16816], "www.dave.org.uk": [4222], "www.itella.fi": [19310], "domainmarket.com": [4654], "training.drweb.com": [4783], "www.ipay.uillinois.edu": [16960], "www.zoner.fi": [18894], "www.adultfriendfinder.com": [643], "www.amazon.es": [917], "www.mitls.org": [10334], "pypy.org": [10285], "*.flowtab.com": [5949], "ssl0.ovh.net": [12173], "whyblockme.info": [3533], "ieeexplore.ieee.org": [7714, 7715], "grail.cs.washington.edu": [17291], "www.scubbly.com": [14429], "secure.i.uat1.telegraph.co.uk": [16082], "www.voltaicsystems.com": [17833], "www.goeshow.com": [6799], "vabali.de": [17525], "i1.services.social.s-msft.com": [14058], "hub2.lfg.com": [19360], "utexas.edu": [17286], "portsmouth.gov.uk": [19508], "intranet.law.ox.ac.uk": [17271], "bbcdn-bbnaut.ibillboard.com": [7679], "www.dccomics.com": [4015], "www.t-shirtmojo.com": [15775], "vms.drweb.com": [4783], "scanmyserver.com": [14332], "*.mystockoptions.com": [10787], "neutrons.ornl.gov": [11693], "www.voyage-prive.it": [17858], "*.oxfordjournals.org": [12190], "www.mtekk.us": [10681], "stations.fcc.gov": [5709], "emoryhealthcare.org": [5211], "*.ligatus.com": [9341], "openhost.net.nz": [12036], "www.4plebs.org": [161], "www.stavrovski.net": [15439], "blogs.windows.com": [18342], "www.trailofbits.com": [16656], "*.dolphin-emu.org": [4644], "*.heteml.jp": [7375], "www.trustedshops.*": [16787], "www.d2jsp.com": [3997], "tandfonline.com": [8118], "venuemaps.virtualearth.net": [17755], "ajax.cloudflare.com": [3285], "za1.effectivemeasure.net": [5109], "chat.zoho.com": [18884], "japantimes.co.jp": [16196], "esue.ohio-state.edu": [11761], "www.aioe.org": [744], "foresight.org": [6028], "abbonati.tiscali.it": [16498], "knightlab.com": [8945], "ws.mytemp.email": [10790], "justmoon.net": [8700], "www.rbwm.gov.uk": [19539], "mitderzeitspielen.sbb.ch": [15693], "liwenhaosuper.com": [9519], "*.ofcom.org.uk": [11733], "dev.gogetssl.com": [6780], "individual-villas.co.uk": [18490], "code.jquery.com": [8451], "sourcetreeapp.com": [15176], "m.baifubao.com": [1621], "chat.linuxlovers.at": [9432], "warframe.com": [17977], "www.hertzarabic.com": [7361], "dornsife.usc.edu": [17278], "capify.org": [2817], "gidapp.com": [6331], "www.threatpost.com": [16394], "*.gaiahost.coop": [6302], "finavia.fi": [5834], "www.mcgrhill-warez.com": [10121], "cdn-staging.demandstudios.com": [4344], "neonmob.com": [11155], "www.psychologytoday.com": [13189], "media.uow.edu.au": [17350], "arte.tv": [18966], "gnomejournal.org": [6354], "www.sport.bt.com": [1551], "www.freakattack.com": [5593], "download.untangle.com": [17370], "help.gmx.com": [6350], "evision.brunel.ac.uk": [19021], "www.kde-apps.org": [19461], "www.cooperating-objects.eu": [3647], "www.worlddab.org": [18448], "www.onecloudsecurity.com": [11830], "www.linuxmonk.ch": [9433], "caprioli.se": [12590], "www.kabelmail.de": [8760], "www.uppsalahem.se": [17397], "libdlo.freedesktop.org": [6126], "media.podcasts.it.ox.ac.uk": [17271], "doodle.com": [4681], "manifesto.kde.org": [8718], "www.popcorntime.io": [12915], "www.bebo.com": [1743], "www.howto.gov": [7568], "ornl.gov": [11693], "are.berkeley.edu": [17240], "www.publicknowledge.org": [13205], "www.commoncrawl.org": [3486], "accounts.zoho.com": [18884], "www.canadahelps.org": [2792], "www.bcgolf.com": [1507], "spicebox.co.jp": [15265], "consultationhub.edinburgh.gov.uk": [5084], "easylist.adblockplus.org": [561], "spreadshirt.net": [15300], "dma.org.uk": [4522], "s.map.qq.com": [13285], "en.gamigo.com": [6445], "ssl.google-analytics.com": [6839], "*.shopstyle.de": [14720], "www.roddis.net": [13943], "www-misc.chpc.utah.edu": [17288], "modul.tivi.de": [19800], "www.megashare.im": [10231], "blogs.iis.net": [7741], "store.malwarebytes.org": [9929], "byo.com": [2308], "sex8.cc": [14639], "micropage.opera.com": [12050], "www.businesslink.gov.uk": [2460], "kyani.net": [9049], "s2.qhimg.com": [13302], "blog.veracode.com": [17614], "zyan.scripts.mit.edu": [9749], "www.expo-virtuelle.fss.ulaval.ca": [17229], "www.ovh.sn": [12173], "cms.elderscrolls.com": [18830], "testing.gimp.org": [19218], "uajobs.hr.uillinois.edu": [16960], "imgssl.superpages.com": [15633], "*.komro.net": [8971], "*.tor2web.com": [16566], "yourdatelink.com": [18727], "community.ally.com": [864], "planningpublicaccess.southampton.gov.uk": [15191], "m.3dcenter.org": [122], "docs.rtems.org": [13472], "*.cubics.com": [3910], "www.hatatorium.com": [7237], "sbi.co.in": [14082], "myaccount.earthlink.net": [5007], "www.darlinghq.com": [4155], "forums.hubspot.com": [7594], "*.dawandastatic.com": [4098], "translink.co.uk": [16675], "blog.bufferapp.com": [2402], "worksthatwork.com": [18445], "space.hgo.se": [7058], "www.localmedia.org": [9539], "*.nudevista.com": [11569], "www.sozialwissenschaften.htwk-leipzig.de": [7114], "www.onjive.com": [11811], "*.globalamicistore.com": [6721], "blog.alipay.com": [817], "can01.anibis.ch": [18956], "web.datemas.de": [4217], "www.shtuff.it": [14748], "epa-sprg.ornl.gov": [11693], "bhiab.se": [1836], "www.sharefest.me": [14676], "vmm.cern.ch": [2575], "www2.ulaval.ca": [17229], "wiki.libsdl.org": [9290], "media.vodafone.de": [17814], "spatialbuzz.com": [15231], "2006.weblogawards.org": [18128], "*.greenvilleonline.com": [6939], "sl-div.web.cern.ch": [2575], "anon-ib.su": [1039], "crysys.hu": [3837], "today.lbl.gov": [9065], "secure.remotelyanywhere.com": [13762], "support.mashery.com": [10046], "gotoassist.com": [6786], "registrierung.gmx.net": [6350], "*.codeplex.com": [3373], "imagemagick.org": [7978], "uat-net.technoratimedia.com": [16044], "apex.go.sonobi.com": [15139], "videogamegeek.com": [17685], "static.shoutback.com": [14738], "reportcard.wmflabs.org": [18296], "1stwarning.com": [64], "www.ala.org": [298], "www.f5networks.com.br": [5545], "*.falconjet.com": [4166], "your-freedom.net": [18721], "encrypted.google.com": [6834], "www.fortum.com": [6059], "sso.seagate.com": [14437], "yourvideofile.org": [18740], "dragonflydigest.com": [4739], "partiality.itunes.apple.com": [1120], "bytemark.co.uk": [2489], "bestwebhostinggeek.com": [870], "grupotriton.com": [6987], "www.ch-edoc-passantrag.admin.ch": [19648], "www.hanford.gov": [7194], "*.ksl.com": [8751], "roundcube.xeneris.net": [18560], "chakraos.org": [2984], "thunder.cdn.overdrive.com": [12160], "bkb.ch": [19333], "slp.somerset.gov.uk": [15127], "budsgunshop.com": [2395], "backup.com": [11506], "tizen.org": [16506], "download.xdk.intel.com": [8209], "script.ioam.de": [7783], "www.beanbaginc.com": [1731], "s2.thejournal.ie": [16224], "webtrends.telegraph.co.uk": [16082], "www.bugzil.la": [2409], "oas.monster.com": [10564], "search.zoho.com": [18884], "cdn.zeeagency.com": [18809], "login.variety.com": [17565], "www.ml314.com": [9756], "www.lightthenight.org": [9344], "domainskate.com": [4657], "www.iab.org": [7663, 7664], "rim.ponemon.org": [12896], "verisign.ch": [17623], "smart-invests.biz": [14983], "cengagebrain.com": [2937], "hollywoodreporter.com": [7454], "pressbooks.ch": [19516], "*.hetnet.nl": [8744], "forestsangha.org": [6029], "www.mibew.org": [10339], "es.explore.t-mobile.com": [15772], "piwik.vandyke.com": [17549], "abo.faz.net": [5554], "www.kaazing.com": [8759], "public.bizo.com": [2031], "*.suppliesfordreams.org": [15636], "*.mci.edu": [10125], "tk.de": [16037], "*.ads.neudesicmediagroup.com": [11281], "catlinseaviewsurvey.com": [2905], "www.shmoocon.org": [14709], "on.msnbc.com": [1920], "wiki.vorratsdatenspeicherung.de": [295], "samara.rt.ru": [13469], "movie4k.org": [10636], "gin.collabora.co.uk": [3419], "www.carrefour.es": [19042], "www.g5.gov": [6300], "antispam-ev.de": [1069], "planet.xamarin.com": [18540], "www.scambs.gov.uk": [19566], "vespermarine.com.au": [17651], "scjobs.sciencemag.org": [14382], "owncloud.lebsanft.org": [19352], "businessaffairs.stanford.edu": [15383], "nowsecure.com": [11533], "status.transifex.com": [16669], "*.fairphone.com": [5636], "www.ihgplc.com": [7738], "www.osdisc.com": [19468], "emskr.chefkoch.de": [3058], "braintreepayments.com": [2274], "www.ansa.it": [1055], "a3li.li": [224], "*.meritrustcu.org": [10284], "csirt.vutbr.cz": [17522], "www.cyberfret.com": [3970], "archives.williams.edu": [18316], "drive.google.com": [6834], "www.jedec.org": [19319], "redbullmobile.com.au": [13670], "cstatic.weborama.fr": [18138], "*.umonitor.com": [16982], "nikevideo.nike.com": [11401], "www.btsportbusiness.com": [1577], "*.thenation.com": [16200], "cashback.co.uk": [2881], "winzip.com": [18332, 18333], "pgbrandsampler.ca": [13121], "www.floridalobbyist.gov": [19185], "www.qxl.no": [13385], "www.skandia.se": [14894], "auth.univ-paris-diderot.fr": [12401], "bugs.pcbsd.org": [12216], "synology.com": [15738], "cubify.com": [3911], "www.iweb.com": [7875], "3suisses.de": [137], "goeswhere.com": [6805], "*.centrum.cz": [2959], "p.sfx.ms": [14650], "nic.ad.jp": [10918], "classic.fastmail.com": [5688], "booklog.jp": [2203], "images.minalyzer.com": [10405], "passport.yandex.by": [18648], "fool.co.uk": [10613], "www.elfa.se": [5161], "*.ed2go.com": [2937], "instat.com": [8026], "*.msu.edu": [19414], "donate.splcenter.org": [14157], "cult-labs.com": [3914], "fp.intego.com": [8201], "ec-cdn-assets.stitcher.com": [15476], "sakha.rt.ru": [13469], "www.chasepaymentech.com": [3027], "www.mett.tk": [3533], "*.superbreak.com": [7452], "schneierfacts.com": [19569], "bioinformatics.knowledgeblog.org": [8948], "rsvp.com.au": [13466], "banking.spkrb.de": [19619], "autodiscover.sedoholding.com": [14545], "forums.obdev.at": [11695], "www.ylilauta.org": [19792], "www.privatecore.com": [13100], "account.aol.com": [321], "ac.qq.com": [13284], "secure.paytoll.eu": [12489], "tracker.bugcrowd.com": [2406], "atlas.thecthulhu.com": [16334], "www.chicagotribune.com": [3072], "lh4.google.com.*": [6837], "s.tbcdn.cn": [15982], "www.scotch.io": [14395], "www.fivethirtyeight.com": [5894], "www.eduroam.es": [5101], "www.hsbc.*": [7098], "club.360buy.com": [111], "gmx.ph": [6350], "local.amazon.co.uk": [917], "dotsec.com": [4696], "folio.jhu.edu": [16296], "*.fiercemarkets.com": [5776], "www.jolla.com": [8622], "msi.world.tmall.com": [19684], "www.esiss.ac.uk": [4961], "review.opencontrail.org": [11929], "statuspage.io": [15438], "my.medicare.gov": [19392], "identity.stanford.edu": [15383], "cruisersforum.com": [3832], "ssl.connextra.com": [3585], "www.mediastorehouse.net": [10146], "*.kotaku.com": [8993], "www.scsk.jp": [14090], "canddi.com": [19036], "seatgeek.com": [14451], "static.jsconf.us": [8458], "myesi.esi-group.com": [4959], "community.dell.com": [4335], "favorites.live.com": [9483], "desv.dict.cc": [4455], "g.microsoftonline.com": [10367], "api.deepin.org": [4302], "maplesoft.com": [9972], "uslaw.link": [17445], "www.conversejs.org": [3626], "gmplib.org": [6348], "instalacja.tms.pl": [19686], "www.aspectsecurity.com": [1271], "hounddogcentral.com": [7563], "www.ipv6-adresse.dk": [7807], "ondemandui.webtrends.com": [18171], "studentbenefits.ca": [15537], "www.intand.com": [15941], "kore.io": [8985], "*.uploading.com": [17394], "tr.support.tomtom.com": [16540], "open.bufferapp.com": [2402], "www.seo.com": [14102], "tandridge.gov.uk": [15943], "bugs.exim.org": [5494], "whatbox.ca": [18232], "secure.pangaea.de": [12207], "ubuntu-nl.org": [17099], "*.partypoker.com": [12420], "spicybite-dublin1.just-eat.ie": [19328], "domeinenrz.nl": [11132], "www.jeffnabers.com": [8547], "www.vvztahy.vutbr.cz": [17522], "emapawards.com": [5196], "static.pubmed.gov": [13195], "bluewin.ch": [2157], "kolektiva.com": [8963], "www.mims.com.sg": [9743], "mdshooters.com": [10043], "poodletest.com": [12278], "myaccount.stubhub.de": [15534], "kde-help.org": [19461, 19462], "*.redbullmediahouse.com": [13668], "4.darkroom.shortlist.com": [14734], "pubster.twitch.tv": [16888], "seo.com": [14102], "tox.im": [16617], "service.xs4all.nl": [18535], "www.sstic.org": [14185], "portal.thalysnet.com": [16172], "maps.hants.gov.uk": [7196], "globalpublicsquare.blogs.cnn.com": [18428], "www.craigmurray.org.uk": [19087], "*.lohud.com": [9564], "nicereply.com": [11385], "www.fe-ddis.dk": [5563], "unicentre.uow.edu.au": [17350], "*.devconf.cz": [4416], "dassaultfalcon.com": [4166], "netgear.com": [11232], "staging-blogs.intel.com": [8209], "pinkong.bbs.taobao.com": [15952], "ticketonline.de": [16417], "www.sac.se": [14217], "notif.bonadza.com": [2194], "www.astronomicaltours.net": [1305], "cdn.makeagif.com": [9911], "catalog.plsinfo.org": [12537], "exjobb.meb.ki.se": [8725], "towelroot.com": [19691], "www.ks.uiuc.edu": [16956], "gullipics.com": [19232], "motion-store.adtile.me": [640], "www.cs.stanford.edu": [15383], "ezcrypt.it": [5001], "checkout.looppay.com": [9605], "www.ourlocality.org": [12144], "daohang.taobao.com": [15952], "it-sicherheit.de": [8193], "geak.tk": [3533], "aur.pacbsd.org": [12307], "berrange.com": [4142], "secure.progress.com": [13132], "dehr.dict.cc": [4455], "*.consumerreportscdn.org": [3600], "firstvds.ru": [5872], "campina.com": [2782], "torridge.greenparty.org.uk": [6925], "grupy-dyskusyjne.money.pl": [10547], "www.gemcutter.org": [14021], "tittygram.com": [16504], "industrybrains.com": [9984], "www.matrix.org": [10077], "downloads9.mamp.info": [19379], "nanjing.jhu.edu": [16296], "g.microsoft.com": [10364], "shop.tdc.dk": [15796], "nsa-observer.net": [11547], "www.encrypteverything.ca": [5237], "stratum0.org": [15512], "clm.globalcapacity.com": [6723], "s.sample.yahoo.co.jp": [18640], "ww3.lawschool.cornell.edu": [3676], "static0.gac.edu": [6301], "unsw.edu.au": [16995], "buyiphone.apple.com": [1120], "cr2c.stanford.edu": [15383], "ebid.net": [19133], "www.freedom-ip.com": [6164], "www.helpdesk.umd.edu": [17263], "invasion-turnonsocial.netdna-ssl.com": [8310], "donate.perlfoundation.org": [12575], "www.tepamine.com": [4057], "assets.filestackapi.com": [5801], "www.clicktotweet.com": [3256], "www.git-scm.com": [6673], "www.verisign.it": [17623], "*.duckduckgo.com": [4792], "static.miniclipcdn.com": [10423], "www.efa.org.au": [5152], "www.imagerights.com": [7980], "radioplayer.co.uk": [13521], "youtube.sg": [18709], "youtube.si": [18709], "youtube.sk": [18709], "lumosity.com": [9668], "youtube.sn": [18709], "www.securityinnovation.com": [14530], "yabs.yandex.kz": [18652], "wiki.aircrack-ng.org": [750], "lumendatabase.org": [9661], "www.zcarc.com": [7372], "www.youtube.com.eg": [18709], "www.twinsornot.net": [16881], "*.fh-kiel.de": [17298], "i.iucnredlist.org": [7866], "www.upi.com": [17004, 17005], "www.directbox.net": [4529], "www.law.washington.edu": [17291], "wscont.apps.microsoft.com": [10364], "www.lastenrad.vcd.org": [17474], "origin.static.ctctcdn.com": [3903], "cbdreader.christianbook.com": [3112], "donate.greenparty.org.uk": [6925], "www.offensive-security.com": [11736], "www.admin.ias.edu": [7669], "www.fiscal.treasury.gov": [16704], "jobs.groupon.com": [6974], "dice.com": [4452, 4453], "www.openpgpjs.org": [11965], "media.familychristian.com": [5645], "cuidadodesalud.gov": [3913], "www.fws.gov": [17060], "www.houndci.com": [7562], "oo.opinionlab.com": [12054], "moneybookers.com": [10550], "arena.westsussex.gov.uk": [18211], "dicht.nlnetlabs.nl": [10941], "blog.zdf.de": [19800], "ar.libreoffice.org": [9311], "www.tindie.com": [16471], "info.digitalriver.com": [4483], "www.mybenefitscalwin.org": [10745], "www.visahq.com": [17762], "helpforum.sky.com": [14924], "accounts.google.*": [6837], "www.conoha.jp": [3587], "ideastations.org": [7927], "www.mywot.com": [10798], "www.ookla.com": [11895], "cdn.nejm.org": [11303], "downtownhost.com": [4730], "tu-chemnitz.de": [15869], "www.library.nuigalway.ie": [11063], "*.vast.com": [17572], "*.janraincapture.com": [8508], "reporter-ohne-grenzen.de": [13783], "sms.cam.ac.uk": [17243], "www.valueclick.com": [17541], "tv.com": [15878], "rpw.sh": [14006], "www.clickfunnels.com": [3246], "jobs.thenextweb.com": [16302], "pp-shop.vodafone.co.uk": [17813], "www.ebenefits.va.gov": [17019], "*.bible.com": [18710], "tuki.zoner.fi": [18894], "*.extatic.org": [5519], "ssl.brucon.org": [2376], "liberalamerica.org": [9295, 9296], "www.octopoos.com": [11715], "erpm.umich.edu": [17266], "www.cryptography.com": [3895], "webapp.halton.gov.uk": [19236], "eromang.zataz.com": [18800, 18801], "china.mims.com": [9743], "static.velvetcache.org": [17602], "oberoesterreich.neos.eu": [10899], "www.luciosgold.ca": [9648], "9gag.com": [212], "*.groupon.co.uk": [6977], "developers.google.com": [6834], "aboutairportparking.com": [12169], "magix.com": [9708], "project.tmt.org": [16370], "www.suntech.cz": [19639], "target.smi2.net": [15005], "addictionhelpchat.com": [575], "vodafone.ie": [17815], "au.support.tomtom.com": [16540], "amazontrust.com": [919], "www.posterstoreuk.com": [12970], "www.contentful.com": [3614], "subscriptions-dsms.consilium.europa.eu": [5421], "www.youtube.com.tw": [18709], "affl.sucuri.net": [15575], "www.petridish.org": [12598], "i-cdn.openx.com": [11995], "www.youtube.com.tr": [18709], "translationproject.org": [16674], "uas.osu.edu": [11760], "bizchannel.cimbbank.com.kh": [2604], "onename.io": [11837], "kabeldeutschland.com": [8760], "mdgx.com": [9731], "www.folksam.se": [5987], "*.usni.org": [17046], "download-ssl.halowaypoint.com": [7176], "www.weltbild.ch": [18197], "solihull.greenparty.org.uk": [6925], "allplayers.com": [834], "go.bostonglobemedia.com": [2235], "help.fronter.com": [19200], "*.gentooquebec.org": [6532], "www.ekomi-us.com": [4921], "*.cryptomonkeys.com": [3881], "www.natoonline.org": [11047], "www.bitquick.tw": [1943], "offeredby.net": [12388], "freespeech.org": [6151], "crainsnewyork.com": [3758], "passwordcard.org": [12434], "static.hsappstatic.net": [7101], "www.websitealive5.com": [18149], "www.daemon-systems.org": [4101], "static.garagegames.com": [6457], "details.payment.yahoo.co.jp": [18640], "tmblr.co": [16514], "bignerdranch.com": [1859], "beckerweb2.wustl.edu": [17993], "www.intechnology.co.uk": [8035], "us1.siteimprove.com": [14880], "demo.hitbtc.com": [7420], "onetoone.apple.com": [1120], "ecc-platform.org": [4879], "lite.socialcube.net": [15070], "upc.es": [12895], "us.icecat.biz": [7914], "hyperboria.net": [7646], "software.topcoder.com": [13070], "debt.wmtransfer.com": [18076], "www.cdmp.allianz.com": [18950], "nolp.dhl.de": [4034], "wiki.wmtransfer.com": [18076], "readcube.com": [13606], "vip.bitcoin.co.id": [1964], "login.yellowbot.com": [18669], "www.bluegiga.com": [2148], "exch-eu.atdmt.com": [10360], "i6.c.dk": [2498], "images.contentreserve.com": [19077], "jubii.dk": [8659], "*.footballfanatics.com": [6013], "office365.microsoft.com": [10364], "checkdomain.de": [3049], "help.goodsie.com": [4931], "www.yeah.net": [18665], "bmmetrix.com": [2161], "piwik.1u1s.de": [67], "horizon.halton.gov.uk": [19236], "app.zingcheckout.com": [18871], "stonewall.org.uk": [19629], "northyorks.greenparty.org.uk": [6925], "tribal.hants.gov.uk": [7196], "r.i.ua": [7654], "status.pagerduty.com": [12332], "jquery.com": [8451], "socializer.cc": [15071], "play.google.com": [6834], "surveillancelaw.org": [15656], "legacy.kingston.com": [8901], "www.coinimal.com": [3405], "www.247filmz.com": [79], "bugs.webkit.org": [18125], "marshallapps.usc.edu": [17278], "video.fosdem.org": [6069], "m.friendlyduck.com": [6214], "www.intern.arch.ethz.ch": [4975], "www.afcom.com": [281], "cas.nottingham.ac.uk": [11528], "www.raspbian.org": [13570], "plancompare.medicare.gov": [19392], "kat-de-paris.fr": [8813], "www.harperreed.com": [7209], "gamebillet.com": [6429], "www.braintreepayments.com": [2274], "www.rack911.com": [13495], "www.Avanza.se": [1443], "withsix.com": [18379], "freescorenation.com": [6131], "r7.mzstatic.com": [1119], "tech.just-eat.com": [19328], "www.maemo-apps.org": [19461], "imap.ct.infn.it": [7766], "calcentral.berkeley.edu": [17240], "youtube.com.tr": [18709], "i4.connect.microsoft.com": [10364], "www.mathjobs.org": [10070], "www.goduke.com": [4799], "www.sohh.com": [14149], "portal.triggit.com": [16734], "careers.sky.com": [14924], "ur.taobao.com": [15952], "*.yottaa.net": [18701], "www.kettering.gov.uk": [8861], "www.umassathletics.com": [17264], "www.aartdevos.dk": [397], "jackrabbit.apache.org": [1086], "www2.seetickets.com": [14547], "media.office.co.uk": [11742], "www.thechinastory.org": [16257], "web.eloqua.com": [5178], "www.reparieren.ch": [19733], "www.oskuro.net": [12122], "lqttswr.readspeaker.com": [13610], "ultimatepoker.com": [17130], "trygghansa.se": [16808], "stats.ipinyou.com": [7803], "expert.yandex.com.tr": [18649], "burstnet.eu": [2445], "ipv4.nebezi.cz": [11126], "commonroom.engagedoncaster.co.uk": [5261], "www.evolvesocially.org": [5468], "beta.skypeassets.com": [14939], "ncds.netflix.com": [11229], "www.digikam.org": [4474], "www.insightcommunity.com": [5940], "srdrvp.com": [15340], "ru-golos.ru": [13477], "status.online.net": [11870], "account.kuleuven.be": [8816], "www.hostdeclaration.ru": [4287], "www.fortresslinux.org": [6058], "svn.filezilla-project.org": [5796], "www.opencores.org": [11930], "us1.effectivemeasure.net": [5109], "cloudns.net": [3276], "snip2code.com": [15036], "www.hwsw.hu": [7119], "www.uneddit.com": [17162], "tiki.org": [16444], "fccsyd.unizar.es": [17356], "djangoeurope.com": [4591], "ciw.edu": [2857], "osdir.com": [11668], "dragoonarmy.msi.com": [9792], "www.cloutoday.nl": [3277], "*.pair.com": [12336], "upstart.com": [17400], "*.freelancer.com": [6176], "www.xm1math.net": [18578], "doi.org": [4075], "merethis.com": [10283], "www.dataprotection.ie": [4172], "www.agra-net.net": [734], "art.com": [1219], "linux-magazine.com": [9394], "secure.cryptocapital.co": [3867], "groups.google.*": [6837], "www.interaction.bell.ca": [1763], "sunybroome.edu": [15609], "www.asmallorange.com": [214], "www.allegro.pl": [849], "www.skyacademy.com": [14928], "www.internationalman.com": [8262], "*.stadtwerke-bamberg.de": [15368], "facepunch.com": [5624], "*.samsung.cn": [14265], "content.foto.my.mail.ru": [9874], "iwmnetwork.com": [7872], "is.vutbr.cz": [17522], "www.lplogin.com": [569], "www.coreos.com": [3665], "smyl.es": [14141], "status.simple.com": [14820], "zwame.pt": [18925], "www.crc.id.au": [2656], "metrics.tape.tv": [15956], "www.document.no": [4626], "*.hackerspace.gr": [6915], "sso-prod1.cisco.com": [3162], "redwoodsinyosemite.com": [13703], "www.zugaina.org": [18919], "m.mobile.de": [19403], "cache.boston.com": [2233], "www.talgov.com": [15924], "*.aoe.com": [316], "www.x10hosting.com": [18498], "plugin.mediavoice.com": [12860], "springrts.com": [15306], "ebuyer.com": [5043], "webmail.fastdomain.com": [5672], "engineyard.com": [5265], "feedproxy.google.com": [6834], "*.frim.nl": [6220], "pond.imperialviolet.org": [8017], "www.cryptosanta.xyz": [3869], "prod-web.neu.edu": [10902], "energylinx.co.uk": [19159], "events.jquery.org": [8450], "carlsbad.org": [2855], "myportal.lacie.com": [9117], "www.onboardkit.com": [11823], "acnfp.food.gov.uk": [19187], "hw.infowars.com": [8129], "passport.wmtransfer.com": [18076], "login.wustl.edu": [17993], "www.searx.me": [14449], "personaldemocracy.com": [12582], "cortera.com": [3695], "system.netsuite.com": [11209], "www.individual-villas.co.uk": [18490], "jobs.datacenterknowledge.com": [14829], "www.sklik.cz": [14915], "www.dolartoday.com": [4639], "dh2011.stanford.edu": [15383], "iopscience.iop.org": [8195], "reason.com": [13635], "cloudorado.com": [3311], "autographicsportal.axosoft.com": [1477], "www.verisign.com.sg": [17623], "www.postscapes.com": [12983], "portals.radware.com": [13524], "www.concrete5.org": [3549], "cdn.sonyentertainmentnetwork.com": [15149], "archive.is": [1164], "*.pumo.com.tw": [13228], "codeascraft.com": [3358], "media5.congstar-media.de": [3576], "*.napoleonmakeupacademy.com.au": [11036], "dryicons.com": [4785], "rights.1688.com": [36], "cloud.feedly.com": [5738], "www.demo.com": [4027], "c9.io": [3280], "developer.nvidia.com": [10985], "samples.libav.org": [9291], "docs.aliyun.com": [821], "ez-download.com": [4999], "www.genome.gov": [17027], "www.baratikor.com": [4742], "measuredvoice.com": [2824], "trendblog.deichmann.com": [4317], "player.twitch.tv": [16888], "hollywoodlife.com": [7455], "c1-blog.flirble.org": [16191], "www.communicatoremail.com": [3500], "www.cm.be": [3109], "www.bioshockinfinite.com": [1901], "spil.tv2.dk": [15881], "risparmiopostale.it": [13903], "xpra.org": [18587], "res.cloudinary.com": [3307], "intranet.humber.nhs.uk": [10913], "leap3.singlehop.com": [14847], "www.energiedesign.htwk-leipzig.de": [7114], "plus.google.com": [6834], "www.gfsfrance.com": [6326], "utsandiego.com": [17070], "aimatch.com": [742], "www.subterraneangames.com": [15568], "lis.illinois.edu": [17258], "starbucks.com": [15400], "www.trustedshops.co.uk": [16787], "passagebank.com": [12426], "www.factorable.net": [5626], "www3.rbwm.gov.uk": [19539], "www.trustedreviews.com": [16792], "youtube.ng": [18709], "opswat.com": [11657], "clientes.wiroos.com": [19761], "domenovyprohlizec.cz": [4671], "www.n0where.org": [10860], "youtube.no": [18709], "feedburner.com": [5734], "*.redcross.org.uk": [2343], "youtube.nl": [18709], "coursefinder.io": [3717], "jpcsp.org": [5224], "www.n-aana.org": [11093], "knowledgebase.musicmetric.com": [10719], "*.nuggad.net": [11571], "ebppprod.alipay.com": [817], "www.financnahitparada.sk": [5828], "w.forumwizard.net": [6064], "www.rockvalleycollege.edu": [13938], "www.fashiondip.com": [5666], "developer.gimp.org": [19218], "u.osu.edu": [11760], "sobitia.ya.ru": [18626], "arts.leeds.ac.uk": [17318], "www.lime-technology.com": [19365], "wifilogin.xfinity.com": [19784], "reelseo.com": [13711], "www.lanayachocolate.com": [9120], "login.e.bibl.liu.se": [9084], "i4.zst.com.br": [18915], "forsakringskassan.se": [6050], "piraten-ufr.de": [12717], "*.rutgers.edu": [14048], "shop.cryptalloy.de": [3845], "www.newstatesman.com": [11310], "blogs.yandex.by": [18648], "www.emubrightfutures.org": [18428], "*.zkb.ch": [19333], "guardianproject.info": [7001], "ads.ibibo.com": [7900], "dnshistory.org": [4067], "www.zayo.com": [18802], "library.williams.edu": [18316], "*.seafile-server.de": [14435], "nagios.debian.org": [4275], "avonmaquiagem.com.br": [1455], "admin.solicitor-concierge.com": [15116], "wiki.cse.buffalo.edu": [17297], "static0.urbandictionary.com": [17407], "www.hope.net": [7493], "jaim.at": [8494], "www.nicereply.com": [11385], "buzzurl.jp.eimg.jp": [2481], "www.securingthehuman.org": [14517], "videodroid.org": [17694], "verdadmedia.com": [17618], "reg.ft-static.com": [19201], "life.tenpay.com": [16113], "supermedia.com": [15615], "*.stack.nl": [15360], "pharmacies.usc.edu": [17278], "aplicar.internetessentials.com": [19300], "www.leapmotion.com": [9209], "hertz.com": [7372], "community.bluejeans.com": [2139], "*.articulate.com": [1233], "my.faa.gov": [5713], "thesatanictemple.com": [16308], "dzone.com": [4095], "jamanetwork.com": [8411], "*.mozdevgroup.com": [10648], "cryptome.org": [3879], "*.myshopify.com": [14725], "*.owkb.ch": [19333], "chs.us": [3126], "wiki.nci.nih.gov": [11052], "www.drchrono.com": [4747], "ffa.vutbr.cz": [17522], "kriminalvarden.se": [9012], "*.tennessee.edu": [17342], "contest.yandex.com": [18651], "zandvoort.nl": [11132], "zmanda.com": [18880], "dela.dict.cc": [4455], "stations.itunes.apple.com": [1120], "blog.bofh.it": [2178], "pokerstarsapps.com": [19504], "www.musopen.org": [10725], "*.r26.net": [15964], "mail.invitel.hu": [8327], "img.vidup.me": [17704], "registry.hub.docker.com": [4616], "coy.im": [3741], "aka.hmrc.gov.uk": [7084], "store.axosoft.com": [1477], "www.sipgate.co.uk": [14855], "partner.skylink.cz": [14937], "www.ashlandfiber.net": [1253], "blog.intercom.io": [8244], "virtualinventions.com": [17752], "freundewerben.congstar.de": [3577], "*.jobcloud.ch": [19322], "pfa.idg.se": [7705], "deltager.no": [4338], "giroloyal.web.de": [18050], "www.easy-hebergement.fr": [5033], "img.fastshare.cz": [5674], "aitao.taobao.com": [15952], "sandeen.net": [14277], "www.cumulusnetworks.com": [3919], "www.bcobandits.com": [1716], "apps.telford.gov.uk": [19669], "fb.answers.microsoft.com": [10364], "sedo.co.uk": [14541], "www.igd.fraunhofer.de": [6112], "rosettacode.org": [13969, 13970], "portal.acs.ncsu.edu": [11492], "regional.osu.edu": [11760], "www.opennet.ru": [11961], "socrates.stanford.edu": [15382], "www4.plymouth.ac.uk": [12833], "www.snapdeal.com": [15030], "cn.forums-stage.oracle.com": [12082], "www.wavpin.com": [18009], "paydirtgold.com": [12471], "nhseportfolios.org": [10914], "investor.shareholder.com": [14677], "propublica.org": [13111], "launch.stellar.org": [15464], "www.hertz247.es": [7365], "smbmarketplace.cisco.com": [3162], "d.alipayobjects.com": [817], "www.perspectives-project.org": [18428], "playfire.com": [12805], "councildecisions.bury.gov.uk": [19027], "optimized-by.rubiconproject.com": [14014], "www.jellynote.com": [8550], "www.studentaffairs.illinois.edu": [17258], "yuba.harvard.edu": [7218], "www.is.vutbr.cz": [17522], "secure.accountsupport.com": [460], "eblastengine.upickem.net": [17389], "groupees.com": [6971], "www.wickedlasers.com": [18279], "posteo.de": [12969], "www.cair.com": [2514], "savecrypto.org": [14311], "s.zumzi.com": [18923], "services.fit.edu": [5942], "myaccountholding.talktalk.co.uk": [15929], "autoimg.rtl.de": [13474], "newsletter.f-secure.com": [5541], "www.hertz.com": [7372], "www.probmods.org": [13118], "bot.ngx.cc": [11376], "touch.otvet.mail.ru": [9874], "metrics.carphonewarehouse.com": [2861], "jupiterartland.org": [8685], "wwwdc2.cinelease.com": [7372], "w03.hillingdon.gov.uk": [7410], "a.disquscdn.com": [4570], "www.vpnsecure.me": [17505], "*.cwrap.org": [19097], "agendaless.com": [724], "img04.rl0.ru": [13914], "wikimedia.de": [18296], "cdn.zeltser.com": [18813], "minside.amnesty.no": [974], "headphone.com": [7255], "nextpowerup.com": [11370], "m.tune.yandex.by": [18648], "charterourcommunity.com": [3023], "files.srb2.org": [14165], "www.botfrei.de": [2241], "*.nykeurope.com": [10994], "ohloh.org": [11766], "weather.bartbania.com": [1682], "cornell-classic.univcomm.cornell.edu": [3676], "proxy5.switchadhub.com": [15701], "www.htwk-alumni.de": [7114], "piwik.org": [12733], "simonsfoundation.org": [14817], "nice.freedesktop.org": [6126], "uni-stuttgart.de": [17282], "such001.reichelt.de": [13744], "portal.acs.org": [929], "www.computerbase.de": [3538], "www.pogoda.yandex.by": [18648], "test-dmtotem.web.cern.ch": [2575], "www.housing.uic.edu": [17231], "natureshop.com": [11105], "dslreports.ca": [4081], "us.gamespot.com": [6426], "www.trafficprivacy.com": [16649], "www.commsys.isy.liu.se": [9083], "www.myedaccount.com": [10755], "www.familie.san.aok.de": [317], "www.ivorde.com": [8402], "theiconic.com.au": [16292], "www.devon.gov.uk": [4428], "telesis.wustl.edu": [17993], "techempower.com": [16009], "*.overcast.fm": [12161], "www.auscert.org.au": [1372], "help.channel5.com": [2998], "rapidbuyr.com": [13555], "*.vimg.net": [12272], "df-feeds.live.net": [9482], "a127-ess.nyc.gov": [11292], "www.kosimak.com": [8992], "art2po.com": [1220], "www.ourcommonplace.com": [12142], "www.api.picatcha.com": [12659], "www.511tactical.com": [169], "sigmaxi.org": [14779], "retailers.comixology.com": [3465], "*.thomascook.com": [16375], "nordkapp.net": [11478], "db.risk.io": [13901], "www.dedicatedgaming.com.au": [4291], "www.quantixtickets8.com": [13339], "simplifydigital.co.uk": [19593], "app-de5.resrc.it": [13599], "www.webtorrentsearch.com": [16228], "penza.rt.ru": [13469], "gotpantheon.com": [12373], "ext.err.ee": [5369], "cb.sailthru.com": [14243], "greyhole.net": [6946], "www.campusjob.com": [2784], "finance.google.*": [6837], "www.wdr.de": [18015], "www.voxility.com": [17855], "billing.axeso5.com": [1473], "healthymeals.nal.usda.gov": [17209], "*.rp-api.com": [13786], "hubzero.org": [7116], "oeticket.com": [11731], "www.rhein-neckar-loewen.de": [13859], "www.gismeteo.ua": [6670], "extensiondefender.com": [5521], "sbvimprover.com": [14084], "www.teamviewer.com": [16004], "appetize.io": [1115], "www.iajapan.org": [7671], "*.indabamusic.com": [8049], "npl.stanford.edu": [15383], "www.europe-consommateurs.eu": [19166], "www.varnish-software.com": [17569], "www.iaea.org": [7666], "wireclub.com": [18362], "www.healthcareers.nhs.uk": [10913], "www.riscos.com": [13432], "taylorandfrancis.com": [8118], "*.directory.live.com": [9483], "*.easyspace.com": [5036], "ovh.pt": [12173], "ok.de": [11626], "account.tectonic.com": [16055], "ovh.pl": [12173], "cartersoshkosh.ca": [2869], "docs.bleachbit.org": [19007], "youmiwang.tmall.com": [19684], "www.4kdownload.com": [151], "apidev.snip2code.com": [15036], "marketplace-used.com": [10019], "unitedsafcu.org": [17208], "buy.fineproxy.org": [5846], "stats.bedis.eu": [1745], "www.dacapoalfine-dd.de": [4099], "alchemyglobal.com": [784], "pixelexit.com": [12737], "majors.stanford.edu": [15383], "hkw.de": [7080], "ofono.org": [19451], "webfaction.com": [18063], "r.web.de": [18050], "ibm.biz": [19278], "open-pc.com": [19461, 19462], "www.webdesignmarketing.eu": [18100], "paypass.livingsocial.com": [9517], "www3.physics.ox.ac.uk": [17271], "bsideslv.org": [1545], "asirobots.com": [349], "www.ims-dm.com": [8237], "eeic.osu.edu": [11760], "no.citrix.com": [3178], "theguardian.com": [16288], "signout.live.com": [9483], "www.catlinseaviewsurvey.com": [2905], "mod.gnutls.org": [6763], "patexia.com": [12449], "ejournals.bc.edu": [1503], "democracy.tmbc.gov.uk": [15827], "ui.adsabs.harvard.edu": [7219], "www.maker.tv": [9912], "www.webpower.nl": [18041], "developer.buscape.com.br": [2452], "testreserveaspace.wustl.edu": [17993], "cs.stanford.edu": [15383], "greenparty.org": [6926], "www.ernaehrung-per-klick.de": [10196], "partner.googleadservices.com": [6843], "action.amnesty.org": [956], "www.cjs-cdkeys.com": [2620], "www.wtpx-telekom.com": [18479], "www.xpiconly.com": [18534], "www.bhodisoft.com": [1837], "www.world-airport-codes.com": [19764], "gse-it.stanford.edu": [15383], "www.ushmm.org": [17444], "emailmarketing.mastermindsdigital.com": [10059], "assets.intego.com": [8201], "agentportal.westernunion.com": [18216], "www.bdone.hu": [1719], "www.wza.us": [18493], "*.paysafecard.com": [12486], "cars.webjet.co.nz": [18124], "theconversation.com": [16262], "images.tchibo.de": [15985], "eon-uk.com": [4860], "webmail2.cesky-hosting.cz": [19051], "*.ahpra.gov.au": [1394], "az31609.vo.msecnd.net": [8850], "fsfeurope.org": [5602], "*.aleavia.com": [786], "www.cem.danskebank.dk": [4145], "*.ucsf.edu": [17303], "*.thefind.com": [16335], "*.ctep-ebp.com": [2682], "store.bgr.com": [1515], "*.core.cdn.streamfarm.net": [15518], "tpc.googlesyndication.com": [6843], "status.mail.ru": [9874], "api-cdn.embed.ly": [5197], "whitepages.com": [18257], "portal.ripe.net": [13895], "c3voc.de": [2501], "cloud1.arc.nasa.gov": [10869], "3sat.de": [135], "apply.berkeley.edu": [17240], "usrportage.de": [19722], "*.thomas-krenn.com": [16374], "www.technoratimedia.com": [16044], "kasperskypartners.com": [8810], "*.manticoretechnology.com": [9961], "publicaffairs.stanford.edu": [15383], "certible.com": [2967], "www.millenniumseating.com": [10397], "simplysecure.org": [14834], "itnotices.iu.edu": [8064], "myip.ms": [10806], "servicios.afip.gob.ar": [18945], "*.rnw.nl": [13439], "electradl.iplayer.bbc.co.uk": [1496], "www.crcpress.com": [8118], "healthcareers.nhs.uk": [10913], "staff.snelis.com": [15033], "earth.leeds.ac.uk": [17318], "divshare.com": [19120], "bremer.com": [2300], "intlprograms.aces.illinois.edu": [17258], "apps2.nlm.nih.gov": [11052], "my.gogetssl.com": [6780], "eng.rkn.gov.ru": [13913], "demo.sympa.org": [15720], "www.stockport.nhs.uk": [10913], "community.ustream.tv": [17451], "help.cir.ca": [3153], "coub.com": [3697], "www.burtcorp.com": [2448], "www.ofono.org": [19451], "developers.zomato.com": [18890], "www.cryptocon.org": [3857], "www.owncube.com": [12183], "symbolab.com": [15716], "www.theworkdept.com": [16327], "ddg.gg": [4792], "secure5.vend-o.com": [17605], "nzpug.org": [19449], "store.richarddawkins.net": [13871], "ala.org": [298], "*.crsspxl.com": [3813], "doc.tiki.org": [16444], "www.onlandscape.co.uk": [11817], "a1.nyt.com": [10997], "now.symassets.com": [15715], "itslearning.com": [8395], "www.rightnow.com": [13883], "www.bootsthai.com": [2216], "renrencaopan.com": [13770], "www.home.bt.com": [1551], "rescue.org": [19546], "www.marvel.com": [10037, 10038], "*.pbs.org": [12211], "www.nuevocloud.com": [19446], "www.wageworks.com": [17946], "*.freelancer.co.uk": [6176], "www.musicbrainz.org": [10717], "join.jolla.com": [8622], "www.kissmetrics.com": [8727], "pt-br.cloudflare.com": [3285], "www.velocitymicro.com": [17598], "tall.ut.ee": [17069], "eventbookingonline.com": [5440], "i.annihil.us": [1030], "selfservice.nottingham.ac.uk": [11528], "www.sitefinity.com": [14879], "fr.discussions.tomtom.com": [16540], "www.nzpug.org": [19449], "nuimagemedical.com": [11565], "www.trustico.com": [16794], "nagradnaigra.hofer.si": [299], "registratie.powned.tv": [12986], "openscholarship.wustl.edu": [17992, 17993], "sso-prod3.cisco.com": [3162], "www.avon.cz": [373], "skycure.com": [19599], "copiny.com": [3652], "piflc.xboxlive.com": [18551], "i1.visualstudiogallery.msdn.s-msft.com": [14058], "www.serversforhackers.com": [14618], "web.satd.uma.es": [17140], "journals.uchastings.edu": [16941], "release.thegreatcoursesplus.com": [16284], "profiles.google.com": [6834], "blog.comsigntrust.com": [3455], "www.redcoon.pt": [13686], "status.dyn.com": [4820], "belgorod.rt.ru": [13469], "adserver.adtech.de": [638], "twky.in": [16895], "www.thetechnoskeptic.com": [16317], "www.williamhill.com": [18315], "www.gemius.pl": [6517], "forrester.com": [6049], "emulex.com": [5226], "xlhost.com": [18518], "appleseedcdn.apple.com": [1120], "www.new-nations.net": [11295], "nplusonemag.com": [11537], "nruns.com": [10859], "s.360.cn": [106], "gloucestershire.police.uk": [6750], "www.petermolnar.eu": [12592], "image.tmdb.org": [15829], "entwickler.dhl.de": [4034], "smart.ciifad.cornell.edu": [3676], "www.westmercia.police.uk": [18207], "www.ekomi.*": [4921], "ws.cex.io": [2587], "hvpe.osu.edu": [11760], "aboutus.lego.com": [9068], "spriza.com": [15318], "securetransfer.portsmouth.gov.uk": [19508], "www.mktemp.org": [6897], "*.everydayhealth.com": [5453], "plugins.roundcube.net": [13986], "m.contact2.yandex.com.tr": [18649], "cdn.yldbt.com": [18680], "www.en.wiki.hidekisaito.com": [7393], "www.wbs-law.de": [18306], "europeancensorship.eu": [5427], "letmechoose.barclaycard.co.uk": [1664], "dellchat.ap.dell.com": [4335], "*.americanbar.org": [938], "gcentral.biz": [6292], "claws-mail.org": [3221], "lsblaw.birmingham.gov.uk": [19000], "www.gdata-software.com": [6293], "static.quidco.com": [13362], "www.subeta.net": [15557], "pariloto.net": [7732], "www.mysn.de": [10846], "forum.openoffice.org": [1084], "community.atechmedia.com": [368], "trailer.zdf.de": [19800], "serialist.net": [14595], "www.the42.ie": [19673], "i.aol.com": [321], "cccure.training": [2542, 2543], "fr.lastminute.com": [9165], "newzbin.com": [11351], "clubnix.fr": [3321], "www.voodooping.com": [17841], "pubdirecte.com": [13200], "cs.is": [1920], "www.rtek2000.com": [13471], "www.safelinking.net": [14233], "media-titanium.cursecdn.com": [3934], "www.wolframscience.com": [18400], "kaw.stb.s-msn.com": [14059], "w3roi.com": [1464], "cnrsformation.cnrs.fr": [6195], "yellowpages.apnaindia.com": [1096], "live.qq.com": [13285], "security-tracker.debian.org": [4275], "www.miun.se": [9751], "licensing.ofcom.org.uk": [11732], "*.cru.org": [3830], "irclogs.linaro.org": [9361], "404.foxnews.com.edgesuite.net": [11320], "nhw.se": [11474], "www.entadsl.com": [5289], "events.ucsc.edu": [17305], "au3.uicdn.net": [16958], "www.fidoalliance.org": [5572], "richrelevance.com": [13870], "beusergroup.co.uk": [16075], "yandex.ru": [18657], "iceo.mit.edu": [9747], "confidence.org.pl": [3569], "*.upr.edu": [17334], "mayoclinic.com": [10106], "www.gun.io": [7022], "www.unitedrepublic.org": [17217], "hs-esslingen.de": [7441], "blog.docsend.com": [4613], "dg.ens.fr": [4930], "*.online.nl": [11871], "www.kiraka.de": [18015], "anbg.gov.au": [1399], "forums.ubuntulinux.jp": [17105], "www.occupycorporatism.com": [11708], "npdgroup.com": [10947], "www.keelog.com": [8835], "www.kryptosfera.pl": [9021], "selinc.com": [14098], "d0wn.biz": [3996], "www.crowdin.com": [3825], "logobuilder.mspartner.microsoft.com": [10364], "www.pmf.gov": [19501], "secure.echomedia.cz": [19146], "carleton.edu": [2853], "*.lvoc.org": [9111], "et07.xhcdn.com": [18514], "www.bourgeois.me": [2249], "*.duke-energycenter.com": [4797], "webapp2.targusinfo.com": [15785], "*.blog.ajc.com": [293], "*.louhi.net": [9619], "accesspass.wifi.comcast.com": [3461], "design.staging.yammer.com": [18647], "btcjam.com": [1560], "www.moelleken.org": [10529], "transfer.emea.symantec.com": [15715], "secure.php.net": [12250], "accessgudid.nlm.nih.gov": [11052], "thebureauinvestigates.com": [16253], "www.youtube.bh": [18709], "moneta.trove.com": [16762], "thestanfordchallenge.stanford.edu": [15382], "www.pidg.in": [12671], "support.namecheap.com": [11019], "soapboxcms.com": [15054], "www.youtube.ba": [18709], "shop.amnesty.ch": [959], "www.iwmnetwork.com": [7872], "ftp.spatialbuzz.com": [15230], "nppa.org": [11054], "veredelungslexikon.htwk-leipzig.de": [7114], "cos.h-cdn.co": [7040], "www.racked.com": [13497], "www.cebit.de": [2924], "events.webmoney.ru": [18076], "*.nrao.edu": [10955], "login.yourkarma.com": [18728], "itu.dk": [7841], "darkmoney.cc": [4149], "vogel.de": [17818], "pt.witness.org": [18382], "adserver.iminent.com": [8005], "public.tableau.com": [15897], "herdict.org": [7325], "unileoben.ac.at": [17178], "cdn.xww.ro": [18605], "m.maps.yandex.by": [18648], "tso.co.uk": [15863], "cgsinc.axosoft.com": [1477], "markets.blockchain.info": [2090], "www.hover.com": [7566], "www.argus.ch": [1188], "app.overdrive.com": [12160], "supermileage.osu.edu": [11760], "victoriaforms.com": [19736], "voicefive.com": [17820], "content.minimundosonline.com": [10420], "nonstop.tms.pl": [19686], "exposure.co": [5515], "nbct02.baidupcs.com": [1620], "*.liv.ac.uk": [9479], "*.testcloud.io": [16145], "independent.co.uk": [8053], "www.aeapri.asso.ulaval.ca": [17229], "todo.ly": [16527], "www.nestlepurinacareers.com": [11169], "watchmaxx.com": [17997], "customercare.kansas.com": [8783], "www.torrentprivacy.com": [16582], "www.rankwise.net": [13549], "www.webhungary.hu": [18123], "elpueblo.com": [5138], "blogs.uni-erlangen.de": [17311], "wifipineapple.com": [18273], "tosback.org": [15848], "*.cartercenter.org": [2867], "northerntool.com": [11501], "accessguardian.com": [445], "resizes.over-blog.com": [12156], "redditgifts.com": [13693], "gwh.moderngov.co.uk": [19405], "educate.intel.com": [8209], "www.ficora.fi": [5771], "*.iberia.com": [7898], "*.inc.com": [8042], "roketfiyat.com": [13953], "www.history.ox.ac.uk": [12187], "code.ionicframework.com": [8340], "nuigalway.ie": [11064], "origin-www.nike.com": [11401], "c0.thejournal.ie": [16224], "my.ams-ix.net": [983], "t-shirtmojo.com": [15775], "detail.huobi.com": [7624], "po.st": [12834], "venda.cp.pt": [3744], "www.a2zinc.net": [223], "de.support.tomtom.com": [16540], "channelspro.ap.dell.com": [4335], "web202.tape.tv": [15956], "ws.engr.illinois.edu": [17258], "onjive.com": [11811], "locator.symantec.com": [15715], "www.business.ftc.gov": [5720], "*.transloadit.com": [4277], "nationalrail.co.uk": [11056], "idp.geoplatform.gov": [6538], "*.optimost.com": [12074], "www.aolo.tk": [3533], "static.globalweb.co.uk": [6736], "hush-hush.com": [7630], "*.accuvant.com": [468], "*.cunb.com": [2750], "xnet.cz": [18531], "srv2.shoutlet.com": [19588], "wusmproserv.wustl.edu": [17993], "my.getambassador.com": [6584], "blog.asana.com": [1242], "www.comp.polyu.edu.hk": [12891], "rte.ie": [13470], "w3.org": [17888], "www.carbonfund.org": [2830], "smartbrief.com": [14987], "istheinternetonfire.com": [19307], "cpm.hostanalytics.com": [7515], "*.uni-karlsruhe.de": [8798], "gradcenter.wustl.edu": [17993], "responsive.io": [13814], "ocharles.org.uk": [11614], "roundcube.net": [13986], "developer.washingtonpost.com": [17990], "filefactory.com": [5789], "www.kintera.com": [8912], "www.energy.ch": [19158], "*.bgpmon.com": [1514], "f.fontdeck.com": [5990], "multibit.org": [10695], "www.zeltser.com": [18813], "www.openresty.org": [12043], "*.ticketonline.de": [16417], "beta.xmpp.net": [18525], "dearbytes.com": [4263], "*.greenvehicleguide.gov.au": [6921], "kuai.alipay.com": [817], "pics.qxlstatic.no": [13297], "*.mecca.ca": [5119], "img-hx.newjobs.com": [11318], "packages.python.org": [13272], "siliconrepublic.com": [14790], "www.blackarch.org": [2036], "*.datacloudmail.ru": [4200], "www.quickline.com": [19530], "dev.vpsfree.cz": [19743], "www.cygwin.com": [3978], "impo.ch": [3645], "bano.openstreetmap.fr": [12045], "ssl.enfield.gov.uk": [5258], "deimos.fr": [4318], "www.j-schmitz.net": [8408], "bitmaintech.com": [2004], "s-omniture.yell.com": [19790], "www.cathaypacifichost.com": [2904], "securepurchaseserver.com": [14510], "cpaste.org": [19086], "www.sustainablefuture.cornell.edu": [3676], "*.liftconference.com": [9335], "fantasygames.telegraph.co.uk": [16081], "www.matkahuolto.info": [10074], "applepartsstore.com": [1123], "i.yimg.jp": [18685], "img10.360buyimg.com": [112], "coderwall.com": [3377], "planet.collabora.com": [3419], "www.sogou.com": [19606], "nlbb.osu.edu": [11760], "kproxy.com": [8746], "exe.icq.com": [7690], "media.vocativ.com": [17811], "s01.esupport.sony.com": [15144], "skygfx.live.com": [9483], "i.creativecommons.org": [3778], "www3.basildon.gov.uk": [18984], "i0.poll.fm": [12881], "images.scanalert.com": [14331], "zerodium.com": [18761], "www.elementaryos.org": [5159], "karwansaraypublishers.com": [8801], "ph.redhat.com": [13675], "hak5.org": [7167, 7168], "www.prozeny.cz": [13115], "www.coop.ch": [3644], "nihongo.istockphoto.com": [19309], "scienceandtechnology.jpl.nasa.gov": [10869], "office.microsoft.com": [10364], "*.google.com": [6835, 6845, 6848], "courseevalum.umd.edu": [17263], "clientcenter.thomasnet.com": [16376], "wiki.qt.io": [13315], "www.litecoinlocal.net": [9465], "ldn.linuxfoundation.org": [9412], "www.abiggersociety.com": [384], "www.ceneo.pl": [2936], "www.mysql.it": [10780], "mercurynews.com": [10280], "www.roeck-us.net": [13945], "www.baremetrics.io": [1667], "cdn.sourcefednews.com": [15172], "status-ksplice.oracle.com": [12082], "static.songcoleta.com": [15134], "control.akamai.com": [761], "*.getoutofdebt.org": [6599], "www.sidibouras.com": [14766], "m.bnz.co.nz": [1534], "status.npmjs.org": [11540], "support.xbox.com": [18550], "www.sportsauthority.com": [15291], "nav.mageia.org": [9847], "*.londonist.com": [9584], "davpack.co.uk": [4234], "bestlawyers.com": [1802], "age.lenta.ru": [19356], "bluekrypt.be": [2134], "edwardsnowden.com": [5103], "profitbricks.de": [13128], "www.jonasboserup.dk": [19323], "arabic.kaspersky.com": [8806], "www.niskanencenter.org": [11423], "*.systemcenteradviser.com": [15760], "www.lrz.de": [9238], "jobfinder.dk": [8596], "codefisher.org": [3367], "e10.xhamsterpremiumpass.com": [18516], "exchange.coinbase.com": [3402], "slickdeals.net": [14958], "udemy.com": [17111], "freepracticetests.org": [6156], "www.notebookitalia.it": [11522], "subscribenww.com": [11267], "crazybump.com": [3765], "quora.com": [13375], "beta.disk.yandex.com": [18651], "travisf.net": [16702], "src.responsive.io": [13814], "www.superfast-openreach.co.uk": [15629], "co.norton.com": [11505], "*.ntop.org": [11556], "media.linuxdistrocommunity.com": [9421], "us.support.tomtom.com": [16540], "carrierbagcharge.wales.gov.uk": [17957], "join.exgf.com": [13039], "*.dreamwidth.org": [4756], "www.user-agents.org": [17429], "medallion.kachingle.com": [8764], "laaclu.org": [250], "tomorrow-focus-media.de": [16542], "static3.uk.businessinsider.com": [2454], "www.technocrat.net": [16040], "blu.berkeley.edu": [17240], "static3.readyflowers.com": [13620], "www.tapirex.com": [12351], "selfservice.eastlothian.gov.uk": [5014], "www9.handelsbanken.fi": [7186], "anfrage.os-cillation.de": [12115], "102.alibaba.com": [809], "www.lankylife.com": [9150], "news.microsoft.com": [10364], "www.vitalads.com": [17787], "forum.avira.com": [1449], "woopra.com": [18423], "tls.li": [16511], "online.cheshireeast.gov.uk": [3066], "discussions.nokia.co.uk": [9468], "www.*.unibe.ch": [17239], "www.rcking.eu": [13405], "windows.github.com": [6680], "www.mylivechat.com": [10810], "glasses.com": [6702], "www.csail.mit.edu": [9749], "www.networking4all.com": [11274], "login.adaramedia.com": [559], "smart-mail.de": [14984], "*.baifendian.com": [1759], "www.webhost.biz": [18120], "cdn.samssoftware.com.au": [14262], "digitalfreedom.io": [4506], "podbean.com": [12842], "*.stardock.net": [15401], "wiki.secondlife.com": [14462], "www.devonjobs.gov.uk": [19115], "lapatilla.com": [9115], "en.wiki.hidekisaito.com": [7393], "www.twistlock.com": [19707], "prefetch-maps.yandex.com": [18651], "arteradio.com": [18966], "www.rlrose.co.uk": [13436], "s.pony.fm": [12897], "www.digitalfreedom.io": [4506], "www12.qth.com": [13291], "www.who.int": [17908], "parago.ehosts.net": [5120], "www.pornworms.com": [12928], "media.3dsupply.de": [133], "www.journalxtra.com": [8644], "uk.norton.com": [11505], "wald.intevation.org": [17955], "xvideosx.tv": [18537], "content.shaklee.com": [14656], "store.counterpunch.org": [3706], "media.zipcar.com": [18872], "account.microsoft.com": [10364], "ludialudom.sk": [9652], "www.virurl.com": [17489], "accounts.flipboard.com": [5925], "www.ageuk.org.uk": [18946], "iframed.cqrcengage.com": [2654], "myaccount.mutualofamerica.com": [10733], "www.halcyon.sh": [7172], "img.alicdn.com": [805], "www.pen.org": [12238], "ovirt.org": [11690], "www.payeer.com": [12474], "www.wetlandpark.gov.hk": [19253], "static.3dsupply.de": [133], "hipservice.live.com": [9483], "cyberaide.ca": [3976], "tracker.coreboot.org": [3669], "thepermitstore.com": [16226], "*.italian-country-cottages.co.uk": [18490], "api.kinja.com": [8906], "sinonptik-cdn1.un.net.ua": [14852], "www.cbpweb.nl": [4813], "ussco.com": [17218], "tr.netsalesnetwork.com": [19431], "www.stud.uni-stuttgart.de": [17281], "*.givex.com": [6689], "www.uline.com": [17128], "cryptome.thecthulhu.com": [16334], "mycard.ukash.com": [17122], "provost.umd.edu": [17263], "*.kobobooks.es": [8949], "parse.com": [12412], "web.weixin.qq.com": [13285], "activities.sugarlabs.org": [15581], "arne.schuldt.info": [1207], "forums.epicgames.com": [5320], "eregulations.ct.gov": [2680], "www.condenaststore.com": [3557], "www.gexpro.com": [6622], "lj.rossia.org": [9522], "www.fullcirclestudies.com": [6248], "transparencytoolkit.org": [16680], "dshield.org": [4084], "hastings.gov.uk": [7234], "www.xmpp.ru.net": [18527], "business.upc.ie": [17001], "developer.blackberry.com": [2050], "uss.emetriq.de": [18585], "*.rsshog.com": [14008], "zoink.it": [5004], "www.onehealthtalk.org": [11848], "beacon.jumptime.com": [8673], "www.cathaypacific-campaign.com": [2904], "*.bethere.co.uk": [16076], "www.johoobuy.com": [8614], "promo.vedomosti.ru": [19730], "respekt.cz": [19548], "gentoo-overlays.zugaina.org": [18919], "www.timtaubert.de": [16452], "gayromeo.com": [12764], "filter.impactradius.com": [8011], "www.uic.edu": [17231], "askapatient.com": [1265], "*.ausgovboards.gov.au": [1393], "pamconsult.com": [12352], "community.teespring.com": [16060], "origin-www.marketplace.org": [10017], "lists.01.org": [1], "support.nanorep.com": [11032], "parking.tmbc.gov.uk": [15827], "www.bitvps.com": [1960], "www.remotelyanywhere.com": [13762], "www.steg-electronics.ch": [14189], "login-p2.constantcontact.com": [3592], "t1beta.mediamath.com": [10157], "phpmyadmin.online.net": [11870], "leloop.org": [9191], "opensrs.net": [11969], "support.theplatform.com": [16230], "helpx.adobe.com": [615], "seagm.com": [14095], "musicweek.com": [10716], "seflorida.bbb.org": [1821], "technomedia.com": [16043], "netbsd.org": [11184], "www.infowar.com": [8105], "jobs.enfield.gov.uk": [5258], "crm.it-agenten.com": [7838], "queminova.catracalivre.com.br": [2908], "lawblog.de": [9179], "rpc1.mail.aol.com": [321], "dspace.mit.edu": [9749], "my.balabit.com": [1624], "www.armscontrol.org": [18963], "urlparser.com": [17015], "register.fca.org.uk": [5557], "*.redbull.de": [13666], "petersen.mysql.cesky-hosting.cz": [19051], "data.cnbc.com": [2631], "static-cdn.fullcontact.com": [6250], "site.yandex.com.tr": [18649], "diffchecker.com": [4461], "static.sl.lumosity.com": [9668], "tradepub.com": [16639, 16645], "thl.engineering.osu.edu": [11760], "res.freebase.com": [6157], "trilogygolfclub.com": [8431], "test.channel4.com": [3003], "www.womenonweb.org": [18407], "start.advent.com": [654], "ssl-stat.ameba.jp": [926], "*.kaimi.ru": [19332], "voices.com": [17823], "download.cloud.secondlife.com": [14462], "www.hosted-oswa.org": [7521], "chi.taobao.com": [15952], "www.phpmagazin.de": [12252], "video.flixster.com": [5933], "www.romab.com": [13963], "legacy.macfound.org": [9818], "www.linux-mips.org": [9413], "extranet.bls.ch": [1526], "moerdijk.nl": [11132], "ep2.vzp.cz": [17524], "www.timeshighereducation.com": [16464], "www.ethics.uillinois.edu": [16960], "avatar.fsl.cs.sunysb.edu": [15480], "forgefields.com": [6036], "api.sklik.cz": [14915], "www.zuno.eu": [18768], "mae-hpc.osu.edu": [11760], "*.compari.ro": [3512], "revv.rubiconproject.com": [14014], "moderation.lego.com": [9068], "plymouth.ac.uk": [12833], "*.zohostatic.com": [18887], "ssl1.gmti.com": [6453], "wiki.gnupg.org": [6761], "pfizerpro.com": [12612], "www.mjanja.ch": [10473], "siwgallery.stanford.edu": [15383], "lockbox.com": [9543], "*.unanimis.co.uk": [17147], "arisebitcoin.com": [1193], "www.tomtom.com": [16540], "*.religionnews.com": [13755], "min.us": [10436], "stock.walmart.com": [17964], "www.torrentz.to": [16590], "opensignal.com": [11974], "loctudy.fr": [9546], "tracking.thehut.net": [16223], "telerik.com": [16094], "seconfig.sytes.net": [14465], "www.cineble.com": [3144], "french-country-cottages.co.uk": [18490], "www.wz2100.net": [17987], "www.tchibo.de": [15985], "circulationportal.sacbee.com": [14218], "www.fanoe.dk": [5656], "images.securycast.com": [14538], "culturesforhealth.com": [3917], "uk.godaddy.com": [6773], "pspudb.com": [5224], "leadershipcircle.stanford.edu": [15383], "www.mir.wustl.edu": [17993], "pages.wustl.edu": [17993], "*.shef.ac.uk": [17339], "www.t37.net": [15779], "tasb.org": [16150], "www.indacoin.com": [8050], "webcampus.wilmu.edu": [18320], "aboutus.godaddy.net": [6772], "*.pubdirecte.com": [13200], "license.steeleye.com": [15459], "corelan.be": [3675], "cs.ucsd.edu": [16939], "static.somethingawful.com": [15130], "www.givekidstheworld.org": [6686], "www.duckdns.org": [4793], "uploads.va.gov": [17019], "wsjpro.com": [11320], "www.aits.uillinois.edu": [16960], "livesales.snelis.com": [15033], "www.tmdn.org": [15828], "ar.tns-counter.ru": [16519], "halley.ens.fr": [4930], "protecciondelconsumidor.gov": [11078], "tacticaltech.org": [15901], "kat.cr": [8879], "devimperium.com": [4425], "*.spreadshirt.it": [15300], "searchlight.sourcedna.com": [15171], "kinsta.com": [8911], "www.bypassingcensorshipinthe.uk": [19032], "svenskakyrkan.se": [15671], "ca.redhat.com": [13675], "ed.gov": [4889], "www.administrator.de": [18939], "www.2ndvote.com": [95], "book.douban.com": [4707], "www.getpocket.com": [6579], "www.digitalpoint.com": [4498], "careers.annsummers.com": [1028], "www.sciamdigital.com": [14384], "dyn.emetriq.de": [18585], "www.canon.si": [2809], "www.actionsalvage.com": [490], "www.eth-0.nl": [5376], "www.canon.se": [2809], "*.chaton.com": [3030], "kuvat2.huuto.net": [19267], "blacksuitit.com": [2040], "www.cjs.leeds.ac.uk": [17318], "s.xbox.com": [18550], "www.nyaa.eu": [11595], "hr.uillinois.edu": [16960], "webmail.uu.se": [17074], "jaan.ut.ee": [17069], "www.businessinsider.com": [2454], "unishop.uow.edu.au": [17350], "www.emunewz.net": [5224], "store.bistudio.com": [2179], "epa-sdcc.ornl.gov": [11693], "neuronline.sfn.org": [15077], "socialsafety.org": [15059], "advq.yandex.kz": [18652], "www.reco.se": [13646], "meet.jitsi.org": [8583], "www.gr.ch": [19648], "biovendor.cz": [1902], "courtneyluv.com": [2132], "www.avoinyliopisto.fi": [18975], "www.airbnb.com.*": [749], "img.new.livestream.com": [9514], "emas.portsmouth.gov.uk": [19508], "securecoding.cert.org": [2583], "users.soe.ucsc.edu": [17305], "sunriseprintonline.com": [15605], "www.mimsonline.com": [9743], "www.alphabankcards.gr": [6911], "wdm.org.uk": [18454], "app.chartmogul.com": [3016], "support.subgraph.com": [15558], "support.paper.li": [12379], "*.xx.fbcdn.net": [5700], "www.utsystem.edu": [17284], "rootbsd.net": [13967], "www.norwalkreflector.com": [11507], "www.blog.edoeb.admin.ch": [19648], "libssh.org": [9320], "www.gibraltar.gov.gi": [6637], "skhynix.com": [14129], "notacon.org": [11520], "autodiscover.yandex.kz": [18652], "bitvc.com": [1949], "abi.org.uk": [242], "ilive.bury.gov.uk": [19027], "help.issuu.com": [8378], "rxs1.answcdn.com": [1059], "engagesciences.com": [5259], "www.thefoundry.co.uk": [16278], "server3.web-stat.com": [18047], "autolinkmaker.itunes.apple.com": [1120], "www.mouseflow.de": [10624], "pics.mobygames.com": [10505], "askollie.warrington.gov.uk": [17984], "cz.icecat.biz": [7914], "www.spot.im": [15293], "www.globaltestsupply.com": [6719], "nodeserv.com": [11450], "m.travelrepublic.co.uk": [16695], "www.linux.cn": [9402], "secure.funio.com": [6265], "alternate-b2b.nl": [880], "www.licensing.biz": [8226], "admin.artsy.net": [1235], "www.slanted.de": [14943], "torchbox.com": [16572], "forums.geforce.com": [6482], "bountysource.com": [2248], "e-grants.ed.gov": [4889], "threatmatrix.com": [19680], "gfx7.hotmail.com": [7559], "bvg.de": [1582], "sso.talktalk.co.uk": [15929], "parkinggw.calderdale.gov.uk": [2735], "www.bitcoinstore.com": [1973], "www.shopmanhattanite.com": [9954], "peer2peer.giffgaff.com": [19217], "*.spriza.com": [15318], "m.google.co.*": [6837], "yourchoiceyourhome.org.uk": [19794], "*.joyentcloud.com": [8652], "myheritage.fi": [10834], "www.encryptr.org": [5239], "merchants.gamersfirst.com": [6435], "services.justaguy.pw": [8696], "modules.fd.ulaval.ca": [17229], "www.gofundme.com": [6779], "autodiscover.its.leeds.ac.uk": [17318], "www.plausible.coop": [12791], "www.cloudns.net": [3276], "bugs.centos.org": [2942], "myheritage.fr": [10834], "support.filefactory.com": [5789], "my.thechive.com": [16258], "alternatifbilisim.org": [881], "library.uwb.edu": [17078], "*.woodgreenshop.org.uk": [18419], "botfrei.de": [2241], "myaccount.laterooms.com": [19348], "sampa.cs.washington.edu": [17291], "www.aspirationtech.org": [1273], "www.cardiffnetwork.cf.ac.uk": [2835], "styles-uat.freescale.com": [6183], "mwellner.de": [10737], "www.audioboom.com": [18970], "klub.com.pl": [8935], "safeprofile.f-secure.com": [5541], "www.photoblab.com": [12639], "pantherexpress.net": [2560], "mileiq.com": [10392], "unique-vintage.com": [17195], "espionageapp.com": [5362], "files.itunes.apple.com": [1120], "www.finlex.fi": [19181], "www.wearewizards.io": [18027], "www.aesnet.org": [930], "a15.ysicdo002.com": [18708], "www.suitabletech.com": [15585], "tekgoblinmedia.com": [16064], "channel9.msdn.com": [9788], "smap.jpl.nasa.gov": [10869], "shopwiki.com": [14721], "x10hosting.com": [18498], "healthiertogethergm.nhs.uk": [10913], "www.arlen.io": [1200], "berlinonline.de": [1793], "*.lacaixa.es": [9114], "efa.org.au": [5152], "*.networksolutions.com": [11263], "try-smart.jd.com": [8423], "js.kattare.com": [8818], "www.tiki.org": [16444], "ejobs.umd.edu": [17263], "hostoople.com": [7539, 7540], "edc2.healthtap.com": [7258], "zsl.org": [18900], "www.freebsdfoundation.org": [6122], "citizensadvice.citizensadvice.org.uk": [19062], "linguistlist.org": [9081], "docreader.readspeaker.com": [13610], "www.butterflynetinc.com": [2464], "p3.zdassets.com": [18806], "web.north-herts.gov.uk": [11493], "www.longdate.pl": [9588], "www.brabant.nl": [11132], "ds.vutbr.cz": [17522], "zhihu-web-analytics.zhihu.com": [18856], "www.iop.org": [8195], "food.gov.uk": [19187], "shacknews.com": [14652], "overleaf.com": [12167], "commerce.guidestar.org": [7007], "cloudstorage.iu.edu": [8064], "www.secure-os.org": [14480], "releases.linaro.org": [9361], "www.voa.va.gov": [17019], "docs.database.com": [4194], "*.channelx.biz": [3005], "v3.co.uk": [17464], "math.uchicago.edu": [17246], "theeca.com": [5295], "*.chinapaymentservices.com": [3082], "fml.osu.edu": [11760], "cnnmon.ie": [1920], "netstorage.metrolyrics.com": [10322], "shop.icracked.com": [7702], "gradwellcloud.com": [6884], "passport.baidu.com": [1619], "static.soup.io": [15166], "jabber.ru": [8477], "sitelabs.co.uk": [19594], "yamal.rt.ru": [13469], "enel.dict.cc": [4455], "univie.ac.at": [17353], "www.selinc.com": [14098], "*.alaska.gov": [15419], "*.hr.columbia.edu": [3448], "bgentry.io": [1835], "www.tinybytes.me": [16479], "*.uu.nl": [17073], "adadvisor.net": [15785], "kenengba.com": [8846], "ax.phobos.apple.com.edgesuite.net": [1121], "answers.argos.co.uk": [1185], "www.looppay.com": [9605], "www.minimundosonline.com": [10420], "www.whistleout.co.uk": [18248], "www.swarmapp.com": [19646], "daw.apple.com": [1120], "4kdownload.com": [151], "mind.org.uk": [10407], "www.regress.admin.ch": [19648], "tt.1und1.de": [68], "*.hostmonster-cdn.com": [7537], "support.mastermindsdigital.com": [10059], "opennicproject.org": [19466], "minted.com": [10434], "hakasiya.rt.ru": [13469], "perishablepress.com": [12574], "www.cryptostorm.org": [3891], "*.canadapost.ca": [2793], "briandunning.com": [2312], "gigantic.com": [6651], "www.chris.lu": [3102], "www.stupidcensorship.com": [15548], "store3.esellerate.net": [5357], "www.dmachoice.org": [4044], "nrkbeta.no": [10957], "ru.gamigo.com": [6445], "www.anonfiles.com": [1041], "www.lth.se": [9104], "nei.nih.gov": [11052], "ws.edu.isoc.org": [7829], "fullslate.com": [6251], "tppro.oag.com": [11604], "easynews.com": [5027], "*.bangor.ac.uk": [1641], "blog.octopart.com": [11714], "winhistory-forum.net": [18356], "www.meinvz.net": [10237], "www.westorangehistory.com": [18210], "hr.uic.edu": [17231], "*.finna.fi": [5851], "stylist.co.uk": [15552], "www.verivox.de": [17625], "passport.taobao.com": [15952], "ebook.money.pl": [10547], "lot.sample.yahoo.co.jp": [18640], "vanillatest.geogebra.org": [6537], "www.samharris.org": [14259], "epson.ca": [5330], "www.pgbrandsampler.ca": [13121], "myapp.itunes.apple.com": [1120], "accounts.google.com.*": [6837], "www.pamfax.biz": [12352], "thingsquare.com": [16359], "www.amerika21.de": [952], "pkimber.net": [12305], "www.retriever-info.com": [13825, 13826], "mediamir.medialand.ru": [10172], "aralbalkan.com": [1150], "nvzhuang.taobao.com": [15952], "media.codeweavers.com": [3353], "fb-cdn.ghsrv.com": [13622], "litmus.com": [9471], "atxpo.stanford.edu": [15383], "corporate.fitbit.com": [5887], "www.connect.gov": [3579], "choon.net": [3098], "carousell.com": [2860], "www-nds.iaea.org": [7666], "www.extensiblewebmanifesto.org": [5520], "www.snowmagazineonline.com": [15042], "gymglish.co.uk": [7037, 7038], "accounts.songkick.com": [19609], "beatport.com": [1737], "forms.bostonfed.org": [19013], "2012.asiabsdcon.org": [1258], "www.webbyawards.com": [18110], "beta.falkirk.gov.uk": [5641], "www.cts-strasbourg.eu": [3905], "www.imediaconnection.com": [7761], "www.romab.se": [13963], "*.viewcentral.com": [17709], "southparkstudios-intl.mtvnimages.com": [9803], "miles-and-more-kreditkarte.com": [10394], "www.terasic.com.tw": [15960], "indiegogo.com": [8072], "manhattan.ikea.com": [7959], "www.zidisha.org": [18857], "*.uni-tuebingen.de": [17346], "dtu.dk": [16031], "sports.williamhill.com": [18315], "www.cpaste.org": [19086], "echothrust.com": [5048], "www.hplusdigitalseries.com": [7092], "*.directrev.com": [4534], "www.primabanka.sk": [13057], "www.nebula.com": [11127], "myaccount.cheshireeast.gov.uk": [3067], "mein.1und1.de": [68], "wdc-api04.mollom.com": [10537], "eng.staging.yammer.com": [18647], "nowness.com": [11534], "entertainment.ie": [5296], "www.amsl.com": [311], "www.getcashboard.com": [15559], "yourpshome.net": [18726], "equinix-direct.equinix.com": [5334], "www.techreport.com": [16050], "www.imgrind.com": [7758], "www.savethekoala.com": [1381], "assets.motherboard.tv": [10607], "cic.ch": [1654], "fr.aldi.lu": [299], "*.geotrust.com": [6549], "i.i.ua": [7654], "interhyp.de": [8250], "www.whatsmychaincert.com": [18235], "press.malwarebytes.org": [9929], "i1.rgstatic.net": [13422], "apps.opera.com": [12050], "webmail.bananian.org": [1636], "robert.sesek.com": [14630], "www.quantixtickets.com": [13339], "s1.uicdn.net": [16958], "secure.xhamster.com": [18515], "clubcompy.com": [3320], "zopa.com": [18907], "store.sonyentertainmentnetwork.com": [15149], "bitso.com": [2018], "www4dev.uwm.edu": [17294], "www.productsandservices.bt.com": [1551], "eao.rt.ru": [13469], "www.securedcontent.net": [14501], "go.pol.bbelements.com": [1713], "roem.ru": [13946], "www.soobest.com": [15152], "myexpenses.nytco.com": [10998], "wifilib.fr": [18285], "moodle-ext.thm.de": [15811], "images.online.microfocus.com": [10348], "www.redfern.me": [13695], "ads.glispa.com": [6710], "tinypng.com": [16483], "rec-registry.gov.au": [13412], "info.securityinabox.org": [14533], "c5.rgstatic.net": [13422], "photopay.net": [12641], "www.wireclub.com": [18362], "www.fybsg.com": [5612], "wiki.rz.htw-berlin.de": [7112], "leadpages.net": [9195], "uptonhomehardware.co.uk": [17402], "*.gamestop.com": [6427], "mc1.maps.live.com": [9483], "s1.pir.fm": [12725], "*.clickberry.tv": [3257], "cryptocloud.com": [3871], "multiply.crwdcntrl.net": [9613], "www3.olx.com.br": [11632], "es-es.facebook.mx": [5623], "sched.org": [14348], "cqrollcall.com": [2655], "login.webgo.de": [18064], "euroforum.com": [5413], "www.vpsboard.com": [17863], "static.xmarks.com": [18579], "websitealive8.com": [18149], "tally.upsideout.com": [17398], "*.cleverbridge.com": [3240], "embed.polskieradio.pl": [12887], "intranet.cnrs.fr": [6195], "www.ignum.cz": [7731], "wirral.firmstep.com": [19183], "webmail4.hosts.co.uk": [7545], "www.mindtouch.us": [10410], "codeigniter.com": [19070], "socialboxusa.com": [15057], "www.glassesusa.com": [6703], "www.ordermychecks.com": [7207], "widget.weibo.com": [18186], "waag.org": [17940], "womenonwaves.org": [18408], "acpa.ca": [745], "www.peacecenter.org": [12503], "www.idrbiz.com": [9743], "codepicnic.com": [3351], "blog.montyprogram.com": [10569], "*.kirjoitusalusta.fi": [8915], "banners.store.apple.com": [1120], "www.memorydealers.com": [10252], "support.unity3d.com": [17220], "www.tofinosecurity.com": [16528], "*.filmthreat.com": [5805], "hubic.com": [7597], "mojandroid.sk": [10535], "download.documentfoundation.org": [16221], "www.hsph.harvard.edu": [7219], "intranet.tue.nl": [15874], "password-hashing.net": [12432], "*.dvidshub.net": [4089], "edgesnapbacks.com": [5080], "rewrite.ca.com": [2511], "www.purevpn.com": [13240], "update.microsoft.com": [10363], "*.sqsp.com": [15328], "qub.ac.uk": [13348], "fuwu.jd.com": [8422], "ntrs.larc.nasa.gov": [17026], "dentalxchange.com": [4894], "ghash.io": [6329], "api.5min.com": [178], "www.tinyteenpass.com": [16490], "news.google.com.*": [6837], "*.wellsfargo.com": [18196], "australia-unsc.gov.au": [1380], "gamingonlinux.com": [6447], "www.kralenstart.nl": [9005], "forums.alfresco.com": [802], "intechnology.co.uk": [8035], "mysloan.mit.edu": [9749], "fusiontools.clickmotive.com": [3248], "audience-discovery.com": [1352], "www.zutphen.nl": [11132], "rascal999.co.uk": [19535], "bugzilla.freedesktop.org": [6126], "gift.stanford.edu": [15383], "www.clear-code.com": [3227], "www.a2hosting.com": [222], "mm.sitecompass.com": [14864], "mobileapps.lowes.com": [9636], "word.camera": [19763], "www.stat.onestat.com": [11844], "bridge.simplefin.org": [14821], "edit.bulkorder.ftc.gov": [5720], "fh-kiel.de": [17298], "www.careers.dyson.com": [4837], "hsbc.*": [7098], "www.fr.tchibo.ch": [15985], "iais.fraunhofer.de": [6112], "domaining.com": [4663], "secure.shared.live.com": [9483], "www.iem.thm.de": [15811], "static.playmates.com": [12808], "cdn.comparethemarket.com": [3511], "readability.com": [13615], "iphone-api.fitbit.com": [5887], "www.alternc.org": [878], "www.theblueskylife.com": [16249], "ripe69.ripe.net": [13895], "modernrepo.com": [10523], "directory.fsf.org": [5600], "*.ufies.org": [16950], "www3.havant.gov.uk": [19237], "bugsy.grid.aau.dk": [389], "developer.tizen.org": [16506], "cdn4.thr.com": [15813], "bouncebidder.com": [2244], "jedec.org": [19319], "safebilling.com": [14230], "thenation.com": [16200], "pgl.co.uk": [7452], "www-2.danskebank.dk": [4145], "forms.fbi.gov": [5708], "securityadvisories.paloaltonetworks.com": [12349], "einstein.phys.uwm.edu": [17294], "videos.mtvnn.com": [17661], "www.mxtoolbox.com": [9812], "*.zonza.tv": [18763], "www.ca-pca.fr": [2507], "tomsofmainestore.com": [16544], "mirrors.xmission.com": [18530], "*.offerscdn.net": [11740], "advertising.yandex.com.tr": [18649], "music.xbox.com": [18550], "piwik.vates.fr": [17574], "id.cloudflare.com": [3285], "leads.infousa.com": [8110], "i0.cz": [7655], "appstatus.osu.edu": [11760], "www.carphonewarehouse.com": [2861], "export.yandex.kz": [18652], "fjellner.eu": [3113], "www.challenge25.go.jp": [8515], "*.stcllctrs.com": [9733], "www.lesterchan.net": [9262], "mobile.services.lovtidende.dk": [13830], "scontent-b.cdninstagram.com": [2558], "demo.whappodo.com": [18227], "www.canadianwebhosting.com": [2795], "files.*.geblogs.com": [6522], "ncjrs.gov": [10883], "account.dexmedia.com": [4434], "podjetje.hofer.si": [299], "tvline.com": [15884], "huan.jd.com": [8423], "*.app.com": [1244], "projects.blender.org": [2067], "squirrel-webmail.surftown.com": [15335], "mahachkala.rt.ru": [13469], "www.adspeed.net": [541], "*.wepay.com": [18022], "aviris.nkl.fi": [1450], "ptrace.fefe.de": [5742], "serval.lib.vutbr.cz": [17522], "universe2.us": [17228], "www.navigantresearch.com": [11114], "old.majordomo.ru": [9902], "www.broadland.gov.uk": [2357], "www.herbal-nutrition2.net": [7323], "*.good.net": [6826], "*.cfspx.digitalriver.com": [4483], "www.youtube.co.za": [18709], "www.imn.htwk-leipzig.de": [7114], "geekify.com.au": [6504], "qupzilla.com": [13380], "catalogue.ic.nhs.uk": [10913], "csmm.osu.edu": [11760], "track.securedvisit.com": [14499], "btbsecure.business.bt.com": [1551], "vaultproject.io": [17576], "bytejail.com": [2488], "uat.splash.riverbed.com": [13907], "*.acquia.com": [478], "jobs.flowingdata.com": [5946], "pro.marinsoftware.com": [9997], "*.sears.com": [14445], "cdn.www.hbo.com": [19240], "disc.yandex.com.tr": [18649], "astore.amazon.com": [911], "www.fressnapf.de": [6207], "www.wavecon.de": [18008], "oldpiratebay.org": [11780], "forums.halowaypoint.com": [7176], "dance.smugmug.com": [15014], "umag.ca": [17080], "managedservices.otenet.gr": [12132], "www.bitnik.org": [2012], "secure.insightexpressai.com": [8172], "api.mixbit.com": [10464], "login.uic.edu": [17231], "science.williams.edu": [18316], "delivery.w00tads.com": [17886], "doc.see.leeds.ac.uk": [17318], "monmouthshire.gov.uk": [10560], "go.utah.edu": [17288], "xsolla.com": [18593], "secure.johnstonpress.co.uk": [8613], "mozest.org": [10649], "freeutopia.org": [6154], "gimmickwear.com": [6662], "www.tv.yandex.com.ua": [18650], "www.twinings.co.uk": [16880], "codebeamer.com": [3348], "ppdb.hslu.ch": [7583], "app-us6.resrc.it": [13599], "help.redbubble.com": [13660], "e-portfolio.plymouth.ac.uk": [12833], "elearning.hslu.ch": [7583], "www.connectpros.com": [13018], "clkrev.com": [3272], "torrentz.eu": [16591], "mail.carezone.cz": [2849], "brabysads.com": [2263], "support.1btcxe.com": [42], "go.padsdel.com": [12326], "videoapi.my.mail.ru": [9874], "pcp.cancer.gov": [2805], "academy.frieslandcampina.com": [2783], "mcb.net": [9966], "secure.hospital.uic.edu": [17231], "zaption.com": [18793], "judge.me": [8661], "tableschecking.education.gov.uk": [19149], "www.google.*": [6838, 6840, 6845, 6848], "www.drm.info": [4080], "couchbase.com": [3699], "backpackerslucerne.ch": [1601], "interact.f5.com": [5546], "www.rawstudio.org": [13583], "eweb.acs.org": [929], "images.shaklee.com": [14656], "cdn.petri.com": [12597], "gumroad.com": [7020], "www.aquent.us": [1144], "www-stats.kaltura.com": [8775], "www.m-w.co.uk": [9689], "schneider-electric.com": [14357], "www.css-tricks.com": [2678], "echomedia.cz": [19146], "xmlsearch.yandex.by": [18648], "fsa.usda.gov": [17209], "vox.com": [17851], "project-lbs.web.cern.ch": [2575], "media.techonline.com": [16013], "www.oneserver.cz": [11645], "bitcalm.com": [1927], "images.dealnews.com": [4261], "www.payu.ru": [12490], "accessprivacy.com": [451], "www.tuleap.net": [16822], "firedrive.com": [5858], "outlet.lenovo.com": [9251], "cdn1.spiegel.de": [15272], "www.desmume.org": [4243], "jobs.pcworld.com": [14829], "www.buzzfocus.com": [2474], "3questionsgetthegirl.com": [17719], "archomedia.com": [1170], "simplegiver.com": [10521], "virtkick.io": [17744], "*.smjg.org": [15010], "mail.tdc.dk": [15796], "hbr.org": [7048], "www.e-ksf.org": [4841], "cfs1.gcaptain.com": [6311], "www.teslamotors.com": [16142], "*.goaruna.com": [6770], "www.safecount.net": [14232], "lca2014.linux.org.au": [9406], "www.melkweb.com": [2783], "cclcm.ccf.org": [3236], "spam.fit.edu": [5942], "www.enthought.com": [5299], "www.thompson.com": [16377], "*.oreilly.com": [11661], "ad.aim4media.com": [741], "www.r-hpc.com": [13387], "www.mind.org.uk": [10407], "fjallfoss.fcc.gov": [5709], "postnewsads.com": [12981], "www.oumedicine.staywellsolutionsonline.com": [12140], "bios-mods.com": [1907], "support.cxense.com": [2694], "secretariat.nanog.org": [11490], "datared.dk": [4213], "nvenergy.com": [10981], "siteheart.com": [14866], "static4.boligportal.dk": [2191], "mein.webprospector.de": [18080], "service.burst.net": [2445], "peterborough.greenparty.org.uk": [6925], "www.cable-tv-deals.com": [18486], "kundcenter.prq.se": [12289], "www.wakelet.com": [17953], "www.pwmt.org": [13262], "assets-origin.nytimes.com": [11000], "nutricentre.com": [11583], "www.feistyduck.com": [5744], "cdn3.emilstahl.dk": [5208], "esv.de": [4968], "internet2.edu": [8279], "doc.yunohost.org": [18751], "piwik.xplr.com": [18586], "spoor-api.ft.com": [5826], "www.landalcampings.nl": [18490], "wcfia.harvard.edu": [7219], "comsecuris.com": [3545], "www.rareaviation.com": [13565], "csis.gc.ca": [2802], "www.katylee.com": [8819], "heatball.de": [7277], "www.thereadingroom.com": [16232], "stix.mitre.org": [10459], "domena.cz": [4669], "jad-journal.com": [8645], "www.nsupdate.info": [11552], "ats.stanford.edu": [15383], "mybbcentral.com": [10744], "cm.commerce5.com": [3479], "boe.es": [1536], "status.compose.io": [3526], "keygens.nl": [8869], "courses.lis.illinois.edu": [17258], "www.pkimber.net": [12305], "www.lobste.rs": [9534], "androidapi.xamarin.com": [18540], "www.yoursole.com": [18731], "www.smartlife.swisscom.com": [15698], "*.ssa.gov": [15060], "grove.io": [6981], "www.pureinfo.com": [13239], "www.bluecatnetworks.com": [2127], "www.metro.yandex.by": [18648], "shop.scooter-attack.com": [14390], "www.kriminalvarden.se": [9012], "j.kissinsights.com": [8726], "www.leagueoflegends.com": [9206], "uniregistry.com": [17196], "performancewheel.com": [12570], "*.facdn.net": [6270], "*.rhul.ac.uk": [13423], "help-de-de.nike.com": [11401], "shop.skanetrafiken.se": [14896], "partner.dota2.com": [4697], "www.meebey.net": [10205], "www.hotfile.com": [7556], "*.onstreamsecure.com": [11886], "app.stitcher.com": [15476], "www.arbeitsagentur.de": [1152], "shoplocal.com": [14716], "vdp.mycdn.me": [10824], "resume.submittable.com": [19636], "developer.kaazing.com": [8758, 8759], "imgd.nxjimg.com": [11591], "flixbus.com": [5931], "deezer.com": [4303], "fraedom.com": [19193], "icompass.insightexpressai.com": [8172], "bright-things.com": [2318], "www.marketdojo.com": [10010], "cb.qq.com": [13284], "calibre-ebook.com": [2740], "*.imagesbn.com": [7984], "idm.east.cox.net": [3739], "owa.portal.srgssr.ch": [19621], "cryptocointalk.com": [3855], "windows.net": [18343], "*.dlisted.com": [4595], "braintree.gov.uk": [2273], "tor.freedom.press": [6168], "apprenticeships.scot": [18959], "wtac.hinxton.wellcome.ac.uk": [19752], "metrics.washingtonpost.com": [17990], "www-edge.tnaflix.com": [16518], "rotlogix.com": [13980], "s0.life.itc.cn": [8388], "*.lighthouseapp.com": [9345], "www.ua-hosting.com.ua": [17081], "www.eyetechds.com": [5533], "indiasmbmarketplace.cisco.com": [3162], "www2.cisco.com": [3162], "m-vg.de": [9688], "www.illumos.org": [7970], "kennetnorthwilts.greenparty.org.uk": [6925], "national.virginmedia.com": [17737], "adbusters.org": [565], "zeuscat.com": [18853], "www.whoshiring.io": [18269], "www.brokentoaster.com": [2359], "www.googletagmanager.com": [6843], "eas4.emediate.eu": [5203], "wweek.com": [18312], "talk.hbo.com": [7047], "www.drive2.ru": [4762], "r.mail.ru": [9874], "cdn3.gbot.me": [6808], "factorydirectcabins.com": [5627], "research.yammer.com": [18646], "www.haystacksoftware.com": [7250], "www.momentusmedia.com": [10538], "www2.halton.gov.uk": [19236], "cryptedmemo.com": [3848], "www.boardzoo.com": [2167], "scs.uic.edu": [17231], "spin.de": [15276], "www.myportableworld.com": [10814], "bnc4free.com": [2164], "kickflip.io": [8880], "t.rasp.yandex.by": [18648], "www.feefighters.com": [5731], "www.1and1.es": [54], "tauntondeane.objective.co.uk": [19454], "pic4.zhimg.com": [18856], "uhhospitals.org": [17119], "foi.cardiff.gov.uk": [19039], "welcomeweek.gmu.edu": [6544], "homepage.1und1.de": [68], "network.feral.io": [5751], "www.anthonycameron.com": [1064], "ehostpros.com": [5679], "www.store.acs.org": [929], "www.journal-republican.com": [12657], "www.verfassungsschutz.de": [2427], "wurfljs.com": [18484], "*.uvic.ca": [17076], "bartbania.com": [1682], "doris.desy.de": [4399], "eneo.dict.cc": [4455], "meeting-reg.com": [10012], "www.searchdatacenter.de": [16018], "mlkscholars.mit.edu": [9747], "it.redhat.com": [13675], "secure.goemerchant.com": [6776], "static.lovefilm.*": [9625], "www.ocaml.org": [11612], "*.myhailprotector.com": [7164], "blackfire.io": [2052], "r-hpc.com": [13387], "*.autotrack.nl": [1418], "imss-test-storage.ads.caltech.edu.s3.amazonaws.com": [2757], "www.abbott.com": [402], "shop.education.lego.com": [9068], "www.avcosystems.com": [18971], "ems.sbi.co.in": [14082], "www.spin.de": [15276], "www.techidiots.net": [16028], "tfaforms.com": [16163], "tfl.gov.uk": [16681], "rareaviation.com": [13565], "d2jsp.com": [3997], "security.tiki.org": [16444], "tchibo.cz": [15985], "signin.comparethemarket.com": [3511], "whisky.de": [19756], "www.getvoip.com": [6582], "www.mrp.illinois.edu": [17258], "www.moava.org": [10486], "gls.gls-service.de": [6340], "apps.hackney.gov.uk": [7155], "www.professionalsecuritytesters.org": [13126], "thinkingchristian.net": [16365], "fnmag.co": [5582], "webadvisor.uchastings.edu": [16942], "feeds.trendmicro.com": [16717], "*.beyondsecurity.com": [1832], "astyle.alicdn.com": [805], "fw.to": [6287], "*.tlug.jp": [16535], "community.sabayon.org": [14214], "*.documentcloud.org": [4627], "www.huizen.nl": [11132], "hertzequipmentrentals.com": [7372], "www.arbor.net": [1154], "lists.wireless.org.au": [18366], "uptobox.com": [19718], "www.xagyl.us": [18501], "uweb2.host.ie": [4512], "goo.im": [6825], "edexchange.adobe.com": [615], "www.videopros.com": [17690], "starmoney.de": [15392], "www.threema.ch": [16399], "djkit.com": [4038], "www.jquery.com": [8451], "*.artsprojekt.com": [18803], "monsterdivx.com": [10565], "story.br.de": [1539], "disl.osu.edu": [11760], "joker.com": [8619], "downloads.realviewdigital.com": [13633], "dhi-scotland.com": [19118], "tepid.litle.com": [9470], "www.usrportage.de": [19722], "zerorobotics.org": [18838], "www.wayskinny.com": [18012], "finkmanufacturing.com": [1901], "vpnsearch.net": [17504], "managedforexprogram.com": [9942], "www.browser.yandex.by": [18648], "medialinx-academy.de": [10173], "projects.dm.id.lv": [4043], "www.dn.com": [4053], "bb24.csob.sk": [3896], "deviantart.net": [4423], "cj2.nl": [2618], "crmondemand.oracle.com": [12082], "www.sdilej.cz": [14431], "rave.ohiolink.edu": [11762], "laweval.neu.edu": [10902], "www.plan.gs": [15465], "1c-bitrix.ru": [56], "www.firstamendmentcenter.org": [5873], "utils.kde.org": [8718], "*.chatme.im": [3029], "curate.vbstatic.co": [17470], "ozvoucher.com.au": [12195], "gameinfo.na.leagueoflegends.com": [9205], "solicitor-concierge.com": [15116], "www.out-law.com": [12146], "www.th-mittelhessen.de": [15809], "www.applications.sciverse.com": [14375], "blog.codecentric.de": [3362], "press.udemy.com": [17111], "spd.de": [15201], "www.rotaryview.com": [13975], "www.browserid.org": [2370], "www.archive.is": [1164], "www.star.bnl.gov": [19009], "streifband.de": [7114], "www.synthetix.net": [15743], "www.cavirtex.com": [2910], "nic.ar": [10917], "s2.adform.net": [585], "statics.plurk.com": [12828], "www.openarchives.org": [12000], "www.howtowriteabookasap.com": [6716], "nic.ac": [11380], "www.mirrorbingo.com": [10444, 10445], "dropboxatwork.com": [4768], "register.apple.com": [1120], "www.glo.wustl.edu": [17993], "www.surfline.com": [15651], "business.udemy.com": [17111], "rantoulpress.com": [13550], "cdn.amazon.jobs": [912], "onlineservices.milton-keynes.gov.uk": [10401], "mirakar.com": [10439], "www.theartstack.com": [16244], "nb-no.facebook.com": [5620], "www.lucidpress.com": [9646], "*.350.org": [104], "cablemystreet.virginmedia.com": [17737], "a1.twimg.com": [16877], "hailavenger.com": [7165], "www.ceredigion.gov.uk": [2964], "upp.itunes.apple.com": [1120], "render.lv3.hbo.com": [19240], "static.localphone.com": [19370], "gis.ncdc.noaa.gov": [11083], "www.mea.elsevierhealth.com": [5187], "support-fr.upc-cablecom.ch": [19716], "www.wordentropy.org": [18432], "www.globalways.net": [6741], "www.inf.tu-dresden.de": [15871], "jaymart.co.th": [8535], "trainingindustry.com": [16657], "css.gov.au": [3495], "www.coverstand.com": [3727], "wallet.google.com": [6834], "endora.cz": [5248], "www.sublimetext.com": [15562], "cdn.mars-one.com": [10029], "tildedave.com": [16446], "aei.org": [277], "shop.sloanreview.mit.edu": [9749], "cdn7.iconfinder.com": [7921], "www.tr.im": [16624], "login.weixin.qq.com": [13285], "ab9il.net": [237], "studyabroad.washington.edu": [17291], "forumatic.com": [6065], "cdn.els-cdn.com": [5182], "*.doe.gov": [17210], "www.habrastorage.org": [7130], "michaelwlucas.com": [10341], "bx.in.th": [1586], "livewire.amnesty.org": [956], "*.blkb.ch": [19333], "postmaster.msn.com": [9796], "blog.bing.com": [1895], "cinema.arte.tv": [18966], "systemintegra.ru": [15759], "www.ja-sig.org": [8522], "university.appcelerator.com": [1113], "www.ondarossa.info": [11825], "gifsauce.us": [6640], "portal.iter.org": [7847], "www.kiwiirc.com": [8930], "www.fomnetworks.com": [5584], "www.prudentbear.com": [13184], "css.cals.cornell.edu": [3676], "www.checktls.com": [3053], "eroshare.com": [5350], "democracyinaction.org": [4354], "discovercard.com": [4549], "tjoos.com": [16507], "secure.nildram.net": [11405], "writer.zoho.com": [18884], "umaine.edu": [17321], "www.internetfreedomfestival.org": [19301], "downloads.haskell.org": [7229], "itch.io": [8389], "medwiki.stanford.edu": [15383], "www.enpass.io": [5282], "panel.djangoeurope.com": [4592], "n.pr": [1920], "images.path.com": [12451], "distfiles.macports.org": [9821], "www.yellowbook.acs.org": [929], "api.freebase.com": [6157], "www.nypost.com": [18428], "chris.lu": [3102], "www.angreifer.org": [1018], "softcreatr.de": [15091], "wayfsp.wayf.dk": [17896], "v2.retargeter.com": [13601], "jiveworld.jivesoftware.com": [8585], "postaffiliatenetwork.com": [12952], "thebodyshop.ch": [3645], "partspider.com": [12417], "a.pgtb.me": [10159], "www.interdiscount.ch": [3645], "www.popatomic.org": [12904], "milkandmore.co.uk": [10396], "businessfinder.mlive.com": [9760], "tortoisegit.org": [16595], "www.hoteltotravel.com": [7555], "*.pokylinux.org": [12858], "tokbox.com": [16532], "renewablefreedom.org": [13766], "astronomicaltours.net": [1305], "ads-by.yieldselect.com": [18679], "vanlanschot.nl": [17552], "webapps.cs.umd.edu": [17263], "linksalpha.com": [9378], "software.ucsd.edu": [16939], "globalweb.co.uk": [6736], "maninthemirror.org": [9936], "preview.npmjs.com": [11539], "www.fastcodesign.com": [5680], "algorithms.rdio.com": [13595], "video.ecc-platform.org": [4879], "www.ico.org.uk": [7688], "reg.confuzzled.org.uk": [3574], "www.cdon.eu": [2562], "www.cimbclicks.com.my": [2606], "zh.chaturbate.com": [3035], "metastatuspage.com": [15438], "*.reviewjournal.com": [9160], "*.tfl.gov.uk": [16681], "static.picload.org": [12661], "*.wegohealth.com": [18185], "i.bigmir.net": [1866], "suggests.rasp.yandex.com": [18651], "*.frcanalytics.com": [6113], "www.returnpath.com": [13833], "adam.amnesty.org": [956], "edu.kde.org": [8718], "naturfotografen-forum.de": [6067], "businesscatalyst.com": [2457], "nike.com": [11401], "*.lexpress.fr": [9071], "youtube.com.lv": [18709], "www.autobytel.com": [1424], "privacy.stanford.edu": [15383], "forum.vpn.ac": [19742], "jslib.iweb.com": [7875], "leics.police.uk": [9240], "www.ind.ie": [8048], "www.securepurchaseserver.com": [14510], "astronomy.fas.harvard.edu": [7219], "mjdk.dk": [19401], "www.dearbytes.com": [4263], "umw.edu": [17262], "item.jd.com": [8423], "www.appcanary.com": [1103], "pi.pardot.com": [12399], "monitoring.pipni.cz": [12257], "www.evanced.info": [5434], "www.browser-update.org": [19020], "m.desy.de": [4399], "*.macfarlanepackaging.com": [9826], "www.yuilibrary.com": [18625], "static-hearth.cursecdn.com": [3934], "static1.bentasker.co.uk": [1772], "images.thoughtbot.com": [16387], "flashgot.net": [5904], "www.nos-oignons.org": [11511], "factoryselecthomes.com": [5627], "uowdubai.ac.ae": [17350], "www.instasync.com": [19297], "devolo.com": [4427], "wsjeuropesubs.com": [11321], "jobs.sciencecareers.org": [14379], "www.51fanli.net": [171], "7elements.co.uk": [190], "www.ohloh.org": [11766], "cas.myuni.sydney.edu.au": [19649], "hackerspace.gr": [6915], "www.piratenpartei.at": [12720], "*.wral.com": [17929], "muse.mu": [10709], "opendaylight.org": [11934], "www.amiunique.org": [904], "code.google.com": [6834], "*.redcatsecom.com": [13684], "cpanel.net": [2653], "sirrix.de": [14859], "i.imm.io": [12743], "oascentral.bostonherald.com": [75], "*.bloxcms.com": [1525], "images.variety.com": [17565], "*.gamesplanet.com": [6437], "profileapi.services.microsoft.com": [10364], "detektor.fm": [4403], "acmsf.food.gov.uk": [19187], "www.accountkiller.com": [459], "scacommunity.usc.edu": [17278], "www2.bt.com": [1551], "*.twenga.com": [16874], "nslds.ed.gov": [4889], "takeonthegame.com": [19657], "yuba.stanford.edu": [15382], "*.pld-linux.org": [12268], "www.anon-ib.com": [1035], "iki.fi": [7961], "iis.net": [7741], "debian-administration.org": [4269], "www.zakird.com": [18781], "www.lezlovevideo.com": [9281], "lintian.debian.org": [4275], "login.carbook.com": [3116], "loopliving.wustl.edu": [17993], "blinksale.com": [2077], "www.ecsi.com": [4881], "origin-assets.clickmotive.com": [3248], "luck.betcoin.tm": [1813], "travaux.web4all.fr": [18052], "prelive.bvg.de": [1582], "wiki.openoffice.org": [1084], "circleofmoms.com": [3156], "www.axelsimon.net": [1471], "www.theme-fusion.com": [16339], "pre.zohodiscussions.com": [18886], "resellers.guidancesoftware.com": [7006], "js.washingtonpost.com": [17990], "bluegenio.com": [2131], "shrew.net": [19589], "info.maths.ed.ac.uk": [5067], "www.pbs-erhverv.dk": [12494], "www.unirel.vt.edu": [17740], "www.inschrijven.nl": [8161], "www.nandos.com": [11029], "hamstudy.org": [7179], "*.ting.com": [16473], "www.southampton.ac.uk": [17276], "smolensk.rt.ru": [13469], "p.yieldlab.net": [18682], "www.ncsi.com": [10887], "to.pbs.org": [1920], "www.prgmr.com": [13047], "*.illuminated-pots.com": [7969], "www.saintaardvarkthecarpeted.com": [14245], "www.parrot.com": [12409], "www.hertzvans.co.uk": [7371], "dsum-sec.casalemedia.com": [2870], "www.dhs.gov": [4035], "textualapp.com": [16162], "pinboard.in": [12677], "www.getpersonas.com": [6578], "afra-berlin.de": [285], "www.internetsafetyproject.org": [8274], "cyseclabs.com": [3991], "secureportal.stockport.gov.uk": [19628], "statichukd.com": [7549], "stablehost.com": [15357], "barclaycard.co.uk": [1664], "eforensicsmag.com": [4912], "www.agcs.allianz.com": [18950], "*.digibib.net": [4472], "www.splitreason.com": [15282], "secure2.convio.net": [3630], "www.corporatecardapplication.com": [3681], "0x539.se": [6], "www.katalog.yandex.by": [18648], "webcontrol.savana.cz": [14308], "www.womenshealthspecialists.org": [18410], "accessories-cdn.dell.com": [4335], "*.patternsinthevoid.net": [12459], "www.intensitylab.com": [8225], "activestatic.net": [502], "www.powys.gov.uk": [19513], "test.uat.groupon.com": [6974], "*.www.wikinvest.com": [18297], "www.thewesternworld.com": [16324], "*.redbull.com": [13666], "isc.sans.edu": [14071], "api.intercom.io": [8244], "cloud.mongodb.com": [10553], "login.truelife.com": [16768], "ssl-certificate-center.verisign.co.uk": [17623], "lists.egenix.com": [19134], "m.metro.ya.ru": [18626], "h5n.us": [7044], "*.hotels.com": [7554], "www.connman.net": [3578], "static01.nyt.com": [10997], "www.browserhacker.com": [2374], "collectdata.education.gov.uk": [19149], "www.mygirlfund.com": [10763], "www.neos.io": [11156], "www.over-yonder.net": [12157], "www.digitalis.leeds.ac.uk": [17318], "account.schwartzmedia.com.au": [14373], "www.erooups.com": [5349], "geografia.unizar.es": [17356], "www.rizon.net": [13911], "owa.uaa.alaska.edu": [17233], "ems-ph.org": [5222], "www.linux.it": [8385], "www.norwegianclass101.com": [11509], "piwik.broadcasthe.net": [2354], "netfirms.com": [11226], "m-w.co.uk": [9689], "webmail.banan.cz": [1489], "oauth.accounts.firefox.com": [5859], "www.npmjs.com": [11539], "www.andrewbrookins.com": [1003], "www.jitscale.com": [8581], "curesec.com": [3928], "www.insidehighered.com": [8163], "bankid.no": [1643], "checkout.coinjar.com": [3397], "newsletter.manageengine.com": [9940], "*.pay.gov": [12465], "www.aylesburyvaledc.gov.uk": [18976], "*.artlebedev.ru": [1223], "labs.runabove.com": [14034], "weather.boston.com": [2233], "c4ss.org": [2504], "hack.ens.fr": [4930], "adserver.msn.com": [9796], "leadback.advertising.com": [662], "dome.mit.edu": [9749], "calsky.com": [2727], "si4.rgstatic.net": [13422], "www2.sites.uidaho.edu": [17257], "newsroom.shaw.ca": [14687], "infrastructure.gov.au": [4371], "ycharts.com": [18613], "defcongroups.org": [4026], "ssl.intevation.net": [8297], "youtube.fr": [18709], "whispergifts.com": [18245], "www.imgrush.com": [8000], "www.terrabank.ru": [16129], "webarchitects.coop": [18109], "www.exiledonline.com": [4997], "www.buffalo-technology.com": [2398], "pda.metro.ya.ru": [18626], "canarywatch.org": [2804], "ww5.gloucestershire.gov.uk": [6749], "it.leeds.ac.uk": [17318], "swarmapp.com": [19646], "sanoma.fi": [14288], "static.slickdealz.net": [14958], "*.jobthread.com": [8593], "ovh-hosting.fi": [12173], "engineering.osu.edu": [11760], "www.flonline.eu": [5578], "securityconference.de": [14526], "www.bitballoon.com": [1923], "eliminatejunkemail.com": [12336], "mx.01.org": [1], "stowesports.com": [294], "liuwg.web.cern.ch": [2575], "www.t3.io": [15777], "wholefoodsmarket.com": [18264], "analytics.slashdotmedia.com": [14948], "weihnachtsbaumspiel.tivi.de": [19800], "www.studentmoney.uillinois.edu": [16960], "profilocommercialeprivati.poste.it": [12965], "qt-apps.org": [19461, 19462], "m.yandex.kz": [18652], "www.adentifi.com": [583], "swisscex.com": [14207], "static01.vg.no": [17484], "www.cloudshark.org": [19068], "tampabay.com": [15937], "newsroom.t-mobile.com": [15772], "www.talentopoly.com": [15921], "ifcext.ifc.org": [8258], "libopenraw.freedesktop.org": [6126], "www.obi.hu": [19452], "gu.tdconline.se": [15799], "c1.rgstatic.net": [13422], "ylilauta.org": [19792], "it.jhu.edu": [16296], "pathways2gsfa.org": [12454], "www.qrpedia.org": [13311], "ipv6.doesnotwork.eu": [4632], "static.cdn.realviewdigital.com": [13633], "www.dragonair.com": [4740], "jonathanmayer.org": [8624], "e.gettyimages.com": [6620], "dematec.ens.fr": [4930], "updateframework.com": [17386], "calendars.com": [2738], "secure.security.nl": [14524], "mikemasin.com": [10385], "zvv.ch": [19806], "*.fernuni-hagen.de": [5755], "adindex.de": [275], "encrypted.redteam.net": [13679], "*.yplanapp.com": [19798], "newyorkvocalcoaching.com": [11300], "www.gsfc.org": [6387], "www.gls-group.eu": [6523], "abcnews.go.com": [240, 241], "fws.gov": [17060], "sites.7-eleven.com": [187], "secdn.williamhill.com": [18315], "www.cemetech.net": [2933], "forbrukerportalen.no": [6019], "www.gcmasia.com": [6309], "tags.news.com.au": [11338], "www.postlapsaria.com": [12980], "autodiscover-s.outlook.com": [12153], "cdn.pro186.com": [13109], "i.local.ch": [9536], "www.tonergiant.co.uk": [16545], "fiercepharma.com": [5777], "www.cits.ruhr-uni-bochum.de": [14030, 14031], "ercnsm.osu.edu": [11760], "workspace.v2ex.com": [17463], "consent.live.com": [9483], "rxs3.answcdn.com": [1059], "app-de6.resrc.it": [13599], "phoenix.edu": [12633], "www.dionyziz.com": [6915], "apps.peterborough.gov.uk": [12594], "www.verisign.com.hk": [17623], "hotelplan.ch": [19262], "public.govdelivery.com": [6863], "ad.z5x.net": [4082], "cce.engineering.osu.edu": [11760], "cchtml.com": [2914], "businessservices.usc.edu": [17278], "www.znaturalfoods.com": [18773], "vidia.swisscom.ch": [15698], "imx.solid-run.com": [15117], "billing.purevpn.com": [13240], "scopus.com": [14391], "next.delicious.com": [4328], "cmnf.osu.edu": [11760], "www.matrox.com": [10079], "kundencenter.web.de": [18050], "www.btplc.com": [1547], "www.bitquick.co": [1943], "ca-securem.ikea.com": [7959], "pop.com.br": [12279], "www.ll.mit.edu": [9749], "www.youtube.com.gr": [18709], "blog.zugaina.org": [18919], "computersweden.idg.se": [7705], "www.cs.ncsu.edu": [11491], "engineering.opendns.com": [11932], "support.canonical.com": [2810], "www.newit.co.uk": [11296], "*.linuxnewmedia.com": [9396], "spotify.com": [15296], "docs.libreoffice.org": [9311], "www.twitthis.com": [16887], "www.igowild.com": [7955], "sixapart.com": [14889], "www.getclouder.com": [6568], "*.burstmedia.com": [2446], "reader.wustl.edu": [17993], "*.airbnb.ru": [749], "nextbus.com": [11360], "www.jdkasten.com": [8427], "rareconnect.org": [13566], "touch2.groupon.com": [6974], "peacefire.org": [12504], "scholar.google.co.*": [6837], "faasand.gpehosting.com": [6376], "auto.ricardo.ch": [13866], "compari.ro": [3512], "m.openwireless.org": [12029], "www.stura.htwk-leipzig.de": [7114], "heino-cykler.dk": [7287], "post2.audioscrobbler.com": [1360], "freebase.com": [6157], "r5.mzstatic.com": [1119], "www.easynews.com": [5027], "bitcard.org": [1928], "assets.seedrs.com": [14551], "*.medicinenet.com": [10192], "support.sucuri.net": [15575], "customers.gfi.com": [6324], "si4.twimg.com": [16877], "enes.dict.cc": [4455], "www.somethingawful.com": [15130], "wms.assoc-amazon.ca": [1285], "msgme.com": [19413], "simple-talk.com": [14819], "www.weheartit.com": [18017], "maricopa.edu": [9990], "desy2.desy.de": [4399], "s-media-cache-ec0.pinimg.com": [12691], "cl.godaddy.com": [6773], "heliosiq.adtechus.com": [639], "pkr.com": [12751], "firmas.lv": [5865], "fmaba.com": [5647], "alternatives.ca": [882], "developer.xamarin.com": [18540], "bingplaces.com": [1896], "medgadget.com": [10141], "*.confirmit.com": [3570], "wikinformatica.unizar.es": [17356], "eroakirkosta.fi": [5348], "secure.utopia-web.com": [17455], "pixel.sitescout.com": [14871], "lucidpress.com": [9646], "jbox.com": [19318], "webapps.kent.gov.uk": [8851], "planet.nuug.no": [10979], "www.yourls.org": [19795], "freestyle.vc": [6185], "www.diasp.org": [4447], "www.ghosteryenterprise.com": [6630], "*.www.footlocker.com": [6008], "migrosmagazine.ch": [19399], "sheffield.moderngov.co.uk": [19405], "speeddl.com": [10121], "a-v2.sndcdn.com": [15032], "*.agari.com": [720], "melkweb.com": [2783], "hs10.snstatic.fi": [14145], "reparti.gel.ulaval.ca": [17229], "www.bouncerstation.com": [2245], "appvault.com": [1111], "m.burt.io": [2449], "tuples.random.org": [13545], "store.23andme.com": [74], "fpp.wustl.edu": [17993], "www.networkadvertising.org": [11268], "zdbb.net": [18759], "cdn.sparkfun.com": [15222], "www.privacyinternational.org": [13082], "kunk.org": [10950], "diversityandaccess.stanford.edu": [15383], "www.kennedy-center.org": [19335], "dhcpforum.isc.org": [7821], "www.allybank.com": [865], "flipboard.com": [5925], "meet.jit.si": [8583], "www.niap-ccevs.org": [10915], "www.b-link.bucknell.edu": [2387], "imgs.xkcd.com": [19786], "svn.mdk3.aircrack-ng.org": [18948], "instartlogic.com": [8190], "www.l0cal.com": [9058], "update.drweb.com": [4783], "campus.uni-due.de": [17165], "*.pro-linux.de": [13106], "lucaspetter.com": [9641], "fema.gov": [5715], "apps.canvas.uw.edu": [17077], "www.ancud.de": [995], "www.taylorandfrancis.com": [8118], "blog.slideshare.net": [14962], "mein.ktk.de": [8753], "securabit.com": [14477], "www.ederdrom.de": [5076], "whitehatsec.com": [18250], "www.braindecoder.com": [2267], "www.zerties.org": [18847], "torrentshack.me": [16584], "repost.us": [13786], "www.tagged.com": [15909], "awesomejar.com": [1462], "downloads.raspberrypi.org": [13569], "fiercefinance.com": [5775], "maliit.org": [9923], "appelli.amnesty.it": [965], "visistat.com": [17768], "chip01.chipimages.de": [2596], "virtualnewscenter.wpengine.netdna-cdn.com": [17753], "www.wdr3.de": [18015], "*.stkittszipline.com": [15354], "sso.alfa-openmedia.de": [800], "www.rebornbuddy.com": [2230], "www.webmagazin.de": [18129], "www.article19.org": [1231], "*.keymile.com": [8870], "www.nttdocomo.co.jp": [10969], "beta.leboncoin.fr": [19351], "*.tutsplus.com": [16853], "mewsite.com": [10326], "www.nrf.com": [11059], "helpdesk.umd.edu": [17263], "artoncampus.rit.edu": [13434], "www.cis.rit.edu": [13434], "www.frictionalgames.com": [6210], "extranet.ic.nhs.uk": [10913], "www.interpol.int": [8293], "yahoo.domaintools.com": [4660], "www.just-eat.dk": [19328], "wikilov.es": [18296], "cse.umich.edu": [17266], "massagemag.com": [10049], "www.kabelbw.de": [19331], "paste.proxy.sh": [13181], "storage.jd.com": [8423], "noiselessvault.org": [11459], "vmail.connect.comcast.net": [3460], "www.improvely.com": [8020], "imat.nottingham.ac.uk": [11528], "seer.cancer.gov": [2805], "secure.junodownload.com": [8683], "tr.libreoffice.org": [9311], "www.berlin.de": [1791], "www.kickass-torrents.to": [8879], "steadfast.net": [15446], "tunbridgewells.objective.co.uk": [19454], "app.domainskate.com": [4657], "www.teststackoverflow.com": [15359], "www.kimberly-clark.com": [8889], "kinox.to": [19337], "socialconnect.axosoft.com": [1477], "mxr.theplatform.com": [16229], "paypal.adtag.where.com": [18238], "www.pariloto.net": [7732], "justcloud.com": [8689], "*.cdn.kixeye.com": [8729], "etoro.com": [4978], "*.schibsted.se": [14352], "wtsdc.nlm.nih.gov": [11052], "piraten-basel.ch": [12284], "hpcf.upr.edu": [17006], "ucla.in": [1920], "stage-mas.wiiings.com": [18288], "www.cloudmining.guru": [3310], "www.monkeysaudio.com": [10559], "publicaccess.leeds.gov.uk": [19353], "astronautix.com": [5240], "*.linux.lu": [9405], "*.examiner.com": [5480], "secure.buypremiumtech.net": [2466], "www.vitrinepix.com.br": [19738], "www.cmascenter.org": [2625], "www.hideme.today": [7395], "maysoft.com": [10102], "nj02all01.baidupcs.com": [1620], "newblood.anonops.com": [1042], "www.hpi.uni-potsdam.de": [17333], "www.portalen.dtu.dk": [16031], "*.esi.dz": [4960], "researchport.umd.edu": [17263], "igalia.com": [7950], "waitrose.com": [17950], "www.dentistry.leeds.ac.uk": [17318], "i.h-t.co": [7041], "rangenetworks.com": [13548], "api.o.qcloud.com": [13301], "barnard.edu": [1674], "veranstaltungen.wienenergie.at": [18284], "ddragon.leagueoflegends.com": [9206], "gigya.com": [6659], "secure.iows.ikea.com": [7959], "freebsdfoundation.org": [6122], "cdn1.hubspot.com": [7594], "mpbio.com": [9783], "openadultdirectory.com": [11917], "selenic.com": [10279], "www.bupa.com": [2439], "www.lovtidende.dk": [9634], "*.peer39.net": [12513], "www.socialcampaign.com": [3818], "www.marketing.allianz.com": [18950], "www.oktatas.hu": [11777], "bridgeways.com": [2315], "www.gymglish.co.uk": [7038], "www.synchronicer.dk": [15729], "forum-de.msi.com": [9792], "www.jacksfetishtube.com": [8484], "www.metro.yandex.kz": [18652], "ad.reklamport.com": [13750], "prism.nts.wustl.edu": [17992], "cdn.asset.geek.net": [6493], "www.alpha.gr": [6911], "skylineregistrations.co.uk": [14936], "www.cccure.training": [2542, 2543], "www.di.ens.fr": [4930], "brueckenbauer.ch": [19399], "www.openrce.org": [11967], "www.my.calpoly.edu": [2747], "login.centreon.com": [2957], "villahostels.com": [17714], "getscroll.com": [6603], "www.attendesource.com": [1337], "www.browseraddon.com": [2373], "order.1and1.com": [51], "dyson.co.uk": [4837], "netveano.com": [11255], "login.monster.com": [10564], "cinestar.de": [3143], "www.oeis.org": [11619], "atos.net": [1330], "rm.yieldmanager.com": [13881], "passport.yandex.com.tr": [18649], "*.tds.net": [15803], "fedoramagazine.org": [5728], "thumbs.crakpass.com": [3759], "www.freebieber.org": [5783], "technet.microsoft.com": [10364], "gearsourceeurope.com": [6485], "websupport.at": [18091], "fust.ch": [3645], "7gwc-kbhkort.kk.dk": [8730], "www.vhlcentral.com": [17486], "www.givingcomfort.org": [6690], "www.languageperfect.co.nz": [9146], "msm.mitre.org": [10459], "cybermill.com": [3973], "www.maxmind.com": [10097], "knowledge.rapidssl.com": [13557], "hr-skyen.dk": [7093], "aamc.org": [232], "courses.cites.illinois.edu": [17258], "cyberfret.com": [3970], "www.executiveinterviews.biz": [5488], "skroutz.gr": [14921], "*.marksandspencer.com": [9945], "cdn.syndication.twimg.com": [16877], "edu.simplebooklet.com": [14825], "optimizedby.rmxads.com": [13881], "*.co3sys.com": [3333], "*.london.hackspace.org.uk": [9581], "www.irpa.umd.edu": [17263], "newdream.net": [11288], "systems.cse.iitb.ac.in": [7744], "bbbsilicon.org": [1495], "www.cadsoft.de": [2711], "assets.tribalhosting.net": [16726], "translate.yandex.ua": [18656], "www.mork.mo": [10593], "anglomedia.net": [1016], "academics.usc.edu": [17278], "bloggerei.de": [2108], "fuzeqna.com": [1410], "envirocallservice.newcastle.gov.uk": [11315], "norfolk.cs.washington.edu": [17291], "www.neovim.io": [19429], "www.sunbeltsoftware.com": [15596], "www.verisign.nl": [17623], "demo.pritunl.com": [13078], "a1.lscdn.net": [9102], "www.sciencemag.org": [14382], "lyrishq.com": [9686], "*.as.utexas.edu": [17285], "wikivs.com": [18299], "galogin.ntu.edu.tw": [10971], "scrs.gc.ca": [2802], "totemapp.com": [16606], "style.alibaba.com": [809], "*.pixnet.net": [12745], "otldisclosure.stanford.edu": [15383], "npmrds.ext.here.com": [7326], "partnernet-qa.symantec.com": [15715], "konami-korea.kr": [8973], "nlnetlabs.nl": [10941], "www.webgo.de": [18064], "tracker.cloud.hhs.gov": [7062], "eventbrite.com": [5442], "*.3m.com": [127], "opendoors.org": [12009], "enfuse.co": [7006], "api.jquerymobile.com": [8452], "www.bluetoad.com": [2137], "eportal.schools.doncaster.gov.uk": [4678], "www.whms.com": [17907], "www.disk42.com": [4561], "tpptraining.com": [15853], "pikpok.com": [12673], "cdn.altex.ro": [886], "*.justia.com": [8697], "www.midphase.com": [10378], "www.observium.org": [11706], "news.wmtransfer.com": [18076], "webaccounts.arcgis.com": [1155], "whlove.taobao.com": [15952], "tall.it.da.ut.ee": [17069], "cdn2.openculture.com": [12006], "www.humanrightsfirst.org": [7611], "www-10.lotus.com": [9617], "stackoverflow.com": [15359], "it.provost.usc.edu": [17278], "2.taobao.com": [15952], "jkry.org": [8441], "tapatalk.com": [15955], "dealers.car.com": [2826], "*.webstarts.com": [18090], "my.choopa.com": [3099], "www.aqueousvapor.com": [1145], "mixxx.org": [10471], "*.autotraderstatic.com": [1419], "clickandpledge.com": [3255], "www.earth.illinois.edu": [17258], "clubillico.videotron.com": [17700], "ugenr.dk": [17116], "wizbangpop.com": [18389], "wiki.commotionwireless.net": [3496], "www.peopleconnect.scot.nhs.uk": [10913], "anz.co.nz": [18958], "secure.myrtlebeachshows.com": [10844], "avropa.se": [1456], "fr.ricardo.ch": [13866], "heasarc.nasa.gov": [10869], "www.livejournal.com": [9490], "sts.wustl.edu": [17993], "www.davincivaporizer.com": [4231], "www.wdws.com": [17899], "www.medium.com": [10197], "nucleus.con.ohio-state.edu": [11761], "www.formstack.com": [6046], "cpfp.cancer.gov": [2805], "*.harakahdaily.net": [7202], "e2e.ti.com": [16152], "postalinspectors.uspis.gov": [17027], "choicecheapies.co.nz": [12195], "gocart.valueclickmedia.com": [17540], "www.tvshowtime.com": [15888], "rubytogether.org": [14022], "display.yandex.com.tr": [18649], "mycdsglobal.com": [2564], "www.togevi.com": [8401], "codesearch.debian.net": [4273], "www.mojandroid.sk": [10535], "kivo.com": [8927], "epilepsyontario.org": [5322], "wegoted.com": [18019], "blog.bigcartel.com": [1850], "accessories.stanford.edu": [15383], "rspamd.com": [14007], "*.intuitivepassword.com": [8307], "forum.federalsoup.com": [5719], "www.hornbach.ch": [7496], "www.poodletest.com": [12278], "*.filerio.in": [5794], "*.judiciary.gov.uk": [8664], "ebis.ne.jp": [5040], "*.nextag.de": [11363], "www.humankode.com": [7605], "distil.it": [4572], "www.enygf.eu": [5425], "datacenterknowledge.com": [4178], "pic.dhe.ibm.com": [7675], "www.instraffic.com": [8197], "tutanota.com": [16850], "voiceteachertraining.com": [11300], "mplayerhq.hu": [9784], "www.bernalbucks.org": [1794], "ads.nytimes.com": [11000], "eastlothian.gov.uk": [5014], "edge.halldata.com": [7175], "films.deathmask.net": [4266], "desjardins.com": [4391], "c.rgstatic.net": [13422], "www.swisspost.ch": [12949], "cadence.com": [2713], "search.edwardsnowden.com": [5103], "*.joomag.com": [8625], "www.quakenet.org": [13326], "otavamedia.fi": [12131], "otakumode.com": [12129], "www.mozillians.org": [10664], "ul.ie": [16978, 16979], "reparieren.ch": [19733], "trip.washington.edu": [17291], "linuxcounter.net": [9392], "w10.hillingdon.gov.uk": [7410], "*.spreadshirt.co.uk": [15300], "en-eo.dict.cc": [4455], "uct.ac.za": [17306], "www.awin1.com": [4486], "www.searchengineland.com": [16367], "*.warwick.ac.uk": [17348], "www.corningcu.org": [3678], "*.insight.com": [8170], "policyalternatives.ca": [19505], "comingolstadt.de": [3468], "aqueousvapor.com": [1145], "scitation.aip.org": [291], "kolabsys.com": [8960], "static4.startnext.com": [15412], "www.prv.se": [12290], "cocubes.com": [3335], "planet.moodle.org": [10575], "checkpoint.com": [3048], "section9.co.uk": [14470], "imgix.8tracks.com": [205], "quitter.is": [13369], "www.8win88win.com": [206], "store.blackphone.ch": [2048], "backupblog.cir.ca": [3153], "pulse.w3counter.com": [17889], "linuxcontainers.org": [9420], "www.eon-hungaria.com": [19161], "*.cloudfront.net": [3304], "kb.safenet-inc.com": [14227], "ftp.fau.de": [17311], "www.bloggerei.de": [2108], "facebookcorewwwi.onion": [5621], "www.malwaretech.net": [9927], "aaulan.dk": [399], "www.buywithconfidence.gov.uk": [19031], "qmail.jms1.net": [8587], "mid.live.com": [9483], "support.ookla.com": [11895], "allistene.fr": [855], "agwa.name": [736], "s.troveread.com": [16763], "hackerspaces.nl": [7150], "zhongaiyisheng.tmall.com": [19684], "collect.cn.miaozhen.com": [10337], "firstamendmentcoalition.org": [5874], "london.gov.uk": [9578], "alice-collaboration.web.cern.ch": [2575], "necdisplay.com": [10895], "www.kangurum.com.tr": [8781], "reverb.echo.nasa.gov": [10869], "c.wpimg.pl": [19766], "knowledge.kaltura.com": [8775], "www.calgaryoutdoorcentre.ca": [16943], "organicconsumers.org": [12103], "www.jewishpress.com": [8563], "services.forthnet.gr": [6054], "webarch.net": [18108], "www.newsyslog.org": [6897], "www.mobile-ent.biz": [8227], "www.ventrachicago.com": [17610], "*.localedge.com": [9538], "computeruniverse.net": [3541], "uformia.com": [17114], "www.blogoverflow.com": [15359], "www.coveredca.com": [3731], "www.cuinfo.cornell.edu": [3676], "*.cognitivedissidents.com": [3388], "mirbsd.org": [10437], "ovh.cz": [12173], "flyersrights.com": [5962], "digitalis.leeds.ac.uk": [17318], "artizone.com": [1234], "www.mommyslittlesunshine.com": [10539], "*.ndchost.com": [10892], "*.pitt.edu": [17332], "www.rki.de": [13912], "forum.ovh.sn": [12173], "www.webtranslateit.com": [18168], "copyright.com": [3657], "milton-keynes.gov.uk": [10401], "www.townsvillebottomfishingcharters.com.au": [16615], "order.jd.com": [8423], "dotcloud.com": [4693], "coolminiornot.com": [3638], "app3.salesmanago.pl": [14069], "set.io": [14632], "bigstockimages.com": [1867], "webmail.ncl.ac.uk": [10884], "vh2.ro.vutbr.cz": [17522], "sudo.ws": [6897], "liftdna.com": [9338, 9339], "*.domena.pl": [4670], "account.washingtonpost.com": [17990], "was-3.umd.edu": [17263], "*.aacqa.gov.au": [231], "stat.drweb.com": [4783], "*.quickbase.com": [8304], "spectator.org": [15245], "www.wigle.net": [18274], "naturalskinshop.com": [11103], "diis.unizar.es": [17356], "*.nsm.uh.edu": [17315], "www.system76.com": [15758], "ocaml.org": [11612], "oneservices.bracknell-forest.gov.uk": [19016], "moovweb.com": [10582], "forum.hitbtc.com": [7420], "hi-tech.mail.ru": [9874], "www.cointrader.net": [3411], "www.topatoco.com": [16564], "login.constantcontact.com": [3592], "hipchat.com": [7414], "btcgreece.com": [1558], "www.damtp.cam.ac.uk": [17243], "jsis.washington.edu": [17291], "tchibo.com.tr": [15985], "editmysite.com": [5085], "rasende.dk": [13568], "www.jucy.co.nz": [8463], "events.msdn.microsoft.com": [10364], "coccoc.com": [3342], "www.deichmann.com": [4317], "sil.org": [14123], "nandos.com": [11029], "heute.de": [19800], "www.infopackets.com": [8113], "chuangye.bbs.taobao.com": [15952], "cryptocoinsnews.com": [3856], "update.openmpt.org": [11951], "noscript.net": [11438], "allods.mail.ru": [9874], "exclusions.oig.hhs.gov": [7062], "socialtheater.com": [15068], "*.dmslocal.com": [6453], "sanwork.com": [14294], "www.youm7.com": [18714], "buy.entrust.net": [5304], "jira.mongodb.org": [10554], "distilleryimage11.instagram.com": [8182], "panopticlick.com": [12363], "www.virt-manager.org": [17743], "nl.sitestat.com": [14885], "*.crashspace.org": [3761], "www.ohio-state.edu": [11761], "cdn.whmcs.com": [17906], "it.chaturbate.com": [3035], "www.inside.com": [8164], "my.yunos.com": [18749], "tescobank.com": [16136], "findnsave.nj.com": [10931], "mordoviya.rt.ru": [13469], "beta.rsaconference.com": [13454], "experimental.docker.com": [4616], "*.newzbin.com": [11351], "www.nhs.uk": [10913], "cam.ac.uk": [17243], "first.org": [5576], "s.skimresources.com": [14912], "plymouth.greenparty.org.uk": [6925], "realtech-vr.com": [13630], "www.engr.washington.edu": [17291], "www.net-safe.info": [11180], "core.hostdime.com": [7510], "cas.pdcnet.org": [12625], "ukrnames.com": [17126], "blogs.strategyanalytics.com": [15510], "www.freewebsitetemplates.com": [19197], "help.getpocket.com": [6579], "www.fosscon.us": [6070], "blog.mangolanguages.com": [9952], "rawgit.com": [13580], "rawstudio.org": [13583], "forum.nginx.org": [11374], "www.hipchat.com": [7414], "xiangqing.taobao.com": [15952], "www.hairsmize.com": [7166], "modelaircraft.org": [438], "www.eiskent.co.uk": [4919], "www.groton.org": [6966], "www.kde-look.org": [19461], "8.baidu.com": [1619], "www.zamg.ac.at": [18783], "*.redferret.net": [13673], "adsurve.com": [636], "winehq.org": [18352], "social.dw.de": [4090], "jobboerse.web.de": [18050], "staging.wordvine.sydney.edu.au": [19649], "www.roughtradegear.com": [13985], "www.europython.eu": [5409], "piwik.pixcept.de": [12735], "vfh.wustl.edu": [17993], "www.cimsasia.com": [9743], "www.cloudtrax.com": [3297], "ps.w.org": [17885], "www.clicktools.com": [3264], "scottevest.com": [14398], "vip.knet.cn": [8739], "dailyherald.com": [4111], "business.carphonewarehouse.com": [2861], "crpk.ornl.gov": [11693], "releases.wildfiregames.com": [18308], "vf.com": [3551], "www.bitcointoyou.com": [1986], "www.alien.net.au": [811], "fomori.org": [5988], "shop.moaf.org": [10481], "eureka.berkeley.edu": [17240], "mail.unizar.es": [17356], "wiwi.htwk-leipzig.de": [7114], "www.shareit.com": [14669], "www.thebodyshop.co.uk": [16250], "www.kantarworldpanel.com": [8786], "cdn.psychologytoday.com": [13189], "media.compete.com": [3519], "www.skynet.ie": [16210], "search.mywot.com": [10798], "vanguard.com": [19728], "r00tz.org": [13390], "wageningen.nl": [11132], "webmail.barvaux.org": [1685], "az698912.vo.msecnd.net": [10633], "golang.org": [6792], "www.alloscomp.com": [858], "studiumundbehinderung.kit.edu": [8797], "www.acrobat.com": [480], "api.recurly.com": [13652], "*.easyjet.com": [5025], "justhost.com": [8689], "plugins.smyl.es": [14141], "53.com": [5781], "discussions.zoho.com": [18884], "pkcsecurity.com": [12264], "ccsdlib-preprod.ccsd.cnrs.fr": [6195], "www.neustar.biz": [11280], "cartercenter.org": [2867], "wiiings.com": [18288], "www.privacy-handbuch.de": [13081], "filerio.in": [5794], "blog.discourse.org": [4545], "insight.bn-mclp.org": [2162], "jobs.crick.ac.uk": [19090], "alien.net.au": [811], "carecareersdevon.org.uk": [19040], "img1.linuxdeepin.com": [4302], "rws.maxcdn.com": [10091], "gatorchryslercllc.mycars.dealer.com": [4256], "banner.euroads.se": [5402], "thebodyshop.co.uk": [16250], "*.ujf-grenoble.fr": [16962], "www.mbsportsweb.ca": [9721], "eurexrepo.com": [5399], "code.wireshark.org": [18369], "cfsi.pgcdn.com": [12246], "101.taobao.com": [15952], "xmpp.net": [18525], "*.vtracy.de": [17867], "www.ce.jhu.edu": [16296], "vitalads.com": [17787], "www.pubkey.is": [13201], "www.cryptocointalk.com": [3855], "www.odevzdej.cz": [11725], "inet.se": [8087], "*.store.pgp.com": [12245], "androidguiden.idg.se": [7705], "forms.dundeecity.gov.uk": [4801], "lsbu.ac.uk": [9098], "pass.yandex.by": [18648], "s3.mediamatters.org": [10158], "www.havelockinvestments.com": [7243], "greenhouse.lotus.com": [9617], "docs.indymedia.org": [8085], "images.sankakucomplex.com": [19563], "secpriv.wusm.wustl.edu": [17993], "piwik.tutanota.de": [16851], "www.clevelandclinicmeded.com": [3236], "fluxbb.org": [5957], "*.asbestossafety.gov.au": [1243], "browserleaks.com": [2371], "www.greenserver.ch": [19228], "www.movie4k.org": [10636], "stateof.creativecommons.org": [3778], "firstclassmagazine.se": [5875, 5876], "blog.cnes.fr": [2634], "www.optionbit.com": [12075], "microsites.lincolnshire.gov.uk": [9364], "engagemedia.org": [5260], "www.damnsmalllinux.org": [4129], "prntscr.com": [19517], "www.picload.org": [12661], "labs.data.gov": [4175], "helpjuice.com": [7309], "www.equinix.com": [5333], "mydatapipe.com": [10803], "www.ysubookstore.com": [18743], "www.diygadget.com": [4587], "a.wattpad.com": [18006], "www.dzone.com": [4095], "dsp.hscic.gov.uk": [19264], "lists.linuxfoundation.org": [9412], "cryptocapital.co": [3867], "licensing.jamendo.com": [8502], "www.pypip.in": [13266], "www.draugiem.lv": [4742], "*.hanselman.com": [14396], "www.webclaim.net": [4894], "www.puma.com": [13227], "no.cloudflare.com": [3285], "www.pulpcentral.com": [12304], "lab.neos.eu": [10899], "*.airbnb.com.br": [749], "*.start.me": [15404], "infopaginas.com": [8114], "gitlab.labs.nic.cz": [11379], "hsdo.stanford.edu": [15383], "wiki.cyanogenmod.org": [3953], "ingdirect.com": [7768], "hjcms.de": [7071], "*.verizon.com": [17626], "mymail.asus.com": [357], "www.gravity.com": [6900], "eoft.eu": [4935], "*.stc.org": [15075], "artlebedev.ru": [1223], "prod01-piwik.firstlook.org": [5878], "summerinstitutes.stanford.edu": [15382], "js.revsci.net": [13840], "si.libreoffice.org": [9311], "www.house.resource.org": [13207], "www.pinboard.in": [12677], "leaserig.net": [9214], "democracynow.org": [4355], "spenden.correctiv.org": [3685], "requires.io": [13792], "sdc.countquest.se": [3709], "saas.harvard.edu": [7219], "www.confuzzled.org.uk": [3574], "www.aclu-wa.org": [255], "fightaging.org": [5785], "www.spotware.com": [15298], "*.techwebonlineevents.com": [16021], "stanfordhospital.org": [15386], "blogg.se": [2106], "www.datenspuren.de": [4219], "*.naver.net": [11112], "www.securitymouse.com": [14532], "acs-webmail.ucsd.edu": [16939], "smetrics.aclu.org": [256], "acuityplatform.com": [505], "jabber.at": [8473], "secure.backblaze.com": [1595], "www.pace2race.com": [12310], "nordnet.se": [11479], "fonts.sbnation.com": [14079], "www.yandex.com": [18651], "privacyfoundation.de": [6557], "cdn.spiegel.de": [15272], "mobility.vutbr.cz": [17522], "*.atlassian.com": [1321], "status.livechatinc.com": [9480], "www.mailpoet.com": [9879], "omarandwill.com": [11788], "cdn.livefyre.com": [9508], "*.getchute.com": [6566], "ac.els-cdn.com": [5183], "coham.osu.edu": [11760], "tepamine.com": [4057], "www.varusteleka.fi": [17571], "media.disquscdn.com": [4570], "business.t-mobile.com": [15772], "specifications.freedesktop.org": [6126], "feefighters.com": [5731], "www.levoleague.com": [9276], "*.api.livestream.com": [9514], "www.utbm.fr": [19724], "hidekibin.hidekisaito.com": [7393], "sdc.fiscal.treasury.gov": [16704], "admin.fedoraproject.org": [5726], "xiaozu.fanli.com": [5655], "lists.openhatch.org": [11941], "www.ikea.com": [7959], "newswhip.com": [11332], "trekaroo.com": [16708], "tips.fbi.gov": [5708], "*.cftc.gov": [3482], "bitcurex.com": [1987], "www.pdf.yt": [12235], "3.*.wdfiles.com": [18294], "commerce.us.reuters.com": [13836], "www.walmart.com": [17964], "www.letsencrypt.org": [9264], "did.hscic.gov.uk": [19264], "sp.lenta.ru": [19356], "crossrider.com": [3817], "sun.onthe.io": [11890], "www.nomachine.com": [11437], "mtoza.vzaar.com": [17883], "kiks.yandex.com.tr": [18649], "www.comsecuris.com": [3545], "www.retrofestive.ca": [13827], "rs-linkz.info": [13451], "flixster.com": [5933], "ea.twimg.com": [16877], "status.haskell.org": [7229], "andaluciapropertyrentals.com": [996], "images.travelpod.com": [16693], "cdn.colocationamerica.com": [3435], "aldi.fr": [299], "stadt-zuerich.ch": [15366], "www.borne.nl": [11132], "www.inet.se": [8087], "cdkeys.com": [2916], "inverse.ca": [8315], "buy.norton.com": [11505], "baylor.edu": [1706], "*.samba.com": [14070], "londonstockexchange.com": [9577], "tickets.com": [16425], "www.cumbriapartnership.nhs.uk": [10913], "news.33option.com": [103], "*.schoolloop.com": [14364], "try.diffoscope.org": [4463], "cert.pl": [2577], "pub.lmmp.nasa.gov": [10869], "internetstaff.com": [8285], "ebiz.sfn.org": [15077], "*.ticketmaster.co.uk": [16421], "blog.silktide.com": [14796], "openbittorrent.com": [11923], "ukpayments.org.uk": [16976], "tuki.kapsi.fi": [8791], "www.dvatril.cz": [4097], "dreamwidth.org": [4756], "*.louisville.edu": [17320], "regulatory.usc.edu": [17278], "www.marc.info": [9711], "o2.cz": [16076], "huntcal.com": [7622], "elafnettv.com": [5139], "support.transifex.com": [16669], "webmail.impulse.net": [8021], "www.jbeekman.nl": [8415], "etrade.com": [5391], "www.mndigital.com": [10160], "s4.reutersmedia.net": [16381], "www.zyvoxassist.com": [18771], "www.dm-mailinglist.com": [4050], "catalysttg.com": [2898], "de.mouseflow.com": [10624], "lovingsupport.nal.usda.gov": [17209], "www.westoxon.gov.uk": [18221], "*.admitad.com": [610], "www2.toyota.es": [16620], "*.jodohost.com": [8607], "www.demonsaw.com": [4359], "*.eukhosting.net": [4980], "www.kuro5hin.org": [9043], "autotools.io": [1433], "www.directbox.biz": [4529], "yroo.com": [18741], "www.openvz.org": [11991], "www.myfonts.com": [10758], "passwortwechsel.hslu.ch": [7583], "lists.fit.edu": [5942], "www.bgpstream.com": [1513], "www.irssi.org": [8359], "cryptonomicon.com": [3885], "www.facebook.fr": [5623], "rylwarfare.net": [13483], "*.oculu.com": [11720], "netloan.cardiff.gov.uk": [19039], "dfri.se": [4437], "www.weather.yandex.kz": [18652], "docs.pnp4nagios.org": [12275], "sitola.cz": [14887], "payments.n-kesteven.gov.uk": [10856], "grosskunden.bahn.de": [1617], "www.ktk.de": [8753], "www.ztunnel.com": [18767], "manager.submittable.com": [19636], "zakovska.skolaonline.cz": [19598], "static3.startnext.com": [15412], "viaforensics.com": [17658], "www.nccih.nih.gov": [11052], "cdn.scriptfodder.com": [14421], "onepanel.digitalpacific.com.au": [4496], "www.knsaber.com": [16550], "www.manchester.gov.uk": [9944], "mail.scs.uiuc.edu": [16956], "static.fas.harvard.edu": [7219], "foundingfathers.info": [6079], "archives.somethingawful.com": [15130], "blah.im": [2057], "apt.securelist.com": [14492], "pres.sso.bluewin.ch": [2157], "ssls.com": [14181], "mail.sans.org": [14072], "www.peersm.com": [12524], "your.burnley.gov.uk": [2444], "www.pinkpaislee.com": [12693], "store.xkcd.com": [19786], "www.kungfunation.com": [9037], "bugs.vestacp.com": [17653], "primarycare.nhs.uk": [10913], "remnux.org": [13414], "mysql2.cesky-hosting.cz": [19051], "certs.godaddy.com": [6773], "*.beautybar.com": [1741], "www.webtrekk.com": [18170], "lipetsk.rt.ru": [13469], "www.reaganlibrary.gov": [19541], "legitbs.net": [9233], "safebrowsing-cache.google.com": [6834], "www.flinq.de": [5922], "dshs.state.tx.us": [16151], "gl.libreoffice.org": [9311], "iuf.alternatifbilisim.org": [881], "www.personaldataecosystem.org": [12581], "thetoadfly.com": [16523], "cl.ly": [3206], "support.click-sec.com": [3241], "cms.winoptions.com": [18358], "www.crowdculture.se": [3820], "stat100.ameba.jp": [926], "sslcdce.internapcdn.net": [8254], "gamebase.dealspwn.com": [7549], "cpubenchmark.net": [2650], "bernalbucks.org": [1794], "cards.dbs.com.hk": [4010], "delecorp.delaware.gov": [15420], "scooter-attack.com": [14390], "sinnfein.ie": [14851], "images.yandex.by": [18648], "fastmail.fm": [5688], "www.devdocs.io": [4417], "www.timesofmoney.com": [16466], "cotsworld.objective.co.uk": [19454], "*.kirkusreviews.com": [8917], "www.openoffice.org": [1084], "www.trollingeffects.org": [16756], "*.osuosl.org": [12099], "www.tumutanzi.com": [16828], "*.itex.com": [8390], "familie.bayern.aok.de": [317], "europe.redhat.com": [13675], "ticker.mobile.de": [19403], "www.literotica.com": [9467], "www.poste.it": [12965], "photos-g.ak.fbcdn.net": [5700], "secure.netpr.pl": [11203], "www.guardian.co.tt": [6999], "www.openingscience.org": [12037], "www.osumarion.osu.edu": [11760], "www.gumroad.com": [7020], "cilkplus.org": [3135], "www.shkspr.mobi": [14116], "www.theapp.voicelessonstotheworld.com": [11300], "gentoo.ussg.indiana.edu": [8063], "www.perlentaucher.de": [12578], "origin-www.nbcudigitaladops.com": [10875], "svn.mozdev.org": [10647], "craigsmith.net": [19088], "scheduleonce.com": [14349], "www.schuilenburg.org": [14368], "www.unglue.it": [17163], "keepallthethings.com": [8839], "moana-surfrider.com": [10482], "stadt.zh.piratenpartei.ch": [12284], "imf.org": [7757], "www.nowwhere.com.au": [19443], "media.razoo.com": [13588], "netpartnerstudent.wustl.edu": [17993], "s.webtrends.com": [18171], "www.pinocc.io": [12696], "www.zenmate.com": [18818], "www.hinckleyandbosworthonline.org.uk": [7413], "qubes-os.org": [13344], "bromley.objective.co.uk": [19454], "forum.mandriva.com": [9947], "tpssl.weibo.cn": [14844], "pin.aliyun.com": [821], "www.pol.ulaval.ca": [17229], "*.cdnme.se": [2922], "employment.uow.edu.au": [17350], "redditmedia.com": [13691], "secure.fogcreek.com": [5980], "massdrop.com": [10050], "st.directadvert.ru": [4524], "www.nwprogressive.org": [11590], "www.somevid.com": [15131], "www.telusmobility.com": [16103], "antifraud.drweb.com": [4783], "www.cleverbridge.org": [3240], "www.mcc.gov": [19388], "xenogamers.org": [18563], "www.garygoddard.com": [6803], "creativecdn.com": [3782], "a5.lscdn.net": [9102], "www.xserver.*.jp": [18592], "glype.com": [6753], "victoriassecret.com": [17672], "www.diplomaframe.com": [3129], "megapath.com": [10229], "yourbittorrent.com": [18723], "directories.piers.com": [12256], "appsec.aarp.org": [234], "www.freelancersunion.org": [6177], "telepathy.freedesktop.org": [6126], "btunnel.com": [1581], "gateway.ipfs.io": [8343], "www3.eduid.cz": [5097], "ihouseonline.berkeley.edu": [17240], "www.sourcedna.com": [15171], "www.auctionthing.net": [1345], "github.io": [6680], "tls.so": [15825], "www.gsfacket.se": [6990], "timezero.ru": [16458], "www.bikeability.org.uk": [18998], "spreadshirt.no": [15300], "www.mail.ru": [9874], "sourcegraph.com": [15182], "cloud.quickline.com": [19530], "standaard.be": [15379], "hounslow.greenparty.org.uk": [6925], "www.ebuyer.com": [5042], "secure.leaseweb.com": [9215], "www.theaj.co.uk": [1162], "secureimg2.allposters.com": [835], "suffolkcoastalandwaveney.firmstep.com": [19183], "www.ruby-forum.com": [14016], "es.redhat.com": [13675], "www.888173.net": [200], "qisserver.htwg-konstanz.de": [7113], "www.ozon.ru": [12199], "*.gnome.org": [6354], "www.mirakar.com": [10439], "www.intentmedia.co.uk": [8227], "secure.skype.com": [14938], "hardwarebug.org": [7205], "connect.facebook.net": [5619], "freelancer.co.uk": [6176], "*.launchrock.com": [9168], "www.tvnzzshop.ch": [19450], "www.wallabag.org": [17960], "askjane.stanford.edu": [15383], "mirror.thecthulhu.com": [16334], "tokage.celartem.com": [2929], "www.imagemagick.org": [7978], "e-cosm2015.osu.edu": [11760], "www.usweeklysubscriptions.com": [17418], "abhayagiri.org": [416], "upc-cablecom.ch": [19716], "www.specimens.cancer.gov": [2805], "ltms.ncl.ac.uk": [10884], "webmail.ucsd.edu": [16939], "bringthegig.com": [2333], "shopinfo.net": [14726], "www.pornel.net": [12930], "hipmunk.com": [7416], "beta.mugenmonkey.com": [10689], "www.diasporabr.com.br": [4449], "odee.osu.edu": [11760], "quantamagazine.org": [13336], "diverse.direct": [4581], "*.jrrt.org.uk": [8632], "www.youtube.jo": [18709], "derpy.me": [4382], "arris.com": [1214], "ht.vc": [7587], "contentdn.net": [3613], "pipejump.recurly.com": [13652], "me.sailthru.com": [14243], "spreadshirt.nl": [15300], "myreslife.wustl.edu": [17993], "git.marmotte.net": [10027], "realvnc.com": [13627], "lovettpublishinghouse.com": [9633], "ripe.net": [13895], "techlive.adobe.com": [615], "dc2.learningcast.jp": [9212], "biblegateway.com": [1842], "www.qabel.de": [13298], "otalliance.org": [11680], "www.portal.scot.nhs.uk": [10913], "www.wildlifeofyourbody.org": [1768], "webmetrics.com": [18133], "xparkmedia.com": [18582], "*.bekb.ch": [19333], "adrxmedia.com": [17540], "*.alice-dsl.de": [810], "ronna.apan.org": [329], "www2.charterbusiness.com": [3022], "www.quickhash.com": [13358], "*.yahoo.net": [18637], "www.hostica.com": [7523], "*.thestranger.com": [16315], "www.2ton.com.au": [89], "www.cathaypacificcargo.com": [2904], "kaseya.com": [8802], "nigms.nih.gov": [11052], "mcafee.com": [10114], "discussions.citrix.com": [3178], "worlddab.org": [18448], "laneblog.stanford.edu": [15383], "go.forgerock.com": [19189], "www.porteus-kiosk.org": [12936], "www.mcb.net": [9966], "wauland.de": [18007], "www.mapquestapi.com": [9970], "libcom.org": [19361], "go.smashfly.com": [15003], "webprod.admin.uillinois.edu": [16960], "pass.etao.com": [4973], "interdiscount.ch": [3645], "www.cindercooks.com": [3140], "www.claudiodangelis.com": [3220], "girdle-assets.net-a-porter.com": [11171], "mochtu.de": [10510], "inspiredgifts.unicefusa.org": [17182], "helpdesk.pcc.nhs.uk": [10913], "microspot.ch": [3645], "cbe.osu.edu": [11760], "myresearch.uillinois.edu": [16960], "parentportal.enfield.gov.uk": [5258], "www.ezding.com.tw": [5536], "git.vpsfree.cz": [19743], "www.cloudfoundry.org": [3299], "www.argosonline.es": [1186], "media.andersonvalleypost.com": [4988], "asset-0.java.net": [8525], "slidedeck.com": [14960], "docs.intercom.io": [8243], "pavpanchekha.com": [12463], "www.intersango.com": [8294], "resilience.engineering.osu.edu": [11760], "moodle.unizar.es": [17356], "xorg.freedesktop.org": [6126], "staff.rice.edu": [13869], "tools.sli-systems.com": [14132], "crnt.osu.edu": [11760], "home.live.com": [9483], "securityresponse.symantec.com": [15715], "research.ibm.com": [7675], "www.kth.se": [8752], "www.sungardhe.com": [15593], "koding.com": [8953], "votewatch.eu": [17846], "nanxie.taobao.com": [15952], "www.homementors.com": [7472], "android-api.fitbit.com": [5887], "lokun.is": [9565], "pastemonitor.com": [12440], "iuma.unizar.es": [17356], "thepiratebay-proxylist.org": [16227], "clyp.it": [3326], "leginfo.legislature.ca.gov": [2746], "www.kgnb.am": [8721], "www.claimformsplus.com": [3208], "highland.oneclickdigital.eu": [19457], "www.copiny.com": [3652], "omniture.com": [11803], "i.o2active.cz": [16076], "jiaofei.jd.com": [8423], "messages.easymail.ca": [5026], "resharper-support.jetbrains.com": [8559], "plos.org": [12271, 13206], "www.devon-cornwall.police.uk": [4429], "igl.net": [2877], "crm.leboncoin.fr": [19351], "www.kickflip.io": [8880], "www.questcomp.com": [13352], "mail.exratione.com": [5473], "*.wp.com": [18429], "lide.cz": [9326], "www.pde.cc": [12581], "*.dane.verisignlabs.com": [17624], "www.youvisit.com": [18711], "maymay.net": [10105], "www.plati.ru": [12786], "*.visiblegains.com": [17771], "affiliatezone.doteasy.com": [4701], "macfound.org": [9818], "*.hackers.fi": [7147], "www.rvlution.net": [13481], "*.kbb.com": [8844], "payment.tnaflix.com": [16518], "fuscia.info": [6272], "mccdn.qcloud.com": [13301], "*.gostorego.com": [9852], "www.ghash.io": [6329], "support.embed.ly": [5197], "www.torusknot.com": [16596], "yar.fruct.org": [5595], "storminternet.co.uk": [15497], "www.m-vg.de": [9688], "s.w-x.co": [17884], "tubemogul.com": [16814], "*.roloil.com": [13962], "dot.swiss": [19126], "at.on.aol.com": [321], "da.libreoffice.org": [9311], "codesearch.chromium.org": [3119], "static.bitvc.com": [1949], "downloads.realviewtechnologies.com": [13634], "pre-software-security.sans.org": [14072], "athena10.mit.edu": [9749], "www.swisssign.com": [12949], "io.playstation.com": [12795], "www.affutd.com": [696], "cdn.citizenweb.io": [3173], "jobs.cpanel.com": [2651], "consult.highland.gov.uk": [19249], "hdlab.stanford.edu": [15384], "1337x.to": [31], "connectpros.com": [13018], "wiki.teamfortress.com": [19664], "liftshare.com": [9336], "slotsgaminator.com": [6446], "www.snel.com": [15034], "1177.se": [18], "manchester.objective.co.uk": [19454], "amazon.it": [917], "mycharity.ie": [10751], "*.koreatimes.co.kr": [8987], "*.morningstar.com": [10596], "apps.liveperson.com": [9494], "ammec.de": [309], "www.openwebmail.org": [11913], "swartzfiles.com": [15679], "www.reelhd.com": [13710], "www.chillingeffects.org": [3079], "www.babbel.com": [1590], "image10.bizrate-images.com": [2033], "ensv.dict.cc": [4455], "eclipse.github.com": [6680], "easports.com": [4868], "ndpeeps.mobigum.com": [10489], "es-es.facebook.es": [5623], "*.fc2.com": [5556], "*.checkmarx.com": [3050], "www.online-go.com": [11868], "www.allizom.org": [856], "i3.code.msdn.microsoft.com": [10364], "www.liftshare.com": [9336], "www.ams-ix.net": [983], "www.myplaydirect.com": [10774], "kraxel.org": [9007], "clockworkmod.com": [3273], "informer.com": [8126], "static.wipmania.com": [17912], "cancerresearchuk.org": [19035], "www.robotshop.com": [13928], "mail.ya.ru": [18626], "domains.jino.ru": [8575], "houdask.tmall.com": [19684], "ple.com.au": [12269], "a2.twimg.com": [16877], "directorystore.com": [4533], "preprod.www.hispeed.ch": [19716], "lfhair.com": [9075], "violetdarkling.com": [17727], "worldtour.kartfighter.com": [8800], "ssl-sl-retargeting.adsonar.com": [539], "www.elsteronline.de": [5188], "coursetalk.com": [3718], "*.libav.org": [9291], "*.imimg.com": [8061], "*.meetrics.de": [10218], "i-share.carli.illinois.edu": [17258], "www.fonts.com": [5992, 5993], "faaaccess.ed.gov": [4889], "thetechnoskeptic.com": [16317], "onlineforms.northyorks.gov.uk": [19440], "support.jlist.com": [8442], "www.ninite.com": [11416], "premium.youmail.com": [18706], "chroniclevitae.com": [3123], "www.spacecomm.nasa.gov": [10869], "antiphishing.org": [1066], "www.dollarshaveclub.com": [4642], "appiehein.com": [1116], "www.sony-europe.com": [15141], "cdromland.nl": [2567], "tar-jx.bz": [15959], "russian.rt.ru": [13469], "newsvine.com": [11348], "img.marvelstore.com": [10040], "www.bol.de": [16171], "bitmi.de": [2434], "*.simpli.fi": [14828], "www.warwickshire.police.uk": [17986], "www.intevation.org": [8297], "*.bloomberg.net": [2118], "www.elgiganten.se": [5162], "www.next.co.uk": [11359], "kostroma.rt.ru": [13469], "www.abdussamad.com": [406], "www.railscloud.de": [13530], "areweslimyet.com": [1177], "ib.mookie1.com": [10576], "www.be.ch": [19648], "cdn-static-secure.liverail.com": [9496], "necessaryandproportionate.net": [11128], "alumni.thm.de": [15811], "www.focusonlearningcenter.com": [5976], "icmail.com": [7687], "vh3.vutbr.cz": [17522], "cms.gameflycdn.com": [6420], "codesion.com": [3287], "kyleschaeffer.com": [2132], "www.buffered.io": [2404], "hcdapreview.usc.edu": [17278], "www.n-joy.de": [10855], "apps.community.freescale.com": [6183], "www.firsttechfed.com": [5871], "userlike.com": [17436], "teststackoverflow.com": [15359], "ngvpn36.nvidia.com": [10985], "scan.botscanner.com": [2239], "img.nber.org": [11077], "ux.joomla.org": [8627], "trakk247.com": [16659], "www.hashnest.com": [7228], "batransandbareports.voa.gov.uk": [19739], "unite.opera.com": [12050], "cdn.joomla.org": [8627], "bitcoinarmory.com": [1976], "ar.atwola.com": [318], "www.maine.gov": [9894], "profile-photos.hackerone-user-content.com": [7142], "bolehvpn.net": [2188], "omegaup.com": [11792], "redbullracingadmin.kartfighter.com": [8800], "bugs.exherbo.org": [5493], "cs-cart.com": [2661], "i3.sndcdn.com": [15032], "ntacdn1.net": [11553], "www.cdn.newsvine.com": [11348], "local-www.nlm.nih.gov": [11052], "media2.bazaarvoice.com": [1707], "buyonline.rackspace.co.uk": [13499], "*.globalsign.eu": [6718], "www.gfmtrader.com": [6325], "parents.wustl.edu": [17993], "ipfs.io": [8343], "www.canvasndecor.com": [2815], "morello.se": [10589], "profile.theguardian.com": [16288], "*.rollingstonesubscriptions.com": [13961], "bnz.co.nz": [1534], "www.aarhus.dk": [392], "coindl.com": [3392], "www.conferences.uillinois.edu": [16960], "m.google.com.*": [6837], "*.nocdirect.com": [11448], "altng.ucsd.edu": [16939], "*.factoryexpohomes.com": [5627], "nodpi.org": [11435], "*.healthdirect.gov.au": [7263], "getasgard.com": [6583], "api.gem.co": [6512], "www.goldsborowebdevelopment.com": [6817], "www.atom.io": [1324], "pantheos.com": [12374], "mountsinai.org": [10618], "kochanski.mysql.cesky-hosting.cz": [19051], "empflix.com": [5213], "www.ahorroentinta.com": [16525], "forum.ovh.co.uk": [12173], "user.hao123.com": [7177], "gorod.yandex.ua": [18656], "www.paypalgivingfund.org": [12484], "r7.tv2.dk": [15881], "www.fsfla.org": [5599], "px.owneriq.net": [12186], "cdn.thesn.net": [16351], "aeryon.com": [691], "marinsoftware.com": [9997], "demandbase.com": [4342], "itau.com.br": [8386], "www.voicerepublic.com": [17822], "www.bctr.cornell.edu": [3676], "edfenergy.com": [4890], "osa.org": [12066], "bet555.eu": [1812], "ness.ncl.ac.uk": [10884], "2.vgc.no": [17484], "krystal.co.uk": [9024], "app.gmat.economist.com": [5060], "*.hs.llnwd.net": [9357], "www.ijreview.com": [7747], "dialogue.openboard.info": [10871], "www.bt.com": [1551], "ripe66.ripe.net": [13895], "jura.uni-potsdam.de": [17333], "duc.wustl.edu": [17993], "de-cix.net": [4022], "engineering.illinois.edu": [17258], "www.waterfoxproject.org": [18001], "bsi-fuer-buerger.de": [5711], "expedia.com": [5503], "*.devever.net": [4421], "tampabaysod.com": [15938], "piwik.bytemark.co.uk": [2489], "thegreatdiscontent.com": [16285], "www.site.ya.ru": [18626], "stubhub.de": [15534], "www.lastlog.de": [9164], "blog.guetersloh.freifunk.net": [6192], "*.sugester.pl": [15583], "elearning.rhb.ch": [13857], "data.otaserve.net": [19470], "mypostbusiness.ch": [12949], "swsblog.stanford.edu": [15383], "*.mentor.com": [10264], "www.cloudaccess.net": [3278], "tsp.gov": [19703], "www.pdr.leeds.ac.uk": [17318], "*.wvu.edu": [18213], "www.impulse.net": [8021], "muscleandstrength.com": [10708], "instantlocatedemo.loc-aid.com": [9535], "www.lichtblick.de": [9325], "creativecommons.net": [3778], "campaignforosu.org": [12098], "secure.hslda.org": [7099], "*.championcasino.net": [2989], "clp.ly": [3923], "wiki.earthdata.nasa.gov": [10869], "customer.pdc.prd.xfinity.com": [19784], "movabletype.org": [10627], "*.builtwith.com": [2413], "secure.eu.playstation.com": [12795], "as.on.aol.com": [321], "debekijkerie.nl": [4244], "*.golfdigest.com": [6823], "www.kayak.com": [8823], "vn.norton.com": [11505], "teamintraining.org": [16002], "www.revosec.ch": [13850], "chinapaymentservices.com": [3082], "blog.23andme.com": [74], "p4.focus.de": [5974], "cbi.boldchat.com": [2187], "issues.openmandriva.org": [11956], "*.mypayquake.com": [12470], "www.flightglobalshop.com": [5921], "donateinmemory.cancerresearchuk.org": [19035], "www.milwaukeemakerspace.org": [10402], "sharedfacilities.stanford.edu": [15383], "dreamsolution.nl": [4753], "proxy.piratenpartij.nl": [12708], "heartbleed.com": [7276], "trafficjunky.net": [16648], "www.studentchaptergrants.acs.org": [929], "spring.org.uk": [15304], "menpiao.jd.com": [8423], "aps.org": [932], "code.highcharts.com": [7404, 7405], "*.civicscience.com": [3201], "forms.dudley.gov.uk": [4795], "omniture.nvidia.com": [10985], "www.glasscraftexpo.com": [6700], "static.truckingunlimited.com": [16765], "*.crn.com": [2659], "*.xg4ken.com": [18570], "5kbhkort.kk.dk": [8730], "paste2.org": [12438], "www.dti.ulaval.ca": [17229], "market.douban.com": [4707], "ak2.static.dailymotion.com": [4125], "*.loanscience.com": [9531], "filmy.panoptykon.org": [12365], "tnaflix.com": [16518], "leedsbuildingsociety.co.uk": [9223], "www.securecode.com": [10052], "productvisio.com": [13125], "live.startmail.com": [15410], "registrace.seznam.cz": [14648], "asset-d.soupcdn.com": [15167], "www.twrp.me": [15891], "pastebin.com": [12443], "*.swordfishdc.com": [15707], "boutique.liberal.ca": [9294], "www.tcs.ch": [19663], "snap.licdn.com": [9085], "coyote.srv1.oms.eu": [11637], "bloadr.com": [2081], "starrez.com": [15394], "nocworx.nexcess.net": [11356], "dyn.webtraffic.se": [18167], "www.niveusluna.org": [9670], "cloud.datapipe.com": [4212], "c.sankakucomplex.com": [19563], "storage.evozi.com": [5469], "think.usc.edu": [17277], "www.kathrein.de": [8817], "asctrust.com": [346], "kernel-recipes.org": [8856], "*.getty.edu": [6619], "rudloff.pro": [14024], "investors.godaddy.net": [6772], "www.ar.ch": [19648], "www.ubmaviation.com": [16927], "smart.ly": [14985], "zuche.jd.com": [8422], "grillingishappiness.com": [6956], "gus-humsci.stanford.edu": [15383], "www.iconfinder.com": [7921], "portal.cp.pt": [3744], "consecur.de": [3548], "bhmc.tmall.com": [19684], "thecreatorsproject.vice.com": [17667], "it.uu.se": [17074], "blackbaud.com": [2049], "achenglab.stanford.edu": [15383], "*.fender.com": [5749], "bittrex.com": [2025], "ghc.haskell.org": [7229], "ep2015.europython.eu": [5409], "www.anon-ib.su": [1039], "s-media-cache-ec1.pinimg.com": [12691], "*.geccdn.net": [6490], "seomon.com": [19582], "wayf.switch.ch": [15699], "www.opendz.org": [11933], "*.advertserve.com": [656], "www.vdc-sy.org": [2945], "si.rgstatic.net": [13422], "netdoktor.se": [11223], "www.refer.ly": [13716], "store.sony.com.mx": [15150], "www.gpg4win.org": [6875], "www.lendeavor.com": [9245], "*.bytelove.de": [2490], "openhome.alipay.com": [817], "rackspace.co.za": [13500], "dn.mail.ru": [9874], "www.tiltedwindmillpress.com": [16449], "www.invizbox.io": [8328], "ceneo.pl": [2936], "etherpad.fr": [19162], "www.xapo.com": [18541], "www.pccasegear.com": [12221], "uglymugs.ie": [17117], "bosso.ikoula.com": [7963], "envirotrend.com.au": [5309], "www.cgmarketingsystems.com": [2977], "cdn-cf.mywot.net": [10798], "frys.com": [6236], "gdata.de": [6293], "mailoo.org": [9888], "afiestas.org": [706], "www.bleep.com": [2065], "server1.nimzone.com": [11410], "7terminals.com": [197], "nuclearblast.de": [11567], "*.tvlim.com": [15885], "www.bussit.turku.fi": [19706], "css.redblue.de": [13680], "gawain.websanity.com": [18082], "loa.org": [9527], "arqbackup.com": [1210], "apps.grad.uw.edu": [17077], "www.fewo-mehrtens.de": [5764], "a.tcimg.net": [15794], "www.ampatico.com": [980], "phihold.be": [12619], "auto-verkaufen.mobile.de": [19403], "auth.uillinois.edu": [16960], "www.classes.osu.edu": [11760], "duellspiele.web.de": [18050], "img.tenpay.com": [16114], "securem.ar.ikea.com": [7959], "exist.de": [4994], "www.united-internet.de": [17205], "www.sozwes.htwk-leipzig.de": [7114], "subscription.mims.com": [9743], "www.dailykos.com": [4117], "www.edihealth.net": [4894], "lewisham.greenparty.org.uk": [6925], "www.librarything.com": [9305], "new.zataz.com": [18801], "*.glassdoor.com.au": [6701], "www.davidlazar.org": [4227], "www.feed2js.org": [5732], "*.pcmd.ac.uk": [12536], "communityservice.wustl.edu": [17993], "bww.com": [888], "citizen.org": [13208], "portal.hud.gov": [17018], "www.verisign-japan-domain.com": [17623], "funio.com": [6265], "www.1f0.de": [58], "www.cstatic-images.com": [3900], "telecolumbus.com": [16073], "static.bia2.com": [1838], "stc.org": [15075], "*.vk.se": [17492], "www.f2.htw-berlin.de": [7112], "www.cam.illinois.edu": [17258], "coloradoan.com": [3444], "hr-innovation.htwk-leipzig.de": [7114], "opendata.camden.gov.uk": [2772], "tickets.puppetlabs.com": [13232], "radsafety.wustl.edu": [17993], "7search.com": [195], "advconversion.com": [652], "www.aruc.rlt.ulaval.ca": [17229], "status.asmallorange.com": [214], "www.ucommand.com": [17107], "www.tpc.com": [15849], "login.wmtransfer.com": [18076], "www.andover.edu": [12623], "365ticketsscotland.com": [117], "www.sec.escapistexpo.com": [16188], "*.pbase.com": [12213], "*.talkingphonebook.com": [9538], "undergrad.cs.umd.edu": [17263], "110.alipay.com": [817], "www.deb.li": [4267], "sport.uni-ulm.de": [19715], "pokerstars.com": [19503], "admissions.valeofglamorgan.gov.uk": [17532], "talkingpoint.leedsbuildingsociety.co.uk": [9223], "www.b3n.org": [1487], "n.thestar.com": [16575], "support.returnpath.net": [13834], "www.gemeenteberkelland.nl": [11132], "factoryhomesale.com": [5627], "*.webspectator.com": [18089], "whoshiring.io": [18269], "*.123-reg.co.uk": [22], "red-dove.com": [13656], "rogueamoeba.com": [13949], "www.jazzy.id.au": [8537], "www.sitetagger.co.uk": [14873], "www.dslshop.vodafone.de": [17814], "intranet.nes.scot.nhs.uk": [10913], "www.cfa.harvard.edu": [7219], "*.arbitrary.ch": [1153], "*.mailchimp.com": [9876], "billdesk.com": [1876], "www.consul.io": [3595], "marketplace.ricoh.com.sg": [13879], "jamesvillas.co.uk": [18490], "fasttrack.va.gov": [17019], "www.helsingebilpleje.dk": [7311], "*.storify.com": [15496], "fprnt.com": [6090], "medocmall.co.uk": [10201], "*.net-results.com": [11179], "www.t-com.sk": [16088], "*.rakdigital.co.uk": [13485], "www.verlagsherstellung.de": [7114], "irma.sydney.edu.au": [19649], "img.chefkoch.de": [3058], "www.checkmarx.com": [3051], "*.fmh.de": [5833], "loggly.com": [9554], "www.doesnotwork.eu": [4632], "www.ovpn.se": [11688], "www.vpnreactor.com": [17503], "*.freshdesk.com": [6203], "blog.haskell.org": [7229], "www.secondlife.com": [14462], "auth.opera.com": [12050], "sandstorm.io": [14283], "realtimestats.com": [13626], "cloudforge.com": [3288], "www.torrentr.eu": [16583], "www.customerlobby.com": [3940], "softserve.8ch.net": [203], "wtgrants.wellcome.ac.uk": [19752], "www.philosophersguild.com": [12624], "webmail.1and1.com": [51], "unitednuclear.com": [17207], "app-uk2.resrc.it": [13599], "youngminds.org.uk": [18717], "philosophersguild.com": [12624], "blog.eloqua.com": [5179], "service.velaro.com": [17595], "blog.ansibleworks.com": [18428], "www.aggregateknowledge.com": [726], "www.pendle.gov.uk": [12532], "sharefilesupport.com": [14665], "patternsinthevoid.net": [12459], "myplatinumpak.com": [12787], "dietrolldie.com": [18428], "www.wtfismyip.com": [17933], "community.hide.me": [7391], "jobs.uif.uillinois.edu": [16960], "redmine.enaza.ru": [5230], "ccs.wustl.edu": [17993], "static.ucsc.edu": [17305], "neocities.org": [11148], "book.jd.com": [8423], "bitservicex.com": [4883], "jabbr.net": [8472], "wiki.associatie.kuleuven.be": [8816], "infocentre.dsi.cnrs.fr": [6195], "cityoflondon.police.uk": [3194], "alphadominche.com": [868], "*.vimeocdn.com": [17717], "docs.opensvc.com": [11972], "www.smackcoders.com": [14978], "admin.testandtarget.omniture.com": [11803], "www.automx.org": [1430], "aok-gesundheitspartner.de": [317], "help-en-cn.nike.com": [11401], "r.qq.com": [13285], "www.ox.cx": [7641], "learn.jquery.com": [8451], "myhearstnewspaper.com": [7272], "www.linuxdays.cz": [9409], "ergonomics.osu.edu": [11760], "www.bugmenot.com": [2405], "cdn.head-fi.org": [7254], "whois.icann.org": [7681], "careerfoundry.com": [2844], "*.push.io": [13248], "jobs.arstechnica.com": [3551], "constructor.maps.yandex.com.tr": [18649], "media.villahostels.com": [17713], "nulab-inc.com": [11572], "*.usfsp.edu": [17275], "*.globalsign.com": [6718], "www.weboolu.com": [18137], "its-proposals-dev.ucsc.edu": [17305], "*.gamestarmechanic.com": [6441], "c-spanvideo.org": [2494], "*.webd.am": [18058], "www.kilometrikisa.fi": [8888], "www.insightexpressai.com": [8172], "portal.nitrosell.com": [11427], "www.abine.com": [419], "tribecafilminstitute.org": [16728], "isst.fraunhofer.de": [6112], "*.laprox.com": [9154], "aldi.co.uk": [299], "www.github.com": [6680], "www.sertifikatai.lt": [14597], "www.htw-berlin.de": [7112], "1u1s.de": [67], "helix.apache.org": [1086], "ca.isohunt.com": [8372], "ehs.osu.edu": [11760], "artifacts.alfresco.com": [802], "*.recalls.gov.au": [13123], "oneserver.cz": [11645], "cathaypacific.com": [2904], "www.mysubwaycard.com": [19418], "www.feral.io": [5751], "www-thphys.physics.ox.ac.uk": [17271], "www.levesoninquiry.org.uk": [9270], "wiki.debianforum.de": [4276], "translate.gajim.org": [6406], "cdn2.iconfinder.com": [7921], "www.thefastandthefurious.com": [5683], "us.wa.ui-portal.de": [16952], "tw.carousell.com": [2860], "vsix.whmcs.com": [17906], "project.webplatform.org": [18079], "blog.ebuyer.com": [5042], "www.tacar.org": [15782], "press.parsely.com": [12413], "upxth.com": [17406], "store-images.comixology.com": [3465], "*.asic.gov.au": [348], "epay.bg": [4944], "www.theprivacyblog.com": [16231], "www.godpraksis.no": [6802], "www.virtkick.com": [17745], "www.soros.org": [11910], "de.manjaro.org": [9958], "lkjs.zamimg.com": [18782], "www.fas.harvard.edu": [7219], "www.neooffice.org": [11150], "hypovereinsbank.de": [7649], "www.partnernet.avira.com": [1449], "wtfismyip.com": [17933], "foriswine.com": [6039], "kronos-time.nytco.com": [10998], "secure.pqarchiver.com": [12285], "support.infoblox.com": [8106], "friendlybracelets.com": [6215], "marketplace.rackspace.com": [13506], "www.thenewsfunnel.com": [11336], "ccavenue.com": [2533], "www.altera.com": [876], "www.bulletproofexec.com": [2419], "helsingebilpleje.dk": [7311], "styles.domainwho.is": [4661], "www.opencpu.org": [11925], "www.scientificlinux.org": [14386], "dedra.cz": [4024], "tspr.ng": [16810], "www.boxoffice.com": [2254], "www.crrev.com": [3828], "origin.business.upc.ie": [17001], "reactjsnews.com": [13603], "indonesia.bitcoin.co.id": [1964], "servicedesk.lrz.de": [9238], "epaper.ntu.edu.tw": [10970], "er.lrc.usuhs.edu": [17052], "www.organdonation.nhs.uk": [10913], "bethblog.com": [18829], "mujucet.vzp.cz": [17524], "piwik.openstreetmap.org": [11979], "visionairlines.com": [17773], "www.hide.me": [7391], "api.tldr.io": [19683], "*.guttmacher.org": [7029], "www.ots.treas.gov": [17059], "newsdaily.com": [11328], "mypassword.ysu.edu": [18742], "members.vbulletin.com": [17471], "scs.cals.cornell.edu": [3676], "review.udacity.com": [17110], "www.robinbarnard.com": [13923], "www.30boxes.com": [99], "images.dice.com": [4453], "control.tierra.net": [16435], "sohosted.com": [15049], "cdn.embed.ly": [5197], "myfinances.nottingham.ac.uk": [11528], "www.erowid.org": [5351], "www.astro.cardiff.ac.uk": [2835], "upa.aberdeenshire.gov.uk": [412], "www.onenetworkdirect.com": [11838], "apps.dealer.com": [4256], "blog.trendmicro.com": [16713, 16717], "*.foundationsource.com": [6077], "mis.cc.ntu.edu.tw": [10971], "whatsapp.com": [18234], "www.salk.edu": [14251], "studentaffairs.stanford.edu": [15383], "incapsula.com": [8043], "memberclicks.net": [10246], "www.vimention.com": [17716], "www.smuxi.org": [15016], "data.information.dk": [8123], "sgkb.ch": [19333], "*.umanitoba.ca": [17260], "*.indiegogo.com": [8072], "support.code.org": [3345], "*.happyknowledge.com": [7199], "marketplace.ucsd.edu": [16939], "*.hitb.org": [7070], "*.financialcontent.com": [5822], "downloads.checkpoint.com": [3048], "policyreview.info": [12867], "codeofconduct.wustl.edu": [17993], "mega.com": [10221], "www.newsoffice.mit.edu": [9749], "www.nachtjeweg.nl": [7451], "blog.whiteout.io": [18256], "addons.videolan.org": [19461, 19462], "*.ubisoftgroup.com": [17092], "vos.symantec.com": [15715], "www.recurly.com": [13652], "eseries.pajustice.org": [12539], "hazing.cornell.edu": [3676], "apimg.alipay.com": [817], "es.manage.my.t-mobile.com": [15772], "freecause.com": [6159], "www.pegelf.de": [12528], "www.iovisor.org": [19303], "m.vk.com": [17493], "www.toplist.cz": [15846, 15847], "affiliates.adultshopping.com": [644], "serversforhackers.com": [14618], "www.sparxtrading.com": [15229], "*.kryptronic.com": [9023], "www.atomicobject.com": [1327], "www.viglink.com": [17710], "*.ticketweb.com": [16421], "pix.bit.ly": [2002], "fetshop.co.uk": [5762], "cdn.pardot.com": [12399], "stubconnect.stubhub.co.uk": [15534], "www.dezertdepot.com": [4436], "its-prod-www2-1.ucsc.edu": [17305], "webcijfers.nl": [18056], "merchant.linksynergy.com": [9381], "www.xpra.org": [18587], "forum.vestacp.com": [17653], "americanaexchange.com": [948], "plf.zarb.org": [18796], "regencesecure.snowfly.com": [15044], "www.interactiveonline.com": [8241], "game-static.msi.com": [9792], "inwx.com": [8231], "herefordshire.greenparty.org.uk": [6925], "byfiles.storage.msn.com": [9796], "atlassian.com": [1321], "www.fourecks.de": [6080], "www.final4ever.com": [5819], "www.adsimilis.com": [631], "research.gigaom.com": [6644], "blog.libtoxcore.so": [9322], "www.dslreports.ca": [4081], "auto.yandex.kz": [18652], "frog.qrq.de": [13312], "paradox-interactive.teamtailor.com": [16003], "www.anonabox.com": [1044], "ir.telecolumbus.com": [16073], "advancement.umd.edu": [17263], "www1.citymapper.com": [3193], "update.dedyn.io": [19107], "forums.novell.com": [11530], "goubiquiti.com": [6797], "myiuhealth.org": [7867], "www.blogs.com": [14319], "riga.lv": [13880], "shop.flixbus.it": [5931], "couragecampaign.org": [3713], "www.peer5.com": [12514], "securecode.com": [10052], "prosody.im": [13161], "www.gettyimages.*": [6621], "www.static-cisco.com": [15425], "emv3.com": [5194], "britac.ac.uk": [2335], "easyodds.com": [5034], "ivorde.com": [8402], "panstwomiasto.pl": [12369], "www.askubuntu.com": [15359], "assets3.clickfunnels.com": [3246], "upload.proxer.me": [13176], "dealfish.co.th": [4260], "www.eduroam.no": [5099], "www.jqueryui.com": [8454], "corporativo.walmart.com": [17964], "www.thebodyshop.ch": [3645], "xap.com": [18502], "*.kaizencrossfit.com": [4020], "www.adblade.com": [560], "www.feedbackify.com": [5736], "secure.rec1.com": [13641], "forums.desmume.org": [4243], "www.yagi-antennas.com": [18632], "callcenter.reservation-desk.com": [13802], "www.sigterm.no": [14783], "*.chitika.net": [3091], "haasawards.berkeley.edu": [17240], "noisey.com": [11460], "*.research.de.com": [10218], "cax.com": [2912], "www.latticechallenge.org": [19349], "registrars.registry.asia": [13736], "hannovermesse.de": [7195], "media.intermundomedia.com": [8253], "wufoo.com": [18481], "icann.org": [7682], "openmedianow.net": [11960], "*.alliedmedia.org": [854], "secure.paysol.se": [12487], "www.fsa.usda.gov": [17209], "maps.ngdc.noaa.gov": [11083], "segmentfault.com": [14560], "www.alternatifbilisim.org": [881], "seati.ms": [1920], "buysub.com": [2563], "tracker.marinsm.com": [9995], "*.on24.com": [11639], "www.aldi.be": [299], "dennogumi.org": [19110], "kundservice.svd.se": [15669], "www.tubemogul.com": [16814], "*.reethibeach.com": [13713], "git.korelogic.com": [8986], "www.*.onsugar.com": [11815], "www.flyersrights.org": [5962], "i.lvme.me": [9492], "lurkmore.to": [9673], "www.hungryhouse.co.uk": [7621], "www.wattpad.com": [18006], "www.wilmerhale.com": [18319], "millenniumseating.com": [10397], "support.intego.com": [8201], "c64.assets-yammer.com": [1283], "ja.hideki.hclippr.com": [7051], "www.alldebrid.fr": [831], "*.pusher.com": [13252], "makewebeasy.com": [9917], "privacy.truste.com": [15856], "connect.webtrends.com": [18171], "getaddr.bitnodes.io": [2013], "www.linuxgamepublishing.com": [9423], "www.itactic.com": [7861], "www.arris.com": [1214], "chooseblocks.com": [3100], "webanalytics2.ovh.net": [12173], "bitwig.com": [2027], "carbonfund.org": [2830], "www.pet-nanny.net": [12587], "app.vogogo.com": [19740], "customers.percona.com": [12557], "moviease.com": [10640], "www.intux.de": [8308], "prisms.deewr.gov.au": [4025], "usertags.com": [17087], "lean-hochschulgruppe.htwk-leipzig.de": [7114], "givekidstheworld.org": [6686], "www.kyleschaeffer.com": [2132], "agilewebsolutions.com": [727], "nightdev.com": [11394], "tptq-arabic.com": [15854], "*.musicnotes.com": [10720], "tienda.astrocentro.com": [1304], "cdn.onscroll.com": [11813], "snort.org": [15041], "onlineshop.nero.com": [11162], "www.urospace.de": [17414], "www.encipher.it": [5231], "bostonbuilt.org": [2231], "www.aquabounty.com": [1142], "cxcloud.com": [3949], "www.glasses.com": [6702], "modrice.biovendor.cz": [1902], "www.raspberrypi.org": [13569], "skandia.se": [14894], "apwustore.org": [933], "securemail.zg.ch": [19648], "servercraft.co": [14613], "blog.unseen.is": [17369], "secure.us.playstation.com": [12795], "hcsportal.studaff.calpoly.edu": [2747], "www.kaos.to": [8788], "panel.medianova.com": [10178], "puborder.ncjrs.gov": [10883], "netflix.com": [11229], "*.siemens.com": [14770], "www.diigo.com": [4515], "www.aaspring.com": [398], "datenspuren.de": [4219], "www.uniqueoffersghana.com": [17194], "www.fs02.androidpit.info": [1009], "www.agwa.name": [736], "suchen.mobile.de": [19403], "*.irish-country-cottages.co.uk": [18490], "efile.boe.ca.gov": [2508], "hr-info.web.cern.ch": [2575], "www.fkl.fi": [5831], "*.pactf.com": [12203], "uni-saarland.de": [17172], "clickfuncasino.com": [3260], "nicennaughty.co.uk": [11384], "intentmedia.co.uk": [8227], "action-intell.com": [492], "phonedirectory.vanderbilt.edu": [17557], "watchmedier.dk": [17996], "fullcoin.com": [6249], "www.creditrepairtrust.com": [3790], "*.surpasshosting.com": [15654], "stc-now.s-msn.com": [14059], "www.ptt.br": [12303], "coastalmicrosupply.com": [3339], "*.citizen.org": [13208], "www.audiencetargeting.com": [1356], "slp1.somerset.gov.uk": [15127], "cache.thumbs.sbstatic.com": [14797], "similarweb.com": [14811], "northdorset.greenparty.org.uk": [6925], "www.rossendale.gov.uk": [13973], "myapps.developer.ubuntu.com": [17102], "www.footprintnetwork.org": [6713], "sf.mail.ru": [9874], "vinumeris.com": [17725], "mg2mobile.com": [10329], "networkadvertising.org": [11268], "*.hjcms.de": [7071], "gtt.net": [6395], "underhandedcrypto.com": [17157], "siw.stanford.edu": [15383], "www.packetflagon.uk": [19477], "m.anibis.ch": [18956], "www.theiconic.com.au": [16292], "payment.outspark.com": [12154], "rub.de": [13478], "d.xp1.ru4.com": [14012], "static.polskieradio.pl": [12887], "www.epls.gov": [5324], "www.fotki.yandex.by": [18648], "www.plos.org": [12271, 13206], "fisonline.bury.gov.uk": [19027], "www.gmx.fr": [6350], "www.nanog.org": [11490], "*.coochey.net": [3633], "ratanagiri.org.uk": [13572], "alssl.askleomedia.com": [1264], "forums.openfiler.com": [12034], "jawbone.com": [8533], "www.autoitscript.com": [1417], "*.ubuntuusers.de": [17103], "slhc-rip1.web.cern.ch": [2575], "maven.co": [10087], "www.virustotal.com": [17757], "b4.yahoo.co.jp": [18640], "sbb.ch": [15693], "www.sheffieldchildrens.nhs.uk": [10913], "scontent.xx.fbcdn23dssr3jqnq.onion": [5621], "www.ftc.gov": [5720], "www.puush.me": [13259], "my.getclouder.com": [6568], "maps.openstreetmap.org": [11979], "www.keyworddiscovery.com": [8871], "*.mentalhealth.asn.au": [10263], "www.hra-news.org": [7094], "www.myphilanthropedia.org": [12622], "jason.cnes.fr": [2634], "brainsonic.com": [2271], "g.twimg.com": [16877], "www.kicktraq.com": [8882], "deadline.com": [4250], "safello.com": [14234], "manual.pipni.cz": [12257], "www.privacychoice.org": [13086], "www.binsearch.net": [1888], "www2.hgst.com": [7059], "worldremit.com": [18452], "xquartz.macosforge.org": [9820], "icc.blackberry.com": [2050], "sslcert14.com": [15345], "hertzarabic.com": [7361], "prod-web.northeastern.edu": [11499], "*.service-now.com": [14620], "www.bortarsasag.hu": [2225], "deutschepost.de": [19112], "netzclub.net": [19432], "demo.phpdoc.org": [12653], "youtube.com.br": [18709], "uptime.centrify.com": [19048], "fca.org.uk": [5557], "pagodabox.com": [12335], "booking.aalto.fi": [390], "tracking.lengow.com": [9248], "applipedia.paloaltonetworks.com": [12349], "ebusiness.voa.gov.uk": [19739], "www.magazinesdirect.com": [9846], "www.shellspace.net": [14696], "spb.rt.ru": [13469], "icis.jpl.nasa.gov": [10869], "leisureworldbookings.colchester.gov.uk": [3414], "segpaychat.com": [14556], "typecast.com": [16911], "www.instacominc.com": [8179], "city.com.ua": [3186], "fcac.org": [5635], "myuni.sydney.edu.au": [19649], "www.knab.nl": [8939], "dnscurve.net": [4062], "ivanovo.rt.ru": [13469], "anyterm.skynet.ie": [16210], "www.helpjuice.com": [7309], "moot.it": [10581], "forum.hostican.com": [7524], "www.deadline.com": [4250], "clevercoin.com": [3239], "dino.sr": [2292], "cryptomaths.com": [3877], "*.alternet.org": [875], "audicon.net": [1350], "www.netlify.com": [11239], "www.twitchinstalls.com": [16889], "js.adsonar.com": [539], "kerbalspaceprogram.com": [8855], "*.eds.com": [7378], "blogs.drweb.com": [4783], "www.unrealengine.com": [17365], "en-da.dict.cc": [4455], "as.au.edu": [16923], "im.typotheque.com": [16917], "pico-app.com": [12663], "www.jyllands-posten.dk": [8703], "arcor.de": [1173], "i5.c.dk": [2498], "*.eet.eu": [4905], "identity.virginmedia.com": [17737], "buhta.zarkzork.com": [18798], "*.jeffmitchell.me": [8545], "inmotionhosting.com": [8033], "dps.illinois.edu": [17258], "cryptolux.org": [3859], "assets.onestore.ms": [11857], "www.soundcloud.com": [15161], "boxcast.lasallehs.net": [9161], "www.anz.com": [315], "scanmarker.com": [14336], "metrics.adzip.co": [677], "webchat.oftc.net": [11622], "www.scordit.com": [2292], "halc.kk.dk": [8730], "www.technoportal.ua": [16039], "librarything.com": [9305], "*.yourlocaledge.com": [18729], "peterkieser.com": [19489], "designer.shoebuy.com": [14714], "dailymotion.com": [4125], "www.nikecsolutions.com": [11378], "android-port.de": [1005], "dealer.com": [4256], "summitroute.com": [15591], "dotster.com": [4705], "portaldaempresa.pt": [6873], "www.tt.vutbr.cz": [17522], "static-ak.facebook.com": [5620], "www.schneier.com": [14360], "shopping.tetu.com": [16148], "hot-chilli.net": [7546], "german-design-council.de": [6554], "www.youtube.ua": [18709], "www.trustedcs.com": [16790], "static.360buyimg.com": [112], "anarplex.net": [991], "www.zerodayinitiative.com": [18845], "www.patchofland.com": [12447], "www.nzz-libro.ch": [19450], "krebsonsecurity.com": [9010], "tiaa-cref.org": [15816], "minix.org": [10428], "www.ojrq.net": [11768], "edge.org": [5078], "tipseri.net": [7732], "mouserepository.cancer.gov": [2805], "binefreund.de": [5937], "www.elcorteingles.es": [19772], "docs.cpanel.net": [2653], "storesecured.com": [15493], "www.netiq.com": [11194], "www.printchomp.com": [13069], "vr.preferred-reservations.com": [13024], "www.gem.co": [6512], "promote.ie": [4513], "cn.earthvpn.com": [19141], "mpc-hc.org": [19412], "fusion-net.co.uk": [6277], "www.coinkite.com": [3406], "www.jacquelinegold.com": [8490], "arm.koji.fedoraproject.org": [5730], "*.forumblog.org": [6063], "www.openuniversity.ac.uk": [11986], "libraries.mit.edu": [9749], "*.gamehouse.com": [6421], "speed-dreams.org": [15251], "cricketwireless.com": [3795], "hq.huobi.com": [7624], "acehotel.com": [470], "giving.umd.edu": [17263], "www.poderpda.com": [12845], "theplatform.com": [16230], "kiwi.freed0m4all.net": [6163], "www.btunnel.com": [1581], "adobelogin.com": [619], "bt.com": [1551], "cup.msgfocus.com": [584], "direct.yandex.kz": [18652], "wiki.alfresco.com": [802], "int.anon-ib.su": [1039], "complex-systems.com": [3524], "sharenice.org": [19585], "www.eu.elsevierhealth.com": [5187], "submit.nal.usda.gov": [17209], "www.4tulemar.com": [155], "www.betterbills.com": [1824], "*.cdn1.cloudfiles.rackspacecloud.com": [13507], "www.pirateparty.org.uk": [12714], "i.wp.pl": [17921], "ipfs.pics": [8344], "ci.uchicago.edu": [17246], "*.orange.co.uk": [12088], "carnegiescience.edu": [2857], "www.cms.fss.ulaval.ca": [17229], "www.openstat.ru": [11977], "licensing.bury.gov.uk": [19027], "servicesblog.redhat.com": [18428], "wakatime.com": [17952], "edit.tilburguniversity.edu": [16445], "fluxx.io": [5959], "discuss.nubits.com": [11561], "ias.edu": [7669], "www.dftba.com": [4031], "ello.co": [5172], "honorrolls.stanford.edu": [15383], "alastore.ala.org": [298], "indonesia.allianz.com": [18950], "fbme.htwk-leipzig.de": [7114], "secure.zdnet.com": [18757], "consult.maidstone.gov.uk": [9868], "doubleclick.com": [4715], "fd.ulaval.ca": [17229], "tickets.stanford.edu": [15383], "metacpan.org": [10297], "verisign.com.br": [17623], "www.sustainability.cornell.edu": [3676], "distilleryimage4.instagram.com": [8182], "www.interstices.info": [8296], "www.tpptraining.com": [15853], "thomashunter.name": [19679], "minimundosonline.com": [10420], "www.dynstatus.com": [4823], "*.medscape.com": [10202], "fafsademo.test.ed.gov": [4889], "www.openaccessbutton.org": [11999], "www.care-net.org": [2837], "3ds.com": [4167], "agilisys.tms-media.co.uk": [19685], "account.meraki.com": [10272], "*.saurik.com": [14307], "joinos.com": [8618], "ems.wolverhampton.gov.uk": [18404], "urlfiltering.paloaltonetworks.com": [12349], "image-cdn.zap2it.com": [18788], "psearch.vuze.com": [17879], "taiga.io": [15911], "www.odnoklassniki.ru": [11726], "galleries.girlsoutwest.com": [6667], "www.buycott.com": [2471], "godoc.org": [6775], "tag.microsoft.com": [10364], "hg.edgewall.org": [5083], "sicontact.at": [14760], "*.protonmail.com": [13169], "www.barclays.co.uk": [1662], "app4.admin.cam.ac.uk": [17243], "udel.edu": [17249], "classic.torrentday.com": [16579], "bitcoinwisdom.com": [1974], "webnium.co.jp": [18135], "www.crew.co": [3794], "www.livingroutes.org": [9518], "www.kpt.ch": [8745], "food.osu.edu": [11760], "www.hakko.com": [7171], "www.mijnsimpel.nl": [19592], "homecomputing.fr": [7477], "fr.community.dell.com": [4335], "redmine.digitaria.com": [4507], "frank.geekheim.de": [6503], "www.papakaya.com": [12378], "faz-community.faz.net": [5554], "s9.mt-cdn.net": [9798], "maildomain.web.de": [18050], "webpower.nl": [18041], "bcove.me": [1717], "www.swan.sk": [15676], "connects.catalyst.harvard.edu": [7219], "www.ioplex.com": [7778], "info4derby.derby.gov.uk": [4380], "dustin.eu": [4809], "www.doc.ic.ac.uk": [8016], "sites.google.com": [6834], "*.desertnews.com": [4385], "cue.me": [3912], "haskell.fpcomplete.com": [5591], "www.financialcryptography.com": [5823], "partnernetprogram.com": [12418], "docs.zone": [4621], "pdwl.htwk-leipzig.de": [7114], "vmss.boldchat.com": [2187], "instart2.flixster.com": [5933], "library.cardiff.ac.uk": [2835], "*.mapraider.com": [9975], "hr.leeds.ac.uk": [9222], "help.metasploit.com": [10310], "career.paradoxplaza.com": [12386], "atech.io": [366], "btwifi.com": [1579], "h-t.co": [7041], "elster.de": [5188], "culm.unizar.es": [17356], "forum.vuze.com": [17878], "onlinethreatalerts.com": [11878], "masty.nl": [10061], "www.moveonpac.org": [10631], "valuehost.ru": [17543], "www.frenchtv.to": [6196], "dd4c.hscic.gov.uk": [19264], "liberal.ca": [9294], "www.scribit.com": [14415], "wechat.com": [18018], "*.rec-registry.gov.au": [13412], "www.nextpowerup.com": [11370], "www.hubic.com": [7597], "quality-abo.de": [13329], "*.factoryexpodirect.com": [5627], "api.sharedcount.com": [14674], "git.collabora.co.uk": [3419], "docs.chef.io": [3057], "www.projecteuclid.org": [13138], "diagnostics.sky.com": [14924], "ads.asnetworks.de": [1270], "www.marksdailyapple.com": [19384], "autodiscover.rsc.org.uk": [13457], "puttytray.goeswhere.com": [6805], "mypassword.provost.usc.edu": [17278], "laughingsquid.com": [19350], "www.ipfs.com": [7791], "themes.getbootstrap.com": [6609], "350zevolution.com": [105], "kent.ac.uk": [17317], "issh.ac.jp": [8270], "ooyala.com": [11900], "uploads.www.theplatform.com": [16230], "tdrevolution.com": [15802], "*.swapspace.net": [15678], "filepicker.com": [5801], "planning.walthamforest.gov.uk": [17966], "www.golfdigestinsiders.com": [6823], "*.ds-static.com": [4779], "learning.ornl.gov": [11693], "www.parrot.org": [12411], "test.winehq.org": [18352], "dev.pdr.leeds.ac.uk": [17318], "scout.sunlightfoundation.com": [15601], "help.instantatlas.com": [19296], "wto.org": [17934], "www.thaliproject.org": [16170], "secure1.plymouth.gov.uk": [19500], "federalreserve.gov": [5718], "vectorborne.fralin.vt.edu": [17740], "trac.gajim.org": [6406], "exam.consumerfinance.gov": [3602], "analytics.yandex.com": [18651], "www.myvarian.com": [10796], "www-stats-so.f-secure.com": [5541], "www.lib.calpoly.edu": [2747], "ui.phn.doublepimp.com": [4717], "www.whonix.org": [18266], "www.fitocracy.com": [5890], "bangor.ac.uk": [1641], "gd1.alicdn.com": [805], "www.mpx.no": [10672], "product.adingo.jp": [592], "members.sina.com.cn": [14842], "*.tvnewscheck.com": [15887], "www.distrowatch.org": [4577], "bugreports.qt-project.org": [13314], "partners.appsflyer.com": [1131], "*.targetimg2.com": [15961], "2010.asiabsdcon.org": [1258], "www.fnmag.co": [5582], "cdn.warmlyyours.com": [17980], "www.streammygame.com": [15517], "www.litetree.com": [9459], "*.thefnf.org": [16273], "www.irs.gov": [7819], "ecn.t6.tiles.virtualearth.net": [17755], "www.lngs.infn.it": [7766], "bentley.edu": [1781], "www.kanyebay.com": [16227], "www.iaata.info": [7662], "payments.coventry.gov.uk": [19085], "gongyi.fanli.com": [5655], "stc.pagseguro.uol.com.br": [16998], "deals.dell.com": [4335], "fastdomain.com": [5672], "www.ccccloud.com": [2539], "computerfulfillment.com": [3535], "*.web.com": [18049], "*.time.com": [15819, 18428], "ssl-cdn-assets.tmz.com": [15832], "act.greenpeace.org": [6937], "haveyoursay.westsussex.gov.uk": [18211], "portal.5ninesdata.com": [174], "support.playwire.com": [12810], "*.sw-i.de": [15369], "www.soa.org": [14147], "*.franken.de": [6102], "www.rugby.gov.uk": [14027], "www.tokyotosho.info": [16537], "databricks-prod-cloudfront.cloud.databricks.com": [4197], "dating.thechive.com": [16258], "www.archomedia.com": [1170], "iosco.org": [7779], "www.abma.de": [421], "s4.mzstatic.com": [10852], "rollingstone.com": [13960], "answers.uchicago.edu": [17246], "masspirgedfund.org": [9715], "360yield.com": [110], "*.fotocommunity.de": [6076], "coindesk.com": [3394], "secure.vandyke.com": [17549], "media-proweb.de": [10145], "i2.microsoft.com": [10364], "www.hertzautovermietung.com.pl": [7358], "studien-sb-service.th-mittelhessen.de": [15809], "cinapalace.com": [3137], "*.targetimg1.com": [15961], "landscapephotographymagazine.com": [9142], "www.falcon-uav.com": [5640], "www.iceleads.com": [7916], "symfony.fi": [15718], "innovation.wwf.ch": [19768], "*.provantage.com": [13170], "autoconfig.yandex.kz": [18652], "www.aera.at": [683], "login.wx2.qq.com": [13285], "loisirs3.cff.ch": [15693], "blog.groupees.com": [6971], "*.nejm.org": [11304], "spreadshirt.se": [15300], "dev.arma3.com": [1202], "dealflow.flippa.com": [5927], "banners.adultfriendfinder.com": [643], "so.ch": [19648], "www.ambitiousaboutautism.org.uk": [18952], "notendur.hi.is": [7066], "so.cl": [15046], "asiointi.hel.fi": [7314], "www.stopthinkconnect.org": [15487], "businesslink.gov.uk": [2460], "utsystem.edu": [17284], "www-secure.symantec.com": [15715], "urx.com": [17016], "zhoumo.taobao.com": [15952], "www.grandmargherita.com": [6890], "pokemon.truelife.com": [16769], "donmai.us": [19125], "wilhelm-gym.net": [18310], "365tickets.com": [114], "www.argosemails.co.uk": [1186], "srb2.org": [14165], "*.misadventureswithandi.com": [10450], "www.americaslongestwar.com": [951], "cluster-1.skillclub.com": [14907], "*.sonymobile.com": [15145], "isorno.com": [8375], "www.archi-strasbourg.org": [1161], "help.cloudtrax.com": [3297], "*.trialpay.com": [16724], "hosting-advantage.com": [11192], "go.cpanel.net": [2653], "uprod.biz": [17011], "www.everydayhero.com.au": [5454], "adn.impactradius.com": [8011], "www.mercadobitcoin.net": [10274], "www4.gotomeeting.com": [6787], "petsathome.com": [12601], "etarget.hu": [5371], "*.cleanenergyfinancecorp.com.au": [3225], "uk.pcpartpicker.com": [12497], "www.coinbase.com": [3402], "chemistry.williams.edu": [18316], "i3.social.microsoft.com": [10364], "2007.asiabsdcon.org": [1258], "host1.aberdeenshire.gov.uk": [412], "www.gorails.com": [6782], "ws.amazon.de": [910], "mediaarea.net": [10154], "lhncbc.nlm.nih.gov": [11052], "images.ironsolutions.com": [7818], "retailmenot.com": [13822], "levo.com": [9275], "bingads.microsoft.com": [10364], "fandago.com": [5651], "ssl.s.xnimg.cn": [18581], "community.ussf2010.org": [17025], "www.marine.scotland.gov.uk": [19575], "store2.esellerate.net": [5357], "moroccanbazaar.co.uk": [10597], "*.blog.usf.edu": [17274], "*.kneon.com": [8941], "play.vidyard.com": [17705], "badoo.com": [1609], "requestpolicy.com": [13791], "shop.kingston.com": [8901], "leptop.hu": [9155], "britishairways.com": [1488], "gavinhungry.io": [6473], "crn.com": [2659], "*.yelp.com": [18673], "www.skillsmatter.com": [14908], "eu.citrix.com": [3178], "mars.jpl.nasa.gov": [10868, 10869], "newportmotorsports.com": [11319], "searchstorage.de": [16018], "terrorismlegislationreviewer.independent.gov.uk": [8054], "www.domaining.com": [4663], "www.teamweek.com": [16005], "md02.plex.tv": [12814], "ukreg.com": [5685], "www.docsend.com": [4613], "p3smysqladmin01.secureserver.net": [14511], "meet.fm": [10208], "*.feedblitz.com": [5733], "staradvertiser.com": [7485], "www.clothingattesco.com": [3275], "9.fanli.com": [5655], "cs.ut.ee": [17069], "www.theepochtimes.com": [5327], "wustl.edu": [17993], "www.online-mahnantrag.de": [11865], "www.zlatkovic.com": [18877], "edihealth.com": [4894], "tawk.to": [15979], "support.xapo.com": [18541], "links.laughingsquid.com": [19350], "www.pressbooks.ch": [19516], "ouad.unizar.es": [17356], "komi.rt.ru": [13469], "*.sslcert19.com": [15346], "telnic.org": [16100], "syllabusshare.com": [15712], "ca.debian.net": [4273], "www.pastevault.com": [12441], "ada.lt": [547], "vwp.su": [17881], "over-blog.com": [12156], "wwwstg.lg.com": [9077], "serviceo.xfinity.com": [19784], "www.mysql.fr": [10780], "www.migrosmagazine.ch": [19399], "www.pr0gramm.com": [19514], "photos-f.ak.fbcdn.net": [5700], "www.gmo-registry.com": [6346], "www.healthfuze.com": [7264], "etapestry.com": [5370], "*.javascriptmvc.com": [8528], "www.igiveonline.com": [7889], "webcare.estara.com": [5367], "www.agendaless.com": [724], "my.alipay.com": [817], "account.nvidia.com": [10985], "pharus.thm.de": [15811], "admissions.portsmouth.gov.uk": [19508], "redletterdays.co.uk": [13677], "regilite.nytimes.com": [11000], "global.nytimes.com": [11000], "schoolpress.cdn.whipplehill.net": [18242], "euwest1-beta-pix.dsp.io": [4787], "forum.lenovo.com": [9251], "ogt.jp": [8108], "ssbcpib01.nottingham.ac.uk": [11528], "wiganandleigh.greenparty.org.uk": [6925], "pntl.enaza.ru": [5230], "www.dieselnet.com": [4460], "breuninger.com": [2306], "familie.hessen.aok.de": [317], "ulive.pccu.edu.tw": [12220], "opengarden.com": [12035], "nyu.edu": [11294], "www.reviewingcomics.com": [13845], "www.rocketnet.jp": [13940], "www.homebid.org.uk": [19255], "www.bx.in.th": [1586], "zimbrablog.com": [18868], "autodiscover.adm.leeds.ac.uk": [17318], "argos.resinfo.org": [13807], "www.theinspirationroom.com": [16194], "www.ee.washington.edu": [17291], "ai.ai": [1428], "capitolmachine.com": [2821], "developer.mashery.com": [10046], "www.schrodinger.com": [14747], "*.tmcdn.org": [15833], "*.pbworks.com": [12215], "cdn1.vendocdn.com": [17606], "discovery.com": [4554], "analytics.mashape.com": [10044], "www.fulltraffic.net": [6253], "shambhalamountain.org": [14658], "knowledge.verisign.es": [17623], "onlinebanking.bankcoop.ch": [3645], "authorize.net": [1410], "pfizer.com": [12610], "scenetap.com": [14342], "beta.musicbrainz.org": [10717], "my.green.ch": [19228], "feeds.live.net": [9482], "www.ludismedia.com": [9654], "*.noris.net": [11484], "ebill.t-mobile.com": [15772], "developer.cloud.unity3d.com": [17220], "egk.mkk.com.tr": [9754], "microad.jp": [10346], "www.w3.org": [17888], "de-nl.dict.cc": [4455], "support.tapatalk.com": [15955], "www.ship-ment.com": [14705], "yumpu.com": [18747], "www.parkingeye.co.uk": [12406], "www.1105media.com": [15], "secure.dd-wrt.com": [4018], "*.redbullcontentpool.com": [13667], "www.secondlookforensics.com": [14463], "www.pando.com": [12357], "rxf1.answcdn.com": [1059], "priv.gc.ca": [13080], "www.clickon.com.ar": [3249], "amazon.com": [913], "www.computer.ly": [3537], "*.multicastmedia.com": [10699], "gnusocial.de": [6361], "www.kryptnostic.com": [9018], "track.eyeviewads.com": [5534], "*.ladesk.com": [9484], "convention.bio.org": [1522], "robokassa.ru": [13927], "linuxdaily.com": [19461, 19462], "www.rocketmail.com": [18638], "www.pepephone.com": [19776], "blogsmithmedia.com": [319], "americanbar.org": [938], "sympa.org": [15720], "myfolder.net": [10830], "pnp4nagios.org": [12275], "*.gumgum.com": [7019], "nykeurope.com": [10994, 10995], "www.dinahosting.pt": [4520], "www.studentessentials.cornell.edu": [3676], "beaker-project.org": [1729], "mail.websupport.sk": [18160], "securetrust.com": [14512], "libraries.ucsd.edu": [16939], "www.redteam-pentesting.de": [13664], "my.southwark.gov.uk": [15196], "dota2.com": [4697], "loisirs1.cff.ch": [15693], "led.htwk-leipzig.de": [7114], "*.usps.com": [17049], "howtogeek.com": [7570], "kodi.tv": [8952], "forum.slysoft.com": [14975], "www.plymouth.ac.uk": [12833], "ccs.cabinetoffice.gov.uk": [2701], "cbssportsnetwork.com": [2525], "www.choiceofgames.com": [3097], "classic.fastmail.fm": [5688], "enaza.ru": [5230], "startnext.com": [15412], "channel4.com": [3003], "api.adrtx.net": [591], "xpc.cloudpath.net": [3312], "carousel.rsc.org": [13997], "*.mun.ca": [10250], "img.godaddy.com": [6773], "www.electrum.org": [5155], "freemail.web.de": [18050], "cms.rugby.gov.uk": [14027], "www.jpberlin.de": [8446], "www.websecurify.com": [18146], "nyti.ms": [1920], "vscl.osu.edu": [11760], "p.twimg.com": [16877], "floridalobbyist.gov": [19185], "status.coinbase.com": [3402], "th.foursquare.com": [6082], "www.audioscrobbler.com": [1360], "www.bokelskere.no": [2184], "www.hobbyking.com": [7438], "research.facebook.com": [5620], "cdn.psddev.com": [12564], "spsn.net": [15321], "ocrete.ca": [11712], "www.paydirekt.de": [12473], "www.springfiles.nl": [15305], "www.vn5socks.com": [17807], "ws.coresecurity.com": [3668], "support.gamigo.com": [6445], "facebook.se": [5623], "api.nextgen.guardianapps.co.uk": [19231], "kunde.comdirect.de": [19072], "www.quadpoint.org": [13321], "www5.basildon.gov.uk": [18984], "bridgeroadmarketing.com": [2314], "www.cambodiadaily.com": [2766], "www.kinox.nu": [19337], "wikidevi.com": [18293], "www.edgesnapbacks.com": [5080], "*.stumbleupon.com": [15544], "denx.de": [4028], "media.secondstreetapp.com": [14464], "battelle.org": [1692], "b2bmediaportal.com": [1486], "www.bio.org": [1522], "wolfsonmicro.com": [18401], "www.clusterconnection.com": [3324], "ticketdriver.com": [16415], "eastriding.gov.uk": [5015], "w1.fi": [17887], "officiel-des-vacances.com": [11754], "www.journalistforbundet.dk": [8648], "blog.suitabletech.com": [18428], "cm.htw-berlin.de": [7112], "services.devon.gov.uk": [4428], "dogsbodytechnology.com": [4635], "sslwidget.criteo.com": [3801], "alexandrasangelgifts.co.uk": [798], "rss.acast.com": [18935], "machineslikeus.com": [9830], "wiki.manjaro.org": [9958], "en.mail.qq.com": [13285], "rapidleaf.com": [13556], "mygenerositywater.dntly.com": [4608], "cdn.dmtmag.com": [4603], "www.visioncritical.com": [17775], "library.wellcome.ac.uk": [19752], "truthdig.com": [16803], "cdn2.content.compendiumblog.com": [3517], "www.yarddigital.com": [18661], "global.content.compendiumblog.com": [3517], "*.psswrdbx.com": [12433], "www.stacklet.com": [15364], "generationawake.eu": [4387], "metrics.pisces-penton.com": [12545], "palaute.olvi.fi": [11785], "westconsincu.org": [18215], "simblee.com": [14809], "s2.mt-cdn.net": [9798], "xe.com": [18509], "sonatype.com": [15132], "www.fineartamerica.com": [5844], "affiliates.nitetimetoys.com": [11425], "mencap.org.uk": [10256], "i.daxue.taobao.com": [15952], "www.faxcritics.com": [5694], "webmail.hosteurope.de": [7516], "acquisition.jpl.nasa.gov": [10869], "cdn.securelist.com": [14492], "atlas.ripe.net": [13895], "freelancersunion.org": [6177], "www.coxdigitalsolutions.com": [3738], "*.controlscan.com": [3621], "photos.modelmayhem.com": [10516], "www.hush.technology": [7631], "www.surfconext.nl": [14198], "engineering.cloudscaling.com": [3314], "*.wush.net": [18485], "securityevaluators.com": [14527], "webtraffiq.com": [18166], "www.netelligent.ca": [11224], "stewilliams.com": [19626], "resus.org.uk": [13820], "cdn.brandisty.com": [2285], "my.crypteron.com": [3850], "account.jetbrains.com": [8559], "www.educacursos.com": [5093], "www.cleveland.police.uk": [3237], "earn.greensmoke.com": [6928], "www.collada.org": [2637], "www.bitcoin.pl": [1967], "namecentr.al": [11018], "certifications.apple.com": [1120], "www.dtc.umn.edu": [17268], "www.it.liu.se": [9084], "www.namecheap.com": [11019], "shapeshift.io": [14660], "docs.vagrantup.com": [17529], "tip.net.au": [15820], "static.ant1.gr": [6913], "pushover.net": [13254], "www.u-bordeaux.fr": [16918], "linuxnewmedia.de": [9395], "e9.xhamsterpremiumpass.com": [18516], "www.granitephone.com": [14785], "www.cybercon.com": [3968], "r.mzstatic.com": [10852], "ashleymadison.com": [1255], "www.servicesonline.opm.gov": [11654], "api.soundcloud.com": [15161], "fakaheda.eu": [5638], "patriotpost.us": [16305], "onehub.com": [11834], "www.bankofamerica.com": [1648], "aidsinfo.nih.gov": [11052], "info.movableink.com": [10628], "twisted4life.com": [16884], "docs.roundcube.net": [13986], "help.netflix.com": [11229], "*.delawareonline.com": [4322], "*.moatads.com": [10485], "domoticz.com": [4675], "www.manutan.fr": [9965], "shop.heifer.org": [7284], "keys.qubes-os.org": [13344], "*.myus.com": [10794], "trac.macports.org": [9821], "blog.bibliothek.kit.edu": [8797], "buytrezor.com": [2469], "secureleisure.telford.gov.uk": [19669], "withknown.com": [18381], "asset-0.netbeans.org": [11185], "s1.online2pdf.com": [11872], "asia.adform.net": [585], "bugs.mysql.com": [10780], "www.chiliproject.org": [3077], "www.ss.prbrds.com": [13110], "vendor.tv2.dk": [15881], "wrzru.com": [19767], "edc.intel.com": [8209], "publicaccess2.tmbc.gov.uk": [15827], "www.google.com": [6846], "icanlocalize.com": [7695], "images.whatwg.org": [17904], "catgirlsare.sexy": [2903], "top.mail.ru": [9874], "www.fazschule.net": [5554], "*.dmlimg.com": [4105], "www.piraten-mfr.de": [12707], "www.housingauthority.gov.hk": [7076], "answerology.cosmopolitan.com": [3690], "in2code.de": [8028], "koumbit.org": [8999], "balboa.io": [1626], "www.reactjsnews.com": [13603], "www.palgrave.com": [12343], "*.webresint.com": [18042], "www.nowness.com": [11534], "ircreviews.org": [7813], "projectwonderful.com": [13142], "www.aklamio.com": [767], "pogo.com": [12850], "nars.engineering.osu.edu": [11760], "kinkontap.com": [8908], "www.ecc-platform.org": [4879], "m.edu.tue.nl": [15874], "africangreyparrotcentre.co.uk": [710], "*.rosettacode.org": [13969], "cs.idg.se": [7705], "stickhet.com": [15473], "iaea.org": [7666], "shop.idg.se": [7705], "www.business.usa.gov": [17029], "amctv.com": [306], "*.propublica.net": [13111], "kabel.canaldigital.se": [2803], "o-zone.vanco-asiapac.com": [17554], "*.copy.me": [4978], "amnesty.at": [958], "www.standishmanagement.com": [15381], "gweb.io": [7032], "registerresnet.northeastern.edu": [11499], "a2.ec-images.myspacecdn.com": [10848], "lwn.net": [9112], "www.mg2mobile.com": [10329], "secure.instantssl.com": [8185], "*.biomedcentral.com": [1900], "my.incapsula.com": [8043], "analytics.webtrends.com": [18171], "*.geizhals.at": [6510], "photos.live.com": [9483], "*.nehta.gov.au": [11067], "*.merca20.com": [10273], "catalog.loc.gov": [9528], "globes.co.il": [6744], "*.cdn-hotels.com": [7554], "foolz.us": [6007], "shib.ncsu.edu": [11492], "desy.de": [4399], "www.yfrog.com": [19791], "nccgroupdomainservices.com": [10881], "cdgcommerce.com": [2552], "connochaetos.org": [3586], "pl.vc": [12752], "www.flyingcameras.ca": [5965], "genumedia.htwk-leipzig.de": [7114], "thehut.com": [16223], "*.nexway.com": [11355], "collabprojects.linuxfoundation.org": [9412], "www.mdgx.com": [9731], "dinclinx.com": [9841], "*.heart.org": [7275], "www.mthode.org": [10682], "assets.insnw.net": [8174], "adminer12.vas-hosting.cz": [19729], "systemausfall.org": [15762], "*.atgsvcs.com": [1311], "butler.freecycle.org": [6162], "btc-e.com": [1553], "chcidoo2.cz": [16076], "calum.org": [2758], "www.smart-invests.biz": [14983], "arturkim.com": [1236], "*.bkb.ch": [19333], "www.thepiratebay.se": [16227], "www.snakehosting.dk": [15025], "voice.connect.comcast.net": [3460], "etracker.com": [5390], "account.jolla.com": [8622], "www.llvm.org": [9090], "sitefinity.com": [14879], "img06.taobaocdn.com": [15953], "spacescout.uw.edu": [17077], "www-print.rus.uni-stuttgart.de": [17281], "stura.htwk-leipzig.de": [7114], "help.lendingclub.com": [9246], "*.shopzilla.com": [14733], "www.kfwebs.net": [8720], "www.masterchan.org": [10053], "aer.gov.au": [1390], "mobify.me": [10492], "discovernetwork.com": [4552], "makeloveland.com": [9908], "admbugs.freebsd.org": [6120], "www.epicgames.com": [5320], "crashspace.org": [3761], "hackerexperience.com": [7144], "community.fitbit.com": [5887], "kickasstorrents.to": [8879], "agariomods.com": [721], "www.transip.de": [19694], "*.glassdoor.co.uk": [6701], "meteorhacks.com": [10314], "vpncritic.com": [17507], "coxbusiness.com": [3739], "www.finmozg.ru": [5848], "packages.linuxdeepin.com": [4302], "acikakademi.com": [474], "orbit.cites.illinois.edu": [17258], "marge.fa.vutbr.cz": [17522], "www.nicennaughty.co.uk": [11384], "fedregistry.renater.fr": [13764], "webhost355.asu.edu": [1195], "services.netapp.com": [11183], "siia.net": [15100], "phobos.apple.com": [1120], "subscribe.livingsocial.com": [9517], "clientchat.minacs.com": [10404], "stc.synology.com": [15738], "*.onsugar.com": [11815], "static.hackerspace.pl": [7149], "www.ote.gr": [12132], "code.freent.de": [6180], "img.autobytel.com": [1425], "abysmal.nl": [433], "greenparty.org.uk": [6925], "www.4freeproxy.com": [156], "saic.com": [14067], "zonomi.com": [18897], "www.virtualbox.org": [17748], "www.hacdc.org": [7131], "crosskeyshomes.co.uk": [19091], "moi.gov.sa": [14306], "www.gearman.org": [6487], "js.chefkoch-cdn.de": [3058], "www.midlothian.gov.uk": [10376], "aai-logon.fhnw.ch": [5569], "secondlife.com": [14462], "edge.ie": [19148], "redmine.openinfosecfoundation.org": [12016], "tag1consulting.com": [15903], "mybenefitsplan.osu.edu": [11760], "deliciousgreencoffee.com": [4329], "www.zsl.org": [18900], "greenvehicleguide.gov.au": [6921], "televize.kn.vutbr.cz": [17522], "googleprojectzero.blogspot.com.*": [2113], "coloradoattorneygeneral.gov": [3439], "raymii.org": [13584], "ourtesco.com": [12143], "www.gogoair.com": [6807], "heifer.org": [7284], "apture.com": [6833], "segment-data.zqtk.net": [18766], "webmail02.register.com": [13732], "www.upickem.net": [17389], "www.stacksity.com": [15365], "1914.zdf.de": [19800], "forms.moon-ray.com": [10577], "ihm.nlm.nih.gov": [11052], "extralunchmoney.com": [5524], "wuissrv20.wustl.edu": [17993], "*.tweakers.net": [16866], "cdn.static1.marvelstore.com": [10040], "suggest.atechmedia.com": [368], "rapid7.com": [13553], "translate.yandex.kz": [18652], "emskr.chefkoch-cdn.de": [3058], "customworks.ca": [9579], "*.tuxfamily.org": [16856], "shop.nknews.org": [10934], "tsv.fi": [16436], "nextbit.com": [11364], "sports.vice.com": [17667], "gruppen.greenpeace.de": [6936], "pizzacharts.com": [12749], "theintercept.com": [16294], "www.nrc-cnrc.gc.ca": [11058], "poistenie.financnahitparada.sk": [5828], "embed-ssl.wistia.com": [18377], "libreofficebox.org": [9312], "online1.drweb.com": [4783], "www.securityconference.de": [14526], "holderdeord.no": [7449], "flights.webjet.com.au": [18124], "app-coding.de": [1101], "leedsforlife.leeds.ac.uk": [17318], "jaast.com": [12351], "www.hounddogcentral.com": [7563], "spokane.wustl.edu": [17993], "athena.iubenda.com": [8396], "soldierx.com": [15114], "isd.hscic.gov.uk": [19264], "login.comcast.net": [3460], "*.adf.ly": [523], "*.edublogs.org": [5092], "www.adelphi.de": [582], "www.sunroofwinddeflectors.com": [15606], "status.popcorntime.io": [12915], "twistlock.com": [19707], "ocforums.com": [12165], "trumanlibrary.org": [7214], "m.washington.edu": [17291], "forum.ovh.lt": [12173], "www.searchsecurity.de": [16018], "thalysthecard.com": [16172], "privacychoice.org": [13086], "password.uow.edu.au": [17350], "codepoet.com": [18428], "studentlife.osu.edu": [11760], "www.goodreads.com": [6829], "www.ryot.org": [13484], "www.video.yandex.com": [18651], "theinternetco.net": [16295], "www295.americanexpress.com": [935], "databits.net": [4196], "a.taobao.com": [15952], "gototraining.com": [6788], "voip.mephi.ru": [10266], "www.facebook.nl": [5623], "feedback.yammer.com": [18646], "www.facebook.no": [5623], "surveys.ofsted.gov.uk": [19456], "mep-store.engineering.osu.edu": [11760], "247filmz.com": [79], "bitrig.org": [2014], "gchq.gov.uk": [6871], "issues.piwik.org": [12733], "citi.com": [3168], "www.redcross.org": [13672], "www.gay180.com": [6478], "500ish.com": [165], "kolab.org": [8959], "www.hyperledger.org": [19271], "forums.libsdl.org": [9290], "punto.ar": [13231], "truecrypt.ch": [16766], "kredyty-samochodowe.money.pl": [10546, 10547], "guidefaq.com": [7008], "www.eshop.kensington.com": [8850], "plastc.com": [12781], "flightglobal.com": [5921], "www.tectonic.com": [16055], "www.everydayrewards.com.au": [18422], "debian-handbook.info": [16186], "consult.wealden.gov.uk": [19750], "wiki.ciphershed.org": [3151], "gzhls.at": [13026], "www.2ch.cm": [91], "intranet.uillinois.edu": [16960], "*.cables.com": [2704], "forum.openstreetmap.fr": [12045], "zimbra.webstyle.ch": [18159], "blankslate.io": [2059], "blog.magellanmodels.com": [18428], "influencersconference.com": [8098], "*.patriotpost.us": [16305], "www.virag.si": [17732], "www.akira.org": [765], "secure.omg.org": [11700], "theappendix.net": [16243], "r.teads.tv": [15995], "www.bellingcat.com": [1766], "mywebsitepersonal.1and1.com": [51], "givingtostanford.stanford.edu": [15383], "www.snapwidget.com": [15028], "nat.ms": [11041], "imgur.com": [8002], "www.zoink.it": [5004], "digitalcommons.wustl.edu": [17992, 17993], "alumni1.brunel.ac.uk": [19021], "homepages.thm.de": [15811], "www.ibm.biz": [19278], "dexmedia.com": [4434], "scdn.cxense.com": [2694], "webmail.brenet.de": [2295], "slu.se": [14135], "just-eat.ie": [19328], "vdio.com": [17581], "internetsociety.org": [8275], "openmrs.org": [11952], "www.vidahost.com": [17679], "resources.superherostuff.com": [15631], "myra.gov": [10778], "collectors.sumologic.com": [15592], "*.ensimag.fr": [5288], "www6.slac.stanford.edu": [15383], "*.turtlebeach.com": [16848], "issibn.swm.de": [14208], "git.beaker-project.org": [1729], "cas.fsf.org": [5600], "static.kabelmail.de": [8760], "cs.ap.dell.com": [4335], "opendesktop.org": [19461, 19462], "*.svn.sf.net": [15174], "www.yar.fruct.org": [5595], "www.visionartforum.com": [17774], "blog.runbox.com": [14037], "pt.chaturbate.com": [3035], "sony.eu": [15142], "cdn.cakecentral.com": [2722], "devmonk.com": [4426], "www.auto.ro": [1414], "*.donotcall.gov.au": [4610], "api.runabove.com": [14034], "wishpot.com": [18374], "www84.smartadserver.com": [14982], "*.viedemerde.fr": [1815], "ece1jngec.blogspot.com.*": [2113], "images.42floors.com": [143], "click.intel.com": [8209], "blogdaredacao.catracalivre.com.br": [2908], "*.alternate.nl": [880], "www.sethvargo.com": [14633], "www.goldenfrog.com": [6814], "lms.wiss.ch": [18375], "www.aolplatforms.com": [325], "www.artemis-ia.eu": [1228], "static.eurodns.com": [5406], "peopleschoice.com": [12553], "editions.thing.net": [16354], "connect.microsoft.com": [10364], "*.netnod.se": [11245], "socialtwist.com": [15062], "wp01.dudley.gov.uk": [4795], "informahealthcarestore.com": [8120], "pagead2.googlesyndication.com": [6843], "textbooks.com": [16159], "*.koderoot.net": [8951], "csync.org": [3902], "www.dianomi.com": [4444], "drupalwatchdog.com": [4782], "search.creativecommons.org": [3778], "6wunderkinder.com": [184], "labs.nationalarchives.gov.uk": [11076], "gephardtinstitute.wustl.edu": [17993], "www.gpugrid.net": [6374], "lp0.eu": [9639], "movieposter.com": [10643], "medipreis.de": [10142], "www.enlightenment.org": [5280], "nr.qq.com": [13284], "www.masty.nl": [10061], "*.keybase.io": [8868], "doc.wallabag.org": [17960], "education.isc2.org": [7822], "password.it.umich.edu": [17266], "tvshowtime.com": [15888], "limesurvey.org": [9356], "marthastewart.com": [10032], "usil.logmein.com": [9549], "www.playfire.com": [12805], "*.eucalyptus.com": [5398], "masspirgstudents.org": [9716], "chromestatus.com": [3118], "3min.de": [134], "www.ovh.com": [12173], "wiki.deimos.fr": [4318], "images.outbrain.com": [12150], "www.kinguin.net": [8902], "douglas.firmstep.com": [19182], "www.forum.avira.com": [1449], "scs.publish.uic.edu": [17231], "careers.symantec.com": [15715], "bourgeois.me": [2249], "*.reservationcounter.com": [13803], "lansforsakringar.se": [9151], "*.i-kiz.de": [7651], "www.getinvolved.wustl.edu": [17993], "pccasegear.com.au": [12221], "apps.opendatacity.de": [19463], "forms.southwark.gov.uk": [15196], "www.avis.com": [1451], "igg.me": [8072], "m.ndr.de": [11119], "www.teylingen.nl": [11132], "support.plex.tv": [12814], "reputation.com": [13790], "m.feedback.yandex.com.tr": [18649], "admin.noxa.de": [19444], "aptdeco.com": [1141], "ds2.static.rtbf.be": [14011], "stats.kkh-allianz.de": [8732], "cdn.torrentfunk.com": [16581], "ep.jhu.edu": [16296], "broadbandmap.gov": [2350], "blog.honeynet.org.mx": [19256], "ctf.eindbazen.net": [5126], "www.isc.vutbr.cz": [17522], "rdoproject.org": [13409], "justsecurity.org": [8695], "garron.net": [6462], "demand.assets.adobe.com": [615], "www-cache1.extensis.com": [5523], "www.archive.today": [1164], "whatbrowser.org": [18228], "shibboleth.stanford.edu": [15383], "planet.ubuntu-fr.org": [17096], "kennedy-center.org": [19335], "worldhealth.net": [18463], "*.customerhub.net": [8136], "*.processnet.hu": [4665], "shadow.cs.umn.edu": [17268], "trustedsec.com": [16789], "www.wd2go.com": [17898], "airbnb.*": [749], "lksc.stanford.edu": [15382], "*.demandprogress.org": [4345], "uni-due.de": [17165], "www.math.uchicago.edu": [17246], "*.kobo.com": [8949], "www.penfoldgolf.com": [12533], "www.skolaonline.cz": [19598], "swfdec.freedesktop.org": [6126], "findnsave.oregonlive.com": [12100], "xm.techxpress.net": [16022], "www.nku.gov.sk": [14972], "p8.qhimg.com": [13302], "welsh-country-cottages.co.uk": [18490], "manage.ukfsn.org": [16966], "wpmudev.org": [18469], "mwl.telekom.de": [4410], "www.xemail.de": [18555], "piwik.deimos.fr": [4318], "www.meetbsd.com": [10209], "gotfuturama.com": [6853], "www.edri.org": [4898], "backup.f-secure.com": [5541], "identicons.github.com": [6680], "*.kobobooks.pt": [8949], "itea3.org": [7846], "www.maximintegrated.com": [10096], "www.chartbeat.com": [3018], "www.trygghansa.se": [16808], "www.gasngrills.com": [6465], "www.empeopled.com": [5214], "www.netload.in": [11241], "origin.www.upcbusiness.nl": [17003], "www.projectcounter.org": [2643], "watford.gov.uk": [19747], "leisure.cheshireeast.gov.uk": [3067], "srna.sk": [15341], "onehockey.com": [11833], "iam.edp.pt": [4896], "static-www.elastic.co": [5142], "cdnjpg.dmjx.dk": [4600], "geenstijl.nl": [19211], "radioeins.de": [13518], "blog.startech.com": [15395], "imsl.engineering.osu.edu": [11760], "www.debian.org": [4275], "internetretailer.com": [17640], "www.ccbill.com": [2534], "communities.sas.com": [14074], "dean-faculty.williams.edu": [18316], "www.okfn.org": [12017], "www.govspace.gov.au": [6867], "www.fsl.cs.sunysb.edu": [15480], "support.gradwell.com": [6883], "www.ngx.cc": [11376], "downloads.2kgames.com": [87], "www.sempervideo.de": [14573], "amway.com": [888], "www.tokyotosho.se": [16537], "fluiddynamics.osu.edu": [11760], "obfs.uillinois.edu": [16960], "postdocs.stanford.edu": [15382], "asset-1.soupcdn.com": [15167], "reporting.here.com": [7326], "whms.com": [17907], "cdn.leagueoflegends.com": [9206], "www.faiusa.org": [5998], "creditreportnation.com": [3791], "www.jquerymobile.com": [8452], "masterh4.adriver.ru": [534], "www.8ch.net": [203], "www.tech.plymouth.ac.uk": [12833], "www.meeting-reg.com": [10012], "my.southend.gov.uk": [15193], "brulinesfuelsolutions.com": [17663], "www.infoblox.com": [8106], "soundstrue.com": [15164], "www.vpn4all.com": [17500], "status.yammer.com": [18646], "theatlantic.com": [16245], "iovation.com": [8342], "*.westpac.com.au": [18222], "vpsportal.gmocloud.com": [6343], "solariz.de": [19607], "krb-jobs.brassring.com": [19017], "www.kitepackaging.co.uk": [8923], "www.roleplaychat.org": [13955], "webmail.atlantis.sk": [1319], "www.jackandjillraffle.com": [8481], "www.evoluted.net": [5466], "cure53.de": [3927], "www.hgo.se": [7058], "www.davidgold.co.uk": [4226], "e.weibo.com": [18187], "help.gawker.com": [6476], "*.virginia.edu": [17289], "www.ionicframework.com": [8339, 8340], "www.wolverhampton.gov.uk": [18404], "faq.lookout.com": [9601], "rscweb.org": [13997], "kth.se": [8752], "aarondcampbell.com": [394], "condenaststore.com": [3557], "*.likes-media.com": [9350], "ars.els-cdn.com": [5182], "emubrightfutures.org": [18428], "www.torreycommerce.net": [16592], "www.gac.edu": [6301], "www.marketpress.com": [10009], "copernico.net": [3650], "static.rust-lang.org": [14047], "olimex.com": [11781], "www.northeastern.edu": [11499], "www.coverageforall.org": [3729], "surveys.cardiff.ac.uk": [2835], "www.adisc.org": [269], "cdnsecakmi.kaltura.com": [8775], "www.kinotehnik.com": [8910], "www.epoch.com": [5325], "www.act.ulaval.ca": [17229], "static.flocabulary.com": [5935], "onthehub.com": [19460], "achaea.com": [18937], "*.pssap.gov.au": [13212], "www.giantbomb.com": [6636], "standards.freedesktop.org": [6126], "forums.serversforhackers.com": [14618], "*.myyearbook.com": [10821], "www.stealthnet.de": [15448], "m.mail.ru": [9874], "jobs.nottingham.ac.uk": [11528], "www.mycareinbirmingham.org.uk": [10802], "jyllands-posten.dk": [8703], "cdn.rawgit.com": [13580], "mrm.freewheel.tv": [6136], "blog.evernote.com": [5450], "forum.openmw.org": [11954], "wiki.openstack.org": [11975], "myjobscotland.gov.uk": [10838], "xteam.brookings.edu": [2362], "www.incloak.es": [8030], "owncloud.dkit.ie": [4040], "www.odpadnes.sk": [18879], "store.androidguys.com": [10490], "snelpanel.com": [15033], "miranda-im.org": [10441], "cockpit.mykolab.com": [10765], "www.vistumbler.net": [13544], "kuvat.huuto.net": [19267], "strongswan.org": [19634], "sso.vodafone.ie": [17815], "store.manageengine.com": [9940], "heatss.civicalg.com.au": [19065], "otr.to": [11682], "gentoo.petteriraty.eu": [12603], "store.omnigroup.com": [11793], "www.holytransaction.com": [7462], "s3.trafficmaxx.de": [16655], "static.bitcoinity.org": [1984], "subversion.renater.fr": [13764], "membershiprewards.com": [10248], "ilovefreegle.org": [7892], "demandprogress.org": [4345], "www.xsolla.com": [18593], "dc2.client.hip.live.com": [9483], "www.inspirationgreen.com": [8177], "opnsense.org": [11656], "www.opensource.apple.com": [1120], "uline.com": [17128], "ede-look.org": [19461, 19462], "www.codesourcery.com": [10264], "bioinformatics.vt.edu": [17740], "www.itspa.org.uk": [7851], "cdn.websharks-inc.com": [18084], "viaverio.com": [17660], "strategicmanagement.net": [15509], "www.xm.com": [18520], "coreboot.org": [3669], "www.piwik.ei.rub.de": [13478], "belezanaweb.net.br": [1760], "landing.newsinc.com": [11335], "www.everyoneisgay.com": [5455], "contests.nvidia.com": [10985], "medialoot.com": [10174], "kids.greenpeace.de": [6936], "drinkaware.co.uk": [4761], "www.osmfoundation.org": [11672], "i1.adis.ws": [593], "player.sky.com": [14924], "auth0.com": [1407], "www.visitor.wustl.edu": [17993], "asset-2.java.net": [8525], "patentbaristas.com": [12448], "cryptad.com": [3842], "www.pfizerpro.com": [12612], "light-paint.com": [9342], "www.harlandclarkegiftcard.com": [7207], "www.bitbucket.com": [1926], "*.postimg.org": [12978], "*.bosch.com": [2227], "includes.ncl.ac.uk": [10884], "www.brandweeruitgeest.nl": [2287], "bitx.co": [1951], "www.canterbury.gov.uk": [2811], "api.mywot.com": [10797], "rabota.mail.ru": [9874], "4runnerforex.com": [153], "www.yandex.ua": [18656], "clients.microtronix-tech.com": [10372], "clarionledger.com": [3213], "autoadmanager.com": [1420], "milwaukeemakerspace.org": [10402], "www5.hertz.com": [7372], "aip.org": [291], "policy.isis.poly.edu": [12888], "www.dnscurve.com": [4062], "www.websitealive9.com": [18149], "wsstatic.govmetric.com": [6866], "ch-fr.norton.com": [11505], "ssl.post-gazette.com": [12728], "binera.de": [7217], "fictionpress.com": [5772], "www.zimbrablog.com": [18868], "manage.coreix.net": [3671], "taxpayersalliance.com": [15980], "www.tuleap.org": [16823], "engine.lingospot.com": [9372], "mypcbackup.com": [8689], "my.backpage.com": [1602], "ask.threatmatrix.com": [19680], "www.wartstick.com": [17985], "www.reklamport.com": [13750], "www.bitsharestalk.org": [2017], "cdwg.com": [2566], "netdna.bootstrapcdn.com": [2217], "recurse.com": [13653], "vzw.com": [17628], "tibetaction.net": [16410], "conference2010.kde.org": [8718], "www.finn.no": [5849], "wiki.smzdm.com": [15017], "lfait.com": [9072], "www.androidfilehost.com": [1008], "www.juneoven.com": [8678], "www.fibank.bg": [5769], "emsonline.blackpool.gov.uk": [2056], "mydrive.ch": [10829], "sedo.com": [14542], "jobs.lever.co": [9269], "vidahost.com": [17679], "www.miamire.com": [10336], "www.doncaster.greenparty.org.uk": [6925], "webstats.maths.ed.ac.uk": [5067], "support.lucidchart.com": [9645], "tb.cn": [15981], "enru.dict.cc": [4455], "bluecava.com": [2129], "www.signal-spam.fr": [14781], "www.redditmade.com": [13694], "svn.gnumonks.org": [6766], "*.boozallen.com": [2220], "djoserwandelenfiets.nl": [7452], "esdiscuss.org": [4969], "nwschat.weather.gov": [18034], "www.coreix.net": [3671], "auphonic.com": [1370], "hdnux.com": [7271], "www.bootswatch.com": [2218], "app-uk.resrc.it": [13599], "help-de-eu.nike.com": [11401], "zonglovani.info": [18896], "directadvert.ru": [4524], "beta.maps.yandex.com": [18651], "www.americanflyertrains.com": [942], "www.silvertunnel.org": [14803], "desktop.ucsd.edu": [16939], "app.arachnys.com": [1149], "www.emas.portsmouth.gov.uk": [19508], "www.secure-endpoints.com": [14479], "paszport.money.pl": [10547], "www.chain.com": [2980], "find.es.t-mobile.com": [15772], "www.gavinhungry.com": [6474], "www.parkrun.org.uk": [12407], "oir.nih.gov": [11052], "siteparc.fr": [14884], "bikeji.com": [1872], "self.alipay.com": [817], "www.vdv.de": [17478], "rt.ru": [13469], "mail.monkeybrains.net": [10558], "www.your-freedom.net": [18721], "www.persona.org": [10662], "statswales.wales.gov.uk": [17957], "cannex.com": [2515], "virwox.com": [17731], "s.uploadhero.co": [17392], "intranet.study.fce.vutbr.cz": [17522], "www.dna.land": [4056], "developers.asana.com": [1242], "usuz.unizar.es": [17356], "dreamstime.com": [4755], "*.blinkeye.ch": [2076], "hbokids.com": [19241], "www.internationalpayments.co.uk": [8267], "ravendb.net": [13578], "*.moverall.com": [10633], "*.cyberduck.io": [3969], "panel.dataspace.pl": [4186], "play.spotify.com": [15296], "rally.stopwatching.us": [15488], "output1s.rssinclude.com": [13463], "mxgm.org": [9810], "opis.cmft.nhs.uk": [10913], "action.aarp.org": [234], "cch.com": [2547], "*.3cdn.net": [131], "calchamer.com": [2726], "burthub.com": [2451], "www.hr-s.co.jp": [7095], "tags.bluekai.com": [2133], "orbitalatk.com": [12092], "*.theatlanticcities.com": [1316], "www.bugzilla.org": [2410], "www.advocate-europe.eu": [669], "s.ukrnames.com": [17126], "i.newsvine.com": [11348], "cll.conted.ox.ac.uk": [17271], "*.villas.com": [17715], "www.cites.illinois.edu": [17258], "mini.bugs.opera.com": [12050], "sitecdn.answcdn.com": [1059], "www.nxtgn.org": [11594], "lh2.google.com.*": [6837], "www.reverbnation.com": [13842], "connect.colchester.gov.uk": [3414], "imgs1-video.msn.com": [9796], "chinafile.com": [19059], "snapwidget.com": [15028], "forums.virtualbox.org": [17748], "www.konami-korea.kr": [8973], "torrentz-proxy.com": [16589], "iacr.org": [8255], "hamradio.com": [7184], "drone.io": [4766], "www.simbad.cnrs.fr": [6195], "www.infogr.am": [8109], "cruises.webjet.com.au": [18124], "members.fas.org": [5723], "*.arukereso.hu": [1237], "wuliu.taobao.com": [15952], "linksfu.com": [9379], "marvel.com": [10037, 10038], "media.glasses.com": [6702], "www.iipvv.nl": [7740], "localoffer.bradford.gov.uk": [2264], "webmail.nasa.gov": [10869], "esac.osu.edu": [11760], "a4.jimstatic.com": [8571], "m.slashdot.org": [14947], "www.vianetfuelsolutions.com": [17663], "joomlainfo.ch": [19325], "*.euroforum.de": [5413], "www.habervision.com": [7124], "www.verisignlabs.com": [17624], "www.amnesty.org.tr": [970], "cyon.ch": [3981], "frugalware.org": [6234], "*.schulte.org": [14369], "cdig.me": [2915], "ifixit-meta.dozuki.net": [7726], "www.yourvideohost.com": [18733], "account.cern.ch": [2575], "ekiga.net": [5131], "songkick.com": [19609], "voxility.com": [17855], "static5.startnext.com": [15412], "kuruc.info": [9045], "bugs.siedler25.org": [13832], "webstac.wustl.edu": [17993], "democracy.kirklees.gov.uk": [8916], "ecommerce.oblic.com": [11608], "fishnetsecurity.com": [5882], "8gwc-kbhkort.kk.dk": [8730], "forums.groundspeak.com": [6967], "www.nice.nhs.uk": [10913], "support.pipni.cz": [12257], "wholeearth.com": [18262], "www.dnschain.net": [4060], "cdnma.com": [11179], "burp.renderfarming.net": [13765], "api.basespace.illumina.com": [7968], "starkist.com": [15391], "saptraining.ncl.ac.uk": [10884], "forum.bitcoin.co.id": [1964], "it24.idg.se": [7705], "www.gna.org": [6758], "assoc-amazon.de": [1289], "dataconsole.kruxdigital.com": [9015], "www.virusec.com": [17760], "comptracker.rigzone.com": [1916], "talgov.com": [15924], "www.cachethq.io": [2709], "opencores.org": [11930], "mpagano.com": [10669], "rally1.rallydev.com": [13537], "mozaik.axosoft.com": [1477], "www.guarantorusloans.co.uk": [6998], "spreadshirt.de": [15300], "l.longtailvideo.com": [9589], "blog.kaywa.com": [8827], "jewishpress.com": [8563], "ugyfelkapu.digi.hu": [4470], "www.efinancialcareers.cn": [4910], "openlistings.co": [12019], "help.yandex.com.tr": [18649], "www.nurdspace.nl": [10977], "spreadshirt.dk": [15300], "ly.zdf.de": [19800], "www.ibtimes.co.uk": [7677], "ibanking.stgeorge.com.au": [19627], "digibond.wpengine.netdna-cdn.com": [4480], "site24x7.com": [14861], "etraining.wto.org": [17934], "mamp.info": [19379], "church.ez-web-hosting.com": [5000], "kenexa.com": [8848], "jariangibson.com": [8521], "www.webtatic.com": [18162], "nlgcdn.com": [11432], "workiva.com": [18442], "www2.amnesty.org.uk": [971], "*.datacard.com": [4198], "www.wpenginestatus.com": [17924], "cdn.pulpix.co": [13223], "dc801.org": [4012], "*.pjtv.com": [12262], "www.seower.com": [14590], "englearn.osu.edu": [11760], "www.hackinthebox.org": [7154], "rui.gwallet.com": [13522], "*.blazonco.com": [2064], "security-master.debian.org": [4274], "amnesty.org.ru": [969], "support.qacafe.com": [19529], "www.ercnsm.osu.edu": [11760], "www.betnet.fr": [11186], "verfassungsschutz.de": [2427], "store.symantec.com": [15715], "ssl7.net": [14496], "flixbus.fr": [5931], "ssc.osu.edu": [11760], "parallax.com": [12390], "www.openbittorrent.com": [11923], "www.globusonline.org": [6746], "wigan.gov.uk": [18286], "explorer.dot-bit.org": [4691], "home.wpm.neustar.biz": [11280], "user-agents.org": [17429], "*.kpnmail.nl": [8744], "www.mitpress.mit.edu": [9749], "quadrantsec.com": [13323], "tools.sparklabs.com": [15220], "upgnation.com": [16200], "essaysreasy.net": [5364], "wikitest.geogebra.org": [6537], "www.connecthr.nl": [2783], "fee.org": [5564], "coophotellkupp.no": [3646], "www.imfreedom.org": [8183], "hps.org": [19263], "red-pill.eu": [13658], "amnesty.or.jp": [966], "www.usfreeads.com": [17043], "haskoin.com": [7231], "files.thirdpresence.com": [16369], "hongkongpost.gov.hk": [19259], "hackerboard.de": [7146], "*.hsbc.co.uk": [7098], "45millionvoices.org": [147], "avatar.threema.ch": [16399], "consult.cotswold.gov.uk": [19081], "*.ppjol.com": [13034], "onlandscape.co.uk": [11817], "www.hakin9.org": [7169], "www.stitcher.com": [15476], "www.vetdepot.com": [17654], "multimedia.pol.dk": [12859], "hungerhost.com": [7619], "bugbase.adobe.com": [615], "support.novell.com": [11530], "ionicframework.com": [8339, 8340], "admin.theatlanticwire.com": [1316], "www.sonypictures.co.uk": [15151], "news.eastsussex.gov.uk": [19142], "businessclass.comcast.net": [3460], "*.www.o2.cz": [16076], "www.cups.org": [2690], "educationnext.hks.harvard.edu": [5095], "bluecastle.nottingham.ac.uk": [11528], "coe.uaa.alaska.edu": [17233], "beaconreader.com": [1727], "www.mariestopes.org.au": [9992], "www.postimage.org": [19511], "www.discovery.org": [4555], "tor.lugons.org": [9108], "*.hostpoint.ch": [7541], "apps.cheshireeast.gov.uk": [3066], "apigee.com": [1093], "1.downloader.disk.yandex.com": [18651], "phabricator.haskell.org": [7229], "go.eset.com": [5358], "secure.redflush.com": [13674], "files.williamhill.com": [18315], "www.st.org": [14187], "www.louiseharrisoncouture.com": [9621], "spain.palsolidarity.org": [12338], "www.udacity.com": [17110], "support.udemy.com": [17111], "www.digitalwpc.com": [4502], "forum.games.mail.ru": [9874], "linuxpenguins.xyz": [19367], "www.citizenlab.org": [16183], "svn.aircrack-ng.org": [18948], "cvut.cz": [3992], "savedeo.com": [14312], "trade.2.taobao.com": [15952], "delish.com": [4331], "student.liu.se": [9084], "www.peerreach.com": [12517], "clic.reussissonsensemble.fr": [13835], "at.norton.com": [11505], "klibert.pl": [8932], "iptv.canaldigital.dk": [2803], "www.psykologteam.dk": [13541], "login.hscic.gov.uk": [19264], "es.videos.t-mobile.com": [15770], "waze.com": [18014], "www.amwaygrand.com": [887], "i-secure.walmartimages.com": [17965], "owa.student.kuleuven.be": [8816], "host-tracker.com": [7503], "de-sr.dict.cc": [4455], "hostdime.com": [7510], "guardian.co.tt": [6999], "wap.baidu.com": [1619], "www.ncta.com": [10888], "adminit.usc.edu": [17278], "images.springer.com": [15309], "customercare.inyt.com": [7772], "just-eat.dk": [19328], "www.trumpia.com": [16779], "www.corrent.org": [3686], "staticorigin.wixstatic.com": [18384], "*.robtex.com": [13920], "www.picmet.org": [12255], "infusedsystems.com": [8135], "jobb.blocket.se": [2094], "www2.scribblelive.com": [14412, 14413], "skolaonline.cz": [19598], "www.championsofregnum.com": [2990], "i.literotica.com": [9467], "www.unwantedwitness.or.ug": [17375], "www.postaffiliatepro.com": [12953], "*.american.edu": [934], "trojansalert.usc.edu": [17278], "favorite.taobao.com": [15952], "liferay.com": [9333], "www.cdw.com": [2566], "docs.openpgpjs.org": [11965], "www.1xbet.com": [69], "meinprivatkaffee.tchibo.de": [15985], "www.gjopen.com": [6336], "www.maksukaista.fi": [19377], "nyx.com": [10996], "myeaccount.islington.gov.uk": [8370], "*.sdlcdn.com": [14432], "www.cyberpowerpc.com": [19098], "g5.gov": [6300], "www.alumni.utah.edu": [17288], "www.udemy.com": [17111], "forums.wxwidgets.org": [19779], "www.offog.org": [11756], "linsrv104.linuxcontrolpanel.co.uk": [9426], "www.jwplayer.com": [9589], "jekkt.com": [8542], "tongji.alicdn.com": [805], "advertiser.adknowledge.com": [599], "*.kde-look.org": [19462], "www.tcpalmextras.com": [15793], "bell.ca": [1763], "bollettino.poste.it": [12965], "www.gamecraft.cz": [19206], "www.supersec.com": [15634], "userecho.com": [17430], "cp.pt": [3744], "www.nationaldefensemagazine.org": [11049], "pensionsmyndigheten.se": [12540], "www.totaltravel.co.uk": [18638], "flinto.com": [5923], "mgel.osu.edu": [11760], "makeapledgepayment.stanford.edu": [15383], "foundationsource.com": [6077], "modelviewculture.com": [10518], "otl.stanford.edu": [15383], "ll-assets.tmz.com": [15832], "fotoforensics.com": [7140], "aulani.jobs": [1367], "www.itea3.org": [7846], "jwpsrv.com": [8701], "static9.startnext.com": [15412], "readme.io": [13608], "apps.evozi.com": [5469], "skyriderplay.com": [14940], "www.justice.gov.uk": [10427], "*.zeit.de": [18812], "www.bvg.de": [1582], "*.malina.hu": [4665], "www.octopart.com": [11714], "www.identitytheft.gov": [7938], "pindropsecurity.com": [19495], "opentpx.org": [11980], "www.starwars.com": [15396], "mail.re-publica.de": [13597], "riverisland.com": [13906], "www.numergy.com": [11579], "nap.rkn.gov.ru": [13913], "*.myspace.com": [10847], "www.7-eleven.com": [187], "peliaika.fi": [6394], "info.nowsecure.com": [11533], "www.btcturk.com": [1564], "studi.f4.htw-berlin.de": [7112], "dealchicken.com": [12631], "pp.vk.com": [17493], "admin.exmasters.com": [5497], "openai.com": [11916], "publicaccess.glasgow.gov.uk": [6699], "support.cex.io": [2587], "www.leetway.com": [9225], "gethashing.com": [6577], "vtbrussia.ru": [17515], "*.sitesense-oo.com": [11021], "my.fireclick.com": [5856], "www.baltimoresun.com": [16730], "malcovery.com": [9922], "www.torrent.tm": [16577], "tonergiant.co.uk": [16545], "www.mykolab.com": [10765], "torrentz.to": [16590], "www.peerlibrary.org": [12516], "*.fanhattan.com": [5654], "www.canvaslms.com": [2814], "netsale.aktiiviraha.fi": [7186], "www.leboncoin.fr": [19351], "www.cryptologie.net": [3876], "rackspace.hk": [13504], "bitme.com": [2007], "contextly.com": [3615], "www.icp.uni-stuttgart.de": [17281], "sjs.bizographics.com": [2032], "connect.astaro.com": [5177], "informers.sinoptik.ua": [14852], "een.ec.europa.eu": [5420], "kirklees.gov.uk": [8916], "*.moneysavingexpert.com": [10549], "lists.kde.org": [8718], "community.lls.org": [9089], "boston.com": [2233], "mixi.jp": [10467], "jhalderm.com": [8470], "www.labp.htwk-leipzig.de": [7114], "www.linotype.com": [9388], "www.videoly.co": [17697], "feeds.jivesoftware.com": [8585], "subscription.people.com": [12547], "numsys.eu": [11580], "static.stubhub.de": [15534], "sakerhet.idg.se": [7705], "ecn.t4.tiles.virtualearth.net": [17755], "www.onthewire.io": [11819], "www.newzsec.com": [11352], "www.drivee.ne.jp": [4764], "plastidipuruguay.com": [12782], "www.dsi.cnrs.fr": [6195], "artday.co.kr": [1226], "www.niehs.nih.gov": [11052], "www.androidpit.de": [1009], "account.ubnt.com": [17084], "*.autistici.org": [1413], "www.apertureinsight.com": [13226], "datatracker.ietf.org": [7721], "www.aeon.co": [681], "www.stshrt.com": [15352], "explore.t-mobile.com": [15772], "www.nadaguidesstore.com": [10867], "jobs.daringfireball.net": [4147], "*.getshine.com": [6605], "www.stopwatching.us": [15488], "i2.gmx.com": [6350], "www.namebrightstatic.com": [11017], "cbps.canon.com": [2809], "burningshed.com": [2442], "oceandiscoveryportal.xprize.org": [18495], "goparallel.sourceforge.net": [15174], "hydra.nixos.org": [11430], "www.schneierfacts.com": [19569], "www.clkmon.com": [3272], "noembed.com": [11457], "datadirect.com": [4180], "*.kinghost.net": [8898], "www.sso.bluewin.ch": [2157], "www.gigenet.com": [6656], "chat.cari.net": [2518], "www.lokun.is": [9565], "www.cotse.net": [3696], "www.xt-commerce.com": [18595], "www.1337x.to": [31], "*.reelstatic.com": [13711], "mmedia.ozon.ru": [12199], "asset.xmission.com": [18529], "std3.ru": [15445], "ian.com": [7895], "accountchooser.com": [461], "www.reclaim-your-privacy.com": [13645], "*.santanderbillpayment.co.uk": [14292], "*.frieslandbank.nl": [6219], "www.panicbutton.io": [12362], "*.wsod.com": [10024], "www.1984hosting.com": [41], "muckrock.com": [10684], "*.player.fm": [12802], "checkmyping.com": [3052], "edge.fscdn.org": [5604], "nl-marketing.tradepub.com": [16645], "automotivelinux.org": [1429], "tvheadend.org": [16860], "scottbrand.com": [14397], "www.here.com": [7326], "ugla.hi.is": [7066], "www.ihgagent.com": [8230], "siim.ut.ee": [17069], "sms.sknvibes.com": [14126], "mikeconley.ca": [10384], "library.cwi.nl": [2958], "acp.planningportal.gov.uk": [19499], "id.trove.com": [16762], "it.malwarebytes.org": [9929], "www.erhvervsstyrelsen.dk": [5341], "workorder.aliyun.com": [821], "trunk.evernote.com": [5450], "peterodding.com": [12593], "ccfn.ncsu.edu": [11492], "www.rnengage.com": [13440], "fulcrumbiometrics.com": [6247], "purinastore.com": [13246], "eugene.kaspersky.com": [8806], "login.libproxy.aalto.fi": [390], "registro.br": [13735], "htrnews.com": [7322], "*.cli-apps.org": [19462], "studentaccounting.wustl.edu": [17993], "www.complianceoffice.wustl.edu": [17993], "www.uno.im": [17361], "stipendia.vutbr.cz": [17522], "www.eba.europa.eu": [5421], "www.nustarz.com": [11563], "invoiceocean.com": [8332], "www.argoscareers.com": [1186], "d.mhcache.com": [10331], "dataskydd.net": [4215], "*.h5n.us": [7044], "parkright.westminster.gov.uk": [18220], "www.upgnation.com": [16200], "cdn.stablehost.com": [15357], "www.eauth.usda.gov": [17209], "*.esetstatic.com": [4957], "www.vodafone.de": [17814], "*.ciao.com": [3132], "www.barracudanetworks.com": [1680], "en.verbling.com": [17615], "360buy.com": [111], "*.ecampus.no": [4882], "www2.healthunlocked.com": [7259], "dml.kuleuven.be": [8816], "gearhog.com": [6486], "www.jd.hk": [8424], "*.icims.com": [7685], "cloud-cp.hostingsolutions.cz": [7531], "cafepress.co.uk": [2716], "cisofy.com": [2616], "*.4rx.com": [152], "shop.flixbus.at": [5931], "www.iti.illinois.edu": [17258], "www.heartbleed.com": [7276], "www.retronaut.com": [13829], "www.biallo.de": [1839], "www.lambdaops.com": [9137], "zno.yandex.ua": [18656], "help.theplatform.com": [16230], "delivery.ad.newsnow.net": [11331], "quadrant.org.au": [13322], "www.oecdilibrary.org": [11618], "www.shellterproject.com": [14697], "tescoshareandearn.com": [16141], "www.volatilesystems.com": [17825], "www.rettighedsalliancen.dk": [13831], "www.vibrantmedia.com": [17665], "*.habets.pp.se": [7126], "www.automatak.net": [1426], "sbaglobal.com": [14625], "login.nemlog-in.dk": [11143], "cybershambles.com": [3964], "www5.dudley.gov.uk": [4795], "*.showmecon.com": [14739], "globaltestsupply.com": [6719], "para.maximintegrated.com": [10096], "www.terveysportti.net": [16133], "static.ylilauta.org": [19792], "status.zen.co.uk": [18815], "fiannafail.ie": [5768], "beacon.rubiconproject.com": [14014], "www.esolangs.org": [5359], "www.kcl.ac.uk": [8899], "www.vanlanschot.nl": [17552], "www.javvin.com": [8532], "reyn.ir": [13852], "www.dcboee.org": [4013], "correlatedvm.netspi.com": [11206], "eng.fronter.com": [19200], "www.nsslabs.com": [10959], "mutualofamerica.com": [10733], "verisign.com.tw": [17623], "a0.jimstatic.com": [8571], "www.cof.ens.fr": [4930], "mtu.edu": [9802], "image12.bizrate-images.com": [2033], "awesome-it.de": [1461], "help.conoha.jp": [3587], "cebit.de": [2924], "aldi.nl": [299], "on.wsj.com": [1920], "mthode.org": [10682], "cp.win-rd.jp": [18325], "uk.hosting.adjug.com": [526], "bugs.freedesktop.org": [6126], "s3.lbrcdn.net.s3-external-3.amazonaws.com": [9177], "www.civilservice.gov.uk": [19066], "www.cert.pl": [2577], "igiveonline.com": [7889], "vdoth.com": [17583], "sg.redhat.com": [13675], "*.rpxnow.com": [13449], "online.mbank.cz": [9722], "auth.illinois.edu": [17258], "press.11main.com": [20], "train.jd.com": [8423], "forum.fineproxy.org": [5846], "www.otalk.im": [12130], "git.centos.org": [2942], "tecnica.ist.utl.pt": [16032], "www.camaya.net": [2764], "auto.ya.ru": [18626], "winterswijk.nl": [11132], "mail.subsignal.org": [15566], "mylikes.com": [10768], "pilgrim.ceredigion.gov.uk": [2964], "gcm.atechmedia.com": [368], "www.sqlconverter.com": [14162], "www.incloak.com": [8029], "nekvapor.com": [10897], "grondalmulticenter.kk.dk": [8730], "email.usc.edu": [17278], "intelish.com": [8213], "www.highways.gov.uk": [19250], "onemancan.org": [11849], "secure.informaction.com": [8121], "addisonlee.com": [577], "mediademocracyfund.org": [10144], "encase.com": [7006], "blog.freenode.net": [19196], "gitlab.lrz.de": [9238], "techfreedom.org": [16011], "community.vodafone.ie": [17815], "schokokeks.org": [19570], "equalit.ie": [4947], "sir.cern.ch": [2575], "satoshilabs.com": [19564], "*.stardock.com": [15401], "tcd.ie": [16736], "omniti.com": [11794], "www.oneplus.net": [11841], "www.inverse.ca": [8315], "rad.msn.com": [9796], "www.dareboost.com": [4146], "fox-it.com": [6084], "nationaleyegene.nei.nih.gov": [11052], "mijnwestlandutrecht.nl": [18217], "www.chroniclevitae.com": [3123], "dnswatch.info": [4066], "*.propellerads.com": [13156], "alrc.gov.au": [1396], "devx.com": [18074], "webpg.org": [18078], "buyboard.com": [2467], "hynek.me": [7641], "turn.com": [16840], "habrastorage.org": [7130], "*.www.loopia.se": [9606], "ex.ac.uk": [17251], "www.privnote.com": [13105], "www.ofsted.gov.uk": [19456], "www.netvibes.com": [11257], "*.silobreaker.com": [14797], "be.godaddy.com": [6773], "dojotoolkit.org": [4637], "www.rarbg.to": [19534], "coin-swap.net": [3390], "mobile-ent.biz": [8227], "apan.org": [329], "www.softwarefreedom.org": [15098], "*.makerbot.com": [9915], "highseer.com": [7403], "peerreach.com": [12517], "qsstats.com": [13289], "*.questadmin.net": [6283], "notice.taobao.com": [15952], "support.ipvanish.com": [7799], "quinstreet.com": [13365], "*.networkdepot.com": [11260], "green-wood.com": [6916], "*.abusix.com": [432], "www.ianthehenry.com": [7896], "www.linuxwall.info": [9437], "www.deeppoliticsforum.com": [4300], "www.photosynth.net": [12649], "memberprod.alipay.com": [817], "xml.yandex.kz": [18652], "gpul.org": [6375], "atfp.co": [1920], "mediaxus.com": [10183], "web.uillinois.edu": [16960], "assets2.motherboard.tv": [10607], "student-affairs.buffalo.edu": [17297], "www.varnish-cache.org": [17568], "careers.fi": [2845], "parti-pirate.ch": [12284], "www.el-tramo.be": [5137], "dolphin.kde.org": [8718], "openmailbox.org": [11955], "www.synthetix.info": [15743], "www.uwm.edu": [17294], "*.maxroam.com": [9717], "www.madboa.com": [9836], "*.rememberthemilk.com": [13758], "forums.pragprog.com": [13012], "tomsk.rt.ru": [13469], "download.halowaypoint.com": [7176], "go.linuxfoundation.org": [9412], "*.spreadshirt.net": [15300], "aas.org": [235], "www.cbcblueprint.com": [2521], "www.cic.ch": [1654], "de17a.com": [4242], "hypersend.labcorp.com": [9122], "fortresslinux.org": [6058], "softether.org": [15092], "*.readwrite.com": [13613], "itstools.ornl.gov": [11693], "rubenerd.com": [14013], "email.ixwebhosting.com": [7882], "profile.surfconext.nl": [14198], "zopim.com": [18908], "community.amd.com": [925], "unigine.com": [17187], "pics.computerbase.de": [3538], "www.vehicular.isy.liu.se": [9084], "thr.com": [15813], "bugcrowd.com": [2406], "shuddle.us": [14750], "ng-book.com": [11371], "*.bundestag.de": [4414], "www.multiseek.net": [10696], "www.csbaacademy.com": [2664], "bookdepository.com": [16217], "charter.com": [3020], "www.cybergolf.com": [3971], "evisa-vietnam.com": [5460], "red-gate.com": [13657], "*.cachefly.net": [2708], "statinfo.ksh.hu": [8750], "scene7.com": [14340], "www.ukrnames.com": [17126], "uat.dwolla.com": [4816], "www.philadelphiabar.org": [12621], "s4.test.ft-static.com": [19201], "www.mikrotik.com": [10388], "milliways.cryptomilk.org": [3880], "cemas.osu.edu": [11760], "glljobs.org": [19222], "www.educationnext.org": [5095], "www.alliancebernstein.com": [851], "www.ticketmaster.*": [16421], "www.aktivix.org": [771], "mobile.southdevon.ac.uk": [15188], "www.krebsonsecurity.com": [9010], "w1.sndcdn.com": [15032], "assets.bugcrowdusercontent.com": [2407], "media.dustin.eu": [4809], "slovari.yandex.by": [18648], "*.travelzoo.com": [16700], "admob.com": [532], "hirlevel.aldi.hu": [299], "my.usda.gov": [17209], "piwik.vm.ag": [17803], "communities.ca.com": [2511], "cloudstor.aarnet.edu.au": [233], "blog.gnupg.org": [6761], "*.ontsi.red.es": [13659], "www.vh3.vutbr.cz": [17522], "*.tedcdn.com": [15806], "overflow.bufferapp.com": [2402], "www.ssl.gostats.com": [6785], "www.imh.liu.se": [9084], "code.djangoproject.com": [4590], "stanfordcareers.stanford.edu": [15383], "*.u-tokyo.ac.jp": [16920], "elections.transformativeworks.org": [16666], "hits.epochstats.com": [5326], "*.d3.ru": [3998], "mapquesthelp.com": [9970], "es.stock.walmart.com": [17964], "professionalprivacypolicy.com": [6716], "pacw.org": [12204], "docs.blesta.com": [2070], "getdigital.co.uk": [6570], "media.intellipoker.bg": [19298], "visaeurope.com": [17764], "alumni.stanford.edu": [15383], "estatico.vozpopuli.com": [17861], "itunesconnect.apple.com": [1120], "extidp.ornl.gov": [11693], "investor.fitbit.com": [5887], "namespace.us": [11023], "www.newspaperdirect.com": [11346], "community.opendns.com": [11932], "www.bitinvest.com.br": [1998], "metro.srgssr.ch": [19621], "community.secondlife.com": [14462], "rocketmail.com": [18638], "securema.ikea.com": [7959], "downloadeu1.teamviewer.com": [16004], "my.m3xs.net": [9698], "www.suicidepreventionlifeline.org": [11097], "miniatur-wunderland.de": [10422], "blog.conformal.com": [3572], "a.dyndns.com": [4820], "www.ccodearchive.net": [3528], "petermolnar.eu": [12592], "blog.bytemark.co.uk": [2489], "pomoc.nazwa.pl": [11117], "www.jcp.org": [8419], "www.exploit.in": [5508], "novosibirsk.rt.ru": [13469], "tibeti.xfce.org": [18511], "chicagotribune.com": [3072], "fau.de": [17311], "*.360yield.com": [110], "www.ageriul.asso.ulaval.ca": [17229], "www.holoscripter.org": [7458], "resourcestore.plymouth.ac.uk": [12833], "www.tampabaysod.com": [15938], "nodesecurity.io": [11452], "www.pas.org.my": [12353], "webauth1.slac.stanford.edu": [15383], "papercut.ics.illinois.edu": [17258], "*.searchmarketing.com": [14444], "*.williams.edu": [18317], "indberet.virk.dk": [17741], "data.birmingham.gov.uk": [19000], "curetheitch.com": [3929], "oc.ederdrom.de": [5076], "sops.news.com.au": [11338], "www.pornhub.com": [12926], "www.gitshell.com": [6683], "www.lesestoff.ch": [19358], "www1.handelsbanken.fi": [7186], "stem.fi.ncsu.edu": [11492], "ard.yahoo.co.jp": [18640], "wiki.netbsd.org": [11184], "joyent.com": [8651], "alex.dojotoolkit.org": [4637], "ontrac.com": [11892], "aftonbladet.se": [716], "stats.salford.gov.uk": [19562], "apperdeck.com": [7461], "calendar.mit.edu": [9747], "zerve.com": [18848], "instapanel.com": [8188], "thefund.stanford.edu": [15383], "teardowniq.com": [16007], "*.css.gov.au": [3495], "archiv.mobile.de": [19403], "www.fallout4.com": [5643], "pcpartpicker.com": [12497], "opentechfund.org": [11983], "msg.telus.com": [16103], "elan.plexapp.com": [12815], "www.fightaging.org": [5785], "www.nos-oignons.net": [11511], "ecdn.liveclicker.net": [9505], "ru.cryptonator.com": [3883], "2checkout.com": [83], "mcitizen.com": [9865], "swisscom.ch": [15698], "m.ut.ee": [17069], "bluehost-cdn.com": [2149], "www.planet-lab.org": [12763], "sait.usc.edu": [17278], "*.coremotives.com": [3664], "jobs.1und1.de": [68], "ngvpn03.nvidia.com": [10985], "chat.iptorrents.com": [7798], "cdn.iqcontentplatform.de": [7810], "developerforums.blackberry.com": [2050], "www.meanstinks.com": [10133], "static-cdn.jtvnw.net": [16888], "teachingcenter.wustl.edu": [17993], "www.avicoder.me": [18973], "www.westminster.gov.uk": [18220], "kayak.com": [8823], "cdn-website.nanorep.com": [11033], "bloggeek.me": [2101], "roundup.kolab.org": [8959], "m.games.mail.ru": [9874], "services.angus.gov.uk": [1020], "*.mlpforums.com": [9757], "identityworkshop.eu": [7940], "www.yceml.net": [3481], "stelladot.com": [15463], "anunciou.com": [1074, 1075], "innerbody.com": [19293], "coinkite.com": [3406], "www.play0ad.com": [12792], "*.shuddle.us": [14750], "his.com": [7293], "www.denic.de": [4362], "chartio.com": [3024], "talky.io": [15935], "*.ew.com": [5297], "www.pogoda.yandex.kz": [18652], "es.gy": [5352], "img.ashampoo.com": [1250], "researchnews.osu.edu": [11760], "tuleap.net": [16822], "godscloud.zdf.de": [19800], "rewards.vodafone.co.uk": [17813], "mkateb.com": [10474], "www.kornerstoneadmin.com": [8989], "forge.gluster.org": [6752], "nimenhuuto.com": [11409], "cornify.com": [3677], "777coin.com": [188], "support.mariadb.com": [9987], "pypa.io": [13265], "neiyi.taobao.com": [15952], "www.vutbr.cz": [17522], "blog.kaspersky.ru": [8807], "adminklient.ppl.cz": [12283], "img.a4apphack.com": [226], "web-ast.dsi.cnrs.fr": [6195], "status.freed0m4all.net": [6163], "schoolapplications.kirklees.gov.uk": [8916], "qz.com": [13386], "www.adbusters.org": [565], "host1.jabbi.pl": [8480], "wms.geo.admin.ch": [19648], "khabarovsk.rt.ru": [13469], "cgmanager.linuxcontainers.org": [9420], "www.eventim.fi": [9440], "graphics.adultfriendfinder.com": [643], "forensics.sans.org": [14072], "ei.rlcdn.com": [13435], "vipserv.org": [17488], "feral.io": [5751], "negativesum.net": [11135], "panel-beta.bytemark.co.uk": [2489], "p6.zdassets.com": [18806], "www.bishopfox.com": [1915], "www.tickets.calpoly.edu": [2747], "freedome.f-secure.com": [5541], "globalhumanrights.org": [6726], "www.sesamstrasse.de": [14629], "expeditedssl.com": [5505], "aftontrailrun.com": [714], "www.websitealive2.com": [18149], "snel.com": [15034], "sick.com": [14757], "legal.yandex.ua": [18656], "*.argos.ie": [1186], "hamburg.de": [7181], "underthehood.myob.com": [9815], "openleaks.org": [11949], "blocklist.rkn.gov.ru": [13913], "content7.flixster.com": [5933], "covisint.com": [3736], "schooladmissions.cheshirewestandchester.gov.uk": [19057], "widget.criteo.com": [3801], "www.staempfliverlag.com": [19623], "www.apcmag.com": [330], "media-hearth.cursecdn.com": [3934], "a1.websitealive.com": [18149], "celebritybabies.people.com": [12546], "aishelp.wustl.edu": [17993], "ymstat.com": [18621], "ubmaviationnews.com": [16927], "www.kickasstorrents.eu": [8879], "*.gu.se": [6396], "discuss.io": [4558], "wdfiles.com": [18294], "www.telekom.sk": [16088], "lists.ocamlcore.org": [11613], "ehow.com": [19137], "beta.metooo.io": [10317], "icpen.org": [7689], "insurancetech.com": [16927], "*.startingpage.com": [8405], "dom.bg": [4645], "www.oeffentliche.de": [11730], "*.epi.org": [5059], "eprotocol.stanford.edu": [15383], "webmail.osu.edu": [11760], "prv.se": [12290], "www.enahost.com": [5228], "peertech.org": [12525], "www.shop.skanetrafiken.se": [14896], "extranet.dft.gov.uk": [19116], "www.domainsite.com": [19124], "*.webstat.com": [18156], "www.datadoghq.com": [4201], "www.centreforeffectivealtruism.org": [2955], "partnerships.register.com": [13732], "*.vara.nl": [17563], "nz.pcpartpicker.com": [12497], "dok.ut.ee": [17069], "blog.vulnhub.com": [17871], "rightscentral.copyright.com": [3657], "i3.social.s-msft.com": [14058], "work4labs.com": [18436], "spinics.net": [15277], "www.projectgus.com": [19522], "blog.livefyre.com": [9507], "mediaed.org": [10150], "calyxinstitute.org": [2760], "kkh-allianz.de": [8732], "cs.mycommerce.com": [10753], "archive.cheshire.gov": [3065], "www.dynatrace.com": [4825], "democracy.wirral.gov.uk": [18370], "www.netspi.com": [11206], "widget.plugrush.com": [12824], "www.jura.ch": [19648], "25live.collegenet.com": [3429], "ashford.com": [1252], "pda-passport.yandex.com.tr": [18649], "aweber.com": [379], "globaltap.com": [6740], "download.guardian.co.uk": [7000], "virtualnewscenter.com": [17753], "secure.boxwoodtech.com": [2261], "www.hellholecheesefactory.org": [7292], "www.twitch.tv": [16888], "templatemonster.com": [16106], "peertransfer.com": [12518], "my.taobao.com": [15952], "zugerkb.ch": [19333], "dm.nazwa.pl": [11117], "www.gimp.org": [19218], "digboston.com": [4466], "*.365ticketsglobal.com": [116], "ispbilling.com": [16816], "www.ethos-os.org": [5386], "abo.freitag.de": [6194], "*.icij.org": [8264], "sociomantic.com": [15079], "browser-update.org": [19020], "mms.10gen.com": [14], "fluxcards.de": [5958], "swdlp.apple.com": [1120], "lessigforpresident.com": [9261], "livecoding.tv": [9506], "blog.hartwork.org": [7217], "www.quitter.no": [13370], "spacelaunchreport.com": [15211], "yeahtv.com": [18614], "api.sailthru.com": [14243], "broadcaster.email-tickets.com": [16425], "bugs.downthemall.net": [4722], "wexnermedical.osu.edu": [11760], "store.berniesanders.com": [1796], "sitemasonmail.com": [14881], "www.whatimg.com": [18233], "buildsecurityin.us-cert.gov": [17415], "www.vereinigte-ikk.de": [17619], "hiring.cs.stonybrook.edu": [15480], "community.sophos.com": [15154], "dotplex.de": [4703], "akamaicovers.oreilly.com": [11660], "www.panopticlick.com": [12363], "www.wiwi.htwk-leipzig.de": [7114], "vmware.com": [17495], "www5.informe.org": [8116], "money.mail.ru": [9874], "pact14.cs.illinois.edu": [17258], "fuzzing-project.org": [6286], "simonswain.com": [14816], "guides.github.com": [6680], "en-tr.dict.cc": [4455], "youtube.mk": [18709], "www.davidsontutoring.com": [4230], "www.codemilltech.com": [3356], "glue.umd.edu": [17263], "3v4l.org": [139], "youtube.me": [18709], "help.openstreetmap.org": [11979], "youtube.mx": [18709], "youtube.my": [18709], "www.accountsupport.com": [460], "www.anonine.com": [1046], "portal.leeds.ac.uk": [17318], "samwhited.com": [14260], "www.loverslab.com": [9632], "www.ubuntu-nl.org": [17099], "www2.technologyreview.com": [16041], "tweetdeck.com": [16869], "t35.com": [15778], "uvt.nl": [16445], "www.office.com": [11743], "www.ifb.htwk-leipzig.de": [7114], "mandtbank.spatialpoint.com": [9690], "proxy6.switchadhub.com": [15701], "spnet.nl": [14161], "static3.urbandictionary.com": [17407], "forms.valeofglamorgan.gov.uk": [17532], "www.ifolor.ch": [19282], "dccomics.com": [4015], "www.law.umich.edu": [17266], "ico.org.uk": [7688], "buckeyemail.osu.edu": [11760], "www.hr.uillinois.edu": [16960], "upload.api.weibo.com": [18187], "justia.com": [8697], "appear.in": [1114], "unclineberger.org": [16986], "h2hc.com.br": [7043], "www.bedford.gov.uk": [18986], "www.alltop.com": [861], "young-pirates.eu": [18716], "cap.stanford.edu": [15383], "pcmall.websitealive.com": [18149], "www.xavisys.com": [18547], "r.mradx.net": [10675], "eupt.unizar.es": [17356], "demo.cachethq.io": [2709], "chartsinfrance.net": [3025], "*.mxlogic.com": [10113], "www.copyleft.org": [3655], "arewecompressedyet.com": [1178], "prowebsector.gr": [13114], "omnigroup.com": [11793], "mechbunny.com": [10135], "bluejeanscable.com": [2140], "eat.seasonal.ly": [14450], "www.ballotmeasuredomains.com": [1632], "developer.windriver.com": [18338], "*.eztv.it": [5004], "www.ecatering.irctc.co.in": [7812], "sxp.microsoft.com": [10364], "open.alipay.com": [817], "pim.kde.org": [8718], "spreadsheets.google.com": [6834], "pssl.com": [12299], "www.hexspoorwms.nl": [7383], "www.journalism.co.uk": [8647], "postdirekt.de": [19112], "supportline.microfocus.com": [10348], "vimention.mobi": [17716], "financial.ucsc.edu": [17305], "bradmail.bradford.gov.uk": [2264], "touch.horo.mail.ru": [9874], "apps.olin.wustl.edu": [17993], "support.godaddy.com": [6773], "zona.telekom.sk": [16088], "cesiumjs.org": [2973], "bitcoinmagazine.com": [1981], "api.bitcoincharts.com": [1977], "*.advertise.com": [659], "*.hometheaterreview.com": [7474], "bisente.com": [1914], "ecoff.org": [5055], "ico.gov.uk": [16967], "revselfservegg.eastlothian.gov.uk": [5014], "us.mcafee.com": [10114], "*.globaloneteam.com": [6738], "blog.geogebra.org": [6537], "xml.yandex.by": [18648], "cryptobib.di.ens.fr": [4930], "doubleclickbygoogle.com": [4708], "ubuntuforums.org": [17104], "data.fcc.gov": [5709], "immunicity.uk": [19288], "www.placeimg.com": [12753], "www.nines.nl": [11413], "notalwaysfriendly.com": [19441], "witness.theguardian.com": [16288], "scriptfodder.com": [14421], "*.ticketmaster.com": [16421], "picker.mit.edu": [9749], "www.onebitbug.me": [11854], "visioncritical.com": [17775], "www.heise.de": [7288], "itek.di.dk": [3566], "calazan.com": [2733], "bronto.com": [2361], "www.huffingtonpost.ca": [7599], "aws.passkey.com": [12430], "www.gartner.com": [6463], "launchpad.ufcfit.com": [16949], "conversion.7search.com": [195], "www.lavaboom.com": [9173], "library.uvm.edu": [17075], "www.moodle.org": [10575], "www.validlab.de": [7114], "api.uow.edu.au": [17350], "*.garmin.com": [19208], "docs.ansible.com": [1057], "invoice.zoho.com": [18884], "www.hertzequipmentsales.com": [7372], "www.backed.io": [1599], "www.matthewsmarking.com": [10083], "findit.library.jhu.edu": [16296], "neomailbox.*": [11154], "ysp.wusm.wustl.edu": [17993], "www.hautelook.com": [7240], "liveperson.hosted.jivesoftware.com": [9494], "www.getclef.com": [6587], "api.stripe.com": [15525], "pda-passport.yandex.com": [18651], "webmailcluster.perfora.net": [19487], "netlib.re": [11195], "butterflynetinc.com": [2464], "www.myaccount.earthlink.net": [5007], "begun.ru": [1755], "store.kagi.com": [8766], "www.stringeditions.leeds.ac.uk": [17318], "cnbc.com": [2632], "www.burstnet.eu": [2445], "webmail.freecycle.org": [6162], "www-acs.ucsd.edu": [16939], "img.okcoin.com": [11628], "triplebyte.com": [16746], "dozuki.com": [4732], "www.wildplanetphotomagazine.com": [18302], "ff.hrw.org": [7612], "r.casalemedia.com": [2870], "www.ouvaton.coop": [12155], "www.numato.com": [11576], "blogs.nvidia.com": [10982], "www.etipos.sk": [5388], "apc.org": [1294], "martineve.com": [10033], "www.ovh.lt": [12173], "comstern.at": [3456], "forums.playfire.com": [12805], "secure.livestream.com": [9514], "secure.hrw.org": [7612], "sourcecoast.com": [15170], "www.slate.fr": [14949], "netherlands.indymedia.org": [8085], "www.prism-break.org": [12287], "www.plugrush.com": [12824], "git.jcrosoft.com": [8421], "360cities.net": [107], "campus.oracle.com": [12082], "f3.thejournal.ie": [16224], "pydio.com": [13269], "tescofinance.com": [16136], "people.inf.ethz.ch": [4975], "*.nagano.cz": [11009], "liberty.me": [9299], "www.flyertalk.com": [5963], "parkingcrew.com": [12405], "www.bussgods.se": [2461], "tagx.nytimes.com": [11000], "*.booklooker.de": [2204], "secure.phabricator.com": [12614], "www.bizchannel.cimbthai.com": [2608], "www.snabb.co": [15018], "f.curbed.cc": [3925], "www.huobi.com": [7624], "www.torrents.to": [16587], "mellanox.com": [10241], "absolventi.vutbr.cz": [17522], "fp.advertising.microsoft.com": [10364], "www.websupport.cz": [18092], "*.accelacomm.com": [440], "m.odnoklassniki.ru": [11726], "gfmtrader.com": [6325], "*.sslcert14.com": [15345], "www.livingsocial.co.uk": [9516], "microsoftstore.com": [10368], "t3.io": [15777], "doc.qt.io": [13315], "corporateblog.progress.com": [13132], "api.kickstarter.com": [8881], "www.litebit.eu": [9455], "*.www.fbo.gov": [5714], "my.swiss.com": [15695], "pilot.ix.equinix.com": [5334], "assets.thecreatorsproject.com": [16263], "dotaznik.vutbr.cz": [17522], "www.unbubble.eu": [19714], "helpdesk.canadianwebhosting.com": [2795], "taleo.com": [15923], "wiki.ut.ee": [17069], "support.websupport.sk": [18160], "boneblast.com": [2196, 2197], "bluemanticketing.com": [2141], "www.tescoshareandearn.com": [16141], "www.securelist.ru": [14504], "www.uhhospitals.org": [17119], "www.gruene.de": [850], "givedirectly.org": [6688], "*.shoplocal.com": [14716], "staticassets.zanesvilletimesrecorder.com": [18785], "www.addictionhelpchat.com": [575], "bib.kuleuven.be": [8816], "*.sweetpepper.org": [12985], "linksunten.indymedia.org": [8085], "meilenrechner.de": [10394], "mathbuntu.org": [10067], "kmymoney.org": [8738], "chemefacsrch.mit.edu": [9749], "scpd.stanford.edu": [15383], "www.lkd.org.tr": [9086], "scorecardresearch.com": [14393], "support.freezone.co.uk": [6187], "qianbao.qukuai.com": [13319], "www.ultratools.com": [17133], "static.justromeo.com": [8425], "weatherzone.com.au": [18037], "support.warframe.com": [17977], "mybrand.tmall.com": [19684], "www.cancer.fi": [15744], "giac.org": [6330], "www.speakeasy.net": [15235], "www.tube4.me": [16813], "*.popphoto.com": [12922], "orbit.shazamid.com": [14690], "register.tmall.com": [19684], "ar.ch": [19648], "www.akzonobel.acs.org": [929], "c.eblastengine.com": [4877], "playingwithtime.sbb.ch": [15693], "qip.ru": [13283], "www.popcash.net": [12905], "in.support.tomtom.com": [16540], "websupport.cz": [18092], "services.wsje.com": [11321], "x-info.org": [18497], "www.okopnik.com": [11775], "www.fime.me": [5575], "*.getpocketbook.com": [12838], "www.sourcefoundry.org": [19611], "auth.gamespot.com": [6426], "hostpoint.ch": [7541], "de.malwarebytes.org": [9929], "rednerd.com": [13699], "www.garyjohnson2012.com": [6464], "support.intand.com": [15941], "www.bnd.bund.de": [2430], "ianthehenry.com": [7896], "api.sofort.com": [15089], "www.markup.io": [10026], "www.dnsleaktest.com": [4068], "myesri.com": [5363], "www.washington.edu": [17291], "www.theinquirer.fr": [11198], "*.nowybip.pl": [11535], "lighthouseapp.com": [9345], "omron.com": [11804], "www.aviris.nkl.fi": [1450], "spendmanagement.barclaycard.co.uk": [1664], "www.atlatszo.hu": [1322], "ovh.sn": [12173], "o3.aolcdn.com": [323], "jci.org": [8646], "itespresso.fr": [11198], "circl.wustl.edu": [17993], "webevent.wustl.edu": [17993], "*.deusm.com": [4405], "checkin.continental.com": [3619], "www.weather.yandex.com": [18651], "www.vocaroo.com": [17810], "classx.stanford.edu": [15383], "manitu.de": [9957], "secur1ty.com": [14476], "webftp.wedos.net": [17901], "downloadarchive.documentfoundation.org": [16221], "www.just-eat.ie": [19328], "www.cryptocoding.net": [19092], "habervision.com": [7124], "zerigo.com": [18835], "www.verisign.co.jp": [17623], "www.webonic.hu": [18136], "www.dolphin.com": [19122], "filecloud.io": [5798], "*.groupersocialclub.com.au": [6972], "slyar.com": [14976], "git.popcorntime.io": [12915], "assessment.vt.edu": [17740], "vlada.gov.sk": [14972], "www.edinburgh.gov.uk": [5084], "*.econsumer.equifax.ca": [5332], "status.mailchimp.com": [9875], "inductionsolutions.com": [8073, 8074], "sites.krieger.jhu.edu": [16296], "stproxy.lsbu.ac.uk": [9098], "secure.istockphoto.com": [19309], "ticketingnetworkeastmidlands.co.uk": [16420], "bahn.de": [1617], "*.pirateparty.ch": [12284], "tmcnet.com": [16515], "itwinterclosure.stanford.edu": [15383], "host1plus.com": [7505], "jud.ct.gov": [2680], "www.vipvpn.com": [17729], "www.fco.gov.uk": [5558], "crashplan.com": [3762], "grouponworks.com": [6979], "www.buildsecurityin.us-cert.gov": [17415], "issuu.com": [8378], "www3.cs.stonybrook.edu": [15480], "ac.ebis.ne.jp": [5040], "www.tito.io": [16408], "support.github.com": [6680], "forum.siedler25.org": [13832], "northpole.fi": [11502], "www.students.unibe.ch": [17238], "rt.com": [13468], "totalbarcode.com": [16599], "holidaybreak.co.uk": [7452], "officeworks.com.au": [11753], "reports.boldchat.com": [2187], "emeapressoffice.oracle.com": [12082], "shellmix.com": [14160], "world-airport-codes.com": [19764], "box.osu.edu": [11760], "osemagazine.osu.edu": [11760], "support.laquadrature.net": [9113], "status.digitalocean.com": [4495], "cf8.100r.org": [9], "garfield.com": [6459], "www.dropdeadpaper.com": [4770], "haber.yandex.com.tr": [18649], "music-cache.xbox.com": [18550], "*.dawanda.com": [4098], "www.rackspace.co.za": [13500], "titanfile.com": [16500], "adblockplus.org": [561], "fresh-hotel.org": [6199], "www.crossdresser-forum.de": [3816], "static3.boligportal.dk": [2191], "siteorigin.com": [14868], "tag.yieldoptimizer.com": [18683], "www.allerderm.com": [14993], "pics.paypal.com": [12467], "*.samsungchaton.com": [3030], "provider.wirral.gov.uk": [18371], "www.battelle.org": [1692], "ordnancesurvey.co.uk": [12097], "mediatakeout.com": [10164], "wikimedia.or.id": [18296], "netnewscheck.com": [11200], "tvnzzshop.ch": [19450], "www.d2jsp.org": [3997], "*.lrb.co.uk": [9582], "i3wm.org": [7660], "squid.academics.de": [437], "forum.videolan.org": [17688], "effectivemeasure.net": [5109], "motherpipe.co.uk": [10610], "img9.warez-bb.org": [17976], "bugzilla.xfce.org": [18512], "ec-media.soundcloud.com": [15161], "spbas.com": [14152], "compteur.fr": [3529], "www.rochester.edu": [13932], "dcpower.eu": [4016], "physics.williams.edu": [18316], "*.creativecow.net": [3779], "design.1105media.com": [15], "www.loctudy.fr": [9546], "r00tshell.lighthouseapp.com": [13389], "www.amoena.fr": [979], "wiki.openmamba.org": [19465], "nuand.com": [11566], "pdflabs.com": [12236], "familie.nordwest.aok.de": [317], "file12.bizrate-images.com": [2033], "moon-ray.com": [10577], "vpnreactor.com": [17503], "ar15.com": [337], "ads.indeed.com": [8051], "mail.whitelisbon.com": [18253], "virtual-server.org": [17747], "www.bitsapphire.com": [2016], "www.b3.manchester.gov.uk": [9944], "www.scanmarker.com": [14336], "academy.kaspersky.ru": [8807], "secure.hostcentric.com": [7509], "octopoos.com": [11715], "pacdn.500px.org": [167], "*.cincinnati.com": [3138], "forum.3sat.de": [135], "history.lds.org": [16219], "kintera.org": [8912], "cdn.v2ex.co": [17462], "*.maas360.com": [9817], "*.zendesk.com": [18824], "store.2k.com": [86], "biicode.com": [1869], "www.monkeybrains.net": [10558], "dnsquery.org": [4063], "mailgun.net": [9885], "tetu.com": [16148], "premiumize.me": [13028], "jobs.sheffield.gov.uk": [14694], "manage.cm": [9938], "about.pinterest.com": [12699], "*.french-country-cottages.co.uk": [18490], "www.arkos.io": [1196], "ediplomacy.afp.com": [723], "education.illinois.edu": [17258], "segments.webtrends.com": [18171], "my.virginmedia.com": [17737], "roundcube.serveriai.lt": [14616], "winterthur.zh.piratenpartei.ch": [12284], "wirelessmedia.ign.com": [7730], "searslabs.com": [14448], "*.guitarcenter.com": [7015], "www.wireedit.com": [18361], "www.ghowen.me": [6633], "cdn.42floors.com": [143], "help.hover.com": [7566], "www.nserver.ru": [11548], "blog.tierra.net": [16435], "www.emaileri.com": [5192], "www.mediacru.sh": [10170], "www.shop.bt.com": [1549], "www.one-tab.com": [11827], "fbapp.telegraph.co.uk": [16082], "www.deutscher-radiopreis.de": [4413], "app-de1.resrc.it": [13599], "*.dt07.net": [9739], "xui.ptlogin2.qq.com": [13285], "wpymedia.nhm.ac.uk": [10908], "www.youtube.com.br": [18709], "*.marketgid.com": [10008], "www.scooter-attack.com": [14390], "submit.ioccc.org": [7775], "pkg.hardenedbsd.org": [7204], "www.inlinkz.com": [8032], "www.itmatrix.eu": [7860], "my.lsu.edu": [9622], "bedford.firmstep.com": [19183], "uolr3.leeds.ac.uk": [17318], "www.antok.co": [1071], "pkware.com": [12265], "ups.xplosion.de": [18585], "www.clergyproject.org": [3235], "www.cafegate.com": [2717], "wholesale.swisscom.com": [15698], "www.blicko.com": [2072], "dashboard.resin.io": [13806], "trustedmessenger.com": [16788], "usfreeads.com": [17043], "manage.serverpilot.io": [14607], "ascendapp.com": [1245], "*.staticsfly.com": [14754], "errors.ubuntu.com": [17102], "www.notalwaysright.com": [19441], "robertsspaceindustries.com": [13922], "merton.greenparty.org.uk": [6925], "mail.azet.sk": [1481], "blogs.mail.ru": [9874], "rochester.edu": [13932], "www.canadiandimension.com": [2798], "bsturm.htwk-leipzig.de": [7114], "eiskent.co.uk": [4919], "klinika.zdravie.sk": [8934], "scontent-a.igcdn.com": [7951], "www.recordedbooks.com": [19543], "www.logmein.com": [9549], "mail-index.netbsd.org": [11184], "tickets.london2012.com": [9573], "www.esetnod32.ru": [4956], "imagefilter.app.compendium.com": [3516], "campina.es": [2782], "www.esr.org": [5009], "online.norfolk.gov.uk": [19436], "bitstampede.com": [1953], "www.easports.com": [4868], "desktop-client.fitbit.com": [5887], "resources.guild-hosting.net": [5277], "barnardos.org.uk": [18981], "cvedetails.com": [3947], "webento.com": [18115], "*.libreplanet.org": [9313], "skinflint.co.uk": [14913], "www.publishing-technology.de": [7114], "smuxi.org": [15016], "*.blogspot.be": [2107], "southern-electric.co.uk": [15194], "www.livecoding.tv": [9506], "its-prod-www2-2.ucsc.edu": [17305], "www.idr-trade.com": [9743], "consult.peterborough.gov.uk": [12594], "console.ubertags.com": [17088], "evotronix.com": [5463], "primecdn.500px.org": [167], "kryo.se": [9017], "wiki.data.gov": [4175], "actionautowreckers.com": [490], "forums.bakabt.me": [1622], "admin.ccbill.com": [2534], "beta.incoin.io": [8046], "www.mysweetiq.com": [10788], "static.iptorrents.com": [7798], "interstices.info": [8296], "ffx.subsignal.org": [15566], "www.webdevstudios.com": [18060], "tumblr.com": [16826], "soton.ac.uk": [17276], "*.anbg.gov.au": [1399], "www.redding.com": [4989], "img09.rl0.ru": [13914], "www.devalate.com": [19114], "rtp.vc": [13475], "valueclick.com": [17541], "eng.yammer.com": [18647], "www.kickass.to": [8879], "www.shiftpayments.com": [14703], "www.hivos.nl": [7430], "jamesthebard.net": [8504], "www.speedof.me": [15257], "www.annonce.cz": [1031], "*.georgetown.edu": [6546], "dellupdater.dell.com": [4335], "translate.googleapis.com": [6847], "www3.sunybroome.edu": [2365], "blogbr.ashleymadison.com": [1254], "shop.t-mobile.nl": [15771], "www.hostingas.lt": [7535], "asiabsdcon.org": [1258], "duckdns.org": [4793], "i.cmpnet.com": [2627], "www.planningportal.gov.uk": [19499], "copia.is": [3651], "ps-img.lasallehs.net": [9161], "sslcert19.com": [15346], "de-de.facebook.de": [5623], "hsbc.co.*": [7098], "runforyourlives.com": [14033], "tomlee.wtf": [16541], "www.hosting90.cz": [7527], "www.linux-magazin.de": [9393], "apricorn.com": [1138], "e.mail.ru": [9874], "novara.ie": [4513], "cloudfront.omgubuntu.co.uk": [11633], "www.youtube.gr": [18709], "tickets.zvv.ch": [19806], "www.disneyprivacycenter.com": [4567], "bt.x-cart.com": [18494], "*.ato.gov.au": [1402], "www.questacon.edu.au": [13353], "aclu-wa.org": [255], "www.keepass.info": [8833], "gfx.aftonbladet-cdn.se": [715], "poodle.io": [12277], "retina.news.mail.ru": [9874], "agra-net.net": [734], "distilleryimage8.instagram.com": [8182], "palemoon.org": [12341], "www.brsmblog.com": [1540], "content.etilize.com": [6623], "techdirt.com": [16026], "proxer.me": [13176], "sebastian.mysql.cesky-hosting.cz": [19051], "v.admaster.com.cn": [530], "esri.ie": [4965], "blogs.rcuk.ac.uk": [13407], "widgets.itunes.apple.com": [1120], "elections.dailykos.com": [4116], "forums.netiq.com": [11194], "en.bitcoin.it": [1961], "rit.edu": [13434], "bst1.gismeteo.ru": [6669], "cdn-dbapp.netdna-ssl.com": [4108], "*.serato.com": [14593], "ssl-fromcs.2cnt.net": [93], "meter.cern.ch": [2575], "oncampus.harvard.edu": [7219], "www.sourcesoftdownload.com": [15183], "*.spylog.com": [15327], "buy.drweb.com": [4783], "*.gamesports.net": [6424], "www.prochoice.org": [11074], "putlocker.com": [13257], "lonesurvivor.co.uk": [9585], "japan.norton.com": [11505], "mxtoolbox.com": [9812], "mailpile.is": [9890], "devchannel.modern.ie": [10519], "cfs.canon.com": [2809], "www.optify.net": [12067], "www.openpgpkey.info": [12040], "www.youtube.co.id": [18709], "img2.linuxdeepin.com": [4302], "tendatta.com": [16110], "longform.org": [9592], "web.tuxfamily.net": [16856], "feistyduck.com": [5744], "ovh.nl": [12173], "consumidor.ftc.gov": [5720], "cdn.dwolla.com": [4816], "taginfo.openstreetmap.org": [11979], "icio.us": [7920], "*.wolfire.com": [18395], "learning.unisys.co.jp": [17202], "varnish-software.com": [17569], "automatak.net": [1426], "www.cityemail.com": [3183], "www.akademikerf\u00f6rs\u00e4kring.se": [758], "forum.ovh.de": [12173], "www.freechelsea.com": [6140], "blog.checkpoint.com": [3048], "specials.mtvnn.com": [17661], "www.dbackpolice.com": [4237], "media.8ch.net": [203], "www.itradecimb.com.my": [2606], "www4.smartadserver.com": [14982], "db.riskwaters.com": [8045], "subeta.net": [15557], "greenserver.ch": [19228], "www.rbt.asia": [13593], "browser.yandex.com": [18651], "4chan.org": [158], "mediacru.sh": [10170], "map.apan.org": [329], "*.t411.me": [15781], "www.linksunten.indymedia.org": [8085], "elsteronline.de": [5188], "www.metoffice.gov.uk": [10295], "api.adsymptotic.com": [18941], "www.mechbunny.com": [10135], "www.immunityinc.com": [8007], "www.classzone.com": [3217], "www.wxwidgets.org": [19779], "*.tipseri.net": [7732], "www.codethink.co.uk": [3381], "fpdownload.macromedia.com": [9833], "www.mvg-mobil.de": [9806], "my.boldchat.com": [2187], "*.secure.co1.msn.com": [9796], "cdn3.thr.com": [15813], "virtualspirits.com": [17754], "provenance.org": [13172], "isc.org": [7821], "www.eroshare.com": [5350], "cloudtools.access.iu.edu": [8064], "*.shopstyle.com": [14720], "www.zom.im": [18889], "shp.qpic.cn": [13309], "www.fbm.htwk-leipzig.de": [7114], "www.xt-commerce.co.uk": [18594], "trustifier.com": [16795], "dntx.com": [4071], "*.gnome-help.org": [19462], "netbank.danskebank.dk": [4145], "cusp.com": [15851], "briteobjects.com": [2338], "mitpressjournals.org": [9750], "incommon.org": [8031], "halo.xbox.com": [18550], "standagainstspying.com": [15376], "support.norton.com": [11505], "proxy.xelerance.com": [18554], "www.jsao.io": [8461], "www.citrix.com": [3178], "www.syndetics.com": [15733], "ssl.intevation.de": [8297], "www.disabledgo.com": [4539], "mvd.jd.com": [8423], "libbsd.freedesktop.org": [6126], "www.reuters.tv": [13836], "lists.drupal.org": [4780], "support.stripe.com": [15525], "vinothek.hofer.at": [299], "juliareda.eu": [8671], "app.etapestry.com": [5370], "thoughtbot.com": [16387], "pic.alipayobjects.com": [817], "ppd.sydney.edu.au": [19649], "www.clickdelivery.gr": [3258], "*.libguides.com": [9289], "qstack.com": [13290], "support.pay4bugs.com": [12466], "*.upc.es": [12895], "mp.weixin.qq.com": [13285], "r.dcs.redcdn.pl": [13685], "sussan.com.au": [15664], "www.kampyle.com": [8778], "*.blog.gov.uk": [6366], "www.zcarot.com": [18755], "www.blip.tv": [2079], "cun.jd.com": [8423], "talkhealthpartnership.com": [15931], "boersenlexikon.faz.net": [5554], "www.dealerrater.com": [4258], "irclogs.canonical.com": [2810], "arch.umd.edu": [17263], "rhul.ac.uk": [13423], "hs.ias.edu": [7669], "changemakers.com": [2996], "twoseventy.net": [16900], "cdn.vedomosti.ru": [19730], "ikeepincloud.com": [7750], "www.buzzeff.com": [2479], "sync.audtd.com": [1363], "www.vulnscan.org": [17872], "www.oauth.net": [11607], "secure1.tagonline.com": [15783], "www.mysql.de": [10780], "basespace.illumina.com": [7968], "www.btcmarkets.net": [1567], "crew.co": [3794], "www.jamstec.go.jp": [8413], "www.uvm.edu": [17075], "*.zenfs.com": [18638], "bath.ac.uk": [17300], "www.kubieziel.de": [9028], "policies.ncsu.edu": [11492], "images.mcafee.com": [10114], "blog.balboa.io": [1626], "epfl.ch": [4942], "speedyshare.com": [15259], "peelregion.ca": [12510], "internet.org": [8278], "dashboard.pantheon.io": [12372], "guug.de": [6398], "ebill2.virginmedia.com": [17737], "programmableweb.com": [13130], "www.assetinsightinc.com": [1282], "www.gmocloud.com": [6343], "huk.de": [7117], "hboeck.de": [7049], "www.sslmate.com": [14178], "resolv.org": [13415], "sc.edu": [14085], "games.web.de": [18050], "www.izquierda-unida.es": [8406], "zxidp.org": [18770], "blog.neustar.biz": [11280], "*.tek.no": [16063], "complianceoffice.wustl.edu": [17993], "www.us.playstation.com": [12795], "1xbet.com": [69], "account.iweb.com": [7875], "booster.qnetp.net": [13305], "narro.mozest.com": [10649], "*.piwik.prisma-it.com": [13075], "nzherald.co.nz": [11004], "www.mauras.ch": [10085], "stripefees.com": [15527], "enis.dict.cc": [4455], "allcoin.com": [828], "stats.fs.usc.edu": [17278], "wildstar-online.com": [18303], "www.ideoclick.com": [7942], "www.sns.ias.edu": [7669], "support.ideel.com": [7931], "www.connect.sensiolabs.com": [14586], "*.newsandevents.buffalostate.edu": [2401], "uidaho.edu": [17257], "in.redhat.com": [13675], "nccs.nasa.gov": [10869], "www.vas-hosting.cz": [19729], "tittygram.ru": [16505], "researchfestival.nih.gov": [11052], "www.lulzbot.com": [9660], "www.pythonhosted.org": [13274], "*.umwblogs.org": [17261], "www.mojeid.cz": [10536], "acunetix.com": [507], "t.mookie1.com": [10576], "www.mail.be": [9871], "piwik.icts.kuleuven.be": [8816], "rimg04.rl0.ru": [13914], "clients.comcate.com": [3462], "www.rackspace.dk": [13503], "www.eforensicsmag.com": [4912], "cs.illinois.edu": [17258], "static.issuu.com": [8378], "*.r.worldssl.net": [2556], "www.desec.io": [19107], "*.store.micgadget.com": [9742], "www.bitx.co": [1951], "*.cryptocloud.org": [3871], "bugs.xmms2.org": [18522], "*.vaforvets.va.gov": [17019], "macports.org": [9821], "ssl.cdn-redfin.com": [2554], "www.esportsea.com": [4846], "cdn.zamimg.com": [18782], "www.beautifuldecay.com": [1740], "8ch.net": [203], "support.recurly.com": [13652], "www.protectwise.com": [13166], "www.balkanleaks.eu": [1628], "www.secunet.com": [14474], "meetbsd.com": [10209], "1.baidu.com": [1619], "www.peterkieser.com": [19489], "help.axosoft.com": [1477], "www.dropboxforum.com": [4769], "android.com": [1006], "gnuheter.org": [6764], "avatars1.githubusercontent.com": [6680], "soubrette.decadent.org.uk": [4280], "*.joker.com": [8619], "www.accessnow.org": [447], "ubank.com.au": [16930], "rabotilnica.com.mk": [13490], "acs-stage.eventpoint.com": [5444], "e3.boxcdn.net": [2253], "*.centrum.sk": [2959], "pyweek.org": [13267], "downloads.egenix.com": [19134], "hurleymc.com": [7628], "mobile.uw.edu": [17077], "blog.gov.uk": [6366], "openrce.org": [11967], "chatdepot.twitch.tv": [16888], "finance.aliyun.com": [821], "www.hass.de": [7232], "business.bookitsecure.com": [19011], "daringfireball.net": [4147], "rt.fsl.cs.sunysb.edu": [15480], "www.superkuh.com": [15632], "rottenecards.com": [13982], "cybersitter.com": [2695], "downloads.dell.com": [4335], "admin.springer.com": [15309], "jobs.newcastle.gov.uk": [11315], "store.steampowered.com": [15450], "seafile-server.de": [14435], "swapoff.org": [15677], "growth.bufferapp.com": [2402], "napoleonmakeupacademy.com.au": [11036], "ebayclassifieds.com": [4874], "i2.walmartimages.com": [17965], "www.pro-xy.com": [8820], "*.uksrv.co.uk": [17127], "signon.shaw.ca": [14687], "adme.ru": [606], "*.washingtontimes.com": [17991], "qune.kuluttajavirasto.fi": [13374], "siteprotect.neustar.biz": [11280], "www.manabalss.lv": [9937], "rightscon.org": [13887], "ldpreload.com": [9188], "agresso2.plymouth.ac.uk": [12833], "foodallergy.org": [6003], "www.x-cart.com": [18494], "mysql10.vas-hosting.cz": [19729], "worstpills.org": [18466], "www.upaymobile.co.uk": [17384], "apps.ipswich.gov.uk": [8351], "www.yousendit.com": [18708], "hsr.ch": [17237], "astrobiology.nasa.gov": [10869], "*.gettyimages.com.au": [6621], "community.monash.edu": [10541], "security.trustsign.com.br": [16783], "idp.kantarainitiative.org": [8787], "*.chatango.com": [3032], "www.hitta.se": [19252], "*.myaloecleanse.com": [10800], "exposingtheinvisible.org": [5514], "static.woopra.com": [18423], "utdallas.edu": [17287], "devconf.cz": [4416], "wiki.voidlinux.eu": [19741], "www.maninthemirror.org": [9936], "mikrocontroller.net": [10389], "*.forbes.com": [6016], "www.extensiondefender.com": [5521], "www.spi.ens.fr": [4930], "mnaonline.org": [10345], "conference2009.kde.org": [8718], "libreswan.org": [9316], "www.tmall.com": [19684], "www.collateralmurder.com": [3420], "www.normalesup.org": [11485], "courses.edx.org": [5070], "urbanterror.info": [17408], "bls.ch": [1526], "triplemint.com": [16745], "softwarefreedom.org": [15098], "peijian.jd.com": [8423], "contact2.yandex.com.tr": [18649], "esi-group.com": [4959], "onforb.es": [11859], "lists.tox.chat": [16616], "travel.nytimes.com": [11000], "erlang.org": [5345], "www.swissinfo.ch": [19621], "login.caller.com": [2753], "www.blackphone.ch": [2048], "ucsd.edu": [16939], "support.aolonnetwork.com": [324], "*.willowgarage.com": [18318], "youtube.dk": [18709], "mymoustache.net": [10770], "*.davis.com": [4233], "www.brandisty.com": [2285], "openmandriva.org": [11956], "publishers.viglink.com": [17710], "zaehlwerk.net": [18778], "alt.ac.uk": [1295], "*.openxenterprise.com": [11997], "airbnb.co.*": [749], "*.generationawake.eu": [4387], "blog.rstudio.org": [18428], "static.a.gs-cdn.net": [6965], "webkit.org": [18125], "www.worldsecuresystems.com": [613], "usa.canon.com": [2809], "*.sinica.edu.tw": [14850], "optimise.com.br": [12069], "www.ssn.uillinois.edu": [16960], "app.weekplan.net": [18181], "www.privacy.org.au": [13085], "mednews.stanford.edu": [15382], "consult.scotland.gov.uk": [19575], "appsupport.commonapp.org": [3483], "planningpublicaccess.havant.gov.uk": [19237], "hypanova.com": [7642], "*.hbanet.org": [7046], "images.grab-media.com": [6880], "unternehmen.aldi-sued.de": [299], "backpack.openbadges.org": [12001], "soroush.secproject.com": [14466], "epay.cardiff.gov.uk": [19039], "en-el.dict.cc": [4455], "passmark.com": [12422, 12423], "img.chefkoch-cdn.de": [3058], "contentreserve.com": [19077], "dashboard.web.cern.ch": [2575], "www.girlsoutwestfreestuff.com": [6668], "blog.jcea.es": [8540], "datapath.io": [4209], "webfusion.co.uk": [18117], "*.zerista.com": [18837], "*.cyberghostvpn.com": [3959], "www.ixit.cz": [7883], "*.europeanssl.eu": [5428], "images.superherostuff.com": [15631], "ie.godaddy.com": [6773], "nwk-as-images.apple.com": [1120], "www.browser.yandex.com.ua": [18650], "mail.yandex.ua": [18656], "dirxion.com": [4537], "*.bgpmon.net": [1514], "*.cvut.cz": [3992], "synapsepay.com": [19650], "*.balpa.org": [2339], "digitalcommons.law.scu.edu": [14289], "www.astaro.com": [1298], "remote.tripadvisor.com": [16741], "www.greenhost.nl": [6930], "mypayquake.com": [12470], "fashionfix.net-a-porter.com": [11171], "infosecurity-magazine.com": [13704], "cursos.ecommercebrasil.com.br": [4885], "*.cirrusmedia.com.au": [3158], "pulse-forum.ind.ie": [8048], "*.sony.com": [15144], "naturalmessage.com": [11101], "www.paste2.org": [12438], "ftccomplaintassistant.gov": [5607], "*.fsb.org.uk": [5724], "www.uicbookstore.org": [16954], "datacenter.illinois.edu": [17258], "ouifm.fr": [12138], "wifigw.cis.vutbr.cz": [17522], "i2.connect.microsoft.com": [10364], "*.greatnonprofits.org": [6910], "postoffice.insure-systems.co.uk": [12954], "master.yandex.com.tr": [18649], "loveletters.boston.com": [2232], "scanmail.trustwave.com": [16799], "blog.nexcess.net": [11356], "www.jquery.org": [8450], "www.protectedtext.com": [13168], "bitfetch.com": [1994], "clientupdater.raptr.com": [13562], "data.sparkfun.com": [15222], "www.jaast.net": [12351], "pma.web4all.fr": [18052], "getambassador.com": [6584], "www.planet.com": [12760], "cr.yp.to": [3748], "www.donationcoder.com": [4677], "rise.osu.edu": [11760], "connectiveportal.axosoft.com": [1477], "www.iar.com": [7668], "ur.wustl.edu": [17993], "discovery.nationalarchives.gov.uk": [11065], "pages.chef.io": [3057], "parentview.ofsted.gov.uk": [19456], "decorrespondent.nl": [4245], "easycottages.com": [18490], "*.oneexchange.com": [11832], "static2.wonderwall.com": [18413], "*.hp-ww.com": [7378], "pritunl.com": [13078], "translate.google.com": [6847], "cdn2.hubspot.net": [7593], "drserver.net": [4736], "*.uspto.gov": [17065], "bugfiles.operasoft.com": [12050], "www.indyreader.org": [8080], "www.1stwarning.com": [64], "downloads1.mamp.info": [19379], "www.webmproject.org": [18073], "peterborough.objective.co.uk": [19454], "www.phpartners.org": [12253], "washingtonpost.com": [17990], "ivdopia.com": [17582], "cdn.rt.com": [13468], "shop.telus.com": [16103], "*.fairwork.gov.au": [5633], "console.gigya.com": [6659], "www.trmm.net": [16755], "domaindiscount24.com": [19123], "login.postini.com": [12979], "podcast.cpanel.net": [2653], "myoptimizerplus.com": [10813], "www.askleo.com": [1263], "www.freedomnotfear.org": [6172], "brighttag.com": [2324], "mcdee.com.au": [10124], "www.tomlee.wtf": [16541], "*.artemis.net": [1229], "broking.postbank.de": [12959], "*.highbeam.com": [2937], "www.tatepublishing.com": [15975], "gila.deathmask.net": [4266], "dev.stackauth.com": [15359], "silverflint.com": [14801], "devblog.more-onion.com": [10585], "logotype.se": [9563], "a.catgirlsare.sexy": [2903], "m.vineyardvines.com": [17723], "personenverkehr.oebb.at": [19455], "plays.tv": [12809], "www.schuelervz.net": [14367], "www.usessh001.com": [17424], "www.polybrowser.com": [12889], "www.fastspringblog.com": [5676], "www.toynews-online.biz": [8226], "mutuals.cabinetoffice.gov.uk": [2701], "ukfsn.org": [16966], "clientservices.automatedqa.com": [14986], "ampatico.com": [980], "jobs.osu.edu": [11760], "norden.org": [11472], "cptr.cancer.gov": [2805], "pollenwarndienst.at": [12884], "ts.faz.net": [5554], "ba.yandex.com": [18651], "intra.kth.se": [8752], "p9.qhimg.com": [13302], "www.foodallergy.org": [6003], "openpetition.de": [11966], "mymerchantguard.com": [8689], "*.cchtml.com": [2914], "cdn.insights.gravity.com": [6900], "sony.com": [15144], "poppysports.com": [12917], "www.royaldns.net": [19558], "info.sourcefire.com": [15181], "xagyl.us": [18501], "tourbox.songkick.com": [19609], "s.thestar.com": [16575], "thecisogroup.com": [16182], "www.dandb.com": [4137], "syndication.exoclick.com": [5499], "new.research.illinois.edu": [17258], "yui-s.yahooapis.com": [18639], "gsn.com": [6416], "*.payza.com": [12491], "*.alta.com": [873], "www.ctan.org": [2681], "www.bet365affiliates.com": [18992], "next.ft.com": [5826], "billing.nodeserv.com": [11450], "auth.williamhill.com": [18315], "7digital.com": [193], "redeem.nvidia.com": [10985], "igvita.com": [7972], "xnet-x.net": [18580], "history.com": [7417], "chemspider.com": [13997], "www.canon.pt": [2809], "mail2008.sina.com.cn": [14842], "trusteer.com": [16793], "vates.fr": [17574], "xtube.com": [18602], "images.waterfrontmedia.com": [5453], "alertlogic.com": [790], "geoclub.de": [6543], "elfa.se": [5161], "mapzen.com": [9978], "www.tdconline.se": [15799], "www.vbulletin.com": [17471], "app-us3.resrc.it": [13599], "encosia.com": [5233], "codeaurora.org": [3347], "kammeratadam.dk": [8777], "morrisons-corporate.com": [10600], "hostingxtreme.com": [7532], "wtr.nhtsa.gov": [17027], "www.netzfreiheit.org": [11275], "cdn2.shoptiques.net": [14731], "googleprojectzero.blogspot.*": [2113], "omnetpp.org": [11636], "standishmanagement.com": [15381], "www.silktide.com": [14796], "pushplay.com": [13249], "partner.just-eat.es": [19328], "binarybiz.com": [1889], "ro.libreoffice.org": [9311], "media.kickstatic.com": [8876], "leo.org": [9256], "billing.globaltap.com": [6740], "api-latam.groupon.com": [6974], "humfrage.imn.htwk-leipzig.de": [7114], "gaaturustigslapen.nl": [6401], "email-comparethemarket.com": [19155], "rfcexpress.com": [13419], "ambest.com": [305], "www.praktikpladsen.dk": [19515], "members.aas.org": [235], "www.scorerestore.com": [14392], "portal.settrade.com": [14634], "bam.nr-data.net": [10954], "core.cloudfoundry.com": [3300], "lambda-linux.io": [9135], "versions.nodejitsu.com": [11453], "order.gmocloud.com": [6343], "www.stupid.com": [15547], "yui.yahooapis.com": [18639], "*.data.fm": [4174], "genges.com": [6521], "tehtri-security.com": [15807], "intelfreepress.com": [8211], "seznam.cz": [14648], "mysciencework.com": [10781], "pinpai.smzdm.com": [15017], "wms-na.amazon-adsystem.com": [909], "corporate.leboncoin.fr": [19351], "faithinmotion.com.au": [5637], "schnellverkaufen.ricardo.ch": [13866], "*.dmca.com": [4045], "jobs.onesignal.com": [11843], "*.discshop.se": [4557], "chi-10g-1-mirror.fastsoft.net": [5675], "www.dojotoolkit.org": [4637], "blogbeta.namecheap.com": [11019], "overclock.net": [12162], "support.wordfence.com": [18433], "www.resinfo.org": [13807], "fellowship.berkeley.edu": [17240], "www.myuni-form.com": [19421], "verio.com": [17622], "edocket.anpost.ie": [986], "start.fedoraproject.org": [5726], "squirrelmail.org": [15336], "account.mouseflow.com": [10624], "usecryptos.com": [17421], "adultdp.portsmouth.gov.uk": [19508], "status.nodejitsu.com": [11453], "www.topbuy.com.au": [16559], "staging-api.challenge.gov": [2985], "imation.com": [7986], "tescocompare.com": [16137], "ssl.xui.ptlogin2.qq.com": [13285], "thenewsfunnel.com": [11336], "*.maricopa.edu": [9990], "foresters.*": [6030], "dvdfab.net": [4088], "www.imiclk.com": [8003], "www.torrentfunk.com": [16581], "hitta.se": [19252], "fr.gamigo.com": [6445], "*.helpocean.com": [7304], "www.naacpimageawards.net": [10863], "www.prometeus.net": [13148], "cdn.feedbackify.com": [5736], "licensing.biz": [8226], "ads.nicovideo.jp": [11389], "*.bigo.net": [1520], "www.ag.ch": [19648], "proisp.no": [12288], "getinvolved.wustl.edu": [17993], "start.unblu.com": [17152], "postovabanka.sk": [12982], "www.liveclicker.com": [9504], "onlinedoctor.superdrug.com": [15627], "open-mesh.com": [11908], "wescom.wirral.gov.uk": [18371], "bleachbit.org": [19007], "bluejeans.com": [2139], "partner.m3connect.de": [19375], "www.screenshotmachine.com": [14411], "revresponse.com": [13839], "piclist.friendfinder.com": [6213], "oxfordlearnersdictionaries.com": [12191], "my.reflected.net": [13718], "lirportal.ripe.net": [13895], "donate.libreoffice.org": [9311], "secureimg.stitcher.com": [15476], "isolde-project-rilis.web.cern.ch": [2575], "www.anon-ib.co": [1034], "arabic.norton.com": [11505], "www.icbit.se": [7683], "ds.eduid.cz": [5097], "cdn.v2ex.com": [17463], "minbzk.nl": [11132], "www.its.th-mittelhessen.de": [15809], "radsec.org": [13508], "www.sourced.fm": [15178], "qrobe.it": [13310], "ws.amazon.co.uk": [910], "voodoo.com": [17840], "securemail.powys.gov.uk": [19513], "www.nytimes.com": [11000], "wellsfargo.com": [18196], "*.prolexic.com": [13146], "adweek.com": [672], "www.fml.osu.edu": [11760], "transactionsexplorer.cabinetoffice.gov.uk": [2701], "www.einsteinathome.org": [5128], "wildplanetphotomagazine.com": [18302], "*.vungle.com": [17876], "static.zdbb.net": [18759], "www.kakao.com": [8705], "www.nigms.nih.gov": [11052], "tracks.unhcr.org": [16989], "alternate.be": [880], "infogr.am": [8109], "www.greyhound.com": [6947], "gogotraining.com": [6806], "flixbus.nl": [5931], "poddery.com": [12844], "images2.bovpg.net": [2252], "www.oss.nl": [11132], "mobile.alipay.com": [817], "www.sphair.admin.ch": [19648], "www.leedsbuildingsociety.co.uk": [9223], "docusign.com": [4629], "skydsl.eu": [14934], "online.t-mobilebankowe.pl": [19654], "*.staticflickr.com": [15429], "code.breakfastquay.com": [2298], "www.transifex.com": [16669], "payson.se": [12488], "warframe.partner.uol.com.br": [16998], "benchmarks.cisecurity.org": [2617], "www.engagesciences.com": [5259], "gannettridge.com": [6455], "www.skypeassets.com": [14939], "www.chinalaborwatch.org": [3083], "gzip.static.woot.com": [18424], "*.cox.com": [3739], "www.londonsockcompany.com": [9583], "*.webmdhealthservices.com": [18072], "*.crucial.com": [3831], "foreseeresults.com": [6022], "www.shop.cryptalloy.de": [3845], "aezoo.compute.dtu.dk": [16031], "jskom.lysator.liu.se": [9084], "slitaz.org": [14954], "www.billing.flokinet.com": [5938], "www.nattstad.se": [11099], "www.yieldselect.com": [18679], "www.myplatinumpak.com": [12787], "secure.post.harvard.edu": [7219], "itrust.org.cn": [8393], "cultura.no": [3915], "ciclops.org": [2602], "partners.yandex.kz": [18652], "maddcalifornia.org": [9705], "feedback.rackspace.com": [13506], "viglink.com": [17710], "www.cdn.jsdelivr.net": [8655], "secure.smugmug.com": [15014], "*.hostname.sk": [7538], "ntr.ndc.nasa.gov": [10869], "outreach.ors.nih.gov": [11052], "ssb.no": [14172], "www.celiac.org": [2931], "alaska.edu": [17235], "www.ndr.de": [11119], "www.sonderdesign.com": [15133], "staging-assets-news.vice.com": [17667], "www.theeroticreview.com": [16222], "polygrant.com": [12890], "*.cottages4you.co.uk": [18490], "lib.washington.edu": [17291], "www.elttam.com.au": [19154], "board.perfect-privacy.com": [12558], "spp.seagate.com": [14437], "www.baomoi.com": [1660], "scribblelive.com": [14413], "alumnimagazine.rmit.edu.au": [13437], "linux.cn": [9402], "szkb.ch": [19333], "discuss.codecademy.com": [3361], "www.thinkwithgoogle.com": [16364], "vpn.unizar.es": [17356], "www.growery.org": [6983], "okturtles.org": [11774], "isdewinkelopen.nl": [19277], "*.morrisons.com": [10601], "academia.edu": [436], "admission.tameside.gov.uk": [19660], "www.above.com": [429], "www.tns-counter.ru": [16519], "nursing.osu.edu": [11760], "resources.joomla.org": [8627], "*.odmp.org": [11751], "jrbp.stanford.edu": [15383], "www.wealth.anz.com": [315], "compliancesigns.com": [3525], "qdomain-saenew.stor.sinaapp.com": [14838], "www.ewebscapes.com": [4991], "www.meltin.net": [10242], "i05.c.aliimg.com": [813], "www.itradecimb.co.id": [2605], "elms.warrington.gov.uk": [17984], "adserverwc.adtechus.com": [639], "www.nextiva.com": [11369], "www.digitaldollhouse.com": [4492], "cesium.di.uminho.pt": [17267], "tron-delta.org": [15855], "www.ukonlinecentres.com": [16977], "enphaseenergy.com": [5284], "mantodea.mantisadnetwork.com": [9962], "netlogin.kuleuven.be": [8816], "thejournal.ie": [16224], "forum.openhatch.org": [11941], "bayden.com": [1705], "apps.community-uat.freescale.com": [6183], "video.yandex.by": [18648], "www.frys.com": [6236], "m.kinja-static.com": [8905], "europeana.eu": [19167], "*.easydns.net": [5024], "patches.linaro.org": [9361], "maintenance.fastly.com": [5687], "suite.websecurify.com": [18146], "unid.utah.edu": [17288], "de-cs.dict.cc": [4455], "becker-wustl.libapps.com": [9287], "wicworks.fns.usda.gov": [17209], "*.shodan.io": [14712], "dgex.com": [4033], "*.adbooth.net": [562], "baltimoresun.com": [16730], "three.libsyn.com": [9321], "threatexchange.fb.com": [5698], "www.sealswithclubs.eu": [14439], "baby.jd.com": [8423], "tweakers.net": [16866], "prefs.connect.comcast.net": [3460], "ooyala.jp": [11899], "a0.websitealive.com": [18149], "press.livefyre.com": [9507], "static.hackaday.io": [7138], "www.jupiterartland.org": [8685], "123systems.net": [27], "quiz.isis.poly.edu": [12888], "mirrorservice.org": [10448], "*.avaya.com": [1446], "payments.basildon.gov.uk": [18984], "api.sh": [1091], "vp-studentaffairs.stanford.edu": [15383], "www.macosforge.org": [9820], "*.iheart.com": [7739], "thalasseo.com": [16168], "npjhub.org": [8317], "www3.truecorp.co.th": [19700], "cic.fr": [1653], "barrierbusting.communities.gov.uk": [19073], "help.tenmarks.com": [16107], "thethemefoundry.com": [16318], "www.peterborough.gov.uk": [12594], "www.ultimedecathlon.com": [19712], "*.sundancechannel.com": [15597], "*.bidz.com": [1849], "cryptonetwork.com": [3860], "tapad.app10.hubspot.com": [15954], "forums.absolute.com": [430], "maven.stanford.edu": [15383], "hr-dept.web.cern.ch": [2575], "www.peertransfer.com": [12518], "*.www.vispashop.com": [17780], "www.liberalamerica.org": [9296], "gkb.ch": [19333], "comsuper.gov.au": [3458], "www.alamy.com": [775], "www.freemarketlite.cc": [6128], "portland2013.drupal.org": [4780], "evolmed.com": [5464], "blog.gustavus.edu": [7026], "wiki.eth0.nl": [5376], "cfif.org": [2949], "virtualearth.net": [17755], "ruxconbreakpoint.com": [14050], "wecar.osu.edu": [11760], "*.authorize.net": [1410], "kicktraq.com": [8882], "lists.mayfirst.org": [10100], "www.cse.ucsd.edu": [16939], "greenbillion.org": [6922], "bikt.de": [1521], "wilderssecurity.com": [18307], "www.sberbank.ru": [14322], "gnu.org": [6357], "business.yell.com": [19790], "www.dps.illinois.edu": [17258], "www.twisted4life.com": [16884], "www.joshbegley.com": [8634], "analyticssl.clickpathmedia.com": [3250], "www.wyndhamjobs.com": [18489], "s0.playscdn.tv": [12809], "qnetp.net": [13305], "www.kochava.com": [8950], "city.yandex.kz": [18652], "www.chessbase-shop.com": [3068], "kriso.*": [9013], "flonline.eu": [5578], "surveymonkey.com": [15659], "scriptsource.org": [14420], "ctep-ebp.com": [2682], "results.ielts.org": [7719], "css.riastatic.com": [13428], "bse.havering.gov.uk": [7244], "www.sympa.org": [15720], "answers.unrealengine.com": [17365], "static.marketwatch.com": [10021], "tescophoto.com": [16140], "assetcdn.500px.org": [167], "media.regjeringen.no": [13739], "www.getfinal.com": [6590], "www.iosafe.com": [8337], "bbs.deepin.org": [4302], "buzzworthy.buzzbytes.net": [2476], "static.insided.nl": [8034], "m.behr.com": [1758], "capdesign.idg.se": [7705], "www.apomedifot.de": [1097], "www.tchibo.sk": [15985], "www.lbo-news.com": [18428], "*.indiemerch.com": [8068], "kuleuven.ezproxy.kuleuven.be": [8816], "www.zaltbommel.nl": [11132], "ngvpn01.nvidia.com": [10985], "*.thomsonreuters.com": [16382], "threatpost.ru": [16396], "www.telethon.it": [16095], "www.freepress.net": [6147], "enfr.dict.cc": [4455], "jobzonen.dk": [8604], "www.xlhost.com": [18518], "www.aaronlindsay.com": [395], "www.planetnetbeans.com": [12081], "www.planet-source-code.com": [12757], "cdn.techdirt.com": [16026], "www.dfri.se": [4437], "anquanbao.com": [1054], "instart3.flixster.com": [5933], "certigna.fr": [2971], "www.softaculous.com": [15096], "image.artizone.com": [1234], "moodle.thm.de": [15811], "pbx.uno.im": [17361], "spreadshirt.com.au": [15300], "login.bazaarvoice.com": [1708], "www.changingclimate.osu.edu": [11760], "trac.mplayerhq.hu": [9784], "www.kinox.io": [19337], "workspace.nottingham.ac.uk": [11528], "ausgehen.tageswoche.ch": [15907], "cwp.stanford.edu": [15383], "themuse.com": [16344], "www.oldpiratebay.org": [11780], "insidecelebs.com": [8168], "www.richmondshire.gov.uk": [13876], "www.greenleft.org.au": [6924], "www.hepe.com": [7319], "www.hertz.com.pt": [7359], "creditdisputeprogram.com": [3789], "cdon.se": [2562], "deaconess.com": [4248], "mhsa.aihw.gov.au": [10262], "billing.eoreality.net": [4936], "*.rfparts.com": [13420], "support.proxpn.com": [19519], "suicidegirls.com": [15584], "groupersocialclub.com": [6972], "www.image-maps.com": [7976], "teespring.com": [16060], "dulwich.io": [4800], "www.blogs.zoho.com": [18884], "missions.opencorporates.com": [11931], "www.hertz.com.pl": [7358], "ntldstats.com": [10962], "mongodb.com": [10553], "appnexus.adperium.com": [624], "*.simplytechnology.net": [14835], "google.co.*": [6838, 6840, 6845, 6848], "hollywoodoutlaws.com": [7456, 7457], "goodreads.com": [6829], "www.dshop.se": [4786], "secure.i.telegraph.co.uk": [16082], "kaernten.neos.eu": [10899], "survivetheclaireperryinter.net": [15661], "superdrug.com": [15627], "dkc3.digikey.com": [4469], "personnels.u-bordeaux.fr": [16918], "www.vzp.cz": [17524], "play.podtrac.com": [19502], "securehnw.northwarks.gov.uk": [11498], "www.senate.gov.ph": [14575], "ident.familysearch.org": [5646], "dev.equityzen.com": [5337], "www.foodprotectiontaskforce.com": [6001], "*.yourfone.de": [18735], "www.lib.polyu.edu.hk": [12891], "selger.canaldigital.no": [2803], "www2.postdanmark.dk": [12962], "blog.aldi.us": [299], "www.zen.co.uk": [18815], "eloconcursos.com.br": [5175], "www.telecom.sk": [16088], "blog.loomio.org": [18428], "support.zoneedit.com": [18893], "securesso.ieee.org": [7715], "www.miapple.me": [10333], "gesetzessammlungen.ag.ch": [19648], "www.alumniandfriends.usyd.edu.au": [19723], "biciperros.org": [1843], "www.bisente.com": [1914], "gazeta.yandex.com.tr": [18649], "connect.hbo.com": [7047], "www.snipt.net": [15038], "www.m86security.com": [9701], "www02.fonts.com": [5993], "www.proxy.uchicago.edu": [17246], "www.cheapassfiction.com": [3044], "s3.fightforthefuture.org": [5784], "litehosting.org": [9456], "www.slysoft.com": [14975], "a4.ec-images.myspacecdn.com": [10848], "c.kinja-static.com": [8905], "new.edit.ftc.gov": [5720], "www.osgeo.org": [11669], "www.beget.ru": [1752], "managed.entrust.net": [5304], "affili.net": [700], "widget.shopstyle.co.uk": [14719], "aliceinfo.cern.ch": [2574], "www.hackerspaces.nl": [7150], "globat.com": [6742], "annuaire.inria.fr": [8159], "*.uni-saarland.de": [17172], "aera.at": [683], "osrfoundation.org": [11674], "ewents.ya.ru": [18626], "stand.org": [15375], "sell.taobao.com": [15952], "youtube.com.tw": [18709], "gemeentebest.nl": [11132], "www.tinypass.com": [16489], "gowalker.org": [6798], "www.hopkins-interactive.com": [7494], "stash.sourcefabric.org": [15180], "blog.advance.net": [649], "eveger.de": [5433], "globalwitness.org": [6717], "www.verio.com": [17622], "uow.edu.au": [17350], "flockport.com": [5936], "www.timetrade.com": [16455], "secure-niketown.nike.com": [11401], "mdadmissions.wustl.edu": [17993], "pilot-coupons.paypal.com": [12467], "www.notalone.gov": [11515], "www2.swisscom.ch": [15698], "www.cubify.com": [3911], "www.eset.com": [5358], "1.darkroom.shortlist.com": [14734], "vorstand.piratenpartei.de": [12721], "capstechops.usc.edu": [17278], "ie.norton.com": [11505], "trafikozeti.yandex.com.tr": [18649], "ask.barnet.gov.uk": [18982], "www.meteoprog.kz": [10312], "www.sipgate.de": [14857], "www.clarendon.ox.ac.uk": [17271], "dnt.abine.com": [419], "*.tunespeak.com": [16830], "www.seznam.cz": [14648], "img02.final4ever.com": [5819], "ticketea.com": [16419], "b.yandex.by": [18648], "www.bud.tid.gov.hk": [7077], "www.porter.io": [12935], "stat.yandex.by": [18648], "sharerepo.com": [14666], "snapnames.com": [8865], "www.library.ethz.ch": [4975], "freezone.co.uk": [6187], "account.courierpostonline.com": [3715], "wageworks.com": [17946], "thenextweb.com": [16204], "rigov.firmstep.com": [19183], "static.thejournal.ie": [16224], "mmtx.nlm.nih.gov": [11052], "www.jubii.dk": [8659], "sedo.fr": [14544], "dev.wix.com": [18383], "www.wikimedia.org.il": [18296], "glittering.blue": [19221], "www.rbb-online.de": [13591], "et10.xhcdn.com": [18514], "volotea.com": [17831], "staging.bia2.com": [1838], "build.chromium.org": [3119], "static.ustream.tv": [17451], "*.vook.com": [17842], "my.resrc.it": [13599], "redir2.info.giffgaff.com": [19217], "evilsocket.net": [19169], "k.ilius.net": [10216], "www.halowaypoint.com": [7176], "*.mindhealthconnect.org.au": [10412], "m.animenewsnetwork.com": [18957], "webmail.uic.edu": [17231], "www.gogoyoko.com": [6809], "smartronix.massrel.io": [10051], "websecurify.com": [18146], "www.beaconreader.com": [1727], "schema.org": [19568], "clicky.com": [6610], "*.byu.edu": [1587], "www.entropay.com": [5300], "www.abdn.ac.uk": [405], "liikenneturva.fi": [9348], "adactio.com": [549], "www.eng.umd.edu": [17263], "accounts.www.umich.edu": [17266], "*.fullslate.com": [6251], "monarch.co.uk": [10540], "www.flexinvestments.net": [5914], "content.magix.com": [9708], "dudley.firmstep.com": [19183], "skillsdevelopmentscotland.co.uk": [19597], "samba.com": [14070], "sourcefabric.org": [15180], "bcaws.aviationweather.gov": [18972], "pvac-forum.leeds.ac.uk": [17318], "fotki.yandex.by": [18648], "webmail.talktalk.co.uk": [15929], "*.sustatic.com": [15544], "www.riksgalden.se": [13890], "www.openclassrooms.com": [11928], "www.zonglovani.info": [18896], "us.adform.net": [585], "blake2.net": [19006], "www.dal.net": [4003], "moodsmith.com": [10570], "www.ciscolearningsystem.com": [3164], "ruxcon.org.au": [14049], "olcf.ornl.gov": [11693], "news.sunybroome.edu": [2365], "mobify.net": [10493], "www.commscope.com": [3473], "www.cs.kent.ac.uk": [17317], "secure.sprintbuyback.com": [15315], "my.sailthru.com": [14243], "fmv.se": [5579], "nutritionhistory.nal.usda.gov": [17209], "oval.mitre.org": [10459], "st0.unitedplatform.com": [17219], "*.fedorapeople.org": [5729], "www.coverartarchive.org": [3728], "totalrecall.switchingon.com": [17183], "online.cheshirewestandchester.gov.uk": [19057], "tools.cisco.com": [3162], "unodc.org": [16994], "www.racetohealth.co.uk": [13492], "ctan.org": [2681], "cdn.userreport.com": [17437], "www.fotoforensics.com": [7140], "www.abila.com": [417], "slettmeg.no": [4216], "mpetroff.net": [10082], "search.freefind.com": [6127], "*.okpay.com": [11629], "bittit.info": [2023], "blog.cloudfoundry.com": [3300], "frederikshavn.dk": [6117], "en.faq.buffalo-global.com": [2397], "dolartoday.com": [4639], "static.hubspotqa.com": [7595], "bit.nl": [1523], "supervalu.com": [14196], "lpi.org": [9095], "*.nationalpriorities.org": [11085], "*.siliconrus.cmtt.ru": [3329], "4tulemar.com": [155], "ecocampus.ens.fr": [4930], "help.adfox.ru": [524], "tunisia-sat.com": [16832], "mozillazine-fr.org": [19411], "ar.verbling.com": [17615], "*.squarespace.com": [15333], "www.ausregistry.com.au": [1374], "earwolf.com": [5010], "psdev.transform.nottingham.ac.uk": [11528], "blog.tox.chat": [16616], "www.element5.com": [5157], "www.tinkersoup.de": [16475], "www.ask-inc.com": [16665], "www.opendemocracy.net": [12032], "mnmdl.osu.edu": [11760], "*.pflag.org": [12243], "www.notedcode.com": [11524], "help.hbonow.com": [19242], "www.derstandard.at": [19111], "desire2learn.com": [4390], "gettyimages.*": [6621], "images1.ivoox.com": [7871], "help.slideshare.com": [14962], "birmingham.objective.co.uk": [19454], "www.hotmail.com": [7559], "sl-retargeting.adsonar.com": [539], "blog.archive.org": [8271], "ep2013.europython.eu": [5409], "img.bzimages.com": [2288], "hideme.today": [7395], "lewesdc.firmstep.com": [19183], "m1.nsimg.net": [11550], "publictools.tiaa-cref.org": [15816], "chickensoup.com": [3074], "code.x2go.org": [18499], "www.ng-book.com": [11371], "legacy.illinois.edu": [17258], "thermoscientific.com": [16349], "poivron.org": [12985], "blog.xamarin.com": [18540], "*.vantiv.com": [17562], "rand.org": [13398], "login.wx.qq.com": [13285], "musiciansfriend.com": [10718], "prioritysubmit.com": [13073], "sportys.com": [15292], "jcrosoft.com": [8421], "www-ee.stanford.edu": [15383], "careers.peopleclick.com": [12550, 12551], "lenovopicks.com": [9253], "earth.illinois.edu": [17258], "trust-center.verisign.ch": [17623], "cuinfo.cornell.edu": [3676], "app-de7.resrc.it": [13599], "www.urz.uni-heidelberg.de": [17174], "ovp.lenovo.com": [9251], "public-online.hmrc.gov.uk": [7084], "investor.logmeininc.com": [9550], "umbel.com": [17142], "www.epsom-sthelier.nhs.uk": [10913], "*.ubs.com": [16929], "compulab.co.il": [3530], "filippo.io": [5804], "blackfoot.co.uk": [2053], "www.epilepsyontario.org": [5322], "cms.medianova.com": [10178], "hkex.com.hk": [7484], "efiliale.de": [19112], "cme.wustl.edu": [17993], "abbott.com": [402], "adaptivecomputing.com": [558], "go.brighttalk.com": [2323], "packetstormsecurity.com": [12317], "www.squirrelmail.org": [15336], "gatwickairport.com": [6469], "www.superstart.se": [15635], "m.agar.io": [719], "manage.rackspacecloud.com": [13507], "netis.cis.vutbr.cz": [17522], "www.sysprovide.de": [19652], "www.volksverschluesselung.de": [17829], "cts.tradepub.com": [16645], "www.talktalk.co.uk": [15929], "download.libsodium.org": [9319], "cdn.xfinity.com": [19784], "passport.apan.org": [329], "www.sportisimo.ro": [14158], "pp.pingdom.com": [12687], "manasource.org": [9943], "www.ehic.org.uk": [4916], "appwiki.checkpoint.com": [3048], "httpsnow.org": [4908], "fundinfo.com": [6263], "www.incircle.com": [15851], "suitey.com": [15587], "uofmhealth.org": [17378], "www.mims.com.hk": [9743], "clkads.com": [3272], "www.sohopelesslybroken.com": [14150], "music.yandex.by": [18648], "mcssl.com": [10127], "www.mobilism.org": [19404], "btsportbusiness.com": [1577], "go.magento.co.uk": [9849], "synthetix.info": [15743], "asset-1.netbeans.org": [11185], "e-mail-made-in-germany.de": [4842], "dz2cdn1.dzone.com": [4095], "debug.siedler25.org": [13832], "www.outnow.ch": [19473], "nationaldefensemagazine.org": [11049], "*.bitsontherun.com": [2019], "lastenrad.vcd.org": [17474], "*.nbc.com": [11048], "myfitnesspal.com": [10757], "console.qcloud.com": [13301], "*.lovemoney.com": [9631], "stonelab.osu.edu": [11760], "sas.kaspersky.com": [8806], "olasagasti.info": [10386], "federation.amd.com": [925], "e8.xhamsterpremiumpass.com": [18516], "www.subply.com": [15555], "cdn.duelinganalogs.com": [4796], "keys.bankofengland.co.uk": [1644], "smartos.org": [14990], "www.bsdconsulting.co.jp": [1543], "cloud.rockzi.com": [13443], "status.xsolla.com": [18593], "www.tunnelbroker.net": [16834], "switch.atdmt.com": [10360], "staminus.thecthulhu.com": [16334], "www-s.dakko.us": [4126], "abebooks.com": [408], "healthcarestaffbenefits.org": [7262], "services.comparethemarket.com": [3511], "secure.live.sipgate.de": [14857], "www.mayday.us": [10104], "r6.mzstatic.com": [1119], "billing.gitter.im": [6684], "tchibo.pl": [15985], "ztan.tk": [16548], "valdhaus.co": [17531], "www.rockzi.com": [13443], "www.magicalbutter.com": [9857], "www.kubuntu.org": [9029], "www.plugin-planet.com": [12826], "ihg.com": [8230], "www.trustthevote.org": [16784], "torbay.gov.uk": [16569], "nl.icecat.biz": [7914], "zeronet.io": [18843], "img04.findgravy.com": [5843], "taxbenefits.coventry.gov.uk": [19084], "mycanvas.com": [10749, 10750], "reviews.thegreatcourses.com": [16192], "www.panstwomiasto.pl": [12369], "www.linuxplumbersconf.com": [9397], "wpstartbox.com": [15406], "sso.swiss-va.com": [15694], "bayan.ir": [1704], "de.hosting.adjug.com": [526], "securepurchaseserver2.com": [14510], "uplinklabs.net": [17391], "*.haymarket.com": [7248], "*.meteonews.net": [10311], "blogtw.ashleymadison.com": [1254], "*.airbnb.jp": [749], "blog.eurodns.com": [5405], "publishpartner.com.au": [19526], "ispam.nl": [7834], "wiki.ocf.berkeley.edu": [17240], "jobs.github.com": [6680], "samssoftware.com.au": [14262], "www.associatie.kuleuven.be": [8816], "www.getkeepsafe.com": [6594], "biostatistics.wustl.edu": [17993], "maelsoucaze.com": [9843], "auction.jd.com": [8423], "picard.musicbrainz.org": [10717], "www.easychair.org": [5022], "codecov.io": [3366], "www.ox.ac.uk": [17271], "games.mirrorbingo.com": [10444, 10445], "successchef.com": [15573], "en-bs.dict.cc": [4455], "static-7headlines.pixfs.net": [12741], "login.aliexpress.com": [806], "vhil.stanford.edu": [15383], "www.xmarks.com": [18579], "*.totaltravel.com": [18638], "kb.hostingsolutions.cz": [7531], "smetrics.skype.com": [14938], "blog.chromium.org": [3119], "chef.io": [3057], "www.gethashing.com": [6577], "wikimedia.f4.htw-berlin.de": [7112], "nemid.nu": [11142], "pbsrc.com": [12495], "www.dittdistrikt.no": [4578], "cdn.geekwire.com": [6496], "stlbeacon.org": [15355], "cryptsy.com": [3892], "static.libsyn.com": [9321], "msec.xp1.ru4.com": [14012], "uat.communities.coverity.com": [3734], "postlapsaria.com": [12980], "www.alexhaydock.co.uk": [799], "defenceandsecurity.ca": [2512], "js-sec.casalemedia.com": [2870], "childcare.milton-keynes.gov.uk": [10401], "donationcoder.com": [4677], "buy.itunes.apple.com": [1120], "bitcoinity.org": [1984], "zeromq.org": [18846], "titanpad.com": [16499], "www.dc801.org": [4012], "zumzi.com": [18923], "innovation.mit.edu": [9749], "wgea.gov.au": [18444], "www.csirt.vutbr.cz": [17522], "ricoh.co.in": [13879], "yunos.tmall.com": [19684], "youtube.co.th": [18709], "static.kent.ac.uk": [17317], "www.ecaforums.com": [5294], "blazingthyme.com": [2063], "fr.pornworms.com": [12928], "eurosmartz.com": [5410], "iosapi.xamarin.com": [18540], "weedtraqr.com": [18180], "cisomb.dhs.gov": [4035], "bangong.jd.com": [8423], "www.vitamindcouncil.org": [17793], "smodus.nike.com": [11401], "secure.getprice.com.au": [6616], "food.list.co.uk": [16199], "shop.lego.com": [9068], "www.libsdl.org": [9290], "repsvcs-prod2.wustl.edu": [17993], "hebdo.ch": [19244], "www.ffgg.ulaval.ca": [17229], "*.cf-example.com": [2975], "www.vlissingen.nl": [11132], "contribuez.cnnumerique.fr": [3589], "pgapps.nottingham.ac.uk": [11528], "time.yandex.kz": [18652], "ecocar.osu.edu": [11760], "sweflix.to": [15685], "portal.nottingham.ac.uk": [11528], "www.smartertools.com": [14996], "pscorp.pstprod.peoplestrategy.com": [12549], "www.amazon.com.mx": [18951], "ic3.gov": [17022], "ladyfootlocker.com": [9128], "www.shirazlug.ir": [14708], "forbesmagazine.com": [6018], "www.atheists.org": [1313], "sc1.rgstatic.net": [13422], "www.albumarsiv.com": [781], "www.statistik.bayern.de": [15435], "www.aquagear.com": [1143], "bcportal.symantec.com": [15715], "www.lolagrove.com": [9568], "www.macworld.com.au": [9823], "wwte7.com": [17937], "stackauth.com": [15359], "pstprod.peoplestrategy.com": [12549], "usa.gov": [17029], "myitsm.nih.gov": [11052], "6xq.net": [186], "*.djoser.nl": [7452], "image.istella.it": [8381], "www.myoptplussecure.com": [10812], "gro.seagate.com": [14437], "hg.quakenet.org": [13326], "login.independentmail.com": [8055], "img3.thalasseo.com": [16168], "www.gimmickwear.com": [6662], "blog.radware.com": [13524], "partner.solarflare.com": [15112], "www.velleman.be": [17596], "storefront.verisign.co.jp": [17623], "framasphere.org": [6096], "atlas.arbor.net": [1154], "ideal.snsbank.nl": [14144], "plugins.jetbrains.com": [8559], "www.avast.com": [1444], "ton.twimg.com": [16877], "fastlane.nsf.gov": [11060], "iosdevweekly.ly": [7782], "img.pr0gramm.com": [19514], "www.settrade.com": [14634], "pear2.php.net": [12250], "www.meerssen.nl": [11132], "www.cloudcracker.com": [3284], "wallet.mynxt.info": [10771], "www.susyradio.com": [15667], "renkum.nl": [11132], "ekmsecure.co.uk": [5133], "mail.eclipso.de": [5051], "embanner.univcomm.cornell.edu": [3676], "www.ecommerce.com": [5056], "svp.vgc.no": [17484], "vtcsec.ru": [17516], "www.escan.com": [17760], "memset.com": [10255], "csc-test1.cisco.com": [3162], "www.rumorscity.com": [14032], "cru-inc.com": [2660], "*.tech-recipes.com": [16008], "www.cornify.com": [3677], "*.hotpics-amateur.com": [7550], "evoluted.net": [5466], "cdn5.sure-assist.com": [15644], "carekris.com": [2846], "cdn1.xvideosx.tv": [18537], "tumutanzi.com": [16828], "www.pbagalleries.com": [12209], "yosemite.ucc.ie": [16933], "www.connectmyphone.com": [3581], "classic.iridiumbrowser.de": [8356], "www.whisper.sh": [18246], "bit9.com": [1922], "www.twoseasons.co.uk": [16896], "en-fi.dict.cc": [4455], "prad.de": [13009], "portal.cedexis.com": [2926], "vod.transformersmovie.com": [12394], "es.xfinity.com": [19784], "kallithea-scm.org": [8772], "linuxserver.io": [9435], "etrieve.htzpartners.com": [7372], "auth.firebase.com": [5855], "www.eurobsdcon.org": [5404], "skylink.cz": [14937], "help.flavors.me": [4931], "*.planet-work.com": [12758], "consumidor.gov": [3598], "wiki.openmoko.org": [12039], "www.geoplatform.gov": [6538], "dnld.lime-technology.com": [19365], "www.cs.sunysb.edu": [15480], "*.arstechnica.net": [1217], "submissions.epetitions.direct.gov.uk": [4531], "billing.prgmr.com": [13047], "assets.gratipay.com": [6898], "smallfarms.cornell.edu": [3676], "*.phoenix.edu": [12633], "www.cs.ucsd.edu": [16939], "www.prometheusgroup.com": [13150], "thecommunicationtrust.org.uk": [19674], "edg.com": [4891], "malina.hu": [4665], "www.planboardapp.com": [12756], "llportal.aylesburyvaledc.gov.uk": [18976], "hp.thecthulhu.com": [16334], "tenten.vn": [16117], "macmillandictionary.com": [9832], "www.wandisco.com": [17893], "static.newamerica.org": [11301], "ssrn.com": [14183], "cdn.discourse.org": [4545], "giffgaff.com": [19217], "www.marsocial.com": [9713], "offensive-security.com": [11736], "www.atomiccowlick.com": [1325], "hiplogin.stanford.edu": [15383], "plugins.vuze.com": [17879], "www.estavisas.org.uk": [4966], "*.memecenter.com": [10249], "nwtime.org": [11271], "suppliers.oracle.com": [12082], "www.orcid.org": [11909], "www.cryptanalysis.eu": [3846], "www.instantchat.io": [8184], "www.periscope.io": [12572], "petstore.com": [12602], "intranet.plymouth.ac.uk": [12833], "pharmacycorefacilities.usc.edu": [17278], "awaps.yandex.by": [18648], "gruene.de": [850], "prized.na.leagueoflegends.com": [9205], "www.adigital.org": [590], "www.aeryon.com": [691], "stanfordevents.stanford.edu": [15383], "www.piratenpartei.de": [12721], "*.heritage.org": [7329], "vias.symantec.com": [15715], "checkout.paddle.com": [12324], "www.bolehvpn.net": [2188], "skylarkcloud.com": [14935], "cms.kiva.org.s3.amazonaws.com": [8926], "tookapic.com": [16553], "www.transformationmadeeasy.com": [16665], "disk42.com": [4561], "autodiscover.lsbu.ac.uk": [9098], "allure.com": [3551], "cdn.tectonic.com": [16055], "hepo.fi": [7320], "bussgods.se": [2461], "www.cryptoins.com": [3874], "alumni.kuleuven.be": [8816], "youtube.es": [18709], "mozillalabs.com": [10660], "beta.cironline.org": [2614], "www.urlquery.net": [17412], "*.ngpvanhost.com": [10907], "www.vpnincome.com": [8024], "tools.digitale-diathek.net": [4504], "www.rxportalexpress.com": [14052], "*.wordpress.tv": [18428], "www.incoin.io": [8046], "dub.washington.edu": [17290], "opendns.com": [11932], "news.usni.org": [17045], "*.crossmediaservices.com": [14716], "www.simplystamps.com": [14832], "*.2o7.net": [96], "m2.ttxm.co.uk": [15868], "eur.bitcurex.com": [1987], "*.mozilla-russia.org": [10651], "phab.enlightenment.org": [5280], "static.daniweb.com": [4141], "atom.io": [1324], "news.lenovo.com": [9251], "*.mini-dweeb.org": [4791], "easywhois.com": [5032], "www.sophievipescort.com": [15153], "aesload.de": [692], "cdn1.recombu.com": [13648], "hertsdirect.org": [7335], "epic.org": [4943], "contests.newsnet5.com": [11344], "perf.weborama.fr": [18138], "support.cloudflare.com": [3285], "www.wijchen.nl": [11132], "segment.io": [14559], "www.vitalmend.com": [17788], "fluffyclouds.dnainfo.com": [19121], "confluence.freeswitch.org": [6130], "democracy.blackpool.gov.uk": [2056], "attracta.com": [1341], "www.moreal.co": [10587], "store.openfiler.com": [12034], "www.emory.edu": [5212], "wwws.lemonde.fr": [9192], "get.it": [6564], "alliancebernstein.com": [851], "fcm.dhl.de": [4034], "ak1.abmr.net": [762], "www.espo.nasa.gov": [10869], "jira.secondlife.com": [14462], "www.schwabplan.com": [14372], "digcoin.com": [4467], "www.toster.ru": [16598], "essex.gov.uk": [5365], "elanex.biz": [5141], "www.pandasoph.de": [19478], "sizzlejs.com": [14892], "my.torbay.gov.uk": [16569], "cdn2.ustream.tv": [17450], "tdg.csis.dk": [2673], "localview.birmingham.gov.uk": [19000], "*.soton.ac.uk": [17276], "opintoluotsi.fi": [12056], "amsl.com": [311], "www.tdcserviceonline.com": [15798], "www.cia.gov": [2600], "rfparts.com": [13420], "mixi.co.jp": [10467], "www.webpg.org": [18078], "drops.htw-berlin.de": [7112], "si5.twimg.com": [16877], "my.megapath.com": [10229], "www.coolutils.com": [3639], "frivillighetshuset.no": [6221], "dcvote.org": [4017], "autodiscover.1x.com": [49], "serving.portal.dmflex.com": [4052], "app.quotemedia.com": [13377], "supadupa.me": [15611], "kicknews.*": [8878], "*.rootbsd.net": [13967], "www.dropboxteam.com": [4768], "www.mork.no": [10592], "www.inoreader.com": [8156], "nhaap.ornl.gov": [11693], "vcint.com": [17670], "reserve.apple.com": [1120], "tl63.co.uk": [16508], "darlinghq.com": [4155], "www.idrsolutions.com": [7709], "*.discountclick.com": [651], "petitions.whitehouse.gov": [18251], "ok.sberbank.ru": [14322], "victorinox.com": [17674], "static2.flattr.net": [5910], "www.getfoxyproxy.org": [6591], "snapengage-3.wpengine.netdna-cdn.com": [15027], "*.uct.ac.za": [17306], "livertox.niddk.nih.gov": [11052], "www.adindex.de": [275], "energinet.dk": [5253], "www.kanbox.com": [8779], "my.itdashboard.gov": [7856], "www.tv-release.net": [16858], "frequentis.com": [6198], "gpg4win.org": [6875], "www.mbnet.pt": [10111], "udc.msn.com": [9796], "*.cloudsponge.com": [3295], "www.store4geeks.com": [15492], "lacie.com": [9117], "www.nvidia.co.uk": [10983], "www.myhealth.va.gov": [17019], "bioxfel.org": [1904], "www.noembed.com": [11457], "*.alertbot.com": [788], "sec.ch9.ms": [2979], "es.premium.members.webs.com": [18144], "www.pti.iu.edu": [8064], "noblogs.org": [19435], "artsdashboard.stanford.edu": [15383], "vulnhub.com": [17871], "www.doel.kuleuven.be": [8816], "athumbnails.5min.com": [178], "www.someserver.de": [15129], "starawardssecure.snowfly.com": [15044], "www.raynersw.com": [13586], "royalmailgroup.com": [14001], "*.iggcdn.com": [8072], "ads.chartbeat.com": [3018], "static.encyclopediadramatica.se": [5241], "mobile.washington.edu": [17291], "*.storenvy.com": [15495], "paymentssource.com": [12478], "*.plone.org": [12819], "zapier.com": [18791], "tdc.dk": [15796], "yedxxx24hr.com": [18667], "www.haskoin.com": [7231], "www.ovh.de": [12173], "www.zerobin.net": [18839], "www.ncsu.edu": [11492], "www.realtech-vr.com": [13630], "www.president.osu.edu": [11760], "*.strongloop.com": [15530], "ref.evoliatis.com": [5465], "brunel.ac.uk": [19021], "www.subscriberconcierge.com": [10011], "forums.vandyke.com": [17549], "catracalivre.com.br": [2908], "publications.usa.gov": [17029], "www.hertz.hu": [7348], "www.hertz.hr": [7343], "www.verigames.com": [17621], "trade.1688.com": [36], "assets1.github.com": [6680], "tracker.leadforensics.com": [9197], "www.ca.cz": [18938], "ir.supermedia.com": [15614], "*.edupage.org": [5091], "new.devon.gov.uk": [4428], "www.ayyildiz.de": [1478], "www.nintendoworldreport.com": [11419], "*.links.mkt41.net": [14802], "mobilevikings.com": [10502], "static.uniregistry.net": [17197], "x14.eu": [17488], "blog.adafruit.com": [550], "beta.webapps.blackberry.com": [2050], "www.law.uw.edu": [17077], "www.bettercrypto.org": [1826], "axa-winterthur.ch": [381], "www.ozbargain.com.au": [12195], "tamlab.osu.edu": [11760], "careers.dandb.com": [4137], "jsonresume.org": [8459], "www.infoq.com": [8101], "familie.bremen.aok.de": [317], "xelerance.com": [18554], "*.e-sea.net": [4846], "askives.com": [1267], "www.appseccalifornia.org": [1133], "solid-run.com": [15117], "submit.comixology.com": [3465], "mediavoice.com": [12860], "secure.trustico.com": [16794], "creativegallery.axa.com": [380], "*.gutenberg.org": [7028], "blogs.securiteam.com": [14514], "build.origami.ft.com": [5826], "compliance.chef.io": [3057], "ece.unm.edu": [16992], "hoku.co.jp": [14740], "dobrovolnici.ludialudom.sk": [9652], "pentestmag.com": [12544], "s.pixfs.net": [12741], "www.cerit-sc.cz": [2571], "unternehmen.bvg.de": [1582], "piraten-partei.ch": [12284], "sellerhelp.taobao.com": [15952], "southern-africa.hivos.org": [7431], "www.contributoria.com": [3620], "addthis.com": [571], "www.couchpota.to": [3698], "student.plymouth.ac.uk": [12833], "static.kirklees.gov.uk": [8916], "origin-ars.els-cdn.com": [5182], "pages.balabit.com": [1624], "oauth.net": [11607], "www.indexoncensorship.org": [8059], "shotgunclub.com": [14737], "cruises.webjet.co.nz": [18124], "bugs.python.org": [13272], "f9.fi": [5548], "www.crazybates.com": [3766], "billing.qth.com": [13291], "*.feide.no": [5743], "clusterhq.com": [3323], "www.fortinet.com": [6056], "csc-stage.cisco.com": [3162], "mail.opera.com": [12050], "www.eclipso.de": [5051], "secure.dormproject.ch": [4686], "www.islenzka.net": [8369], "verisign.de": [17623], "theinquirer.fr": [11198], "www.telusinternational.com": [16103], "www.gamebillet.com": [6429], "www.afilias.info": [707], "*.thomashunter.name": [19679], "verisign.dk": [17623], "websecweekly.org": [18145], "www.ac.infn.it": [7766], "mywell-being.com": [10799], "elilabs.com": [5165], "omniture.chip.eu": [2597], "coloradocollege.edu": [3442], "www.roccat.org": [13931], "ns1.leboncoin.fr": [19351], "www.gismeteo.ru": [6669], "akademy2007.kde.org": [8718], "*.cdn.gaiaonline.com": [6405], "jivesoftware.com": [8585], "ikea.com": [7959], "nodejsmodules.org": [11449], "forum.antergos.com": [1062], "people.freebsd.org": [6120], "sv.rentalserver.jp": [13774], "podcasting.rtbf.be": [14011], "share.sandia.gov": [14278], "64px.com": [180], "65.98.18.218": [16200], "shippingwatch.dk": [14706], "www.pluscontrollers.com": [3624], "bytenoc.nl": [2491], "owncube.com": [12183], "mousematrix.com": [10625], "wsws.org": [17931], "renovationexperts.com": [13768], "www.illiad.wustl.edu": [17993], "au1.uicdn.net": [16958], "www.temando.com": [16104], "bitdeli.com": [1989], "projects.fivethirtyeight.com": [5893], "oms.symantec.com": [15715], "hashcat.net": [7226], "games.d2jsp.org": [3997], "rttire.com": [13476], "internot.info": [8291], "fod.osu.edu": [11675], "www.federatedmedia.net": [5722], "ere.stanford.edu": [15383], "securingthehuman.org": [14517], "www.renewablefreedom.org": [13766], "quitter.no": [13370], "www.honest.com": [7481], "waterfoxproject.org": [18001], "cdn.slidesharecdn.com": [14963], "www.appnexus.com": [1109], "contact.voyagegroup.com": [17859], "r.advg.jp": [664], "www.privatelayer.com": [13098], "opencpu.org": [11925], "media.wnyc.org": [17916], "zohodiscussions.com": [18886], "silabs.com": [14788], "*.realtime.co": [13632], "images.derstandard.at": [19111], "tg.ethz.ch": [4975], "www.habpl.us": [7127], "www.mediate.com": [10182], "aphrodite.krystal.co.uk": [9024], "www.csc.ncsu.edu": [11491], "download.cyanogenmod.org": [3954], "police.illinois.edu": [17258], "rc4nomore.com": [19540], "downloads2.mamp.info": [19379], "shorte.st": [14735], "monitor1.returnpath.net": [13834], "wiki.ubuntu.com": [17102], "ge.ch": [19648], "x.skimresources.com": [14912], "risparmiopostaleonline.poste.it": [12965], "www.all-inkl.*": [825], "account.xsolla.com": [18593], "www.kuther.net": [9046], "www.angular-gantt.com": [1019], "fonts.iu.edu": [8064], "www.gamespot.com": [6425], "morpho.hu": [10599], "verizon.com": [17626], "ion.postclickmarketing.com": [12947], "www.ppcoin.org": [12282], "wimdu.co.uk": [18322], "compete.org": [3518], "m.www.linksynergy.com": [9381], "www.enjoy.com": [5278], "final-score.com": [5818], "learn.open.ac.uk": [11986], "shareideas.parature.com": [12396], "cryptocloud.org": [3871], "*.marchex.com": [9984], "www.so.ch": [19648], "rapidshare.com": [13558], "forum.owncloud.org": [12182], "enomcentral.com": [4934], "*.myheritage.de": [10834], "*.myheritage.dk": [10834], "www.vc-kundencenter.de": [17472], "www.obitalk.com": [19453], "osdisc.com": [19468], "aarnet.edu.au": [233], "standagainstspying.net": [15376], "whodoyou.trust": [18260], "tagesschau.de": [19656], "www.responsys.com": [13815], "mdts.uk.com": [9734], "selfservice.wokingham.gov.uk": [19762], "waindigo.org": [17949], "anirena.com": [1021], "reactos.org": [13604], "www.pastemonitor.com": [12440], "getlantern.org": [6595], "www.techenclave.com": [16010], "phone.coop": [12635], "www.hq.nasa.gov": [10869], "sec.gov": [17023], "tp.postbank.de": [12959], "feedarea.de": [12843], "www.kentico.com": [8853], "status.viaduct.io": [17662], "bonadza.com": [2194], "photos.barvaux.org": [1685], "www.superantispyware.com": [15612], "www.innerbody.com": [19293], "a1s.unicdn.net": [17176], "bin.mediatemple.net": [10165], "download.fedoraproject.org": [5726], "elastic.co": [5142], "konstfack.se": [8979], "scalingbitcoin.org": [14329], "protonmail.com": [13169], "ticket.www.wp.pl": [17921], "secure-software.intel.com": [8209], "www.airtricity.com": [757], "be-nl.norton.com": [11505], "*.codecoop.org": [3365], "tipmobile.sbb.ch": [15693], "marum.de": [10036], "vt.tumblr.com": [16826], "tt.se": [15866], "posts.kirlism.ga": [19338], "www.applyweb.com": [1129], "work.taobao.com": [15952], "*.sonnettech.com": [15138], "blog.vpn.ac": [19742], "stubconnect.stubhub.com": [15534], "vilistlane.ut.ee": [17069], "www.pgcon.org": [12244], "vendrevite.ricardo.ch": [13866], "zentralbahn.ch": [19802], "fool.com": [10613], "www.ooshirts.com": [11898], "content.atomz.com": [1329], "cn.redhat.com": [13675], "account.wellcome.ac.uk": [19752], "www.ctswholesalesunglasses.com": [2686], "pd-nk.itunes.apple.com": [1120], "pix.isalo.org": [8364], "community.ubnt.com": [17084], "secure.identrust.com": [7934], "btc-trade.ru": [1554], "content.aimatch.com": [742], "www.addictech.com": [574], "www.nodpi.org": [11435], "calendar.ferris.edu": [5756], "advertserve.com": [656], "portix.bitbucket.org": [1925], "maps.tunbridgewells.gov.uk": [19704], "www.nhsdirect.wales.nhs.uk": [10913], "essaysreasy.com": [5364], "www.hideme.ru": [7392], "gaos.com": [6908], "photos.meetic.fr": [10214], "www.fox-it.com": [6084], "*.thinkgeek.com": [16361], "bitmovin.com": [2010], "me.uaa.alaska.edu": [17233], "www.catalysttg.com": [2898], "community.geogebra.org": [6537], "transifex.net": [16668], "www.4sevens.com": [162], "*.analystone.com": [987], "*.addisonlee.com": [577], "sutton.greenparty.org.uk": [6925], "www.cz.redhat.com": [13675], "committeepapers.barnet.gov.uk": [18982], "tu-ilmenau.de": [15873], "www.bitcasino.io": [1929], "api.bizographics.com": [2032], "lijst.wirelessleiden.nl": [18367], "forums2.openfiler.com": [12034], "memberful.com": [10247], "nullday.de": [11574], "photographytalk.com": [12646], "mypressplus.com": [13034], "security.webmoney.ru": [18076], "samsunglfd.com": [14269], "community.dynatrace.com": [4825], "dev.openwrt.org": [11992], "www.fightforthefuture.org": [5784], "ubisoftgroup.com": [17092], "www.vdi-wissensforum.de": [17476], "www.web10.dk": [15925], "steg-electronics.ch": [14189], "lcsrv1.myhsphere.biz": [8607], "*.aetherflyff.com": [693], "www.netmeister.org": [11243], "hizook.com": [7434], "slhost.com": [15090], "www.adversary.org": [655], "www.goeswhere.com": [6805], "www.citibank.com.au": [3170], "furaffinity.net": [6270], "kenneth.io": [8849], "data.nal.usda.gov": [17209], "no-ip.com": [17791], "gdtl.osu.edu": [11760], "passwort-generator.com": [12435], "www.coinmate.io": [3398], "www.texaco.com": [16149], "articles.braintreepayments.com": [2274], "forex-metal.com": [6032], "www.coderbits.com": [3374], "zefflin.com": [18811], "footballfanatics.com": [6013], "boxwoodtech.com": [2261], "openxchange.stanford.edu": [15383], "leicestershire.gov.uk": [9239], "www.koenrouwhorst.nl": [8955], "www.bokon.se": [2185], "portal.servercentral.net": [14604], "1105media.com": [15], "gentoo.org": [6531], "netmediaeurope.fr": [11198], "oia.osu.edu": [11760], "secure.quotestream.com": [13379], "courtsofnz.govt.nz": [3722], "*.thejournalnews.com": [9564], "globalpolicy.org": [6730], "gsehelpsu.stanford.edu": [15383], "readyflowers.com": [13620], "mail.scipy.org": [14374], "convar.de": [3625], "a0.twimg.com": [16877], "*.mibbit.com": [10338], "www.fastweb.com": [5689], "lime-technology.com": [19365], "mindhealthconnect.org.au": [10412], "help.gmobb.jp": [6342], "ipv6-adresse.dk": [7807], "secure.cato.org": [2906], "www.youthscape.co.uk": [19796], "img.gawkerassets.com": [6477], "www.mwrinfosecurity.com": [9809], "ru.cloudflare.com": [3285], "side.cr": [14761], "theiabm.org": [7665], "service.wienenergie.at": [18284], "criticalthinking.org": [3804], "geldermalsen.nl": [11132], "cdn.worldreader.org": [18464], "www.mediabistro.com": [10169], "onlinebanking.tdbank.com": [15795], "wiki.backbox.org": [1597], "www.repozitar.cz": [13787], "sync.americanexpress.com": [935], "fr.piwik.org": [12733], "familychristian.com": [5645], "2912a.v.fwmrm.net": [6136], "changedetection.com": [2993], "suicidepreventionlifeline.org": [11097], "sv-se.facebook.com": [5620], "kralenstart.nl": [9005], "www.northdevontheatres.org.uk": [11495], "www.zataz.com": [18801], "forum.userstyles.org": [19721], "www-cse.ucsd.edu": [16939], "sell.stubhub.co.uk": [15534], "apan.net": [328], "www.trafficsafetymarketing.gov": [16653], "alternativlos.org": [885], "lulu.com": [9659], "www.nzbindex.nl": [11002], "www.ing.com": [7769], "lavasoft.com": [9174], "osdv.org": [11666, 11667], "velleman.eu": [17596], "*.tehconnection.eu": [16062], "support.tilera.com": [16447], "powertraveller.com": [13005], "herefordshire.gov.uk": [7327], "login.icommons.harvard.edu": [7219], "lumimart.ch": [3645], "www.hornbach.de": [7496], "images.aidsmap.com": [740], "data.sheffield.gov.uk": [14694], "www.whatdotheyknow.com": [18230], "fast.wistia.com": [18377], "www.bundlestars.com": [2437], "deb.li": [4267], "*.flashtalking.com": [5907], "btctrade.com": [2381], "aap.cornell.edu": [3676], "beta.ipredator.se": [7804], "serverstack.com": [14608], "odl.mit.edu": [9749], "static.rottentomatoes.com": [13981], "*.litmus.com": [9471], "www.pep.uni-potsdam.de": [17333], "osc.hul.harvard.edu": [7219], "gpo.zugaina.org": [18920], "tasteofthenorthend.org": [15972], "www.christophertruncer.com": [3114], "nordstromrack.com": [11480], "trader.flowbtc.com": [5944], "cl.norton.com": [11505], "www.hostinglabs.pe": [7530], "mobileidentity.telus.com": [16103], "developer.valvesoftware.com": [17548], "www.siggraph.org": [14777], "metrics.lowes.com": [9636], "www.fueleconomy.gov": [6242], "rf.osu.edu": [11760], "landing.lyris.com": [9685], "www.wauland.de": [18007], "scoop.it": [14389], "conference.civica.co.uk": [19064], "*.opensrs.net": [11969], "feeds.laughingsquid.com": [19350], "boxuk.com": [2255], "andywalsh.com": [1011], "assets.ixwebhosting.com": [7882], "www.rtems.org": [13472], "www.unrealitytv.co.uk": [17366], "papers.xtremepapers.com": [18601], "icm.cherwell.gov.uk": [3063], "purechat.com": [13242], "www.arrl.org": [342], "tipstricks.itmatrix.eu": [7860], "service.meltwaternews.com": [10243], "public.create.msdn.com": [9788], "site-cdn1.ghosteryenterprise.com": [6630], "our-hometown.com": [12141], "www.playstation.com": [12795], "knoll.google.com": [6834], "www.develop-online.net": [8227], "middlesbrough.firmstep.com": [19183], "adfs.geant.org": [6314], "auksjon.qxl.no": [13385], "www.perfectmoney.com": [12563], "rnrwheels.com": [13438], "www.smzdm.com": [15017], "onenews.cz": [11644], "www.kidshealth.org": [8883], "stanford.edu": [15383], "www.mispy.me": [10454], "blog.udacity.com": [17109], "*.astrill.com": [1302], "fls-eu.amazon.com": [915], "www.blackboard.cornell.edu": [3676], "tracking.verisign.co.nz": [17623], "forums.lanik.us": [9148], "metallica.com": [10307], "www.cnaf.infn.it": [7766], "insecure.ws": [8162], "wscont1.apps.microsoft.com": [10364], "cdn2.a1.net": [217], "www.iridiumbrowser.de": [8356], "dsinternals.com": [4083], "secure3.vend-o.com": [17606], "videos.cpanel.net": [2653], "it.taobao.com": [15952], "www.postauto.ch": [12949], "www.stopfasttrack.com": [15484], "blog.ipvanish.com": [7799], "adium.im": [595], "de.libreoffice.org": [9311], "www.interfacelift.com": [8247], "favstar.fm": [5693], "*.curate.us": [3923], "www.dict.cc": [4455], "safe.jd.com": [8423], "gsxapp.apple.com": [1120], "ifortuna.sk": [7947], "alumni.cam.ac.uk": [17243], "www.debuggify.net": [4279], "technoportal.ua": [16039], "*.vidplay.net": [17702], "www.centennialbulb.org": [9510], "annualcreditreport.com": [1032], "www.photographer.io": [12645], "pix.revsci.net": [13840], "chorder.dosowisko.net": [4688], "blog.usni.org": [17045], "neuroscience.stanford.edu": [15383], "www.jako-o.lu": [8496], "cozmedics.com.au": [2644], "regalii.com": [13727], "www.ananda.org": [989], "encontro.libreoffice.org": [9311], "newsletter.sky.com": [14924], "store.earthlink.net": [5007], "mailinglist.bis.doc.gov": [17058], "monitoring.websitealive.com": [18149], "blogs.alfresco.com": [802], "trac.pcbsd.org": [12216], "embedded.edc.intel.com": [8209], "www.winswitch.org": [18341], "mh21.piware.de": [10034], "rijswijk.nl": [11132], "www.semor.cz": [14101], "internet.bs": [8276], "myhelprequests.sky.com": [14924], "www.cryptonator.com": [3883], "*.gourmetgiftbaskets.com": [6859], "primetime.unrealitytv.co.uk": [17366], "www.subtome.com": [15569], "www.coopzeitung.ch": [3645], "heanet.ie": [7268], "www.browsealoud.com": [2368], "sadclwscom.lowes.com": [9636], "secure.serve.com": [14599], "t4ft.de": [5870], "cbo.gov": [17017], "status.quantopian.com": [13340], "blog.fau.de": [17311], "post-gazette.com": [12948], "ucc.dk": [16932], "jabber.ietf.org": [7721], "ro.norton.com": [11505], "*.nextag.ca": [11363], "intra.brunel.ac.uk": [19021], "*.waitrosedirect.com": [17951], "*.neomailbox.com": [11154], "shop.telegraph.co.uk": [16082], "static2.startnext.com": [15412], "clients.x10hosting.com": [18498], "vzaar.com": [17883], "netsciwestpoint.org": [11262], "www2.sans.org": [14072], "www.espacejeux.com": [5360], "e.issuu.com": [8378], "amersfoort.nl": [11132], "buzzdock.com": [2477], "ae.utbm.fr": [19724], "christianprayercenter.com": [3110], "shoucang.taobao.com": [15952], "www.bitmaintech.com": [2004], "www.onioncat.org": [11862], "*.ncsoft.com": [10891], "vegasinc.com": [17480], "itx.com": [7855], "simg.uol.com.br": [16998], "lesterchan-lesterchan.netdna-ssl.com": [9262], "bel.fi": [1510], "www.edp.pt": [4896], "www.trakk247.com": [16659], "mvg-mobil.de": [9806], "vb-paradise.de": [17578], "gw1.alicdn.com": [805], "webapps.brunel.ac.uk": [19021], "*.quotes.bennetts.co.uk": [1779], "alioth.debian.org": [4275], "usalliance.org": [17033], "www.banan.cz": [1489], "www.udk.com": [16946], "secure.smartplanet.com": [14992], "idofoundation.org": [7650], "www.linksys.com": [9382], "www.cj2.nl": [2618], "pas.org.my": [12353], "rdsecure.org": [13512], "m.draugiem.lv": [4742], "www.berkman.harvard.edu": [7219], "www.picshareunit.com": [12668], "chloe.re": [3093], "iam.netelligent.ca": [11224], "eventoverload.com": [5439], "*.sankaty.com": [14286], "www.ciw.edu": [2857], "support.isc.org": [7821], "a.adrolays.de": [625], "pix04.revsci.net": [13840], "www.bitminter.com": [1937], "www.ukwebsolutionsdirect.com": [16968], "trendin.com": [16718], "www.sofurry.com": [15048], "championsofregnum.com": [2990], "success.mindtouch.com": [10409], "springfiles.nl": [15305], "www.lexisnexis.com": [13704], "www.abi.org.uk": [242], "paws.uwm.edu": [17294], "mobile.jingwei.com": [8574], "salford.greenparty.org.uk": [6925], "jacobinmag.com": [8489], "trust-center.verisign.com.tw": [17623], "summit.alfresco.com": [802], "qzs.qq.com": [13285], "static.tierra.net": [16435], "www.zaragoza.es": [19778], "*.worldofwarplanes.ru": [18461], "konferenzen.telekom.de": [4410], "*.leadpages.net": [9195], "www.genome.ucsc.edu": [17305], "www.drwho.virtadpt.net": [4784], "papermart.com": [12380], "www.vtecdirect.com": [17517], "backupify.com": [1604], "eip.stanford.edu": [15383], "www.go2arena.com": [6767], "arenavc.com": [1180], "parentalcontrol.eset.com": [5358], "vaes.vt.edu": [17740], "ds5.static.rtbf.be": [14011], "coloman.nl": [3438], "itemname.com": [19311], "assets0.frndcdn.net": [6218], "account.3playmedia.com": [128], "mxptint.net": [10741], "content.adfox.ru": [524], "moodle.lasallehs.net": [9161], "*.revision3.com": [13846], "www.e621.net": [4865], "pay.netverify.com": [11256], "safety.usc.edu": [17278], "lists.srlabs.de": [14521], "support.paloaltonetworks.com": [12349], "www.pollenwarndienst.at": [12884], "*.meetrics.net": [10218], "henvis.tdc.no": [15797], "*.dotmailer.com": [4695], "www.democracy.io": [4353], "morningstar.co.uk": [10595], "*.riverisland.com": [13906], "eu-u.openx.net": [11993], "linux-dev.org": [9400], "www.moviii.isy.liu.se": [9084], "linuxlovers.at": [9432], "*.tynt.com": [16908], "demo.webassign.net": [18054], "nos-oignons.fr": [11511], "www.tracfone.com": [16626], "tracking.verisign.com.au": [17623], "status.vinilox.eu": [17724], "cryptobin.org": [3854], "nicta.com.au": [10923], "*.sciencedirect.com": [14375], "tl.itunes.apple.com": [1120], "billund.dk": [1884], "efinancialnews.com": [11321], "bloomingtonfools.org": [6110], "clck.yandex.com": [18651], "cdn3.a1.net": [217], "openclipart.org": [11905], "www.stgeorges.nhs.uk": [10913], "www.usmagazine.com": [17417], "*.torservers.net": [16594], "envoydirect.com": [5310], "press.avast.com": [1444], "lotame.com": [9613], "www.dealfish.co.th": [4260], "ideabank.opendns.com": [11932], "*.ovi.com": [12174], "splitreason.com": [15282], "netbel.oxfamireland.org": [12189], "security.vt.edu": [17740], "*.immerda.ch": [19287], "t.rasp.yandex.kz": [18652], "hertzequipmentsales.com": [7372], "www.chat-place.org": [3028], "mit.information.dk": [8123], "myaccount.news.com.au": [11338], "www.domaincontext.com": [4653], "lgo.mit.edu": [9749], "www.online.cyberaces.org": [3956], "www.salisbury.greenparty.org.uk": [6925], "directory.osu.edu": [11760], "www.friendpaste.com": [6216], "www.bbc.com": [1497], "bookit.rmit.edu.au": [13437], "www.store.3drobotics.com": [124], "wiki.tizen.org": [16506], "*.twibright.com": [16875], "shop.flixbus.be": [5931], "www.trademarkia.com": [16644], "blog.qt.io": [13315], "boligejer.dk": [2189], "visa.com": [17761], "www.html5sec.org": [7105], "webmail.pipni.cz": [12257], "www.docstorepro.com": [4623], "webmail.vodafone.co.nz": [17812], "mosoblast.rt.ru": [13469], "careers.oculusvr.com": [11722], "tor.thecthulhu.com": [16334], "*.ogt.jp": [8108], "*.hamradioscience.com": [7180], "www.kotte-zeller.de": [8995], "sallybeauty.com": [14252], "cdn.agilebits.com": [727], "rocket.chat": [13939], "finnchristiansen.de": [5850], "courses.soe.ucsc.edu": [17305], "www.is.ut.ee": [17069], "likes.com": [9350], "samsu.accu-weather.com": [465], "blog.opendz.org": [18428], "www.cannex.com": [2515], "appproxy.3sat.de": [135], "blackarrowsoftware.com": [19005], "www.uie.com": [16955], "audience.umbel.com": [17142], "www.properpet.com": [13158], "movie.to": [10636], "m.library.usyd.edu.au": [19723], "*.v2cigs.com": [17461], "hfsvwr.london-fire.gov.uk": [19371], "wf.typotheque.com": [16917], "dptcourses.wusm.wustl.edu": [17993], "virtualbox.org": [17748], "www.fraudlabs.com": [6111], "hackertarget.com": [7145], "seg.sharethis.com": [14668], "static5.twilio.com": [16876], "www.internetcoup.org": [8281], "lab.email.seznam.cz": [14648], "qa-coupons.paypal.com": [12467], "mobile.xmarks.com": [18579], "duihuan.smzdm.com": [15017], "blog.asciinema.org": [1247], "wiki.haskell.org": [7229], "steaw.com": [15457], "tlscompare.org": [15826], "*.btwifi.com": [1579], "news.gnome.org": [6353], "reviews.ti.com": [16152], "static-2.gumroad.com": [7020], "marketing.1688.com": [36], "bitnami.com": [2011], "www.scaleway.com": [14328], "www.coreyabramson.com": [3673], "store.lds.org": [16219], "manchester.gov.uk": [9944], "www.video-dean.com": [17692], "*.ecwid.com": [5066], "*.exportawards.gov.au": [1391], "shop.a1.net": [217], "www.html5.org": [7589], "images.ichkoche.at": [7918], "symlynx.com": [15719], "*.crittercism.com": [3805], "myshadow.org": [10816], "a2.sndcdn.com": [15032], "liukanshan.zhihu.com": [18856], "*.airbnb.com.au": [749], "img1.thalasseo.com": [16168], "www.evil32.com": [5459], "jmldirect.uat.venda.com": [8443], "argus.ch": [1188], "plesk2.thephone.coop": [16347], "icij.org": [8264], "lob.com": [9533], "koti.kapsi.fi": [8791], "decisionbriefs.com": [4285], "www.insa-strasbourg.fr": [8192], "spoonful.com": [15288], "www.hypovereinsbank.de": [7649], "openpgpkey.info": [12040], "www.nursing.osu.edu": [11760], "reg.test.ft-static.com": [19201], "luvit.io": [9674], "domainsite.com": [19124], "www.barclayscorporate.com": [1663], "*.bronto.com": [2361], "www.findgravy.com": [5843], "*.udmedia.de": [16947], "www.serversaurus.com.au": [14619], "vault.studio.ndnmediaservices.com": [10894], "lp.chartbeat.com": [3018], "eleccomm.ieee.org": [7715], "www.tpvs.hmrc.gov.uk": [7084], "omc.overdrive.com": [12160], "reasoncoresecurity.com": [13636], "chaturbate.com": [3035], "feedblitz.com": [5733], "tomtomrunningrace.com": [16540], "zarb.org": [18796], "easyedi.tietoenator.com": [16438], "online.bezeqint.net": [1833], "uber.com": [17089], "jira.zarafa.com": [18795], "audubon.org": [1364], "dionysus.krystal.co.uk": [9024], "www.slough.gov.uk": [14971], "liberiangeek.net": [9298], "www.osicodesinc.com": [11671], "www.animenewsnetwork.com": [18957], "assistance-multimedia.fr": [1284], "normdaten.digitale-diathek.net": [4504], "avatar3.status.net": [15437], "sendpepper.com": [14578], "pro.jamendo.com": [8502], "www.antpool.com": [1072], "cdn.earthdata.nasa.gov": [10869], "feefo.com": [5741], "dtc.gplhost.com": [6372], "www.cryptothrift.com": [3865], "monkeyguts.com": [10557], "www.regex101.com": [13728], "www.aei.org": [277], "roble.unizar.es": [17356], "openmedia.ca": [11958], "www.battleforthenet.com": [1695], "vms.boldchat.com": [2187], "www.railsbox.io": [13529], "picsity.com": [12667], "ayudica.unizar.es": [17356], "desertnews.com": [4385], "dhgate.com": [4036], "wiki.musl-libc.org": [10724], "corbettreport.com": [3659], "sohu.wrating.com": [18473], "netloan.southwark.gov.uk": [15196], "www.newsmaxhealth.com": [11343], "zhanzhang.baidu.com": [1619], "validator.yandex.com.tr": [18649], "cdn.cooldestinations.net": [3641], "landalskilife.*": [18490], "monkeybrains.net": [10558], "www.homelessworldcup.org": [7480], "www.netfilter.org": [11225], "billiger.de": [1881], "gateway.threema.ch": [16399], "www.pubmed.gov": [13195], "www.maps.yandex.by": [18648], "amazonwebservices.com": [915], "www.roundcube.net": [13986], "*.pss.gov.au": [13213], "admin.legislation.gov.uk": [19354], "ricoh.sg": [13879], "jackandjillraffle.com": [8481], "metoffice.gov.uk": [10295], "e14.xhamsterpremiumpass.com": [18516], "extranet.dotprojects.be": [4704], "liftconference.com": [9335], "www.unitymedia.de": [17221], "lists.bufferbloat.net": [2403], "uat.rsaconference.com": [13454], "partnersignup.srsplus.com": [14169], "cdn.xsolla.com": [18593], "info.dynatrace.com": [4825], "cdn.comcast.com": [3461], "api.smartrecruiters.com": [14994], "aax-eu.amazon-adsystem.com": [909], "dpacksupport.dell.com": [4335], "www.av18mov.com": [1434], "financialcryptography.com": [5823], "*.signon.org": [10630], "www.pv.gov.sa": [14306], "superstrands.com": [15618], "www.news9daily.org": [11325], "www.charles-carreon.com": [18428], "wusmhealth.wustl.edu": [17993], "*.megaglest.org": [10228], "rgj.com": [13767], "www.lrz-munich.eu": [9238], "*.tvbrowser.org": [15883], "www-cs-students.stanford.edu": [15383], "id.bigmir.net": [1866], "bugs.kubuntu.org": [9029], "*.avg.com": [371], "njit.edu": [10932], "shop.1and1.co.uk": [53], "netload.in": [11241], "accounts.ft.com": [5826], "enta.net": [5290], "proxy.ohiolink.edu": [11762], "yardim.yandex.com.tr": [18649], "onionoo.thecthulhu.com": [16334], "offerpop.com": [11739], "analytics.xsolla.com": [18593], "cn.bing.com": [1895], "www.fromorbit.com": [6222], "notefly.org": [11521], "www.vodafone.co.nz": [17812], "webprospector.de": [18080], "www.thalia.de": [16171], "craphound.com": [3760], "www.forgerock.com": [19189], "passport.gigabyte.com": [6646], "escan.com": [17760], "status.stripe.com": [15525], "amara.org": [907], "*.nydailynews.com": [10991], "www.cspinet.org": [2675], "wsgfl.westsussex.gov.uk": [18211], "tags.bkrtx.com": [2133], "trustedshops.*": [16787], "bintray.com": [1897], "www.konklone.com": [8978], "s.btstatic.com": [1580], "intranet.cardiff.ac.uk": [2835], "puppet.ocf.berkeley.edu": [17240], "digitalaccess.bostonglobe.com": [16251], "briggs-riley.com": [2317], "www.btcgear.com": [1566], "animenfo.com": [1024], "ihgmerlin.com": [7737], "leaf.dragonflybsd.org": [4738], "earhart.flameeyes.eu": [5901], "app.compete.com": [3519], "apps.cheshirewestandchester.gov.uk": [19056], "lists.opensource.org": [12024], "pl.norton.com": [11505], "pa.hinckley-bosworth.gov.uk": [7412], "gurulabs.com": [7024], "git.leloop.org": [9191], "southampton.firmstep.com": [19183], "www.maelsoucaze.com": [9843], "btobonline.com": [3757], "spn.sr": [17489], "*.brightkidsnyc.com": [2327], "*.img.digitalrivercontent.net": [4499], "mailman.nanog.org": [11490], "ihgplc.com": [7738], "boca.gov.tw": [2165], "europa.d66.nl": [4000], "*.totalchoicehosting.com": [16601], "bedis.eu": [1745], "failuremag.com": [5630], "www.rus.uni-stuttgart.de": [17282], "doublefine.com": [4710], "store.winzip.com": [18333], "craftstats.com": [3753], "de-el.dict.cc": [4455], "laproxsites.com": [9154], "www.pizzahut.co.uk": [12750], "mspartner.microsoft.com": [10364], "www.gihyo.jp": [6660], "labs.integrity.pt": [8203], "support2.magix.com": [9708], "*.custhelp.com": [3936], "redcross.org.uk": [2343], "clery-dev.ucsc.edu": [17305], "*.sourcemaking.com": [15175], "content.mkt941.com": [14802], "origin.scdn.co": [15295], "www.motorola.de": [10615], "hostr.co": [7543], "*.hsbctrinkaus.de": [7098], "tw.norton.com": [11505], "dining.osu.edu": [11760], "stores-assets.stackcommerce.com": [15361], "*.uknof.org.uk": [16973], "ld-5.itunes.apple.com": [1120], "jhweb.dev.jhu.edu": [16296], "consumerswin.com": [3605], "*.wiggle.co.uk": [18287], "mychatagent.com": [8689], "site-cdn4.ghosteryenterprise.com": [6630], "*.img-dpreview.com": [4497], "secure.marketwatch.com": [10021], "*.mobilenations.com": [10501], "latticechallenge.org": [19349], "secwiki.org": [14459], "wusmregistrar.wustl.edu": [17993], "contact.gmocloud.com": [6343], "geeklan.co.uk": [6495], "easy-share.com": [3806], "www.easyodds.com": [5034], "ddos.arbornetworks.com": [1154], "*.dartmouth.edu": [4158], "onsalesit.com": [11884], "spacecomm.nasa.gov": [10869], "login.1688.com": [36], "mercurial.selenic.com": [10279], "mycrains.crainsnewyork.com": [3757], "docs.playstation.com": [12795], "platform4.liverail.com": [9496], "cdnph.upi.com": [17005], "retail-link.gr": [13821], "www.angus.gov.uk": [1020], "livedemo.xsolla.com": [18593], "webmail.zen.co.uk": [18815], "support.ubnt.com": [17084], "www.appdynamics.com": [1104], "googlemail.com": [6843], "shop.typo3.org": [15894], "www.moa.idmanagedsolutions.com": [7710], "*.eurobilltracker.com": [19165], "soundonsight.org": [15160], "akb.ch": [19333], "faq.weblog.tudelft.nl": [4326], "bell-labs.com": [1764], "admin.animenewsnetwork.com": [18957], "www.huntcal.com": [7622], "www.webhostone.de": [18121], "initlab.org": [8144], "www.crypto.cat": [3851], "hacker.lugons.org": [9108], "springer-gabler.de": [15307], "infomaniak.ch": [8112], "moje.zuno.sk": [18768], "mail.com": [9872], "cdn.switchadhub.com": [15701], "medconfidential.org": [10137], "hg.libsdl.org": [9290], "froggynet.com": [19199], "ticket.threema.ch": [16399], "nolb.dhl.de": [4034], "bugs.eclipse.org": [5049], "docs.cerit-sc.cz": [2571], "*.afx.ms": [717], "hava.yandex.com.tr": [18649], "upload.picload.org": [12661], "app.engagesciences.com": [5259], "download.attachmate.com": [1336], "eclevelandclinic.org": [3236], "community.muselive.com": [10710], "dev.mozilla.jp": [10655], "*.energylivenews.com": [5257], "s11.postimg.org": [12977], "*.lovelens.ch": [9630], "www.veil-framework.com": [17592], "cdn.flipboard.com": [5925], "nightlove.me": [11395], "reverseheartbleed.com": [13843], "bizchannel.cimbthai.com": [2608], "bulksms.co.uk": [2415], "picostocks.com": [12665], "emploi.cnrs.fr": [6195], "www.amnesty.tw": [973], "blogs.progress.com": [13132], "*.compendiumblog.com": [3517], "ananda.org": [989], "www.arlanda.se": [1199], "wealden.objective.co.uk": [19454], "www.studentrecords.wustl.edu": [17993], "cmp.onlinesbi.com": [11873], "stories.californiasunday.com": [2749], "lists.bnl.gov": [19009], "www.awsinsider.net": [375], "account.golem.de": [6819], "resources.convio.com": [3629], "sysstaff.ucsd.edu": [16939], "kinko.me": [8909], "usa.anon-ib.net": [1037], "citywerkz.com": [3198], "www.ngpvan.com": [10907], "store.guidancesoftware.com": [7006], "www.ziedot.lv": [18858], "coinurl.com": [3399], "www.west-lindsey.gov.uk": [18205], "osec.pl": [11911], "online.danskebank.dk": [4145], "wordpress2.trustthevote.org": [16784], "thumbzilla.com": [16402], "www.tnaflix.com": [16518], "scholar.google.com.*": [6837], "lookingglass.email": [9598], "researchblogging.org": [13793], "*.slitaz.org": [14954], "verticalacuity.com": [17637], "*.uni.lui": [17175], "www.electronicintifada.net": [5154], "togahotels.com": [16529], "www.pekwm.org": [12529], "dashboard.liveramp.com": [9497], "www.rmcybernetics.com": [13794], "nero.com": [11162], "citl.illinois.edu": [17258], "sunrisetech.gr": [15604], "goldenadventures.com": [6812], "securenet.com": [14493], "support.wwf.ch": [19768], "*.hypem.com": [7643], "*.geneseephoto": [6525], "www.nvisium.com": [10986], "intranet.engineering.wustl.edu": [17992], "hs13.snstatic.fi": [14145], "www.shop.heise.de": [7288], "www.kvack.org": [9047], "www.insouciant.org": [8175], "campustechnology.com": [19034], "sapato.ru": [14295], "tigernet.princeton.edu": [13064], "www.os-cillation.de": [12115], "developers.xapo.com": [18541], "mirror.datapipe.net": [4211], "*.wsjsafehouse.com": [11321], "status.podio.com": [12846], "www.videointerchange.com": [17693], "www.gonewsoft.com": [6781], "www.instaradio.com": [13400], "webpayments.rutland.gov.uk": [19560], "tnsglobal.com": [15841], "www.quadrantsec.com": [13323], "jon.endpoint.com": [5243], "www.mijnwestlandutrecht.nl": [18217], "yacuna.com": [18630], "voxel.net": [17853], "www.speedtree.com": [15254], "media.rbl.ms": [13592], "www.salsacommons.org": [14254], "jorsika.com": [2776], "imensa.de": [7988], "mechse.illinois.edu": [17258], "firstgiving.com": [5869], "hm.baidu.com": [1619], "www.privatesearch.io": [13104], "www.66option.com": [181], "torservers.net": [16594], "www.spideroak.com": [15269], "feeds.pinboard.in": [12677], "bugs.xenserver.org": [18557], "avaya.com": [1446], "fapmc.ru": [5551], "friendlyduck.com": [6214], "rother.gov.uk": [13978], "cdn.snipcart.com": [15037], "www.weblogawards.org": [18128], "weekplan.net": [18181], "www.speedcoin.org": [15256], "8.*.wdfiles.com": [18294], "www.randischumann.dk": [13541], "recordedfuture.com": [13650], "blog.zamzar.com": [18428], "moodle.bury.gov.uk": [19026], "vlc-addons.org": [19461, 19462], "*.seecrypt.com": [14548], "robustirc.net": [19555], "beam.stanford.edu": [15383], "*.lufthansa.com": [9655], "www.cokecce.com": [3413], "www.mexicoleaks.mx": [10327], "www.nublue.co.uk": [11560], "global.acs.org": [929], "sw.nohold.net": [11436], "neo-interactive.hu": [11145], "*.halifax-online.co.uk": [7174], "www.myworldofwork.co.uk": [19422], "www.companic.nl": [19074], "www.vub.sk": [17869], "disabilityresources.uic.edu": [17231], "www.petrogen.com": [12600], "cufp.org": [2688], "fws.arts.cornell.edu": [3676], "offog.org": [11756], "piphone.lqdn.fr": [9113], "chrisjean.com": [3105], "*.btguard.com": [1571], "deals.slashdot.org": [14947], "rotaryview.com": [13975], "www.openhost.net.nz": [12036], "www.swingfree.co.uk": [15692], "showcase.ionicframework.com": [8339], "app.danskebank.dk": [4145], "mssql.active24.cz": [18938], "www.bettershopping.eu": [1830], "talktalkbusiness.co.uk": [15930], "woods.stanford.edu": [15383], "www.requestpolicy.com": [13791], "identity.linuxfoundation.org": [9412], "cdn.su.edu": [14698], "static1.gac.edu": [6301], "gistmarks.com": [6671], "www.newcastle.gov.uk": [11315], "creation.co.uk": [3775], "www.samsungdirect.com": [14267], "sz-media.sueddeutsche.de": [15577], "whirlpool.net.au": [18243], "allizom.org": [856], "pobierak.jeja.pl": [8549], "www.shortlist.com": [14734], "myuofmhealth.org": [17378], "convio.berkeley.edu": [17240], "www.nsa-observer.net": [11547], "*.cloudforce.com": [3303], "blog.junglee.com": [8680], "www.hinckley-bosworth.gov.uk": [7412], "nieman.de": [11392], "debian-fr.org": [4271], "www.tyk.io": [16904], "static.scripting.com": [14422], "www.collegeclublife.com": [2638], "nestleusa.taleo.net": [15922], "www.consumerswin.com": [3605], "www.ifap.ed.gov": [4889], "webmail.illinois.edu": [17258], "devops.profitbricks.com": [13129], "training.citrix.com": [3177, 3178], "pricerunner.com": [13053], "www.familie.nordwest.aok.de": [317], "app.thestorefront.com": [16314], "rightnow.com": [13883], "js.cdn.static.malwarebytes.org": [9929], "svenskaspel.se": [15672], "www.cwspodmusic.com": [2693], "fujitsu-webmart.com": [6245], "a2.lscdn.net": [9102], "www.rising.jhu.edu": [16296], "*.voxer.com": [17854], "www.gitbook.io": [6675], "espanol.victoriassecret.com": [17672], "ecs.osu.edu": [11760], "privatecore.com": [13100], "lilithlela.cyberguerrilla.org": [3961], "blog.movableink.com": [10628], "www.elegantthemes.com": [5156], "civicalg.com.au": [19065], "utop.inria.fr": [8159], "www.archlinux.fr": [1159], "www.tcfmailvault.info": [15791], "www.tofour.net": [16520], "mega.co.nz": [10223], "hkk.de": [7078], "www.introversion.co.uk": [8301], "www.novosoft.net": [11532], "partnerportal.sophos.com": [15154], "lib.newsvine.com": [11348], "xkcd.org": [19786], "*.neoseeker.com": [11157], "uk.zopa.com": [18907], "www.secure-mobiles.com": [14482], "newsmax.com": [11342], "sparkhub.databricks.com": [4197], "site.yandex.by": [18648], "www.mainelegislature.org": [9895], "lists.freebsoft.org": [6123], "*.snagajob.com": [15024], "max.jotfor.ms": [8637], "www.neqos.nhs.uk": [10913], "www.northwest.greenparty.org.uk": [6925], "www.projects.unbit.it": [17148], "www.ubermedia.com": [17086], "pinpoint.microsoft.com": [10364], "argusleader.com": [1189], "buffalo.edu": [17297], "steaknshake.com": [15447], "ir.gmocloud.com": [6343], "wiki.openjdk.java.net": [8525], "uitalerts.stanford.edu": [15383], "journals.cambridge.org": [2767], "supplierhelp.due-north.com": [19129], "gynecomastia.org": [7039], "wt.cherry.de": [3062], "gls-group.eu": [6523], "www.openmicroscopy.org": [12021], "rehber.yandex.com.tr": [18649], "*.applepartsstore.com": [1123], "franken.de": [6102], "opengl.org": [11939], "static.hungryhouse.co.uk": [7621], "forensicinstitute.nl": [6027], "*.readcube.com": [13606], "mailhost.ut.ee": [17069], "www.malcovery.com": [9922], "edvina.net": [5102], "www.turktk.com": [16839], "tempolibero3.ffs.ch": [15693], "www.nypf.org.uk": [19448], "profesia.sk": [19521], "piwik.disconnect.me": [4543], "www.thebureauinvestigates.com": [16253], "indystar.com": [8067], "webtrends-sdc.niehs.nih.gov": [11052], "controller.osu.edu": [11760], "payments.dudley.gov.uk": [4795], "onehealthtalk.org": [11848], "emarketing.thestar.com": [16575], "fanfiction.net": [5648], "images.womenshealth.de": [18411], "soundslice.com": [15165], "nealpoole.com": [11120], "die-linke.de": [4456], "erdgeist.org": [5339], "www.alumni.buffalo.edu": [17297], "varnish-cache.org": [17568], "www.shamansgarden.com": [14657], "www.medialinx-academy.de": [10173], "thestar.com": [16575], "opdaterdinpc.tdc.dk": [15796], "www.wokingham.gov.uk": [19762], "mail.yandex.com": [18651], "www.os.uk": [11662], "www.executiveinterviews.com": [5489], "flatlinesecurity.com": [5909], "productsandservices.bt.com": [1551], "*.csmres.co.uk": [8306], "www.snl.com": [14143], "blog.safello.com": [14234], "www.serverstack.com": [14608], "www.lis.illinois.edu": [17258], "subterraneangames.com": [15568], "lkcss.zamimg.com": [18782], "developer.apple.com": [1120], "*.schwab.com": [14370], "exoticads.com": [5501], "literotica.com": [9467], "community.1and1.com": [51], "ripe72.ripe.net": [13895], "saucytime.com": [14304], "*.city.ac.uk": [3187], "account.login.aol.com": [321], "engr.washington.edu": [17291], "wiki.bnl.gov": [19009], "mims.com": [9743], "www.offcloud.com": [11735], "sciencenews.org": [14380], "secure.drivee.ne.jp": [4764], "arteus.aerohosting.cz": [689], "diasporafoundation.org": [4451], "medias.myskreen.com": [10784], "*.bstatic.com": [2202], "www.habrahabr.ru": [7129], "www.bluemanticketing.com": [2141], "valuedopinions.co.uk": [17545], "www.octoshape.com": [11718], "education.symantec.com": [15715], "www.zapchain.com": [18789], "ssl.xrel.to": [18589], "www.chathamhouse.org": [3033], "dailyfantasyradio.com": [4119], "ontogenesis.knowledgeblog.org": [8948], "www.appsto.re": [1136], "freedominc.nl": [6170], "bitcoinstore.com": [1973], "campinaopschool.nl": [2783], "imgflip.com": [7997], "ext.vt.edu": [17740], "vocms0153.cern.ch": [2574], "dor.stanford.edu": [15383], "www.gladrags.com": [6696], "rt.ocf.berkeley.edu": [17240], "tcfmailvault.info": [15791], "ics.imensa.de": [7988], "www.brmlab.cz": [2345], "blog.synology.com": [15738], "images.tomsofmainestore.com": [16544], "blogs.sophos.com": [15154], "pixelh8.co.uk": [12739], "modmypi.com": [10512], "www.youtube.fi": [18709], "www.licensebuttons.net": [9324], "*.ning.com": [11415], "mysql.geektechlabs.com": [6499], "pass.1688.com": [36], "www.oyunhizmetleri.com": [12193], "msi-shop.de": [9791], "www.therocktrading.com": [16307], "*.secure.xtenit.com": [18599], "forums.informaction.com": [8121], "serviceplus.cengage.com": [2937], "sheet.zoho.com": [18884], "idearcmedia.com": [15614], "portal.clickandpledge.com": [3255], "www.flattr.com": [5911], "cryptothrift.com": [3865], "aussieperthtours.com.au": [1376], "transmission.xmission.com": [18530], "voice.fi": [17819], "welcome.webmaker.org": [10663], "developers.over-blog.com": [12156], "sunlightfoundation.com": [15601], "www.i2coalition.com": [7657], "*.hartware.de": [7216], "front-admin.voyage-prive.it": [17858], "thinkup.com": [16363], "*.bravemedia.org": [2292], "search.ams.usda.gov": [17209], "sunbeltsoftware.com": [15596], "home.wabi.com": [17938], "anchor.net.au": [18955], "motherless.com": [10609], "www.names.co.uk": [11026], "www.manilaprinciples.org": [9956], "pw.mail.ru": [9874], "wiki.debconf.org": [4268], "*.www.cloudhexa.com": [3305], "www.anyfi.net": [1079], "maps.stanford.edu": [15382], "img.en25.com": [5227], "impact.leeds.ac.uk": [17318], "vaforvets.va.gov": [17019], "lovefood.com": [9631], "hotels.nationalrail.co.uk": [11055], "trafficshop.com": [16647], "community.mega.com": [10222], "yagi-antennas.com": [18632], "interkassa.com": [8251], "recordstoreday.com": [13649], "alumfx.com": [895], "*.theiet.org": [7720], "xssposed.org": [18536], "secure.fanboy.co.nz": [5650], "hackread.com": [7134], "*.disneyinternational.com": [4566], "freebsdnews.com": [6121], "mobilecore.com": [10496], "punchouttest.digikey.com": [4469], "wolfram.com": [18396], "www.wickr.com": [18281], "barnet.gov.uk": [18982], "www.bsi.bund.de": [5711], "cdn.coverstand.com": [3727], "discuss.zoho.com": [18884], "farmlogs.com": [5662], "rabota.yandex.by": [18648], "aclj.org": [939], "internetsuccess.at": [8289], "climate.wwf.ch": [19768], "www.sick.com": [14757], "www.forecast.io": [6023], "*.okpartypix.com": [6525], "cache.cheapassgamer.com": [3039], "wiki.zmanda.com": [18880], "netid.usc.edu": [17278], "lnkd.in": [9526], "www.silvawoodflooring.co.uk": [14798], "code.facebook.com": [5620], "www.cxholidays.com": [2904], "dashboard.covad.com": [3725], "netstat.cern.ch": [2575], "lists.ruhr-uni-bochum.de": [14031], "git.eclipse.org": [5049], "unity.com": [17220], "*.nifty.com": [10925], "fuse.gamespot.com": [6426], "www.rebeltorrent.net": [13639], "www.bestattungwien.at": [18284], "*.memset.com": [10255], "www.noordwijkerhout.nl": [11132], "er.ntnu.no": [10964], "mentoringcentral.net": [10265], "www.mekanist.net": [10238], "webmail.cari.net": [2517], "asu.edu": [1194], "elotouchexpress.com": [5176], "svazurich.ch": [19644], "www.nimbledeals.com": [11407], "www.afp548.com": [283, 284], "reevoo.com": [13715], "www.tuitam.pl": [15872], "askezra.cornell.edu": [3676], "www.hertz.com.hk": [7347], "www.idevelop.ro": [7944], "declaredthoughtfulness.co": [19108], "*.cengagebrain.com": [2937], "samsungtechwin.co.kr": [14270], "projects.parabolagnulinux.org": [12385], "espoarchive.nasa.gov": [10869], "vehivial.unizar.es": [17356], "videogateway.tv": [3505], "webstatistieken.xs4all.nl": [18535], "ifightsurveillance.net": [7888], "*.isorno.com": [8375], "honors.uw.edu": [17077], "blog.documentfoundation.org": [16221], "portals.clevelandclinic.org": [3236], "webmaster.yandex.com": [18651], "info.threatmatrix.com": [19680], "www.apschedule.com": [336], "jiasule.com": [8566], "www.zendition.net": [18825], "connect.squareup.com": [15329], "details.com": [4401], "dotnettools-support.jetbrains.com": [8559], "wuphysicians.wustl.edu": [17993], "blog.hackerspace.pl": [7149], "www.canyouseeme.org": [17790], "arts.stanford.edu": [15383], "www.lhncbc.nlm.nih.gov": [11052], "*.ashlands.net": [10559], "www.primesecoenergie.com": [13061], "adkontekst.pl": [600], "support.serverbase.ch": [19583], "www.elkosmas.gr": [19153], "edge2.digicert.com": [4473], "theglobeandmail.com": [6743], "astrill.com": [1302], "tuwien.ac.at": [17707], "payments.ncl.ac.uk": [10884], "*.dynamitedeals.com": [4830], "ru.pcisecuritystandards.org": [12224], "ca.cz": [18938], "www.scriptsource.org": [14420], "www.source.uillinois.edu": [16960], "1cart.com": [43], "babymed.com": [1593], "taoeffect.com": [15950], "gearman.org": [6487], "www.clickssl.com": [3251], "interfacelift.com": [8247], "people.live.com": [9483], "www.opentrackers.org": [12048], "www.vidling.com": [17712], "i.walmartimages.com": [17965], "www.hackover.de": [7157], "leadwerks.com": [9202], "www.rfxn.com": [13856], "www.defenceimagery.mod.uk": [16975], "www-cache4.extensis.com": [5523], "csul.iii.com": [9374], "*.itsfogo.com": [7733], "ghostery.com": [6629], "thisismynext.com": [16371], "*.itsanhonour.gov.au": [8394], "thetfp.com": [16316], "direct.money.pl": [10547], "chakasmmm.com": [2983], "thedrum.com": [16270], "www.travelhouse.ch": [19262], "www.mangaupdates.com": [9950], "www.staffordshire.gov.uk": [15370], "www.ixwebhosting.com": [7882], "kinfolk.com": [8896], "meduza.io": [10204], "geoamigo.com": [6535], "lists.wald.intevation.org": [17955], "www.amberswann.com": [921], "www.jsbi.org": [8456], "bitballoon.com": [1923], "connect.soundcloud.com": [15161], "www.hillingdon.gov.uk": [7410], "www.roofclimb.com.au": [19556], "*.mytextgraphics.com": [10791], "www.myapnic.net": [1257], "creativevirtual.com": [3785], "admin.instantpage.me": [8187], "umeahackerspace.se": [17143], "www.mozdev.org": [10647], "*.adkontekst.pl": [601], "ssl15.ovh.net": [12173], "yummynames.com": [16816], "sapphireforum.com": [14298], "comm.stanford.edu": [15383], "grepular.com": [6944], "www.zomato.com": [18890], "gdata.ch": [6293], "statistik.bayern.de": [15435], "cryptocon.org": [3857], "myprofile-mktas.oracle.com": [12082], "webmail.nedlinux.com": [11131], "simplebooklet.com": [14825], "cdnslssl.coveritlive.com": [3735], "nym.ag": [1920], "cbscorporation.com": [19044], "support.livechatinc.com": [9480], "*.jad-journal.com": [8645], "guide-images.ifixit.net": [7726], "smartadserver.com": [14982], "*.readthedocs.com": [13611], "freevps.us": [6134], "www.kura.io": [9041], "blast.ncbi.nlm.nih.gov": [11052], "support.taobao.com": [15951], "www.insidehw.com": [8165], "www.i.cx": [7652], "www.apac.redhat.com": [13675], "discuss.pirateparty.org.au": [12713], "www.sonymusic.com": [15146], "typepad.com": [16914], "kickstarter.com": [8881], "*.eusecwest.com": [4981], "www.designova.net": [4389], "nihpublications.od.nih.gov": [11052], "migrosbank.ch": [19399], "www.openmrs.org": [11952], "sektioneins.de": [14563], "buy.vedomosti.ru": [19730], "www.6xq.net": [186], "www.luckymarmot.com": [9650], "myaccount.talktalk.co.uk": [15929], "appguru.com": [1106], "ras.org.uk": [13992], "www.doublepimp.com": [4717], "en.spontex.org": [15287], "level3cdn.kiva.org": [8926], "www.openmedia.ca": [11958], "institute.lds.org": [16219], "dwin1.com": [4093], "facebook.freifunk.net": [6192], "zoklet.net": [18888], "videos.somethingawful.com": [15130], "static.fncash.com": [5581], "www.thecanadianpress.com": [2801], "static.uclinics.com": [16945], "secure.innocenceproject.org": [8150], "autorimsandaccessories.com": [1422], "www.genymotion.com": [6534], "bitquick.tw": [1943], "fatcow.com": [5690], "kutv.com": [8754], "yieldlab.de": [18681], "pl.piwik.org": [12733], "www.muscleandstrength.com": [10708], "nc-unbrick1.apple.com": [1120], "liquidlight.co.uk": [9444], "*.hds.com": [7422], "*.volunteer2.com": [17834], "www.walthamforest.gov.uk": [17966], "commondreams.org": [3487], "www.portnerpress.com.au": [12941], "jobs.usc.edu": [17278], "wingware.com": [18354], "sickdaysurfshop.com": [14758], "tersee.com": [19670], "www.lchost.co.uk": [9066], "online.mbank.sk": [9722], "ifttt.fitbit.com": [5887], "fldemo.nsf.gov": [11060], "www.budgetgolf.se": [2393], "www.chatsecure.org": [3031], "*.westlotto.com": [18219], "esinet.norfolk.gov.uk": [19436], "www.yworks.de": [19788], "www.fass.se": [5669], "coinjabber.com": [3396], "corporate.aldi.com.au": [299], "compete.com": [3519], "westcornwall.greenparty.org.uk": [6925], "emergingthreats.net": [5206], "swiss-virtual.com": [15695], "www.malware-research.org": [9926], "inspirehep.net": [8178], "legislature.maine.gov": [9894], "my.segpay.com": [14556], "nmap.org": [11433], "www.lastminute.com": [9165], "account.fas.harvard.edu": [7219], "www.mobify.net": [10493], "www.answers.com": [1060], "regmedia.co.uk": [13740], "totally.awe.sm": [1460], "www.myswitzerland.com": [19419], "tuleap.org": [16823], "www.userstyles.org": [19721], "adk2cdn.cpmrocket.com": [2648], "kikatek.com": [8885], "www.abovealloffers.com": [824], "cdneu.wahanda.net": [17948], "www.europeana.eu": [19167], "*.happyherbivore.com": [7200], "secure.pdcnet.org": [12626], "responsys.com": [13815], "www.fireflycarrental.com": [7372], "hoseasons.co.uk": [18490], "sc2.maps.live.com": [9483], "resources.openmpt.org": [11951], "www.yoursupportservices.co.uk": [18732], "jobs.netflix.com": [11229], "writelatex.com": [18474], "www.skatemall.com": [14898], "connect.wilmerhale.com": [18319], "www.simpel.nl": [19592], "olc1.ohiolink.edu": [11762], "blocktrail.com": [2086], "cyphertite.com": [3986], "www.eeqj.com": [4904], "app.paymo.biz": [12481], "sandbox.itunes.apple.com": [1120], "www.lessbuttons.com": [19359], "link.eml.skyandtelescope.com": [14933], "intranet.huit.harvard.edu": [7219], "feeds.itunes.apple.com": [1120], "*.infile.com": [8091], "cms.artsy.net": [1235], "www.who.is": [18258], "bcy.ca": [6892], "brighteroption.com": [2329], "medlem.amnesty.se": [972], "www.solidarity-us.org": [15121], "vervehosting.com": [17645], "ivents.ya.ru": [18626], "hjaelp.virk.dk": [17741], "geektechlabs.com": [6499], "uclinics.com": [16945], "print-server.st-edmunds.cam.ac.uk": [17243], "extreme.idg.se": [7705], "www.readcomicsinpublic.com": [13605], "chromeadblock.com": [517], "images.mcafeesecure.com": [10116], "americanscientist.org": [946], "www.crp.gov.sk": [14972], "gamesites.cz": [6438], "static.dezeen.com": [4435], "buzz.typo3.org": [15894], "www.opendaylight.org": [11934], "www.neave.tv": [11124], "openbookpublishers.com": [12002], "www.numa.paris": [11575], "*.worldremit.com": [18452], "ministerialtidende.dk": [10426], "kalveboderne-rundt.hvidovrekajakklub.dk": [7636], "cdn.cathaypacific.com": [2904], "wordsapi.com": [18435], "chasepaymentech.com": [3027], "www.gateshead.gov.uk": [6467], "census.gov": [17027], "id.nlm.nih.gov": [11052], "strato-hebergement.fr": [14192], "208.68.106.8": [9073], "secularstudents.org": [14471], "be.norton.com": [11505], "spa.lastminute.com": [9165], "labs.aweber.com": [378], "www.gayromeo.com": [12764], "circleci.com": [3155], "www.wello.com": [18195], "htbridge.com": [7115], "backend.alumnenet.dtu.dk": [16031], "www.qt-project.org": [13314], "worldwinner.com": [6416], "www.chronixradio.com": [3120], "api.sndcdn.com": [15032], "portal.smartertools.com": [14996], "blog.zanox.com": [18786], "8chan.co": [204], "login.webgo24.de": [18065], "gayswap.com": [6479], "www.returnpath.net": [13834], "webshopapp.com": [18147], "goldmann.pl": [6816], "www.ufcfit.com": [16949], "www.asctrust.com": [346], "script.wpm.neustar.biz": [11280], "kollegorna.se": [8964], "mail.usp.br": [17048], "stayfriends.de": [15444], "www.condor.de": [3561], "*.samsungknox.com": [14268], "pressdisplay.com": [11345], "soulmates.guim.co.uk": [7014], "www.joomlainfo.ch": [19325], "zendylabs.com": [18826], "1f0.de": [58], "ld-7.itunes.apple.com": [1120], "watchdog.truste.com": [15856], "pixelated-project.org": [12738], "banx.io": [1657], "it.icecat.biz": [7914], "careercenter.wustl.edu": [17993], "www.mazacoin.org": [10107], "www.benchmarkjs.com": [18990], "tcr.tynt.com": [16907], "whitelabeldating.alcuda.com": [785], "skyid.sky.com": [14924], "*.gaiaonline.com": [6405], "www.ispam.nl": [7834], "search.oracle.com": [12082], "login.raiffeisen.ch": [13527], "sipgate.de": [14857], "vitalgamers.com": [17789], "feedback.yandex.com": [18651], "*.informabtl.com": [13721], "*.groupon.de": [6977], "webstore.gemalto.com": [6514], "*.prisms.deewr.gov.au": [4025], "st8.gismeteo.ru": [6669], "*.zagony.ru": [18779], "chart.googleapis.com": [6839], "www.mailvelope.com": [9892], "forum.popcorn-time.se": [12914], "secure2.insideknc.com": [8762], "storage.cloud.kargo.com": [8795], "standup2cancer.org": [15377], "www.findababysitter.com.au": [5835], "cdn1.thr.com": [15813], "box.com": [2253], "ftp.gnu.org": [6357], "*.nintendo.com": [11417], "clinicalinformatics.stanford.edu": [15383], "mail.hover.com": [7566], "*.poppyuk.com": [12918], "genius.itunes.apple.com": [1120], "*.serialist.net": [14595], "theweekendedition.com.au": [18182], "www.xmlgold.eu": [18521], "www.gosi.gov.sa": [14306], "csaw.isis.poly.edu": [12888], "oes.umd.edu": [17263], "www.simplebooklet.com": [14825], "fewo-mehrtens.de": [5764], "svn.siedler25.org": [13832], "*.inwx.ch": [8231], "www.coreboot.org": [3669], "www.zorrovpn.com": [18910], "*.tweetmeme.com": [16870], "irishbroadband.ie": [8357], "kenexa.jobs": [8847], "theprivacyblog.com": [16231], "belgacoin.com": [1761], "u2.uicdn.net": [16958], "*.instellaplatform.com": [8191], "www.longtailvideo.com": [9589], "citeulike.org": [3167], "s.vinilox.eu": [17724], "indymedia.org.uk": [8084], "eidq.org": [4918], "special-trade.de": [15239], "cas.oebb.at": [19455], "geekisp.com": [6494], "www.verisign.be": [17623], "kasperskycontenthub.com": [8812], "studentaffairs.illinois.edu": [17258], "nytimes.com": [11000], "pcbooking.bradford.gov.uk": [2264], "www.i-cares.wustl.edu": [17993], "www.gajim.org": [6406], "cherkessk.rt.ru": [13469], "bhodisoft.com": [1837], "media.defcon.org": [4305], "curryrice.stanford.edu": [15382], "skeptic.org.uk": [14901], "randombit.net": [13546], "*.win-rar.com": [18328], "*.mybalsamiq.com": [1634], "www.websmithing.com": [18153], "gamezebo.com": [6444], "support.name.com": [11015], "jslog.krxd.net": [9016], "sungardhe.com": [15593], "*.thirdage.com": [16368], "beta.asana.com": [1242], "www.trafficshop.com": [16647], "www.youtube.qa": [18709], "developer.foursquare.com": [6082], "moodle.org": [10575], "kb.umd.edu": [17263], "styles.wienerstadtwerke.at": [18284], "lhc-mpwg.web.cern.ch": [2575], "makeapledge.stanford.edu": [15383], "interspire.com": [1853], "kmd.easycruit.com": [5023], "geoplatform.gov": [6538], "muspy.com": [10726], "www.operatingsystems.io": [12051], "swtor.com": [15708], "developerforce.com": [14249], "sso.ens.fr": [4930], "logger.scot.nhs.uk": [10913], "pgi.billdesk.com": [1876], "mail.jesus.cam.ac.uk": [17243], "citibank.com.au": [3170], "accounts.stanford.edu": [15382], "digikam.org": [4474], "primo.uvm.edu": [17075], "documents.plymouth.ac.uk": [12833], "www.yandex.kz": [18652], "meez.crwdcntrl.net": [9613], "ea1.earcu.com": [4869], "telex.cc": [16097], "tnm.ext.here.com": [7326], "www.mod.gnutls.org": [6763], "tiles.mapbox.com": [9968], "assets1.jimstatic.com": [8571], "www.more-ip-event.net": [10584], "fpcomplete.com": [5591], "accounts.icharts.net": [7696], "blog.logentries.com": [9553], "aulo.in": [1368], "www.remotestorage.io": [13761], "bromley.greenparty.org.uk": [6925], "feeds.alestic.com": [792], "www.thestamp.umd.edu": [17263], "eed.osu.edu": [11760], "admin.iovation.com": [8342], "www.canvas.net": [2812], "*.enjin.com": [5277], "*.light-paint.com": [9342], "resource.dopus.com": [4532], "cas.edutheque.cndp.fr": [2633], "www.watsoninstitute.org": [18005], "www.recruitmentplatform.com": [13651], "ru.support.tomtom.com": [16540], "creators.ning.com": [11414], "www.commoncraft.com": [3489], "hostingcatalog.com": [7534], "update.tdesktop.com": [15989], "www.computersnyou.com": [3540], "careers.globalways.net": [6741], "korbit.co.kr": [8984], "www.tvlicensing.co.uk": [16861], "consultations.southwark.gov.uk": [15196], "api.rasp.yandex.kz": [18652], "static.trustedshops.com": [16787], "fast10.fonts.com": [5993], "qianggou.taobao.com": [15952], "privnote.com": [13105], "online2.statefarm.com": [15418], "cdn.dynatrace.com": [4825], "playwarz.com": [17975], "mobile.jd.com": [8422], "startlogic.com": [15409], "www.lunarpages.com.mx": [569], "psc.edu": [12298], "blog.nustarz.com": [11563], "education.staffordshire.gov.uk": [15370], "www.efax.co.uk": [5107], "ncdc.noaa.gov": [11083], "www.oesrc.researchcompliance.vt.edu": [17740], "databricks.com": [4197], "developer.qualcomm.com": [13328], "use.typekit.net": [16912], "journal-news.net": [8641], "diffuse.ca": [4464], "assets.software.eu.playstation.com": [12795], "open.login.yahooapis.com": [18639], "www.ekmsecure.co.uk": [5133], "auto.yandex.ua": [18656], "www.arachnys.com": [1149], "img06.rl0.ru": [13914], "search.no.citrix.com": [3178], "rtmpdump.mplayerhq.hu": [9784], "*.overleaf.com": [12167], "www.purduealum.org": [13233], "browsercan.rapid7.com": [13553], "client.museter.com": [10713], "www.directbox.com": [4529], "forms.bracknell-forest.gov.uk": [19016], "www.securosis.com": [14536], "cdn.yemeksepeti.com": [18674], "www.enderunix.org": [5246], "xpda.com": [19787], "*.uc.edu": [17308], "parkingonline.lincoln.gov.uk": [9362], "heathkit.com": [7278], "www.morgenweb.de": [10591], "pimage.timespeople.nytimes.com": [11000], "investors.com": [8323], "*.denh.am": [4361], "cctools.wustl.edu": [17993], "eindbazen.net": [5126], "*.pingidentity.com": [12684], "entportal.ieeeusa.org": [7716], "groupbuy.topbuy.com.au": [16559], "www.horizon.tv": [19716], "app.prospecteye.com": [13163], "help.spike.newswhip.com": [11333], "build.hmailserver.com": [7087], "crikey.com.au": [3796], "www.experian.com": [5506], "greenpeace-magazin.de": [6935], "www.sapphireforum.com": [14298], "www.hosthorde.com": [7513], "booleweb.ucc.ie": [16933], "www.gorickshaw.com": [6795], "ne-web.ucsd.edu": [16939], "account.skrill.com": [14919], "www.kea.nu": [2292], "www.nbcudigitaladops.com": [10875], "common.staticskynet.be": [15433], "disaster.nlm.nih.gov": [11052], "blog.cr.yp.to": [3748], "www.wpstartbox.com": [15406], "verisign.com.au": [17623], "bleutrade.com": [2071], "ch.norton.com": [11505], "samba.catracalivre.com.br": [2908], "faq.kaywa.com": [8827], "www.myiuhealth.org": [7867], "www.healthtap.com": [7258], "*.nardikt.ru": [7325], "*.gameswelt.de": [6442], "*.translink.co.uk": [16675], "www.obsproject.com": [11609], "rtek2000.com": [13471], "maps.yandex.com.tr": [18649], "www.aswirlgirl.com": [1307], "secure.walmartimages.com": [17965], "images.akban.org": [764], "*.huffingtonpost.com": [7600], "www.drownedinsound.com": [4774], "docs.freeswitch.org": [6130], "mi-pro.co.uk": [8226], "www.tescofinance.com": [16136], "catarse.me": [2899], "uniblue.com": [17180], "www.hifx.co.uk": [7387], "envy.zenspider.com": [18832], "deportes.unizar.es": [17356], "croscill.com": [3811], "chiclet.ymlp.com": [18722], "medienstiftung-hsh.de": [10195], "svbtle.com": [15670], "pitt.edu": [17332], "www.vindico.com": [17720], "piwik.accessnow.org": [447], "hinckley-bosworth.gov.uk": [7412], "static.1wt.eu": [48], "trust.taobao.com": [15951], "www.publicsuffix.org": [13215], "jobs.upc-cablecom.ch": [19716], "www.code.osu.edu": [11760], "www.m6d.com": [10149], "dezertdepot.com": [4436], "tac.bis.doc.gov": [17058], "www.filterdigital.com": [5813], "www.kickstarter.com": [8881], "ads.hospitalityleaders.com": [7500], "docs.gimp.org": [19218], "mail.kde.org": [8718], "fanpagegeneratorpro.rhinosupport.com": [13862], "www.womeninnovatemobile.com": [18405], "www.wolfsonmicro.com": [18401], "leads.demandbase.com": [4342], "static.rbl.ms": [13592], "www.intelligentexploit.com": [8216], "youtube.com.ar": [18709], "www.thisismynext.com": [16371], "www.getbootstrap.com": [6609], "skilldrum.com": [1111], "apac.littlehotelier.com": [9474], "go.twenga-solutions.com": [16872], "edelivery-hqdc-test.oracle.com": [12082], "www.me.washington.edu": [17290], "media.cdn.liquidweb.com": [9443], "www.trustly.se": [16797], "qpbs.imageg.net": [6388], "wiki.argonit.cz": [1183], "perfectmarket.com": [12560], "cathaypacifichost.com": [2904], "help.dyn.com": [4820], "static.media.ccc.de": [2538], "ezgram.com": [5002], "failai.serveriai.lt": [14616], "stg-coupons.paypal.com": [12467], "ekt.rt.ru": [13469], "www.partspider.com": [12417], "i9.c.dk": [2498], "instantpage.me": [8187], "osmglobal.com": [11673], "www.code.org": [3345], "campuspack.eu": [2785], "bizrate.com": [2033], "www.lookingglass.email": [9598], "export.cr.yp.to": [3748], "www.syncany.org": [15727], "thesaturdaypaper.com.au": [16309], "printservice.web.cern.ch": [2575], "www.asc.osu.edu": [11760], "support.rovio.com": [13989], "hypernews.cern.ch": [2574], "debuggify.net": [4279], "sell.2.taobao.com": [15952], "fins.com": [11321], "chatango.com": [3032], "www.it.arch.ethz.ch": [4975], "webroot.com": [18140], "sts.psc.gov": [19525], "cff.ch": [15693], "filmlush.com": [5811], "*.modernlivingmedia.com": [17540], "secure.fangamer.com": [5653], "account.infousa.com": [8110], "vpnsecure.me": [17505], "media.8chan.co": [204], "ph.godaddy.com": [6773], "www.cs.washington.edu": [17291], "bedford.gov.uk": [18986], "www.neverddos.com": [11285], "support.mozillamessaging.com": [10661], "login.modernus.is": [10525], "www.ewent.ya.ru": [18626], "wyndhamrentals.com": [18490], "mc.skycure.com": [19599], "www.pantheos.com": [12374], "i.shareasale.com": [14661], "www.yts.to": [18623], "vantiv.com": [17562], "polisforbundet.se": [12869], "figue.com": [5574], "www.wimp.com": [18323], "www.giving.acs.org": [929], "www.webcitz.com": [18057], "lessig2016.us": [9260], "success.parature.com": [12396], "equella.nottingham.ac.uk": [11528], "www.mythic-beasts.com": [10850], "shoeshow.com.au": [14713], "www.fye.osu.edu": [11760], "questcomp.com": [13352], "kmart.com": [8937], "dollaraday.co": [4643], "www.orioninc.com": [12109], "wykop.pl": [18488], "www.poweredbypaquin.com": [12999], "www.dispenser.tf": [4568], "s.thebrighttag.com": [2325], "feeds.tv2.dk": [15881], "b-linked.bbyo.org": [18978], "www.cornell.edu": [3676], "tmz.com": [15832], "globalnetwork.pl": [6727], "gavelbuddy.com": [6470], "www2.eiffel.com": [5124], "img1.leboncoin.fr": [19351], "gathering.geogebra.org": [6537], "spreturns.eastsussex.gov.uk": [19142], "www.itpol.dk": [8392], "people.collabora.com": [3419], "*.ssrn.com": [14183], "sources.debian.net": [4273], "www.greenpeace-jugend.de": [6934], "youtube.sa": [18709], "tdp-feedback.truste.com": [15856], "traq.exitec.com": [5496], "www.moodsmith.com": [10570], "nyc.gov": [11292], "biox.stanford.edu": [15383], "www.certivox.com": [2966], "www.precursorapp.com": [13022], "ucsdbkst.ucsd.edu": [16939], "www.filecrypt.cc": [19178], "www.ct.gov": [2680], "suite.tiki.org": [16444], "www.praegnanz.de": [13010], "feedback.yandex.by": [18648], "kbb.com": [8844], "www.evaske.com": [5435], "heidelberg.de": [7283], "csie.org": [2671], "blackpool.gov.uk": [2056], "www.attac.at": [1334], "eu-st.xhamster.com": [18515], "codeclubpro.org": [3355], "bitmessage.org": [2008], "www.firstvds.ru": [5872], "www.versioneye.com": [17634], "servedbyadbutler.com": [518], "mathsys.aalto.fi": [390], "www.endesa.pt": [5247], "*.cyon.ch": [3981], "www.uefidk.com": [17113], "collada.org": [2637], "wd2go.com": [17898], "rprportal.wustl.edu": [17993], "*.siteor.com": [14883], "www.icommunity.fr": [7701], "ssl7.ovh.net": [12173], "www.sirrix.com": [14859], "cdn.flowtab.mobi": [5949], "spendvision.com": [19618], "gifts.wustl.edu": [17993], "maps.me": [9976], "www.iai.inf.tu-dresden.de": [15871], "portalcontent.johnshopkins.edu": [8611], "learningbizpackage.com": [9213], "*.online-convert.com": [11867], "sso.liveperson.net": [9493], "bebo.com": [1743], "www.dosomething.org": [4687], "mail.action.at": [266], "acls.org": [249], "forum.hornbach.de": [7496], "www.hackerexperience.com": [7144], "scratch.mit.edu": [9749], "www.statefarm.com": [15418], "*.drugstore.com": [4779], "efadatacollections.education.gov.uk": [19149], "jud2.ct.gov": [2680], "city.yandex.com": [18651], "magicalbutter.com.au": [9857], "flic.kr": [5916], "training.linuxfoundation.org": [9412], "*.unix4lyfe.org": [17354], "www.sharefile.com": [14663], "dialshield.com": [1463], "bidtellect.com": [1848], "*.database.com": [4195], "s.brighthub.com": [2326], "wachtwoord.kuleuven.be": [8816], "myaccount.charter.com": [3020], "jmall.360buy.com": [111], "nic.br": [10919], "app.cloudforge.com": [3288], "www.mah.se": [9709], "nasastg.gpehosting.com": [6376], "artchristina.com": [1221], "ubuntu-eu.org": [17094], "www.xgaming.com": [18513], "media.ign.com": [7730], "news.usc.edu": [17278], "blogs.intel.com": [8209], "tr.apsislead.com": [1140], "catalysts.osu.edu": [11760], "fedoraproject.org": [5726], "www.mercurynews.com": [10280], "wammo.co.nz": [8928], "aspectsecurity.com": [1271], "passwort.gmx.net": [6350], "www.nervous.io": [11163], "realperson300.net": [12071], "soundonsound.com": [15159], "*.domaintank.hu": [4665], "webmail.graasmilk.net": [6878], "www.evermeet.cx": [5448], "www.freecode.com": [6161], "cdn.webtrends.com": [18171], "www.blog.nodejitsu.com": [11453], "www.sbrf.ru": [14322], "courtlistener.com": [3720], "es.pcpartpicker.com": [12497], "i.kfs.io": [8872], "ifc.org": [8258], "www.linuxacademy.com": [9418], "*.mephi.ru": [10267], "www.visualstudio.com": [17785], "movie4k.tv": [10636], "www.fastcompany.com": [5670], "forum.nationstates.net": [11044], "a7.sphotos.ak.fbcdn.net": [5700], "oxforddictionaries.com": [12191], "theinformation.com": [16293], "www.mobihand.com": [10491], "www.actel.com": [489], "communitiestest.acs.org": [929], "www.privatelee.com": [13103], "*.panasonic.com": [12354], "movie4k.to": [10636], "ssl.informatics.uow.edu.au": [17350], "www.hertz.pl": [7358], "metadata.eduid.cz": [5097], "www.avonmaquiagem.com.br": [1455], "www.orgreenoptics.com": [12105], "securepaynet.net": [14507], "hifx.co.uk": [7387], "register.sparklabs.com": [15220], "shop.haymarket.com": [7249], "filmthreat.com": [5805], "wms.assoc-amazon.fr": [1290], "interference.cc": [8248], "miapple.me": [10333], "www.hertz.pt": [7359], "www.crowdrise.com": [3827], "designernews.co": [4388], "ecc.earthdata.nasa.gov": [10869], "www.freedomboxfoundation.org": [6174], "rhinosoft.com": [13861], "www.nytm.org": [10988], "*.naacp.org": [10861], "afcea.org": [280], "adamcaudill.com": [553], "*.whstatic.com": [18290], "www.ethicspoint.com": [5383], "bst6.gismeteo.ru": [6669], "www.itunes.com": [7865], "www.directbox.eu": [4529], "secure.sextoy.com": [14644], "doncasterhrportal.rotherham.gov.uk": [13979], "www.wpi.edu": [18426], "api-devint.dwolla.com": [4816], "warosu.org": [17983], "*.kriso.lv": [9013], "nqsb.io": [11544], "santuario.apache.org": [1086], "bbc.in": [1920], "photo.kaywa.biz": [8826], "kino.web.de": [18050], "www.applytracking.com": [1128], "lift.awp.nhs.uk": [10913], "filmon.com": [5812], "1800quitnow.cancer.gov": [2805], "bio-ontologies.knowledgeblog.org": [8948], "scaleengine.com": [14327], "aircrack-ng.org": [750], "www.solihull.gov.uk": [15122], "www.spsn.net": [15321], "api.qunitjs.com": [13292], "devblog.mediamath.com": [10157], "www.pricezombie.com": [13054], "www.hunchlab.com": [7618], "lternet.edu": [9103], "pointshound.com": [12853], "dvdfab.com": [4088], "www.oucs.ox.ac.uk": [17271], "studentaid.ed.gov": [4889], "www.tryzen99.com": [16807], "anubisnetworks.com": [1073], "www.egenix.com": [19134], "www.thehackerblog.com": [16289], "ssl.email.163.com": [35], "secure.somethingawful.com": [15130], "nsrl.bnl.gov": [19009], "www.mewsite.com": [10326], "rossiercareers.usc.edu": [17278], "partnerlocator.trendmicro.eu": [16716], "www.food.gov.uk": [19187], "*.bizjournals.com": [16180], "docs.webplatform.org": [18079], "www.panoramio.com": [12366], "facebook.de": [5623], "youtube.com.my": [18709], "awempire.com": [647], "connect.sensiolabs.com": [14586], "uhub.org": [17121], "www.unmitigatedrisk.com": [17360], "www.gnuradio.org": [6359], "facebook.dk": [5623], "suprizkizlar.com": [15641], "studentportal.strode-college.ac.uk": [15528], "digitalwpc.com": [4502], "media8.congstar-media.de": [3576], "www.lib.washington.edu": [17291], "restaurants.just-eat.co.uk": [19328], "regi.laptop.hu": [9155], "www.equalit.ie": [4947], "apps.staffordshire.gov.uk": [15370], "i.techweb.com": [16021], "pipni.cz": [12257], "neowiki.neooffice.org": [11150], "prochoice.org": [11074], "packages.deepin.com": [4302], "*.4chan.org": [158], "www.earcu.com": [4869], "content.thunderkick.com": [16406], "passwd.hu": [12431], "nm.newegg.com": [11316], "devilteam.pl": [4424], "*.rtfd.org": [13611], "www.hertz247.pt": [7359], "belnet.be": [1769], "gentoo-handbook.lugons.org": [9108], "dns-oarc.net": [4059], "www.up1.ca": [17380], "static.shaun.net": [14685], "di.dk": [3566], "*.pixiq.com": [12742], "shop.hbo.com": [7047], "lkd.org.tr": [9086], "brasil.fronter.com": [19200], "zerzar.com": [18849], "heg.com": [7502], "electroscience-new.engineering.osu.edu": [11760], "www.chriscowley.me.uk": [3103], "lohud.com": [9564], "www.ycharts.com": [18613], "www.greatnet.de": [6909], "www.cabforum.org": [2506], "static.zenimax.com": [18830], "account.live.com": [9483], "centrallancs.greenparty.org.uk": [6925], "ya.ru": [18626], "upvoted.com": [17403], "www.christianbook.com": [3112], "www.jivesoftware.com": [8585], "store.office.com": [11743], "subscribe.newstatesman.com": [11311], "*.ufl.edu": [17253], "superherotrainingnetwork.com": [15630], "www-amsweb-ext.imf.org": [7757], "imageshack.*": [7981], "go.nasa.gov": [1920], "www.cryptodesign.org": [3868], "*.wegotwax.com": [18020], "investor.gov": [8321], "s3.mt-cdn.net": [9798], "www.dd-wrt.com": [4018], "www.gitter.im": [6684], "www.frascaticafe.nl": [6106], "p3nmssqladmin.secureserver.net": [14511], "*.umii.umass.edu": [17265], "youtube.cz": [18709], "audioscrobbler.com": [1360], "assets.newscheckmedia.com": [11340], "gdata.com.mx": [6293], "wiki.debian-fr.org": [4271], "wierden.nl": [11132], "extras.altoonamirror.com": [894], "www.skm.io": [14916], "beartalk.berkeley.edu": [17240], "ssl.cdngc.net": [2560], "bradford.moderngov.co.uk": [19405], "autodiscover.comp.leeds.ac.uk": [17318], "et09.xhcdn.com": [18514], "www.risi.com": [13433], "cdn.ycombinator.com": [7141], "www.urltrends.com": [17413], "ahmia.fi": [738], "wiki.pirateparty.ca": [12712], "abdn.ac.uk": [405], "housing.voa.gov.uk": [19739], "*.tox.im": [16617], "squarefree.com": [15331], "*.shutterfly.com": [14754], "b3.manchester.gov.uk": [9944], "mail.live.com": [9483], "secure.skandiabanken.no": [14895], "www.nzbindex.com": [11002], "adobe.com": [615], "cybermap.kaspersky.com": [8806], "carlosprioglio.com": [2854], "elie.im": [5164], "raceforlife.cancerresearchuk.org": [19035], "sc4.rgstatic.net": [13422], "orderbook.net": [12096], "www.ris.bka.gv.at": [13431], "*.emulex.com": [5226], "looktothestars.org": [9596], "coloradocaptures.com": [3441], "www.cilkplus.org": [3135], "accounts.bizo.com": [2031], "*.voicefive.com": [17820], "www.counterwallet.io": [3708], "champssports.com": [2991], "nabtrade.com.au": [10865], "*.ittoolbox.com": [7857], "fnh.utoronto.ca": [17343], "33bits.org": [102], "cryptonator.com": [3883], "www.skrill.com": [14919], "analytics.freepress.net": [6147], "ceasefiremagazine.co.uk": [2925], "euobserver.com": [4982], "emailmarketing.techxpress.net": [16022], "www.specialforces.com": [15240], "www.patentbaristas.com": [12448], "selfservice.peterborough.gov.uk": [12594], "webmail.iu.edu": [8064], "sockassist.com.au": [16102], "support.cumulusnetworks.com": [3919], "dl.fedoraproject.org": [5726], "scottishpower.co.uk": [14400], "www.library.jhu.edu": [16296], "fex.rus.uni-stuttgart.de": [17281], "research.de.com": [10218], "tbray.org": [15788], "dedyn.io": [19107], "bund.de": [17647], "monitoring.stanford.edu": [15383], "transformativeworks.org": [16667], "webthumbnail.org": [18163], "zkb.ch": [19333], "support.surfeasy.com": [15649], "cdn.hymnal.voxmedia.com": [17852], "mmoga.com": [9763], "www.eastsussexlearning.org.uk": [19144], "fanboy.co.nz": [5650], "www.mca-marines.org": [9726], "www.spankwire.com": [15217], "foxydeal.com": [6088, 6089], "vimeo.com": [17717], "mailxchange.1and1.co.uk": [53], "yorkfitness.com": [18696], "fxn.ws": [1920], "bgr.com": [1515], "readynas.com": [13619], "webmercs.com": [4170], "isiknowledge.com": [18107], "invitation.chaisdoeuvre.fr": [2982], "special.megamozg.ru": [19394], "www.gdata.es": [6293], "www.wolframcdn.com": [18398], "exhibition.ecc-platform.org": [4879], "mara.gov.au": [11750], "blazonco.com": [2064], "inted.oie.buffalo.edu": [17297], "new.aol.com": [321], "*.further.co.uk": [6271], "codeweavers.com": [3353], "shopping.rspb.org.uk": [13460], "www.superherotrainingnetwork.com": [15630], "staticstuff.net": [6610], "www.snacktools.com": [15020], "www.inuits.eu": [8309], "www.jauce.com": [19317], "cacher.dozuki.net": [4731], "gemoney.com.au": [6315], "files8.adme.ru": [606], "east-northamptonshire.gov.uk": [5012], "www.leastfixed.com": [9217], "www.avonandsomerset.police.uk": [1454], "support.socrata.com": [15082], "econnect.stanfordmed.org": [15387], "member.1688.com": [36], "www.simple.com": [14820], "data.glasgow.gov.uk": [6699], "truste.com": [15856], "survey.usa.gov": [17029], "rnpdigital.com": [13441], "arbeitsagentur.de": [1152], "secure.critpath.org": [3803], "www.ventoso.org": [17609], "img01.bt.co.uk": [1548], "www.easy2coach.net": [5021], "*.totemapp.com": [16606], "active.com": [497], "*.insightmgr.com": [4507], "www.lendingclub.com": [9246], "api.snelis.com": [15033], "www.broadbandreports.com": [4081], "activemq.apache.org": [1086], "b-europe.com": [14142], "completion.amazon.co.uk": [910], "nacdl.org": [10866], "pipping.org": [12702], "article19.org": [1231], "fbdatesecure.com": [8426], "webmail.orkz.net": [12111], "ferroh.com": [5758], "www.intelexit.org": [8212], "*.das-elena-verfahren.de": [4922], "gismeteo.ua": [6670], "anarchistnews.org": [990], "ceviri.yandex.com.tr": [18649], "www.thalescomminc.com": [16169], "prepaid-phones.t-mobile.com": [15772], "www.tacoma.uw.edu": [17077], "www.mullvad.net": [10694], "nvidianews.nvidia.com": [10982], "edinburgh.pirateparty.org.uk": [12714], "dane.xelerance.com": [18554], "nadaguides.com": [10867], "www.epay.bg": [4944], "comparethemarket.com": [3511], "research.brown.edu": [2367], "umass.edu": [17265], "archlinux.fr": [1159], "www.vorratsdatenspeicherung.de": [295], "*.wikimedia.ch": [18296], "booking.hillingdon.gov.uk": [7410], "www.trustworthyinternet.org": [16800], "static.oculusvr.com": [11722], "*.chdir.org": [3038], "img01.taobaocdn.com": [15953], "trustedshops.co.uk": [16787], "cdn.softlayer.com": [15093], "www.energystar.gov": [5256], "www.dobrochan.ru": [4612], "www.ifortuna.sk": [7947], "s3.mzstatic.com": [10852], "syndie.de": [15734], "mtrics.cdc.gov": [19046], "mousejack.com": [19410], "www.bato.to": [18985], "sofurry.com": [15048], "app.balboa.io": [1626], "*.pirate-party.ch": [12284], "dev.rsaconference.com": [13454], "aktivix.org": [771], "remedyweb.stanford.edu": [15383], "teac.co.jp": [15804], "static.chefkoch-cdn.de": [3058], "nettica.com": [11252], "accounts.gigaom.com": [6644], "www.allianz-fuer-cybersicherheit.de": [852], "wiki.fsfe.org": [5601], "sll.org.uk": [15076], "consult.cheshirewestandchester.gov.uk": [19057], "motorolasolutions.com": [10615], "orders.cspinet.org": [2675], "www.firmas.lv": [5865], "www.mountspace.com": [10621], "alwaysdata.com": [898], "geekevents.org": [6501], "www.cryptocapital.co": [3867], "afsp.org": [931], "help.5apps.com": [176], "clinicalkey.com": [3267], "datapipe.com": [4212], "go4gold.uol.com.br": [16998], "licensee.garfield.com": [6459], "www.gchq-careers.co.uk": [6307], "cimjsea.engineering.osu.edu": [11760], "school-of-engineering-faculty-search.mit.edu": [9749], "d.pcs.baidu.com": [1619], "www.vectorborne.fralin.vt.edu": [17740], "devel.rtems.org": [13472], "online.dudley.gov.uk": [4794], "cdn.mytemp.email": [10790], "ads.ventivmedia.com": [17608], "fastwebmedia.com": [5671], "ssl-certificate-center.verisign.dk": [17623], "scotch.io": [14395], "3down.mit.edu": [9749], "backstreet-merch.com": [1603], "www.newscientistsubscriptions.com": [11299], "2ch.hk": [92], "liveclicker.com": [9504], "www.davpack.co.uk": [4234], "newsmaxhealth.com": [11343], "gigenetcloud.com": [6657], "wachtwoord.xs4all.nl": [18535], "acw.elsevier.com": [5185], "anonsvn.wireshark.org": [18369], "www.bluemovie.eu": [2126], "webtraxs.com": [18169], "mbeta.efinancialcareers.com": [4911], "ncifrederick.cancer.gov": [2805], "epaper.derstandard.at": [19111], "2015.asiabsdcon.org": [1258], "cp.beastnode.com": [1735], "zapis.cesa.vutbr.cz": [17522], "airasiamegastore.com": [746], "vorarlberg.neos.eu": [10899], "www.archos.com": [1171], "backbonesecurity.com": [1596], "www.piratpartiet.se": [12723], "kali.org": [8771], "studyinaustralia.gov.au": [15543], "www.acluidaho.org": [16176], "2011.eurobsdcon.org": [5404], "ebill.neustar.biz": [11280], "collegeclublife.com": [2638], "serpdisplay.yandex.com.tr": [18649], "mediamemo.allthingsd.com": [840], "paysafecard.com": [12486], "taskflow-portal.dundeecity.gov.uk": [4801], "email.osu.edu": [11760], "formsanity.com": [6042], "jd2008.jd.com": [8423], "openwrt.org": [11992], "developer.yammer.com": [18647], "subscriptions.marvel.com": [10038], "lakome.com": [9134], "fluidhosting.com": [5952], "westjet.com": [18206], "democratic.bracknell-forest.gov.uk": [19016], "libs.iraiser.eu": [8353], "*.lelo.com": [9243], "techbriefings.stanford.edu": [15383], "medstudents3.wustl.edu": [17993], "www.portaldaempresa.pt": [6873], "linac4-project.web.cern.ch": [2575], "dansekapellet.kk.dk": [8730], "ti.to": [16408], "bittylicious.com": [2026], "liliani.com.br": [9352], "iljmp.com": [7964], "li.ru": [9487], "www.tarlogic.com": [15965], "hands.com": [7190], "*.lilux.lu": [9284], "cas.cnrs.fr": [6195], "img.buch.de": [16171], "*.hawkhost.com": [7247], "shockmedia.nl": [14711], "assets.picoville.com": [12666], "mudgum.net": [10685], "box-look.org": [19461, 19462], "addons.mozilla.jp": [10655], "velex.htwk-leipzig.de": [7114], "www.phantompeer.com": [12615], "mooc-list.com": [9777], "ausflugstipps.zvv.ch": [19806], "sinsofasolarempire.com": [14853], "bromley.gov.uk": [2360], "tieto.com": [16437], "www.soscisurvey.de": [15050], "sample-default.readme.io": [13608], "doncaster.gov.uk": [4678], "www.v2ex.com": [17463], "www.obi.ru": [19452], "www.tickengo.*": [16411], "assets-cdn.github.com": [6680], "acoustics.org": [477], "*.spreadshirt.se": [15300], "img.washingtonpost.com": [17990], "quiz-uscc.cyberquests.org": [3974], "math.stanford.edu": [15382], "www.listener.co.nz": [9450], "account.nicovideo.jp": [11389], "www.silicon.com": [14789], "www.krita.org": [9014], "lptag.liveperson.net": [9493], "proofwiki.org": [13153], "dieselnet.com": [4460], "webapps.lsa.umich.edu": [17266], "secure.suggest.search.sky.com": [14924], "www.demonbuddy.com": [2230], "changeip.com": [2994], "datacamp.com": [4176], "requester.mturk.com": [9805], "*.naver.com": [11111], "pewdiepie.net": [12605], "corelib.trendmicro.com": [16717], "www.gyazo.com": [7035], "prov.wifi.xfinity.com": [19784], "weboolu.com": [18137], "*.newdream.net": [11288], "security.cpanel.com": [2651], "www.boe.ca.gov": [2508], "jayisgames.com": [8534], "humanityplus.org": [7614], "ul.to": [3952], "info.centrify.com": [19048], "campstaffusa.com": [2776], "*.azchampion.com": [5627], "kfs-prod.adminapps.cornell.edu": [3676], "blog.mthode.org": [10682], "support.zen.co.uk": [18815], "www.renkum.nl": [11132], "*.mobypicture.com": [10506], "messenger.ngageics.com": [11372], "corvisacloud.com": [3688], "techmeme.com": [16029], "petekeen.net": [12588], "www.buergerkraftwerke.at": [18284], "rudi.net": [13479], "cdn.sencha.io": [14576], "www.bluenote.io": [2153], "gcdn.org": [6306], "moikrug.ru": [10532], "login.eloqua.com": [5179], "www.ucat.osu.edu": [11760], "pastas.serveriai.lt": [14616], "ovh.com": [12173], "celartem.com": [2929], "www.triplemint.com": [16745], "learn.sparkfun.com": [15222], "www.talktalktechnology.com": [15928], "www.autorimsandaccessories.com": [1422], "enose.jpl.nasa.gov": [10869], "www.dsp.io": [4787], "*.boingohotspot.net": [2182], "*.reefbuilders.com": [13708], "inews.berkeley.edu": [17240], "www.carsabi.com": [2865], "*.api.sh": [1091], "ramsis.engineering.osu.edu": [11760], "pictures.vimention.com": [17716], "www.rotlogix.com": [13980], "nc-as-images.apple.com": [1120], "checkout.cias.rit.edu": [13434], "learningnetworkstore.cisco.com": [3162], "marvelheroes.com": [10039], "aviation.osu.edu": [11760], "*.eventim.se": [5443], "www.alternalabs.com": [879], "www.jaqpot.net": [8519], "united.com": [17212], "forschung.imn.htwk-leipzig.de": [7114], "img6.leboncoin.fr": [19351], "spdns.de": [14154], "etouches.com": [5389], "webassetsg.scea.com": [14089], "alpinelinux.org": [869], "rabota.yandex.kz": [18652], "www.learnshare.com": [9210], "www.foxitsoftware.com": [6086], "www.issuu.com": [8378], "vivaciti.net": [17796], "help-en-eu.nike.com": [11401], "www.waeplus.co.uk": [17892], "my.mechse.illinois.edu": [17258], "superpetusa.com": [15622], "www.creditreportnation.com": [3791], "icloud.com": [7698], "www.overijssel.nl": [11132], "account.1and1.co.uk": [53], "www.billycreative.com": [1885], "www.ric.org": [13429], "itnews.iu.edu": [8064], "www.webfwd.org": [18062], "www.howtoforge.com": [7574], "www.hmapps.net": [7437], "learn.polyu.edu.hk": [12891], "trial.f-secure.com": [5541], "www.gannett.cornell.edu": [3676], "activate.eiffel.com": [5124], "www.carbonmade.com": [2831], "sbs.e-paycapita.com": [19132], "ems.northlincs.gov.uk": [19439], "searchandpromote.omniture.com": [11803], "*.logilab.fr": [9559], "mediaplex.com": [17541], "bmc.com": [1527], "myservice.xbox.com": [18550], "my.mail.de": [9873], "foreignaffairs.com": [6025], "www.flexnow.rub.de": [13478], "cdn.101domain.com": [12], "frascaticafe.nl": [6106], "cisl.stanford.edu": [15382], "thumb.ccsd.cnrs.fr": [6195], "cs.chromium.org": [3119], "s.lmncdn.com": [9525], "wwwlacie.seagate.com": [14437], "fronter.com": [19200], "spilnu.dk": [15275], "www.bittiraha.fi": [2022], "*.blogs.nytimes.com": [11000], "podpora.endora.cz": [5248], "blog.shopstyle.com.au": [14719], "rs.mail.ru": [9874], "springshare.com": [15313], "www.yp4h.osu.edu": [11760], "staticassets.courierpostonline.com": [3715], "epa-bprg.ornl.gov": [11693], "test.uptobox.com": [19718], "www.phoenix.de": [19492], "www.omnetpp.org": [11636], "visualwebsiteoptimizer.com": [17783], "www.podio.com": [12846], "partners.nvidia.eu": [10984], "realworldocaml.org": [13629], "qualys.com": [13333], "ethernetportal.equinix.com": [5334], "www.upc-cablecom.ch": [19716], "*.sywcdn.net": [14210], "egenix.com": [19134], "landscape.io": [9141], "backlot.ooyala.com": [11900], "slides.google.com": [6834], "wifidb.net": [18272], "ad.adlegend.com": [602], "forum.doom9.org": [4682], "ucom.osu.edu": [11760], "www.hosting9000.com": [7528], "simulab.fsaa.ulaval.ca": [17229], "www.education.gov.uk": [19149], "www.adap.tv": [554], "ftp.rnl.ist.utl.pt": [16033], "vodafone.de": [17814], "*.atsb.gov.au": [1403], "en-es.dict.cc": [4455], "tirerack.com": [16495], "access-kaiseki-tools.com": [444], "hoeringsportalen.dk": [7443], "threattracksecurity.com": [16395], "www.gamesrocket.de": [6439], "payment.neustar.com": [11282], "exratione.com": [5473], "www.hiconversion.com": [7386], "cryptoseal.com": [3864], "metager.de": [10298], "andrewblum.net": [1001], "www.arts.cornell.edu": [3676], "www.jimshaver.net": [8570], "www.blackberry.com": [2050], "sumologic.com": [15592], "rbdigital.com": [19537], "honeynet.org": [19257], "cp.gohsphere.com": [8607], "popads.net": [12902], "*.powerhosting.dk": [13000], "crypto.stanford.edu": [15383], "*.buzzfed.com": [2473], "*.cbsstatic.com": [2526], "*.democracyinaction.org": [4354], "jsna.portsmouth.gov.uk": [19508], "zoho.jp": [18883], "www-sop.inria.fr": [8159], "cgi.stanford.edu": [15383], "*.nibcdirect.nl": [10916], "levonline.com": [9277], "xperiencedays.com": [18584], "www.jako-o.de": [8496], "www.forms.portsmouth.gov.uk": [19508], "tchibo.hu": [15985], "api.scratch.mit.edu": [9749], "www.techweekeurope.fr": [11198], "ohm2013.org": [11624], "www.pengpod.com": [12534], "*.thewire.com": [16325, 16326], "sinergie.misy.eu": [4896], "conferencecenter.stanford.edu": [15382], "impsec.org": [8010], "ratgeber-verbraucherzentrale.de": [17617], "www.firelady.com": [5862], "t.onthe.io": [11890], "findip-address.com": [19180], "myaccount.dedicatedgaming.com.au": [4291], "c0-blog.flirble.org": [16191], "www.f5.com.cn": [5545], "auctionthing.net": [1345], "www.playboystore.com": [12800], "www.internetweek.jp": [8287], "cdn.pcpartpicker.com": [12497], "transmode.com": [16678], "download.bethere.co.uk": [16075], "www.taskforce.is": [15970], "www.codingteam.net": [3384], "forums.site24x7.com": [14861], "www.pheedcontent.com": [12617], "gogetssl.com": [6780], "affiliate.mediatemple.net": [10165], "forum.mamp.info": [19379], "c4tw.net": [2505], "unity.ubuntu.com": [17102], "www.redditgifts.com": [13693], "www.bediff.com.br": [1723], "research.stonybrook.edu": [15480], "greystripe.com": [6948], "content.ad": [3610], "*.allpoetry.com": [860], "fsrio.nal.usda.gov": [17209], "community.us.playstation.com": [12795], "www.freescale.com": [6183], "adaptavist.com": [555], "assets.qa.medicare.gov": [19392], "jcore.fr": [8420], "mivamerchant.com": [10463], "toughchoices.co.uk": [19690], "myaccount.nytimes.com": [11000], "link.p0.com": [8110], "fsf.org": [5600], "emergency.wustl.edu": [17993], "www.kaspersky-cyberstat.com": [8805], "api.chain.com": [2980], "www.panic.com": [12361], "abusix.com": [432], "dof.dk": [4633], "plug.dj": [12822], "efile.fara.gov": [19175], "blog.webplatform.org": [18079], "www.yoyogames.com": [19797], "ripe65.ripe.net": [13895], "gettyimages.com.au": [6621], "www.grouplogic.com": [6969], "*.clusters.de": [3325], "helpdesk.crashplan.com": [3762], "blog.creativecommons.org": [3778], "mobigum.com": [10489], "*.mersenne.org": [10286], "toplink.weforum.org": [17902], "rocrsubmissions.ic.nhs.uk": [10913], "full.pr0gramm.com": [19514], "citizensadvice.org.uk": [19062], "cdn.cpnscdn.com": [3712], "twoseasons.co.uk": [16896], "sendcloud.sohu.com": [15103], "hsprod.investis.com": [8320], "share.confex.com": [3567], "mbhd2013.stanford.edu": [15383], "checkip6.dedyn.io": [19107], "rpxnow.com": [13449], "csis.org": [2674], "www.maysoft.com": [10102], "*.tamu.edu": [16154], "uni-hannover.de": [17168], "www.monmouthshire.gov.uk": [10560], "www.loopt.com": [9608], "os-cillation.de": [12115], "www.mailpile.is": [9890], "install.winzip.com": [18333], "s6.uicdn.net": [16958], "piwik.ovpn.se": [11688], "plugins.longtailvideo.com": [9589], "files.cloudprivacy.net": [3279], "www.secureholidays.com": [18490], "www.danielmiessler.com": [4143], "footprintnetwork.org": [6713], "www.frack.nl": [6092], "hits.dealer.com": [4256], "learningzone.northyorks.gov.uk": [19440], "public.gamedev.net": [6418], "degreeaudit.osu.edu": [11760], "support.bistudio.com": [2179], "fiber.google.com": [6834], "static.nortoncdn.com": [11505], "*.harriscomputer.com": [7212], "computec-academy.de": [3532], "advantagemedia.com": [650], "wp-poc.details.com": [4400], "melectronics.ch": [19399], "secure.vexxhost.com": [17657], "webchat.cyberguerrilla.org": [3961], "e0.xhamsterpremiumpass.com": [18516], "www.threema-forum.de": [16398], "expense.console.aliyun.com": [821], "*.jeena.net": [8543], "performancehorizon.com": [12567], "blogs.cornell.edu": [3676], "www.popsugar.com": [12911], "www.stg.xfinity.com": [19783], "www.instapaper.com": [8189], "enom.com": [5281], "minilock.io": [10419], "techpageone.dell.com": [4335], "support.audioboom.com": [18970], "vitalmend.com": [17788], "csc.com": [2666], "enterprise.podomatic.com": [12839], "7headlines.com": [189], "ccem.osu.edu": [11760], "meetic.com": [10216], "headstrong.de": [7256], "zhstatic.zhihu.com": [18856], "kurgan.rt.ru": [13469], "static.ddmcdn.com": [4019], "libreboot.org": [9315], "*.rgj.com": [13767], "virginmedia.com": [17737], "fossbazaar.org": [5588], "forums.somethingawful.com": [15130], "www.ctftime.org": [2684], "www.bigbrotherawards.de": [1852], "paloaltonetworks.com": [12349], "my.st.com": [14186], "beamyourscreen.de": [1730], "usni.org": [17046], "karmankardon.nl": [7208], "www.myeddebt.com": [9814], "qt-project.org": [13314], "0images-production.ideeli.com": [7931], "pt.libreoffice.org": [9311], "www.digitaltrends.com": [4501], "cindercooks.com": [3140], "alt.fedoraproject.org": [5726], "stats.capitalone360.com": [2819], "*.weblate.org": [18127], "oascentral.businessinsider.com": [2454], "www.switchadhub.com": [15701], "*.mozdev.org": [10646], "services-sj.mediusviewer.com": [10199], "www.blocktogether.com": [2088], "www.relate.org.uk": [13751], "karriere.rewag.de": [13416], "www.phishd.com": [12630], "access.redhat.com": [13675], "*.hitbtc.com": [7420], "www.inkscape.org": [8149], "www.frascatitheater.nl": [6108], "thehoxton.com": [16291], "sct.gov.au": [15624], "2014.wooconf.com": [18415], "swww.tokbox.com": [16532], "www.dovetailservices.com": [4719], "pma.ocf.berkeley.edu": [17240], "www.1337x.org": [30], "*.actonsoftware.com": [486], "account.level3.com": [9267], "express.ikoula.com": [7963], "www.broadbandchoices.co.uk": [2352], "www.family.utoronto.ca": [17343], "amahi.org": [906], "www.webjet.co.nz": [18124], "beartracks.berkeley.edu": [17240], "bodyworkmovementtherapies.com": [8642], "commonimages.web.cern.ch": [2575], "www.saas.harvard.edu": [7219], "pistoncloud.com": [12727], "www.sustainability.wustl.edu": [17993], "www2.barnsley.gov.uk": [18983], "www.flowbtc.com": [5944], "telia.se": [16099], "zipler.ru": [18873], "go.jd.com": [8423], "href.li": [7578], "simmtester.com": [14814], "www.las.portsmouth.gov.uk": [19508], "career.balabit.com": [1624], "www.franceserv.fr": [6098], "www.youtube.pe": [18709], "simplystamps.com": [14832], "careers.scs.illinois.edu": [17258], "www.youtube.pl": [18709], "deda.dict.cc": [4455], "userstyles.org": [19721], "blogs.brown.edu": [2367], "images.freescale.com": [6183], "wiki.15m.cc": [32], "on.ft.com": [5826], "www.zyngaplayersupport.com": [18934], "blog.epa.gov": [4938], "docs.syncthing.net": [15732], "www.youtube.pr": [18709], "trendmicro.de": [16715], "support.citrixonline.com": [3179], "cdn.leafletjs.com": [9203], "www.getdigital.fr": [6572], "cimbsecurities.co.th": [2608], "jaspan.com": [8524], "www.niif.hu": [10929], "prudentbear.com": [13184], "www.crikey.com.au": [3796], "buzzeff.com": [2479], "app.compendium.com": [3516], "thecenterforrights.org": [16255], "nedstat.com": [3453], "thread.com": [16389], "norwegianclass101.com": [11509], "www.gkg.net": [6337], "www.des.ikea.com": [7959], "www.ohiostatealumni.org": [11764], "www.politie.nl": [11132], "git.anomos.info": [1033], "www.openinfosecfoundation.org": [12015], "gsi.de": [6389], "autoconfig.cs.berkeley.edu": [17240], "uifw.ekmsecure.com": [5134], "www4.basildon.gov.uk": [18984], "www.cybermill.com": [3973], "bitcoin.de": [1966], "phishtank.com": [12629], "sitemason.com": [14881], "education.mongodb.com": [10553], "unibet.com.au": [17179], "uzman.yandex.com.tr": [18649], "signature.microsoft.com": [10364], "appstream.debian.org": [4275], "dl.heroesofnewerth.com": [14061], "app.musicmetric.com": [10719], "april.org": [1139], "graasmilk.net": [6878], "tbcdn.talentbrew.com": [19658], "us.elsevierhealth.com": [5187], "www.stonewallscotland.org.uk": [19631], "www.cryptoexperts.com": [3858], "www.htbridge.com": [7115], "dutchbulbs.co.uk": [4812], "da.virginmedia.com": [17737], "www.altinget.dk": [891], "*.theserverexpress.com": [14611], "bookings.jucy.co.nz": [8463], "metrics.defenseone.com": [4311], "spocc.walthamforest.gov.uk": [17966], "timetrade.com": [16455], "e-prawnik.pl": [4858], "focus.ti.com": [16152], "windowmaker.org": [18339], "search.debian.org": [4275], "*.syncboss.com": [15726], "jonathan.porta.codes": [12933], "thedailybeast.com": [16265], "1and1.ca": [52], "aokplus-online.de": [317], "adsimilis.com": [631], "forum.ovh.ie": [12173], "arangodb.com": [1151], "*.golang.org": [6792], "www.ivarch.com": [8399], "doubleclick.net": [4716], "www.sockshare.com": [15081], "vle.cam.ac.uk": [17243], "www.anarchistnews.org": [990], "www.soeren-hentzschel.at": [15086], "events.venturebeat.com": [17611], "theses.cz": [16350], "www.aquilaclothing.co.uk": [1146], "wiki.xfce.org": [18512], "connect.linaro.org": [9361], "forum.librivox.org": [9318], "lockerdome.com": [9544], "mailgate.phys.ens.fr": [4930], "www.rent2buy.com.br": [7340], "app.waterfall.com": [19746], "www.ousa.org.uk": [11986], "broker.bitcointoyou.com": [1986], "www.nuimagemedical.com": [11565], "www.vocativ.com": [17811], "myoptplussecure.com": [10812], "desktop.vip.symantec.com": [15715], "www.livelingua.com": [9501], "donate.greenpeace.org": [6937], "support.untangle.com": [17370], "ebar.ohiobar.org": [11763], "www.lunarpages.co.uk": [569], "www.vitalgamers.com": [17789], "platform.html5.org": [7589], "*.solution.weborama.fr": [18138], "online-offshore.lloydstsb.com": [9523], "wiki.automotivelinux.org": [1429], "www-zeuthen.desy.de": [4399], "stda.ilius.net": [10216], "memcenter.maximintegrated.com": [10096], "www.sparkfun.com": [15222], "homer.ornl.gov": [11693], "114.1688.com": [36], "www.cryptonit.net": [3884], "tucowsdomains.com": [16816], "maykop.rt.ru": [13469], "*.zillow.com": [18865], "virk.dk": [17741], "blog.zazzle.com": [18804], "www.google-melange.com": [6842], "slysoft.com": [14975], "e.huffpost.com": [7599], "highfidelity.io": [7402], "js-fr.thinksteroids.com": [9737], "login.dynatrace.com": [4825], "chatter.com": [3034], "sociamonials.com": [15074], "myposte.poste.it": [12965], "msoftdl.360.cn": [106], "uz.taobao.com": [15951], "www.xpda.com": [19787], "idenyt.dk": [7941], "es.witness.org": [18382], "www.netnewscheck.com": [11200], "tcli.ed.gov": [4889], "socrata.com": [15082], "results.gentlelabs.com": [6528], "cdn-img.fimfiction.net": [5816], "www.rohc-lib.org": [13444], "deusm.com": [4405], "www3.formassembly.com": [6040], "atlanticmetro.net": [1317], "secure.eth0.nl": [5376], "www.bro.org": [2346], "www.btczone.com": [1565], "www.freedom-to-connect.net": [6166], "cityofchicago.org": [3184], "www.sourceconference.com": [15177], "umail.iu.edu": [8064], "handy.de": [7193], "forms.sophos.com": [15154], "itdashboard.gov": [7856], "w.mlv-cdn.com": [10768], "www.national-lottery.co.uk": [11071], "js.adlink.net": [604], "*.adtraxx.de": [641], "lists.cam.ac.uk": [17243], "russianamericancompany.com": [14046], "gozluk.hizlisaat.com": [7432], "townnews365.com": [16614], "nccc.nl": [11131], "api.bintray.com": [1897], "ssl6.ovh.net": [12173], "www.reasoncoresecurity.com": [13636], "www.verkkouutiset.fi": [17630], "verisign.it": [17623], "purduealum.org": [13233], "www.iter.org": [7847], "careers.talemetry.com": [15919], "tbp.osu.edu": [11760], "partitopirata.ch": [12284], "westminster.gov.uk": [18220], "docs.nuget.org": [11562], "northlancs.greenparty.org.uk": [6925], "xfce-help.org": [19461, 19462], "www.realtimestats.com": [13626], "l2c.co.kr": [9062], "*.subscribenww.com": [11267], "hu.support.tomtom.com": [16540], "www.balkongshoppen.se": [1629], "petfinder.com": [12596], "www.cinemovies.fr": [3141], "*.japantimes.co.jp": [16197], "join.tv": [8615], "bugs.dojotoolkit.org": [4637], "system.vovici.com": [17849], "crypteron.com": [3850], "www.pointshound.com": [12853], "wiki.inka.f4.htw-berlin.de": [7112], "cache.gawker.com": [6476], "torrentfreak.com": [16580], "et05.xhcdn.com": [18514], "tech-recipes.com": [16008], "italian-country-cottages.co.uk": [18490], "thegoodfight.fm": [16282], "beacon.fastly.com": [5687], "apphub.io": [1108], "www.infopankki.fi": [8115], "pentesterlab.com": [19485], "pusher.com": [13252], "familie.nordost.aok.de": [317], "cert.gov.uk": [2578], "apps.stanford.edu": [15383], "cdn.lsistatic.com": [9263], "*.freshmilk.de": [6204], "mcwhirter.com.au": [10123], "*.getgo.de": [6613], "silvertunnel.org": [14803], "www.e17-stuff.org": [19461], "www.covacations.com": [3619], "globaloneteam.com": [6738], "www.marineshop.net": [9999], "fav.m.taobao.com": [15952], "smashfly.com": [15002], "pln.bitcurex.com": [1987], "www.intelrad.com": [8221], "invenio-software.org": [8312], "www.cafemakers.com": [2718], "2012.devcup.evernote.com": [5449], "ctrack.metrics34.com": [10318], "www.sickbits.net": [14759], "www.cpunks.org": [3747], "my.xyratex.com": [18609], "*.wallst.com": [10024], "metapress.org": [10300], "en.flossmanuals.net": [5577], "sopastrike.com": [5783], "www.map.cam.ac.uk": [17243], "ftp.cryptopp.com": [3888], "customer.stg.xfinity.com": [19784], "www.pageloc.com": [18126], "ipxe.org": [7800], "colwizlive.andover.edu": [12623], "webmail.uni-potsdam.de": [17333], "banners.itunes.apple.com": [1120], "avicoder.me": [18973], "www.summitroute.com": [15591], "r9.mzstatic.com": [1119], "alumni.uvm.edu": [17075], "ripe62.ripe.net": [13895], "v.gd": [19726], "wiki.tocco.ch": [16524], "cdn.media.zylom.com": [18929], "home.truelife.com": [16769], "o.qcloud.com": [13301], "*.fcla.edu": [5941], "*.dreamstime.com": [4755], "www.corelio.be": [3672], "common-lisp.net": [3484], "willowgarage.com": [18318], "finmozg.ru": [5848], "apps.fedoraproject.org": [5726], "lists.fedorahosted.org": [5727], "1shoppingcart.com": [46], "noxa.de": [19444], "www.vpncompare.co.uk": [17501], "autorank.jd.com": [8423], "www.capitaloneconnect.*": [2818], "jeth.tk": [3533], "hk.taobao.com": [15952], "www.cl.cam.ac.uk": [17243], "media-cdn.ubuntu-de.org": [17093], "elmbridge.gov.uk": [5174], "ideas.foreignpolicy.com": [6024], "*.scoop.it": [14389], "lightthenight.org": [9344], "apply.commonapp.org": [3483], "www.dfn-cert.de": [4030], "m6r.fr": [9699], "sf2010.drupal.org": [4780], "golinks.magento.com": [9850], "communities.opentext.com": [11984], "www.expeditedssl.com": [5505], "devwiki.pfsense.org": [12607], "locate.apple.com": [1120], "www.ssl2buy.com": [14177], "expresslane.apple.com": [1120], "savvysme.com.au": [14318], "front.facetz.net": [5625], "www.teach-ats.ed.gov": [4889], "pvac-sites.leeds.ac.uk": [17318], "www.techhouse.org": [16012], "freedom.press": [6168], "1ty.me": [66], "account.app.net": [1102], "help.here.com": [7326], "img.store.sogou.com": [19606], "vgc.no": [17484], "apps.openobjects.com": [12022], "speedtree.com": [15254], "track.tiara.daum.net": [4221], "www.myhappyoffice.com": [10833], "www.home.ch": [7464], "iflygo.com": [19223], "securelp.longtailvideo.com": [9589], "cvs.linux-mips.org": [9413], "compass-ssl.surface.com": [15647], "stpeter.im": [15503], "secure.wellcome.ac.uk": [19752], "xing.com": [18574], "www.quikpayasp.com": [13363], "tricolumbia.org": [16732], "*.zipcloud.com": [8689], "metrotransit.org": [10325], "win-rar.com": [18328], "sw.vutbr.cz": [17522], "cart.jd.com": [8423], "b2bshop.cinestar.de": [3143], "www.carezone.cz": [2849], "sankaty.com": [14286], "pantarhei.sk": [12370], "www.pewdiepie.net": [12605], "www.openbsdstore.com": [11921], "www.menulog.com.au": [19395], "otpdirekt.sk": [12133], "b.grvcdn.com": [6989], "webstyle.ch": [18159], "blackironbeast.com": [2046], "wangyin.com": [17972], "weike.taobao.com": [15952], "www.path-follower.com": [12450], "*.locaweb.com.br": [9542], "blog.coresecurity.com": [3668], "leader-manager.com": [9198], "forums.aws.amazon.com": [915], "www.316space.com": [2132], "blog.assembla.com": [1277], "hub.turnkeylinux.org": [16841], "minfin.nl": [11132], "lists.tizen.org": [16506], "webfestglobal.com": [18116], "pmf.gov": [19501], "refog.com": [13723], "mobile.willhaben.at": [18313], "homepages-fb.thm.de": [15811], "*.richrelevance.com": [13870], "*.gametreelinux.com": [6428], "www.womenonwaves.org": [18408], "www.advantageseoservices.com": [651], "eeqj.com": [4904], "www.ecigpros.com": [4884], "www.suse-art.org": [19461], "partnernet-internal.symantec.com": [15715], "sitefinitysts.psc.gov": [19525], "qunitjs.com": [13292], "i2.technet.microsoft.com": [10364], "slm-assets3.secondlife.com": [14462], "static-cdn.ashleymadison.com": [1255], "debg.dict.cc": [4455], "med.stanford.edu": [15383], "www.verifiedvotingfoundation.org": [17620], "www.domaincamp.de": [4651], "lakebtc.com": [9133], "pcisecuritystandards.org": [12224], "ad.71i.de": [14636], "www.custodianvaults.com.au": [3937], "sib.swedbank.nl": [15682], "insidescience.org": [8167], "*.eimg.com.tw": [5125], "blog.openstreetmap.org": [11979], "translate.centreon.com": [2957], "*.formspring.me": [6045], "www.bizchannel.cimb.com.sg": [2607], "digicert.com": [4473], "www.dailyedge.ie": [19099], "www.kodi.tv": [8952], "wcl.greenparty.org.uk": [6925], "bugzilla.suse.com": [14199], "groupwise.boell.de": [2176], "s3.lbrcdn.net": [9177], "www.cccure.com": [2540], "www.swartzfiles.com": [15679], "freecode.club": [19194], "mzstatic.com": [10852], "www.transitionnetwork.org": [16671], "wt.proquest.com": [13112], "www.rother.gov.uk": [13978], "www.bequiet.com": [1725], "ask.barclayscorporate.com": [1663], "irc.lc": [19305], "forms.westoxon.gov.uk": [18221], "www.compendium.com": [3516], "*.aktion-deutschland-hilft.de": [770], "live.stanford.edu": [15383], "*.irishbroadband.ie": [8357], "movie2k.nu": [10635], "*.xfce-look.org": [19462], "www.globusreisen.ch": [19262], "fteorica.unizar.es": [17356], "f.newsletter.sky.com": [14924], "mailman.stanford.edu": [15383], "static.infowars.com": [8129], "*.sarava.org": [14299], "media.business.shaw.ca": [14687], "ethicalhacker.net": [5382], "www.hirlevel.aldi.hu": [299], "admin.names.co.uk": [11026], "down.360safe.com": [108], "wx.qq.com": [13285], "*.wildapricot.org": [18304], "securitymetrics.com": [14523], "jobs.lshtm.ac.uk": [9576], "https-everywhere.badssl.com": [1611], "www.tawk.to": [15979], "i-koruna.com": [7751], "www.doublefine.com": [4710], "cse.osu.edu": [11760], "www.the-dma.org": [16185], "bandaancha.eu": [18980], "bank.barclays.co.uk": [1662], "simage2.pubmatic.com": [13194], "sendgrid.com": [14577], "appsecute.com": [1134], "surfermag.com": [15650], "mutterschaftsgeld.de": [10730], "*.hwbot.org": [7638], "www.impo.ch": [3645], "zaif.jp": [18780], "www.mobify.me": [10492], "mydiscussion.gofrugal.com": [6778], "www.netnow.co": [11201, 11202], "*.onegreenplanet.org": [11847], "betterplace.org": [1828], "www.savannah.vc": [14309], "www.entropywave.com": [5301], "nvxie.taobao.com": [15952], "onegreenplanet.org": [11847], "service.qq.com": [13284], "info.arte.tv": [18966], "prv-web.eng.buffalo.edu": [17297], "analystone.com": [987], "acc-stats.web.cern.ch": [2575], "hostedservices.panopto.com": [12364], "*.sap.com": [14073], "thepirategoogle.com": [16228], "st1.openlistings.co": [12019], "europa.neos.eu": [10899], "shield.sitelock.com": [14867], "www.tibetaction.net": [16410], "windowsupdate.microsoft.com": [10363], "b.ngx.cc": [11376], "ruby-forum.com": [14016], "*.etrade.com": [5391], "www.panovski.me": [12368], "m.hilfe-center.1und1.de": [68], "registry.neustar.biz": [11280], "www.skortekaas.nl": [14130], "www.papermart.com": [12380], "www.pentesterlab.com": [19485], "admin-vh.es.clara.net": [3211], "api.mediatemple.net": [10165], "www.informer.com": [8126], "www.consumer.gov": [3598], "www.takuu-saatio.fi": [15916], "rec-log.jp": [13640], "www.heavy.com": [7280], "cdn.playwire.com": [12810], "*.dante.net": [4005], "www2.firsttechfed.com": [5871], "publicaccess.aylesburyvaledc.gov.uk": [18976], "www.eticketing.co.uk": [16421], "lists.spdx.org": [14155], "glassdoor.com.au": [6701], "xjobs.brassring.com": [19017], "www.leroyfcpress.com": [9257], "marcrogers.org": [9981], "webmail.stanford.edu": [15383], "goalworthy.com": [6800], "www.johnshopkins.edu": [8611], "*.netfirms.com": [11226], "dz2cdn3.dzone.com": [4095], "foldingforum.org": [5984], "servicedesk.idoxgroup.com": [19281], "tigerdirect.com": [16440], "squarespace.com": [15333], "dev.tiki.org": [16444], "vdopia.com": [17582], "libproxy.aalto.fi": [390], "www.qconsf.com": [13281], "usca.logmein.com": [9549], "wustlconnections.com": [17994], "team.enaza.ru": [5230], "www.youtube.com.my": [18709], "malwaretracker.com": [9928], "admin.1and1.ca": [52], "students.berkeley.edu": [17240], "www.estavisas.org": [4967], "stats.sandstorm-media.de": [14281], "looloo.com": [9602], "www.barnesjewish.org": [1677], "www.speedworldgrafix.com": [15255], "cybersecuritychallenge.org.uk": [3955], "store.encase.com": [7006], "www.facultydiversity.org": [5628], "virusbulletin.com": [17758], "www.bcaa.com": [1504], "postoffice.co.uk": [12954], "compteperso.leboncoin.fr": [19351], "www.gemnasium.com": [6519], "*.njedge.net": [10933], "www.morrisons-corporate.com": [10600], "it.lastminute.com": [9165], "icp.uni-stuttgart.de": [17281], "contentful.com": [3614], "store.corsair.com": [3687], "fabianfranke.de": [5616], "www.faancollegenetwork.org": [5549], "www.xxxbunker.com": [18607], "shortlist.com": [14734], "www.donottrack-doc.com": [4611], "redmine.ruby-lang.org": [14018], "www.fbme.htwk-leipzig.de": [7114], "www.simflight.*": [14806], "www.nic.ar": [10917], "tuva.rt.ru": [13469], "bransonzipline.com": [2288], "abo.heise.de": [7288], "www.bitquick.me": [1942], "shadowproof.com": [14655], "www.genesis-technologies.com": [6526], "pub.dreamboxcart.com": [4751], "www.nic.ac": [11380], "howtoforge.de": [7575], "c.velaro.com": [17595], "www.cardsagainsthumanity.com": [2836], "git.linuxtv.org": [9416], "blog.anthonycameron.com": [1064], "15mpedia.org": [33], "www.bitterwallet.com": [7548], "www.coccoc.com": [3342], "www.fefe.de": [5742], "www.citrusbyte.com": [3181], "rabbitmq.com": [13487], "static.seetickets.com": [14547], "www.eforsa.pl": [4913], "www.dennikn.sk": [4365], "ics.ws.hmrc.gov.uk": [7084], "segs.btrll.com": [2322], "www.buddyauth.com": [2230], "www.sidn.nl": [14120], "applications.telford.gov.uk": [19669], "changingclimate.osu.edu": [11760], "rohieb.name": [13950], "www.legiscan.com": [9230], "www.craftysyntax.com": [3755], "webmail4.names.co.uk": [11026], "crossdresser-forum.de": [3816], "www.spyshelter.com": [15325], "websitealive.com": [18149], "www.proxery.com": [13177], "www.oswatch.net": [11679], "courthousenews.com": [3721], "testcloud.de": [16145], "cloudfront.bitmovin.com": [2010], "account.blesta.com": [2070], "people.xiph.org": [18575], "visit.pixcept.de": [12735], "www.provencredible.com": [13171], "effi.org": [5110], "lightning.bitflyer.jp": [1931], "nodes.dk": [11455], "sas.com": [14074], "secure.elcomsoft.com": [5145], "www.biostatistics.wustl.edu": [17993], "loveplanet.ru": [9627], "planet.diasporafoundation.org": [4451], "acluva.org": [254], "*.unique-vintage.com": [17195], "cwspod.com": [2692], "reg.cologne-cfd.de": [3437], "*.hertz-carsales.com": [7372], "jamendo.com": [8502], "*.lithive.com": [9454], "salzburg.neos.eu": [10899], "www.pubpeer.com": [13198], "aphyr.com": [1090], "ssl.submissiontechnology.co.uk": [15563], "visionartforum.com": [17774], "www.canon.ee": [2809], "malaysia.norton.com": [11505], "dn.com": [4053], "www.wilmu.edu": [18320], "www.hitleap.com": [7421], "www.bverfg.de": [2435], "www.canon.es": [2809], "bracknell.firmstep.com": [19183], "touch.news.mail.ru": [9874], "a2.mzstatic.com": [10852], "s3.india.com": [8060], "itbit.com": [8384], "hkn.eecs.berkeley.edu": [17240], "*.bepress.com": [1783], "openuserjs.org": [11987], "www.assoc-amazon.ca": [1285], "eide-itc.no": [5123], "internetvotes.org": [2947], "www.youtube.ee": [18709], "www.freegeoip.net": [6175], "store.naturalskinshop.com": [11103], "rediris.es": [13661], "youtube.co.hu": [18709], "realtime.co": [13632], "falcon-uav.com": [5640], "8tracks.com": [205], "dev.bukkit.org": [19024], "sunxi.org": [9401], "en.jd.com": [8422], "wikispaces.com": [16111], "micampuscompact.org": [10344], "northumberland.objective.co.uk": [19454], "login.oca.ucsc.edu": [17305], "shop.performancealley.com": [12569], "fightforthefuture.org": [5784], "advertising.washingtonpost.com": [17990], "*.box.com": [2253], "levesoninquiry.org.uk": [9270], "scripts.liftshare.com": [9336], "sanoma.com": [14287], "*.archbang.org": [1158], "www.prisonphonejustice.org": [13077], "images1.variety.com": [17565], "directory.live.com": [9483], "fenland.gov.uk": [5750], "portal.skolaonline.cz": [19598], "swan.sk": [15676], "helpdesk.uic.edu": [17231], "parking.bournemouth.gov.uk": [2251], "posthaven.com": [12976], "coldhak.ca": [3415], "*.ezoshosting.com": [5003], "intellipoker.bg": [19298], "www.isst.fraunhofer.de": [6112], "de-sk.dict.cc": [4455], "i3.connect.microsoft.com": [10364], "data-secure.solvemedia.com": [15126], "*.www.fujitsu-webmart.com": [6245], "mcmaster.ca": [10122], "www.shippingwatch.dk": [14706], "radiox.ch": [13516], "digitaltrends.com": [4501], "equip.org": [5335], "spanish.101domain.com": [11, 12], "*.manitu.de": [9957], "*.voxcdn.com": [17853], "www.httpswatch.com": [7108], "*.archlinux.org": [1157], "*.llnl.gov": [9181], "www.39dollarglasses.com": [121], "*.ds01.swisscom.com": [15698], "tv.sport1.de": [15289], "*.itespresso.fr": [11198], "spacex.com": [15209], "mathias-kettner.de": [10068], "*.data.gov.au": [4181], "download.jabberd.org": [8479], "www.truthmarket.com": [16801], "bivol.bg": [2028], "*.discover.com": [4547], "www1.gotomeeting.com": [6787], "*.powells.com": [12988], "wildlifeofyourbody.org": [1768], "www.sysmocom.de": [15756], "sa.www4.irs.gov": [7819], "secure.ikea.com": [7959], "www.betterscience.org": [18993], "sns.ias.edu": [7669], "beta.n-somerset.gov.uk": [10857], "www.sec-consult.com": [14097], "rivalseek.com": [13905], "discuss.dev.twitch.tv": [16888], "www.afcd.gov.hk": [7074], "lh4.google.co.*": [6837], "unbridled.info": [17155], "merchants.ozon.ru": [12199], "www.icts.kuleuven.be": [8816], "*.tlsfun.de": [16512], "secured.leeds.gov.uk": [19353], "irtf.org": [7820], "signup.bigv.io": [1855], "answers.openmrs.org": [11953], "christ-swiss.ch": [3645], "helloworld.letsencrypt.org": [9264], "www.aim.com": [290], "www.levels.io": [9268], "fcsh.unizar.es": [17356], "advq.yandex.com.tr": [18649], "www.sanalmarket.com.tr": [14275], "consilium.europa.eu": [5421], "www.ovh.es": [12173], "nla.gov.au": [11070], "paste.sh": [12437], "badges.gitter.im": [6684], "www.gratipay.com": [6898], "eff.org": [4908], "www.systemli.org": [15765], "fixmystreet.com": [5895], "fiuza.me": [5891], "*.mochimedia.com": [10509], "*.expedia.co.uk": [5503], "a.tbcdn.cn": [15982], "quotes.nyi.net": [10993], "web4.login.cornell.edu": [3676], "*.highqsolutions.com": [7400], "0.vgc.no": [17484], "secure.voyage-prive.co.uk": [17856], "*.humpi.at": [7616], "studentwellness.stanford.edu": [15383], "www-cdn.sitescout.com": [14871], "www.snagajob.com": [15024], "chroniclesofgeorge.com": [16259], "www.nabtrade.com.au": [10865], "seower.com": [14590], "www-test.sec.gov": [17023], "signups.braintreepayments.com": [2274], "www.journal-news.net": [8641], "www.bitcoinsil.co.il": [1985], "eprofile.osu.edu": [11760], "beta.fastly.com": [5687], "wallet.baidu.com": [1619], "mylivechat.com": [10810], "x.ntldstats.com": [10962], "search.norton.com": [11505], "dating.zoosk.com": [18906], "pcforalla.idg.se": [7705], "mobilepki.org": [10503], "www.franklinveaux.com": [6103], "m.rts.ch": [19621], "parking.kirklees.gov.uk": [8916], "c.gcaptain.com": [6311], "www.thesatanictemple.org": [16308], "lung.ca": [2794], "features.hrw.org": [7612], "ftp.leboncoin.fr": [19351], "www.mikewest.org": [19400], "secure.yoursole.com": [18731], "globalsources.com": [6733], "static.horizon.tv": [19716], "www.texthelp.com": [16160], "delivery.pbgrd.com": [12493], "www.annevankesteren.nl": [1029], "hits.truehits.in.th": [16774], "www.fylde.gov.uk": [6291], "m.rasp.yandex.com.tr": [18649], "favrskov.dk": [5692], "telusinternational.com": [16103], "krasnoyarsk.rt.ru": [13469], "poczta.agmk.net": [729], "m.hertsdirect.org": [7335], "jabber.dk": [8474], "aboutads.info": [423], "www.milton-keynes.gov.uk": [10401], "xcat.nl": [18503], "*.zorpia.com": [18909], "olark.com": [11779], "www.tersesystems.com": [16132], "cce.mitre.org": [10459], "support.techxpress.net": [16022], "www.t-mobile.co.uk": [15769], "*.khn.nl": [8722], "www.mygnu.de": [10762], "vpnbook.com": [17862], "lincs.firmstep.com": [19183], "scadacs.org": [14086], "si1.rgstatic.net": [13422], "newclimateforpeace.org": [11302], "forms.lincoln.gov.uk": [9362], "www.si.se": [14118], "webmail.hosting.earthlink.net": [5007], "sockshare.com": [15081], "store.isc.org": [7821], "forge.ipsl.jussieu.fr": [8688], "www.csie.org": [2671], "www.honeynet.org.mx": [19256], "wiki.namecoin.info": [11024], "www.engelschall.com": [5263], "dangpu.com": [4139], "www.embed.ly": [5197], "eu-securem.ikea.com": [7959], "f5rsrc.wustl.edu": [17993], "www.tandridge.gov.uk": [15943], "acesso.uol.com.br": [16998], "secure.gaug.es": [6996], "affiliate.finanzcheck.de": [19179], "hospital.uillinois.edu": [16960], "swww35.glam.com": [6697], "bugzilla.lysator.liu.se": [9084], "www.dash-player.com": [4161], "www.amnesty-in-bewegung.de": [957], "static.springer.com": [15309], "www.velox-project.eu": [17600], "inf.tu-dresden.de": [15871], "ua.godaddy.com": [6773], "app.farmlogs.com": [5662], "www.amazon.com": [913], "uspsoig.gov": [17027], "web.ondarossa.info": [11825], "www.gearworkstire.com": [6489], "ensigniamail.com": [5287], "www.comodo.net": [3504], "static4.readyflowers.com": [13620], "*.startupsort.com": [15413], "www.tucowsinc.com": [16816], "atheists.org": [1313], "www-public.slac.stanford.edu": [15383], "images-cdn.lowyat.net": [9637], "www.slipplate.com": [14133], "www.reading.ac.uk": [17335], "downthemall.net": [4722], "login.oracle.com": [12082], "cdn.dataopedia.com": [4208], "www.vanlanschot.com": [17551], "www.cutedigi.com": [3944], "www.cdt.org": [2565], "trustsealinfo.websecurity.norton.com": [11505], "hie-isolde.web.cern.ch": [2575], "addons.palemoon.org": [12341], "www.gametracker.com": [6443], "www.wholefoodsmarket.com": [18264], "kochava.com": [8950], "crux.nu": [3836], "www.donate.acs.org": [929], "flightopportunities.nasa.gov": [10869], "kimpluscraig.com": [8891], "sempervideo.de": [14573], "trac.openstreetmap.org": [11979], "blog.fastmail.com": [5688], "gmail.ncsu.edu": [11492], "*.bluecava.com": [2129], "sv.cloudflare.com": [3285], "sieciovo.pl": [14768], "b3.mookie1.com": [10576], "glasscraftexpo.com": [6700], "planete.insa-lyon.fr": [7771], "portlandoregon.gov": [3195], "www.wrongplanet.net": [18475], "selfserve.n-kesteven.gov.uk": [10856], "www.qconnewyork.com": [13280], "identity.uchicago.edu": [17246], "cloudconnectors.eloqua.com": [5179], "www.uniteddomains.com": [17213], "www.radsec.org": [13508], "beginlinux.com": [1753], "www.hps.org": [19263], "dps.uiuc.edu": [16956], "www.mxcursos.com": [9813], "hostdeclaration.ru": [4287], "cdn.teads.tv": [15995], "cloud.sagemath.org": [14239], "www.library.wustl.edu": [17993], "forum.ivorde.com": [8402], "io6.cloudup.com": [3316], "usainteanne.ca": [19720], "commonplacebooks.com": [3488], "*.wsj.com": [11321], "dk.godaddy.com": [6773], "www.ethack.org": [5377], "elderscrollsonline.com": [5146], "www.thesafety.us": [16236], "sycom.co.jp": [15710], "www.fokus.no": [5981], "www.factoryhomesale.com": [5627], "loadaverage.org": [9530], "help.scribblelive.com": [14413], "img.thalia.ch": [16171], "onlinebackup.elgiganten.dk": [5162], "assets.sky.com": [14924], "www.edlund.dk": [5088], "akismet.com": [766], "stats.videolan.org": [17688], "commencement.berkeley.edu": [17240], "rejseplanen.dk": [13749], "*.htrnews.com": [7322], "www.teamtailor.com": [16003], "www.trycelery.com": [16804], "*.dirxion.com": [4537], "primorye.rt.ru": [13469], "*.openttd.org": [11982], "www.lab-nation.com": [9121], "static.zoomerang.com": [18903], "i.holder.com.ua": [7448], "biblioteca.unizar.es": [17356], "encs.dict.cc": [4455], "numa.paris": [11575], "trachea.stanford.edu": [15383], "www.tmcnet.com": [16515], "www.rhinosupport.com": [13862], "richmondshire.firmstep.com": [19182], "itservices.webtrends.com": [18171], "milepoint.com": [10393], "wordnik.com": [18434], "laughingsquid.us": [9166], "cdn.mommyish.com": [859], "www.capnproto.org": [2822], "*.infolinks.com": [8111], "*.cdn2.cloudfiles.rackspacecloud.com": [13507], "kuleuven.be": [8816], "erhvervsstyrelsen.dk": [5341], "bulletinmessenger.net": [2418], "www.wulife.wustl.edu": [17993], "riscon.cz": [13898], "asktom.oracle.com": [12082], "www.librivox.org": [9318], "*.marvell.com": [10041], "reuffel.de": [19550], "my2.begun.ru": [1755], "graph.facebook.com": [5620], "www.bestmastersdegrees.com": [1803], "store.space.com": [15204], "gavinnewsom.com": [6472], "www.revresponse.com": [13839], "wiki.umiacs.umd.edu": [17263], "blog.golflink.com": [4343], "krlmedia.nl": [8748], "www.scmagazineus.com": [14325], "www.daniweb.com": [4141], "www.peopleschoicecu.com.au": [12552], "irwinlaw.com": [8360], "rabbitporno.com": [13488], "egopay.com": [5116], "www.spdx.org": [14155], "mycomputer.com": [10754], "creative.metalyzer.com": [10308], "blackpearlpdm.com": [2039], "installgentoo.net": [18699], "daniweb.com": [4141], "www.servedbyadbutler.com": [518], "linnrecords.com": [9385], "literaryreview.co.uk": [19368], "*.iii.com": [8155], "rl.mail.qq.com": [13285], "www.theguardian.com": [16288], "www.naturalskinshop.com": [11103], "www.votervoice.net": [17847], "discover.aol.com": [321], "www.supplychain.nhs.uk": [10913], "janestreet.com": [8511], "www.ymlp.com": [18722], "www.theconversation.edu.au": [16262], "www.mywell-being.com": [10799], "advertising.yandex.com": [18651], "c3noc.net": [2502], "www.autotools.io": [1433], "w.soundcloud.com": [15161], "www.pin.ed.gov": [4889], "discoversignage.com": [4553], "*.dab-bank.de": [4001], "h.fastcompany.net": [5681], "itradecimb.co.id": [2605], "hashnest.com": [7228], "dpmbappsqa.lowes.com": [9636], "www.weswap.com": [18024], "piwik.raceforward.org": [13491], "agent.directadvert.ru": [4524], "*.artday.co.kr": [1226], "discovery.org": [4555], "alteeve.ca": [874], "smartlivingnetwork.com": [14995], "www.marketingoops.com": [10014], "kiks.yandex.by": [18648], "blogs.zoho.jp": [18883], "www.umdrightnow.umd.edu": [17263], "uplay.ubi.com": [17390], "www.fortune.com": [6061], "retrofestive.ca": [13827], "www.partners.servicenow.com": [14622], "talk.openmrs.org": [11953], "google.com": [6840, 6846, 6848], "www.thebluealliance.com": [16333], "www.kupschke.net": [19344], "www.coub.com": [3697], "portland.freedesktop.org": [6126], "golfdigest.com": [6823], "admin.open.kent.gov.uk": [8851], "producthelp.webtrends.com": [18171], "img.x-cart.com": [18494], "irecruitment.oracle.com": [12082], "nrao.edu": [10955], "vimeopro.com": [17718], "www.teo.lt": [16118], "he.com": [7629], "www.ssls.com": [14181], "vpn.usainteanne.ca": [19720], "cac.cas.usuhs.edu": [17052], "www.youtube.mx": [18709], "scepsis.ru": [14344], "ppmobileimages.lowes.com": [9636], "travelhouse.ch": [19262], "businesscare.tdc.dk": [15796], "www.leap.se": [9067], "site.yandex.com": [18651], "www.onegooddriver.com": [11826], "acs.org": [929], "aclutx.org": [253], "www.cpfp.cancer.gov": [2805], "vippy.co": [17730], "gumgum.com": [7019], "*.turbotax.com": [8304], "titanic-magazin.de": [16502], "123ehost.com": [26], "tunnelbear.com": [16833], "cambodiadaily.com": [2766], "secure.rosehosting.com": [13968], "forums.oculusvr.com": [11722], "www.kraken.com": [9004], "landalskilife.com": [18489], "mysports.tomtom.com": [16540], "static.shared.sx": [14672], "www.sankatyadvisors.com": [14286], "fcs.dell.com": [4335], "www.fasttrack.va.gov": [17019], "www.adsecurity.org": [274], "premium.members.webs.com": [18144], "planet.mageia.org": [9847], "tracker.adaptavist.com": [555], "cassinoestrela.com": [2888], "payeer.com": [12474], "*.zassets.com": [18792], "delivery.h.switchadhub.com": [15701], "www.powerbuy.co.th": [12998], "orange.sk": [12087], "extranet.wienerstadtwerke.at": [18284], "circanews.com": [3154], "*.northwestern.edu": [11504], "mirantis.com": [10442], "domeny.cz": [18938], "idgmedia.idg.se": [7705], "amigo.mail.ru": [9874], "www.foreignpolicy.com": [6024], "pulllist.comixology.com": [3465], "www.parallax.com": [12390], "www.dpfoc.com": [4733], "news.tid.al": [16429], "www.correctiv.org": [3685], "jobs2web.com": [8598], "www.avira.com": [1449], "janovas.unizar.es": [17356], "www.isocpp.org": [7831], "t.teads.tv": [15995], "patreon.thecthulhu.com": [16334], "images.domainwho.is": [4661], "admin.sitelock.com": [14867], "*.gotpantheon.com": [12373], "authorea.com": [1409], "opaskartta.turku.fi": [19706], "feedburner.google.com": [6834], "scg.ulaval.ca": [17229], "compass.xbox.com": [18550], "privacysolutions.no": [13089], "export.openstreetmap.fr": [12045], "reddit.com": [13690], "tonytan.cn": [16548], "pages.ebay.com": [4873], "si1.twimg.com": [16877], "www.bnc4free.com": [2164], "kibble.centrify.com": [19048], "nibcdirect.nl": [10916], "www.wyenet.co.uk": [18487], "static.smallworldlabs.com": [14979], "homebuzz.co.uk": [7475], "21.co": [71], "ashdown.recurly.com": [13652], "pbsz.ebank.cmbchina.com": [2626], "sso.acs.org": [929], "uktools.aol.co.uk": [320], "teenrevenue.com": [16059], "hungryforchange.tv": [7620], "lg.com": [9077], "buyiphone4.apple.com": [1120], "www.flashback.org": [5905], "gewinnspiel.congstar.de": [3577], "cdn.plug.dj": [12822], "earlyyears.kirklees.gov.uk": [8916], "www.xssposed.org": [18536], "static.xperiencedays.com": [18584], "www.shibboleth.net": [14702], "davidgold.co.uk": [4226], "vinoteka.hofer.si": [299], "*.anonymizer.com": [1048], "jqueryui.com": [8454], "geeksquad.co.uk": [6498], "var.thejh.net": [8512], "*.dolimg.com": [4641], "365ticketscentral.com": [115], "pace2race.com": [12310], "javascriptmvc.com": [8528], "multiweb.junge-piraten.de": [8679], "www.canlialem.com": [2807], "www.epixmedia.co.uk": [5323], "devnet.kentico.com": [8853], "s7.static.hootsuite.com": [7488], "art.bathnes.gov.uk": [1689], "my.freezone.co.uk": [6187], "www.syscan.org": [15748], "*.details.com": [4401], "media.nips.cc": [10930], "www.shareholder.ru": [14678], "www.deepdyve.com": [4296], "www.spartafx.com": [15225], "form.cz.mbank.eu": [9722], "www.f.switchadhub.com": [15701], "mysky.sky.com": [14924], "blog.gemini.com": [6515], "calendars.mit.edu": [9749], "northwest.greenparty.org.uk": [6925], "iwoulddo.it": [7879], "eir.cisco.com": [3162], "*.s2member.com": [14064], "www.familie.nordost.aok.de": [317], "www.newamerica.org": [11301], "audiko.net": [1357], "wiki.sabayon.org": [14214], "bezosexpeditions.com": [1834], "3d88duefqgf2d7l2p18hja4194m.wpengine.netdna-cdn.com": [9509], "woobox.com": [18417], "support.linaro.org": [9361], "shop.flixbus.de": [5931], "www.ictu.nl": [7693], "www.tfaforms.com": [16163], "*.algolia.com": [803], "www.ssdp.org": [15538], "myaccount.sky.com": [14924], "*.attracta.com": [1341], "jsuol.com.br": [8657], "www.more-onion.com": [10585], "shop.flixbus.dk": [5931], "*.psnt.ebay.eu": [4874], "epochstats.com": [5326], "lotto.web.de": [18050], "lizard-cloud.htwk-leipzig.de": [7114], "rising.jhu.edu": [16296], "selfhelp.carphonewarehouse.com": [2861], "security-database.com": [14519], "www.womenshealth.de": [18411], "eresources.jjc.edu": [8440], "tech.appear.in": [1114], "www.microchip.com": [10353], "www.kuleuven.ezproxy.kuleuven.be": [8816], "wiki.c-base.org": [2492], "process-one.net": [13119], "livingsocial.co.uk": [9516], "fahrkarten.bahn.de": [1617], "docs.convox.com": [3632], "sankatyadvisors.com": [14286], "videogold.de": [17686], "idp.touchstonenetwork.net": [16611], "www.nyc.gov": [11292], "www.songlist.hclippr.com": [7051], "www.mypoints.com": [10775], "vcd.org": [17474], "splone.com": [15284], "data.aggregateknowledge.com": [726], "*.codefuel.com": [3368], "lispac.lsbu.ac.uk": [9098], "www.secretmaryo.org": [14467], "cdn.embedly.com": [5200], "registration.fsfe.org": [5601], "lpc.web.cern.ch": [2575], "www.ilogo.in": [7755], "*.gannettlocal.com": [6454], "www.mammut.ch": [9933], "www.springrts.com": [15306], "www.youtube.mk": [18709], "secure.maxcdn.com": [10091], "www.treasury.gov": [16704], "profiles.nlm.nih.gov": [11052], "nrc.nl": [10956], "www.trellian.com": [16709], "rxs2.answcdn.com": [1059], "blog.nic.cz": [11379], "c1.websitealive.com": [18149], "mediamarkt.es": [19774], "transversal.com": [16684], "www.arqbackup.com": [1210], "www.revolet.com": [13848], "goodsie.com": [6831], "portal.isoc.org": [7829], "www.delawaretoday.com": [4324], "www.tnsglobal.com": [15841], "blogs.secondlife.com": [14462], "www.newyorkcasual.com": [11350], "www.ppcw.osu.edu": [11675], "www.thegef.org": [8259], "dcboee.org": [4013], "www.raptureready.com": [13563], "sell.stubhub.de": [15534], "*.divide.com": [4583], "www.freestyle.vc": [6185], "desec.io": [19107], "www.aoptix.com": [326], "local.brent.gov.uk": [2304], "www.cosmo.org": [3689], "happyhardcore.com": [7198], "www.beryl-themes.org": [19461], "static.quto.ru": [13381], "h2.ft.com": [5826], "www.lainchan.org": [9132], "www.gamigo.com": [6445], "*.sapato.ru": [14295], "dl.mail.com": [9872], "*.imgix.net": [7998], "packtpub.com": [12320], "www.wellbid.com": [18192], "gfi.nl": [6320], "e-klase.lv": [4853], "www.navercorp.com": [11113], "www.services-prefecture.com": [14626], "public.webfoundation.org": [18102], "www.nooelec.com": [11470], "gic2.mycdn.me": [10824], "www.funio.com": [6265], "apps.sourceforge.net": [15174], "www.dxw.com": [4817], "liuliang.jd.com": [8423], "www.machineslikeus.com": [9830], "fotoblur.com": [6075], "commercialwaste.westminster.gov.uk": [18220], "listas.unizar.es": [17356], "meetrics.com": [10218], "www.mondo2000.net": [10544], "delawareonline.com": [4322], "pulpcentral.com": [12304], "www.hboshopeu.com": [19243], "*.artinstitutes.edu": [16177], "*.mmoga.com": [9763], "*.pepperjamnetwork.com": [12554], "www.imagecurl.com": [19284], "www.gq.com": [6379], "ipo.uchicago.edu": [17246], "www.gamesites.cz": [6438], "piratelinux.org": [12711], "a.wpimg.pl": [19766], "www.kat-de-paris.fr": [8813], "support.opendns.com": [11932], "khronos.org": [8874], "guardiansubscriptions.co.uk": [7004], "b.yandex.com": [18651], "hydra.geht.net": [6509], "amnestyusa.org": [975], "apps.ntid.rit.edu": [13434], "www.openhatch.org": [11942], "lists.linux.it": [8385], "*.storage-bin.com": [15491], "panoramio.com": [12366], "www.windowsazure.com": [18344], "cdn.webmail.aol.com": [321], "mirror.netcologne.de": [11188], "youversion.com": [18710], "slovensko.sk": [14972], "digital.community-journalism.net": [16155], "mm.taobao.com": [15952], "bagatoo.se": [1614], "www.mysecureconnect.com": [10783], "*.benefitsweb.com": [1777], "moderngov.redbridge.gov.uk": [13683], "blog.openhpi.de": [11940], "surfeasy.com": [15649], "www.fatwallet.com": [5691], "www.aldi.ie": [299], "cpmstar.com": [2647], "help.sourcefabric.org": [15180], "*.mooc-list.com": [9776], "oag.ca.gov": [2745], "www.onehockey.com": [11833], "ask.barclays.co.uk": [1662], "golfdigestinsiders.com": [6823], "vijaypath.sbi.co.in": [14082], "www.perimeterinstitute.ca": [19488], "amiando.com": [955], "www.protecciondelconsumidor.gov": [11078], "unanimis.co.uk": [17146], "rais.ornl.gov": [11693], "*.verisign.com": [17623], "www.upgradedself.com": [17387], "atbk.alicdn.com": [805], "listening.aldi.ie": [299], "jifo.co": [8568], "www.flixbus.be": [5931], "psrecruiting.brookings.edu": [2362], "nrf.com": [11059], "*.ssl.qihucdn.com": [13303], "webmail.atl.earthlink.net": [5007], "hackney.greenparty.org.uk": [6925], "acaf.food.gov.uk": [19187], "www.americanfuturefund.com": [944], "up1.ca": [17380], "penctu.psmd.plymouth.ac.uk": [12833], "de-la.dict.cc": [4455], "vdc-sy.org": [2945], "service.mcafee.com": [10114], "www.37signals.com": [118], "www04.fonts.com": [5993], "web.com": [18049], "support.formstack.com": [6046], "digitalunion.osu.edu": [11760], "techblog.constantcontact.com": [3592], "scotpho.nhsnss.scot.nhs.uk": [10913], "conferencing.swisscom.ch": [15698], "net-housting.de": [11177], "*.ckom.de": [3205], "vote.usa.gov": [17029], "infosactu.com": [19291], "scrambl.is": [14403], "zocalopublicsquare.org": [18881], "guifi.net": [7010], "www.youneedabudget.com": [18707], "www.ricoh.com": [13879], "my.intency.com": [8222], "bbcchildreninneed.co.uk": [1500], "m.megamozg.ru": [19394], "bookshop.iseas.edu.sg": [7824], "s.glbimg.com": [6704], "friendfinder.com": [6213], "emergency.uic.edu": [17231], "pcbooster.com": [12233], "www.datstat.com": [4169], "bst2.gismeteo.ru": [6669], "www.oseems.com": [12120], "*.iamnoone-solutions.net": [7894], "easternfusion-terenure.just-eat.ie": [19328], "envoyer.io": [5312], "hotelwifi.com": [7553], "career.ru": [2840], "www.fb-assets.com": [6201], "fidelity.com": [5774], "*.siosm.fr": [14854], "www.justeat.it": [19328], "*.alioth.debian.org": [4275], "wnyc.org": [17916], "popular.com.tw": [12919], "old.lwn.net": [9112], "b3.yahoo.co.jp": [18640], "blog.webtrh.cz": [18173], "xignite.com": [18572], "rsbac.org": [13456], "pirate-party.ch": [12284], "comic-con.org": [3466], "*.us.archive.org": [8271], "*.nbnco.com.au": [10876], "www.ilivid.com": [7754], "olmn.org": [11630], "mitsubishi.com": [10461], "coeus.buffalo.edu": [17297], "www.freebsdnews.com": [6121], "researchcompliance.stanford.edu": [15383], "www.albinoloverats.net": [780], "sipgate.io": [14856], "www.tahetorn.ut.ee": [17069], "asciinema.org": [1247], "www.gloucestershire.police.uk": [6750], "www.conetix.com.au": [3565], "micro.vinilox.eu": [17724], "my.vt.edu": [17740], "*.campstaffusa.com": [2776], "*.wservices.ch": [18477], "finance.google.co.*": [6837], "slice.com": [14955], "developers.acuityscheduling.com": [504], "on.us.playstation.com": [12795], "www.siteuptime.com": [14875], "www.bitcalm.com": [1927], "bounce.io": [2243], "coremotives.com": [3664], "ssl-certificate-center.verisign.com.tw": [17623], "kosmas.cz": [8742], "www.verisign.se": [17623], "fourmilab.ch": [6081], "www.reflected.net": [13718], "tr.prospecteye.com": [13163], "s8.mt-cdn.net": [9798], "business.americanexpress.com": [935], "www.irishtimes.com": [16195], "*.wdfiles.com": [18294], "inlinkz.com": [8032], "*.policemutual.co.uk": [12864], "roughtradegear.com": [13985], "shurgardpayment.eu": [14751], "auth.hitbtc.com": [7420], "nb-no.facebook.no": [5623], "holytransaction.com": [7462], "mall.brands.com.tw": [2286], "all-inkl.*": [825], "groton.org": [6966], "vesselbags.com": [17652], "www.jms1.net": [8587], "goo.gl": [6844], "etradesbi.onlinesbi.com": [11873], "afrinic.net": [709], "habpl.us": [7127], "trac.i2p2.de": [7658], "assets9.wwf.ch": [19768], "m.addison.vt.edu": [17740], "www.getcomposer.org": [6588], "login.domains.live.com": [9483], "www.hertz.co.uk": [7371], "*.unvienna.org": [17216], "magazine.joomla.org": [8627], "ca.mit.edu": [9749], "progllc.com": [13151], "privatewifi.com": [13102], "bbpress.org": [1711], "shop.ubuntu.com": [17102], "exactag.com": [5479], "*.cbc.ca": [2797], "www.crazybump.com": [3765], "www.131002.net": [29], "it.iu.edu": [8064], "www.coverity.com": [3734], "www.loa.org": [9527], "dunkelangst.org": [4802], "www.imageoptim.com": [7979], "gentoo-euetib.upc.es": [12894], "blog.ikeepincloud.com": [7750], "canadiandimension.com": [2798], "os.hiig.de": [7068], "verkkokauppa.duodecim.fi": [4804], "help.twitch.tv": [16888], "theme.co": [16340], "bracknell-forest-consult.objective.co.uk": [19454], "www.xxx24hr.com": [18606], "ngvpn05.nvidia.com": [10985], "www.alsoactebis.com": [301], "raceforward.org": [13491], "www.bkrtx.com": [2133], "promonitor.strode-college.ac.uk": [15528], "www.hertztrucks.com.au": [7336], "bose.co.uk": [2228], "applyonline.leeds.ac.uk": [17318], "webassetsi.scea.com": [14089], "machtfaktorerde.zdf.de": [19800], "widgets.guidestar.org": [7007], "widgets.jamendo.com": [8502], "www.nkl.fi": [11014], "cia.gov": [2600], "cf7.100r.org": [9], "www.reignofgaming.net": [3934], "providesupport.jp": [13173], "www.airshipventures.com": [752], "redstate.com": [13663], "pappp.net": [12208], "custom.search.yahoo.co.jp": [18640], "www.flameeyes.eu": [5901], "shiftboard.com": [14704], "content.dealnews.com": [4261], "www.vk.com": [17493], "adserver.adtechus.com": [639], "www.fs.isy.liu.se": [9084], "nationalcareersservice.direct.gov.uk": [4531], "api.v2.badgeville.com": [1607], "ideafit.com": [7926], "korruption.dk": [8991], "*.yandex.ru": [18657], "m.webtrends.com": [18171], "www.warez-bb.org": [17976], "*.ignimgs.com": [7730], "singlefeed.com": [14848], "petridish.org": [12598], "a2.websitealive.com": [18149], "www.surprisinglyfree.com": [15655], "creator.zoho.com": [18884], "consejosocial.unizar.es": [17356], "*.franktimis.com": [6101], "surveygizmo.com": [15658], "img.taobaocdn.com": [15953], "www.dailystar.co.uk": [4123], "resources2.spiceworks.com": [15266], "www.greatcareers.co.uk": [1186], "tv4play.se": [15882], "tipmobiletest.sbb.ch": [15693], "xagasoft.com": [18538], "www.vh1.ro.vutbr.cz": [17522], "bug.freifunk.net": [6192], "dns-ip.net": [4606], "it.foursquare.com": [6082], "mercola.com": [19396], "ticket.yandex.by": [18648], "www.eecs.mit.edu": [9749], "weather.yandex.com": [18651], "book.cathaypacfic.com": [2904], "www.bookit.nl": [7452], "www.flsenate.gov": [19186], "webmail.xmission.com": [18530], "ai-online.com": [1428], "maas.ubuntu.com": [17102], "static-secure.guim.co.uk": [7014], "*.coldhak.ca": [3415], "resellerratings.com": [13801], "www.naacpcompanystore.org": [10862], "www.lovefilm.*": [9625], "www.adafruit.com": [550], "pyd.io": [13268], "newschallenge.org": [11334], "links.sonatype.com": [15132], "*.chambal.com": [2988], "server2.web-stat.com": [18047], "live.com": [9483], "browser-statistik.de": [2369], "www.unpac.org": [17145], "index.docker.io": [4617], "www.youtube.com.ro": [18709], "www.opengarden.com": [12035], "support.exmail.qq.com": [13285], "doc.owncloud.com": [12181], "cloudfront.assets.stitcher.com": [15476], "virginmobileusa.com": [17736], "secure.studiesabroad.com": [15540], "cr0.org": [3749], "site.yandex.kz": [18652], "libcat.dudley.gov.uk": [4795], "resources.bingads.microsoft.com": [10364], "s1.daumcdn.net": [4220], "click-finder.jp": [14740], "origin.varcentral.com.au": [17466], "pad.okfn.org": [12017], "opinionlab.com": [12054], "www.bookonline.saudiairlines.com": [14305], "www.icukhosting.co.uk": [7694], "jobs.gigaom.com": [6644], "www.jobs.nih.gov": [11052], "*.modlife.com": [10526], "mail.yandex.com.tr": [18649], "*.radioshackcorporation.com": [16380], "*.target.com": [15961], "pub.idqqimg.com": [7925], "ert.cern.ch": [2575], "*.cryptalloy.de": [3844], "antitheft.norton.com": [11505], "www.openafs.org": [11915], "newark.osu.edu": [11760], "www.wilderssecurity.com": [18307], "*.clicktale.com": [3252], "secure.mastermindpro.com": [10058], "www.tvnutt.com": [15889], "data.whicdn.com": [17905], "www.fashionara.com": [5667, 5668], "newsoffice.mit.edu": [9749], "*.californiaunitedbank.com": [2750], "analytics.paste.ee": [12436], "hs12.snstatic.fi": [14145], "www.trilogygolfclub.com": [8431], "*.mos.org": [10715], "siparistakip.yemeksepeti.com": [18674], "www.osvehicle.com": [19469], "www.stellar.org": [15464], "websitealive3.com": [18149], "hsselite.com": [7560], "www.philzimmermann.com": [12620], "virag.si": [17732], "forums.webnms.com": [18077], "ssm.upickem.net": [17389], "www.sportisimo.pl": [14158], "reisen.tchibo.de": [15985], "geneva.usmission.gov": [17063], "wusmforms.wustl.edu": [17993], "www.selangorku.com": [14564], "apply2jobs.com": [1127], "*.ztan.tk": [16548], "onionshare.org": [11863], "blog.tinfoilsecurity.com": [16472], "www.festival.london2012.com": [9573], "www.musikerforbundet.se": [10721], "turtlebay.foreignpolicy.com": [6024], "www.xchatdata.net": [18506], "www.thepiratebay.org": [16227], "*.brainsonic.com": [2271], "www.misadventureswithandi.com": [10451], "www.mtnafoundation.org": [9801], "rc.ouvaton.coop": [12155], "*.www-cse.ucsd.edu": [16938], "smi2.net": [15005], "www.shopstyle.*": [14720], "shopkeeper.kagi.com": [8766], "vpncompare.co.uk": [17501], "www.sonyentertainmentnetwork.com": [15149], "*.gaiaonlinehelp.com": [6405], "rh.ulaval.ca": [17229], "*.gamelink.com": [6415], "www.stopcyberspying.com": [15483], "sso.americanexpress.com": [935], "image2.ceneo.pl": [2936], "master.php.net": [12250], "mail.cablesurf.de": [2705], "downloads4.mamp.info": [19379], "www.ukash.com": [17122], "www.gweb.io": [7032], "www.rantoulpress.com": [13550], "greensmoke.com": [6928], "openstack.cern.ch": [2575], "www.firmware.netgate.com": [5866], "www.perfecthair.ch": [19486], "www.account3000.com": [458], "dnssec-tools.org": [4064], "www.ukpayments.org.uk": [16976], "www.bluestatedigital.com": [2144], "upmlive.hants.gov.uk": [7196], "sur.ly": [15642], "tem.fi": [16909], "wiltshire.objective.co.uk": [19454], "greetings.icq.com": [7690], "admin.jobfinder.dk": [8596], "www.kameleoon.com": [8776], "static.ucuzu.com": [17108], "*.wurfljs.com": [18484], "helpscout.net": [7307], "joomlart.com": [8626], "investor.twitterinc.com": [16894], "fontconfig.freedesktop.org": [6126], "mozy.co.uk": [10667], "www.unbounce.com": [17153], "bugzilla.penango.com": [12531], "onboardkit.com": [11823], "www.santafenewmexican.com": [16208], "*.switchnetworks.com.au": [15703], "advertising.yandex.kz": [18652], "makerbot.com": [9915], "membercentral.com": [10244], "www.superstrands.com": [15618], "www.pantelligent.com": [12371], "www.stonearch.net": [14572], "darkroom.shortlist.com": [14734], "gweb03.webstorepackage.com": [18151], "webcal.maricopa.edu": [9989], "contact.intelish.com": [8213], "www.itx.com": [7855], "wikis-stage.oracle.com": [12082], "www.irtf.org": [7820], "www.pubsoft.org": [13199], "uploaded.net": [17393], "*.marthastewartweddings.com": [10032], "biomechanics.engineering.osu.edu": [11760], "cas.usuhs.edu": [17052], "www.bridgeroadmarketing.com": [2314], "btcbuy.info": [1552], "www.security.vt.edu": [17740], "ausmbmarketplace.cisco.com": [3162], "www.canon.fr": [2809], "myfoxdetroit.com": [11320], "*.rebelmouse.com": [13638], "alamy.com": [775], "fstoppers.com": [6239], "g4.std3.ru": [15445], "people.ysu.edu": [18742], "www.occupywallst.org": [11709], "naturalresources.wales": [11102], "corp.galois.com": [6410], "www.btcs.com": [1562], "nooelec.com": [11470], "123-reg.co.uk": [22], "www.mycharity.ie": [10751], "pentacon-dresden.de": [14358], "dentistry.uic.edu": [17231], "www.arch.umd.edu": [17263], "perfect-privacy.com": [12558], "admin.beamyourscreen.de": [1730], "bitly.is": [1920], "*.visabuxx.com": [17763], "www.nets-danid.dk": [11247], "*.russia.ru": [14044], "spcala.com": [14153], "www.ivegotkids.com": [8401], "pliktverket.se": [12816], "tdnam.com": [15990], "lordsoftheblog.net": [9609], "openttdcoop.org": [11982], "livewyer.com": [9498], "wyzerme.com": [18492], "www.jlist.com": [8442], "www.ist.utl.pt": [16033], "moto-g.com": [10614], "roski.usc.edu": [17037], "assets-news.vice.com": [17667], "ozlabs.org": [12197], "images1.dailykos.com": [4116], "www.ipsos-mori.com": [8349], "logos.visioncriticalpanels.com": [17776], "www.multisoft.com": [10697], "www.ygnition.com": [18677], "recon.cx": [13417], "*.channelme.tv": [3004], "media.scriptfodder.com": [14421], "novel.stanford.edu": [15383], "*.annualcreditreport.com": [1032], "account.mypostoffice.co.uk": [12954], "www.justin.tv": [16888], "forum.t-mobile.nl": [15771], "fineartamerica.com": [5844], "www.pdflabs.com": [12236], "engine.rk.doublepimp.com": [4717], "www.bedis.eu": [1745], "www.ekwb.com": [4920], "www.priceonomics.com": [13055], "www.esi-group.com": [4959], "sdsurf.workforcehosting.com": [18441], "www.tapiture.com": [15958], "hee.nhs.uk": [10913], "bme.osu.edu": [11760], "jobs.economist.com": [5060], "catalog.yandex.by": [18648], "podupti.me": [12841], "origin.images.webs.com": [18144], "web10.dk": [15925], "ssl.price.ua": [13050], "packer.io": [12315], "mirg.osu.edu": [11760], "www.fsras.htwk-leipzig.de": [7114], "passwordwolf.com": [19481], "websites.thm.de": [15811], "www.vacanteen.va.gov": [17019], "drupal.engineering.osu.edu": [11760], "wp.mail.qq.com": [13285], "adminmedia.spontex.org": [15287], "www.hebdo.ch": [19244], "www.itslearning.com": [8395], "icez.net": [7917], "www.postofficeshop.de": [19112], "www.voyage-prive.com": [17857], "getclouder.com": [6568], "myaccount.lib.ncsu.edu": [11492], "urbanartcloud.com": [17410], "www.mosr.sk": [14972], "www.archive.org": [8271], "www.ashleymadison.com": [1255], "secureprosoftware.com": [14494], "www.sandstorm.de": [14282], "landal.*": [18490], "cfmueller.de": [2698], "advq.yandex.com": [18651], "pardus.org.tr": [12400], "telemetrics.symantec.com": [15715], "*.asterisk.org": [1299], "kkh.se": [8733], "pokemon-world-online.net": [12856], "www.csync.org": [3902], "*.vanityfair.com": [17561], "wunderground.com": [18032], "www.marhababrighton.co.uk": [9986], "content-ssl.yieldmanager.com": [13881], "bookworm.oreilly.com": [2207], "www.sanitarium.se": [14285], "bt.no": [1550, 1784], "verivox.de": [17625], "admin.clarahost.co.uk": [3212], "www.pages03.net": [14802], "www.suicidegirls.com": [15584], "sheetmusicplus.com": [14693], "vozpopuli.com": [17861], "ngvpn17.nvidia.com": [10985], "www.provenance.org": [13172], "bit.namecoin.info": [11024], "decryptcryptolocker.com": [4289], "www.requires.io": [13792], "corporate.aldi.ie": [299], "collectiveip.com": [3424], "www.bedfordshireccg.nhs.uk": [10913], "www.webnium.co.jp": [18135], "www.providesupport.cn": [13173], "biapy.fr": [1840], "cdn.globalcloudxchange.com": [6724], "www.hertz.co.nz": [7356], "spaces.live.com": [9483], "about.fundinfo.com": [6262], "www.safeshepherd.com": [14236], "piflc.xbox.com": [18550], "intranet.dbbs.wustl.edu": [17993], "skch.me": [14900], "gu.tt": [7029], "www.ovh.it": [12173], "www.zh.ch": [19648], "schulthess.com": [19573], "www.popehat.com": [12916], "*.catn.com": [2893], "account.lego.com": [9068], "www.quantcast.com": [13337], "www.ovh.ie": [12173], "comstern.de": [3457], "www.cbscorporation.com": [19044], "underskog.no": [17158], "cardiff.gov.uk": [19039], "communities.coverity.com": [3734], "www.usalliance.org": [17033], "www.omaze.com": [11789], "www.o2extra.cz": [16076], "ctf-team.vulnhub.com": [17871], "www.makeshop.jp": [9906], "accounts.nice.org.uk": [10921], "www.hertz.es": [7365], "*.hrcdn.net": [7143], "account.jesus.cam.ac.uk": [17243], "fr.rt.com": [13468], "ffa.ro.vutbr.cz": [17522], "assets.levoleague.com": [9276], "www.quantopian.com": [13340], "www.febas.de": [5705], "webrtc-experiment.com": [18081], "saratov.rt.ru": [13469], "www.laptoplap.hu": [9155], "alac.macosforge.org": [9820], "static.studiegids.tue.nl": [15874], "www.outlook.com": [12153], "releases.cpanel.com": [2651], "www.dwin1.com": [4093], "uncsd2012.org": [17206], "www.leukemiafoundation.org": [11094], "global.engineering.osu.edu": [11760], "adjust.com": [597], "stevesie.com": [15471], "*.uproxy.org": [17012], "media.yoox.biz": [18692], "beta.apple.com": [1120], "www.tunnelbroker.com": [16834], "pinkbike.com": [12694], "tigr.net": [16442], "wiki.openttdcoop.org": [11981], "dlvr.it": [4597], "www.middendrenthe.nl": [11132], "googleblog.blogspot.co.*": [2113], "priorygroup.com": [13074], "itzl.jd.com": [8423], "home.cisco.com": [3162], "www.talktalkbusiness.co.uk": [15930], "netmarketshare.com": [11197], "cas.u-bordeaux.fr": [16918], "www.lpdedicated.com": [569], "feedjit.com": [5737], "infragard.net": [8133], "www.bedfordcornexchange.co.uk": [18987], "feedback.mendeley.com": [10257], "whatif.xkcd.com": [19786], "www.publicinsightnetwork.org": [13209], "hml.lsbu.ac.uk": [9098], "nemertes.com": [11144], "www.freshports.org": [6206], "ruby-lang.org": [14018], "service.byte.nl": [2486], "*.comsuper.gov.au": [3458], "file.bizrate.com": [2033], "*.spreadshirt.at": [15300], "thehill.com": [16290], "*.webmail.brenet.de": [2296], "www.melectronics.ch": [19399], "*.scribol.com": [14416], "malware-research.org": [9926], "shop.netways.de": [11259], "mivolunteers.org": [17835], "www.rudloff.pro": [14024], "www.acpica.org": [264], "uis.kaspersky.com": [8806], "cdn1.sure-assist.com": [15644], "www.sceper.eu": [14343], "www.theaa.com": [16216], "wush.net": [18485], "mett.tk": [3533], "publikdemand.com": [13218], "www.wit.ai": [18378], "avinc.com": [1448], "rubyforge.org": [14019], "ares.wustl.edu": [17993], "paket.de": [12337], "www.mpbio.com": [9783], "static.hgmsites.net": [7398], "avira.com": [1449], "mitei-members.mit.edu": [9749], "duke-energycenter.com": [4797], "verify.cpanel.net": [2653], "wiki.loadaverage.org": [9530], "projects.fruct.org": [5595], "www-prod-storage.cloud.caltech.edu.s3.amazonaws.com": [2757], "infoblox.com": [8106], "blogs.gnome.org": [6353], "nylas.com": [11597], "certify.gpwa.org": [6414], "www.deepbit.net": [4301], "api.appear.in": [1114], "time.orioninc.com": [12109], "*.windstream.com": [18349], "*.btrstatic.com": [1574], "rma.scea.com": [14089], "annotum.org": [18428], "hello.tokyo": [7296], "img.limango-media.de": [9354], "invenio-demo.cern.ch": [2574], "www.goslice.com": [14955], "www.privatetunnel.com": [13099], "www.bullguard.com": [2420], "rcicruiseholidays.com": [18489], "publicfiling.infousa.com": [8110], "adserverec.adtechus.com": [639], "bidbubble.com": [1844], "partners.manageengine.com": [9940], "steganos.com": [15462], "www.g.switchadhub.com": [15701], "img.car.com": [2826], "vstech.net": [17636], "*.downloadster.net": [4728], "www.epilepsyfoundation.org": [5321], "www.hertz-autovermietung.com.pl": [7358], "ovh.co.uk": [12173], "cms.paypal.com": [12467], "johnsonking.com": [8612], "ih.constantcontact.com": [3592], "www.trustkeeper.net": [16782], "blog.jquery.com": [8451], "oops.org": [11897], "officeredir.microsoft.com": [10364], "assets.iu.edu": [8064], "bu.edu": [2237], "analysis.f-secure.com": [5541], "presscoders.com": [13030], "store4geeks.com": [15492], "*.nationbuilder.com": [11043], "www.cualbr.com": [3481], "www.americorpsconnect.org": [11090], "partnernet.symantec.com": [15715], "community.spiceworks.com": [15266], "*.nrelate.com": [11545], "www.xbee.net": [18548], "pastebin.ca": [12442], "www.readspeaker.com": [13610], "notebooknagyker.hu": [9155], "blog.safaribooksonline.com": [14222], "pk.an.de": [985], "rylands.wigan.gov.uk": [18286], "www.theengineroom.org": [16329], "www.my.osu.edu": [11760], "wayskinny.com": [18012], "hsto.org": [7585], "strategysignals.com": [15511], "www.asia.elsevierhealth.com": [5187], "telebrands.net": [16072], "www.exootlab.com": [5500], "t.rasp.yandex.com": [18651], "www.bandinelli.net": [1639], "*.venmo.com": [17607], "*.eerdmans.com": [5105], "www.employeeexpress.gov": [5217], "www.verasafe.com": [17613], "www.hostpointpartner.ch": [7542], "nikecsolutions.com": [11378], "jsperf.com": [8656], "jscss.cp.ctscdn.com": [15851], "bitfinex.com": [1995], "strato.*": [14192], "projecthoneypot.org": [13135], "help.perle.com": [12577], "milbencheck.at": [10390], "www.twittercommunity.com": [16893], "coinaxis.com": [3391], "www.webtrh.cz": [18173], "www.everything4bet.net": [5456], "pvac-webhost.leeds.ac.uk": [17318], "www.tipico.de": [16492], "www.passwordcard.org": [12434], "rimg08.rl0.ru": [13914], "webmail.axboe.dk": [1468], "www.beonespark.com": [1512], "www.tunnelsup.com": [19705], "www.topiama.com": [16565], "*.bluehost.com": [2150], "orkut.com.br": [12110], "isoc.org": [7829], "perm.rt.ru": [13469], "hmailserver.com": [7087], "www.apmebf.com": [3481], "www.collegebeschermingpersoonsgegevens.nl": [4813], "popphoto.com": [12922], "salaryservice.ieeeusa.org": [7717], "*.kit.edu": [8798], "12foothedgehog.com": [28], "tronixcomputers.com": [16757], "netzfreiheit.org": [11275], "support.globusonline.org": [6746], "*.blockr.io": [2097], "a1community.net": [217], "webmail.wildwestdomains.com": [18300], "yify-torrent.org": [18616], "cdn2.teads.tv": [15995], "parlament.neos.eu": [10899], "cme.mitre.org": [10459], "bitcoinaverage.com": [1968], "www.cozmedics.com.au": [2644], "*.datahc.com": [4182], "scholcomm.columbia.edu": [3448], "api.buttercoin.com": [2463], "www.onsiteconcierge.com": [13392], "www.fuscia.info": [6272], "www.eclevelandclinic.org": [3236], "www.toppreise.ch": [19688], "my.gartner.com": [6463], "git.iridiumbrowser.de": [8356], "webmail.bln.de.clara.net": [3212], "www.pushbullet.com": [13251], "extranet.skat.dk": [14897], "innovateuk.org": [8152], "www.mountaincode.eu": [10619], "london-nano.com": [9574], "bulletin.cern.ch": [2575], "terneuzen.nl": [11132], "*.peopleschoice.com": [12553], "*.livestatserver.com": [9512], "electroscience.osu.edu": [11760], "investors.btcs.com": [1562], "assets.red-gate.com": [13657], "people.openmoko.org": [12039], "www.cio.com.au": [2610], "indicators.ic.nhs.uk": [10912], "webstats.genesis4gamer.de": [6527], "showcase-tv.com": [14740], "opensource.osu.edu": [11760], "dmu.ac.uk": [4048], "www.refeds.org": [13413], "1000.chromeexperiments.com": [3117], "hoodline.com": [7486], "client.cdn77.com": [2556], "iar.com": [7668], "www.ctc.usma.edu": [17044], "www.wienerstadtwerke.at": [18284], "deru.dict.cc": [4455], "www.mghocd.org": [9702], "auto.yandex.com.tr": [18649], "accounts.wmflabs.org": [18296], "*.wikispooks.com": [18298], "www.steenwijkerland.nl": [11132], "www.carasutra.co.uk": [2829], "aaronbrotherscircular.com": [393], "skylink.sk": [14937], "gettingreal.37signals.com": [118], "undergradpreview.usc.edu": [17278], "forex.com": [6033], "southampton.gov.uk": [15191], "watershed.co.uk": [18002], "assets.soundowl.net": [15163], "slp2.somerset.gov.uk": [15127], "rekonq.kde.org": [8718], "freebsd.org": [6120], "*.caller.com": [2753], "terminal.securenet.com": [14493], "api.itunes.apple.com": [1120], "pt.wustl.edu": [17993], "gatag.it": [14216], "security.switch.ch": [15699], "m.tune.yandex.kz": [18652], "cluster1.easy-hebergement.net": [5033], "www.thecenterforrights.org": [16255], "www.cscprotectsbrands.com": [3683], "members.mayfirst.org": [10100], "www.datenschutzzentrum.de": [8052], "webmail.cesky-hosting.cz": [19051], "leboncoin.fr": [19351], "spice-space.org": [15264], "www.gsb.stanford.edu": [15383], "petra3.desy.de": [4399], "boutique.arte.tv": [18966], "partners.netapplications.com": [11172], "*.chip-kiosk.de": [2595], "api.aimpulse.com": [743], "www.fanli.com": [5655], "rottnestexpress.com.au": [13983], "www.bakabt.me": [1622], "www.bitchmagazine.org": [1955], "astrakhan.rt.ru": [13469], "ws.amazon.com": [910], "www.userlike.com": [17436], "gameinfo.euw.leagueoflegends.com": [9205], "dsa.dft.gov.uk": [19116], "api.yamli.com": [18645], "vt.edu": [17740], "*.productsafety.gov.au": [13124], "photo-mark.com": [10002], "js.ui-portal.de": [16952], "research.csc.ncsu.edu": [11492], "permits.performance.gov": [12568], "goldenfrog.com": [6814], "voucherexpress.co.uk": [7317], "www.f3.htw-berlin.de": [7112], "tickengo.*": [16411], "www.littlecms.com": [9477], "www10.qth.com": [13291], "brave.pigg.ameba.jp": [926], "renderfarming.net": [13765], "nordvpn.com": [11482], "cache.tv.qq.com": [13284], "*.cld.me": [3206], "secureuk.net": [14513], "www.nttxstore.jp": [11557], "www.ubnt.com": [17084], "nessie.uihr.uillinois.edu": [16960], "ukashcardsatis.com": [17123], "www.casinoaffiliateprograms.com": [2882], "www.theparliamentmagazine.eu": [16304], "wiredout.osu.edu": [11760], "*.epb.net": [4940], "oss.oracle.com": [12082], "365.rsaconference.com": [13454], "www.vidble.com": [17681], "*.cityofchicago.org": [3184], "harlandclarkegiftcard.com": [7207], "www.tele-task.de": [16068], "clickdelivery.gr": [3258], "www.myed.ed.ac.uk": [5067], "www.brevado.com": [2307], "nytm.org": [10988], "img.tweetimag.es": [1814], "cdn.theatlantic.com": [16246], "thecalmzone.net": [16254], "www.soc.ulaval.ca": [17229], "www.suntec.net": [15608], "www.offcampus.osu.edu": [11760], "office.co.uk": [11742], "www.capris.no": [603], "bundanon.com.au": [2426], "imgb.nxjimg.com": [11591], "paymybill.uillinois.edu": [16960], "4.*.wdfiles.com": [18294], "dal.net": [4003], "certificate-transparency.org": [2968], "static-ssl.businessinsider.com": [2454], "faq.soylent.com": [15199], "staging.maxmind.com": [10097], "go.touchcommerce.com": [16608], "secure-inside.intel.com": [8209], "precisionmarinetools.com": [13020], "singlehop.com": [14847], "*.bbcimg.co.uk": [1499], "www.ichkoche.at": [7918], "pix01.revsci.net": [13840], "*.www.textbooks.com": [16159], "*.ebuyer.com": [5043], "somethingawful.com": [15130], "www.solola.ca": [15123], "gateway.audiencescience.com": [1353], "element.yandex.com.tr": [18649], "pharmacievirtuelle.pha.ulaval.ca": [17229], "images.mobilism.org": [19404], "reg.dtic.mil": [17028], "ne.edgecastcdn.net": [5079], "www.mysolarcity.com": [15109], "www2.youm7.com": [18714], "controlscan.com": [3621], "www.mandiant.com": [19381], "community.redhat.com": [13675], "www.hgi.rub.de": [13478], "catalyst.harvard.edu": [7219], "projectslice.com": [14955], "www.dawsonera.com": [4235], "x.bidswitch.net": [1847], "rewards.xbox.com": [18550], "braindecoder.com": [2267], "logicboxsoftware.com": [9556], "www.swinburne.edu.au": [15691], "referafriend.xfinity.com": [19784], "cpunks.org": [3747], "cadetnet.gov.au": [2714], "www.truthdig.com": [16803], "www.schweissgut.net": [12116], "*.internetbs.net": [8276], "shield.nvidia.com": [10985], "www.paymentaccuracy.gov": [12476], "login.advent.com": [654], "mouseflow.com": [10624], "mysql.cesky-hosting.cz": [19051], "static.car.com": [2826], "dribbble.com": [4759], "www.forensischinstituut.nl": [11132], "www.lawblog.de": [9179], "community.bitnami.com": [2011], "cloudtools.rackspace.com": [13506], "bootswatch.com": [2218], "www.cloudcontrol.com": [3283], "satern.nasa.gov": [10869], "bostonreview.net": [2236], "adcap.biz": [519], "dataclass.stanford.edu": [15383], "suppliesfordreams.org": [15636, 15637], "*.marhab.com": [9985], "ubuntu-mate.community": [17106], "imagecomics.com": [7977], "www.givedirectly.org": [6688], "*.grenoble-inp.fr": [6942], "fapa.edp.pt": [4896], "www.axisbank.co.in": [1474], "metanet.ch": [10309], "gentooquebec.org": [6532], "poppler.freedesktop.org": [6126], "*.ey.com": [5346], "1seculodeenergia.edp.pt": [4896], "scm.symantec.com": [15715], "bestcovery.com": [1809], "www.webfusion.co.uk": [18117], "loans.car.com": [2826], "image.unwire.com": [17376], "www.anthropologie-societes.ant.ulaval.ca": [17229], "www.naromax.com": [11037], "*.xfce-help.org": [19462], "polid.jppol.dk": [8445], "iss.leeds.ac.uk": [17318], "console.twistage.com": [16883], "library.stanford.edu": [15383], "my.dianomi.com": [4444], "kpopstage.co": [9002], "paste.lugons.org": [9108], "apps.nlm.nih.gov": [11052], "mdosche.de": [10130], "www.fokus.fraunhofer.de": [6112], "www.integrity.st": [8204], "praktikpladsen.dk": [19515], "unr.li": [17367], "maps.ilovefreegle.org": [7892], "gp.se": [6368], "opsmate.com": [12062], "thedma.org": [16264], "*.mongabay.com": [10552], "sitemgr.web.engineering.osu.edu": [11760], "oghalailab.stanford.edu": [15383], "www.instantpage.me": [8187], "www.noaddedsugar.com": [11446], "justaguy.pw": [8696], "support.webgo.de": [18064], "network23.org": [11265], "ucc.unizar.es": [17356], "mpi-sws.org": [10089], "Avanza.se": [1443], "escapistexpo.com": [16188], "www.7terminals.com": [197], "www.intelliserver.net": [8218], "donate.richarddawkins.net": [13871], "customz.nustarz.com": [11564], "onlinelaw.wustl.edu": [17993], "longtailvideo.com": [9589], "www.medicine.wustl.edu": [17993], "www.plexapp.com": [12815], "akademy2012.kde.org": [8718], "store.totalwebsolutions.com": [16605], "issuetracker.unity3d.com": [17220], "*.googlecode.com": [6844], "ecos.osu.edu": [11760], "support.itbit.com": [8384], "www.patriotssuperbowl.us": [12458], "illumos.org": [7970], "trainingcenter.nih.gov": [11052], "vangogh.teespring.com": [16060], "webmail.mbnet.fi": [9723], "*.spench.net": [15260], "www.freebiblesoftware.com": [6139], "jondos.org": [8623], "crypton.io": [3882], "*.markmonitor.com": [10003], "sc3.maps.live.com": [9483], "www.ecrimeresearch.org": [4887], "*.ensighten.com": [5286], "www.sure-assist.com": [15644], "mail-archive.com": [9869], "support.launchrock.com": [17440], "myaccount.shaw.ca": [14687], "www.debian-administration.org": [4269], "gaitaobao1.alicdn.com": [805], "digitalmars.com": [4493], "music.stanford.edu": [15383], "bviphotovideo.com": [1583], "www.litecoin.info": [9461], "pimages.xplosion.de": [18585], "zen-cart.com": [18819], "www-cdn.dell.com": [4335], "perfecthair.ch": [19486], "ei.chaturbate.com": [3035], "pasteup.guim.co.uk": [7014], "bitmit.net": [2009], "microcorruption.com": [10355], "lhc-beam-operation-committee.web.cern.ch": [2575], "*.neonmob.com": [11155], "ricoh.com": [13879], "www.bestchange.org": [1804], "www.priv.gc.ca": [13080], "kau.se": [8708], "regcheckcode.taobao.com": [15952], "neko.im": [11137], "members.tip.net.au": [12218], "fnacspectacles.com": [5969], "www.yourmembership.com": [18725], "www.hants.gov.uk": [7196], "*.forgifs.com": [6037], "www.masterxchange.com": [10055], "zarafa.com": [18795], "cio.wustl.edu": [17993], "www.whmcs.com": [17906], "www.swisscom.ch": [15698], "moodle.uaa.alaska.edu": [17233], "dobrochan.ru": [4612], "connect.apan.org": [329], "*.topoption.com": [16562], "masterh1.adriver.ru": [534], "mageia.org": [9847], "www.seacloud.cc": [14434], "re.is": [13411], "www.freepressunlimited.org": [6148], "p5.zdassets.com": [18806], "marsocial.com": [9713], "streaming-url.tape.tv": [15956], "ads.pubmatic.com": [13194], "www.midasgreentech.com": [10373, 10374], "elroy.twit.tv": [15892], "explore.co.uk": [7452], "plymouth.objective.co.uk": [19454], "www.trainingindustry.com": [16657], "it-security.usc.edu": [17278], "*.hit.gemius.pl": [6517], "myefc.efinancialcareers.com": [4911], "*.blendle.nl": [2068], "gentoo-blog.de": [6529], "registrierung.web.de": [18050], "journeyed.com": [8649], "libsdl.org": [9290], "bucklink.xtgem.com": [18596], "asee.osu.edu": [11760], "tulips.ntu.edu.tw": [10971], "get.how": [6575], "*.well.com": [18263], "auth.habrahabr.ru": [7129], "help.bigcartel.com": [1850], "gsspubssl.nci.nih.gov": [11052], "www.sony.se": [15143], "sharetobuy.com": [19586], "i2.services.social.microsoft.com": [10364], "blog.cachethq.io": [2709], "enlightenment.org": [5280], "eplanning.birmingham.gov.uk": [19000], "order.ifolor.ch": [19282], "www.cnrs.fr": [6195], "www.eiseverywhere.com": [5389], "www.ist-track.com": [8379], "internetgovernance.org": [8272], "relate.mit.edu": [9747], "medarbejdersignatur.dk": [10139], "telford.gov.uk": [19669], "*.ironwhale.com": [8358], "www.lenovo.com": [9251], "www.earthfirst.org.uk": [5008], "educause.edu": [5096], "match.adsrvr.org": [635], "muc.xmpp.org": [18526], "agedcarecomplaints.govspace.gov.au": [6867], "ubuntu.com": [17102], "www.hashcat.net": [7226], "cdn.mobclix.com": [10488], "soeren-hentzschel.at": [15086], "home.silentcircle.com": [14786], "fortune.com": [6061], "rimg05.rl0.ru": [13914], "motion-docs.adtile.me": [640], "tidbits.com": [16431], "kb.uaa.alaska.edu": [17233], "srv.asknet.de": [1268], "event.knowledgeblog.org": [8948], "wiki.xiph.org": [18575], "safeguarding.southwark.gov.uk": [15196], "static9.twilio.com": [16876], "kum.com": [9035], "useitandsee.com": [5178], "sysmocom.de": [15756], "www.robeco.nl": [13921], "cmnf.engineering.osu.edu": [11760], "stage.nortoncdn.com": [11505], "moje.zuno.cz": [18768], "www.healthunlocked.com": [7259], "*.posthaven.com": [12975], "www.test.de": [19671], "svn.jenkins-ci.org": [8551], "gfi-italia.com": [6319], "parking.wustl.edu": [17993], "dict.cc": [4455], "mycampina.com": [2783], "www.gamersfirst.com": [6435], "www.brent.gov.uk": [2304], "email.wustl.edu": [17993], "support.f5.com": [5546], "secure-js.adsonar.com": [539], "www.binsearch.info": [1888], "ondarossa.info": [11825], "dvidshub.net": [4089], "*.onlive.com": [11812], "www.facebook.it": [5623], "cl.exct.net": [5482], "yeas.yahoo.co.jp": [18640], "www.facebook.is": [5623], "www.suas.ie": [15553], "ibutsu.org": [19279], "iubenda.com": [8396], "marketwire.com": [10022], "*.palms.com": [12348], "pictures.meetic.com": [10214], "www.joinus.today": [8617], "metabunk.org": [10304], "pokey.ci.uchicago.edu": [17246], "miles-and-more.com": [10394], "*.lp0.eu": [9639], "www.firsts.com": [5880], "alertsite.com": [14986], "ols.nab.com.au": [10865], "www.interkassa.com": [8251], "www.bunkus.org": [19025], "brightfutures.portsmouth.gov.uk": [19508], "bdsc.webapps.blackberry.com": [2050], "www.cyseclabs.com": [3991], "more-ip-event.net": [10584], "www.dma.org.uk": [4522], "www.pandora.com": [12359], "fod-web-01.busfin.ohio-state.edu": [11761], "manage.my.t-mobile.com": [15772], "bawsi.org": [1493], "lesterchan.net": [9262], "demo.ethernetportal.equinix.com": [5334], "career.berkeley.edu": [17240], "mobile.yandex.com.ua": [18650], "wpad.leeds.ac.uk": [17318], "news.google.*": [6837], "vmpforms.easthants.gov.uk": [5013], "www-sandbox.buttercoin.com": [2463], "video.regjeringen.no": [13739], "www.squarepenguin.co.uk": [15330], "onecloudsecurity.com": [11830], "www.questioncopyright.org": [13356], "postsuisseid.ch": [12949], "www.vdqbulbs.com.au": [17477], "static1.sockshare.com": [15081], "bpa.gov": [2198], "moelleken.org": [10529], "*.networkedblogs.com": [11272], "robtex.com": [13920], "*.commercialappeal.com": [4988], "www.synthetix.com": [15742], "nice.org.uk": [10921], "help.talktalk.co.uk": [15929], "*.orangewebsite.com": [12089], "shop.freertos.org": [6129], "www.raceforward.org": [13491], "cmt.osu.edu": [11760], "personaldataecosystem.org": [12581], "tankafetast.com": [15947], "isc2cares.org": [7823], "iws.htwk-leipzig.de": [7114], "www.bmpharmacy.com": [1532], "connect.watford.gov.uk": [19747], "*.m.poczta.home.pl": [7465], "fsfe.org": [5601], "globalpay.westernunion.com": [18216], "*.pricerunner.co.uk": [13053], "www.arte.tv": [18966], "*.vstech.net": [17636], "waste.org": [17895], "crm.zoho.com": [18884], "podcasts.it.ox.ac.uk": [17271], "animal.ffa.vutbr.cz": [17522], "rkn.gov.ru": [13913], "xetra.com": [18567], "*.fsu.edu": [5603], "mainpage.pixfs.net": [12741], "www.heg.org": [7502], "frederik-braun.com": [6116], "drwho.virtadpt.net": [4784], "atypon.com": [1342], "denpa.moe": [4366], "www.stemulitefitnessformula.com": [15467], "evdrive.evdriveinfo.com": [4984], "leiajung.org": [9237], "thecityuk.com": [16220], "*.jiwire.com": [8565], "www.destroyallsoftware.com": [4396], "gongxiao.tmall.com": [19684], "l1.51fanli.net": [171], "inka.f4.htw-berlin.de": [7112], "www.ntu.ac.uk": [10972], "adfs.leeds.ac.uk": [17318], "dot.money.pl": [10547], "parkmodelsdirect.com": [12403], "tme.osu.edu": [11760], "firefox.net.cn": [5860], "owa.alfa.de": [800], "www.gigamon.com": [6649], "www.twistedmatrix.com": [16885], "unirel.vt.edu": [17740], "music.douban.com": [4707], "neverddos.com": [11285], "origin-cdn.els-cdn.com": [5182], "draugr.de": [4743], "viewablemedia.net": [17770], "ricoh.com.hk": [13879], "l0.51fanli.net": [171], "dialog.filepicker.io": [5801], "*.optorb.com": [12077], "commentarymagazine.com": [3478], "secure.ace.advertising.com": [662], "www.netsekure.org": [11249], "wz2100.net": [17987], "help.eset.com": [5358], "*.dafont.com": [4103], "www.it.uu.se": [17074], "citrixonline.com": [3179], "static.lanyrd.net": [9153], "xsens.com": [18591], "www.dotsec.com": [4696], "*.caintvnetwork.com": [2720], "www.virtualizationreview.com": [17756], "lists.nasa.gov": [10869], "signpostsheffield.sheffield.gov.uk": [14694], "itservices.usc.edu": [17278], "metrika.yandex.com.tr": [18649], "sb-innovation.de": [14078], "quicktranslate.com": [13361], "media.allyou.net": [842], "www.carecareersdevon.org.uk": [19040], "bugs.gnewsense.org": [5600], "customtiburon.com": [3939], "bsdhistory.discoverbsd.com": [4548], "mail.163.com": [34], "www.websitegrowers.com": [18150], "bigbrother.se": [1856], "b.stripecdn.com": [15526], "fr.cryptonator.com": [3883], "e-pages.dk": [4857], "diygadget.com": [4587], "www.fraedom-cdn.com": [19192], "stats.ftb.ca.gov": [2742], "control.vps.net": [17510], "ox-d.aa.com": [229], "www.nedstat.com": [3453], "codeforamerica.org": [3359], "www.amctv.com": [306], "listman.redhat.com": [13675], "www.codecoon.com": [3364], "offers.usatoday.com": [17032], "www.metager.de": [10298], "docsend.com": [4613], "localphone.com": [19370], "store.atmel.com": [984], "bananian.org": [1636], "tony.xyz": [16546], "carestream.com": [2848], "givekidstheworldstore.org": [6686], "signin.netapp.com": [11183], "8win88win.com": [206], "www.btsport.com": [1576], "eadmissions.westsussex.gov.uk": [18211], "*.jacksonville.com": [8487], "api-read.facebook.com": [5620], "www.keep2share.cc": [8704], "edenhost.com": [5075], "firstlook.pnas.org": [12273], "etsy.com": [5395], "www.pdfreaders.org": [12501], "www.madewithcode.com": [9838], "nelhage.com": [10904], "gn.apc.org": [1294], "googleartproject.com": [6833], "i.s-microsoft.com": [14057], "uservoice.com": [17441], "www.webmail.shaw.ca": [14687], "upload.sms.cam.ac.uk": [17243], "www.oagtravel.com": [16927], "hs-ws1.oracle.com": [12082], "leadertech.com": [9199], "759425240.r.cdn77.net": [18607], "www.insure-systems.co.uk": [4442], "www.mastermindsdigital.com": [10059], "*.softlayer.com": [15094], "www.chronicle-store.com": [3121], "instra.com": [8196], "webmaster.yandex.by": [18648], "pixel.rubiconproject.com": [14014], "forum.bitcoin.de": [1966], "www.c-base.org": [2492], "giveto.osu.edu": [11760], "shop.bite.lt": [1991], "bar.love.mail.ru": [9874], "cli.linksynergy.com": [9381], "cryptocloud.ca": [3870], "multiseek.net": [10696], "www.oiss.wustl.edu": [17993], "storage.aircrack-ng.org": [750], "ileansigma.osu.edu": [11760], "www6.northyorks.gov.uk": [19440], "*.readthedocs.org": [13611], "www.latam.citibank.com": [3171], "www.criticalthinking.org": [3804], "www.cybercrime.admin.ch": [19648], "a.academia-assets.com": [435], "www.atrpms.net": [369], "a.collective-media.net": [3423], "icewarp.com": [7913], "my.ti.com": [16152], "entadsl.com": [5289], "ubcdn.co": [17083], "foodprotectiontaskforce.com": [6001], "mysymantec.symantec.com": [15715], "www.omicron.at": [11635], "cdn0.dailydot.com": [4114], "fraunhofer.de": [6112], "ja.community.dell.com": [4335], "facultyinformationhandbook.wustl.edu": [17993], "mmoga.de": [9763], "training.github.com": [6680], "app.ghosteryenterprise.com": [6630], "*.nature.com": [11104], "gme.stanford.edu": [15382], "atsec.com": [1332], "*.tu-berlin.de": [16038], "explorer.namecoin.info": [11024], "secure.dilbertfiles.com": [4517], "www.aphyr.com": [1090], "www.itradecimb.com.sg": [2607], "www.aisec.fraunhofer.de": [6112], "cdn.viaduct.io": [17662], "web.flux.utah.edu": [17288], "insightexpressai.com": [8172], "www.mutelight.org": [10728], "sacredcrystalsingingbowls.com": [3894], "static2.boligportal.dk": [2191], "www.mrfile.me": [10673], "joomag.com": [8625], "www.logentries.com": [9553], "int.anon-ib.co": [1034], "spideroak.com": [15269], "namecoin.info": [11024], "www.law.illinois.edu": [17258], "review.tizen.org": [16506], "sq.ouvaton.coop": [12155], "widgets.getpocket.com": [6579], "ned.nih.gov": [11052], "000webhost.thecthulhu.com": [16334], "www.terveysportti.fi": [16133], "exclusivex.com": [5487], "fso-tapi.admatrix.jp": [531], "blogads.com": [13038], "aiasurety.com": [289], "systemcenteradvisor.net": [15760], "rossierstudents.usc.edu": [17278], "www.tapatalk.com": [15955], "processing.org": [13120], "de-bs.dict.cc": [4455], "g.mozest.com": [10649], "matrox.com": [10079], "planet.lysator.liu.se": [9084], "accessibility.kde.org": [8718], "www.ice.cam.ac.uk": [17243], "ipython.org": [7809], "online.pragmaticstudio.com": [13014], "www.dyndns.berlin": [4822], "vz46.brenet.de": [2295], "www.firstdedic.ru": [5868], "shop.dd-wrt.com": [4018], "es.calameo.com": [2731], "treasury.gov": [16704], "www.influencersconference.com": [8098], "*.systemcenteradvisor.com": [15760], "lxcenter.org": [9679], "hello.neustar.biz": [11280], "pgpru.com": [11964], "gpo.iitb.ac.in": [7744], "vonage.co.uk": [17838], "integrity.pt": [8203], "www.apple.com": [1120], "*.edweek.org": [5069], "blog.agilebits.com": [727], "online.osu.edu": [11760], "scontent-b.igcdn.com": [7951], "notalwayslearning.com": [19441], "www.cardcash.com": [2833], "www.klibert.pl": [8932], "p1.zdassets.com": [18806], "secure-www.6pm.com": [182], "cuckoosandbox.org": [19096], "internet.yandex.com": [18651], "*.webspace4clans.de": [18155], "q8car.com": [13278], "datamonitor.com": [4205], "www-05.ibm.com": [7675], "transfer.srgssr.ch": [19621], "gfx.nrk.no": [11546], "cache.smithmonitoring.com": [15007], "content.yieldmanager.com": [13881], "secure.bathnes.gov.uk": [1689], "www.idenyt.dk": [7941], "th.norton.com": [11505], "www.bitcoinplus.com": [1982], "linsrv101.linuxcontrolpanel.co.uk": [9426], "profitbricks.com": [13129], "www.careerfoundry.com": [2844], "www.nic.io": [11381], "vitamintalent.com": [17792], "ep09.pld-linux.org": [12267], "compasscard.ca": [3515], "*.discovercard.com": [4549], "hertz247.de": [7346], "simplednscrypt.org": [14826], "sns.isc.org": [7821], "esgwtdc.nts.jhu.edu": [16296], "www.horstaandemaas.nl": [11132], "teamboard.com": [15998], "*.justgiving.com": [8691], "magnet.ie": [9860], "tube.geogebra.org": [6537], "bulletin.engineering.columbia.edu": [3448], "*.docstoccdn.com": [4622], "www.ibphoenix.com": [7676], "devtalk.nvidia.com": [10985], "haritalar.yandex.com.tr": [18649], "tp4.sinaimg.cn": [14845], "www.telemetry.com": [16089], "mobile.thehill.com": [16290], "cdn.onenote.net": [11840], "lists.itnog.it": [7862], "www.cltglobal.com": [2624], "envirostyles.ca": [5308], "tp3.sinaimg.cn": [14845], "libappprod1.stanford.edu": [15383], "www.janhendrikpeters.de": [8509], "www.icg.isy.liu.se": [9084], "www.healthiertogethergm.nhs.uk": [10913], "bite.lt": [1991], "casecurity.org": [2519], "*.groceryserver.com": [6961], "digitalpoint.com": [4498], "image.email.argos.co.uk": [1186], "rubicondev.com": [14015], "p6.raasnet.com": [13655], "memberservices.beunlimited.co.uk": [16075], "typo3.sedo.de": [14540], "www.rigb.org": [13994], "www.cod.ed.gov": [4889], "terragalleria.com": [16125], "clients.evaske.com": [5435], "fabricatorz.com": [5618], "like.iwantmyname.com": [19313], "mynomadesk.com": [11463], "*.minijuegosgratis.com": [10418], "www.mail-archive.com": [9869], "mutualart.com": [10732], "upatient.com": [17010], "www.xplosion.de": [18585], "sg.norton.com": [11505], "*.usf.edu": [17275], "stumble-upon.com": [15544], "my.omniture.com": [11803], "i4.gallery.technet.s-msft.com": [14058], "eprihlaska.vutbr.cz": [17522], "community.zarafa.com": [18795], "www.packetstatic.com": [12317], "www.deutsche-rentenversicherung.de": [4407], "shenghuo.alipay.com": [817], "angelikafilmcenter.com": [1015], "gearslutz.com": [6488], "mazacoin.org": [10107], "cdn.xplosion.de": [18585], "idmsa.apple.com": [1120], "schlossbergstore.com": [14354], "vpsboard.com": [17863], "hrservices.plymouth.ac.uk": [12833], "pony.fm": [12897], "www.cacert.com": [2520], "ngvpn35.nvidia.com": [10985], "*.nationalexpress.com": [11050], "www.justfordomino.com": [10101], "illiad.wustl.edu": [17993], "www.bulletinoftheschoolofmedicine.wustl.edu": [17993], "www.1lotstp.com": [44], "autodiscover.coverity.com": [3734], "gsfc.org": [6387], "jet2.com": [8557], "bulletproofmeteor.com": [2416], "*.alaskaair.com": [778], "dtcc.edu": [4323], "rtdru.rt.com": [13468], "metric.yandex.by": [18648], "linuxdistrocommunity.com": [9421], "www.contentwatch.com": [3611], "*.actblue.com": [488], "api.artsy.net": [1235], "lansstyrelsen.tdconline.se": [15799], "images.riverbed.com": [13907], "www.safello.com": [14234], "www.mediaarea.net": [10154], "library.uchastings.edu": [16941], "www.nidcd.nih.gov": [11052], "s1.thejournal.ie": [16224], "www.imququ.com": [7974], "readthedocs.org": [13611], "thumbshots.*": [16401], "securecerts.ie": [4512], "www.makrotex.hu": [9920], "cipherlawgroup.com": [3150], "lewrockwell.com": [9278], "sc1.maps.live.com": [9483], "torcheck.xenobite.eu": [18564], "forums.gpgauth.org": [6876], "trustlogo.com": [3504], "ts.oebb.at": [19455], "sportisimo.com": [14158], "www.eis.kent.gov.uk": [8851], "embed.cs.utah.edu": [17288], "*.nine.ch": [11412], "derpibooru.org": [4381], "eliotsocietyvolunteer.wustl.edu": [17993], "www.wimp.no": [18275], "tjanster.idg.se": [7705], "www.bitcoinpool.com": [1969], "forums.oracle.com": [12082], "www.familie.aok.de": [317], "www.*.uidaho.edu": [17257], "*.suomi.fi": [19640], "aetolia.com": [18943], "ssn.uillinois.edu": [16960], "dns.lc.wix.com": [18383], "myportal.calpoly.edu": [2747], "secure.me": [14488], "www.mediamath.com": [10157], "chdir.org": [3038], "meebey.net": [10205], "en-fr.dict.cc": [4455], "sirrix.com": [14859], "dav.dropdav.com": [4767], "hub.united.com": [17212], "prsearch.juniper.net": [8682], "blog.tropo.com": [16759], "www.cs.utah.edu": [17288], "www.radioplayer.co.uk": [13521], "www.secur1ty.com": [14476], "3.darkroom.shortlist.com": [14734], "static-cdn1.ustream.tv": [17451], "www.dogsbodyhosting.net": [4635], "www.sussan.com.au": [15664], "multiplayer.unity3d.com": [17220], "forums.e-hentai.org": [4840], "wemonit.de": [18021], "www.dsinternals.com": [4083], "blogs.it.ox.ac.uk": [17271], "jp.msn.com": [9796], "console.aliyun.com": [821], "pen-testing.sans.org": [14072], "mulesoft.com": [10691], "help-es-la.nike.com": [11401], "www.consuwijzer.nl": [3594], "supportforums.cisco.com": [3162], "investor.activisionblizzard.com": [503], "www.adroll.com": [536], "hopkins-interactive.com": [7494], "twitter.freifunk.net": [6192], "img12.360buyimg.com": [112], "chip-digital.de": [2594], "store.checkpoint.com": [3048], "mai.taobao.com": [15952], "byte.nl": [2486], "rbb-online.de": [13591], "twilio.com": [16876], "www.makewebeasy.com": [9917], "assembly.wales": [1280], "img2.picload.org": [12661], "webooluinc.com": [18137], "pegelf.de": [12528], "wetlandpark.gov.hk": [19253], "preview.springer.com": [15309], "huabei.alipay.com": [817], "*.manufrog.com": [9964], "webgis.ornl.gov": [11693], "*.globalsign.co.uk": [6718], "api.opencorporates.com": [11931], "boposta.bo.infn.it": [7766], "piratenpartij.nl": [12708], "remit.onlinesbi.com": [11873], "geant3.archive.geant.net": [6313], "contact.camden.gov.uk": [2772], "appharbor.com": [1107], "www.evilsocket.net": [19169], "contact-privacy.com": [16817], "stanford.io": [1920], "travelingnuker.com": [16696], "www.southglos.gov.uk": [15189], "brsmblog.com": [1540], "www.securelime.com": [14503], "webassetsa.scea.com": [14089], "www.trillian.im": [16735], "sofort.com": [15089], "www.puckey.org": [13221], "stackcommerce.com": [15361], "*.awcloud.net": [377], "www.infusionsoft.com": [8136], "apps.usaspending.gov": [17034], "about.constantcontact.com": [3592], "www2.glam.com": [6697], "www.qz.com": [13386], "play.itunes.apple.com": [1120], "m.onlinesbi.com": [11873], "clevelandclinicmeded.com": [3236], "www.price.ua": [13049], "emea.centrify.com": [19048], "gd3.alicdn.com": [805], "femtoduino.com": [5746], "cst.usc.edu": [17278], "www.bioelectronics.leeds.ac.uk": [17318], "trm.brassring.com": [19017], "corner.squareup.com": [15329], "www.teamboard.com": [15998], "focaljet.com": [5973], "www.alldaycalm.com": [845], "www.pl.vc": [12752], "engin.cf.ac.uk": [2835], "tip4commit.com": [16491], "www.totse2.com": [16607], "www.drone.io": [4766], "pbagalleries.com": [12209], "forum.paradoxplaza.com": [12386], "www.c-spanvideo.org": [2494], "www.sisu.ut.ee": [17069], "slashdotmedia.com": [14948], "coinwallet.eu": [3400], "partnernet-sit.symantec.com": [15715], "sdilej.cz": [14431], "huit.harvard.edu": [7219], "tmobile.nl": [15835], "schraubenluchs.de": [19572], "politicasocial.unizar.es": [17356], "news.uga.edu": [17312], "*.tbe.taleo.net": [15922], "operationfabulous.com": [12052], "www.savedeo.com": [14312], "www.aktiiviraha.fi": [7186], "digital.cabinetoffice.gov.uk": [2701], "www.librarylicense.org": [9307], "habets.se": [7125], "flixbus.at": [5931], "www.searchmarketingexpo.com": [16367], "forum.zwame.pt": [18925], "amnesty.org.uk": [971], "cdn.taboolasyndication.com": [15899], "static.xsolla.com": [18593], "palmshop.hu": [9155], "wan.taobao.com": [15952], "googletagmanager.com": [6843], "www.libertyflailmowers.com": [9301], "portal.1link.mail.ru": [9874], "www.lps.ruhr-uni-bochum.de": [14030], "frozentux.net": [6233], "www.jdi.na.vutbr.cz": [17522], "avoinyliopisto.fi": [18975], "brianchristner.io": [19019], "nijc.brain.riken.jp": [13430], "*.zacks.com": [18775], "support.brightidea.com": [2330], "codefund.io": [3369], "review.coreboot.org": [3669], "snap.nal.usda.gov": [17209], "www.myfoxdetroit.com": [11320], "fi.ncsu.edu": [11492], "progreso.pl": [13131], "superteacherworksheets.com": [15623], "www.superherostuff.com": [15631], "attendee.gotowebinar.com": [6789], "forums.shutterfly.com": [14753], "i.microsoft.com": [10364], "cdn-static-1.medium.com": [10197], "marchforbabies.org": [9983], "rus.gogetssl.com": [6780], "www.s2member.com": [14065], "footlocker-inc.com": [6011], "adbutler.com": [518], "www.hitbtc.com": [7420], "litespeedtech.com": [9457], "kimsufi.com": [8892], "forum.sv.no": [14201], "planauskunft.swm.de": [14208], "savannah.nongnu.org": [5600], "www.webmercs.no": [4170], "www.raiffeisen.ch": [13527], "acsac.org": [265], "bydavidwittig.com": [2484], "proxfree.com": [13175], "cienciastierra.unizar.es": [17356], "ipv4.google.com": [6834], "kargo.com": [8795], "www.ranzcp.org": [13399], "about.zoosk.com": [18906], "eslabon.axosoft.com": [1477], "www.sel4.systems": [14433], "solutions.oracle.com": [12082], "news.techdirt.com": [16026], "ocronusa.net": [11713], "l0g.us": [9060], "diningservices.osu.edu": [11760], "g.ibtimes.co.uk": [7677], "openkeychain.org": [12038], "wms-na.assoc-amazon.com": [1288], "syndication.theguardian.com": [16288], "vipvpn.com": [17729], "dnscrypt.eu": [4061], "www.patrickbateman.biz": [12457], "downloads.chef.io": [3057], "scans.io": [14338], "www.uslaw.link": [17445], "s.iptorrents.com": [7798], "medicine.wustl.edu": [17993], "fx.yandex.by": [18648], "peepd.com": [12511], "*.exelator.com": [4996], "cryptovpn.com": [3866], "apachecon.com": [1088], "www.go.ncsu.edu": [11492], "www.simple-talk.com": [14819], "*.media.ipcdigital.co.uk": [7790], "alumni.leeds.ac.uk": [17318], "sidux-ev.org": [14767], "www.pornhublive.com": [12927], "hqpower.eu": [17596], "www.phpnet.org": [12251], "www.deepin.org": [4302], "www.mydigipass.com": [10828], "people.mit.edu": [9747], "trendmicro.com": [16717], "deprexis.com": [4376], "tarsnap.com": [15966], "*.gdata.pl": [6293], "www.policyreview.info": [12867], "*.barnesandnoble.com": [1678], "snagajob.com": [15024], "view.uk.adjug.com": [526], "www.vitamintalent.com": [17792], "www.nantes.indymedia.org": [8085], "soundgasm.net": [15162], "www.chrdnet.com": [19060], "www.grandhaventribune.com": [6891], "web.pipni.cz": [12257], "www.officiel-des-vacances.com": [11754], "disc-soft.com": [4540], "*.bytelove.it": [2490], "static.hsstatic.net": [7102], "browserid.org": [2370], "www.hertz.fr": [7345], "just-eat.com": [19328], "gamestop.com": [6427], "ysu.edu": [18742], "pims.copernico.net": [3650], "www.bintray.com": [1897], "usrjoy.com": [17448], "talklondon.london.gov.uk": [9578], "piwik.tiki.org": [16444], "pt.calameo.com": [2731], "www.startmail.com": [15410], "sitescout.com": [14871], "*.thingiverse.com": [16358], "pantelligent.com": [12371], "codecoon.com": [3364], "www.californiawalkintubcompany.com": [2751], "www.rally.org": [13535], "*.blogger.com": [2107], "donate.rsf.org": [13784], "exchange.plymouth.ac.uk": [12833], "*.hkyantoyan.com": [7081], "s2media.be": [14063], "webyog.com": [18175], "*.i.blip.tv": [2079], "*.planetdiscover.com": [12765], "lessthan3.com": [9259], "blog.gmocloud.com": [6343], "pentestpartners.com": [12530], "www.cue.me": [3912], "twosigma.com": [16898], "*.baylor.edu": [1706], "www.anybeat.com": [1077], "acrylicwifi.com": [485], "knowledge.verisign.com.sg": [17623], "kenai.com": [8845], "www.payrollapp.com": [12485], "www.medwatch.dk": [10138], "www.getjive.com": [8584], "buildd.debian.org": [4275], "www.mtna.org": [9800], "*.unc.edu": [16985], "egg.com": [5114], "smutty.com": [15015], "lists.ntp.org": [10965], "myus.com": [10794], "*.scribusstuff.org": [19462], "nomadesk.com": [11463], "mobile.dhl.de": [4034], "globalnews.iu.edu": [8064], "measure.richmetrics.com": [2450], "bannersnack.com": [1652], "se.wwte9.com": [17937], "webmail.eol.hu": [8327], "www.cui.uni-hamburg.de": [17167], "sys4.de": [15746], "www.amazon.ca": [913], "euroforum.de": [5412], "secure.manchester.gov.uk": [9944], "disneyprivacycenter.com": [4567], "dynstatus.com": [4823], "www.lpo.org.uk": [9097], "www.syxin.com": [15766], "www.mville.edu": [9955], "www.amazon.cn": [913], "www.stardrifter.org": [15402], "livestrong.com": [9502], "www.paodelicia.com": [12377], "eex.com": [5429], "scarborough.greenparty.org.uk": [6925], "www.mirrorreaderoffers.co.uk": [10447], "easypdfonline.com": [5028], "gemini.com": [6515], "www.sourceforge.net": [15174], "www.mtu.edu": [9802], "www.picomoney.com": [12664], "workspaces.acrobat.com": [480], "hertz247.is": [7349], "nkb.ch": [19333], "hertz247.it": [7352], "docs.fastly.com": [5687], "www.verdadmedia.com": [17618], "ensr.dict.cc": [4455], "www.andersonvalleypost.com": [4989], "advisor.wmtransfer.com": [18076], "www.searchlock.com": [19576], "www.academiapress.be": [434], "natmonitor.com": [11042], "www.soccerwaveuk.com": [15055], "hertz247.ie": [7351], "server314.com": [14603], "photomath.net": [12640], "www.jhalderm.com": [8470], "iq.intel.co.uk": [8207], "chrome.google.com": [6834], "api.picatcha.com": [12659], "www.tbspace.de": [19662], "ebas.ch": [4870], "neo900.org": [11146], "pdfreaders.org": [12501], "www.tlscompare.org": [15826], "clientarea.ewebscapes.com": [4991], "isohunt.to": [8371], "payu.ru": [12490], "mediaspace.nottingham.ac.uk": [11528], "discoveryplacekids.org": [4556], "centosblog.com": [2943], "www.lumimart.ch": [3645], "www.kkk.com": [8931], "*.ntwk45.com": [11559], "wavecon.de": [18008], "static.leboncoin.fr": [19351], "*.circleofmoms.com": [3156], "fotoalbumy.azet.sk": [1481], "howsmyssl.com": [7573], "ysubookstore.com": [18743], "broadly.vice.com": [17667], "market.jd.com": [8423], "www.elsevier.com": [5185], "*.yellowpages.ca": [18670], "assets.over-blog.com": [12156], "cdn10.iconfinder.com": [7921], "linksysbycisco.com": [9384], "jobandtalent.com": [19773], "m.washingtonpost.com": [17990], "*.www.ionaudio.com": [7777], "overviewproject.org": [12171], "www.a14electronics.com": [218], "www.lith.liu.se": [9084], "2pay.ru": [97], "*.motorolasolutions.com": [10615], "barnsley.objective.co.uk": [19454], "blog.silentcircle.com": [14786], "www.researchgate.net": [13796], "mtnafoundation.org": [9801], "www.revstr.com": [13851], "bbs.arkos.io": [1196], "ipage.com": [7802], "images.salon.com": [14253], "news.nationalgeographic.com": [11079], "i.groupme.com": [6970], "kanotix.de": [8782], "securitycenter.alipay.com": [817], "www.sade.com": [14220], "whatson.tameside.gov.uk": [19660], "www.essex.police.uk": [5366], "womenshealthspecialists.org": [18410], "pagpop.com.br": [12328], "*.fontspring.com": [5995], "anonguide.cyberguerrilla.org": [3961], "hostica.com": [7523], "showroom.qt.io": [13315], "docs.askives.com": [1267], "cdn.yb0t.com": [18680], "tr.godaddy.com": [6773], "www.anon-ib.net": [1037], "hh.se": [7061], "blog.101domain.com": [12], "lauramercier.com": [888], "www.bitcoinaverage.com": [1968], "www.cgran.org": [2591], "dsl.vodafone.de": [17814], "intra.fa.vutbr.cz": [17522], "www.iblocklist.com": [7902], "www.bhamcommunity.nhs.uk": [10913], "md01.plex.tv": [12814], "www.thegoodfight.fm": [16282], "khist.digitale-diathek.net": [4504], "paymentaccuracy.gov": [12476], "www.chromeexperiments.com": [3117], "www.nhseportfolios.org": [10914], "developers.dwolla.com": [4816], "www.jappix.org": [8517], "www.olioboard.com": [11782], "www.secure.switchkonnect.com": [15702], "sysward.com": [15749], "document.no": [4626], "*.penguinwebhosting.com": [12535], "mos.org": [10714, 10715], "*.elte.hu": [4925], "redteam-pentesting.de": [13664], "www.guardianproject.info": [7001], "www.bikeji.com": [1872], "list.jabber.at": [8473], "musecdn2.businesscatalyst.com": [2458], "www.kohls.com": [8956], "www.cesg.gov.uk": [2584], "www.endrift.com": [5249], "wuala.com": [18480], "*.shopstyle.fr": [14720], "www.fveydocs.org": [5609], "www.nodesecurity.io": [11452], "www.xagasoft.com": [18538], "www.ubykotex.com.au": [16922], "api.allmyvideos.net": [857], "local-rximage.nlm.nih.gov": [11052], "*.postgresql.us": [12974], "icdn.lenta.ru": [19356], "studiopress.com": [15541], "openvirtualizationalliance.org": [12027], "www.ivpn.net": [7869], "*.equip.org": [5335], "www.cisecurity.org": [2617], "status.qtcloudservices.com": [13316], "www.asp.net": [353], "psychologytoday.com": [13189], "tapetv-slowjam.de": [15956], "*.marketo.com": [10016], "shopstyle.*": [14720], "i7.walmartimages.com": [17965], "*.burlingtonfreepress.com": [2441], "fdworlds.net": [5703], "verisign.co.nz": [17623], "www.studentloans.gov": [15535], "imageoptim.com": [7979], "secure.eu.ikea.com": [7959], "m.lispac.lsbu.ac.uk": [9098], "*.battle.net": [1693], "bibliotek.kk.dk": [8730], "planning.bury.gov.uk": [19027], "exchws.illinois.edu": [17258], "innovateu.osu.edu": [11760], "openmoko.org": [12039], "lhc-statistics.web.cern.ch": [2575], "motherindia.just-eat.ie": [19328], "cockpit.swisscom.ch": [15698], "webmail.hs-esslingen.de": [7441], "www.barnebys.com": [1676], "*.care2.com": [2838], "www.littlesis.org": [9476], "jms1.net": [8587], "assetscdn.students.uophx.edu": [12633], "canadahelps.org": [2792], "telus.com": [16103], "*.ssl.hwcdn.net": [7639], "www.okturtles.org": [11774], "cdn.shortlist.com": [14734], "mywickr.com": [18281], "portal.sec.ibm.com": [7675], "namei.org": [11025], "www.domain-dns.com": [4646], "www.projectwonderful.com": [13142], "global.taobao.com": [15952], "www.allyou.net": [842], "www.illinoislawreview.org": [7966], "serverfault.com": [15359], "careers.nvidia.com": [10985], "www.webcruiter.no": [18114], "action.careinternational.org.uk": [19041], "*.specificclick.net": [15244], "nhncorp.com": [10909], "dashboard.jwplatform.com": [8467], "source.schokokeks.org": [19570], "avatars0.githubusercontent.com": [6680], "blog.stefan-betz.net": [15461], "undergraduateresearch.osu.edu": [11760], "fueleconomy.gov": [6242], "www.berkeleychessschool.org": [1786], "cpanel.com": [2651], "library.linode.com": [9387], "subscriberservices.mcclatchy.com": [10117], "cdn4.hola.org": [7445], "www.clara.io": [3210], "www.mkssoftware.com": [9755], "www.readyflowers.com": [13620], "www.clearlinux.org": [3233], "www.ledger.co": [9219], "www.atypon.com": [1342], "economy.com": [5062], "cpe.mitre.org": [10459], "reportingitc2.apple.com": [1120], "www.myesri.com": [5363], "www.notalwaysworking.com": [19441], "s-hertogenbosch.nl": [11132], "projectcounter.org": [2643], "sony.co.uk": [15144], "www.fhs.se": [5570], "hostbillapp.com": [7508], "mail.google.com": [6834], "openapi.baidu.com": [1619], "www.t-analytics.com": [19653], "apps.doncaster.gov.uk": [4678], "www.pantheon.io": [12372], "cibot.bufferapp.com": [2402], "getrave.com": [6601], "blogcatalog.com": [2100], "*.neimanmarcus.com": [15851], "www.ubjobs.buffalo.edu": [17297], "secure.adultshopping.com": [644], "www.bcash.com.br": [1715], "activtracker.johnshopkins.edu": [8611], "client.hip.live.com": [9483], "strikingly.com": [15523], "mailpoet.com": [9879], "www.sipgate.io": [14856], "www.bsdcan.org": [1542], "mtmweb.com": [10188], "heatmap.it": [7279], "login.skype.com": [14938], "geology.illinois.edu": [17258], "simplekb.com": [14827], "evanced.info": [5434], "sxnarod.com": [14640], "*.rtp.vc": [13475], "payoneer.com": [12483], "login.novell.com": [11530], "geoiptool.com": [19213], "anonymousspeech.com": [1050], "www.ibutsu.org": [19279], "webmail.mit.edu": [9747], "www.mint.ca": [10431], "postbydnx.com": [12961], "www.sedonaaz.gov": [3185], "democracy.io": [4353], "xact.spiceworks.com": [15266], "help.libreoffice.org": [9311], "cchgroup.com": [2547], "*.craigslist.org": [3756], "mypack.ncsu.edu": [11492], "deutsche-boerse.com": [4408], "citpmo.wusm.wustl.edu": [17993], "admin.over-blog.com": [12156], "www.savana.cz": [14308], "news-cdn.efinancialcareers.com": [4911], "khms.google.com": [6841], "chartmogul.com": [3016], "neobits.com": [11152], "www.workiva.com": [18442], "www.watson.ch": [19748], "goodmancenter.stanford.edu": [15382], "lmmp.nasa.gov": [10869], "*.eniro.se": [5276], "freecultr.com": [5594], "fitgeld.raiffeisen.ch": [13527], "taskforce.is": [15970], "hideki.hclippr.com": [7051], "www.myloc.de": [10769], "imgjam2.jamendo.com": [8502], "feedback.vodafone.co.nz": [17812], "coolutils.com": [3639], "cdn.findnsave.com": [5836], "centrum.active24.cz": [18938], "wp.outbrain.com": [12150], "blog.lizdenys.com": [9520], "kids.usa.gov": [17029], "numergy.com": [11579], "gratipay.com": [6898], "chillicothegazette.com": [3078], "myaccount.avira.com": [1449], "www.kirlism.ga": [19338], "ztunnel.com": [18767], "highland.gov.uk": [19249], "www.cell.com": [2932], "post.smzdm.com": [15017], "www.npmawesome.com": [11542], "www.uk2img.net": [16963], "uk.support.tomtom.com": [16540], "blackphone.ch": [2048], "sst.kirklees.gov.uk": [8916], "mrzine.monthlyreview.org": [10568], "www.gitian.org": [6681], "careers.bremer.com": [2300], "*.madmimi.com": [9835], "lib.polyu.edu.hk": [12891], "delta.no": [4337], "*.nexac.com": [11354], "surveys.fi.ncsu.edu": [11492], "*.80spurple.com": [198], "blog.details.com": [3551], "hackerspace.pl": [7149], "file.status.net": [15437], "www.landalcampings.de": [18490], "idnet.net": [7706], "www.poliisi.fi": [12868], "32red.com": [100], "secure.gktw.org": [6686], "mirc.com": [9746], "kde-apps.org": [19461, 19462], "www.parship.nl": [12416], "www.classpath.org": [6357], "dash.readme.io": [13608], "devices.yammer.com": [18647], "fr.spontex.org": [15287], "domainmanager.otenet.gr": [12132], "download.nos.nl": [10945], "mcdelivery.com.my": [10119], "nachhaltigesbauen.htwk-leipzig.de": [7114], "www.youtube.co.ug": [18709], "www.heapanalytics.com": [7270], "javelinstrategy.com": [8531], "onlinebackup.elgiganten.se": [5162], "www.hs.ias.edu": [7669], "*.lendo.se": [9247], "rooof.com": [13965], "learning.isc2.org": [7822], "www.gradimages.com": [6881], "download.formscentral.acrocomcontent.com": [482], "static1.businessinsider.com": [2454], "ssl.intel.com": [8209], "*.rbi.com.au": [13707], "ui.ptlogin2.tenpay.com": [16114], "www.path.com": [12451], "formkeep.com": [6041], "panopto.con.ohio-state.edu": [11761], "www.l2c.co.kr": [9062], "www.eduroam.cz": [5098], "catalysts.engineering.osu.edu": [11760], "tracking.borderfree.com": [2221], "recycling.org.ohio-state.edu": [11761], "sproutinc.com": [15319], "www.smartadserver.com": [14982], "a1.adform.net": [585], "www.pentestmag.com": [12544], "wishlistgranted.com": [18373], "www.tony.xyz": [16546], "csaf.cz": [2663], "myendnoteweb.com": [5242], "*.getadblock.com": [517], "polygon.com": [12892], "asia.allianz.com": [18950], "www.tvsupport.net": [16862], "privatetunnel.com": [13099], "provost.stanford.edu": [15383], "www.tcli.ed.gov": [4889], "oig.nasa.gov": [10869], "isyvmon.com": [8383], "home.f-secure.com": [5541], "center.atomz.com": [1329], "events.nyu.edu": [11293], "www.caktusgroup.com": [2723], "www.medialayer.com": [10155], "track.campaigneq.com": [2778], "spendbitcoins.com": [15262], "res-2.cloudinary.com": [3307], "www.foldingcoin.net": [5983], "spacetelescope.org": [7596], "yourmoney.ch": [19333], "soundviz.com": [15158], "manage.passkey.com": [12430], "authy.com": [1411], "gitweb.dragonflybsd.org": [4738], "www.brainstorage.me": [2272], "premiertaxfree.com": [13027], "ameba.jp": [18954], "tinkerforge.com": [16476], "my.securepoint.de": [14509], "cacert.org": [2520], "mwop.net": [10738], "www.cqrcengage.com": [2654], "eps.stanford.edu": [15383], "visitestonia.com": [17778], "intranet.fce.vutbr.cz": [17522], "www.clasohlson.se": [3215], "www.sendgrid.com": [14577], "mailarchive.ietf.org": [7721], "*.re-pear.com": [1123], "www.coverfire.com": [3732], "pool.telekom.hu": [9863], "6.darkroom.shortlist.com": [14734], "brandfolder.com": [2283], "www.honestpolicy.com": [7482], "www.guidefaq.com": [7008], "*.shopmania.org": [14717], "helpdesk.rz.ruhr-uni-bochum.de": [14031], "trust-center.verisign.com.au": [17623], "blog.sourcefabric.org": [15180], "*.wt-eu02.net": [18170], "*.bucyrustelegraphforum.com": [2389], "app.sourcedna.com": [15171], "mybitcointrade.com": [1956], "www.myhearstnewspaper.com": [7272], "ws.ghash.io": [6329], "www.microfocus.com": [10348], "magicaffiliateplugin.com": [9855], "forum.ubuntu-fr.org": [17096], "www.marshut.net": [10028], "services-prefecture.com": [14626], "www.nikon-lenswear.com": [11403], "helpdesk.samfox.wustl.edu": [17992], "*.thedailybeast.com": [16265], "www.inbenta.com": [8037], "compass-ssl.xbox.com": [18550], "www.e-mail-made-in-germany.de": [4842], "shib.raven.cam.ac.uk": [17243], "www.buycraft.net": [2472], "ctera.com": [2683], "www.marieclaire.co.uk": [9993], "snaps.php.net": [12250], "danforthuniversitycenter.wustl.edu": [17993], "lichfielddc.gov.uk": [19364], "my.cs.illinois.edu": [17258], "www.cloudsleuth.net": [3294], "photos.cams.com": [2787], "support.serverdensity.com": [14614], "*.research.net": [15659], "e56.taobao.com": [15952], "stanfordfund.stanford.edu": [15383], "*.involver.com": [8333], "www.certificate-transparency.org": [2968], "connect.jhu.edu": [16296], "fundfill.com": [6257], "fukuchi.org": [6246], "phil.camera": [19491], "static-cdn2.ustream.tv": [17451], "broadbandchoices.co.uk": [2352], "www.mixxx.org": [10471], "*.sagepay.com": [14238], "www.geenstijl.nl": [19211], "pay02.zong.com": [18895], "dashboard.fiksu.com": [5787], "epoch.com": [5325], "www.bbseyes.com": [1714], "nzbindex.nl": [11002], "apply.mebank.com.au": [9736], "ovhtelecom.fr": [11687], "msns.engineering.osu.edu": [11760], "*.craigsmith.net": [19088], "www.boxopus.com": [2259], "www.documentfreedom.net": [4628], "announcements.telegraph.co.uk": [16082], "api.joomla.org": [8627], "xslt.alexa.com": [795], "www.journeyed.com": [8649], "www.grc.com": [6380], "*.swu.de": [15709], "assets.sussan.com.au": [15664], "kohalibrary.halton.gov.uk": [19235], "learningzone.eastsussex.gov.uk": [19142], "www.pacw.org": [12204], "nypost.com": [18428], "help.avast.com": [1444], "classpath.org": [6357], "www.hellowebapp.com": [7300], "santander.co.uk": [14291], "www.paydirtgold.com": [12471], "www.silicon.fr": [11198], "*.virginmobileusa.com": [17736], "www-lt.net-a-porter.com": [11171], "healthyforkids.wpengine.netdna-cdn.com": [7267], "finaid.med.wustl.edu": [17993], "www.static.androidpit.info": [1009], "*.secure-donor.com": [14481], "monash.edu": [10541], "supertracker.usda.gov": [17209], "bb.cdn.gmru.net": [6349], "www2.gotomeeting.com": [6787], "i.duck.co": [4792], "25live-a.collegenet.com": [3429], "blog.mybb.com": [10823], "www.piratenlogin.de": [12718], "*.airtricity.com": [757], "vegasdealhunter.com": [17588], "kch.nhs.uk": [10913], "*.888173.net": [199], "www.rewag.de": [13416], "www.bufferbloat.net": [2403], "www.triodos.com": [16739], "cachemobile.williamhill.com": [18315], "desmume.org": [4243], "investigativedashboard.org": [8318], "readthedocs.com": [13611], "burlingtonfreepress.com": [2441], "sgno.org": [14112], "www.paradoxplaza.com": [12386], "www.simplysecure.org": [14834], "self.highland.gov.uk": [19249], "sitemanager2.adicio.com": [588], "global.stanford.edu": [15383], "manchester.ac.uk": [17327], "webmail.fsdata.se": [5605], "bib.schema.org": [19568], "www.win.tue.nl": [15874], "www.habbo.fi": [7122], "dft.gov.uk": [19116], "www.brighttag.com": [2324], "wifilib.com": [18285], "www.cryptocloud.ca": [3870], "corporate.livingsocial.com": [9517], "www.youtube.co.uk": [18709], "sadecehosting.com": [14221], "xato.net": [18545], "www.bosch-sensortec.com": [2226], "ssllabs.com": [14180], "www.cimbbank.com.my": [2606], "zamg.ac.at": [18783], "www.unitednuclear.com": [17207], "www.kapsi.fi": [8791], "www.pixoto.com": [12746], "www.oes.umd.edu": [17263], "ah.yimg.jp": [18685], "www.convertkit.com": [3628], "www.honcode.ch": [7089], "www.exploithub.com": [5509], "www.homebase.com": [7476], "origin-res.windows.microsoft.com": [10364], "soyoustart.com": [15052], "forms.ncl.ac.uk": [10884], "neu.directbox.com": [4529], "store.gentlelabs.com": [6528], "www.zdfsport.de": [19800], "parent.osu.edu": [11760], "*.goldencharter.co.uk": [6813], "australianclinicaltrials.gov.au": [1384], "www.forbesmagazine.com": [6018], "*.monitis.com": [10555], "politicalwire.com": [12872], "www.suburban.nl": [15570], "livememe.com": [9492], "www.visn23.va.gov": [17019], "madewith.unity.com": [17220], "www.oagaviation.com": [16927], "www.gfi.nl": [6320], "f1.support.mindtouch.com": [10409], "www.supercard.ch": [3645], "bro.org": [2346], "www.notalwayslearning.com": [19441], "cdn.animenewsnetwork.com": [18957], "calendario.cc": [2737], "grandhaventribune.com": [6891], "urs.earthdata.nasa.gov": [10869], "www.jobandtalent.com": [19773], "www.iospp.org": [7780], "jobs.web.de": [18050], "thepiratebay.se": [16227], "csis.dk": [2673], "bugs.debian.org": [4275], "manage.hosting.digiweb.ie": [4513], "threatpost.com": [16394], "www.dundeecity.gov.uk": [4801], "*.xe.com": [18509], "laynepublications.com": [9183], "*.gweb.io": [7032], "www.audits.uillinois.edu": [16960], "eventim.co.*": [5443], "ppn.nottingham.ac.uk": [11528], "tcga.cancer.gov": [2805], "www.dedigitaletopschool.nl": [4246], "crate.io": [3763], "www.opendnssec.org": [10941], "crm.fsfe.org": [5601], "www.435bymjc.com": [144], "cdn1.timminchin.com": [16450], "a3.sphotos.ak.fbcdn.net": [5700], "my.comscore.com": [3453], "www.irunsafe.com": [14035], "kunversion.recurly.com": [13652], "online.cyberaces.org": [3956], "*.wikinvest.com": [18297], "bedfordcornexchange.co.uk": [18987], "environment.leeds.ac.uk": [17318], "*.techopedia.com": [16047], "xmlgold.eu": [18521], "connect.mail.ru": [9874], "foodler.com": [6005], "secure.swisspostbox.com": [12949], "www.netbank.de": [11216], "communication.sikur.com.br": [14785], "*.cengagebrain.co.uk": [2937], "tickets.gwr.com": [16426], "www.themonthly.com.au": [16298], "*.startpage.com": [8405], "apps.rhb.ch": [13857], "fb.finam.ru": [5821], "holtwick.it": [7460], "www.mujbiz.cz": [10690], "www.prospect.org": [16241], "net-safe.info": [11180], "www2.hs-esslingen.de": [7441], "prace.cz": [13008], "webtask.io": [18161], "blog.trailofbits.com": [16656], "blog.zimperium.com": [18869], "artpractical.com": [1218], "www.irccloud.com": [8354], "www.cimacorp.net": [5627], "abine.com": [419], "xserver.*.jp": [18592], "federatedmedia.net": [5722], "stockport.nhs.uk": [10913], "*.worldofwarplanes.com": [18461], "austinfitmagazine.com": [1377], "shop.corsair.com": [3687], "socialsecurity.gov": [15060], "www.it-agenten.com": [7838], "eshopbrokers.co.uk": [19131], "www.bullockinc.com": [2422], "mailtest.nanog.org": [11490], "www.billdesk.com": [1876], "ak-c.ooyala.com": [11900], "powerlineman.com": [13002], "www.rethink.org": [19549], "garagegames.com": [6457], "starsearchcasting.com": [15398], "online.sberbank.ru": [14322], "intelligence.org": [8215], "support.ukrnames.com": [17126], "cdn02.gitter.im": [6684], "jboss.org": [8417], "www.petakillsanimals.com": [12241], "about.gitlab.com": [6678], "*.genivi.org": [6317], "www.codehs.com": [3349], "coupons.paypal.com": [12467], "campaigns.f-secure.com": [5541], "arc.osu.edu": [11760], "stacks.stanford.edu": [15383], "piwik.univention.de": [17225], "mytalkdesk.com": [19420], "www.doesburg.nl": [11132], "ecustomeropinions.com": [4888], "www.sci.uma.es": [17140], "akolaproject.org": [768], "www.markmail.biz": [10004], "www.simlar.org": [14812], "s.dsimg.com": [4541], "ncsi.com": [10887], "www.oesar.osu.edu": [11760], "iseclab.org": [8365], "adafruit.com": [550], "udd.debian.org": [4275], "fox-toolkit.org": [5589], "dl.lib.brown.edu": [2367], "*.vcommerce.com": [17580], "download-cdn.gfe.nvidia.com": [10985], "london.greenparty.org.uk": [6925], "www.aea.se": [679], "web1.dist.maricopa.edu": [9989], "163.com": [35], "weebly.com": [18178, 18179], "metric.yandex.com": [18651], "*.ideafit.com": [7926], "teylingen.nl": [11132], "ad3.netshelter.net": [11208], "gavelbuddylive.com": [6471], "searchmarketingnow.com": [16367], "a2-images.myspacecdn.com": [10848], "www.happyassassin.net": [7201], "www.moerdijk.nl": [11132], "cdn.underwearexpert.com": [17161], "services.salford.gov.uk": [19562], "*.fbo.gov": [5714], "www.labelsig.com": [9125], "www.teamsciencetoolkit.cancer.gov": [2805], "code.not-your-server.de": [11513], "china.taobao.com": [15952], "console.theplatform.com": [16230], "www.clkrev.com": [3272], "www.i0.cz": [7655], "www.dbforums.com": [4011], "www.osdv.org": [11666], "api.drupal.org": [4780], "komments.net": [8966], "watersgeo.epa.gov": [4937], "fe-ddis.dk": [5563], "www.museumsarbeit.htwk-leipzig.de": [7114], "www.mousematrix.com": [10625], "vtechworks.lib.vt.edu": [17740], "www-conf.slac.stanford.edu": [15383], "mt.libreoffice.org": [9311], "labelsig.com": [9125], "assets.flameeyes.eu": [5901], "wiki.answers.com": [1060], "cdn.ology.com": [11784], "marketing.yell.com": [19790], "cdn.fnmag.co": [5583], "portal.fastserv.com": [5682], "thisproxykillscensors.uk": [19678], "utrecht.nl": [11132], "*.fasthosts.co.uk": [5685], "autodiscover.posteo.de": [12969], "www.erc.edu": [4949], "secure-u.de": [14486], "*.synopsys.com": [15739], "www.starwoodhotels.com": [15414], "scea.com": [14089], "projectlava.xyratex.com": [18609], "build.kde.org": [8718], "www.eplus-gruppe.de": [4845], "origin.urbandictionary.com": [17407], "internal.ncl.ac.uk": [10884], "uk.sitestat.com": [14885], "www.threattracksecurity.com": [16395], "www.bitcoin-central.net": [1957], "websense.stanford.edu": [15383], "emsonline.cardiff.gov.uk": [19039], "ebank.spdb.com.cn": [19615], "kabelkiosk.de": [8761], "realfavicongenerator.net": [19542], "a.uguu.se": [17118], "visitante.acesso.uol.com.br": [16998], "cee.mitre.org": [10459], "*.icinga.org": [7919], "dev.groupme.com": [6970], "members.orcid.org": [11909], "www.backbox.org": [1597], "session.snel.com": [15034], "neovim.io": [19429], "sitesearch.sli-systems.com": [14132], "accesslink.ucsd.edu": [16939], "media.kb.iu.edu": [8064], "slf.se": [14131], "my.robokassa.ru": [13927], "endrift.com": [5249], "www.dpbolvw.net": [3481], "securelogin.poste.it": [12965], "volksverschluesselung.de": [17829], "developer-dev.allizom.org": [856], "support.jwplayer.com": [9589], "www.soyoustart.com": [15052], "cdn.static2img.com": [3922], "icares.wustl.edu": [17993], "www.webmaster.yandex.kz": [18652], "s-passets-cache-ak1.pinimg.com": [12691], "sejour.officiel-des-vacances.com": [11754], "mining.cex.io": [2587], "backstage.pragmaticstudio.com": [13014], "www.6connect.com": [185], "*.crainsnewyork.com": [3758], "www.thedma.org": [16264], "c.itunes.apple.com": [1120], "www.clearxchange.com": [3232], "www.sandstorm-media.de": [14281], "mariadb.org": [9988], "aits.uillinois.edu": [16960], "genome-cancer.ucsc.edu": [17305], "crowdcontrol.lotame.com": [9613], "tdc-wholesale.com": [15796], "www.hea.net": [7057], "iipvv.nl": [7740], "intellij-support.jetbrains.com": [8559], "assets-sports.vice.com": [17667], "assetspost.com": [2986], "*.justgive.org": [8690], "cdn.motorola-2.com": [10615], "lbre.stanford.edu": [15383], "www.bestwebhostinggeek.com": [870], "*.tonytan.cn": [16548], "www.vce.com": [17475], "cricket.redbull.in": [13666], "gimp.org": [19218], "wicworks.nal.usda.gov": [17209], "www.flux.utah.edu": [17288], "htc2.accu-weather.com": [465], "official.contest.yandex.com": [18651], "www.hollywoodoutlaws.com": [7457], "caskstore.com": [2884], "www.justeat.nl": [19328], "redweb.com": [13702], "www.mikeash.com": [10383], "www.nordu.net": [11481], "cdn.cpmstar.com": [2647], "couchsurfing.org": [3700], "humanbrainproject.eu": [7608], "rpc.mail.aol.com": [321], "catalog.wustl.edu": [17993], "1link.mail.ru": [9874], "sproutvideo.com": [15320], "www.fluidhosting.com": [5952], "secure.acuityscheduling.com": [504], "*.savecrypto.org": [14311], "uvic.ca": [17076], "*.incisivemedia.com": [8045], "support.covad.com": [3725], "cutedigi.com": [3944], "adpselect.com": [271], "mappedinisrael.com": [9973], "pixel.fsg.ulaval.ca": [17229], "killscreen.com": [8887], "www.localphone.com": [19370], "styles.freescale.com": [6183], "bugs.openmamba.org": [19465], "kabelmail.de": [8760], "sqsp.com": [15328], "xanmod.org": [19782], "portal.velleman.eu": [17596], "*.pearson.com": [12506], "nextgen-gallery.com": [11367], "*.csis.gc.ca": [2802], "www.slickproductsusa.com": [14957], "www.quitter.is": [13369], "io-gw.vutbr.cz": [17522], "*.truecrypt.org": [16772], "www.dentistry.uic.edu": [17231], "hccdashboard.web.cern.ch": [2575], "sublime.wbond.net": [19749], "www.appguru.com": [1106], "boutique.lemonde.fr": [9192], "tv.yandex.com.tr": [18649], "www.cis-india.org": [2615], "www1.ethz.ch": [4975], "cvs.debian.org": [4275], "dafdirect.org": [4102], "www.opinionlab.com": [12054], "delta.com": [4336], "s-pankki.fi": [14060], "zlatkovic.com": [18877], "www.thinksteroids.com": [9737], "applet.danid.dk": [4132], "news.mit.edu": [9749], "www.simplefin.org": [14821], "*.cmu.edu": [2859], "applebees.com": [1124], "qgazette.com": [13347], "liberty-human-rights.org.uk": [9300], "www.bioinfobank.com": [1899], "finanzcheck.de": [19179], "rfxn.com": [13856], "coolwebscripts.com": [3640], "secure.websitealive.com": [18149], "www.ntualumni.org.uk": [10972], "examiner.com": [5480], "vitrinepix.com.br": [19738], "ads.ookla.com": [11894], "*.unicaondemand.com": [17181], "*.gotvape.net": [6854], "www.coursefinder.io": [3717], "webplatform.org": [18079], "www.web4all.fr": [18052], "kornerstoneadmin.com": [8989], "preferences-mgr.truste.com": [15856], "youtube.hu": [18709], "slimerjs.org": [19600], "neosmart.net": [11151], "q3.qlogo.cn": [13304], "www.hs-esslingen.de": [7441], "z.jd.com": [8422], "riot.mail.ru": [9874], "cdn.lib.newsvine.com": [11348], "openrightsgroup.org": [12023], "americaslongestwar.com": [951], "noisey.vice.com": [17667], "www.freesound.org": [6184], "www.math.ens.fr": [4930], "sas.fazekas.hu": [5697], "www.steamrep.com": [15455], "meinfernbus.de": [10236], "www.vz-nrw.de": [17617], "www.ceop.police.uk": [19049], "geizhals.at": [6510], "www.benefit.nl": [1776], "theoldreader.com": [16225], "*.superstats.com": [15617], "broadcomfoundation.org": [2356], "www.ttu.ee": [15936], "ambx.com": [923], "beacon.savingscatcher.walmart.com": [17964], "niteflirt.com": [11424], "omiai.yahoo.co.jp": [18640], "*.smartplanet.com": [14991], "static.prediction.io": [13023], "plista.com": [12818], "ll.*.utorrent.com": [19708], "ec.europa.eu": [5421], "proxy4.switchadhub.com": [15701], "thechive.com": [16258], "www.fareham.gov.uk": [5660], "osscvs.cern.ch": [2574], "dev.mutt.org": [10729], "jobmarket.nytimes.com": [11000], "hohndel.org": [3503], "*.startjesucces.nl": [19277], "*.chapman.edu": [3008], "curiosity-driven.org": [3930], "wsjsafehouse.com": [11321], "*.spreadshirt.ch": [15300], "common.mutualofamerica.com": [10733], "remotestorage.io": [13761], "admin.carezone.cz": [2849], "myaccount.stubhub.com": [15534], "www.developer.blender.org": [2067], "www.imagecomics.com": [7977], "lexisnexis.com": [13704], "harakah.net.my": [7202], "www.videogold.de": [17686], "cloudsso1.cisco.com": [3162], "tr1.kaspersky.com": [8806], "www.fidh.org": [5571], "www.homebase.co.uk": [7476], "www.apps4.lbhf.gov.uk": [9064], "symplicity.com": [15721], "*.ad-srv.net": [15962], "httpswatch.nz": [7109], "www.nerdsnook.com": [11160], "www.ativismo.org.br": [1315], "jobs.stacksocial.com": [15363], "kb.optimisemedia.com": [12070], "bugs.dokuwiki.org": [4638], "jiaofei.alipay.com": [817], "tachanka.org": [15900], "connman.net": [3578], "trend.omnitecinc.com": [11801], "b3-uk.mookie1.com": [10576], "itsupport.usc.edu": [17278], "sedorset.greenparty.org.uk": [6925], "aa.uw.edu": [17077], "www.s-3.com": [14056], "steenwijkerland.nl": [11132], "go.coverity.com": [3734], "d.turn.com": [16840], "secure.infotoday.com": [8103], "muse.jhu.edu": [16296], "content8.flixster.com": [5933], "cte.ace.beta.advertising.com": [661], "api.cyph.com": [3982], "haka-ds.funet.fi": [6264], "zerotier.com": [18844], "netways.de": [11259], "www.orb-international.com": [11659], "*.csulb.edu": [2744], "*.badgeville.com": [1606], "knappschaft-bahn-see.de": [8940], "npac.com": [10946], "*.safe-mail.net": [14225], "unrestrict.li": [17367], "www.deutsche-boerse.com": [4408], "orionmagazine.org": [12108], "www.zend2.com": [18822], "www.fcitx-im.org": [5702], "is.seagate.com": [14437], "status.jiveon.com": [8586], "abo.spiegel.de": [15272], "companieshouse-online.hmrc.gov.uk": [7084], "communities.oracle.com": [12082], "webmail.wilmerhale.com": [18319], "inspiration.dal.net": [4003], "atlantis.sk": [1319], "tarlogic.com": [15965], "*.reporo.com": [13780], "shopmania.com": [14717], "www.kdenlive.org": [8831], "wwte1.com": [17937], "www.pritunl.com": [13078], "support.groundspeak.com": [6967], "noblehour.com": [11447], "readwrite.com": [13613], "www.shoppingcartelite.com": [14729], "asset-7.soupcdn.com": [15167], "www.beatsmedia.com": [1738], "manchester.pirateparty.org.uk": [12714], "glo.bo": [1920], "trustpilot.com": [16798], "www.cendio.com": [2934], "*.codecov.io": [3366], "cozumpark.com": [3742], "pirateparty.org.uk": [12714], "tv.yandex.kz": [18652], "entcss.s-msn.com": [14059], "applications.cpanel.com": [2651], "www.pubs.ext.vt.edu": [17740], "italerts.usc.edu": [17278], "decisionneurosciencelab.org": [4284], "auction1.taobao.com": [15952], "www.mcmaster.ca": [10122], "www.skylineregistrations.co.uk": [14936], "yaroslavl.rt.ru": [13469], "www.engr.uw.edu": [17077], "collabora.com": [3419], "www.sil.org": [14123], "metrics1.citibank.com": [3171], "images.obi.de": [19452], "www.ninthdecimal.com": [11420], "quiterss.org": [13368], "www.goodcrypto.com": [6827], "targobank-kredit.web.de": [18050], "porteus-kiosk.org": [12936], "ee.stanford.edu": [15383], "media.ldscdn.org": [16219], "ticketnet.fr": [16422], "www.upvoted.com": [17403], "img.books.ch": [16171], "lh5.google.co.*": [6837], "louiseharrisoncouture.com": [9621], "lists.freedesktop.org": [6126], "forocoches.com": [6048], "connect.charter-business.com": [3019], "traffic.outbrain.com": [12150], "webmail.szm.com": [15767], "files.choicecheapies.co.nz": [12195], "www.iseclab.org": [8365], "cs.fit.edu": [5942], "pjrc.com": [12261], "jococruise.com": [8588], "oblic.com": [11608], "redding.com": [4989], "montyprogram.com": [10569], "www.openmw.org": [11954], "velox-project.eu": [17600], "portal.ultradns.com": [17131], "*.omniupdate.com": [11797], "musicnotes.com": [10720], "press.blip.tv": [2079], "www.bluecoat.com": [2130], "www.staffordshire.police.uk": [15371], "epsom-sthelier.nhs.uk": [10913], "labsafety.jhu.edu": [8437], "*.cms.gov": [17027], "odi.osu.edu": [11760], "www.mochahost.com": [10507], "101domain.com": [12], "carrier-lost.org": [2863], "*.exacttarget.com": [5478], "imagery.pragprog.com": [13012], "www.4gamer.net": [160], "test1.southend-on-the-move.org.uk": [19612], "www.b.switchadhub.com": [15701], "om.zdnet.com.au": [18757], "pic2.zhimg.com": [18856], "commonapp.org": [3483], "www.alkohol.cz": [823], "autisticadvocacy.org": [1412], "download.cc.ntu.edu.tw": [10971], "www.plant-world-seeds.com": [12774], "ncatools.education.gov.uk": [19149], "download.f-secure.com": [5541], "www.whitehothair.co.uk": [18252], "uwm.edu": [17294], "airpair.com": [747], "blog.atechmedia.com": [368], "digital.freitag.de": [6194], "jira.upc-cablecom.ch": [19716], "culturalsurvival.org": [3916], "comkort.com": [3469], "fa.law.yale.edu": [18642], "inspirationgreen.com": [8177], "lists.openitp.org": [11947], "*.helpserve.com": [8824], "xtraz.icq.com": [7690], "asjo.org": [1260], "inside.wustl.edu": [17993], "www.despora.de": [4394], "coveralls.io": [3730], "www.construx.com": [3593], "ens-lyon.org": [5285], "justgetflux.com": [5956], "www.sciencenode.org": [14381], "www.szm.com": [15767], "patientslikeme.com": [12455], "mail.telekom.sk": [16088], "www.southeasternhampshireccg.nhs.uk": [10913], "matsuev.com": [4364], "www.syncthing.net": [15732], "www.trideci.com": [16722], "www.klimaschutzpartner-berlin.de": [8933], "www.compaq.com": [3510], "vpn.c3noc.net": [2502], "www.metooo.io": [10317], "www.adadvisor.net": [15785], "stanfordhealthcare.org": [15385], "sourcesup.cru.fr": [3829], "traktr.news.com.au": [11338], "portfolio.ncl.ac.uk": [10884], "www.the-fca.org.uk": [16190], "administrator.de": [18939], "blog.rackspace.com": [13506], "*.eurexrepo.com": [5399], "www.lugons.org": [9108], "business2.danskebank.dk": [4145], "www.casetext.com": [2878], "www.rackspace.nl": [13505], "www.campusvisit.osu.edu": [11760], "rankwise.net": [13549], "www.opentemplate.org": [19461], "*.ibtimes.com": [8256], "mbsportsweb.ca": [9721], "youtube.ch": [18709], "oneeyedman.net": [11846], "s.tribalfusion.com": [16725], "lh3.google.*": [6837], "beginnertriathlete.com": [1754], "www.badgekit.org": [1605], "wpveda.com": [18470], "communicatelive.co.uk": [3499], "blog.filestack.com": [5801], "www.theoldreader.com": [16225], "tele2.lt": [16069], "forums.uberent.com": [17085], "www.just-eat.no": [19328], "startpage.com": [8405], "alojamiento.unizar.es": [17356], "register.nzpug.org": [19449], "static.projects.iq.harvard.edu": [7219], "www.feedly.com": [5738], "www.godvillegame.com": [6804], "chelyabinsk.rt.ru": [13469], "www.cpge.utexas.edu": [17285], "www.modern.ie": [10519], "ieonline.microsoft.com": [10364], "emporioalberghiero.com": [5219], "csszengarden.com": [3898], "yaprobki.ru": [18660], "mvastorage.microsoft.com": [10364], "mba.local.ch": [9536], "derpicdn.net": [4381], "nextag.*": [11363], "bugzilla-dev.allizom.org": [856], "castel-bayart.com": [2890], "wholesalelabels.com": [18265], "*.soundstrue.com": [15164], "static.eat.ch": [4867], "megastock.ru": [10232], "westmidlands.greenparty.org.uk": [6925], "*.ametsoc.org": [312], "c.fixunix.com": [5896], "www.marvelstore.com": [10040], "thegreatcoursesplus.com": [16284], "vivolab.unizar.es": [17356], "syndication.washingtonpost.com": [17990], "digia.com": [4475], "fc.webmasterpro.de": [19751], "hgo.se": [7058], "de.foursquare.com": [6082], "www.admatic.com.br": [605], "lists.opencsw.org": [11926], "www.ul.to": [3952], "blog.plex.tv": [12814], "jlos.go.ug": [17115], "secure.disc-soft.com": [4540], "wiki.engr.illinois.edu": [17258], "owamail.stanford.edu": [15383], "fluiddynamics.engineering.osu.edu": [11760], "www.cryptad.com": [3842], "tada.com": [15902], "www.pinkbike.com": [12694], "vip.vodafone.co.uk": [17813], "bgt.taobao.com": [15952], "sale.jd.com": [8422], "ironsearch.com": [7817], "fcns.eu": [6223], "www.tlhp.cf": [15823], "centrum.vas-hosting.cz": [19729], "support.splashthat.com": [15281], "www.tailgatersparking.com": [15912], "www.keen.io": [8836], "onlineregistrationcenter.com": [11877], "kosimak.com": [8992], "*.jumptap.com": [8677], "devfaq.kaywa.com": [8827], "static.ichkoche.at": [7918], "www.firstamendmentcoalition.org": [5874], "www.securityledger.com": [14531], "craftysyntax.com": [3755], "padmapper.com": [12323], "spctrm.stanford.edu": [15382], "veil-framework.com": [17592], "esuite.pjm.com": [12260], "www.viviscal.co.uk": [17799], "www.barikat.gr": [6915], "gnu.pl": [6358], "shop.oo-software.com": [11893], "tdcws01.tandridge.gov.uk": [15944], "goodcrypto.com": [6827], "proteansec.com": [13165], "auth.elsevier.com": [5185], "mail.metasploit.com": [10310], "www.simquadrat.de": [14836], "domcomp.com": [4666], "nc.me": [10878], "www.bitkonan.com": [1999], "www.justmoon.net": [8700], "app.xaraonline.com": [18544], "karty.skylink.cz": [14937], "pogoda.yandex.com": [18651], "clevelandclinic.org": [3236], "*.mediaworks.co.nz": [10167], "tamlab.engineering.osu.edu": [11760], "database.com": [4194], "www.kernel-recipes.org": [8856], "sbfs.spatialbuzz.com": [15230], "www.tribecafilm.com": [16727], "piper.sbb.ch": [15693], "bbbonline.org": [1494], "giving.illinois.edu": [17258], "www.codebutler.com": [12971], "namgate.nes.scot.nhs.uk": [10913], "pebblepad.co.uk": [12509], "www.aeriagames.com": [686], "genius-download-2.itunes.apple.com": [1120], "forum.fruct.org": [5595], "www.hamstudy.org": [7179], "ads.admarvel.com": [529], "www.venturebeat.com": [17611], "tunnelbroker.com": [16834], "future.mit.edu": [9749], "ads.aftonbladet.se": [716], "cal1card.berkeley.edu": [17240], "freedom-to-tinker.com": [6167], "cryptalloy.de": [3844], "highon.coffee": [7399], "www.madeinafreeworld.com": [9837], "houten.nl": [11132], "webmail.netscape.com": [11248], "www.serviceuptime.com": [14624], "asseenontv.com": [1240], "www.aidsmap.com": [740], "contributors.gettyimages.com": [6620], "watch.yandex.by": [18648], "hilfe-center.1und1.de": [68], "catedras.unizar.es": [17356], "es.lastminute.com": [9165], "profile.accounts.firefox.com": [5859], "trip.jd.com": [8423], "appsplus1.woolworths.com.au": [18422], "policy.cookiereports.com": [3635], "www.nasaimages.org": [4089], "phpmyadmin.ouvaton.coop": [12155], "webxmedia.co.uk": [17900], "pdcnet.org": [12626], "www.cosmote.gr": [3691], "www.advancedligo.mit.edu": [9747], "tld.pl": [16509], "janus.dsi.cnrs.fr": [6195], "ezrss.it": [5004], "*.elearnsecurity.com": [4928], "mssqlbackup.active24.cz": [18938], "www.familie.rh.aok.de": [317], "webedit.medsci.ox.ac.uk": [17271], "blog.webmaker.org": [10663], "cabal.ws": [2699], "mybuys.com": [10747], "uclan.ac.uk": [17307], "www.webglobe.sk": [18119], "incloak.es": [8030], "www.staytoday.com": [15443], "www.peeringdb.com": [12520], "*.ucsb.edu": [17242], "www.photo-mark.com": [10002], "idportal.polyu.edu.hk": [12891], "www.thegreatcourses.com": [16193], "euronuclear.org": [5424], "ads11.contentabc.com": [3612], "www.freezone.co.uk": [6187], "en.bbs.deepin.org": [4302], "balpa.org": [2339], "business.gov.au": [2453], "www.dietmardreier.de": [19119], "www.energiesparcheck.at": [18284], "arb.rt.com": [13468], "internews.org": [8290], "*.image-repository.com": [17670], "www.are.berkeley.edu": [17240], "icewarp.savana.cz": [14308], "splashdata.com": [15280], "www.gml.cz": [6757], "devel.gajim.org": [6406], "dellin.ru": [19109], "www.zen-cart.com": [18819], "www.pistoncloud.com": [12727], "modelnprod.zilog.com": [18866], "bugsnag.com": [2408], "packages.qa.debian.org": [4275], "pk.godaddy.com": [6773], "styles.ofcom.org.uk": [11732], "www.alainwolf.ch": [773], "spidweb.com": [15270], "maps.tmbc.gov.uk": [15827], "www.amazonsupply.com": [916], "image.bilio.com": [1875], "*.esupport.acenet-inc.net": [471], "www.rasp.yandex.by": [18648], "comicstore.marvel.com": [10038], "*.adverticum.net": [658], "riscos.com": [13432], "rega.ch": [13726], "store.agra-net.com": [733], "a2zinc.net": [223], "support.onelogin.com": [11835], "consult.cityoflondon.gov.uk": [3190], "*.dynamitedata.com": [4831], "digital.gamefly.com": [6419], "*.decipherinc.com": [4283], "*.singlefeed.com": [14848], "*.publicwhip.org.uk": [13216], "taxi.ya.ru": [18626], "agrisupply.com": [735], "na.apachecon.com": [1088], "www.mysociety.org": [10786], "atohio.engineering.osu.edu": [11760], "img.mixi.net": [10467], "www.dopplr.com": [4684], "secure.sendyourfiles.com": [14579], "www.netsemi.com": [11215], "lk.redhat.com": [13675], "peopleschoicecu.com.au": [12552], "*.prx.org": [12292], "onedrive.live.com": [9483], "www.256.com": [81], "*.m-net.de": [9691], "www1.tauntondeane.gov.uk": [15978], "wipik.bit.nl": [1523], "www2.nero.com": [11162], "www.mapy.cz": [9977], "*.docelu.pl": [4614], "br.godaddy.com": [6773], "www.asseenonresponsetv.com": [1276], "worldsecuresystems.com": [613], "seedprod.com": [14549], "wosign.com": [18393], "*.withknown.com": [18381], "www.beginlinux.com": [1753], "macosforge.org": [9820], "opencryptoaudit.org": [12004], "publisher.assetstore.unity3d.com": [17220], "www.frauen.htwk-leipzig.de": [7114], "staging.www.gigya.com": [6659], "www.avuecentral.com": [1458], "collaborate.admin.uillinois.edu": [16960], "*.listonic.com": [9452], "www.materiel.net": [10065], "f0.thejournal.ie": [16224], "lib.rus.ec": [9285], "www.nlnetlabs.nl": [10941], "www.regiobank.nl": [13729], "sovereignman.com": [15198], "cybercamp.es": [3958], "lhc-div-miwg.web.cern.ch": [2575], "dotcomhost.com": [4692], "wilmerhale.com": [18319], "*.invoca.net": [8330], "kitematic.com": [8924], "media-dev.ycharts.com": [18613], "www.catchy.com": [2900], "abiggersociety.com": [384], "lejournal.cnrs.fr": [6195], "www.paddle.com": [12324], "plannedparenthood.org": [12772], "forums.lshtm.ac.uk": [9576], "*.lyris.com": [9686], "www.maplesoft.com": [9972], "*.datamappi.fi": [4203], "www.shopperapproved.com": [14727], "www.weakdh.org": [18031], "isshub.io": [8377], "bloom.bg": [1920], "www.o2-tv.cz": [16076], "get.adobe.com": [615], "assets.microsoft.com": [10364], "*.righttobuy.communities.gov.uk": [19073], "*.thewordpro.com": [18430], "www.union.uiuc.edu": [16956], "surfingip.info": [3533], "www.dmv.ca.gov": [2741], "pwmt.org": [13262], "auth.dtu.dk": [16031], "www.gresille.org": [6945], "embeddedanalytics.com": [5199], "www.donorregister.nl": [11132], "www.openlistings.co": [12019], "gnupg.org": [6762], "secure.vidyard.com": [17705], "www.res-x.com": [2972], "www.fit.edu": [5942], "z.mozest.com": [10649], "api.wienerstadtwerke.at": [18284], "www.bitcoincharts.com": [1978], "blog.cartercenter.org": [2866], "www.rpw.sh": [14006], "www.fantlab.ru": [5657], "transip.nl": [16660], "planetblood.deathmask.net": [4266], "www.dinclinx.com": [9841], "statistieken.groenlinks.nl": [6962], "www.nieuwsblad.be": [11393], "mysn.de": [10846], "www.ort.fi": [15610], "brandnewbooty.com": [2280], "edplivebands.edp.pt": [4896], "poste.it": [12965], "*.leadlander.com": [9194], "www.allcoin.com": [828], "store.servicenow.com": [14622], "ieee.osu.edu": [11760], "portal.mytum.de": [10789], "images.autobytel.com": [1425], "forum-pl.msi.com": [9792], "398-fz.rkn.gov.ru": [13913], "timtaubert.de": [16452], "*.fireeye.com": [5852], "www.gemseek.com": [6520], "bchydro.com": [1509], "wie.osu.edu": [11760], "flyersrights.org": [5962], "www.sheffield.indymedia.org.uk": [8084], "secure-hwcdn.libsyn.com": [9321], "s3.drafthouse.com": [774], "www.mybenefitscalwin.com": [10745], "*.ex.ac.uk": [17251], "selinuxproject.org": [14099], "api.metooo.io": [10317], "jenkins.linuxcontainers.org": [9420], "subscribe.theguardian.com": [16288], "www.adview.pl": [666], "svn.boost.org": [2211], "support.soe.ucsc.edu": [17305], "*.lastpass.com": [9163], "www.internetlivestats.com": [8283], "spin.atomicobject.com": [1327], "tpvs2.hmrc.gov.uk": [7084], "www.edrcdn.com": [4897], "*.imgsmail.ru": [8001], "app.netlify.com": [11239], "iis.se": [7742], "www.c-ware.de": [2497], "mediastorehouse.net": [10146], "makerble.com": [9914], "wwwwwwwwwwwwwwwwwwwwww.bitnik.org": [2012], "img3.leboncoin.fr": [19351], "ebanking.cash.ch": [19043], "onthemap.staffordshire.gov.uk": [15370], "mrcote.info": [10674], "www.mymoustache.net": [10770], "www.timeweb.ru": [16457], "ritningar.uppsalahem.se": [17397], "visuals.soundcloud.com": [15161], "sr.stanford.edu": [15383], "*.flinto.com": [5923], "*.hosting2go.nl": [7526], "imp2.bizographics.com": [2032], "www.enfuse.co": [7006], "binaryturf.com": [1890], "victorops.com": [17671], "www.technovelty.org": [16046], "webmaptcs.trafficmap.ch": [19663], "frab.cccv.de": [2544], "www.ssl-trust.com": [14175], "transparencycamp.org": [15601], "blog.affiliatewindow.com": [4485], "thinkfaster.co": [16360], "euroland.com": [5418], "*.top.list.ru": [9448], "www.tema.liu.se": [9084], "www.umeahackerspace.se": [17143], "enalean.com": [5229], "winscp.net": [18329], "globalhealth.stanford.edu": [15382], "*.hoseasons.co.uk": [18490], "static.packagelab.com": [12314], "fr.ch": [19648], "rogerfederershop.com": [13948], "www.flitto.com": [5929], "bugzilla.quagga.net": [13325], "www.themler.com": [16343], "ovh.it": [12173], "www.drawception.com": [4744], "desilva.biz": [4247], "5apps.com": [177], "www.commsy.uni-hamburg.de": [16951], "www.utica.edu": [17454], "secure.*.onsugar.com": [11815], "ovh.ie": [12173], "blog.jetbrains.com": [8558], "www.cs-cart.com": [2661], "shop.bestpractical.com": [1807], "www.daft.ie": [4104], "www.antifa.cz": [1068], "www.libsyn.com": [9321], "immunityinc.com": [8007], "news.istella.it": [8381], "socallinuxexpo.org": [15047], "www.microsoftstudios.com": [10369], "aoptix.com": [326], "del.icio.us": [7920], "www.runscope.com": [14038], "www.koen.io": [8954], "order.hbonow.com": [19242], "ngvpn12.nvidia.com": [10985], "booking.swiss.com": [15695], "www.cloudflareapp1.info": [13811], "d3.advertisers-openx.com": [660], "www.azt.allianz.com": [18950], "www.pvac.leeds.ac.uk": [17318], "www.restorethefourth.net": [13817], "siit.tk": [3533], "*.samba.org": [14261], "metro.ya.ru": [18626], "developers.livechatinc.com": [9480], "acast.com": [18935], "www.tvline.com": [15884], "csirt.cesnet.cz": [2585], "www.advancement.osu.edu": [11760], "cftc.gov": [3482], "miun.se": [9751], "www.gavelbuddylive.com": [6471], "www.coinforum.de": [3395], "www.seroundtable.com": [14105], "ditii.com": [3993], "*.adspeed.biz": [540], "east-africa.hivos.org": [7431], "nanorep.com": [11033], "imbo.vgc.no": [17484], "ads.adswitcher.com": [18940], "enroll.entrust.net": [5304], "status.linode.com": [9387], "www.crazespaces.pw": [19089], "www.wolframcloud.com": [18399], "pubpeer.com": [13198], "www.realmatch.com": [13624], "rachelbythebay.com": [13493], "janus.cnrs.fr": [6195], "purdueplantdoctor.com": [13234], "www.tor.com": [9831], "www.tinyapps.org": [16486], "landscape.canonical.com": [2810], "www.rfcexpress.com": [13419], "paramountmovies.com": [12394], "schoolsupportservices.camden.gov.uk": [2772], "bookdepository.co.uk": [16217], "f.chtah.com": [3055], "asianfanfics.com": [1259], "www.maxserv.com": [10092], "chinalaborwatch.org": [3083], "ckom.de": [3205], "collateralmurder.com": [3420], "*.urkb.ch": [19333], "images.kingdomofloathing.com": [1308], "dr.dk": [4078], "lesscss.org": [9069], "wwwcms.tkk.fi": [15821], "careers.dyson.com": [4837], "www.middleeastmonitor.com": [10375], "*.grupotriton.com": [6987], "silkn.com": [14793], "helloneighbour.com": [7295], "www.tripadvisor.ca": [19696], "analytics.tacticaltech.org": [15901], "www.cs.jhu.edu": [16296], "uam.engineering.osu.edu": [11760], "purchase.youneedabudget.com": [18707], "code.directadvert.ru": [4524], "www.lifeinthefastlane.ca": [9329], "static.sparkfun.com": [15222], "client.macfound.org": [9818], "orchiddiva.com": [12094], "rushbucks.com": [14040], "richmond.greenparty.org.uk": [6925], "sourcedna.com": [15171], "www.websupport.sk": [18160], "www.open-mesh.org": [12020], "www.hacoder.com": [7121], "git.php.net": [12250], "app-us1.resrc.it": [13599], "accessibility.harvard.edu": [7219], "www.password-hashing.net": [12432], "www.netid.cornell.edu": [3676], "*.nasdaqomx.com": [10871], "es.medicare.gov": [19392], "www.laproxsites.com": [9154], "coop.ch": [3644], "desktopsummit.org": [4393], "*.freshmilk.tv": [6205], "www.platformadmin.com": [12785], "www.deepdotweb.com": [4299], "guidebook.com": [7009], "eservices.dynatrace.com": [4825], "firefox.yandex.com.tr": [18649], "studentessentials.cornell.edu": [3676], "ssologin.palmcoastd.com": [12346], "av18mov.com": [1434], "www.omha.net": [11889], "ko.chaturbate.com": [3035], "registrierung.raiffeisen.ch": [13527], "ensk.dict.cc": [4455], "a16z.com": [219], "www.dedikuoti.lt": [4292], "*.blogs.technet.com": [16030], "www.bycraft.cz": [2483], "store5.esellerate.net": [5357], "i.cloudup.com": [3316], "spendabit.co": [15261], "images.lowes.com": [9636], "learning.internetessentials.com": [19300], "*.hbr.org": [7048], "securityheaders.io": [14534], "dataview.ofsted.gov.uk": [19456], "www.yakala.co": [18641], "brainyquote.com": [2275], "www.pagerduty.com": [12332], "mbnet.fi": [9723], "vektorbank.com": [17593], "api.dwolla.com": [4816], "bareos.org": [1668], "samia.gidnetwork.com": [6333], "www.netforumpro.com": [11190], "sugarcrm.com": [15582], "www.informatick.net": [8122], "ecode360.com": [5054], "pornel.net": [12930], "www.qfxsoftware.com": [13282], "sapgw.ro.vutbr.cz": [17522], "*.phpbb.com": [12650], "gamedev.net": [6418], "sallybeauty.ugc.bazaarvoice.com": [14252], "tno.nl": [15839], "www.pica.army.mil": [17028], "programpartner.vas-hosting.cz": [19729], "files.app.net": [1102], "www.vtb.com": [17514], "360totalsecurity.com": [109], "engine.doublepimp.com": [4717], "ftp.formilux.org": [6044], "www.xtube.com": [18602], "m.efinancialcareers.com": [4911], "pda.blogs.yandex.kz": [18652], "forums.oneplus.net": [11841], "distribution.zoom.com.br": [18901], "www.cateee.net": [2901], "hostingsolutions.cz": [7531], "liberdade.digital": [9297], "dev.filestack.com": [5801], "main-ws.tmi.twitch.tv": [16888], "franchisegator.com": [6099], "www.lessigforpresident.com": [9261], "lists.blockstream.com": [2099], "www.adda-sr.org": [268], "macworld.com.au": [9823], "calendar.live.com": [9483], "mail.gna.org": [6758], "rc.codexns.io": [3383], "thinkprogress.org": [2944, 16362], "events.joomla.org": [8627], "download.openoffice.org": [1084], "www.upc.cz": [17000], "cisco.com": [3162], "susyradio.com": [15667], "payments.redbridge.gov.uk": [13683], "sdr.stanford.edu": [15383], "xmarks.com": [18579], "www.goob.tk": [3533], "cryptomonkeys.com": [3881], "storefront.steampowered.com": [17547], "nuget.org": [11562], "www.rogerfederershop.com": [13948], "www.usdoedregistration.ed.gov": [4889], "amazon.jobs": [912], "*.umext.maine.edu": [17321], "openbeta.usaspending.gov": [17034], "java.net": [8525], "support.pivotal.io": [12730], "www.freshbsd.org": [6200], "musicbrainz.org": [10717], "frog.wix.com": [18383], "www.tshaonline.org": [15861], "static.dealnews.com": [4261], "acml.engineering.osu.edu": [11760], "*.semiaccurate.com": [14572], "www.websitesettings.com": [18152], "*.cchgroup.com": [2547], "www.rijswijk.nl": [11132], "www.schiedam.nl": [11132], "webmagazin.de": [18129], "maidstone.objective.co.uk": [19454], "research.isis.poly.edu": [12888], "store.xfinity.com": [19784], "s0.2mdn.net": [94], "myplace.havering.gov.uk": [7244], "www.responsive.io": [13814], "booking.com": [2202], "www.dornsife.usc.edu": [17278], "visabuxx.com": [17763], "www.curated.co": [3924], "www.tucowsdomains.com": [16816], "philshobbyshop.com": [12628], "thinkgeek.com": [16361], "tracking-protection.truste.com": [15856], "eastsussexlearning.org.uk": [19144], "stacksity.com": [15365], "esdominios.com": [5356], "kasperskyclub.ru": [8809], "symfony.com": [15717], "*.bitcasa.com": [19001], "s.amazon-adsystem.com": [909], "optimalpayments.com": [12068], "verifier.login.persona.org": [10662], "static.tue.nl": [15874], "www.socialreader.com": [15066], "subconadmin.com": [15556], "cengagebrain.co.uk": [2937], "dpspreview.usc.edu": [17278], "cdn.wcdc.comcast.com": [3461], "guide.macports.org": [9821], "process.knowledgeblog.org": [8948], "www.cyrus.foundation": [3989], "www.law.resource.org": [13207], "download.freedesktop.org": [6126], "cornerstone.wustl.edu": [17993], "deutschepost.com": [19112], "docs.voicethread.com": [17821], "tickets.kirklees.gov.uk": [8916], "compgeo.stanford.edu": [15383], "www.glenoit.com": [6707], "www.renew.acs.org": [929], "www.technomedia.com": [16043], "rossierfaculty.usc.edu": [17278], "ultradns.*": [17132], "futurelearn.com": [6282], "www.blazingthyme.com": [2063], "checkout.unity.com": [17220], "mbox.uni-stuttgart.de": [17281], "www.es.lastminute.com": [9165], "www.mycomputer.com": [10754], "sourceafrica.net": [15169], "cgi.f-secure.com": [5541], "babergh.firmstep.com": [19183], "*.co-operativebank.co.uk": [3332], "northwarks.gov.uk": [11498], "launchpadlibrarian.net": [9169], "*.education.gov.au": [4368], "sport.mail.ru": [9874], "engees.unistra.fr": [17177], "www.blog.uni-erlangen.de": [17311], "www.plantappstore.com": [12778, 12779], "www.movie4k.pe": [10636], "app.dumptruck.goldenfrog.com": [6814], "selz.com": [14570], "lmsl.engineering.osu.edu": [11760], "outreach.web.cern.ch": [2575], "*.opengroup.org": [16205], "careers.7-eleven.com": [187], "blog.scraperwiki.com": [14406], "jalopnik.com": [8497], "www.unisg.ch": [17200], "adults.eastsussexlearning.org.uk": [19144], "www.dnsexit.com": [4607], "rxportalexpress.com": [14052], "www.tinfoilsecurity.com": [16472], "clusterconnection.com": [3324], "casa.tiscali.it": [16498], "*.lulu.com": [9659], "peixun.tmall.com": [19684], "www.acpa.ca": [745], "customer.innometrics.com": [8151], "marcansoft.com": [9982], "recruit.smashfly.com": [15003], "www.kosmetik-per-klick.de": [10196], "www.*.doe.gov": [17210], "www.powertothepooch.com": [12997], "ppl.cz": [12283], "bucyrustelegraphforum.com": [2389], "familie.san.aok.de": [317], "merchdirect.com": [10276], "www.tickets.london2012.com": [9573], "landslide.com": [9143], "finka.pl": [5847], "12wbt.com": [10343], "store.youmail.com": [18706], "*.uclouvain.be": [17230], "carma.astro.umd.edu": [17263], "www.united.com": [17212], "code.qt.io": [13315], "xhamster.biz": [785], "bgpmon.com": [1514], "cryptopia.co.nz": [3887], "catalogue.yandex.by": [18648], "www.webplatform.org": [18079], "previa.se": [13043], "auscert.org.au": [1372], "secondlookforensics.com": [14463], "signin1.bt.com": [1551], "vel.joomla.org": [8627], "archive.anon-ib.net": [1037], "events.oracle.com": [12081], "howtoforge.com": [7574], "nos-oignons.org": [11511], "secure.law.yale.edu": [18642], "www.torrentfreak.com": [16580], "item.taobao.com": [15952], "rad.atdmt.com": [10360], "backissues.people.com": [12547], "schools.dl.ed.gov": [4889], "rumorscity.com": [14032], "easy.myfonts.net": [10759], "my.studiopress.com": [15541], "e-fibank.bg": [5769], "robeco.nl": [13921], "www.researchstore.com": [4206], "csync.yahooapis.com": [18639], "fold.cm": [5982], "www.villahostels.com": [17714], "blog.travelrepublic.co.uk": [16695], "shopsite.com": [14718], "sydostran.se": [15711], "lgosdm.mit.edu": [9749], "www.dribbble.com": [4759], "crm-fusioncrm.oracle.com": [12082], "www.irb.fraunhofer.de": [6112], "www.ri.gov": [19552], "static.wpm.neustar.biz": [11280], "german.tags.literotica.com": [9467], "env.leeds.ac.uk": [17318], "www.hornstrafarms.com": [7497], "files.status.net": [7936], "m.pogoda.yandex.kz": [18652], "*.exxile.net": [4995], "www.replicant.us": [13779], "telushealth.co": [16103], "kcart.alipay.com": [817], "www.forensic.to": [18831], "www.page.ly": [12331], "downloads7.mamp.info": [19379], "login.talemetry.com": [15919], "www.getrave.com": [6601], "mtswelding.co.uk": [19415], "jdeslippe.com": [8469], "www.servercircle.com": [14610], "datstat.com": [4169], "cdn.ustatik.com": [17449], "www.pliktverket.se": [12816], "www.chakasmmm.com": [2983], "www.stealthy.io": [15449], "erooups.com": [5349], "webmail.desy.de": [4399], "www.kop11.com": [8741], "messenger.com": [10292], "www.artskills.com": [1222], "documentcloud.org": [4627], "*.mpg.de": [9780], "www.math.ias.edu": [7669], "atomic-clock.org.uk": [17120], "help.calameo.com": [2731], "armservers.com": [18428], "*.n-ergie.de": [10854], "images.slashdot.org": [14947], "*.nbcnews.com": [10874], "uen.org": [17452], "bugzilla.clamav.net": [3209], "ulife.gmu.edu": [6544], "cloudaccess.net": [3278], "secure.syllabushare.com": [15713], "www.freebsd.org": [6120], "static.opentok.com": [11985], "groupon.se": [6976], "services.share.aarp.org": [234], "*.cnn.com": [2636], "techjourney.net": [16023], "vh3.ro.vutbr.cz": [17522], "www.graphene-lda.com": [6893], "novell.com": [11530], "www.cwi.nl": [2958], "cas.lis.illinois.edu": [17258], "*.animoto.com": [1025], "www.petekeen.net": [12588], "data.calameo.com": [2732], "www.bttrack.com": [2384], "trader.skandiabanken.no": [14895], "www.bitflyer.jp": [1931], "water.org": [17999], "meetmecorp.com": [10212], "www.medicalert.org": [10185], "www.as.au.edu": [16923], "albert.apple.com": [1120], "l.5min.com": [178], "hizlisaat.com": [7432], "delta.affinix.com": [704], "www.thecoastnews.com": [16260], "emcs.ws.hmrc.gov.uk": [7084], "jobs.illinois.edu": [17258], "thecustomizewindows.net": [19675], "dealextreme.com": [4253], "support.incapsula.com": [8043], "cahub.cancer.gov": [2805], "search.f-secure.com": [5541], "overstock.com": [12170], "www.greenqloud.com": [6919], "rushmypassport.com": [14041], "www.uocpres.uillinois.edu": [16960], "x.bitcoin.co.id": [1964], "*.media.collegehumor.cvcdn.com": [3427], "www.vliegtickets.nl": [17802], "www.pravydiplom.cz": [13015], "divxpress.com": [4580], "tuningworld.com.au": [16831], "static2.chartbeat.com": [3018], "www.quantifiedcode.com": [13338], "estavisas.org": [4967], "trumba.com": [16778], "exploit.in": [5508], "pacadmin.ucc.ie": [16933], "*.estat.com": [10176], "www.youtube.bg": [18709], "gfxpro.hu": [9155], "contura.rhb.ch": [13857], "freebarrettbrown.org": [6138], "ageofmine.com": [722], "s.ophan.co.uk": [12053], "ese.osu.edu": [11760], "voronezh.rt.ru": [13469], "ordercourses.com": [2937], "arabic.rt.com": [13468], "techrepublic.com": [16016], "eu1.snoobi.com": [15039], "qt.io": [13315], "i.dslr.net": [4081], "info.iet.unipi.it": [8099], "asmp.a1.net": [217], "*.acessoseguro.net": [472], "www.jobs.nhs.uk": [10913], "northlincolnshire.firmstep.com": [19182], "reethibeach.com": [13713], "www.worldcat.org": [18446], "www.whatsuccesstakes.com": [6716], "www.ncsc.nl": [10886], "dev.windowsphone.com": [18346], "just-eat.ca": [19328], "*.pictos.cc": [12669], "herts.police.uk": [7333], "upforit.com": [785], "fsisac.com": [5606], "www.web.de": [18050], "www.vanhaaren.net": [17550], "wiki.ubuntulinux.jp": [17105], "*.footaction.com": [6012], "medapps.wustl.edu": [17993], "tobtr.com": [16522], "www.apereo.org": [1089], "pr0gramm.com": [19514], "dl.btjunkie.org": [19022], "*.fb.me": [5699], "axess.sahr.stanford.edu": [15383], "www.sav.sk": [14972], "encipher.it": [5231], "trials.ca.com": [2511], "mastermindsdigital.com": [10059], "bcex.bedford.gov.uk": [18986], "taboola.com": [15898], "www.hacklab.to": [7133], "i1.ooshirts.com": [11898], "cdn.gigantic.com": [6651], "motox.accu-weather.com": [465], "travel.mongabay.com": [10551], "www.smart-mail.de": [14984], "lenovoorders.com": [9252], "assist-erp.osu.edu": [11760], "fifengine.net": [5573], "en.ad-stir.com": [513], "t.trackedlink.net": [4695], "mbdcs.osu.edu": [11760], "accounts.expresscoin.com": [5517], "myheritage.de": [10834], "mosaic.re.taobao.com": [15952], "firefox.enhancedsteam.com": [5273], "interns.org": [8292], "forums.openvpn.net": [11989], "www.rbkc.gov.uk": [19538], "www.quest.com": [13351], "library.unc.edu": [16984], "www.wwte3.com": [17937], "www.meldium.com": [10239], "www.movabletype.org": [10627], "undergrad.stanford.edu": [15383], "change.org": [2992], "wow.zamimg.com": [18782], "hofer.si": [299], "seal.stellaservice.com": [14190], "www.worlde-idcongress.com": [18459], "www.esa.int": [5430], "www.lindtusa.com": [9366], "cherry.de": [3062], "flash-mp3-player.net": [5903], "install.sandstorm.io": [14283], "www.creocommunico.com": [7501], "ctr.stanford.edu": [15383], "epa.ie": [4939], "*.goldstar.com": [6818], "*.muscache.com": [749], "l2020.org": [9061], "developer.forecast.io": [6023], "motorregister.skat.dk": [14897], "gmx.tw": [6350], "newsroom.unsw.edu.au": [16995], "www-images.comixology.com": [3465], "www.kwiksurveys.com": [9048], "alitrip.com": [818], "www.maplight.org": [9969], "www.serveriai.lt": [14616], "www.aldi-suisse.ch": [299], "dogzonline.com.au": [4636], "analytics.pubnxt.net": [13196], "consortiumlibrary.org": [3591], "www.philanthropy.cam.ac.uk": [17243], "csr.engineering.osu.edu": [11760], "service.taobao.com": [15952], "wayf.ukfederation.org.uk": [16964], "ask.fm": [1261], "ares.umd.edu": [17263], "www.freeyourandroid.org": [6155], "larrysalibra.com": [9158], "www.congstar.de": [3577], "static.couponfinder.com": [12169], "tsonlinepermit.wusm.wustl.edu": [17993], "intake.credability.org": [3788], "content.xap.com": [18502], "s0.thejournal.ie": [16224], "*.isle.jp": [8368], "blogs.tageswoche.ch": [15907], "www.sbaglobal.com": [14625], "*.alertir.com": [789], "feeds.podtrac.com": [19502], "saechsdsb.de": [4377], "climatecentral.org": [3265], "eu.hunchlab.com": [7618], "online.citibank.com": [3171], "paodelicia.com": [12377], "www.colocation-datacenter.com": [19228], "news.efinancialcareers.com": [18428], "bdone.hu": [1719], "cbpweb.nl": [4813], "chppe.engineering.osu.edu": [11760], "*.gsn.com": [6416], "*.r.cdn77.net": [2555], "www.clicky.com": [6610], "secure.gamblingcommission.gov.uk": [6413], "codespeak.net": [3380], "www.hepo.fi": [7320], "www.timroes.de": [16451], "www.coveredca.org": [3731], "stats.liqd.net": [9442], "tokyotosho.info": [16537], "status.mythic-beasts.com": [10850], "api.sso.biglobe.ne.jp": [1864], "7eer.net": [194], "flixbus.it": [5931], "meetme.com": [10211], "www.gynecomastia.org": [7039], "mcc.godaddy.com": [6773], "authorizenet.com": [1410], "ef.gy": [5106], "fsm.education.gov.uk": [19149], "*.hsselite.com": [7560], "onlychange.com": [11881], "consent.truste.com": [15856], "urospace.de": [17414], "www.smugmug.com": [15014], "aat-net.de": [844], "me.onthe.io": [11890], "resnet.rit.edu": [13434], "*.mhsa.aihw.gov.au": [10262], "www.genumedia.htwk-leipzig.de": [7114], "mining.bitcoin.cz": [10425], "www.willleathergoods.com": [18311], "docs.djangoproject.com": [4590], "webink.com": [18068], "suse-art.org": [19461, 19462], "facultyaffairs-humsci.stanford.edu": [15383], "api.media.ccc.de": [2538], "mi4urinsk.ru": [10332], "video.fortinet.com": [6056], "www.piratetimes.net": [12709], "lcamtuf.blogspot.co.*": [2113], "jobs.hubspot.com": [7594], "lists.openmoko.org": [12039], "degica.com": [3336], "help.sakura.ad.jp": [14068], "www.byo.com": [2308], "store.seagate.com": [14437], "bittiraha.fi": [2022], "gotomeeting.com": [6787], "style.com": [15550], "www.globalbersih.org": [6722], "enno.dict.cc": [4455], "mail.scs.illinois.edu": [17258], "*.zemanta.com": [18814], "flickr.com": [5918], "lulzbot.com": [9660], "majordomo.ru": [9902], "jepso.com": [8554], "www.casascius.com": [2872], "mbusa.com": [9724], "mekanist.net": [10238], "www.tco.osu.edu": [11760], "www.lpice.eu": [9096], "checkout.netsuite.com": [11209], "*.aquent.com": [1144], "www.usfsco.uillinois.edu": [16960], "*.soap.com": [15053], "elttam.com.au": [19154], "www.brainshark.com": [2270], "bacas.southampton.gov.uk": [15191], "giving.jhu.edu": [16296], "trust-center.verisign.com.sg": [17623], "groenlinks.nl": [6962], "www.portalmasq.com": [12280], "events.uchastings.edu": [16940], "cdn.b5media.com": [859], "extabit.com": [5518], "blink-182.com": [2075], "www.lakome.com": [9134], "selangorku.com": [14564], "www.theleanstartup.com": [16198], "ouvadmin.ouvaton.coop": [12155], "lansquared.com": [9063], "dftba.com": [4031], "www.toptip.ch": [3645], "packetwerk.com": [12318], "hetlnvloket.nl": [11132], "biz.points.yahoo.co.jp": [18640], "seal.entrust.net": [5304], "www.ploum.net": [12821], "porterdrive.stanford.edu": [15383], "nl.libreoffice.org": [9311], "www.primarycare.nhs.uk": [10913], "m.mk2.com": [19402], "kiva.org": [8926], "ns-cdn.neustar.biz": [11280], "ca.evanced.info": [5434], "haskellonheroku.com": [7230], "d1.parature.com": [12396], "www.quidco.com": [13362], "mariestopes.org.au": [9992], "affiliates.streamray.com": [15454], "firstamendmentcenter.org": [5873], "cdn.overclock.net": [12163], "www.ycombinator.com": [7141], "bulletin.stanford.edu": [15383], "bigboxsave.com": [1860], "creativecow.com": [3779], "verisign.com.sg": [17623], "webmail.nitro.dk": [11426], "*.adserver01.de": [629], "sevenoaks.gov.uk": [14638], "99bitcoins.com": [211], "www.srsplus.com": [14169], "verisign.co.uk": [17623], "r3.res.outlook.com": [12153], "gimmebar.com": [6661], "downforeveryone.com": [4723], "crunchbangplusplus.org": [3835], "www.philosophynow.org": [12627], "www.stackoverflow.com": [15359], "www.grml.org": [6382], "philosophynow.org": [12627], "d.ghostery.com": [6631], "secure.roboform.com": [13925], "cdn.smugmug.com": [15014], "saintaardvarkthecarpeted.com": [14245], "developer.swisscom.ch": [15698], "ml314.com": [9756], "abacus.com": [400], "isleaked.com": [8362], "cdn.statimgs2.com": [3922], "www.bayan.ir": [1704], "scribd.com": [14414], "webjet.com.au": [18124], "hhmi.org": [7572], "upgradedself.com": [17387], "www.subconadmin.com": [15556], "fr.aldi.be": [299], "www.sharethefiles.com": [14679], "change4life.wales.gov.uk": [17957], "download.xmarks.com": [18579], "visitor.wustl.edu": [17993], "*.blackducksoftware.com": [2045], "www.joomlacode.org": [8628], "anwers.billiondigital.com": [1882], "reg.tmall.com": [19684], "partito-pirata.ch": [12284], "urhome.umd.edu": [17263], "chitika.com": [3092], "www.torrentz.me": [16591], "s2.uicdn.net": [16958], "reefledlights.com": [13709], "www.dota2.com": [4697], "*.tu-darmstadt.de": [15870], "www.mytemp.email": [10790], "secureapi.escrow.com": [5354], "www.dejure.org": [4321], "*.groups.et.byu.net": [1587], "packet.net": [12316], "www.su.nottingham.ac.uk": [11528], "www.unbit.it": [17148], "www.purecars.com": [13236], "www.nccc.nl": [11131], "nvidia.eu": [10984], "demo.virtkick.com": [17745], "bookings.aberdeenshire.gov.uk": [412], "www.denso-wave.com": [4367], "*.qrobe.it": [13310], "steepandcheap.com": [15460], "www.bitcoin-otc.com": [1962], "home.netscape.com": [11248], "datenretter.de": [3625], "www.timeanddate.com": [16461], "login.1und1.de": [68], "globalchokepoints.org": [4908], "www.designernews.co": [4388], "www.svgopen.org": [14202], "mbasic.facebook.com": [5620], "www.lshtm.ac.uk": [9576], "mail.yandex.kz": [18652], "pc.openx.com": [11995], "www.fraglive.cl": [6094], "community.riverbed.com": [13907], "blog.bandinelli.net": [1639], "community.velaro.com": [17594], "bnf.org": [2342], "www.spogo.co.uk": [15285], "*.so36.net": [19605], "biderundtanner.ch": [18997], "idstronghold.com": [7937], "bcop.nanog.org": [11490], "okta.com": [11776], "golflink.net": [6820], "shibboleth2.uchicago.edu": [17246], "cdn1.campuslabs.com": [2786], "adspeed.com": [542], "images.websitealive.com": [18149], "aclusocal.org": [257], "support.500px.com": [166], "sprav.yandex.by": [18648], "www.wnyc.org": [17916], "www.cff.ch": [15693], "www.resus.org.uk": [13820], "prettyeasyprivacy.com": [12502], "www.netbsd.org": [11184], "cz.o2.com": [16076], "email.xnet.cz": [18531], "www.edenhost.com": [5075], "bsdcan.org": [1542], "cdn.ads.ookla.com": [11894], "cdn.*.truenudists.com": [16775], "www.okturtles.com": [11773], "www.orbital.com": [12093], "www.freecode.club": [19194], "netsemi.com": [11215], "beetailer.com": [1751], "avon.cz": [373], "nomachine.com": [11437], "epa-prgs.ornl.gov": [11693], "www.awxcnx.de": [1465], "scheduler.worldcommunitygrid.org": [18447], "hosting.1und1.de": [68], "pr.zwame.pt": [18925], "www.istockphoto.com": [19309], "solutionpartner.cisco.com": [3162], "domreg.lt": [4676], "ikk-suedwest.de": [7749], "oss-binaries.phusionpassenger.com": [12654], "*.buzzurl.jp": [2481], "mail.qq.com": [13285], "*.googlesyndication.com": [6844], "www.brreisen.de": [1539], "www.rec-log.jp": [13640], "hyb.pw": [19268], "blossom.io": [2121], "networking4all.com": [11274], "eu.soyoustart.com": [15052], "www.alaskarobotics.com": [777], "lagunita.stanford.edu": [15383], "katylee.com": [8819], "computing-images.web.cern.ch": [2575], "my.kinsta.com": [8911], "www.drivee.jp": [4764], "*.ivegotkids.com": [8400], "provost.buffalo.edu": [17297], "*.servertastic.com": [14609], "images-static.trustpilot.com": [16798], "www.syncplicity.com": [15730], "a.tribalfusion.com": [16725], "www.fsaregistration.ed.gov": [4889], "campaignercrm.com": [2780], "tails.thecthulhu.com": [16334], "gitcafe.com": [6676], "wiki.videolan.org": [17688], "www.bigboxsave.com": [1860], "duolingo.com": [4805], "paimai.taobao.com": [15952], "uical.uic.edu": [17231], "i1.gallery.technet.s-msft.com": [14058], "www.shop.infinet.com.au": [8093], "dslreports.com": [4081], "*.edfenergy.com": [4890], "dixcart.com": [4586], "dmachoice.org": [4044], "instagr.am": [8181], "cgc.gov.au": [3493], "www.openstreetmap.fr": [12045], "contacts-df.live.com": [9483], "myidp.sciencecareers.org": [14379], "people.freedesktop.org": [6126], "www.crystaldelights.com": [3893], "www.campina.com": [2782], "www.hertz.com.kw": [7354], "*.virtualtourist.com": [17751], "editor.torrentday.com": [16579], "editorial.outbrain.com": [12150], "sportsblogs.post-gazette.com": [12728], "www.fr.ricardo.ch": [13866], "sesame.dsi.cnrs.fr": [6195], "*.avisservices.com": [1452], "togevi.com": [8400, 8401], "www.sanger.ac.uk": [18193], "wizards.com": [18387], "yoklapi.com": [18690], "www.blockitpocket.com": [2096], "*.namecentral.com": [11018], "www.devolo.com": [4427], "radar.osu.edu": [11760], "avoiceformen.com": [386], "www.browserscope.org": [19770], "hkyantoyan.com": [7082], "y6xjgkgwj47us5ca.onion": [18610], "*.branchable.com": [2277], "customersupport.symantec.com": [15715], "dbus.freedesktop.org": [6126], "www.3sat.de": [135], "tribecafilm.com": [16727], "emember.heraldcorp.com": [7321], "medieninformatik.imn.htwk-leipzig.de": [7114], "ask.f5.com": [5546], "*.dreamhost.com": [4748], "www.kasperskypartners.ru": [8811], "www.visitormotion.com": [5390], "ext.host-tracker.com": [7503], "webonic.hu": [18136], "help.burthub.com": [2451], "someserver.de": [15129], "audioboo.fm": [1359], "s1.percona.com": [12557], "www.bookacourse.com": [2200], "campinaboerderijdag.nl": [2782], "puppet-dashboard.debian.org": [4274], "dos.cornell.edu": [3676], "content.dyson.co.uk": [4837], "www.wpp.com": [17923], "postnord.se": [12950], "trademarkia.com": [16644], "www.dropboxatwork.com": [4768], "tns-counter.ru": [16519], "his.se": [7069], "www.sunriseprintonline.com": [15605], "www.zscaler.com": [18913], "security.debian.org": [4275], "www.greenpeace-energy.de": [6933], "teachersassurance.co.uk": [15993], "www.maxim-ic.com": [10095], "aulis.plaza.fi": [12131], "www.parisschoolofeconomics.eu": [12402], "freshmeat.club": [19198], "activate.esellerate.net": [5357], "www.projecteuler.net": [13134], "bookings.see.leeds.ac.uk": [17318], "urbandictionary.com": [17407], "www.posteo.de": [12969], "wwww.limesurvey.org": [9356], "sa-as.com": [17768], "www.kids.greenpeace.de": [6936], "uni-karlsruhe.de": [8798], "magix.info": [9707], "www.namepros.com": [11022], "icme.stanford.edu": [15382], "www.eam-gmbh.com": [4866], "www.dudleyfoi.org.uk": [19128], "www304.americanexpress.com": [935], "www.antergos.com": [1062], "dkg.fifthhorseman.net": [5782], "downloads.mysql.com": [10780], "www.lincolnshire.gov.uk": [9364], "www.admob.com": [532], "www.ohling.com": [11765], "buzzvpn.com": [2475], "www.coursedirectoryproviderportal.org.uk": [19082], "66option.com": [181], "systembolaget.se": [15763], "computerlabsolutions.com": [3536], "*.unimi.it": [17190], "trustnet.wellcome.ac.uk": [19752], "www.youtube.my": [18709], "ipv6.tunnelbroker.com": [16834], "www.arcadeflex.com": [5224], "www.herox.com": [7330], "www.havering.gov.uk": [7244], "fsinfo.fme.vutbr.cz": [17522], "websocially.com": [18087], "ampush.com": [982], "ecw.hmrc.gov.uk": [7084], "aspapps.lincolnshire.gov.uk": [9364], "www.campina.es": [2782], "developer.windows.com": [18342], "secure.palmcoastd.com": [12346], "espanol.crocs.com": [3807], "s1.mt-cdn.net": [9798], "mysubwaycard.com": [19418], "meta.mathoverflow.net": [15359], "www.calispora.org": [2752], "www.smartplanet.com": [14992], "images.vg247.com": [5416], "www.pledgie.com": [12812], "de-it.dict.cc": [4455], "museodelprado.es": [10711], "sso.datapipe.com": [4212], "www.google.com.*": [6838, 6840, 6845, 6848], "buffered.io": [2404], "epic.hpi.uni-potsdam.de": [17171], "youngcancer.scot.nhs.uk": [10913], "about.bizrate.com": [2033], "thenew10.treasury.gov": [16704], "mensaplan.de": [10260], "discogs.com": [4541], "lfgss.com": [9074], "www.movableink.com": [10628], "scribusstuff.org": [19461, 19462], "puls.uni-potsdam.de": [17333], "brennannovak.com": [2303], "www.secularhumanism.org": [14473], "upc.cz": [17000], "online2pdf.com": [11872], "www3.hants.gov.uk": [7196], "staging.data.gov": [4175], "zx.jd.com": [8423], "beacon.stage.walmart.com": [17964], "forums.docker.com": [4616], "kelcomaine.com": [8843], "*.h-da.de": [4156], "cdn.blog.hubspot.com": [7594], "*.o2online.de": [11602], "*.livefyre.com": [9509], "ssl.opera.com": [12050], "www.dnscurve.org": [4062], "customerservice.kirklees.gov.uk": [8916], "sfprep.symantec.com": [15715], "my.psoft.net": [12945], "cmsresources.windowsphone.com": [18346], "tsdd.org": [15860], "www.statuscake.com": [15436], "s7sps3.scene7.com": [14340], "edit.vas-hosting.cz": [19729], "proofpoint.com": [13154], "openf2.org": [11936], "www.hostr.co": [7543], "webinars.intercom.io": [8243], "www.kildarestreet.com": [8886], "xmpp.jp": [18524], "wholesale.tdc.dk": [15796], "www.bhw.de": [1517], "meetups.jquery.com": [8451], "www.telegeography.com": [16071], "casperogfrank.dk": [2886], "piwik.cable6.net": [2702], "nzbindex.com": [11002], "www.rogueamoeba.com": [13949], "community2.newcastle.gov.uk": [11315], "walkit.com": [19745], "liqd.net": [9442], "geni.net": [6318], "powys.moderngov.co.uk": [19405], "cancer-fi.directo.fi": [15744], "gametreelinux.com": [6428], "www.alfresco.com": [802], "alloscomp.com": [858], "www.mooddisorders.ca": [10571], "www.axantum.com": [1467], "banners.victor.com": [17670], "www.save-notes.com": [14310], "support.inventivedesigners.com": [8314], "binrev.com": [1887], "support.gyazo.com": [7035], "enwp.org": [18296], "*.english-country-cottages.co.uk": [18490], "www.rte.ie": [13470], "store.startrek.com": [15399], "www.bilddb.arch.ethz.ch": [4975], "www.informatik.uni-hamburg.de": [16951], "*.ucla.edu": [16934], "www.vpnglobe.com": [17502], "www.astro.cf.ac.uk": [2835], "piwik.gwdg.de": [7030], "broadbandbuyer.co.uk": [2351], "regjeringen.no": [13739], "atelier.gresille.org": [6945], "faq.amextravel.com": [902], "iai.inf.tu-dresden.de": [15871], "snacktools.com": [15020], "citizenfour.thecthulhu.com": [16334], "www.discoverbsd.com": [4548], "purecambogia.com": [13241], "honuser.hon.ch": [7088], "hig.se": [7067], "weike.jd.com": [8422], "www.netzclub.net": [19432], "zhaopin.jd.com": [8423], "sassets.j2global.com": [8410], "api.ftp-master.debian.org": [4275], "www.cryptobin.org": [3854], "secure.clearcenter.com": [3230], "estore.ti.com": [16152], "www.sunglasswarehouse.com": [15600], "consul.io": [3595], "fb.me": [5699], "babelzilla.org": [1591], "forgestagingapi.puppetlabs.com": [13232], "www.mbdetox.com": [9720], "i2.msdn.microsoft.com": [10364], "www.selinuxproject.org": [14099], "www.secretcon.com": [14468], "pictures.dealer.com": [4256], "infotomb.com": [8104], "www.sloanconsortium.org": [14968], "www.playwarz.com": [17975], "a2.hertzrent2buy.com.br": [7340], "www.paperspace.io": [12382], "www.delaware.gov": [15420], "sas.css.microsoft.com": [10364], "fanoe.dk": [5656], "issues.jasig.org": [8522], "www.onlineforms.edgarfiling.sec.gov": [17023], "healthyeater.com": [7266], "leahscape.com": [9207], "www.onepagerapp.com": [11856], "col.stc.s-msn.com": [14059], "sohopelesslybroken.com": [14150], "wanikani.com": [17973], "www.e-rewards.com": [4859], "*.2roads.com": [16897], "*.insft.com": [8135], "webapps.jhu.edu": [16296], "www.flipagram.com": [5924], "garlandscience.com": [8118], "www.arewecompressedyet.com": [1178], "www.bis.doc.gov": [17058], "www.vidaysalud.com": [17678], "barna.org": [1673], "sebastianwick.net": [14456], "www.thc.org": [15810], "www.segger.com": [14557], "dailyinfo.co.uk": [4124], "pskov.rt.ru": [13469], "djangoproject.com": [4590], "*.lww.com": [9438], "common.i12.de": [7656], "www.synergy-foss.org": [15736], "met1.hp.com": [7377], "www.apress.com": [1137], "eventim.fi": [9440], "www.mouseflow.com": [10624], "www.commbank.com.au": [3477], "*.gotransit.com": [6367], "nervoussystems.org": [11164], "www.freedom-to-tinker.com": [6167], "gamefly.gameflycdn.com": [6420], "www.alloresto.fr": [19328], "www.bidtellect.com": [1848], "www.safecharge247.com": [14231], "classes.osu.edu": [11760], "yunbi.com": [18750], "lurkmo.re": [9673], "pecl.php.net": [12250], "internal.psychology.illinois.edu": [17258], "ngdc.noaa.gov": [11083], "sports-images.vice.com": [17667], "www.sciencealert.com": [19574], "mysmartrend.com": [14981], "tuvdotcom.com": [3625], "slipplate.com": [14133], "itsc.umd.edu": [17263], "account.asus.com": [357], "www.jolexa.net": [8620], "freeyourandroid.org": [6155], "www.anchor.net.au": [18955], "www.careers.tvnz.co.nz": [15886], "ma3.twimg.com": [16877], "cdngw.ustream.tv": [17450], "netpivotal.*": [11204], "www.tandlakarforbundet.se": [15942], "*.mellanox.com": [10241], "hvidovrekajakklub.dk": [7636], "*.internet.bs": [8276], "cdn.whappodo.com": [18227], "fi.support.tomtom.com": [16540], "adv.reklama.wp.pl": [17921], "myconan.net": [10826], "www.inhumanity.com": [8142], "president.mit.edu": [9748], "trustee.ietf.org": [7721], "www.consortiumlibrary.org": [3591], "orderit-pmg.stanford.edu": [15383], "navigantresearch.com": [11114], "vsco.co": [17512], "lihm.net": [9347], "joomlancers.com": [8629], "ibqonline.com": [7904], "www.youtube.hk": [18709], "*.posterous.com": [12972], "assets.start.me": [15405], "healthfuze.com": [7264], "skepticink.com": [14903], "groupava1.mycdn.me": [10824], "secure.wistia.com": [18377], "www.livememe.com": [9492], "labs.bad-dragon.com": [18979], "www.gradschool.utah.edu": [17288], "www.finka.pl": [5847], "www.f3mimages.com": [5544], "itwinterclose.stanford.edu": [15383], "contact.boat.voyagegroup.com": [17859], "css2.open.ac.uk": [11986], "eagle.gmu.edu": [6544], "www.mims.com.my": [9743], "status.bytemark.co.uk": [2489], "kismetwireless.net": [8919], "gngr.info": [6759], "www.siit.tk": [3533], "demo.odoo.com": [11727], "www.poste-impresa.it": [12963], "www.tv.com": [15878], "app.wistia.com": [18377], "staysmartonline.gov.au": [15442], "cen.acs.org": [929], "mastermindpro.com": [10058], "bunkus.org": [19025], "intellnews.net": [19299], "ff.connextra.com": [3585], "louismilan.com": [9620], "shop.joomla.org": [8627], "www.nsn.com": [11462], "superbrightleds.com": [15619], "www.popgoestheweek.com": [12913], "old.metal-detector-town.com": [10305], "www.server.cpmstar.com": [2647], "cineble.com": [3144], "gigenet.com": [6656], "protect724.arcsight.com": [7378], "searchcommander.com": [14442], "sec.crain.com": [3758], "cdn.bonosrama.newsvine.com": [11348], "gdtl.engineering.osu.edu": [11760], "www.grit.io": [6958], "brinkster.com": [2334], "www.hbonow.com": [19242], "sgi.com": [14111], "labs.tageswoche.ch": [15907], "twitpic.com": [16890], "artsinitiative.osu.edu": [11760], "img02.taobaocdn.com": [15953], "www.fencecenter.com": [5747], "blog.gigaserver.cz": [14589], "www.intermundomedia.com": [8253], "www.emailpref.acs.org": [929], "es.icecat.biz": [7914], "netnanny.com": [11214], "www.emilstahl.dk": [5208], "www.renrencaopan.com": [13770], "francais.istockphoto.com": [19309], "eztv.it": [5004], "forum.419eater.com": [141], "mtmweb.biz": [10188], "poolp.org": [12899], "lacrossealerts.com": [9118], "sitecheck.sucuri.net": [15575], "www.hackaday.io": [7138], "static2.gac.edu": [6301], "qa.fastmail.com": [5688], "systemli.org": [15765], "tech.yandex.com": [18651], "goaruna.com": [6770], "vevo.com": [17481], "korelogic.com": [8986], "www.envoyer.io": [5312], "www.womensexpova.com": [18406], "shared.sx": [14671], "otse.err.ee": [5369], "h.alipayobjects.com": [817], "parkingtickets.portsmouth.gov.uk": [19508], "www.verisign.ch": [17623], "tvsupport.net": [16862], "online-emr.com": [11876], "www.informatick.com": [8122], "blogtalkradio.com": [2103], "www.avuedigitalservices.com": [1459], "www.osmglobal.com": [11673], "mast.stanford.edu": [15383], "idp.kuleuven.be": [8816], "www.agilebits.com": [727], "file.wx2.qq.com": [13285], "*.creativevirtual.com": [3785], "myaccount.edinburgh.gov.uk": [5084], "qa-advertising.paypal.com": [12467], "www.pythonanywhere.com": [13273], "webmail05.register.com": [13732], "pervasive.aau.at": [236], "communications.williams.edu": [18316], "ask.derby.ac.uk": [17309], "wcmaas.dhs.gov": [4035], "kinox.io": [19337], "samsungmobile.accu-weather.com": [465], "www.inaturalist.org": [7773], "www.cryptovpn.com": [3866], "odhistory.shopping.yahoo.co.jp": [18640], "aeis.bassetlaw.gov.uk": [1688], "library.brown.edu": [2367], "mint.com": [10432], "orgreenoptics.com": [12105], "sd.sharethis.com": [14668], "trust-center.verisign.fr": [17623], "www.viaf.org": [17487], "extranet.websitepipeline.com": [18151], "secretmaryo.org": [14467], "www.isohunt.to": [8371], "www.collectiveip.com": [3424], "www.stirling.gov.uk": [15475], "*.accc.gov.au": [1385], "*.culi.org": [2950], "www.sfsite.com": [14110], "ui2web2.apps.uillinois.edu": [17231], "hitslink.com": [7426], "ads.contextweb.com": [3616], "my.enahost.com": [5228], "www.smacktls.com": [14136], "telecom.sk": [16088], "www.proisp.no": [12288], "js.final4ever.com": [5819], "electronicinsanity.com": [5153], "services.seagate.com": [14437], "www.bike24.com": [1870], "smartplanet.com": [14992], "www.movie2k.nu": [10635], "www.wyndhamrentals.com": [18490], "*.bangordailynews.com": [1642], "riigiteataja.ee": [13889], "forum.monster-wow.com": [10566], "weblogin.umich.edu": [17266], "russki.istockphoto.com": [19309], "*.tmpwebeng.com": [15831], "2013.asiabsdcon.org": [1258], "disruption.birmingham.gov.uk": [19000], "www.mit-dem-rad-zur-arbeit.de": [10456], "www.streetlife.com": [19633], "nic.ch": [10920], "bitsharestalk.org": [2017], "docs.wto.org": [17934], "doublepimp.com": [4717], "invoca.com": [8329], "ecn.t7.tiles.virtualearth.net": [17755], "userscape.com": [17431], "sonymusic.com": [15146], "www.hongkongfp.com": [19258], "www.urbandictionary.com": [17407], "lu.taobao.com": [15952], "www.colorlines.com": [3445], "www.mysql.com": [10780], "wagner.edu": [17947], "studios.streamray.com": [15454], "heart.org": [7275], "*.strugee.net": [15532], "www.refog.com": [13723], "googlesource.com": [6844], "qtastatic.com": [13318], "*.vanillaforums.com": [17558], "addison.com.hk": [576], "www.drugpolicy.org": [4775], "projet-coclico.org": [3343], "cms.citrixonline.com": [3179], "www.wolfson.cam.ac.uk": [2762, 17243], "video.yandex.com": [18651], "sf.net": [15174], "canvaslms.com": [2814], "pollendiary.com": [12882], "www.blognone.com": [2111], "blogs.plos.org": [12271, 13206], "thoughtstreams.io": [16385], "www.dnssec-tools.org": [4064], "www.gnunet.org": [6360], "www.sitepoint.com": [14870], "www.publicidees.com": [13204], "withgoogle.com": [18380], "www.mxguarddog.com": [9811], "home-bap.navigator.web.de": [18050], "www.tppnocertification.org": [15852], "*.shopco.com": [14715], "wms.assoc-amazon.com": [1288], "lighttpd.net": [9346], "www.wto.org": [17934], "80.93.17.6": [4512], "api.ashampoo.com": [1250], "blog.pinboard.in": [12677], "*.berlios.de": [1789], "skimlinks.me": [14910], "www.jadi.net": [8491], "read.timesprintingdigital.com": [16462], "secure.game.se": [6303], "www.bmdw.org": [1529], "getfoxyproxy.org": [6591], "alumni.princeton.edu": [13064], "zdnet.com.au": [18757], "www.impulsedriven.com": [8022], "status.chatlio.com": [19053], "3dvisionlive.com": [125], "saga.co.uk": [14237], "static1.theiconic.com.au": [16292], "*.porn-w.org": [12925], "lumo.me": [9667], "vorteile.gmx.net": [6350], "status.modern.ie": [10519], "preview.msn.com": [9796], "yahooapis.com": [18639], "aktiiviraha.fi": [7186], "hrpo.wustl.edu": [17993], "corbycam.firmstep.com": [19182], "*.shkb.ch": [19333], "userium.com": [17435], "transit.land": [16670], "gmail.com": [6843], "thepublicindex.org": [16206], "www.aldi.com.au": [299], "gondor.io": [6824], "*.tu-chemnitz.de": [15869], "walgreens.com": [17958], "sheffield.indymedia.org.uk": [8084], "cbs.com": [2526], "www.ietf.org": [7721], "www.disc-soft.com": [4540], "cash.square.com": [15329], "www.gearsourcecdn.com": [6484], "www.larrysalibra.com": [9158], "www.damballa.com": [4128], "www.pdadb.net": [12499], "fishwrapper.com": [5884, 5885], "barbican.org.uk": [1661], "kinklink.me": [8907], "citservices.med.wustl.edu": [17993], "finance.car.com": [2826], "*.this-download-would-be-faster-with-a-premium-account-at-good.net": [6826], "magentocommerce.com": [9851], "ntualumni.org.uk": [10972], "img.s-msn.com": [14059], "nj02all02.baidupcs.com": [1620], "webresource.its.calpoly.edu": [2747], "forms.aweber.com": [378], "datasheets.maximintegrated.com": [10096], "service.t-mobile.nl": [15771], "se.itunes.apple.com": [1120], "internationalman.com": [8262], "go.uwm.edu": [17294], "www.li.admin.ch": [19648], "lists.gforge.inria.fr": [8159], "community.vodafone.co.nz": [17812], "netnod.se": [11245], "ping.dozuki.com": [4732], "givingday.cornell.edu": [3676], "www.jeth.tk": [3533], "nadir.org": [11008], "epars.wustl.edu": [17993], "openbsdeurope.com": [11920], "*.posportal.com": [12281], "ezaccessory.com": [5535], "support.web-hosting.com": [18044], "ghowen.me": [6633], "i.hh.ru": [7060], "cadastro.uol.com.br": [16998], "fordele.tdc.dk": [15796], "tz.de": [15895], "wiki.vuze.com": [17879], "contribute.jquery.org": [8450], "loggn.de": [9555], "*.kmart.com": [8937], "bwin.com": [7733], "www.prospecteye.com": [13163], "flex.htwk-leipzig.de": [7114], "hvosting.ua": [7637], "7springs.com": [191], "www.hackable-devices.org": [7137], "lists.ubuntu-eu.org": [17094], "lists.parabola.nu": [12384], "cdn.coderwall.com": [3377], "do.de": [4647], "www.envoydirect.com": [5310], "dl.google.com": [6834], "kcc.webhostone.de": [18121], "store.economist.com": [5060], "www.adultshopping.com": [644], "ems.southglos.gov.uk": [15189], "wepay.com": [18022], "www.popular.com.tw": [12919], "demo.picnichealth.com": [12662], "www.newmoon.com": [11290], "*.3ds.com": [4167], "images.yandex.com.tr": [18649], "ccccloud.com": [2539], "mylevel3.net": [10839], "esupport.trendmicro.com": [16717], "sso.nikhef.nl": [11402], "www.ht.vc": [7587], "www-structures.ucsd.edu": [16939], "*.foxydeal.com": [6088], "benedikt-bitterli.me": [1775], "www.brendaneich.com": [2301], "viagem.catracalivre.com.br": [2908], "train2web.wustl.edu": [17993], "*.ccavenue.com": [2533], "piwik.sysmocom.de": [15756], "iufoundation.iu.edu": [8064], "www.video.yandex.kz": [18652], "graphics8.nytimes.com": [11000], "www.openhpi.de": [11940], "hcc.web.cern.ch": [2575], "services.eoportal.org": [5313], "crowdfactory.com": [3818], "www.redwoodsinyosemite.com": [13703], "ploum.net": [12821], "era.int": [4948], "www.huntingbears.nl": [7623], "cmscdn.staticcache.org": [15431], "eecs.mit.edu": [9749], "account.xapo.com": [18541], "oam.tdc.dk": [15796], "app.tinyletter.com": [16482], "2ndvote.com": [95], "ticketsage.com": [15818], "lufthansa.com": [9655], "www.datacoup.com": [4179], "support.octoshape.com": [11718], "www.litecointalk.org": [9464], "es.verbling.com": [17615], "www.soundviz.com": [15158], "*.jamfsoftware.com": [8412], "media2.wnyc.org": [17916], "www.aldi.dk": [299], "samsung.net": [14271], "vdv.de": [17478], "daneszajutri.hofer.si": [299], "download.tizen.org": [16506], "feralinteractive.com": [5753], "www.digitalocean.com": [4495], "*.sheffield.ac.uk": [17339], "psychologicalscience.org": [1296], "*.verizon.net": [17626], "rentler.com": [13776], "www.trustedsec.com": [16789], "my.vestacp.com": [17653], "fixingtao.com": [5899], "shop.evernote.com": [5450], "www.frootvpn.com": [6228], "miniand.com": [10421], "tbib.org": [15983], "www.telekom.de": [4410], "www.cio.illinois.edu": [17258], "www.energylinx.co.uk": [19159], "zeushash.com": [18852], "static-dev.ycharts.com": [18613], "wired.com": [18363], "secure.creocommunico.com": [7501], "statics2.beauteprivee.fr": [1739], "www.evga.com.au": [4986], "www.tenon.com": [16112], "hostingmanager.secureserver.net": [14511], "jwplayer.com": [9589], "hjv.kursuslogin.dk": [7436], "touch.forum.deti.mail.ru": [9874], "cme.stanford.edu": [15382], "engineeringforchange.org": [5267], "www.cablesurf.de": [2705], "commando.io": [3475], "www.zg.ch": [19648], "adminnationalcareersservice.direct.gov.uk": [4531], "*.datacamp.com": [4176], "delivery.o.switchadhub.com": [15701], "*.widgetbox.com": [18282], "thefire.org": [16277], "www.green-wood.com": [6916], "www.gourl.io": [6790], "cloud.gmo.jp": [6345], "www.monthlyreview.org": [10568], "ma2jic.osu.edu": [11760], "tante.cc": [15949], "maps.bradford.gov.uk": [2264], "iform.zg.ch": [19648], "www.lib.vutbr.cz": [17522], "bookshop.theguardian.com": [16288], "git.openssl.org": [11970], "deno.dict.cc": [4455], "www.sportisimo.de": [14158], "lambeth.greenparty.org.uk": [6925], "fishelp.wustl.edu": [17993], "app.formassembly.com": [6040], "media.quantopian.com": [13340], "m.google.*": [6837], "just-eat.co.uk": [19328], "www.redbullmobile.at": [13670], "www.cimb.com": [2606], "mujbiz.cz": [10690], "*.strongswan.org": [19634], "getcloak.com": [6567], "www.engin.cf.ac.uk": [2835], "cs.joensuu.fi": [17250], "static.hugedomains.com": [7601], "i4.c.dk": [2498], "mixer.cz": [10466], "dan.me.uk": [4131], "www.plannedgiving.com": [12773], "downloads.commotionwireless.net": [3496], "de.pcisecuritystandards.org": [12224], "pod.orkz.net": [12111], "tripwell.com": [16748], "www.supervalu.com": [14196], "lists.nuug.no": [10980], "tonybianco.com.au": [16547], "myphotos4.virginmedia.com": [17737], "www.neo900.org": [11146], "torrent.tm": [16577], "www.pure-privacy.org": [13237], "projectplace.com": [13144], "enjoy.com": [5278], "habrahabr.ru": [7129], "savage2.com": [14062], "soobest.com": [15152], "assets.filemobile.com": [5800], "*.visistat.com": [17768], "www-mpy.desy.de": [4399], "forum.hackinthebox.org": [7154], "groups.io": [6980], "community.1und1.de": [68], "canyouseeme.org": [17790], "bitcointalk.org": [1959], "statefarm.com": [15418], "chalmers.se": [2987], "*.mozillalabs.com": [10660], "miranda.hemscott.com": [8320], "www.canon.com.au": [19037], "photoblab.com": [12639], "tenable.com": [16109], "browsermob.com": [2375], "www.optimalpayments.com": [12068], "www.meetic.com": [10216], "www.courtneyluv.com": [2132], "anonine.com": [1046], "secure.clickability.com": [4827], "catn.com": [2893], "www.jethrocarr.com": [8560], "workaround.org": [18440], "www.mankier.com": [9959], "lists.linuxcontainers.org": [9420], "x.annihil.us": [1030], "forum.voidlinux.eu": [19741], "www.fullstory.com": [6252], "www.q7.com": [13277], "www.lotto.de": [9614], "*.giving.buffalostate.edu": [2401], "www.pixelexit.com": [12737], "lokaty-bankowe.money.pl": [10546, 10547], "help-assets.soundcloud.com": [15161], "www.labcorpsolutions.com": [9123], "*.rigzone.com": [13888], "pcvlab.ceegs.ohio-state.edu": [11761], "loanliner.com": [9532], "myresumeagent.com": [10779], "product.getsatisfaction.com": [6617], "go.idmnet.bbelements.com": [1713], "nagano.cz": [11009], "fr.canon.ch": [2809], "polycat.lib.calpoly.edu": [2728], "login.sucuri.net": [15575], "www.nets.ec": [11205], "ekomi.co.*": [4921], "embed.spotify.com": [15296], "bigstockphoto.com": [1867], "c3pb.net": [2499], "bluecoat.com": [2130], "www.blackznc.net": [2043], "aviationweather.gov": [18972], "www.osha.gov": [11670], "cm.ipinyou.com": [7803], "www.postfinance.ch": [12949], "api-v1-stage.websitealive.com": [18149], "c-ware.de": [2497], "slovari.yandex.kz": [18652], "www.greenpeace-magazin.de": [6935], "ir.i.wp.pl": [17921], "createspace.com": [3772], "avoinministerio.fi": [18974], "www.etretouchy.com": [5394], "www.wiiings.com": [18288], "wunderlist.com": [18483], "vbstatic.co": [17470], "wt.taobao.com": [15952], "www.woz.ch": [18467], "www3.cisco.com": [3162], "www.zmanda.com": [18880], "*.mrporter.com": [9787], "app.cactuscompletecommerce.com": [2710], "shodan.io": [14712], "image2.bilio.com": [1875], "*.portforward.com": [12931], "lounge.zohocrm.com": [18882], "s3.rationalcdn.com": [19536], "people.maths.ox.ac.uk": [17271], "e-iper.stanford.edu": [15383], "images.partner.windowsphone.com": [18346], "coverstand.com": [3727], "tidalhifi.com": [16432], "*.hosted.exlibrisgroup.com": [5472], "freewebsitetemplates.com": [19197], "totalchoicehosting.com": [16601], "mediapost.com": [10162], "p.sf.net": [15174], "www.fastserv.com": [5682], "www.shellfish.io": [14695], "s.po.st": [12834], "dmp.springserve.com": [15312], "ssltor.bvg.de": [1582], "beta.southlanarkshire.gov.uk": [15190], "docs.jivesoftware.com": [8585], "www.uplinklabs.net": [17391], "*.webassets.scea.com": [15144], "www.capify.org": [2817], "www.europeancensorship.eu": [5427], "pairlite.com": [12336], "disabilitystudies.osu.edu": [11760], "schooltoprison.org": [14365], "teach.udemy.com": [17111], "www.torrents-time.com": [19689], "core.telegram.org": [16080], "dietmardreier.de": [19119], "hornbach.ch": [7496], "bayfiles.com": [1698], "bonding.de": [2195], "login.szn.cz": [14648], "login.opendns.com": [11932], "is.gd": [19306], "techpowerup.com": [16049], "static3.flattr.net": [5910], "forum.hornbach.at": [7496], "medapps.wusm.wustl.edu": [17993], "futureboy.us": [6284], "www.maymay.net": [10105], "vehiclevisuals.com": [17591], "kyberia.sk": [9050], "plantappstore.com": [12778, 12779], "*.re.is": [13411], "sesame.syncplicity.com": [15730], "owasp.org": [11691], "assets.kachingle.com": [8764], "unizar.es": [17356], "eecm.cr.yp.to": [3748], "*.ru.nl": [13510], "ad4.netshelter.net": [11208], "e2.boxcdn.net": [2253], "omnitruck.chef.io": [3057], "pamela.biz": [12352], "forum.bitcoin.org": [1930], "www.quantixtickets1.com": [13339], "app.littlehotelier.com": [9474], "bendigobank.com.au": [1774], "www.tripadvisor.co.nz": [19697], "detr.dict.cc": [4455], "itsanhonour.gov.au": [8394], "www.ai-radio.org": [288], "cap.csail.mit.edu": [9749], "*.marchforbabies.org": [9983], "info.peertransfer.com": [12518], "coxdigitalsolutions.com": [3738], "www.cryptdown.eu": [3843], "www.youtube.com.es": [18709], "issues.shibboleth.net": [14702], "usmile.at": [17446], "www.little.my": [9475], "*.wikidot.com": [18294], "*.walk.sc": [18191], "found.cern.ch": [2575], "www.landalskilife.com": [18489], "www.myprojects.ncl.ac.uk": [10884], "www.hiveage.com": [7428], "www.gimpfoo.de": [6334], "vpsadmin.vpsfree.cz": [19743], "*.cortera.com": [3695], "blog.compose.io": [3526], "discounts.aarp.org": [234], "*.hadrons.org": [7161], "www-cache3.extensis.com": [5523], "employment.jjc.edu": [8440], "www.livestream.com": [9514], "rad1o.badge.events.ccc.de": [2538], "assets0.github.com": [6680], "planete.inrialpes.fr": [8160], "*.innovateuk.org": [8152], "*.upc.edu": [12895], "www.v6ak.com": [17465], "sea.hivos.org": [7431], "public.dhe.ibm.com": [7675], "www.publons.com": [13219], "cdn.mypypeline.com": [4500], "mytritonlink.ucsd.edu": [16939], "www.tricue.com": [16721], "realty.mail.ru": [9874], "ak.c.ooyala.com": [11900], "jobs.adweek.com": [672], "www.boots.ie": [2214], "fightcopyrighttrolls.com": [18428], "recruiters.newscientist.com": [11298], "huuto.net": [19267], "redirect.skimlinks.com": [14909], "hivelocity.net": [7429], "cloud.cloudfoundry.org": [3299], "free-tv-video-online.me": [6119], "turktk.com": [16839], "m3.idg.se": [7705], "egov.scambs.gov.uk": [19566], "*.frooition.com": [6227], "www.cdrs.columbia.edu": [3448], "strangeworlds.co.uk": [15504], "www.goexplore.net": [6777], "darkmatter.cyberguerrilla.org": [3961], "card.wustl.edu": [17993], "downloadcenter.intel.com": [8209], "secure.monash.edu": [10541], "mequoda.com": [10268], "rightscale.com": [13884], "www.hauke-m.de": [7239], "foodsharing.de": [19188], "wiki.debian.org": [4275], "4gwc-kbhkort.kk.dk": [8730], "bid.openx.net": [11993], "www.eforms.rbkc.gov.uk": [19538], "opennet.ru": [11961], "iana.org": [7667], "www.isoc24.com": [7830], "www.livenation.*": [9481], "envirocall.newcastle.gov.uk": [11315], "intel.com": [8209], "bitvps.com": [1960], "*.brainyquote.com": [2275], "*.bigmir.net": [1865], "www.btp.police.uk": [2383], "cyberpowerpc.com": [19098], "www.ionaudio.com": [7777], "pidg.in": [12671], "deeo.dict.cc": [4455], "pizza.fr": [12748], "info.local.ch": [9536], "www.cryptostocks.com": [3889], "element.yandex.com": [18651], "www.xamarin.com": [18540], "*.opt.fimserve.com": [5817], "www.ispgids.com": [7832], "www.tdc.dk": [15796], "www.dogsbodytechnology.com": [4635], "mycoresite.coresite.com": [3666], "remote.hslu.ch": [7583], "www.sproutinc.com": [15319], "registration.hinxton.wellcome.ac.uk": [19752], "smartronix.com": [15001], "www.regiobankadviseurs.nl": [13730], "search.americanexpress.com": [935], "facebook.it": [5623], "subscriptions.nzherald.co.nz": [11314], "facebook.is": [5623], "trillian.im": [16735], "www.officeworks.com.au": [11753], "i4.services.social.s-msft.com": [14058], "store.norton.com": [11505], "support.appsflyer.com": [1131], "www.easypress.ca": [5030], "lagen.nu": [9131], "origin.pubmatic.com": [13194], "localize.drupal.org": [4780], "knowledge.servicenow.com": [14622], "hraunfoss.fcc.gov": [5709], "*.zulius.com": [18922], "downloads.ubnt.com": [17084], "www.trello.com": [16710], "blog.wearewizards.io": [18027], "statcounter.com": [15417], "www.blackarrowsoftware.com": [19005], "*.gkb.ch": [19333], "smg.axosoft.com": [1477], "www.citibank.com": [3171], "www.class-central.com": [3216], "campbx.com": [2775], "www.gdata.fr": [6293], "www.mrsmcnastys.com": [10676], "www.register.ie": [4513], "login.digicert.com": [4473], "traveldoctor.com.au": [16691], "fhserve.com": [5767], "dragonair.com": [4740], "foundation.walmart.com": [17964], "oascentral.globalpost.com": [75], "classifieds.nncogannett.com": [6453], "filialen.migros.ch": [19399], "pads.ci.uchicago.edu": [17246], "42floors.com": [143], "hotmail.co.jp": [7557], "support.allcrypt.com": [829], "login.truste.com": [15856], "images.somethingawful.com": [15130], "psychiatry.stanford.edu": [15383], "media-curse.cursecdn.com": [3934], "hilfe.webgo24.de": [18065], "api-secure.solvemedia.com": [15126], "api.choicestream.com": [3096], "www.bitex.la": [1993], "postecert.poste.it": [12965], "fiesta.gamigo.com": [6445], "appdb.winehq.org": [18352], "piao.163.com": [34], "websharks-inc.com": [18084], "*.jumpingjack.com": [8675], "images.modelviewculture.com": [10518], "service1.internet2.edu": [8279], "ibphoenix.com": [7676], "www.voys.nl": [17860], "mail.franziskawellner.de": [6105], "prosystemfx.com": [13164], "www.enovance.com": [19138], "delivery.f.switchadhub.com": [15701], "www.magic.fr": [9854], "curo.co.za": [3932], "www.realone.com": [13622], "shop.acehotel.com": [470], "www.dwheeler.com": [4092], "mashery.com": [10046], "essentials.guardianoffers.co.uk": [7003], "www.ncdc.noaa.gov": [11083], "havelockinvestments.com": [7243], "hints.macworld.com": [9824], "lsy-www.swiss.com": [15695], "troveread.com": [16763], "dartlang.org": [4157], "www.nileshgr.com": [11406], "versacart.com": [17633], "*.ihg.com": [8230], "www.au.org": [949], "guide-images.makeprojects.org": [9904], "www.soup.io": [15166], "www.usrjoy.com": [17448], "www.trustsign.com.br": [16783], "ii.nlm.nih.gov": [11052], "www.gi.de": [6558], "www.dms-sweden.com": [4047], "careers.tableau.com": [15897], "bmb.htwk-leipzig.de": [7114], "www.boca.gov.tw": [2165], "*.collegiatelink.net": [3431], "people.nasa.gov": [10869], "teresa.cce.com": [2871], "hackage.haskell.org": [7229], "firemail.de": [5863], "wcms-prod-web-4.ucsc.edu": [17305], "secure.techxpress.net": [16022], "support.arpnetworks.com": [4931], "ccp.cloudaccess.net": [3278], "img.gmo.jp": [6345], "northnorfolk.greenparty.org.uk": [6925], "register.bg": [13731], "ir-na.amazon-adsystem.com": [909], "www.encase.com": [7006], "inapub.co.uk": [8036], "serveriai.lt": [14616], "laravel-news.com": [9156], "president.osu.edu": [11760], "library.wustl.edu": [17993], "download.tvnz.co.nz": [15886], "www.fnacspectacles.com": [5969], "discuss.vultr.com": [17873], "www.cve.mitre.org": [10459], "*.jugger.ru": [8666], "bank.vutbr.cz": [17522], "dagensbedste-dbapp.netdna-ssl.com": [4108], "hsivonen.fi": [7120], "tid.al": [16430], "et.nytimes.com": [11000], "*.silkn.com": [14793], "forums.satellitecyprus.com": [3988], "www.reportingproject.net": [13785], "*.dmstatic.com": [4105], "www.imperial.nhs.uk": [10913], "www.angelikafilmcenter.com": [1015], "all4xs.net": [826], "wiki.filezilla-project.org": [5796], "moneyadviceservice.org.uk": [10548], "static.youcaring.com": [18704], "bbs.pacbsd.org": [12307], "yaca.yandex.kz": [18652], "*.asnbank.nl": [352], "schoolpro.axosoft.com": [1477], "www.comsigntrust.com": [3455], "schooladmissions.wirral.gov.uk": [18371], "fantoniogargallo.unizar.es": [17356], "*.forocoches.com": [6048], "www.pacsec.jp": [12308], "isecpartners.com": [7825], "microfocus.com": [10348], "www.newint.org": [11297], "germantv.net": [6555], "www.roffey.org": [13947], "www.worldforpets.com.au": [18460], "www.pacs.wustl.edu": [17993], "www.dein.dk": [4319], "*.namecentr.al": [11018], "hotlineplus.mutualofamerica.com": [10733], "damballa.com": [4128], "support.allizom.org": [856], "ads.integral-marketing.com": [8202], "avis.com": [1451], "www.detectify.com": [4402], "*.pbwiki.com": [12214], "adk2.com": [598], "system.opendns.com": [11932], "markeedragon.com": [10007], "eservices.solihull.gov.uk": [15122], "session.snelis.com": [15033], "placehold.it": [12754], "www.we-energies.com": [18016], "borrowsmart.afford.com": [705], "ovidsp.tx.ovid.com": [12175], "www.effectivemeasure.net": [5109], "*.boots.no": [2215], "www.giftedandtalented.com": [6642], "www.exratione.com": [5473], "mshare.net": [10414], "anatoomikum.ut.ee": [17069], "*.ciuvo.com": [3199], "chuvashiya.rt.ru": [13469], "www.handmadekultur.de": [7189], "hillingdon.gov.uk": [7410], "www.acronymfinder.com": [484], "groupme.com": [6970], "*.mumzworld.com": [10703], "s.tapirex.com": [12351], "entp.hud.gov": [17018], "lirias.kuleuven.be": [8816], "hanty.rt.ru": [13469], "dax-files.comscore.com": [3453], "thejns.org": [8643], "smetrics.aem.playstation.com": [12795], "*.carleton.ca": [2852], "cdn.anonfiles.com": [1041], "subscribe.courierpostonline.com": [3715], "cint.com": [3149], "theeroticreview.com": [16222], "www.autoadmanager.com": [1420], "atomicobject.com": [1327], "alt.coxnewsweb.com": [3740], "photo.tinhte.vn": [16474], "hivtest.cdc.gov": [19046], "t.album.youmix.co.uk": [18715], "www.givingprograms.com": [6691], "email.freenet.de": [6180], "myradiocreative.com": [10815], "*.propublica.org": [13111], "youtube.com.au": [18709], "www.rvm.io": [13482], "cacert.net": [2520], "a.yimg.jp": [18685], "server.adformdsp.net": [585], "bi.adview.pl": [666], "data.nasa.gov": [10869], "www.beusergroup.co.uk": [16075], "directa.cat": [4528], "www.fruct.org": [5595], "flitto.com": [5929], "*.moovweb.net": [10582], "rsync.videolan.org": [17688], "images.shrinktheweb.com": [14746], "secure.goldmann.pl": [6816], "ml01.ispgateway.de": [8376], "ticket.yandex.com": [18651], "assets.libsyn.com": [9321], "eresearch.umich.edu": [17266], "easyprint.idoxgroup.com": [19281], "kids.rts.ch": [19621], "www.projects.dm.id.lv": [4043], "video.golem.de": [6819], "www.newschallenge.org": [11334], "ssl-certificate-center.verisign.ch": [17623], "libs.a2zinc.net": [223], "portal.rz.htw-berlin.de": [7112], "elq.to": [5181], "*.whatbox.ca": [18232], "gwent.police.uk": [7033], "www.justsecurity.org": [8695], "getsafeonline.org": [6602], "affair-guide.com": [697, 698], "lp.outbrain.com": [12150], "*.hackint.org": [19234], "www.symplicity.com": [15721], "git.cyrus.foundation": [3989], "agenda.infn.it": [7766], "ayyildiz.de": [1478], "www.godownloadsongs.com": [15203], "*.t-online.de": [15774], "community.nationalarchives.gov.uk": [11065], "www.onlinesbi.com": [11873], "www.thoughtbot.com": [16387], "www.wimdu.co.uk": [18322], "blog.geocaching.com": [6541], "blog.jolexa.net": [8621], "moatads.com": [10485], "www.creare.co.uk": [3769], "docs.buttercoin.com": [2463], "darkroom.taskforceonshalegas.uk": [15969], "*.nextstudioapps.com": [9129], "temai.etao.com": [4973], "freegeoip.net": [6175], "funstockdigital.co.uk": [6268], "int-mas.wiiings.com": [18288], "literatureandlatte.com": [9466], "pixelx.de": [12736], "www.linearcollider.org": [9369], "i.cdnpark.com": [2561], "find.my.t-mobile.com": [15772], "cinemacon.com": [3146], "krystal.info": [19342], "dev.enaza.ru": [5230], "*.kenai.com": [8845], "www.harita.yandex.com.tr": [18649], "romdashboard.com": [13447], "motigo.com": [10612], "static.brandfolder.com": [2283], "discussions.tenable.com": [16109], "nhsdirect.nhs.uk": [10911], "subversion.cru.fr": [3829], "jp.norton.com": [11505], "www.readrobreid.com": [13609], "give.everydayhero.com": [5454], "lists.crux.nu": [3836], "www.weneedtoknow.info": [18029], "p1-u.itunes.apple.com": [1120], "webassetsj.scea.com": [14089], "campusjob.com": [2784], "voxer.com": [17854], "www.operationfabulous.com": [12052], "piware.de": [10034], "glamorousuk.com": [6698], "*.microsoftstoreassets.com": [10368], "tog.ie": [15844], "ondemand.webtrends.com": [18171], "www.hornbach.at": [7496], "t2rknowledge.bt.co.uk": [1548], "www.wiki.hidekisaito.com": [7393], "wwwdev.lbl.gov": [9065], "www.netpivotal.eu": [11204], "coveredca.org": [3731], "www.konami.com": [8974], "11footballclub.com": [21], "secure.touchnet.com": [16609], "www.racf.bnl.gov": [19009], "mincommsy.uni-hamburg.de": [9744], "*.vtourist.com": [17751], "blog.fastly.com": [5687], "secure.vcab.com": [17473], "demo.sipgate.io": [14856], "*.http.cdn.softlayer.net": [15094], "centos.org": [2942], "program-think.blogspot.*": [2113], "www.frozen-yogurt-franchise.org": [6232], "community.understood.org": [17159], "www.inxpo.com": [8334], "www.pingtest.net": [11894], "pureloto.com": [13244], "rapidgator.net": [13560], "*.visaliatimesdelta.com": [17767], "www.consumidor.ftc.gov": [5720], "consumer.ftc.gov": [5720], "*.powerspeaking.com": [12996], "*.nextag.fr": [11363], "www.underground-gamer.com": [17156], "www.sbb.ch": [15693], "asset-6.soupcdn.com": [15167], "www.geeklan.co.uk": [6495], "webtv.netcologne.de": [11188], "komoona.com": [8968], "btcturk.com": [1564], "safecount.net": [14232], "sendfiles.educ.cam.ac.uk": [17243], "www.mises.org": [10453], "www.cloudup.com": [3316], "truthmarket.com": [16801], "java.twistedmatrix.com": [16885], "www.knappschaft.de": [8940], "www.lowes.com": [9636], "d.stavrovski.net": [15439], "www.developermail.io": [4420], "opac.library.usyd.edu.au": [19723], "cendio.com": [2934], "whois.domaintools.com": [4660], "licensebuttons.net": [9324], "c.compete.com": [3519], "banym.de": [1659], "es.godaddy.com": [6773], "www.victoriassecretcanada.ca": [17673], "guides.thenextweb.com": [16302], "*.what.cd": [18229], "spamicity.info": [15215], "wsio-sandbox.buttercoin.com": [2463], "unglue.it": [17163], "roku.com": [13954], "solutions.symantec.com": [15715], "www.kkh.de": [8732], "www.sweetandsourstudio.com": [15683], "*.sitemeter.com": [14882], "software.intel.com": [8209], "www.uspsoig.gov": [17027], "arch-stuff.org": [19461, 19462], "help-nl-eu.nike.com": [11401], "proxy.video.sky.com": [14924], "exmail.qq.com": [13285], "www.ifixit.com": [7727], "svn.alfresco.com": [802], "yahoo.yieldmanager.com": [13881], "www.deater.net": [4265], "*.c-col.com": [3519], "snipt.net": [15038], "www.submissiontechnology.co.uk": [15563], "eindhoven.nl": [5127], "wellbid.com": [18192], "www4-static1.gog.com": [6365], "www.thehut.com": [16223], "pcrdist.com": [19484], "insight.sensiolabs.com": [14586], "www.deri.ie": [11064], "openit.de": [11945], "atom.iop.org": [8195], "www4.uwm.edu": [17294], "*.sprint.com": [15314], "www.grad.washington.edu": [17291], "www.alumni.cam.ac.uk": [17243], "www.hkk.de": [7078], "*.webhostingpad.com": [18104], "jobs.bathnes.gov.uk": [1689], "api.random.org": [13545], "securemedia.newjobs.com": [11318], "www.ageofmine.com": [722], "pixel.adblade.com": [560], "torreycommerce.com": [16593], "barmer-gek.de": [1672], "knowledge.verisign.ch": [17623], "www.controllermax.com": [3622, 3623], "www.coloman.nl": [3438], "werstreamt.es": [18203], "www.engineyard.com": [5265], "my.hivelocity.net": [7429], "tsbmag.com": [15859], "freesoundeffects.com": [6132], "init.unizar.es": [17356], "faster.symantec.com": [15715], "fdic.gov": [5710], "mirg.engineering.osu.edu": [11760], "temp-mail.ru": [16105], "www.vonage.ca": [17838], "www.daily.co.uk": [4113], "youthorchestra.stanford.edu": [15383], "www.freifunk-goettingen.de": [6190], "www.affiliate-b.com": [701], "www.lindy.com": [9367], "help.grooveshark.com": [14248], "oblivia.vc": [11704], "fellowship.fsfe.org": [5601], "*.routledgeweb.com": [8118], "wiki.bitnami.com": [2011], "www.trafficmaxx.de": [16655], "emergency.cites.illinois.edu": [17258], "new.interkassa.com": [8251], "salestraining.apple.com": [1120], "trailofbits.com": [16656], "admissions.warrington.gov.uk": [17984], "desimg.zamimg.com": [18782], "tech.coursera.org": [3719], "metrika.yandex.by": [18648], "*.vespermarine.co.uk": [17651], "dealspwn.com": [7549], "uvo.gov.sk": [14972], "www.economy.com": [5062], "search.maven.org": [10088], "anonyproz.com": [1081], "www.ceasefiremagazine.co.uk": [2925], "*.skrill.com": [14919], "*.bundespolizei.de": [2432], "www.vip.vetbiz.gov": [17019], "www.hofer.si": [299], "nasadrones.thecthulhu.com": [16334], "sc.wustl.edu": [17993], "www.zopa.com": [18907], "www.owlfolio.org": [12179], "zpchips.com": [18765], "www.shiftboard.com": [14704], "*.jorsika.com": [2776], "www.va.gov": [17019], "*.informit.com": [8117], "ccrma.stanford.edu": [15383], "sysconfig.org.uk": [15752], "www.lifeline.org.au": [9332], "utopianet.org": [17457], "perfectmoney.is": [12562], "www.v2c.lrz.de": [9238], "www.neustarlocaleze.biz": [11283], "captcha.aol.com": [321], "epixmedia.co.uk": [5323], "shop.geocaching.com": [6542], "signin.dell.com": [4335], "directv2.ilovefreegle.org": [7892], "m.static.newsvine.com": [11348], "netbank.de": [11216], "eval.fi.ncsu.edu": [11492], "kimberly-clark.com": [8889], "www.tpd.sk": [16622], "jessfraz.com": [8555], "bing.com": [1895], "mycliplister.com": [10825], "konto.money.pl": [10547], "*.photoshelter.com": [12642], "neweb.ucsd.edu": [16939], "nutritiondata.self.com": [11585], "ecaf.peterborough.gov.uk": [12594], "iic.cisecurity.org": [2617], "runabove.com": [14034], "staging-our.intel.com": [8209], "www.thephone.coop": [16347], "copy.me": [4978], "genius-upload.itunes.apple.com": [1120], "www.bruno.postle.net": [2378], "pycon.sg": [13264], "xjzt.jd.com": [8423], "pressable.com": [13036], "www.buchhaus.ch": [19023], "kde.org": [8718], "shpock.com": [14745], "recode.net": [13647], "prospect.rsc.org": [13996], "www.shadertoy.com": [14653], "enfuseconf.com": [7006], "www.globusvoyages.ch": [19262], "*.imageshack.us": [7981], "noordwijkerhout.nl": [11132], "www.mer.io": [10270], "clinkle.com": [3269], "fullcontact.com": [6250], "www.isyvmon.com": [8383], "secure.lenos.com": [9250], "www.haritalar.yandex.com.tr": [18649], "neustar.com": [11282], "zeitungsarchiv.nzz.ch": [19450], "www.mathias-kettner.de": [10068], "amblog.ashleymadison.com": [1255], "cdn.comparitech.com": [3514], "*.meilenrechner.de": [10394], "cloud.disk42.com": [4561], "analytics.turn.com": [16840], "firm24.com": [5864], "www.bigcartel.com": [1850], "www.siemens.co.*": [14770], "cdn9.sure-assist.com": [15644], "h2o.examp1e.net": [5481], "macfound.fluxx.io": [5959], "autotrader.com": [1419], "moh.nhs.uk": [10913], "staging.ycharts.com": [18613], "registrationcenter.intel.com": [8209], "collegehumor.com": [3428], "www.systemintegra.ru": [15759], "code.downthemall.net": [4722], "www.admin.ox.ac.uk": [17271], "alienvault.com": [812], "www.emailcenter.acs.org": [929], "*.us1.cloud.oracle.com": [12082], "bootstrap.debian.net": [4273], "softwareintegrity.coverity.com": [3734], "assistance.ouvaton.org": [12155], "secure.gacollege411.org": [6304], "www.theses.cz": [16350], "www.htaccessbook.com": [7588], "git.linaro.org": [9361], "www.bayleaks.com": [1699], "www.engelsystem.de": [5264], "www.deutsch.peerius.com": [12522], "www.goo.gl": [6844], "www.gloucestershire.gov.uk": [6749], "gorod.yandex.kz": [18652], "arrisi.com": [1215], "www.resistsurveillance.org": [13808], "www.exmo.com": [5498], "secure.38degrees.org.uk": [120], "gogoyoko.com": [6809], "chppe.osu.edu": [11760], "ox-d.pubgears.com": [13193], "boinc.berkeley.edu": [17240], "open.hpi.de": [7090], "cduniverse.com": [2568], "na.llnet.bioware.cdn.ea.com": [1903], "www.guaranibitcoin.com": [6997], "memrise.com": [10254], "sseeventsgroup.com": [14173], "www.cbp.net.br": [2524], "gitorious.org": [6682], "www.w.th-mittelhessen.de": [15809], "learnmyway.com": [9211], "feeder.livingsocial.com": [9517], "linkbox.argonit.cz": [1183], "vircurex.com": [17733], "diewildenkerle.spiel.tivi.de": [19800], "docs.nubits.com": [11561], "*.min.us": [10436], "www.dollaraday.co": [4643], "www.exist.de": [4994], "hscj.ufl.edu": [17252], "api.musixmatch.com": [10723], "run.pivotal.io": [12730], "net-mobile.com": [11178], "merca20.com": [10273], "img08.taobaocdn.com": [15953], "efinancialcareers.com": [4911], "twiki.cern.ch": [2575], "clicklogger.rm.uol.com.br": [16998], "webhostone.de": [18121], "*.infotech-team.com": [18098], "polarnopyret.se": [12862], "lanyrd.com": [9153], "www.freedm.ncsu.edu": [11492], "www.iovation.com": [8342], "puckey.org": [13221], "artwork-cdn.7static.com": [196], "cart.taobao.com": [15952], "*.radioshack.com": [13515], "ot.ca-mpr.jp": [2510], "www.gemius.com": [6516], "git.tocco.ch": [16524], "www.idefix.com": [7933], "lindy.com": [9367], "owkb.ch": [19333], "zh.pcisecuritystandards.org": [12224], "ipinvite.iperceptions.com": [19275], "sandvine.com": [14284], "is.puma.com": [13227], "www.typepad.com": [16914], "www.collabora.com": [3419], "piwik.cbendt.de": [2531], "www.agilewebsolutions.com": [727], "www.dotmailer.co.uk": [4695], "arpnetworks.com": [341], "*.strategicmanagement.net": [15509], "betvictor.com": [17670], "portaltest.equinix.com": [5334], "przewodniki.panoptykon.org": [12365], "*.ria.com": [13425], "newcastleccas.firmstep.com": [19183], "filterbypass.me": [5814], "issues.adblockplus.org": [561], "www.lenr-forum.com": [19355], "dev.heg.com": [7502], "pacs.wustl.edu": [17993], "www.airtime.pro": [755], "*.dpreview.com": [4497], "videointerchange.com": [17693], "forums.juniper.net": [8682], "cinfu.com": [3148], "member.oregonlive.com": [12100], "hosting.unseen.is": [17369], "res.axeso5.com": [1473], "listboxservices.web.cern.ch": [2575], "snakehosting.dk": [15025], "www.alianza.tv": [807], "www.hieber.de": [19248], "temp-mail.org": [16105], "btcs.com": [1562], "en-sr.dict.cc": [4455], "levels.io": [9268], "ohling.com": [11765], "www.systeme.familie-redlich.de": [5644], "static8.startnext.com": [15412], "www.socialshows.com": [15061], "www.webzilla.com": [18099], "www.jd.com": [8423], "forum.linuxserver.io": [9435], "webmail.loxinfo.co.th": [18130], "www.blackhat.com": [2037], "okpay.com": [11629], "crcpress.com": [8118], "www.xfinity.com": [19784], "bitcoin.at": [1961], "www.military.ncpw.gov": [11078], "secure.iwantmytvmagazine.com": [10973], "b5.yahoo.co.jp": [18640], "werkenbijdeoverheid.nl": [11132], "*.bounce.io": [2243], "zencoder.com": [18820], "parabola.nu": [12384], "names.co.uk": [11026], "istockphoto.com": [19309], "mailinator.com": [9887], "heft.ivw.eu": [7870], "telework.jpl.nasa.gov": [10869], "soscisurvey.de": [15050], "pbs-erhverv.dk": [12494], "delfogo.com": [4325], "blog.avast.com": [1444], "iwdc.ucsd.edu": [16939], "fcs.unizar.es": [17356], "www.linuxjournal.com": [9430], "images.sockshare.com": [15081], "static.smi2.net": [15005], "vh1.ro.vutbr.cz": [17522], "bbs.jide.com": [8438], "labs.opendns.com": [11932], "api.accuweather.com": [465], "upload.youcanbook.me": [18703], "www.dei.gr": [6915], "www.thehackernews.com": [16338], "pittsburghmassageandwellness.com": [12729], "www.globalchokepoints.org": [4908], "api.tech.yandex.com": [18651], "mail.mcb.net": [9966], "info.jetbrains.com": [8559], "prev.prediction.io": [13023], "www.unizar.es": [17356], "www.herefordshire.gov.uk": [7327], "codepen.io": [3350], "www.klubitus.org": [8936], "globaltradeday.org": [6734], "www.viestintavirasto.fi": [17708], "globusonline.org": [6746], "www.birmingham.gov.uk": [19000], "nda.amd.com": [925], "www.mrmcd.net": [9786], "www.lokus.no": [9566], "fashionshop.telegraph.co.uk": [16081], "tastselv.skat.dk": [14897], "waytools.com": [18010], "www.aftership.com": [713], "primalblueprint.com": [13058], "minetest.ru": [10417], "www.tox.chat": [16616], "*.flightaware.com": [5919], "www.securepaths.com": [14506], "msevents.microsoft.com": [10364], "analytics.cooldestinations.net": [3641], "pfizerhelpfulanswers.com": [12611], "ethicaldata.co.uk": [5381], "tip.sbb.ch": [15693], "nebula.wsimg.com": [14507], "ethoscustombrands.com": [5387], "www.peacefire.org": [12504], "internetconsultatie.nl": [11132], "royalsociety.org": [14002], "*.pricerunner.com": [13053], "frederick.cancer.gov": [2805], "dotmailer.co.uk": [4695], "aeon.lib.umd.edu": [17263], "wavpin.com": [18009], "hive.hostanalytics.com": [7515], "www.kiva.org": [8926], "wornthrough.com": [18465], "img.yumpu.com": [18747], "freedom-ip.com": [6164], "partner.dhl.de": [4034], "seedrs.com": [14551], "www.gitcafe.com": [6676], "cloudfoundry.org": [3299], "mail.webonic.hu": [18136], "signon.org": [10630], "trac.adium.im": [595], "*.dynamicyield.com": [4828], "www.binarydefense.com": [1891], "student.andover.edu": [12623], "www.euroforum.de": [5412], "emeraldinsight.com": [5205], "www.youtube.ug": [18709], "rss.final4ever.com": [5819], "www.seedrs.com": [14551], "trip.m.taobao.com": [15952], "login.mailigen.com": [9886], "shinystat.com": [19587], "*.mayoclinic.com": [10106], "police.stanford.edu": [15383], "status.rubygems.org": [14020], "ntu.ac.uk": [10972], "www.artsy.net": [1235], "enterpriseportal.accuweather.com": [465], "templates.hostgator.com": [7511], "*.gsu.edu": [6392], "www.remoteapp.windowsazure.com": [18344], "labspace.open.ac.uk": [11986], "wiki.nikhef.nl": [11402], "bethsoft.com": [1818, 1819], "refer.onemonth.com": [11850], "s.svtrd.com": [15675], "www.arenavc.com": [1180], "usenix.org": [17040], "www.suppliesfordreams.org": [15637], "www.human.cornell.edu": [3676], "iisp.org": [7743], "www.nab.com.au": [10865], "abestweb.com": [246], "taverna.knowledgeblog.org": [8948], "www.lpac.co.uk": [9094], "www.eset.de": [4955], "login.eset.com": [5358], "www.dns-oarc.net": [4059], "*.dfn.de": [4415], "cdn.atdmt.com": [10360], "app.maven.co": [10087], "pabo.nl": [12306], "www.prevention.cancer.gov": [2805], "einsteinathome.org": [5128], "*.heacademy.ac.uk": [7406], "tiresnwheels.ca": [16496], "downloads.vagrantup.com": [17529], "partner.wienernetze.at": [18284], "avast.com": [1444], "clk.atdmt.com": [10360], "dosomethingreal.govspace.gov.au": [6867], "umdrightnow.umd.edu": [17263], "donate.familysearch.org": [5646], "ripmixmake.org": [4908], "www.ftp.rnl.tecnico.ulisboa.pt": [19203], "*.ona.gov.au": [11748], "www.searslabs.com": [14448], "www.hipointinc.com": [7389], "www.jdpay.com": [8429], "translations.documentfoundation.org": [16221], "www.sweb.ru": [15208], "taxes.recurly.com": [13652], "mediamath.com": [10157], "getclef.com": [6587], "hellobond.com": [7299], "wiki.refeds.org": [13413], "social.msdn.microsoft.com": [10364], "www.whappodo.com": [18227], "www.nccgroup.trust": [10880], "turkey.thecthulhu.com": [16334], "www.onlinewellnessassociation.com": [11879], "reader.qq.com": [13285], "cdn1.kongcdn.com": [8976], "www.sofurryfiles.com": [15048], "thefappening.sexy": [16274], "www.photographytalk.com": [12646], "eservice.websupport.novell.com": [11530], "sv2.biz": [15668], "usesthis.com": [17442], "admin.sans.org": [14072], "*.telemetryverification.net": [16090], "*.compliancesigns.com": [3525], "pandora.com": [12359], "nsf.gov": [11060], "getcloudapp.com": [9371], "frontier.co.uk": [6224], "www.nih.gov": [11052], "www.amnesty.gr": [963], "www.praetorian.com": [13011], "nlm.nih.gov": [11052], "thejournalnews.com": [9564], "www.sf.se": [14108], "hrep.nhmrc.gov.au": [7606], "*.bigcommerce.com": [1853], "s0.static.hootsuite.com": [7488], "mazacha.in": [10108], "dog.ro.vutbr.cz": [17522], "help.livingsocial.com": [9517], "www.syncsearch.jp": [15731], "www.digitalcreations.no": [4490], "*.1c-bitrix.ru": [56], "safesmokedfish.food.gov.uk": [19187], "secure.join.me": [8616], "quadrigacx.com": [13324], "www.profitbricks.co.uk": [13127], "eyes.nasa.gov": [10869], "*.store.thesims3.com": [5151], "www.flamingspork.com": [5902], "*.webroot.com": [18140], "xerte.plymouth.ac.uk": [12833], "alltop.com": [861], "www.iubenda.com": [8396], "cs.drexel.edu": [4758], "www.sj.se": [14125], "precharge.com": [13016], "rg3.github.com": [6680], "www.infotomb.com": [8104], "dashboard.demandbase.com": [4342], "rebelmouse.com": [13638], "www.facebook.de": [5623], "www.web-stat.com": [18047], "www.belspo.be": [1771], "www.speakerdeck.com": [15236], "www.freeswitch.org": [6130], "i.answers.microsoft.com": [10364], "icm.intan.net": [8200], "www.facebook.dk": [5623], "*.fusionio.com": [6276], "www.mrcote.info": [10674], "cdn.ultrahdtv.net": [17136], "cf4.100r.org": [9], "content.mkt51.net": [14802], "www.tk.de": [16037], "*.byteark.com": [2487], "www.tastselv.skat.dk": [14897], "www.infosecindustry.com": [8102], "iter.org": [7847], "stanfordyou.stanford.edu": [15383], "www.thesprawl.org": [15299], "openpgpjs.org": [11965], "www.shoppbs.org": [12211], "www.togetherjs.com": [16530], "greenwire.greenpeace.org": [6937], "*.mediafactory.fm": [10168], "netdev01.org": [11220], "kva.se": [19345], "*.biblesociety.co.za": [18710], "hosting.de.inter.net": [8229], "*.cpni.gov.uk": [2956], "widgets.lotame.com": [9613], "kiosk.onlinesbi.com": [11873], "perf.cloud.unity3d.com": [17220], "chtah.com": [3055], "support.leagueoflegends.com": [9206], "norx.io": [11510], "mab.sbi.co.in": [14082], "www.elft.nhs.uk": [10913], "chevereto.com": [3070], "armsglobe.chromeexperiments.com": [3117], "chipworks.com": [3089], "www.laeditorialupr.com": [17334], "wwwstatic.spiceworks.com": [15266], "www.jdeslippe.com": [8469], "static-1.gumroad.com": [7020], "ycombinator.com": [7141], "www.speedcrunch.org": [15252], "www.nisit69.com": [11422], "mobile.github.com": [6680], "www.mouseflow.nl": [10624], "secure-store.nike.com": [11401], "ndchost.com": [10892], "www.freespeech.org": [6151], "secure.s.telegraph.co.uk": [16082], "gl.dinahosting.com": [4519], "shared.5min.com": [178], "parking.newcastle.gov.uk": [11315], "trip.163.com": [34], "medschool.wustl.edu": [17993], "coloradonocall.com": [3440], "crossroads.ias.edu": [7669], "vlog.leadformix.com": [9193], "garyjohnson2012.com": [6464], "enterprise.com": [5291], "b.scorecardresearch.com": [14393], "www.uguu.se": [17118], "*.cbsnews.com": [2526], "www.stonewallcymru.org.uk": [19630], "www.btwifi.co.uk": [1579], "mail.internet2.edu": [8279], "www.vanityfair.com": [3551], "*.saga.co.uk": [14237], "www.studentaid2.ed.gov": [4889], "www.snowdrift.coop": [15043], "join.fuckyoucash.com": [6241], "www.recordstoreday.com": [13649], "assets.drupal.ku.edu": [17259], "tlsfun.de": [16512], "labp.htwk-leipzig.de": [7114], "*.tryprocleanse.com": [10800], "theeventdiva.com": [16189], "depkatalog.no": [4373], "insurance.va.gov": [17019], "www.no1366.org": [11441], "gifts.stanford.edu": [15383], "apps8.cardiff.gov.uk": [19039], "getshine.com": [6605], "aerosollab.osu.edu": [11760], "cancer2.cse.ucsc.edu": [17305], "www.galerievirtuelle.bve.ulaval.ca": [17229], "*.siteor.pl": [14883], "weblogin2.geant.net": [6313], "jobs.uwm.edu": [17294], "media-cdn.tripadvisor.com": [16741], "elkosmas.gr": [19153], "*.linkbucks.com": [9375], "arue.stanford.edu": [15383], "video.ted.com": [15805], "posteshop.it": [12966], "redaktorext.polskieradio.pl": [12886], "bux.cz": [19029], "gforge.inria.fr": [8159], "vtb.ru": [8457], "choquecultural.catracalivre.com.br": [2908], "mercatus.org": [10275], "plugrush.com": [12824], "secure.powys.gov.uk": [19513], "www.smartbrief.com": [14987], "iceheberg.fr": [7912], "www.onamae-server.com": [11820], "www.fpcomplete.com": [5591], "www.rushbucks.com": [14040], "platform.appcelerator.com": [1113], "tmobile.com": [15834], "images.b.switchadhub.com": [15701], "livecorp.com.au": [9486], "hex.getdigital.de": [6611], "www.top.de": [16558], "www.itsdanbull.com": [4130], "webtranslateit.com": [18168], "ngvpn13.nvidia.com": [10985], "register4less.com": [13733], "talkingphonebook.com": [9538], "l.sharethis.com": [14668], "stag-result.cntraveler.com": [3555], "www.accountchooser.com": [461], "amctheatres.com": [307], "blog.names.co.uk": [11026], "www.onarbor.com": [11822], "gallery.hackerspace.pl": [7149], "door.desy.de": [4399], "www.hex-rays.com": [7379], "*.boum.org": [2242], "www.ohm2013.org": [11624], "bprc.osu.edu": [11760], "www.crunchbase.com": [3833], "www.brueckenbauer.ch": [19399], "onlinelibrarystatic.wiley.com": [18309], "*.uidaho.edu": [17257], "healthlibrary.stanford.edu": [15382], "search.cam.ac.uk": [17243], "affil.walmart.com": [17964], "www.quicktranslate.com": [13361], "feitbulbs.com": [5745], "service.maxymiser.net": [10098], "url2png.com": [17411], "thumbs.sbstatic.com": [14797], "bsn.console.aliyun.com": [821], "moonpig.com.au": [10578], "unmaintained.git.collabora.com": [3419], "onename.com": [11836], "secure.metoffice.gov.uk": [14489], "outnow.ch": [19473], "syntevo.com": [15741], "ixwebhosting.com": [7882], "*.viamichelin.com": [17659], "openid.yubico.com": [18745], "forums.netapp.com": [11183], "www.ioam.de": [7783], "me.huobi.com": [7624], "careers.vodafone.co.uk": [17813], "www.hellobond.com": [7299], "www.l.de": [9057], "franklinveaux.com": [6103], "*.lovelens.li": [9630], "forum.zen.co.uk": [18815], "equity.org.uk": [5336], "roe.ch": [13944], "altai.rt.ru": [13469], "mullvad.net": [10694], "imdb.com": [7756], "hummingbird.sandiegoreader.com": [14272], "royal.gov.uk": [13999], "*.royalmailgroup.com": [14001], "www.registrar.osu.edu": [11760], "federation.renater.fr": [13764], "opensrs.com": [11969], "info.ooyala.com": [11900], "xpl.theadex.com": [16331], "escueladoctorado.unizar.es": [17356], "distrib-coffee.ipsl.jussieu.fr": [8687], "jmldirect.com": [8443], "www.avaaz.org": [1437], "secure.southampton.gov.uk": [15191], "shop.threema.ch": [16399], "www.brand.osu.edu": [11760], "*.kym-cdn.com": [8756], "*.hr.wvu.edu": [18212], "standagainstspying.org": [15376], "brand.osu.edu": [11760], "blog.hqcodeshop.fi": [7576], "marksandspencer.com": [9945], "sso.forgerock.com": [19189], "pci.trustwave.com": [16799], "psswrdbx.com": [12433], "partnernet-uat.symantec.com": [15715], "dapeigou.jd.com": [8422], "www.wtop.com": [18478], "ksp.mff.cuni.cz": [19343], "www.rackspace.co.uk": [13499], "www.idfpr.com": [7965], "*.wikimedia.es": [18296], "atbank.nl": [358], "*.cooliris.com": [3643], "hoover.org": [7489], "wj32.org": [18390], "cms.vervehosting.com": [17646], "www.geodacenter.org": [1194], "www.safesource.org.nz": [14228], "forums.freebsd.org": [6120], "infodev-d7-live.nsms.ox.ac.uk": [17271], "the-group.net": [16287], "element.yandex.by": [18648], "storage.filemobile.com": [5800], "iphone-client.fitbit.com": [5887], "haproxy.com": [7045], "www.popvote.hk": [12912], "www.myinterfase.com": [10836], "*.fwmapps.co.uk": [5671], "www.tecnocode.co.uk": [16054], "*.tripodo.de": [16747], "mobilflex.tdc.no": [15797], "www.retsinformation.dk": [13830], "books.sonatype.com": [15132], "www.alias.io": [808], "www.union.illinois.edu": [17258], "www.centzy.com": [2960], "www.banki.ru": [1646], "www.sr.se": [15673], "lolagrove.com": [9568], "bpsshop.org.uk": [1538], "kotaku.com": [8993], "social-engineer.com": [15056], "jobbik.hu": [8595], "billing.hudsonvalleyhost.com": [7598], "static6.startnext.com": [15412], "www.physicsforums.com": [12655], "authoring.lsbu.ac.uk": [9098], "mea.elsevierhealth.com": [5187], "cf.gcaptain.com": [6311], "www.omron.com": [11804], "ece1jngec.blogspot.*": [2113], "newspix.nzherald.co.nz": [11314], "politicalcompass.org": [12871], "www.globalpromote.com": [6731], "e15.xhamsterpremiumpass.com": [18516], "support.webmoney.ru": [18076], "*.moderngiver.com": [10521], "www.fsadownload.ed.gov": [4889], "www.stormpath.com": [15500], "*.expomobilehomes.com": [5627], "*.cio.com": [2611], "resilientsystems.com": [13805], "assets2.github.com": [6680], "ch.icecat.biz": [7914], "www.f35.com": [5542], "*.nicta.com.au": [10923], "www.irrlab.com": [18428], "uim.tifbs.net": [19682], "5.*.wdfiles.com": [18294], "list.nih.gov": [11052], "media.headphone.com": [7255], "vaers.hhs.gov": [7062], "*.umass.edu": [17265], "imapfis.ct.infn.it": [7766], "jira.spring.io": [15303], "www.depkatalog.no": [4373], "ifightsurveillance.com": [7888], "*.e-plus.de": [4844], "heg.org": [7502], "www.gwinnettcounty.com": [7034], "secure.cmax.americanexpress.com": [935], "www.beauteprivee.fr": [1739], "dna1.mookie1.com": [10576], "es.amnesty.org": [956], "multicore-devcon.com": [10700], "dfranke.us": [4096], "npp.org.hk": [19445], "lilliputti.com": [9353], "carehomes.derby.gov.uk": [4380], "*.cmbi.ru.nl": [13510], "hca.twimg.com": [16877], "branding.tiki.org": [16444], "www.france-universite-numerique-mooc.fr": [6097], "www.politicshome.com": [12875], "pobox.com": [12835], "www.karma.mg": [8799], "wordpress.com": [18429], "email.163.com": [34], "www.typecast.com": [16911], "www.wanglibao.com": [17971], "genome-cancer.cse.ucsc.edu": [17305], "*.conduit-data.com": [3562], "appcenter.html5tools-software.intel.com": [8209], "nsd.rdc.noaa.gov": [11083], "www.noisey.com": [11460], "licenses.javacoolsoftware.com": [8529], "cdn.msf.org.uk": [9789], "www.fraserxu.me": [6109], "*.van.fedex.com": [5706], "*.atariage.com": [1310], "www.nestle.de": [11168], "*.furaffinity.net": [6270], "*.your-server.de": [7376], "lund.zozs.se": [18912], "www.vpn.ac": [19742], "www.sis.umd.edu": [17263], "parametersecurity.com": [12393], "rows.io": [13990], "www.bignerdranch.com": [1859], "it.stonybrook.edu": [15480], "dropoff.brunel.ac.uk": [19021], "cert-test.sandbox.google.com": [6834], "*.gymglish.com": [7038], "wiki.xenserver.org": [18557], "aful.org": [286], "gatorchrysler.net": [4255], "www.midkemiaonline.com": [19398], "pro-managed.com": [13107], "*.ratfishoil.com": [13574], "get-digital.it": [6561], "www.barnskospecialisten.se": [1679], "www.davidsopas.com": [4228], "blogs.microsoft.com": [10364], "www.kablepackaging.com": [8763], "*.mybetter.com": [10746], "www.torrentz.eu": [16591], "travelblog.org": [16690], "*.pagpop.com.br": [12328], "www.youtube.ro": [18709], "ledger.co": [9219], "tracking.wix.com": [18383], "nm.contextweb.com": [3616], "fusion.net": [18428], "spaceweatherphone.com": [15213], "online.billdesk.com": [1876], "secure.yellowpages.ca": [18671], "www.socialscreamer.com": [15067], "gitlab.awesome-it.de": [1461], "selfservice.mville.edu": [9955], "ws.audioscrobbler.com": [1360], "inkbunny.net": [8148], "dev.hackaday.io": [7138], "www.podvertiseonline.com": [12840], "surveillance.rsf.org": [13784], "www.po.st": [12834], "login.aarp.org": [234], "js.stormiq.com": [15499], "archive.wix.com": [18383], "www.cmdev.com": [2630], "onarbor.com": [11822], "www.samsung.net": [14271], "brainshark.com": [2270], "www.dataspace.pl": [4186], "kaggle.com": [8765], "toster.ru": [16598], "lww.com": [9438], "www.0x41.no": [4], "text.nanog.org": [11490], "ria.com": [13425], "secure.flickr.com": [5918], "billing.owncube.com": [12183], "buckeyevoices.osu.edu": [11760], "swin.edu.au": [15690], "dtp.cancer.gov": [2805], "www.welsh-country-cottages.co.uk": [18490], "images2.hertz.com": [7372], "notex.ch": [11439], "xcb.freedesktop.org": [6126], "www.ida.liu.se": [9084], "*.live1.mintedcdn.net": [10434], "amp.twimg.com": [16877], "www.zohodiscussions.com": [18886], "www.geak.tk": [3533], "www.linuxdaily.com": [19461], "skytal.es": [6915], "app.embed.ly": [5197], "www.springerzahnmedizin.de": [15310], "ih1.redbubble.net": [13660], "hostvirtual.com": [7518], "gorails.com": [6782], "insurance.thecthulhu.com": [16334], "lezlovevideo.com": [9281], "stats.linode.com": [9387], "community.crisis.org.uk": [3800], "*.ezinearticles.com": [5538], "www.canon.ba": [2809], "postmaster.xmission.com": [18530], "status.mantisadnetwork.com": [9962], "alumniconnections.com": [896], "systemed.net": [15764], "cashboardapp.com": [15559], "proposal.illinois.edu": [17258], "tum.de": [16824], "gnats.netbsd.org": [11184], "chipin.com": [3086], "hstor.org": [7586], "joomlacode.org": [8628], "nokiausa.com": [11461], "democratic.lincoln.gov.uk": [9362], "youtube.co.ke": [18709], "vav.vutbr.cz": [17522], "web.enlightenment.org": [5280], "planetnetbeans.org": [12081], "typekit.com": [16913], "www.fsisac.com": [5606], "efurnitureny.com": [4915], "cashplatoon.com": [2879], "www.russia2all.com": [14045], "thestorefront.com": [16314], "subgenius.com": [3128], "openbeta-comm.usaspending.gov": [17034], "f5networks.com.br": [5545], "serviceuptime.com": [14624], "www.sogo.nu": [14148], "www.zumzi.com": [18923], "thedailyedge.thejournal.ie": [16224], "www.photopay.net": [12641], "daft.ie": [4104], "citrixonlinecdn.com": [3180], "www.fusion-net.co.uk": [6277], "qa.linuxcontainers.org": [9420], "www.pydio.com": [13269], "www.xparkmedia.com": [18582], "*.teachersassurance.co.uk": [15993], "network.drweb.com": [4783], "files.adbrite.com": [564], "propellerpops.com": [13157], "help-fr-eu.nike.com": [11401], "www.radikale.dk": [13514], "jp.twimg.com": [16877], "production.nursing.osu.edu": [11760], "www.flirble.org": [16191], "cdn.coderouge.co": [3375], "cleanprint.net": [3226], "www.greasyfork.org": [6905], "www.youtube.com.mk": [18709], "courses.cs.ut.ee": [17069], "*.ku.edu": [17259], "www.bibbitec.com": [1841], "dabney.caltech.edu": [2756], "pbebank.com": [13203], "dmv.ca.gov": [2741], "www.nventio.com": [11589], "feed.mikle.com": [10387], "www.daydeal.ch": [19103], "ecocar2.osu.edu": [11760], "www.onlineregister.com": [11866], "www.stroud.greenparty.org.uk": [6925], "owa.macfound.org": [9818], "enrollmentcenter.medicare.gov": [19392], "piwik.fsf.org": [5600], "fxprime.com": [5610], "ii-public2.nlm.nih.gov": [11052], "www.auth0.com": [1407], "registrar.stanford.edu": [15383], "www.db-ip.com": [4009], "www.nia.nih.gov": [11052], "wiki.selfhtml.org": [19580], "*.humanrights.gov.au": [1395], "dashpay.io": [4164], "list.zerties.org": [18847], "reviews.argos.co.uk": [1185], "www.royal.gov.uk": [13999], "www.apwustore.org": [933], "www.opendoor.com": [12008], "shop.tvnz.co.nz": [15886], "www.red-pill.eu": [13658], "imagesa.btol.com": [1623], "mediadaten.sueddeutsche.de": [15577], "thegazette.co.uk": [16280], "static.paste2.org": [12439], "ct.jd.com": [8423], "geovation.uk": [6550], "lunarpages.co.uk": [569], "phytopedia.fsaa.ulaval.ca": [17229], "oadeposit.wellcome.ac.uk": [19752], "pubservice.com": [13220], "www.vumanity.net": [17875], "www.triplebyte.com": [16746], "lists.isc.org": [7821], "markit.com": [10023], "cms.permits.performance.gov": [12568], "account.jamplay.com": [8498], "cdn3.openculture.com": [12006], "www.united-domains.de": [17213], "thinkingtogether.educ.cam.ac.uk": [17243], "www.sitelock.com": [14867], "www.cottageselection.co.uk": [18490], "www.dialshield.com": [1463], "ba.yandex.kz": [18652], "eddie.ds.uillinois.edu": [16959], "mmonit.com": [9765], "www.febo.com": [19176], "adminer10.vas-hosting.cz": [19729], "biz-form.ec.yahoo.co.jp": [18640], "bugs.funtoo.org": [6269], "gsb.download.bva.bund.de": [5716], "ruralchampions.govspace.gov.au": [6867], "forums.ispbilling.com": [16816], "www.tdcanadatrust.com": [15800], "www.imgdino.com": [7993], "www.unodc.org": [16994], "static.oc-static.com": [11610], "onepagerapp.com": [11856], "bugzilla.org": [2410], "jetico.com": [8561], "pastevault.com": [12441], "www.c3noc.net": [2502], "www.opennicproject.org": [19466], "pd-st.itunes.apple.com": [1120], "lists.quagga.net": [13325], "marketoversight.fca.org.uk": [5557], "pauldotcom.com": [12460], "kb.juniper.net": [8682], "*.swetswise.com": [15687], "imperialcollegeunion.org": [8015], "webfusion-support.co.uk": [18117], "www.skrilnetz.net": [14920], "kb.web-hosting.com": [18044], "en.site1.answcdn.com": [1059], "niehs.nih.gov": [11052], "help.agilebits.com": [727], "adultwork.com": [645], "fm.163.com": [35], "rest-production.mollom.com": [10537], "klubitus.org": [8936], "ws.mail.qq.com": [13285], "www.cmth.bnl.gov": [19009], "filecache.drivetheweb.com": [12286], "www.syndie.de": [15734], "help.disqus.com": [4570], "fpp.wusm.wustl.edu": [17993], "www.oblivia.vc": [11704], "hasylab.desy.de": [4399], "best-pariuri-online.com": [7732], "www.jal.co.jp": [8514], "www.marcansoft.com": [9982], "www.cs.berkeley.edu": [17240], "*.litespeedtech.com": [9457], "*.rockstargames.com": [13942], "www.twimler.com": [16878], "kirsle.net": [8918], "security.wmtransfer.com": [18076], "tinypass.com": [16489], "www.surfcanyon.com": [15648], "www.cz-hosting.com": [2697], "portal.nexcess.net": [11356], "learningnetwork.cisco.com": [3162], "files.random.org": [13545], "www.trakehner-nord-west.de": [16658], "data.ct.gov": [2680], "q3k.org": [13276], "virtualqube.com": [17750], "careers.wustl.edu": [17993], "adultshopping.com": [644], "mobility.telus.com": [16103], "inwx.de": [8231], "*.courant.com": [16731], "adigital.org": [590], "airsoftgi.com": [754], "borne.nl": [11132], "inddrivelse.skat.dk": [14897], "sans.org": [14072], "sell.stubhub.com": [15534], "www-q.kaufland.cz": [8822], "www.toxme.se": [16618], "login.barracudanetworks.com": [1680], "www.sphere.com": [15263], "systemcenteradviser.com": [15760], "www.bitmex.com": [1935], "www.myradiocreative.com": [10815], "bunchball.net": [2425], "acom.azurecomcdn.net": [1485], "picasaweb.google.co.*": [6837], "www.amnesty.org.nz": [967], "www.gehrcke.de": [6508], "bitminter.com": [1937], "static.greenwire.greenpeace.org": [6937], "www.arma3.com": [1202], "quest.com": [13351], "www.sous-surveillance.fr": [15185], "marathonbet.com": [9979], "www.xenforo.com": [18561], "www.btnapps.net": [2354], "briehost.com": [2316], "www.eastriding.gov.uk": [5015], "moava.org": [10486], "www.edubuntu.org": [5068], "www.canon.sk": [2809], "bigconcerts.co.za": [1858], "panoptykon.org": [12365], "scieneo.de": [14383], "eso.org": [5426], "www.brightfort.com": [2321], "community.rackspace.com": [13506], "en.over-blog.com": [12156], "sfsecuremail.statefarm.com": [15418], "admin.cms.lg.com": [9077], "www.ucpi.org.uk": [16937], "www.virusbtn.com": [17758], "narodnipanel.cz": [19425], "*.thcdn.com": [16223], "passwd.ut.ee": [17069], "dig.domains": [4465], "vladimir.rt.ru": [13469], "www.solid-run.com": [15117], "pixels.livingsocial.com": [9517], "islenzka.net": [8369], "m.online.t-mobilebankowe.pl": [19654], "*.unica.com": [17181], "foxnews.ramp.com": [6085], "thunderclap.it": [16405], "myshannonconnection.org": [14659], "bakabt.me": [1622], "onebit.cz": [11642], "cortellis.thomsonreuterslifesciences.com": [16384], "inhumanity.com": [8142], "www.nhscareers.nhs.uk": [10913], "cms.surf.nl": [14197], "assets.dandb.com": [4137], "fi.godaddy.com": [6773], "oumedicine.com": [12139], "www.adultwork.com": [645], "shoebuy.com": [14714], "www.bluewin.ch": [2157], "acquia.com": [478], "www.mountainreservations.com": [10620], "datawrapper.dwcdn.net": [4091], "boligportal.dk": [2190], "shop.ticketpro.hu": [16424], "ehs.stanford.edu": [15383], "shop.vice.com": [17666], "static.suite.io": [15586], "fbs.admin.utah.edu": [17288], "www.imperian.com": [19289], "dune.bnl.gov": [19009], "neck2neck.com": [11129], "myfonts.com": [10758], "www.progressreport.cancer.gov": [2805], "youtube.co.za": [18709], "www.robustirc.net": [19555], "www.mpv.io": [10671], "newslook.com": [11330], "www.maybemaimed.com": [10103], "*.simosnap.com": [14818], "www.zarb.org": [18796], "en-bg.dict.cc": [4455], "*.heroku.com": [7332], "myitcv.org.uk": [10837], "ak1s.abmr.net": [762], "*.bytelove.fr": [2490], "amberswann.com": [921], "harvardpilgrim.org": [7220], "cdn.thomasnet.com": [16376], "piping.unizar.es": [17356], "webchat.pirateirc.net": [12710], "sales.epochstats.com": [5326], "www.storycubes.com": [15501], "gdata.fr": [6293], "jp.calameo.com": [2731], "www.notebooknagyker.hu": [9155], "it-pol.dk": [8392], "www.bigv.io": [1855], "kb.wedos.com": [17901], "coredump.gr": [3670], "childrens.eastsussexlearning.org.uk": [19144], "chathamhouse.org": [3033], "magazin.tchibo.de": [15985], "www2.handelsbanken.fi": [7186], "aolcdn.com": [322], "omnibus.hscic.gov.uk": [19264], "smuxi.de": [15016], "peopleclick.com": [12551], "www.windows.net": [18343], "new.x2go.org": [18499], "go.oclaserver.com": [11711], "images.smartertools.com": [14996], "f-droid.org": [5540], "ecx.images-amazon.com": [914], "*.benaughty.com": [1721], "www.voipdistributor.net": [17808], "mcgrhill-warez.com": [10121], "www.ideastations.org": [7927], "a3.twimg.com": [16877], "ubuntu-de.org": [17093], "mijn.ing.nl": [7769], "dpfoc.com": [4733], "preview.buildsecurityin.us-cert.gov": [17415], "sso.andover.edu": [12623], "www.piratepad.ca": [12706], "api.listenerapproved.com": [9451], "www.eurovision.de": [5431], "www.curry.uvt.nl": [16445], "open.nasa.gov": [10869], "profile.live.com": [9483], "*.e-boks.dk": [4848], "southsomerset.greenparty.org.uk": [6925], "www.nutrition.gov": [11584], "origin.www.ieee.org": [7715], "dealerrater.com": [4258], "trafficprivacy.com": [16649], "www.lumiblade-shop.com": [9664], "soup.io": [15166], "www.optoutprescreen.com": [12064], "ology.com": [11783], "datatables.net": [4188], "serverdensity.com": [14614], "torcache.net": [16571], "webstats.unizar.es": [17356], "strawpoll.me": [15515], "www.energinet.dk": [5253], "thecreatorsproject-images.vice.com": [17667], "aqua.lib.vt.edu": [17740], "c4.rgstatic.net": [13422], "www.sharpmen.com": [14684], "mh17.correctiv.org": [3685], "itsalm1.swisscom.com": [15698], "lubin82.pl": [9640], "atsb.gov.au": [1403], "registrace.skylink.cz": [14937], "www.g2play.net": [6297], "*.zeiss.com": [2851], "openvz.org": [11991], "hoorn.nl": [11132], "btcguild.com": [1559], "highbeam.com": [2937], "rt.grc.nasa.gov": [10869], "*.netpivotal.com": [11204], "global2000.at": [6720], "starnet.com": [15393], "status.fsf.org": [5600], "www.dataexchangewales.org.uk": [19101], "*.axisbank.com": [1474], "www.guardiansubscriptions.co.uk": [7004], "apply.whitehouse.gov": [18251], "ibtimes.co.uk": [7677], "ping-fast.com": [12680], "image.guardian.co.uk": [7000], "www.fpjintel.com": [5590], "globalamicistore.com": [6721], "outernet.is": [12151], "lowpowerlab.com": [9635], "getify.com": [6614], "segurosuniversales.net": [14561], "build.enlightenment.org": [5280], "deepfield.net": [4297], "*.handelsblatt.com": [7187], "www.comp.leeds.ac.uk": [17318], "hdsa.org": [7054], "wholesale.greensmoke.com": [6928], "*.allure.com": [3551], "www.alice-dsl.de": [810], "api.nanigans.com": [11030], "ps3crunch.net": [12296], "city.yandex.ua": [18656], "stage-digitalmedia.hhs.gov": [7062], "mooshi.com.au": [10580], "www.slyar.com": [14976], "www.nitrocloud.com": [11428], "woodtreeswing.com": [18420], "victoriassecretcanada.ca": [17673], "norton.com": [11505], "lesincroyablesrencontres.leboncoin.fr": [19351], "richannel.org": [13993], "*.admtl.com": [690], "city.ac.uk": [3187], "www.bn.com": [1678], "mail.aerohosting.cz": [689], "bugzilla.xamarin.com": [18540], "hits-secure.theguardian.com": [16288], "nestle.com": [11168], "www.nebezi.cz": [11126], "myworkplace.ncl.ac.uk": [10884], "www.stockcharts.com": [15477], "wiki.openmandriva.org": [11956], "hartwork.org": [7217], "loadtest.ftc.gov": [5720], "git.in.moodle.com": [10572], "www.phcheats.com": [12254], "www.worldcubeassociation.org": [18453], "facultyaffairs.wusm.wustl.edu": [17993], "www.yadg.cc": [19789], "redir.adap.tv": [554], "bloombergsports.com": [2120], "www.whatismyip.com": [18231], "www.sata-io.org": [14075], "launchkit.io": [9167], "wikide.openmpt.org": [11951], "cdn.vgc.no": [17484], "*.wrzuta.pl": [18476], "nbcnews.to": [1920], "docs.onapp.com": [11808], "tierra.net": [16435], "*.blogger.co.uk": [2107], "youraccount.glasgow.gov.uk": [6699], "napoleonmakeupacademy.com": [11036], "knet.hks.harvard.edu": [7219], "cln.cisco.mobi": [3161], "thersa.org": [16306], "www.rs-linkz.info": [13451], "ind.ie": [8048], "gmx.fr": [6350], "www.epson.ca": [5330], "www.postalheritage.org.uk": [12958], "*.gnomefiles.org": [19462], "www.firstfloor.org": [5879], "forum-3dcenter.org": [19190], "my.rmit.edu.au": [13437], "doc.ubuntu-fr.org": [17096], "www.alestic.com": [792], "ipv6.wtfismyip.com": [17933], "*.egg.com": [5114], "physicaltherapy.wustl.edu": [17993], "fs02.androidpit.info": [1009], "www.everydayhero.com": [5454], "www.askapatient.com": [1265], "www.numsys.eu": [11580], "control.snel.com": [15034], "www.liikenneturva.fi": [9348], "www.ohloh.com": [11766], "thumbs.dreamstime.com": [4754], "www.tomtomrunningrace.com": [16540], "webmail.planet-school.de": [12295], "cfweb.cc.ysu.edu": [18742], "www.simplifydigital.co.uk": [19593], "fingate.stanford.edu": [15383], "register.ft.com": [5826], "govtrack.us": [6868], "marxists.org": [10042], "lovelens.ch": [9630], "www.faa.gov": [5713], "anonymissexpress.cyberguerrilla.org": [3961], "careerperfect.com": [2843], "bitsquare.io": [2020], "kinox.ag": [19337], "pac.osu.edu": [11760], "tracker.debian.org": [4275], "hilfe.gmx.net": [6350], "bewerben.htw-berlin.de": [7112], "m.xkcd.org": [19786], "securitylunch.stanford.edu": [15382], "calpolyarts.org": [2729], "www.owncloud.org": [12182], "mail.gnu.org": [6357], "engine.vliegtickets.nl": [17802], "files.foreignaffairs.com": [6025], "mobile.tiscali.it": [16498], "*.bcn.ch": [19333], "boathousecrewshop.com": [2169], "contacts.ats.aq": [361], "sg.carousell.com": [2860], "findgravy.com": [5843], "www.zoum.ca": [18764], "menulog.com.au": [19395], "*.subscribeonline.co.uk": [4720], "starttls.info": [14188], "foswiki.stanford.edu": [15382], "pricerunner.co.uk": [13053], "www.business.hsbc.co.uk": [7098], "cdn.webrtc-experiment.com": [18081], "www.cdnjs.com": [2921], "avonandsomerset.police.uk": [1454], "server.ffa.vutbr.cz": [17522], "studentweb.con.ohio-state.edu": [11761], "govzone.psc.gov": [19525], "mail.schibsted.no": [14351], "cdn.gbot.me": [6808], "a.t.webtracker.jp": [18165], "bench.cr.yp.to": [3748], "cafepress.com": [2716], "www.datapath.io": [4209], "images.nordichardware.com": [11473], "*.kriso.lt": [9013], "tahoe-lafs.org": [15910], "hackerrank.com": [7143], "ucpi.org.uk": [16937], "*.wsj.net": [11321], "healths.biz": [7265], "www.sub.uni-goettingen.de": [17166], "www.fnh.utoronto.ca": [17343], "swift.hydranodes.de": [19269], "openconnect.netflix.com": [11229], "ldtp.freedesktop.org": [6126], "fastly.com": [5687], "members.gwh.nhs.uk": [10913], "*.nationwide.co.uk": [11091], "kasiopea.matfyz.cz": [19334], "homepages-fb.th-mittelhessen.de": [15809], "www.spendbitcoins.com": [15262], "engineering.com": [5266], "ecn.t0.tiles.virtualearth.net": [17755], "internet-radio.com": [8273], "www1.elfa.se": [5161], "engineering.stanford.edu": [15382], "www.team-share.net": [15997], "oisshome.wustl.edu": [17993], "magserv.com": [9862], "providesupport.ru": [13173], "legacy.pfizerpro.com": [12612], "www.betabeat.com": [1816], "www.nrkbeta.no": [10957], "zapunited.com": [18794], "*.sis.maricopa.edu": [9990], "wiki.qubes-os.org": [13344], "www.thehill.com": [16290], "www.ectc-online.org": [5019], "pharmgkb.org": [19490], "www.onlinecensorship.org": [11875], "ytchannelembed.com": [18624], "content.mobileasiaexpo.com": [10499], "birmingham.gov.uk": [19000], "www.opennet.net": [11962], "wyndham.com": [18490], "wwte9.com": [17937], "pti.iu.edu": [8064], "www.ilovebluesea.com": [7893], "git.collabora.com": [3419], "*.nationalrail.co.uk": [11056], "metrika.yandex.com": [18651], "www.nickyhager.info": [11387], "www.diasp.eu": [4446], "www.icares.wustl.edu": [17993], "www.pappp.net": [12208], "*.rssing.com": [13464], "freebsd.kde.org": [8718], "news.walmart.com": [17964], "www.fanboy.co.nz": [5650], "managebeta.smartadserver.com": [14982], "alumni-gsb.stanford.edu": [15383], "www.brianchristner.io": [19019], "www.reefledlights.com": [13709], "www.nuwear.com": [11587], "jersey.java.net": [8525], "*.omnovia.com": [11786], "ot.wustl.edu": [17993], "partnerportal.f-secure.com": [5541], "itrade.cimbsecurities.co.th": [2608], "www.rochesterhomepage.*": [13933], "filestack.com": [5801], "www.piwik.rrzn.uni-hannover.de": [17168], "fatwallet.com": [5691], "blog.veber.co.uk": [17585], "*.creativecow.com": [3779], "greenhouse.io": [6931], "ixquick-proxy.com": [8405], "s.torrentday.com": [16579], "*.inwx.de": [8231], "*.stevenroddis.com": [15469], "projects.tigase.org": [16439], "*.uberspace.de": [17090], "www.deekayen.net": [4295], "gostats.com": [6785], "activestate.com": [499], "dgl.cx": [4438], "zend.com": [18821], "*.hatena.ne.jp": [7238], "css-tricks.com": [2678], "opentemplate.org": [19461, 19462], "archive2013.tacticaltech.org": [15901], "pyneo.org": [13270], "web.telegram.org": [16080], "customers.drweb.com": [4783], "oyunhizmetleri.com": [12193], "www.portokalkulator.de": [19112], "*.downloadbox.me": [4727], "mtailor.com": [9804], "www.gifbook.io": [6638], "track.ft.com": [5826], "accounts.alipay.com": [817], "www.cesky-hosting.cz": [19051], "trollingeffects.org": [16756], "www2.argylesocial.com": [1190], "greensky.com": [6920], "recordedbooks.com": [19543], "bupa.com": [2439], "eforms.rbkc.gov.uk": [19538], "beaconinitiative.com": [1726], "freemailer.ch": [6179], "scopeblog.stanford.edu": [15383], "m.now.msn.com": [9794], "dashboard.stelter.com": [15465], "grooveshark.com": [6965], "libregraphicsworld.org": [9314], "kb.osu.edu": [11760], "urbanvilla.nl": [17409], "playstationnetwork.com": [12796], "nber.org": [11077], "www.deco.proteste.pt": [4288], "sysprovide.de": [19652], "www.sipsolutions.net": [14124], "www.java.com": [8526], "portal.strode-college.ac.uk": [15528], "roundcube.utsc.utoronto.ca": [17343], "www.istlsfastyet.com": [8363], "downloadmirror.intel.com": [8209], "bugzil.la": [2409], "www.kali.org": [8771], "myapnic.net": [1257], "gladrags.com": [6696], "hotmail.live.com": [9483], "www.idofoundation.org": [7650], "www.aftontrailrun.com": [714], "www.nytimesathome.com": [11001], "www.betclair.com": [7732], "transifex.com": [16669], "www.flashrom.org": [5906], "www.darkcoinfoundation.org": [4151], "www.ghostery.com": [6629], "palliative.stanford.edu": [15383], "blackmesh.com": [2038], "s3.roosterteeth.com": [13974], "wp-eng-static.washingtonpost.com": [17990], "ftp.kevag-telekom.de": [8862], "care2.com": [2838], "mobot.net": [7549], "support.levo.com": [9275], "courscrypto.org": [3716], "trafficmaxx.de": [16655], "login.ubuntu.com": [17102], "search.vodafone.co.nz": [17812], "demand-driver.com": [4346], "witopia.net": [18278], "www.leiajung.org": [9237], "cdn-net.com": [2917], "www.ncats.nih.gov": [11052], "nbnco.com.au": [10876], "www.pin.harvard.edu": [7219], "app-de2.resrc.it": [13599], "www.bux.cz": [19029], "www.medleyads.com": [10200], "playerauctions.com": [12803], "*.invitemedia.com": [8326], "gss.civilservice.gov.uk": [19066], "internetessentials.com": [19300], "v.somethingawful.com": [15130], "myuw.uw.edu": [17077], "fedbizopps.gov": [5714], "nh.loggn.de": [9555], "magaza.bilio.com": [1875], "www.walkit.com": [19745], "www.defuse.ca": [4316], "stats.thermitic.net": [16348], "www.privatevpn.com": [13095], "csmm.engineering.osu.edu": [11760], "crbug.com": [3768], "forum.chroniclesofgeorge.com": [16259], "beo.piratenpartei.de": [12721], "www.statistics.gov.uk": [19625], "www.mysliderule.com": [10818], "cinemanow.com": [3147], "www.digboston.com": [4466], "secure.thebodyshop.co.uk": [16250], "community.coinbase.com": [3402], "rvlution.net": [13481], "ask-inc.com": [16665], "leadership.opm.gov": [11654], "voicedailydeals.com": [17497], "bitlove.org": [2000], "popularmechanics.com": [12921], "stj-now.s-msn.com": [14059], "h5.m.taobao.com": [15952], "s2member.com": [14065], "www.faxbigbrother.com": [5695], "freedomonlinecoalition.com": [6171], "bluetoad.com": [2137], "www.mypack.ncsu.edu": [11492], "www.ceskaposta.cz": [2974], "iosafe.com": [8337], "aeolusproject.org": [680], "*.fluctishosting.com": [5950], "share.oculusvr.com": [11722], "www.uchicago.edu": [17246], "www.in-disguise.com": [8024], "bin.mailgun.net": [9884], "ssrc.food.gov.uk": [19187], "axs.yts.to": [18623], "www.vorpal.io": [17844], "bulletinoftheschoolofmedicine.wustl.edu": [17993], "*.fbhexpo.com": [5627], "www.erowid.com": [5351], "www.friedhoff.org": [6212], "www.lessig2016.us": [9260], "onclickads.net": [11824], "validlab.de": [7114], "taxii.mitre.org": [10459], "*.kickapps.com": [8876], "kentico.com": [8853], "*.archives-ouvertes.fr": [1168], "*.mybcvs.ch": [1655], "theme2.status.net": [15437], "data.com": [4173], "aldi.hu": [299], "blog.litespeedtech.com": [9458], "bookshare.org": [2205], "static1.money.pl": [10547], "londondrugs.com": [9579], "ru.thinksteroids.com": [9737], "m.ask.fm": [1261], "test7.gsb.bva.bund.de": [5716], "calendar.csail.mit.edu": [9749], "www.enfuseconf.com": [7006], "www.gefpmis.org": [8259], "www.aldi.lu": [299], "i.nuseek.com": [11582], "yt-dl.org": [18744], "cals.cornell.edu": [3676], "mail.lumiere.ens.fr": [4930], "mail.rotherham.gov.uk": [13979], "*.blog.gustavus.edu": [7026], "email.dynect.net": [4835], "developer.axonix.com": [1476], "acuityscheduling.com": [504], "amnesty.ch": [959], "www.piraten-schwaben.de": [12716], "www.tsoshop.co.uk": [15864], "app.snipcart.com": [15037], "mail.lsbu.ac.uk": [9098], "communitydirectory.kirklees.gov.uk": [8916], "mad.tv2.dk": [15880], "*.alice.de": [810], "wiki.eigenlab.org": [19151], "roffey.org": [13947], "www.oderland.se": [11723], "www.screenit.com": [14407], "bccla.org": [1505], "*.snacktv.de": [15022], "mathworks.com": [10066], "cshall.alipay.com": [817], "www.thalia.ch": [16171], "utilityservices.no.citrix.com": [3178], "mozillians.org": [10664], "*.instructables.com": [8198], "stylehatch.co": [15551], "www.hypeshell.com": [14160], "storage.pardot.com": [12399], "*.jobvite.com": [8602], "autodiscover.asus.com": [357], "www.fixmystreet.com": [5895], "email.ucsc.edu": [17305], "www.mail-tester.com": [9870], "wonderlandmovies.de": [18412], "office365.com": [11745], "*.phone-analytics.com": [12634], "woodgreenshop.org.uk": [18419], "x1.xingassets.com": [18574], "angular-gantt.com": [1019], "blog.vidyard.com": [17705], "www.zoomerang.com": [18903], "*.digium.com": [4510], "www.minfil.org": [10403], "tweetmeme.com": [16870], "dot.kde.org": [8718], "nanoengineering.ucsd.edu": [16939], "static.www.turnto.com": [16842], "moveon.org": [10631], "shop.dft.gov.uk": [19116], "www.bleachbit.org": [19007], "democracy.plymouth.gov.uk": [19500], "console.qtcloudservices.com": [13316], "adpe.csod.com": [1427], "netcologne.de": [11188], "curry.uvt.nl": [16445], "cdn.rivals.com": [19553], "www.websitealive10.com": [18149], "etd.ohiolink.edu": [11762], "cloudcracker.com": [3284], "www.gawker.com": [6476], "jujucharms.com": [8670], "system.data.sqlite.org": [14163], "www.scottbrand.com": [14397], "www.hashtalk.org": [7224], "www.crz.gov.sk": [14972], "i.technoportal.ua": [16039], "*.userfox.com": [17434], "www.zxidp.org": [18770], "store.nvidia.com": [10985], "www.redmine.org": [13697], "poweredbyprogress.progress.com": [13132], "www.xenvps.com": [18559], "benefactor.stanford.edu": [15383], "www.interactivemediaawards.com": [8238], "www.orkut.com.br": [12110], "akademy2008.kde.org": [8718], "www.telepigeon.com": [16092], "webmail.kn.vutbr.cz": [17522], "help-es-eu.nike.com": [11401], "*.storage.googleapis.com": [6839], "www.takecontrolbooks.com": [15914], "static.chefkoch.de": [3058], "www.marx.org": [10042], "*.militarysuper.gov.au": [10395], "mail.haskell.org": [7229], "ap2.pccu.edu.tw": [12220], "www.hdnux.com": [7271], "certificatedetails.com": [19050], "badge.waffle.io": [17944], "plantcommunity.de": [12775], "uk.icecat.biz": [7914], "*.tudelft.nl": [4327], "*.litmuscdn.com": [9472], "deaddrops.com": [4249], "listes.renater.fr": [13764], "images-4.gog.com": [6365], "wiki.bnc4free.com": [2163], "cdn.wcdc.xfinity.com": [19784], "onlineservices.glasgow.gov.uk": [6699], "security.dxw.com": [4817], "psmprogram.gov.au": [13211], "ccc.shareit.com": [14669], "shopatron.com": [14724], "prx.org": [12292], "www.w00tads.com": [17886], "a4.ucsd.edu": [16939], "projecteuler.net": [13134], "www.sevenoaks.gov.uk": [14638], "forum.parallels.com": [12392], "korndesign.com": [8988], "*.hmv.co.jp": [7086], "dmp.scot.nhs.uk": [10913], "fashionara.com": [5667, 5668], "*.pcboc.com": [2750], "static.seagm.com": [14096], "www.oftc.net": [11622], "logbuch.c-base.org": [2492], "www.userscape.com": [17431], "*.openas.org": [12030], "www.brandfolder.com": [2283], "invitemedia.com": [8326], "www.awp.is": [1292], "vefir.hi.is": [7065], "yabs.yandex.by": [18648], "streams.museter.com": [10712], "www.hurleymc.com": [7628], "www.radware.com": [13524], "baselland.ch": [19648], "*.moot.it": [10581], "www2.adm.ku.dk": [17248], "media.shaw.ca": [14687], "451research.com": [145], "www.youtube.com.jo": [18709], "events.osrfoundation.org": [11912], "api.prospecteye.com": [13163], "www.telegram.org": [16080], "image.www.gametracker.com": [6443], "4plebs.org": [161], "mitstory.mit.edu": [9749], "developer.here.com": [7326], "fixubuntu.com": [5897], "ria.ua": [13426], "www.wacken.com": [17942], "partner.vxcp.de": [17625], "artemis.net": [1229], "gifyo.com": [6643], "www.magix.com": [9708], "www.cypherpunk.at": [2696], "ask.wireshark.org": [18369], "slipfire.com": [14965], "netpay.cmbchina.com": [2626], "finra.org": [5824], "modcloth.com": [10511], "login.rz.htwg-konstanz.de": [7113], "barkbox.com": [1670], "www.blockexplorer.nu": [2084], "www.corporatedomains.com": [3683], "timesrecordnews.com": [16465], "*.filecloud.io": [5798], "newyear.aktivix.org": [771], "www.fodevarewatch.dk": [5977], "risk.io": [13901], "vanwinkles.com": [17553], "fazekas.hu": [5697], "gamestarmechanic.com": [6441], "blockspring.com": [2098], "www.astreea.ens.fr": [4930], "sitewranglers.freedesktop.org": [6126], "login.entrust.net": [5304], "owa.nottingham.ac.uk": [11528], "ca-pca.fr": [2507], "canvas.andover.edu": [12623], "www.aerofs.com": [688], "streams.twitch.tv": [16888], "*.bu.edu": [2237], "reiner-sct.com": [13747], "www.bger.ch": [18996], "images.marketing.eloqua.com": [5179], "nmugroup.com": [10942], "*.optimix.asia": [7697], "www.thecompassionclub.org": [16261], "flashback.org": [5905], "ifrype.com": [4742], "dpmc.gov.au": [4076], "nae.edu": [11075], "cloudinary.com": [3307], "tb.popcash.net": [12905], "*.targetimg3.com": [15961], "reportingproject.net": [13785], "www.serverpros.com": [13018], "*.data.com": [4173], "pinterest.com": [12699], "static-freedomusainc1.netdna-ssl.com": [1438], "successfactors.com": [15572], "www.formkeep.com": [6041], "www.itpc.uillinois.edu": [16960], "mysociety.co.uk": [10785], "www.bprc.osu.edu": [11760], "sticker.yadro.ru": [18631], "benthamsgaze.org": [1780], "www.netways.de": [11259], "www.youtube.com.mx": [18709], "uefidk.com": [17113], "*.precharge.net": [13017], "subscribeonline.co.uk": [4720], "prod.lists.apple.com": [1120], "liteaddress.org": [9460], "bureau.koumbit.net": [8998], "centralcontent.fco.gov.uk": [5558], "espace.cern.ch": [2575], "hsph.harvard.edu": [7219], "brenet.de": [2296], "www.cmbchina.com": [2626], "emailnew.azet.sk": [1481], "cybercompex.org": [3967], "intranet.projectplace.com": [13143], "verisign.se": [17623], "madstein.at": [9842], "*.turbosquid.com": [16836], "intra.thm.de": [15811], "api.huobi.com": [7624], "www.cax.com": [2912], "login.gawker.com": [6476], "f.fastcompany.net": [5681], "www.dnsstuff.com": [4070], "www.moi.gov.sa": [14306], "pearsoncomputing.net": [12507], "*.secure.nonprofitsoapbox.com": [11467], "pl.support.tomtom.com": [16540], "update.cabinetoffice.gov.uk": [2701], "extremetech.com": [18859], "*.business.gov.au": [2453], "www.hostit.hu": [7536], "*.airbnb.de": [749], "tmbizonline.tm.com.my": [16083], "ces.williams.edu": [18316], "www.wildcardcorp.com": [18305], "umanitoba.ca": [17260], "zoneedit.com": [18893], "ledgerwallet.com": [9220], "guest-services.desy.de": [4399], "*.passwordbox.com": [12433], "lane.stanford.edu": [15383], "mysite.somerset.gov.uk": [15127], "gadgets.stanford.edu": [15383], "living.livingsocial.com": [9517], "education.github.com": [6680], "*.ep.elitem.net": [5168], "ubuntu-mate.org": [17098], "status.clever.com": [3238], "aber.ac.uk": [414], "www.winbond.com": [18334], "app.ipswich.gov.uk": [8351], "hopstudios.com": [7491], "www.icpen.org": [7689], "cfnproposals.bnl.gov": [19009], "*.dkb.de": [4039], "onpatient.com": [11883], "p100-sandbox.itunes.apple.com": [1120], "trustly.com": [16796], "i.jd.com": [8423], "www.eth0.nl": [5376], "fedorahosted.org": [5727], "lawnandlandscape.com": [9180], "www.serverdensity.com": [14614], "reimanpub.com": [13746], "my.f-secure.com": [5541], "www.minaterm.com": [10406], "i3.c.dk": [2498], "www.offensivebits.com": [11737], "leedsportal.leeds.ac.uk": [17318], "www.upc.nl": [17002], "www.tele2.se": [16070], "www.lens.io": [9254], "wiki.parabola.nu": [12384], "deviantart.com": [4423], "visit.mashery.com": [10046], "*.idg.de": [7945], "www.tandemcal.com": [15941], "jpgmag.com": [8448], "nardikt.ru": [7325], "terminal.com": [16122], "support-stg.norton.com": [11505], "www.4sysops.com": [164], "on.iptorrents.com": [7798], "nnovgorod.rt.ru": [13469], "lavabit.com": [9172], "www.digitabportals.com": [4479], "www.static.rtbf.be": [14011], "*.dotster.com": [4705], "www.hs.fi": [7312], "www.broadbandconvergent.com": [2349], "www.broadbandmap.gov": [2350], "adminlogon.liveperson.net": [9493], "mit-amps.mit.edu": [9749], "www.queervids.com": [13349], "*.rainn.org": [13396], "*.atos.net": [1330], "cp-hv.myvps.jp": [10795], "www.gipsprojekt.de": [6335], "*.theresumator.com": [16235], "ncsu.edu": [11492], "sylvancompany.com": [15714], "www.doncaster.gov.uk": [4678], "www.confirmsubscription.com": [3571], "*.look.co.uk": [9594], "ecitizen.maidstone.gov.uk": [9868], "www.seethisinaction.com": [14555], "guitarcenter.com": [7015], "ouaza.com": [12137], "www.postnord.se": [12950], "www.gmo.com": [6341], "mco-pb.sensic.net": [11581], "imgjam1.jamendo.com": [8502], "battle.net": [1693], "sk.libreoffice.org": [9311], "civilservice.gov.uk": [19066], "onenetworkdirect.com": [11838], "fdo.osgeo.org": [11669], "thewatershed.com": [16320], "login.yahoo.co.jp": [18640], "status.contentful.com": [3614], "retrace.fedoraproject.org": [5726], "www.movietickets.com": [10639], "www.rubicondev.com": [14015], "fairssl.se": [5631], "*.orange.jobs": [12086], "registrar.illinois.edu": [17258], "*.e.final-score.com": [5818], "www.cxcloud.com": [3949], "www.burningshed.com": [2442], "gallery.technet.microsoft.com": [10364], "app-de-lb1.resrc.it": [13599], "i3.services.social.microsoft.com": [10364], "www.hardenedbsd.org": [7204], "*.lfchosting.com": [9073], "acswebcontent.acs.org": [929], "catalog.data.gov": [4175], "www.gdata.nl": [6293], "wral.com": [17929], "chat.icq.com": [7690], "www.landalskilife.*": [18490], "mail.de": [9873], "powerhousemuseum.com": [13001], "www.pixid.ideeinc.com": [16468], "cars.webjet.com.au": [18124], "staging.ghosteryenterprise.com": [6630], "www.jwchat.org": [8466], "twattle.net": [16863], "m.rabota.yandex.kz": [18652], "frenchtv.to": [6196], "*.ebayrtm.com": [4874], "kaisersysteme.com": [8769], "www.animallaw.info": [1023], "www.thersa.org": [16306], "dia-grid.org": [4440], "modern.ie": [10519], "www.maps.me": [9976], "bugreport.apple.com": [1120], "tinybytes.me": [16479], "www.cfmueller.de": [2698], "tersesystems.com": [16132], "www.uscyberchallenge.org": [17416], "mywot.net": [10798], "www.srdrvp.com": [15340], "stealthnet.de": [15448], "*.exeter.ac.uk": [17251], "blog.flurry.com": [5953], "projectdent.com": [13137], "khms2.google.com": [6841], "paccoweb.poste.it": [12965], "northdevon.greenparty.org.uk": [6925], "jobvite.com": [8602], "mulberrymail.com": [10692], "cardealerstudy.com": [1531], "*.desk.com": [4392], "xtrazone.sso.bluewin.ch": [2157], "support.whitepages.com": [18257], "*.ultimatepoker.com": [17130], "www.kickassapp.com": [8875], "www.lantmateriet.se": [9152], "www.zoklet.net": [18888], "www.airbnb.*": [749], "joppix.com": [8630], "nanren.taobao.com": [15952], "vmwareblogs.com": [17496], "*.cambridge.org": [2768], "re-pear.com": [1123], "*.ecom.attccc.com": [364], "img.xcart.com": [18505], "www.simplepickup.com": [14823], "owa.calderdale.gov.uk": [2735], "gefpmis.org": [8259], "wiki.hacdc.org": [7131], "max.sup.live.com": [9483], "upv.cz": [17009], "static-curse.cursecdn.com": [3934], "votervoice.net": [17847], "boltbus.com": [2193], "www.toggl.com": [16531], "itservices.stanford.edu": [15383], "colino.net": [3416], "*.smartmoney.com": [11321], "*.surveymonkey.com": [15659], "de.cryptonator.com": [3883], "sandbox.evernote.com": [5450], "www.universe2.us": [17228], "sds.kent.ac.uk": [17317], "www.firstclassmagazine.se": [5876], "www.ebi.ac.uk": [5039], "consultation.rbkc.gov.uk": [19538], "vishakeswwwabcde.trappedinsidethecomputer.net": [16685], "thalys.com": [16172], "suggestqueries.google.com": [6834], "*.lsu.edu": [9623], "ideas.spkcn.com": [15279], "kic.f-secure.com": [5541], "www.kachingle.com": [8764], "ruderich.org": [14023], "www.bsi-fuer-buerger.de": [5711], "3m.com": [127], "content.fandango.com": [5652], "faqs.channel5.com": [2998], "s3.qhimg.com": [13302], "www.ibl.liu.se": [9084], "gac.edu": [6301], "knowledge.verisign-grs.com": [17623], "mail.piware.de": [10034], "*.ftccomplaintassistant.gov": [5607], "uptrack.ksplice.com": [9026], "doesburg.nl": [11132], "kemerovo.rt.ru": [13469], "*.wordpress.com": [18429], "pages03.net": [14802], "cdn.bnc4free.com": [2164], "colossal.com": [16373], "www.rz.ruhr-uni-bochum.de": [14031], "yellow.local.ch": [9536], "theconversation.edu.au": [16262], "download.srcclr.com": [15337], "www.movabletype.com": [10629], "www.umail.utah.edu": [17288], "monoprice.com": [10561], "www.castle-technology.co.uk": [2891], "peterborough.gov.uk": [12594], "www.secureupload.eu": [14497], "mtac.org": [9799], "it.calameo.com": [2731], "status.playstation.com": [12795], "conference.inc.com": [8041], "history.google.com": [6834], "*.dbapp.netdna-cdn.com": [4108], "esr.org": [5009], "*.systemcenteradviser.net": [15760], "www.minix.org": [10428], "spreadshirt.pl": [15300], "fbapp12.tchibo.de": [15985], "redirect1903.tagcommander.com": [15904], "needmorehits.com": [11133], "movie.jd.com": [8423], "itradecimb.com.sg": [2607], "aisinfo.wustl.edu": [17993], "static.sourceforge.jp": [15174], "m.groupon.com": [6974], "assets-9gag-lol.9cache.com": [212], "app.webinspector.com": [18040], "expertbail.com": [289], "alumni.wustl.edu": [17993], "guldencoin.com": [7016], "www.chip-digital.de": [2594], "*.sinefa.com": [14846], "panel.research-int.se": [15843], "ssl3.ovh.net": [12173], "youmail.com": [18706], "www.flownative.com": [5947], "americanheart.org": [945], "youngstonewall.org.uk": [19793], "cdn.images.reevoo.com": [13715], "en-la.dict.cc": [4455], "www.iwork.com": [7878], "anker.to": [1026], "www.onlinelaw.wustl.edu": [17993], "profil.netzclub.net": [19432], "www.csctrustedsecure.com": [2667], "nsec.osu.edu": [11760], "quote.comparethemarket.com": [3511], "bitnz.com": [1940], "www.thijsalkema.de": [16353], "www.capitaller.ru": [2820], "www.hertz.co.kr": [7364], "netstat.green.ch": [19228], "nzz-libro.ch": [19450], "blog.zerties.org": [18847], "*.uni-kl.de": [17170], "survey.o2active.cz": [16075], "www.lea.manchester.gov.uk": [9944], "uic.edu": [17231], "sweb.ru": [15208], "aan.amazon.co.uk": [917], "attach.s8bbs.com": [14639], "nieuws.kuleuven.be": [8816], "www.echo24.cz": [19146], "www.firstlook.org": [5878], "www.htc.com": [7103], "www.ksh.hu": [8750], "encryptr.org": [5239], "www.redbull.*": [13666], "forms.sign-up.to": [14780], "static.gay-torrents.net": [6480], "*.expedia.com": [5503], "www.unifiedtracking.com": [17185], "*.icann.org": [7682], "icc-cpi.int": [7684], "coopathome.ch": [3645], "www.espanol.smokefree.gov": [19603], "ask.hover.com": [7566], "*.compteur.fr": [3529], "www.svb.com": [14791], "fi.somethingawful.com": [15130], "maxymiser.com": [10098], "app.upc.cz": [17000], "www.micahflee.com": [10340], "*.spreadshirt.no": [15300], "ssl11.ovh.net": [12173], "www.freecycle.org": [6162], "tenderapp.com": [4933], "pamnews.com": [12351], "osgeo4w.osgeo.org": [11669], "www.iais.fraunhofer.de": [6112], "sso.skrill.com": [14919], "www.myshazam.com": [10817], "unop.uk": [17363], "fifengine.de": [5573], "www.moat.com": [10484], "www.mooc-list.com": [9777], "account2.lego.com": [9068], "connect.stripe.com": [15525], "events.lugons.org": [9108], "fastwebhost.com": [5679], "www.theeventdiva.com": [16189], "*.mxcdn.net": [10218], "forum.1and1.com": [51], "www.avropa.se": [1456], "glasneost.neos.eu": [10899], "www.springfiles.com": [15305], "planet-energy.de": [12759], "ads.flatdy.com": [5943], "forum.percona.com": [12557], "www.biology.wustl.edu": [17993], "csr.osu.edu": [11760], "business.idg.se": [7705], "c2.popads.net": [12902], "rem.co": [13756], "eth-0.nl": [5376], "www.blogmint.com": [2110], "giving.mit.edu": [9749], "shop.seagate.com": [14437], "*.ebuzzing.de": [5044], "gficloud.com": [6321], "vxstream-sandbox.com": [17882], "public.era.nih.gov": [11052], "captcha.360.cn": [106], "amnistia.cl": [976], "5.darkroom.shortlist.com": [14734], "*.shopmania.com": [14717], "www.faq-o-matic.net": [5658], "inbenta.com": [8037], "*.jariangibson.com": [8520], "frwp.org": [18296], "depolitiezoekt.nl": [11132], "www.newhumanist.org.uk": [19433], "aartdevos.dk": [397], "www.toorcon.net": [16557], "riemann.unizar.es": [17356], "static03.vg.no": [17484], "account.nasuni.com": [11040], "autodiscover.leeds.ac.uk": [17318], "alpha.fortnite.com": [6057], "blocktogether.com": [2088], "web.theplatform.com": [16229], "www.thenanfang.com": [16300], "www.coderouge.co": [3375], "imgrind.com": [7758], "secure3.convio.net": [3630], "downloads.f5.com": [5546], "www.give.stanford.edu": [15383], "www.amnestyusa.org": [975], "forum.pokemon-world-online.net": [12856], "floek.net": [5937], "www.collingsfoundation.org": [3433], "www.becker.wustl.edu": [17993], "www.muenchen.tv": [10687], "www.publishpartner.com.au": [19526], "omaze.info": [11790], "truelife.com": [16769], "myiu.org": [10808], "ngvpn30.nvidia.com": [10985], "www.mtsystems.ch": [10680], "www.leadership.opm.gov": [11654], "www.scanmyserver.com": [14332], "cz.support.tomtom.com": [16540], "www.lubin82.pl": [9640], "www.fogcreek.com": [5980], "www.webcampus.wilmu.edu": [18320], "encyclopediadramatica.se": [5241], "personalsavings.americanexpress.com": [935], "drupal.bnl.gov": [19009], "*.viewablemedia.net": [17770], "elements.yandex.com": [18651], "lookinglocal.gov.uk": [9599], "now.msn.com": [9796], "photos-d.ak.fbcdn.net": [5700], "assets.sunlightfoundation.com": [15601], "systemoverlord.com": [15761], "www.hertz247.nl": [7355], "community.rallydev.com": [13537], "www.askmonty.org": [1262], "widgets.yandex.by": [18648], "consumentenbond.nl": [3597], "verisign.es": [17623], "eweb.research.sunysb.edu": [15480], "secure.dict.cc": [4455], "blog.whitehatsec.com": [18250], "www.confex.com": [3567], "www.webmetrics.com": [18133], "pt.gamigo.com": [6445], "he.net": [7629], "*.jugendschutzprogramm.de": [8665], "smuxi.net": [15016], "static.video.sky.com": [14924], "www.joomla-security.de": [19324], "developer.cisco.com": [3162], "issues.oasis-open.org": [11606], "img.disc-soft.com": [4540], "community.mobify.com": [10494], "adview.pl": [666], "www.hertz.fi": [7344], "*.afrinic.net": [709], "cdns.tblsft.com": [15984], "stats.slideshare.net": [14962], "help.filefactory.com": [5789], "www.youtube.com.co": [18709], "csob.sk": [3896], "comscore.com": [3453], "juju.ubuntu.com": [17102], "fr.tickengo.ca": [16411], "www.icsi.berkeley.edu": [17240], "*.accountonline.com": [462], "help.fanli.com": [5655], "sprites.pcpro.co.uk": [12228], "recapthelaw.org": [13643], "www.fotisl.com": [6072], "darkroom.sundayworld.com": [15598], "faxrobot.com": [5696], "nismonline.org": [11082], "*.navy.gov.au": [13998], "comodo.net": [3504], "memberplus.raiffeisen.ch": [13527], "www.apianalytics.com": [331], "linux.lu": [9405], "m.vodafone.de": [17814], "thumbnails.domaintools.com": [4660], "*.2co.com": [83], "isen.com": [8366], "svn.debian.org": [4275], "www.centos.org": [2942], "www.york.cuny.edu": [18695], "apne.ws": [1920], "twib.anz.com": [315], "www.geoclub.de": [6543], "file.wx.qq.com": [13285], "www.friendlyduck.com": [6214], "www.qsli.com": [13288], "vote.fsfe.org": [5601], "ksgexecprogram.harvard.edu": [7219], "getintoteaching.education.gov.uk": [19149], "svn.dd-wrt.com": [19106], "9kbhkort.kk.dk": [8730], "*.huggies.com.au": [7602], "www.competitionsbywyndham.com.au": [18490], "myworldofwork.co.uk": [19422], "www.giffgaff.com": [19217], "gdatasoftware.co.uk": [6293], "support2.seagate.com": [14437], "amp.collective.com": [3423], "*.wsodcdn.com": [10024], "www.21.co": [71], "bcn.ch": [19333], "northern-indymedia.org": [11500], "www.replicaperfection.com": [13778], "mt.cpanel.net": [2653], "www.wustlconnections.com": [17994], "huffingtonpost.ca": [7599], "www.vtunnel.com": [17520], "forum.eurofurence.org": [5414], "marijuanamajority.com": [9994], "go.goldbachpoland.bbelements.com": [1713], "erowid.org": [5351], "www.publeaks.nl": [13202], "www.unibet.com.au": [17179], "ai.stanford.edu": [15383], "secure.zamzar.com": [18784], "www.glasgow.gov.uk": [6699], "www-am.bahn.de": [1617], "www.information.dk": [8123], "i4.social.microsoft.com": [10364], "webfwd.org": [18062], "get.proxpn.com": [19519], "www.opencart.com": [11927], "cygnus.cc.kuleuven.be": [8816], "blogs.nasa.gov": [10869], "jugger.mail.ru": [9874], "api.autopilothq.com": [1431], "blogblog.com": [2107], "www.virk.dk": [17741], "webmail.merton.gov.uk": [10287], "vereinigte-ikk.de": [17619], "www.snellman.net": [15035], "ascenderfonts.com": [1246], "misweb.cc.ntu.edu.tw": [10971], "*.use-enco.com": [17420], "lang.moodle.org": [10575], "www.dbs.com.hk": [4010], "www.canon.co.uk": [2809], "forms.camden.gov.uk": [2772], "calomel.org": [2755], "www.fontmarketplace.com": [5989], "www.gameladen.com": [6432], "www.kagi.com": [8766], "origin.com": [12106], "www.armservers.com": [18428], "wwf.ch": [19768], "support.gemalto.com": [6513], "i04.c.aliimg.com": [813], "www.jako-o.at": [8496], "w.piratenpartei.at": [12720], "www.f5.com": [5546], "mondovino.ch": [3645], "www.impsec.org": [8010], "baekdal.com": [1613], "banking.postbank.de": [12959], "www.geef.nl": [6491], "ndi.org": [10893], "www.globalperspectivescanada.com": [6729], "answers.com": [1060], "mendeley.com": [10257], "www.cosmopolitan.com": [3690], "www.youtube.co.hu": [18709], "m.alloresto.fr": [19328], "opera.yandex.com.tr": [18649], "files.goenergetix.com": [5251], "www.regonline.com": [13725], "nsupdate.info": [11552], "www.ideel.com": [7931], "oeis.org": [11619], "images.politico.com": [12873], "karriere.hofer.at": [299], "shiftpayments.com": [14703], "profile.microsoft.com": [10364], "api.centili.com": [2952], "diario.org.aalto.fi": [390], "www.remnux.org": [13414], "gic1.mycdn.me": [10824], "wiki.openmw.org": [11954], "www.goaldet.com": [6801], "*.mylikes.com": [10768], "voting.pirateparty.org.au": [12713], "hosthorde.com": [7513], "www.visiba.com": [17769], "askmonty.org": [1262], "www.eecs.umich.edu": [17266], "myftp.utechsoft.com": [10831], "support.maximintegrated.com": [10096], "vacareers.va.gov": [17019], "4.cn": [140], "billboard.com": [1879], "preview.catalog.usmint.gov": [17062], "sakhalin.rt.ru": [13469], "masterh6.adriver.ru": [534], "cmdata.groupon.com": [6974], "correctiv-upload.org": [3684], "live.ssl-cert-shop.com": [14174], "wangpu.taobao.com": [15952], "cironline.org": [2614], "subscribe.technologyreview.com": [16041], "allianz-fuer-cybersicherheit.org": [852], "www.irf.se": [7814], "www.ul.ie": [16978], "motherboard-cdn-assets.vice.com": [17667], "mirror.umd.edu": [17263], "altika-saral.cnes.fr": [2634], "www.familie.bremen.aok.de": [317], "www.stuvel.eu": [15549], "www.techmeme.com": [16029], "www.directorystore.com": [4533], "myupc.upc-cablecom.ch": [19716], "gobby.debian.org": [4275], "secure.reichelt.de": [13744], "*.fabricatorz.com": [5618], "mpv.io": [10671], "branchprod.harland.net": [7207], "nfb.org": [11096], "www.allmyvideos.net": [857], "usi.edu": [17232], "www.host.co.id": [7504], "forums.mumble.info": [10702], "vk.nomovok.com": [11465], "stage-mobioinsider.com": [10504], "dodspeople.com": [4631], "cedia.org.ec": [2570], "static.hwpi.harvard.edu": [7219], "www.palemoon.org": [12341], "www-cdn2.pardot.com": [12399], "iti.illinois.edu": [17258], "tnation.t-nation.com": [15773], "silverstripe.org": [19591], "pda-passport.yandex.by": [18648], "civilcontingencies.dundeecity.gov.uk": [4801], "www.securityinabox.org": [14533], "*.junostatic.com": [8684], "investments.osu.edu": [11675], "ssl.sntech.de": [14146], "www.poivy.com": [12854], "www.c3pb.net": [2499], "ticket.yandex.com.tr": [18649], "apertureinsight.com": [13226], "avatar.guim.co.uk": [7014], "techoffice.sedo.de": [14540], "service.ess.apple.com": [1120], "iospp.org": [7780], "cdnetworks.co.jp": [2560], "t.track.youmix.co.uk": [18715], "forum.young-pirates.eu": [18716], "divdata.ucsc.edu": [17305], "m.heise.de": [7288], "thalia.ch": [16171], "www.loggly.com": [9554], "www.dhl.de": [4034], "craft-staging.atomicobject.com": [1327], "www.cpj.org": [2646], "www.pro.whitepages.com": [18257], "www.nttcoms.com": [10967], "www.palfrader.org": [12342], "*.uninett.no": [17192], "www.suite.io": [15586], "www.forsec.nl": [6051], "utt.mtvnn.com": [17661], "carmenconnect.osu.edu": [11675], "www.datasaveslives.eu": [4185], "radioshackwireless.com": [13515], "careerdean.com": [2842], "employers.sciencecareers.org": [14379], "support.musixmatch.com": [10723], "entertainment.guardianoffers.co.uk": [7003], "training.partner.microsoft.com": [10364], "www.aucklandairport.co.nz": [1343], "startssl.com": [15407], "www.naughtydog.com": [11107], "www.utl.pt": [16033], "housing.usc.edu": [17278], "*.evga.com": [4986], "www.myuhc.com": [10793], "ams-ix.net": [983], "images.playmates.com": [12808], "www.gameoapp.com": [6433], "kkbox.com": [8731], "cdn01.gitter.im": [6684], "impactsoftcompany.com": [8012], "www.riaa.com": [13427], "informahealthcare.com": [8120], "visitorboost.com": [1464], "mosis.com": [9778], "iab.net": [8236], "real-debrid.com": [13621], "*.legolas-media.com": [9235], "blog.thijsalkema.de": [16353], "blog.3sat.de": [135], "www.campiba.be": [2782], "previous.delicious.com": [4328], "webmail.prq.se": [12289], "brannerlibrary.stanford.edu": [15383], "www.prezident.sk": [14972], "identity.uillinois.edu": [16960], "www.trysuperbgreencoffee.com": [16806], "gju4.alicdn.com": [805], "www.jhu.edu": [16296], "img.zumzi.com": [18923], "codeux.com": [3382], "a5.mzstatic.com": [10852], "register.guardian.co.uk": [7000], "tz.mail.ru": [9874], "www.lg.com": [9077], "www.rage4.com": [19531], "media.salon.com": [14253], "betterbills.com.au": [1823], "haitao.smzdm.com": [15017], "eeiccourses.engineering.osu.edu": [11760], "nejm.org": [11304], "spogo.co.uk": [15285], "www.edge.org": [5078], "www.duodecim.fi": [4804], "*.amazonaws.com": [915], "img.jp.fujitsu.com": [6245], "*.on-web.fr": [11807], "visahq.com": [17762], "2shared.com": [98], "www.malcontentsgambit.com": [9921], "mediciglobal.com": [10190, 10191], "www.ebankingmasicuro.ch": [4870], "docs.npmjs.com": [11539], "webinspector.com": [18040], "www.uni-heidelberg.de": [17174], "resellers.trustico.com": [16794], "www.browsermob.com": [2375], "ecosia.org": [5063], "fbhexpo.com": [5627], "pr.co": [13007], "www.dmesg.gr": [4598], "dxw.com": [4817], "www.mercyships.org": [10282], "hackerspaces.org": [7151], "www.kirsle.net": [8918], "giocarecoltempo.ffs.ch": [15693], "icm.aexp-static.com": [678], "vacanteen.va.gov": [17019], "www.mynomadesk.com": [11463], "nventio.com": [11589], "www.penango.com": [12531], "www.weebly.com": [18178], "www.boxpn.com": [2260], "www.sodiumshop.com": [15084], "atlatszo.hu": [1322], "returnpath.com": [13833], "www.rbu.sh": [13594], "shop.web.de": [18050], "ruby-toolbox.com": [14017], "jethrocarr.com": [8560], "owa.nexus.ox.ac.uk": [17271], "whitelabel.domaintools.com": [4660], "imagestore2.boomerang.com": [2209], "tuitam.pl": [15872], "dynu.com": [4836], "theskoop.ca": [14917], "sexkompas.net": [14643], "*.oberlin.edu": [11698], "resources.cisnet.cancer.gov": [2805], "wasilczyk.pl": [17995], "s1.c4tw.net": [2505], "assets.vice.com": [17667], "www.serverbase.ch": [19583], "cars.mail.ru": [9874], "www.rollbar.com": [13958], "www.etarget.hu": [5371], "cimjsea.osu.edu": [11760], "investor.logmein.com": [9549], "*.herokuapp.com": [7332], "www.nationalreview.com": [11073], "azhca.org": [382], "watford.greenparty.org.uk": [6925], "linuxdays.cz": [9409], "civicrm.org": [3200], "parallel.illinois.edu": [17258], "*.vpnsearch.net": [17504], "www.internap.co.jp": [8254], "store.comcast.com": [3461], "apps.usa.gov": [17029], "yeswescan.org": [13207], "www.russianamericancompany.com": [14046], "acdd.tk": [3533], "www.tonybianco.com.au": [16547], "mj.taobao.com": [15952], "www.httpswatch.nz": [7109], "seals.trust-guard.com": [16780], "www.webhostingtalk.com": [18039], "kimberly-clark.com.*": [8889], "projectgus.com": [19522], "newsletters.cnes.fr": [2634], "careers.11main.com": [20], "www.etreshop.com": [5393], "backoffice.efinancialcareers.com": [4911], "intux.de": [8308], "wiki.urel.berkeley.edu": [17240], "www.ps3crunch.net": [12296], "ads.lucidmedia.com": [9643], "manager.bigv.io": [1855], "jiagu.360.cn": [106], "info-slhc-pp.web.cern.ch": [2575], "www.malwarebytes.org": [9929], "www.integrity.pt": [8203], "*.intel.co.uk": [8205], "www.youtube.rs": [18709], "deri.ie": [11064], "bankia.es": [19769], "ennl.dict.cc": [4455], "bedrockformssgnext.msn.com": [9796], "www.debian-handbook.info": [16186], "darkmail.info": [4153], "data.sankakucomplex.com": [19563], "www.open-pc.com": [19461], "secure.coinjar.com": [3397], "www.perens.com": [2377], "www.nykeurope.com": [10995], "calderdale.greenparty.org.uk": [6925], "*.reactos.org": [13604], "yaha.no": [18633], "www.sozialismus.info": [15202], "a.alipayobjects.com": [817], "mail.bnl.gov": [19009], "archive-it.org": [1163], "*.charityweb.net": [3011], "www.ruxconbreakpoint.com": [14050], "brandweeruitgeest.nl": [2287], "forge.typo3.org": [15894], "www.debuggex.com": [4278], "www.servery.cz": [18938], "www.thiswebhost.com": [16372], "image4.pubmatic.com": [13194], "pariuri.pariloto.net": [7732], "genymotion.com": [6534], "psal.cs.drexel.edu": [4758], "www.perfect-privacy.com": [12558], "go.yourkarma.com": [18728], "groups.eiffel.com": [5124], "kb.mit.edu": [9749], "www.praktica.de": [14358], "genius-download.itunes.apple.com": [1120], "telemetry.com": [16089], "zorpia.com": [18909], "herox.com": [7330], "spankwire.com": [15217], "axess.stanford.edu": [15383], "rimg07.rl0.ru": [13914], "registrierung.mail.de": [9873], "usenetjunction.com": [17426], "www.terneuzen.nl": [11132], "win-sv.jp": [18326], "*.pspudb.com": [5224], "www.charnwood.gov.uk": [3015], "magix-online.com": [9706], "www.x.ai": [19780], "smacktls.com": [14136], "www.watkins.edu": [18003], "health.mail.ru": [9874], "sweetslyrics.com": [15684], "www.tinyletter.com": [16482], "dataquest.io": [4184], "researchonline.org.uk": [19547], "*.artemisinternet.com": [1229], "cia.com": [2599], "salvetas.just-eat.ie": [19328], "www.sourcefabric.com": [15179], "www.nevistashealth.com": [11287], "dev.opera.com": [12050], "www.hostcentric.com": [7509], "flex.msn.com": [9796], "*.bucketexplorer.com": [2386], "images.dailystar.co.uk": [4112], "creative.rev2pub.com": [13838], "virginmedia.ie": [17738], "www.youtube.me": [18709], "*.quantserve.com": [13341], "*.openf2.org": [11936], "www.samsclass.info": [14263], "www.youtube.ma": [18709], "review.typo3.org": [15894], "www.toogl.com": [16552], "janraincapture.com": [8508], "weswap.com": [18024], "razoo.com": [13589], "intand.com": [15941], "ausgamers.com": [1373], "www.nesterov.pw": [11167], "www.techpowerup.com": [16049], "www.userecho.com": [17430], "docs.vid.me": [17676], "meeting.jd.com": [8422], "ncpw.gov": [11078], "jobs.dailymail.co.uk": [4120], "bitcoin.in": [1961], "www.ecodissident.net": [5053], "www.youtube.ru": [18709], "bitcoin.it": [1961], "perfectaudience.com": [12559], "www.multiply.com": [10701], "lplogin.com": [569], "storage.proboards.com": [13110], "zipy.co.il": [18875], "sso.mims.com": [9743], "www.escrow.com": [5354], "pubkey.is": [13201], "www.milkandmore.co.uk": [10396], "*.final-score.com": [5818], "worlde-idcongress.com": [18459], "www.mips.com": [9745], "donate.creativecommons.org": [3778], "www.motesplatsen.se": [10605], "pix.dsp.io": [4787], "heeseminars.engineering.osu.edu": [11760], "accertify.mzstatic.com": [10852], "hobbyking.com": [7438], "www.cede.fd.ulaval.ca": [17229], "svn.opendnssec.org": [10941], "bplaced.net": [19015], "www.legal.nodejitsu.com": [11453], "rasp.yandex.by": [18648], "medportal.wustl.edu": [17993], "mail.yandex.by": [18648], "plurk.com": [12828], "m.jh.edu": [8435], "*.swin.edu.au": [15690], "www.jasig.org": [8522], "workplacegiving.co.uk": [18443], "spaces.internet2.edu": [8279], "people.icq.com": [7690], "bankieren.triodos.nl": [16740], "www.engineering.leeds.ac.uk": [17318], "frieslandcampina.nl": [2782], "www.glx-dock.org": [16856], "www.riigiteataja.ee": [13889], "www.s2mediadigital.com": [14063], "admin.pingone.com": [12683], "www.packetstormsecurity.com": [12317], "uam.osu.edu": [11760], "wolverhampton.gov.uk": [18404], "community.obi.at": [19452], "www.enaza.ru": [5230], "bva.bund.de": [5716], "jastusa.com": [19316], "drive2.ru": [4762], "www.ksplice.com": [9026], "www.richannel.org": [13993], "knol.google.com": [6834], "elegantthemes.com": [5156], "tv.yandex.by": [18648], "pirateparty.ca": [12712], "onamae.com": [11821], "www.zendylabs.com": [18826], "opensource.apple.com": [1120], "pirateparty.ch": [12284], "*.atipso.com": [1314], "www.fightcopyrighttrolls.com": [18428], "alestic.com": [792], "m.baidu.com": [1619], "hola.org": [7445], "wordpress.mattermark.com": [19387], "yandex.kz": [18652], "pictshare.net": [12670], "oeffentliche.de": [11730], "us.hunchlab.com": [7618], "lolware.net": [9570], "www.rt.ru": [13469], "www.teracomconsulting.com": [16120], "www2.redbridge.gov.uk": [13682], "enphase.com": [5283], "*.becuonlinebanking.org": [2175], "www.surge.sh": [15653], "ftc.gov": [5720], "volcanoecigs.com": [17826], "s3.netdialog.se": [11221], "www.app.net": [1102], "www.solarlist.com": [15110], "imodules.com": [7762], "www.themuse.com": [16344], "quandl.com": [13335], "secureimages.capwiz.com": [2825], "www.faradaysec.com": [5659], "root.cern.ch": [2574], "securityledger.com": [14531], "www.earth.leeds.ac.uk": [17318], "*.tron-delta.org": [15855], "dwheeler.com": [4092], "my.vidahost.com": [17679], "www.cpanel.guru": [2652], "kr.forums-stage.oracle.com": [12082], "pkptest.projects.dm.id.lv": [4043], "syndication.traffichaus.com": [16652], "www.yoursav.me": [18738], "shellspace.net": [14696], "dailykos.com": [4117], "www.efficios.com": [5111], "epilepsyfoundation.org": [5321], "*.dlnws.com": [4596], "hmrc.gov.uk": [7084], "cambridgesoft.com": [2769], "debian.netcologne.de": [11188], "cdn.kaltura.com": [8775], "projects.iq.harvard.edu": [7219], "a.abcnews.go.com": [240, 241], "zillow.com": [18865], "*.gcmcomputers.com": [6310], "3dqcaseofmonth.stanford.edu": [15383], "my.supermedia.com": [15615], "hipeac.org": [7388], "iwantmytvmagazine.com": [10973], "gchq-careers.co.uk": [6307], "thegrommet.com": [16286], "blog.buttercoin.com": [2463], "hostvoice.com": [7519], "*.jigsaw.com": [8569], "hospital.uic.edu": [17231], "startvaekst.virk.dk": [17741], "wiki.musicbrainz.org": [10717], "gephi.org": [6551], "www.hbbtv.org": [7252], "careers.appnexus.com": [1109], "www.ybitcoinmagazine.com": [18612], "*.amd.co.at": [924], "lists.apple.com": [1120], "www.miniatur-wunderland.de": [10422], "www.greentechmedia.com": [6938], "dornsifecms.usc.edu": [17278], "www.buckeyevoices.osu.edu": [11760], "www.milonic.com": [10400], "static1.worldcat.org": [18446], "www.outbrain.com": [12150], "asset-3.java.net": [8525], "search.jd.com": [8423], "golfdigestschool.com": [3551], "www.waffle.io": [17944], "www.designcentersearch.com": [3551], "spiderwebsoftware.com": [15270], "api.usersnap.com": [17439], "e-cegjegyzek.hu": [4849], "deekayen.net": [4295], "www.upforit.com": [785], "techinasia.com": [16025], "webmail.crick.ac.uk": [19090], "metrika.ya.ru": [18626], "awstrust.com": [376], "*.customer.io": [3941], "registrar.osu.edu": [11760], "www.powernotebooks.com": [13004], "lonap.net": [9093], "hrg.stanford.edu": [15383], "swiss.com": [15695], "www.bohoomil.com": [2180], "epls.gov": [5324], "www.thesixthaxis.com": [16237], "louderthanwar.com": [9618], "twitthis.com": [16887], "casetext.com": [2878], "cdn.gstreamer.com": [6393], "moxiesoft.com": [10645], "www.shrew.net": [19589], "kastatic.org": [8873], "ip.e-paycapita.com": [19132], "blogs.com": [14319], "www.dixcart.com": [4586], "www.casecurity.org": [2519], "zenmate.com": [18818], "www.lb.ca": [9186], "releng.netbsd.org": [11184], "www.hideki.hclippr.com": [7051], "pic3.zhimg.com": [18856], "myheritage.com.br": [10834], "www.wemineltc.com": [18200], "*.cheetahmail.com": [3055], "ps3media.ign.com": [7730], "ciscoconnectcloud.com": [3163], "coverageforall.org": [3729], "www.gigadesign.cz": [14589], "service.tmall.com": [19684], "stackapps.com": [15359], "gsfacket.se": [6990], "collections.stanford.edu": [15383], "analytics.clickdimensions.com": [3244], "sso.openx.com": [11995], "www.bitcoin.it": [1961], "www.gurulabs.com": [7024], "usa.kaspersky.com": [8806], "auth-key.berkeley.edu": [17240], "sc-css-1.omniture.com": [11803], "www.bitcoin.in": [1961], "t-online.de.intellitxt.com": [15774], "s2.adformdsp.net": [585], "help.relevate.ru": [13753], "*.com.edgesuite.net": [760], "seller-taojinbi.taobao.com": [15952], "datart.cz": [4008], "www.unsearcher.org": [17368], "jdc.jd.com": [8423], "cp.adform.net": [585], "*.searchmobius.org": [9770], "www.lorea.org": [9610], "www.mousejack.com": [19410], "www.streetartutopia.com": [15520], "wildapricot.org": [18304], "files.adform.net": [585], "ripe64.ripe.net": [13895], "blog.nodejitsu.com": [11453], "blog.pythonanywhere.com": [13273], "transition.fcc.gov": [5709], "*.ace.advertising.com": [662], "wallst.com": [10024], "help.virginmedia.com": [17737], "git.io": [6672], "www.ncp-e.com": [19428], "filezilla-project.org": [5796], "ar.cloudflare.com": [3285], "ipsos-mori.com": [8349], "planning.hillingdon.gov.uk": [7410], "rockcreek.com": [13935], "ntst.umd.edu": [17263], "bangalore.btcxindia.com": [1575], "www.xiscosoft.org": [18576], "allunmanaged.com": [841], "www.gnu.io": [6356], "www.otumm.com": [12135], "www.tahoe-lafs.org": [15910], "www.easycruit.com": [5023], "*.financialtrans.com": [5827], "wpdev.ms": [17928], "mochajs.org": [10508], "cdn.stg.comcast.com": [3461], "image.wemakeprice.com": [18198], "english-country-cottages.co.uk": [18490], "paymoapp.com": [12482], "gacs.food.gov.uk": [19187], "www.cope-it.at": [3648], "www.support.sensiolabs.com": [14586], "adda-sr.org": [268], "style.sndcdn.com": [15032], "www.thewebindex.org": [16322], "aspi.org.au": [1401], "transact.nab.com.au": [10865], "top.de": [16558], "artemisinternet.com": [1229], "scan5.coverity.com": [3734], "secure.engineering.wustl.edu": [17993], "lequipe.avanis.fr": [1440], "cca.kaspersky.com": [8806], "secure.cdgcommerce.com": [2552], "*.distributed.net": [4575], "www.html5test.com": [7107], "prous01.netforumpro.com": [11190], "whdn.williamhill.com": [18315], "sii.itcelaya.edu.mx": [7845], "www.bitnami.com": [2011], "tacar.org": [15782], "mnmdl.engineering.osu.edu": [11760], "johnrennie.net": [18428], "static.ocamlcore.org": [11613], "d.pr": [3995], "kitchenriddles.com": [8922], "*.passionfruitads.com": [12429], "professionals.bikeability.org.uk": [18998], "*.gambleid.com": [6412], "cdn8.iconfinder.com": [7921], "aberdeenshire.gov.uk": [412], "www.encrypt.today": [5234], "cpanel.guru": [2652], "netzguerilla.net": [11276], "www.alertlogic.com": [790], "encuestas.unizar.es": [17356], "bb.wustl.edu": [17993], "s.huobi.com": [7624], "cy.libreoffice.org": [9311], "brasshouse.birmingham.gov.uk": [19000], "d3.ru": [3998], "www.vbg.de": [17468], "www.data.gov": [4175], "www.abclinuxu.cz": [404], "www.news.dk": [11324], "develop100.com": [8226], "bigrecycle.portsmouth.gov.uk": [19508], "www.denx.de": [4028], "partipirate.ch": [12284], "collectd.org": [3421], "*.blogspot.com": [2107], "html5test.com": [7107], "www.smack.co.uk": [14977], "bewerbungen.bvg.de": [1582], "rade.tk": [3533], "fisolive.cheshireeast.gov.uk": [3067], "osdc.com.au": [11665], "penguinwebhosting.com": [12535], "www.markonefoods.com": [10025], "www.gnosis.cx": [6760], "www.fabianfranke.de": [5616], "blog.codesion.com": [3379], "*.iaapa.org": [7661], "hub.funio.com": [6265], "dosomething.org": [4687], "ecpic.gov": [4880], "*.utoronto.ca": [17344], "webmail.riverbed.com": [13907], "static.addtoany.com": [573], "osmi.osu.edu": [11760], "www.gcdn.org": [6306], "hartvoorinternetvrijheid.nl": [7215], "rockstargames.com": [13942], "ucw.cz": [17215], "tradedirect.ch": [19333], "www.evozi.com": [5469], "*.postdocs.ucsf.edu": [17302], "gitshell.com": [6683], "*.inq.com": [16608], "static2.avast.com": [1444], "www.moinmo.in": [10533], "eu-gmtdmp.gd1.mookie1.com": [10576], "bugs.kali.org": [8771], "totse2.com": [16607], "cmeonline.wustl.edu": [17993], "*.tekgoblin.com": [16064], "kybernetes.htwk-leipzig.de": [7114], "cyberphoto.se": [3963], "*.bannersnack.com": [1652], "jazz.co": [8536], "autohits.vn": [1415], "nationalarchives.gov.uk": [11065], "www.stream.cz": [15516], "rusi.org": [13480], "www.yuri.org.uk": [18752], "ssl.com": [14176], "www.yandex.com.tr": [18649], "www.license.avira.com": [1449], "www.usnwc.edu": [17047], "www.weert.nl": [11132], "anonymous-proxy-servers.net": [8623], "tr.chaturbate.com": [3035], "geti2p.net": [6593], "integrity.st": [8204], "www.adaptavist.com": [555], "www.dgdr.cnrs.fr": [6195], "mmos.websitealive.com": [18149], "sittard-geleen.nl": [11132], "smart-dsl.net": [19601], "selfhost.de": [14567], "dynamicweb.it": [4826], "ubjobs.buffalo.edu": [17297], "www.deaddrops.com": [4249], "pass.yandex.com": [18651], "*.newsday.com": [11341], "social.microsoft.com": [10364], "plant-world-seeds.com": [12774], "www.kuix.de": [9032], "images.deciduouspress.com.au": [4282], "akincludes.okccdn.com": [11770], "broadband-forum.org": [2348], "media1.break.com": [2297], "semabuzz.com": [14100], "www.sakittome.com": [5308], "alt-sheff.org": [871], "skandiabanken.no": [14895], "*.bluefly.com": [2147], "layer-ads.de": [14063], "volatilesystems.com": [17825], "www.ciscolive.com": [3165], "www.billettservice.no": [16421], "www.skepticalscience.com": [14904], "www.corelan.be": [3675], "swca.org": [14206], "www.ikk-suedwest.de": [7749], "eurodns.com": [5406], "www.carlsbad.org": [2855], "www.ogr.uillinois.edu": [16960], "www.etarget.ro": [5372], "www.sharideangelo.com": [14681, 14682], "js.hs-analytics.net": [7097], "www.inkbunny.net": [8148], "travelrepublic.co.uk": [16695], "realrobothigh.com": [13628], "docs.codehaus.org": [3370], "api.xrel.to": [18589], "torguard.net": [16567], "c-mid.live.com": [9483], "endpoint.com": [5243], "thesprawl.org": [15299], "op5.com": [11902], "forum.techidiots.net": [16028], "hosteuropegroup.com": [7502], "cpx.golem.de": [6819], "medistack.com": [10143], "img04.taobaocdn.com": [15953], "www.voicedailydeals.com": [17497], "syndication-o.twimg.com": [16877], "www.deepsec.net": [4298], "crypto.graphics": [3852], "bitmex.com": [1935], "www.ltradio.com": [9105], "sciencemag.org": [14382], "barnebys.co.uk": [1675], "bank.demdex.com": [4350], "img.bizrate-images.com": [2033], "campaign.usc.edu": [17278], "www.turnkeylinux.org": [16841], "services.nvidia.eu": [10984], "lifars.com": [9328], "www.360buy.com": [111], "www.iot.uk": [19302], "expedia.co.uk": [5503], "webmail.mayfirst.org": [10100], "htwk-alumni.de": [7114], "reviews.virginmobileusa.com": [17734], "aegee-enschede.nl": [276], "cart-products.ifixit.net": [7726], "*.madisonlogic.com": [9841], "files.yandex.com": [18651], "www.biostars.org": [1908], "rewards.thankyou.com": [16173], "koralle.htwk-leipzig.de": [7114], "eo-sso-idp.eo.esa.int": [5430], "www.overclockers.at": [12164], "pensions.southwark.gov.uk": [15196], "*.northerntool.com": [11501], "*.experian.experiandirect.com": [5506], "cal.leloop.org": [9191], "www.stop-ttip.org": [15482], "*.lyrk.de": [9687], "*.matrixgroup.net": [10078], "clouds.chromeexperiments.com": [3117], "static.slickdealscdn.com": [14958], "*.beender.co": [1750], "ampersandjs.com": [981], "app.codesion.com": [3379], "3kbhkort.kk.dk": [8730], "www.*.vba.va.gov": [17019], "www.attic-backup.org": [1338], "*.socallinuxexpo.org": [15047], "www.zooku.ro": [18899], "public.wolverhampton.gov.uk": [18404], "accesstojustice.gov.au": [455], "www.tizen.org": [16506], "partners.yandex.by": [18648], "projectsecretidentity.org": [13140], "dxdialog.wusm.wustl.edu": [17993], "incircle.com": [15851], "emailselfdefense.fsf.org": [5600], "i2.ooshirts.com": [11898], "faf.ornl.gov": [11693], "fas.org": [5723], "www.infosactu.com": [19291], "worldcubeassociation.org": [18453], "*.totalinvestor.co.uk": [16604], "js.live.net": [9482], "www.sintjansbrug.nl": [8513], "atlasofprejudice.com": [1320], "www.intellipoker.bg": [19298], "progress.com": [13132], "streak.com": [19632], "www.pjm.com": [12260], "meta.ifixit.com": [7727], "munchkin.marketo.net": [10015], "mybb.com": [10823], "amoena.fr": [979], "www.adacore.com": [548], "my.tmobile.com": [15834], "www.courseevalum.umd.edu": [17263], "www.demandstudios.com": [4344], "assured.se": [18967], "webaccess.uaa.alaska.edu": [17233], "archive.c3s.cc": [2500], "jf.alipay.com": [817], "www.oodaloop.com": [11652], "media.ccc.de": [2538], "braintreepaymentsolutions.com": [2274], "aises.osu.edu": [11760], "groceryserver.com": [6961], "*.backcountry.com": [1598], "fenxiao.taobao.com": [15952], "*.sched.org": [14348], "static.wistia.com": [18377], "mbdetox.com": [9720], "www.feedjit.com": [5737], "help.habbo.fi": [7122], "www.globalsign.*": [6718], "*.thecutestsiteontheblock.com": [16184], "my.serverbase.ch": [19583], "photosynth.net": [12649], "www.ffrf.org": [6165], "clickfunnels.com": [3246], "decipherinc.com": [4283], "www.bruteforce.gr": [2379], "www.libreoffice.org": [9311], "fantlab.ru": [5657], "fpjintel.com": [5590], "www.plannedparenthood.org": [12772], "www.decryptedmatrix.com": [4290], "www.pjrc.com": [12261], "edge.avangate.net": [1439], "sarava.org": [14299], "blog.cryptomilk.org": [3880], "qrpedia.org": [13311], "*.webhostinggeeks.com": [18103], "content6.flixster.com": [5933], "myutm.sophos.com": [15154], "signin.intel.com": [8209], "images.d.switchadhub.com": [15701], "vms.admin.qbrick.com": [13300], "ift.tt": [1920], "www.viaverio.com": [17660], "greenhost.nl": [6930], "static.returnpath.net": [13834], "www.tandfonline.com": [8118], "jobs.nih.gov": [11052], "www.ocf.berkeley.edu": [17240], "www.robtex.net": [13929], "www.oecd.org": [11617], "benmarshall.me": [1773], "www.hdh.ucsd.edu": [16939], "powermore.dell.com": [4335], "status.mailgun.com": [9883], "elitecastingnetwork.com": [5167], "coinbase.com": [3402], "www.projects.ed.ac.uk": [5067], "bw.com": [1584], "getsharex.com": [6604], "www.layer-ads.de": [14063], "county-star.com": [3710], "karaoke.spiel.tivi.de": [19800], "webindicator.siteheart.com": [14866], "cdnpi.pe": [2923], "webmaster.yandex.ua": [18656], "toyfoundry.net": [16619], "lh3.google.com.*": [6837], "1l-go.mail.ru": [9874], "www1.lowes.com": [9636], "connections.lsbu.ac.uk": [9098], "direct.ukash.com": [17122], "www.pingdom.com": [12687], "registration.xenegrade.com": [18562], "sso.origin.com": [12106], "percona.com": [12557], "*.chillicothegazette.com": [3078], "clicktracks.com": [9686], "dha.gov.au": [4308], "cpf.osu.edu": [11760], "www.privacyrights.org": [13093], "bugzilla.mozdev.org": [10647], "blog.gigya.com": [6659], "*.wolframalpha.com": [18397], "mijnsimpel.nl": [19592], "www.kaggle.com": [8765], "scripts.mit.edu": [9749], "list.tmall.com": [19684], "www.ian.com": [7895], "www.debianforum.de": [4276], "www.seatgeek.com": [14451], "www.selfharm.co.uk": [19579], "namebrightstatic.com": [11017], "www.spontex.org": [15287], "www.salesmanago.pl": [14069], "mecoffee.nl": [10131], "www.downloadverse.com": [4726], "www.publish.illinois.edu": [17258], "blogs.balabit.com": [1624], "www.ctovision.com": [2685], "asset-9.soupcdn.com": [15167], "mail.achelem.org": [473], "wiredforchange.com": [14254], "millionenklick.web.de": [18050], "service-now.com": [14620], "bugs.merproject.org": [10269], "www.ixicorp.com": [7880], "*.top.mail.ru": [9874], "*.surveydaddy.com": [15660], "trialpay.com": [16724], "production-assets.bundle.media": [2436], "stormpath.com": [15500], "wintiewin.com": [18331], "supermarket.chef.io": [3057], "luxhv.com": [9675], "www.ehrensenf.de": [5121], "okpartypix.com": [6525], "avatars.motherlessmedia.com": [10608], "api.digitalocean.com": [4495], "www.webhostlist.de": [18122], "css.cdn.static.malwarebytes.org": [9929], "www.opencorporates.com": [11931], "www0.maths.ox.ac.uk": [17271], "enroll.allclearid.com": [827], "torrentz.in": [16591], "support.cyberguerrilla.org": [3961], "tuts4you.com": [16854], "easyvoicebiometrics.com": [5031], "www.tue.nl": [15874], "ethack.org": [5377], "arsenalnews.net": [8878], "www.caseking.biz": [2875], "myaccount.wigan.gov.uk": [18286], "otalk.im": [12130], "www.onguardonline.gov": [11810], "spoki.lv": [15286], "www.ipsec.pl": [7806], "ubs.com": [16929], "policymic.com": [12866], "www.aberdeencity.gov.uk": [410], "www.kreativvonalak.hu": [9009], "secure.sparklabs.com": [15220], "www.allthingsd.com": [840], "clock.yandex.com.ua": [18650], "www.occrp.org": [11611], "wtop.com": [18478], "www.suse.com": [14199], "thuisbezorgd.nl": [16400], "www.youtube.com.bh": [18709], "slp3.somerset.gov.uk": [15127], "sbforge.org": [14081], "www.siteground.com": [14865], "amnesty.org.pl": [968], "www.virusbulletin.com": [17758], "tecnocode.co.uk": [16054], "s-3.com": [14056], "et00.xhcdn.com": [18514], "support.steadfast.net": [15446], "www.kinklink.me": [8907], "ngvpn34.nvidia.com": [10985], "www.weatherspark.com": [18035], "*.resellerratings.com": [13801], "www.freestateproject.org": [6152], "sport.bt.com": [1551], "scribit.com": [14415], "planning.lichfielddc.gov.uk": [19364], "itsm.polyu.edu.hk": [12891], "m.btcxindia.com": [1575], "help.vodafone.co.uk": [17813], "forum.bitmain.com": [2003], "cloudron.io": [3313], "s5.uicdn.net": [16958], "www.sediarreda.com": [19578], "www.blockspring.com": [2098], "prd1idz.cps.intel.com": [8209], "ftp.heanet.ie": [7269], "openculture.com": [12005], "password.1and1.co.uk": [53], "sophos.com": [15154], "firefox.com": [5859], "shop.canonical.com": [2810], "autos.aarp.org": [234], "www.cryoutcreations.eu": [3839], "activiti.alfresco.com": [802], "www.scandinavianphoto.fi": [14334], "www.todo.ly": [16527], "privacytools.io": [13091], "archive.data.jhu.edu": [16296], "*.igl.net": [2877], "sharedservices.dhs.gov": [4035], "ringrevenue.com": [13892], "pcreditprod.alipay.com": [817], "events.shirazlug.ir": [14708], "campact.de": [2777], "wheretobuy.seagate.com": [14437], "tags.unicefusa.org": [17182], "safeweb.norton.com": [11505], "status.github.com": [6680], "kldp.net": [8734], "www.finra.org": [5824], "direct.ilovefreegle.org": [7892], "flexport.com": [5915], "www.bountysource.com": [2248], "techcrunch.com": [18428], "travelplan.gr": [16694], "cart.sxsw.com": [15186], "www.otavamedia.fi": [12131], "*.dataminelab.com": [4183], "www.leader-manager.com": [9198], "www.oron.com": [12112], "communication.on24.com": [11638], "www.gigantic.com": [6651], "questions.medicare.gov": [19392], "myopenid.com": [10772], "www.bandcamp.mu": [1638], "cloudforce.com": [3303], "www.recipelab.org": [13644], "www.aaulan.dk": [399], "sac.se": [14217], "www.govhack.org": [6865], "enhanced.rsbac.org": [13455], "www.dannymekic.com": [4144], "www.disruptionlab.org": [4571], "goals.ar.gy": [1191], "newsletter.kabelmail.de": [8760], "l1.osdimg.com": [12119], "zilog.com": [18866], "oudesite.uvt.nl": [16445], "www.perform.illinois.edu": [17258], "seacloud.zaehlwerk.net": [18778], "3gwc-kbhkort.kk.dk": [8730], "haringey.greenparty.org.uk": [6925], "shop.ashampoo.com": [1250], "www1.guidancesoftware.com": [7006], "wales.greenparty.org.uk": [6925], "www.nordstromrack.com": [11480], "www.rhinosoft.com": [13861], "fuerzapopularpe.keikoperu.com": [6244], "sc0.rgstatic.net": [13422], "phoenix.de": [19492], "kf.qq.com": [13285], "www.reportlab.com": [13782], "insights.ubuntu.com": [17102], "edge4.digicert.com": [4473], "twitter.yfrog.com": [19791], "ilxgroup.com": [7753], "shareconnect.com": [14662], "*.refinedads.com": [13717], "wm4.pacific.net.au": [12321], "onsecure.gov.au": [11814], "www.acf.hhs.gov": [7062], "shop.pirati.cz": [12722], "osufoundation.org": [12099], "*.uni-passau.de": [17331], "www.nokia.co.uk": [11461], "nws.upc-cablecom.ch": [19716], "photos-h.ak.fbcdn.net": [5700], "libre.adacore.com": [548], "www.skylarkcloud.com": [14935], "gdata.nl": [6293], "build.cloud.unity3d.com": [17220], "webmail.claranet.pt": [3212], "www.mvptitle.com": [9807], "labs.igalia.com": [7950], "forums.code.org": [3345], "randomhouse.com": [13543], "www.mindmodeling.org": [10408], "www.apigee.com": [1093], "www.creatavist.com": [3770], "www.tum.de": [16824], "flixbus.de": [5931], "flixbus.dk": [5931], "okfn.org": [12017], "www.mozy.com": [10667], "static2.twilio.com": [16876]}}
\ No newline at end of file diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.sqlite b/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.sqlite deleted file mode 100644 index e69de29..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.sqlite +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js index 2d4b406..0fdc765 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js @@ -146,11 +146,15 @@ httpsEverywhere.toolbarButton = { 'https-everywhere', 'chrome://https-everywhere/skin/https-everywhere-24.png', nBox.PRIORITY_WARNING_MEDIUM, - [], - function(action) { - // see https://developer.mozilla.org/en-US/docs/XUL/Method/appendNotification#Notification_box_events - gBrowser.selectedTab = gBrowser.addTab(faqURL); - }); + [ + { accessKey: 'F', + callback: function(ntf, btn) { + // see https://developer.mozilla.org/en-US/docs/XUL/Method/appendNotification#Notification_box_events + gBrowser.selectedTab = gBrowser.addTab(faqURL); + }, + label: 'FAQ…', + } + ]); } gBrowser.removeEventListener("DOMContentLoaded", tb.handleShowHint, true); }, @@ -392,6 +396,10 @@ function open_in_tab(url) { recentWindow.delayedOpenTab(url, null, null, null, null); } +function httpse_chrome_opener(url, prefs) { + HTTPSEverywhere.chrome_opener(url, prefs); +} + // hook event for showing hint HTTPSEverywhere.log(DBUG, 'Adding listener for toolbarButton init.'); window.addEventListener("load", httpsEverywhere.toolbarButton.init, false); diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul index 6ba0810..2736b66 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul @@ -53,6 +53,7 @@ <menuitem type="checkbox" id="https-everywhere-counter-item" label="&https-everywhere.menu.showCounter;" oncommand="httpsEverywhere.toolbarButton.toggleShowCounter()" class="hide-on-disable"/> <menuseparator /> + <menuitem label="&https-everywhere.menu.donate_eff_imperative;" command="https-everywhere-menuitem-donate-eff-imperative" /> <menuitem label="&https-everywhere.menu.observatory;" command="https-everywhere-menuitem-observatory" /> <menuitem label="&https-everywhere.menu.about;" command="https-everywhere-menuitem-about" /> </menupopup> @@ -67,12 +68,14 @@ oncommand="toggleEnabledState();" /> <command id="https-everywhere-menuitem-viewAllRules" oncommand="open_in_tab('https://www.eff.org/https-everywhere/atlas/');" /> + <command id="https-everywhere-menuitem-donate-eff-imperative" + oncommand="open_in_tab('https://supporters.eff.org/donate/support-https-everywhere');" /> <command id="https-everywhere-menuitem-about" - oncommand="HTTPSEverywhere.chrome_opener('chrome://https-everywhere/content/about.xul');" /> + oncommand="httpse_chrome_opener('chrome://https-everywhere/content/about.xul');" /> <command id="https-everywhere-menuitem-observatory" - oncommand="HTTPSEverywhere.chrome_opener('chrome://https-everywhere/content/observatory-preferences.xul', 'chrome,centerscreen,resizable=yes');" /> + oncommand="httpse_chrome_opener('chrome://https-everywhere/content/observatory-preferences.xul', 'chrome,centerscreen,resizable=yes');" /> <command id="https-everywhere-menuitem-donate-eff" - oncommand="open_in_tab('https://www.eff.org/donate');" /> + oncommand="open_in_tab('https://supporters.eff.org/donate/support-https-everywhere');" /> <command id="https-everywhere-menuitem-donate-tor" oncommand="open_in_tab('https://www.torproject.org/donate');" /> <command id="https-everywhere-menuitem-ruleset-tests" |