diff --git a/client/src/components/Dashboard/BlockedDomains.js b/client/src/components/Dashboard/BlockedDomains.js
index 423757a2..3818f0d0 100644
--- a/client/src/components/Dashboard/BlockedDomains.js
+++ b/client/src/components/Dashboard/BlockedDomains.js
@@ -7,7 +7,7 @@ import Card from '../ui/Card';
import Cell from '../ui/Cell';
import Popover from '../ui/Popover';
-import { getTrackerData } from '../../helpers/whotracksme';
+import { getTrackerData } from '../../helpers/trackers/trackers';
import { getPercent } from '../../helpers/helpers';
import { STATUS_COLORS } from '../../helpers/constants';
diff --git a/client/src/components/Dashboard/QueriedDomains.js b/client/src/components/Dashboard/QueriedDomains.js
index 0486e46f..51a21ec6 100644
--- a/client/src/components/Dashboard/QueriedDomains.js
+++ b/client/src/components/Dashboard/QueriedDomains.js
@@ -7,7 +7,7 @@ import Card from '../ui/Card';
import Cell from '../ui/Cell';
import Popover from '../ui/Popover';
-import { getTrackerData } from '../../helpers/whotracksme';
+import { getTrackerData } from '../../helpers/trackers/trackers';
import { getPercent } from '../../helpers/helpers';
import { STATUS_COLORS } from '../../helpers/constants';
diff --git a/client/src/components/Logs/index.js b/client/src/components/Logs/index.js
index 843ef2c9..b533f190 100644
--- a/client/src/components/Logs/index.js
+++ b/client/src/components/Logs/index.js
@@ -6,7 +6,7 @@ import escapeRegExp from 'lodash/escapeRegExp';
import endsWith from 'lodash/endsWith';
import { formatTime } from '../../helpers/helpers';
-import { getTrackerData } from '../../helpers/whotracksme';
+import { getTrackerData } from '../../helpers/trackers/trackers';
import PageTitle from '../ui/PageTitle';
import Card from '../ui/Card';
import Loading from '../ui/Loading';
diff --git a/client/src/components/ui/Footer.js b/client/src/components/ui/Footer.js
index f9021438..512c3511 100644
--- a/client/src/components/ui/Footer.js
+++ b/client/src/components/ui/Footer.js
@@ -1,4 +1,5 @@
import React, { Component } from 'react';
+import { REPOSITORY } from '../../helpers/constants';
class Footer extends Component {
getYear = () => {
@@ -19,12 +20,12 @@ class Footer extends Component {
@@ -15,17 +30,13 @@ class Popover extends Component {
- This domain belongs to the Whotracksme database.
-
-
- Name: {data.name}
+ Found in the known domains database.
+ {tracker}
Category: {data.category}
-
+ {source}
diff --git a/client/src/helpers/constants.js b/client/src/helpers/constants.js
index 1af6c276..58c85380 100644
--- a/client/src/helpers/constants.js
+++ b/client/src/helpers/constants.js
@@ -15,3 +15,8 @@ export const STATUS_COLORS = {
green: '#5eba00',
yellow: '#f1c40f',
};
+
+export const REPOSITORY = {
+ URL: 'https://github.com/AdguardTeam/AdguardDNS',
+ TRACKERS_DB: 'https://github.com/AdguardTeam/AdguardDNS/tree/master/client/src/helpers/trackers/adguard.json',
+};
diff --git a/client/src/helpers/trackers/adguard.json b/client/src/helpers/trackers/adguard.json
new file mode 100644
index 00000000..d9b75ec4
--- /dev/null
+++ b/client/src/helpers/trackers/adguard.json
@@ -0,0 +1,59 @@
+{
+ "timeUpdated": "2018-10-14",
+ "categories": {
+ "0": "audio_video_player",
+ "1": "comments",
+ "2": "customer_interaction",
+ "3": "pornvertising",
+ "4": "advertising",
+ "5": "essential",
+ "6": "site_analytics",
+ "7": "social_media",
+ "8": "misc",
+ "9": "cdn",
+ "10": "hosting",
+ "11": "unknown",
+ "12": "extensions",
+ "101": "mobile_analytics"
+ },
+ "trackers": {
+ "facebook_audience": {
+ "name": "Facebook Audience Network",
+ "categoryId": 4,
+ "url": "https://www.facebook.com/business/news/audience-network"
+ },
+ "crashlytics": {
+ "name": "Crashlytics",
+ "categoryId": 101,
+ "url": "https://crashlytics.com/"
+ },
+ "flurry": {
+ "name": "Flurry",
+ "categoryId": 101,
+ "url": "http://www.flurry.com/"
+ },
+ "hockeyapp": {
+ "name": "HockeyApp",
+ "categoryId": 101,
+ "url": "https://hockeyapp.net/"
+ },
+ "firebase": {
+ "name": "Firebase",
+ "categoryId": 101,
+ "url": "https://firebase.google.com/"
+ },
+ "appsflyer": {
+ "name": "AppsFlyer",
+ "categoryId": 101,
+ "url": "https://www.appsflyer.com/"
+ }
+ },
+ "trackerDomains": {
+ "graph.facebook.com": "facebook_audience",
+ "crashlytics.com": "crashlytics",
+ "flurry.com": "flurry",
+ "hockeyapp.net": "hockeyapp",
+ "app-measurement.com": "firebase",
+ "appsflyer.com": "appsflyer"
+ }
+}
\ No newline at end of file
diff --git a/client/src/helpers/trackers/trackers.js b/client/src/helpers/trackers/trackers.js
new file mode 100644
index 00000000..485cd31b
--- /dev/null
+++ b/client/src/helpers/trackers/trackers.js
@@ -0,0 +1,103 @@
+import whotracksmeDb from './whotracksme.json';
+import adguardDb from './adguard.json';
+import { REPOSITORY } from '../constants';
+
+/**
+ @typedef TrackerData
+ @type {object}
+ @property {string} id - tracker ID.
+ @property {string} name - tracker name.
+ @property {string} url - tracker website url.
+ @property {number} category - tracker category.
+ @property {source} source - tracker data source.
+ */
+
+/**
+ * Tracker data sources
+ */
+export const sources = {
+ WHOTRACKSME: 1,
+ ADGUARD: 2,
+};
+
+/**
+ * Gets tracker data in the specified database
+ *
+ * @param {String} domainName domain name to check
+ * @param {*} trackersDb trackers database
+ * @param {number} source source ID
+ * @returns {TrackerData} tracker data or null if no matching tracker found
+ */
+const getTrackerDataFromDb = (domainName, trackersDb, source) => {
+ if (!domainName) {
+ return null;
+ }
+
+ const parts = domainName.split(/\./g).reverse();
+ let hostToCheck = '';
+
+ // Check every subdomain
+ for (let i = 0; i < parts.length; i += 1) {
+ hostToCheck = parts[i] + (i > 0 ? '.' : '') + hostToCheck;
+ const trackerId = trackersDb.trackerDomains[hostToCheck];
+
+ if (trackerId) {
+ const trackerData = trackersDb.trackers[trackerId];
+ const categoryName = trackersDb.categories[trackerData.categoryId];
+
+ return {
+ id: trackerId,
+ name: trackerData.name,
+ url: trackerData.url,
+ category: categoryName,
+ source,
+ };
+ }
+ }
+
+ // No tracker found for the specified domain
+ return null;
+};
+
+/**
+ * Gets the source metadata for the specified tracker
+ * @param {TrackerData} trackerData tracker data
+ */
+export const getSourceData = (trackerData) => {
+ if (!trackerData || !trackerData.source) {
+ return null;
+ }
+
+ if (trackerData.source === sources.WHOTRACKSME) {
+ return {
+ name: 'Whotracks.me',
+ url: `https://whotracks.me/trackers/${trackerData.id}.html`,
+ };
+ } else if (trackerData.source === sources.ADGUARD) {
+ return {
+ name: 'AdGuard',
+ url: REPOSITORY.TRACKERS_DB,
+ };
+ }
+
+ return null;
+};
+
+/**
+ * Gets tracker data from the trackers database
+ *
+ * @param {String} domainName domain name to check
+ * @returns {TrackerData} tracker data or null if no matching tracker found
+ */
+export const getTrackerData = (domainName) => {
+ if (!domainName) {
+ return null;
+ }
+
+ let data = getTrackerDataFromDb(domainName, adguardDb, sources.ADGUARD);
+ if (!data) {
+ data = getTrackerDataFromDb(domainName, whotracksmeDb, sources.WHOTRACKSME);
+ }
+
+ return data;
+};
diff --git a/client/src/helpers/whotracksmedb.json b/client/src/helpers/trackers/whotracksme.json
similarity index 64%
rename from client/src/helpers/whotracksmedb.json
rename to client/src/helpers/trackers/whotracksme.json
index 0cd3471b..122149a5 100644
--- a/client/src/helpers/whotracksmedb.json
+++ b/client/src/helpers/trackers/whotracksme.json
@@ -1,5 +1,5 @@
{
- "timeUpdated": "2018-10-12T11:02:05.407Z",
+ "timeUpdated": "2018-10-14T19:21:45.099Z",
"categories": {
"0": "audio_video_player",
"1": "comments",
@@ -18,5303 +18,6628 @@
"trackers": {
"google_analytics": {
"name": "Google Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.google.com/analytics/"
},
"doubleclick": {
"name": "DoubleClick",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.doubleclick.com"
},
"google": {
"name": "Google",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"googleapis.com": {
"name": "Google APIs",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.googleapis.com/"
},
"google_tag_manager": {
"name": "Google Tag Manager",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.google.com"
},
"facebook": {
"name": "Facebook",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.facebook.com"
},
"infonline": {
"name": "INFOnline",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www2.infonline.de/"
},
"google_adservices": {
"name": "Google AdServices",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"google_syndication": {
"name": "Google Syndication",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"amazon_web_services": {
"name": "Amazon Web Services",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"criteo": {
"name": "Criteo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.criteo.com/"
},
"appnexus": {
"name": "AppNexus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.appnexus.com/"
},
"adition": {
"name": "Adition",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://en.adition.com/"
},
"amazon_associates": {
"name": "Amazon Associates",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://aws.amazon.com/associates/"
},
"adform": {
"name": "Adform",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adform.com"
},
"scorecard_research_beacon": {
"name": "ScoreCard Research Beacon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.voicefive.com/"
},
"optimizely": {
"name": "Optimizely",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.optimizely.com/"
},
"twitter": {
"name": "Twitter",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://twitter.com"
},
"kaspersky-labs.com": {
"name": "Kaspersky Labs",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.kaspersky.com/"
},
"bing_ads": {
"name": "Bing Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adcenter.microsoft.com/"
},
"openx": {
"name": "OpenX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.openx.org/"
},
"youtube": {
"name": "YouTube",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"the_adex": {
"name": "The ADEX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.theadex.com/"
},
"yieldlab": {
"name": "Yieldlab",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.yieldlab.de/"
},
"rubicon": {
"name": "Rubicon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://rubiconproject.com/"
},
"nugg.ad": {
"name": "Nugg.Ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nugg.ad/"
},
"tradedesk": {
"name": "TradeDesk",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.thetradedesk.com/"
},
"tealium": {
"name": "Tealium",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.tealium.com/"
},
"adobe_audience_manager": {
"name": "Adobe Audience Manager",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.demdex.com/"
},
"pubmatic": {
"name": "PubMatic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.pubmatic.com/"
},
"index_exchange_": {
"name": "Index Exchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.casalemedia.com/"
},
"new_relic": {
"name": "New Relic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://newrelic.com/"
},
"addthis": {
"name": "AddThis",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.addthis.com/"
},
"akamai_technologies": {
"name": "Akamai Technologies",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"mediamath": {
"name": "MediaMath",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mediamath.com/"
},
"xplosion": {
"name": "xplosion",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.xplosion.de/"
},
"meetrics": {
"name": "Meetrics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.meetrics.de/"
},
"media_innovation_group": {
"name": "Media Innovation Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.themig.com/"
},
"bluekai": {
"name": "BlueKai",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.bluekai.com/"
},
"exactag": {
"name": "Exactag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.exactag.com"
},
"google_users": {
"name": "Google User Content",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"adomik": {
"name": "Adomik",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"adobe_dynamic_tag_management": {
"name": "Adobe Dynamic Tag Management",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"united_internet_media_gmbh": {
"name": "United Internet Media GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"emetriq": {
"name": "emetriq",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"adtech": {
"name": "ADTECH",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.adtechus.com/"
},
"outbrain": {
"name": "Outbrain",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"hotjar": {
"name": "Hotjar",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.hotjar.com/"
},
"atlas": {
"name": "Atlas",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://atlassolutions.com"
},
"at_internet": {
"name": "AT Internet",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.xiti.com/"
},
"aggregate_knowledge": {
"name": "Aggregate Knowledge",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.aggregateknowledge.com/"
},
"yahoo": {
"name": "Yahoo!",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"trusted_shops": {
"name": "Trusted Shops",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"taboola": {
"name": "Taboola",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.taboola.com"
},
"smart_adserver": {
"name": "SMART AdServer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.smartadserver.co.uk/"
},
"quantcast": {
"name": "Quantcast",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.quantcast.com/"
},
"adality_gmbh": {
"name": "adality GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"omniture__adobe_analytics_": {
"name": "Omniture (Adobe Analytics)",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.omniture.com/en/"
},
"yandex": {
"name": "Yandex",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"contact_impact": {
"name": "Contact Impact",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.contactimpact.de/"
},
"mbr_targeting": {
"name": "mbr targeting",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"krux_digital": {
"name": "Krux Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://kruxdigital.com/"
},
"pinterest": {
"name": "Pinterest",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://pinterest.com/"
},
"adscale": {
"name": "AdScale",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adscale.de/"
},
"moat": {
"name": "Moat",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.moat.com/"
},
"sizmek": {
"name": "Sizmek",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mediamind.com/"
},
"ligatus": {
"name": "Ligatus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ligatus.com/"
},
"webtrekk": {
"name": "Webtrekk",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.webtrekk.com/"
},
"chartbeat": {
"name": "ChartBeat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://chartbeat.com/"
},
"turn_inc.": {
"name": "Turn Inc.",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.turn.com/corp/"
},
"tapad": {
"name": "Tapad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tapad.com/ "
},
"exoclick": {
"name": "ExoClick",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://exoclick.com/"
},
"liveramp": {
"name": "LiveRamp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.rapleaf.com/"
},
"advertising.com": {
"name": "Advertising.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.platform-a.com/"
},
"xhamster": {
"name": "xHamster",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"plista": {
"name": "Plista",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.plista.com"
},
"netratings_sitecensus": {
"name": "NetRatings SiteCensus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nielsen-online.com"
},
"visual_website_optimizer": {
"name": "Visual Website Optimizer",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://visualwebsiteoptimizer.com/"
},
"vg_wort": {
"name": "VG Wort",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://tom.vgwort.de/portal/showHelp"
},
"buysellads": {
"name": "BuySellAds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://buysellads.com/"
},
"traffic_stars": {
"name": "Traffic Stars",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"brightroll": {
"name": "BrightRoll",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.brightroll.com/"
},
"rocket_fuel": {
"name": "Rocket Fuel",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://rocketfuelinc.com/"
},
"gravatar": {
"name": "Gravatar",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://en.gravatar.com/"
},
"zanox": {
"name": "Zanox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zanox.com/us/"
},
"roq.ad": {
"name": "Roq.ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.roq.ad/"
},
"pornhub": {
"name": "PornHub",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"drawbridge": {
"name": "Drawbridge",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.drawbrid.ge/"
},
"wikimedia.org": {
"name": "WikiMedia",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"crazy_egg": {
"name": "Crazy Egg",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://crazyegg.com/"
},
"conversant": {
"name": "Conversant",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.conversantmedia.eu/"
},
"integral_ad_science": {
"name": "Integral Ad Science",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adsafemedia.com/"
},
"econda": {
"name": "Econda",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.econda.de/"
},
"twiago": {
"name": "Twiago",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.twiago.com/"
},
"trafficjunky": {
"name": "TrafficJunky",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.trafficjunky.net/"
},
"dotomi": {
"name": "Dotomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dotomi.com/"
},
"jw_player": {
"name": "JW Player",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"paypal": {
"name": "PayPal",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.paypal.com"
},
"seeding_alliance": {
"name": "Seeding Alliance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://seeding-alliance.de"
},
"affilinet": {
"name": "affilinet",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.affili.net/"
},
"etracker": {
"name": "etracker",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.etracker.com/en/"
},
"lotame": {
"name": "Lotame",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.lotame.com/"
},
"juggcash": {
"name": "JuggCash",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.juggcash.com"
},
"liquidm_technology_gmbh": {
"name": "LiquidM Technology GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://liquidm.com/"
},
"eyeota": {
"name": "Eyeota",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.eyeota.com/"
},
"ebay": {
"name": "eBay Stats",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ebaypartnernetwork.com/files/hub/en-US/index.htmln progress "
},
"indeed": {
"name": "Indeed",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.indeed.com/"
},
"linkedin": {
"name": "LinkedIn",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sevenone_media": {
"name": "SevenOne Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"browser_update": {
"name": "Browser Update",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.browser-update.org/"
},
"intelliad": {
"name": "intelliAd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.intelliad.de/"
},
"wordpress_stats": {
"name": "WordPress",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://wordpress.org/extend/plugins/stats/"
},
"spotxchange": {
"name": "SpotXchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.spotxchange.com/"
},
"dataxu": {
"name": "DataXu",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dataxu.com/"
},
"liveinternet": {
"name": "LiveInternet",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "http://www.liveinternet.ru/"
},
"visual_revenue": {
"name": "Visual Revenue",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://visualrevenue.com/"
},
"stroer_digital_media": {
"name": "Stroer Digital Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"owa": {
"name": "OWA",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://oewa.at/"
},
"live_intent": {
"name": "Live Intent",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"flashtalking": {
"name": "Flashtalking",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.flashtalking.com/"
},
"alexa_metrics": {
"name": "Alexa Metrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.alexa.com/"
},
"heatmap": {
"name": "Heatmap",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://heatmap.me/"
},
"mouseflow": {
"name": "Mouseflow",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://mouseflow.com/"
},
"quantcount": {
"name": "Quantcount",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"digital_analytix": {
"name": "Digital Analytix",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.nedstat.com/"
},
"loggly": {
"name": "Loggly",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://loggly.com/"
},
"improve_digital": {
"name": "Improve Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.improvedigital.com/"
},
"doublepimp": {
"name": "DoublePimp",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.doublepimp.com/"
},
"pulsepoint": {
"name": "PulsePoint",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.contextweb.com/"
},
"v12_group": {
"name": "V12 Group",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"audience_science": {
"name": "Audience Science",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.audiencescience.com/"
},
"webtrends": {
"name": "Webtrends",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.webtrends.com/"
},
"google_trusted_stores": {
"name": "Google Shopping",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"m._p._newmedia": {
"name": "M. P. NEWMEDIA",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mp-newmedia.com/"
},
"parsely": {
"name": "Parsely",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"scarabresearch": {
"name": "Scarab Research",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.scarabresearch.com/"
},
"highwinds": {
"name": "Highwinds",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"typekit_by_adobe": {
"name": "Typekit by Adobe",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.adobe.com/"
},
"linkpulse": {
"name": "Linkpulse",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.linkpulse.com/"
},
"the_reach_group": {
"name": "The Reach Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.redvertisment.com"
},
"teads": {
"name": "Teads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://teads.tv/"
},
"cedexis_radar": {
"name": "Cedexis Radar",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.cedexis.com/products_radar.html"
},
"neory_": {
"name": "NEORY ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.neory.com/"
},
"ensighten": {
"name": "Ensighten",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.ensighten.com"
},
"kameleoon": {
"name": "Kameleoon",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.kameleoon.com/"
},
"stickyads": {
"name": "StickyAds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"disqus": {
"name": "Disqus",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "https://disqus.com/"
},
"ad4mat": {
"name": "ad4mat",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://ad4mat.info"
},
"weborama": {
"name": "Weborama",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://weborama.com/2/?l=en"
},
"soasta_mpulse": {
"name": "SOASTA mPulse",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.soasta.com/"
},
"ab_tasty": {
"name": "AB Tasty",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://en.abtasty.com"
},
"usabilla": {
"name": "Usabilla",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://usabilla.com/"
},
"otto.de": {
"name": "otto.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"pingdom": {
"name": "Pingdom",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.pingdom.com/"
},
"ve_interactive": {
"name": "Ve Interactive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.veinteractive.com"
},
"burda": {
"name": "BurdaForward",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"rhythmone_beacon": {
"name": "Rhythmone Beacon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"remintrex": {
"name": "Remintrex",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.remintrex.com/"
},
"smartclip": {
"name": "SmartClip",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"appdynamics": {
"name": "AppDynamics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.appdynamics.com"
},
"connexity": {
"name": "Connexity",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.connexity.com"
},
"advolution": {
"name": "Advolution",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.advolution.de"
},
"wywy.com": {
"name": "wywy",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://wywy.com/"
},
"m-pathy": {
"name": "m-pathy",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.m-pathy.com/"
},
"stripchat.com": {
"name": "stripchat.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"exelate": {
"name": "eXelate",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.exelate.com/"
},
"semasio": {
"name": "Semasio",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://semasio.com/"
},
"mixpanel": {
"name": "Mixpanel",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://mixpanel.com/"
},
"t-mobile": {
"name": "Deutsche Telekom",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"scene7.com": {
"name": "Adobe Dynamic Media (Scene7)",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ekomi": {
"name": "eKomi",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "http://www.ekomi.co.uk"
},
"sovrn": {
"name": "sovrn",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sovrn.com/"
},
"cpx.to": {
"name": "cpx.to",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"sharethis": {
"name": "ShareThis",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://sharethis.com/"
},
"spoteffect": {
"name": "Spoteffect",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"sitescout": {
"name": "SiteScout",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sitescout.com"
},
"kupona": {
"name": "Kupona",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.kupona-media.de/en/retargeting-and-performance-media-width-kupona"
},
"conative.de": {
"name": "CoNative",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.conative.de/"
},
"zopim": {
"name": "Zopim",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zopim.com/"
},
"tag_commander": {
"name": "Tag Commander",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.tagcommander.com/"
},
"mail.ru_group": {
"name": "Mail.Ru Group",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://mail.ru/"
},
"eroadvertising": {
"name": "EroAdvertising",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.ero-advertising.com/"
},
"sociomantic": {
"name": "Sociomantic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sociomantic.com/"
},
"tvsquared.com": {
"name": "TVSquared",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://tvsquared.com/"
},
"zononi.com": {
"name": "zononi.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"userlike.com": {
"name": "Userlike",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.userlike.com/"
},
"vkontakte_widgets": {
"name": "VKontakte",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://vk.com/developers.php"
},
"cdn13.com": {
"name": "cdn13.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"ad_spirit": {
"name": "Ad Spirit",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adspirit.de "
},
"aol_cdn": {
"name": "AOL CDN",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"buzzadexchange.com": {
"name": "buzzadexchange.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"gemius": {
"name": "Gemius",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.gemius.com"
},
"trustpilot": {
"name": "Trustpilot",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"net-metrix": {
"name": "NET-Metrix",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.net-metrix.ch/"
},
"bunchbox": {
"name": "Bunchbox",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"neustar_adadvisor": {
"name": "Neustar AdAdvisor",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.targusinfo.com/"
},
"datalogix": {
"name": "Datalogix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nextaction.net/"
},
"refined_labs": {
"name": "Refined Labs",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.refinedlabs.com"
},
"evidon": {
"name": "Evidon",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"nexeps.com": {
"name": "neXeps",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://nexeps.com/"
},
"routenplaner-karten.com": {
"name": "Routenplaner Karten",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.routenplaner-karten.com/"
},
"vibrant_ads": {
"name": "Vibrant Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vibrantmedia.com/"
},
"highwebmedia.com": {
"name": "highwebmedia.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"triplelift": {
"name": "TripleLift",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://triplelift.com/"
},
"estat": {
"name": "eStat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.mediametrie-estat.com/"
},
"bazaarvoice": {
"name": "Bazaarvoice",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.bazaarvoice.com/"
},
"blau.de": {
"name": "Blau",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.blau.de/"
},
"statcounter": {
"name": "Statcounter",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.statcounter.com/"
},
"popads": {
"name": "PopAds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.popads.net/"
},
"liveperson": {
"name": "LivePerson",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.liveperson.com/"
},
"contentpass": {
"name": "Contentpass",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.contentpass.de/"
},
"adap.tv": {
"name": "Adap.tv",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adap.tv/"
},
"adgoal": {
"name": "adgoal",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adgoal.de/"
},
"tns": {
"name": "TNS",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.tnsglobal.com/"
},
"brightcove": {
"name": "Brightcove",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://www.brightcove.com/en/"
},
"trbo": {
"name": "trbo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.trbo.com/"
},
"onesignal": {
"name": "OneSignal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"zendesk": {
"name": "Zendesk",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zendesk.com/"
},
"kiosked": {
"name": "Kiosked",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.kiosked.com/"
},
"alephd.com": {
"name": "alephd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.alephd.com/"
},
"24_7": {
"name": "[24]7",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.247-inc.com/"
},
"epoq": {
"name": "epoq",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.epoq.de/"
},
"madeleine.de": {
"name": "madeleine.de",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"myfonts_counter": {
"name": "MyFonts",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.myfonts.com/"
},
"nt.vc": {
"name": "Next Tuesday GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.nexttuesday.de/"
},
"radiumone": {
"name": "RadiumOne",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.radiumone.com/index.html"
},
"o2online.de": {
"name": "o2online.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.o2online.de/"
},
"zencoder": {
"name": "Zencoder",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"tripadvisor": {
"name": "TripAdvisor",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"imgur": {
"name": "Imgur",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"hurra_tracker": {
"name": "Hurra Tracker",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.hurra.com/en/"
},
"etahub.com": {
"name": "etahub.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"infectious_media": {
"name": "Infectious Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.infectiousdigital.com/"
},
"adroll": {
"name": "AdRoll",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adroll.com/"
},
"traffichaus": {
"name": "TrafficHaus",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.traffichaus.com"
},
"videology": {
"name": "Videology",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://videologygroup.com/"
},
"adup-tech.com": {
"name": "AdUp Technology",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adup-tech.com/"
},
"gigya": {
"name": "Gigya",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"signal": {
"name": "Signal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.signal.co/"
},
"161media": {
"name": "Platform161",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://platform161.com/"
},
"rackcdn.com": {
"name": "Rackspace",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.rackspace.com/"
},
"kxcdn.com": {
"name": "Keycdn",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.keycdn.com/"
},
"ixi_digital": {
"name": "IXI Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"iadvize": {
"name": "iAdvize",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.iadvize.com/"
},
"igodigital": {
"name": "iGoDigital",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://igodigital.com/"
},
"sharethrough": {
"name": "ShareThrough",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sharethrough.com/"
},
"vimeo": {
"name": "Vimeo",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"metrigo": {
"name": "Metrigo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://metrigo.com/"
},
"i-behavior": {
"name": "i-Behavior",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.i-behavior.com/"
},
"perfect_market": {
"name": "Perfect Market",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://perfectmarket.com/"
},
"marketgid": {
"name": "MarketGid",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mgid.com/"
},
"next_performance": {
"name": "Next Performance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nextperformance.com/"
},
"media_impact": {
"name": "Media Impact",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"soundcloud": {
"name": "SoundCloud",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://soundcloud.com/"
},
"akanoo": {
"name": "Akanoo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.akanoo.com/"
},
"findologic.com": {
"name": "Findologic",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.findologic.com/"
},
"are_you_a_human": {
"name": "Are You a Human",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://areyouahuman.com/"
},
"userreport": {
"name": "UserReport",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.userreport.com/"
},
"adara_analytics": {
"name": "ADARA Analytics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adaramedia.com/"
},
"kontextr": {
"name": "Kontextr",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"content_spread": {
"name": "Content Spread",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"visual_iq": {
"name": "Visual IQ",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"ciuvo.com": {
"name": "ciuvo.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.ciuvo.com/"
},
"adtriba.com": {
"name": "AdTriba",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.adtriba.com/"
},
"tradedoubler": {
"name": "TradeDoubler",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tradedoubler.com/"
},
"propeller_ads": {
"name": "Propeller Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.propellerads.com/"
},
"exoticads.com": {
"name": "exoticads",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://exoticads.com/welcome/"
},
"xfreeservice.com": {
"name": "xfreeservice.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"sheego.de": {
"name": "sheego.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"marin_search_marketer": {
"name": "Marin Search Marketer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.marinsoftware.com/"
},
"rtb_house": {
"name": "RTB House",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://en.adpilot.com/"
},
"polyfill.io": {
"name": "Polyfill.io",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://polyfill.io/"
},
"grandslammedia": {
"name": "GrandSlamMedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.grandslammedia.com/"
},
"delta_projects": {
"name": "Delta Projects",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adaction.se/"
},
"clicktale": {
"name": "ClickTale",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.clicktale.com/"
},
"onthe.io": {
"name": "OnThe.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"whos.amung.us": {
"name": "Whos.amung.us",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://whos.amung.us/"
},
"relevant4.com": {
"name": "relevant4 GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.relevant4.com/"
},
"ibm_customer_experience": {
"name": "IBM Customer Experience",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.coremetrics.com/"
},
"skimlinks": {
"name": "SkimLinks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.skimlinks.com/"
},
"conviva": {
"name": "Conviva",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.conviva.com/"
},
"brightcove_player": {
"name": "Brightcove Player",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"klarna.com": {
"name": "Klarna",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.klarna.com/"
},
"sift_science": {
"name": "Sift Science",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://siftscience.com/"
},
"congstar.de": {
"name": "congstar.de",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"dtscout.com": {
"name": "Dtscout",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.dtscout.com/"
},
"smaato": {
"name": "Smaato",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.smaato.com/"
},
"spotscenered.info": {
"name": "spotscenered.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adriver": {
"name": "AdRiver",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adriver.ru/"
},
"cqq5id8n.com": {
"name": "cqq5id8n.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"bidtheatre": {
"name": "BidTheatre",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.bidtheatre.com/"
},
"just_premium": {
"name": "Just Premium",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://justpremium.com/"
},
"mein-bmi.com": {
"name": "mein-bmi.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.mein-bmi.com/"
},
"internet_billboard": {
"name": "Internet BillBoard",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ibillboard.com/en/"
},
"admeta": {
"name": "Admeta",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.admeta.com/"
},
"histats": {
"name": "Histats",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.histats.com/"
},
"truste_notice": {
"name": "TRUSTe Notice",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.truste.com/"
},
"vtracy.de": {
"name": "vtracy.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"whatbroadcast": {
"name": "Whatbroadcast",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"flowplayer": {
"name": "Flowplayer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"rambler": {
"name": "Rambler",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"lockerz_share": {
"name": "AddToAny",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.addtoany.com/"
},
"tynt": {
"name": "Tynt",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tynt.com/"
},
"smartstream.tv": {
"name": "SmartStream.TV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.smartstream.tv/en"
},
"realperson.de": {
"name": "Realperson Chat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.optimise-it.de/"
},
"glotgrx.com": {
"name": "glotgrx.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"threatmetrix": {
"name": "ThreatMetrix",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://threatmetrix.com/"
},
"cxo.name": {
"name": "Chip Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.chip.de/"
},
"glomex.com": {
"name": "Glomex",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.glomex.com/"
},
"cxense": {
"name": "cXense",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cxense.com/"
},
"amplitude": {
"name": "Amplitude",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://amplitude.com/"
},
"falk_technologies": {
"name": "Falk Technologies",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"pagefair": {
"name": "PageFair",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://pagefair.com/"
},
"emsmobile.de": {
"name": "EMS Mobile",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.emsmobile.com/"
},
"fastlylb.net": {
"name": "Fastly",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.fastly.com/"
},
"vorwerk.de": {
"name": "vorwerk.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://corporate.vorwerk.de/home/"
},
"digidip": {
"name": "Digidip",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"salesforce_live_agent": {
"name": "Salesforce Live Agent",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.salesforce.com/"
},
"mycliplister.com": {
"name": "Cliplister",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.cliplister.com/"
},
"peerius": {
"name": "Peerius",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.peerius.com/"
},
"steepto.com": {
"name": "Steepto",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.steepto.com/"
},
"adglue": {
"name": "Adglue",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"monetate": {
"name": "Monetate",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://monetate.com"
},
"mov.ad_": {
"name": "Mov.ad ",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"simpli.fi": {
"name": "Simpli.fi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.simpli.fi"
},
"office365.com": {
"name": "office365.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"digital_window": {
"name": "Digital Window",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.digitalwindow.com/"
},
"touchcommerce": {
"name": "Nuance",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.nuance.com/"
},
"jimdo.com": {
"name": "jimdo.com",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"srvtrck.com": {
"name": "srvtrck.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"tribal_fusion": {
"name": "Tribal Fusion",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tribalfusion.com/"
},
"snap_engage": {
"name": "Snap Engage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"gfk": {
"name": "GfK",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://nurago.com/"
},
"qualtrics": {
"name": "Qualtrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.qualtrics.com/"
},
"juicyads": {
"name": "JuicyAds",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.juicyads.com/"
},
"cquotient.com": {
"name": "CQuotient",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.demandware.com/#cquotient"
},
"ancora": {
"name": "Ancora",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"adclear": {
"name": "AdClear",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adclear.de/en/home.html"
},
"crimtan": {
"name": "Crimtan",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.crimtan.com/"
},
"dynadmic": {
"name": "DynAdmic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"viglink": {
"name": "VigLink",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.viglink.com"
},
"dawandastatic.com": {
"name": "Dawanda CDN",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://dawanda.com/"
},
"tubecup.org": {
"name": "tubecup.org",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"media.net": {
"name": "Media.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.media.net/"
},
"rtmark.net": {
"name": "Advertising Technologies Ltd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://rtmark.net/"
},
"trackjs": {
"name": "TrackJS",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.trackjs.com/"
},
"elastic_ad": {
"name": "Elastic Ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"intercom": {
"name": "Intercom",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://intercom.io/"
},
"adyoulike": {
"name": "Adyoulike",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adyoulike.com/"
},
"web_wipe_anlaytics": {
"name": "Wipe Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://tensquare.de"
},
"adnium.com": {
"name": "Adnium",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adnium.com/"
},
"markmonitor": {
"name": "MarkMonitor",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.markmonitor.com/"
},
"azureedge.net": {
"name": "Azure CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"iovation": {
"name": "iovation",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"adtr02.com": {
"name": "adtr02.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"scribblelive": {
"name": "ScribbleLive",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"unruly_media": {
"name": "Unruly Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.unrulymedia.com/"
},
"beeswax": {
"name": "Beeswax",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"contentsquare.net": {
"name": "ContentSquare",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.contentsquare.com/"
},
"geotrust": {
"name": "GeoTrust",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.geotrust.com/"
},
"zemanta": {
"name": "Zemanta",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zemanta.com/"
},
"trafficfabrik.com": {
"name": "Traffic Fabrik",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.trafficfabrik.com/"
},
"rncdn3.com": {
"name": "Reflected Networks",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.rncdn3.com/"
},
"skype": {
"name": "Skype",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.skype.com"
},
"fit_analytics": {
"name": "Fit Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"dimml": {
"name": "DimML",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sonobi": {
"name": "Sonobi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://sonobi.com/"
},
"belboon_gmbh": {
"name": "belboon GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"web.de": {
"name": "web.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://web.de/"
},
"flickr_badge": {
"name": "Flickr",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.flickr.com/"
},
"globalsign": {
"name": "GlobalSign",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"adloox": {
"name": "Adloox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adloox.com"
},
"groupm_server": {
"name": "GroupM Server",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.groupm.com/"
},
"bongacams.com": {
"name": "bongacams.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"symantec": {
"name": "Symantec (Norton Secured Seal)",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"vergic.com": {
"name": "Vergic",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "https://www.vergic.com/"
},
"esprit.de": {
"name": "esprit.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"mncdn.com": {
"name": "MediaNova CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.medianova.com/"
},
"marshadow.io": {
"name": "marshadow.io",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"bangdom.com": {
"name": "BangBros",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"teufel.de": {
"name": "teufel.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.teufel.de/"
},
"webgains": {
"name": "Webgains",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"truste_consent": {
"name": "Truste Consent",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"inspsearchapi.com": {
"name": "Infospace Search",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://infospace.com/"
},
"tagman": {
"name": "TagMan",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.tagman.com/"
},
"livechat": {
"name": "LiveChat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.livechatinc.com"
},
"reddit": {
"name": "Reddit",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://reddit.com"
},
"oclasrv.com": {
"name": "oclasrv.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"flxone": {
"name": "FLXONE",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.flxone.com/"
},
"shopgate.com": {
"name": "Shopgate",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.shopgate.com/"
},
"mapandroute.de": {
"name": "Map and Route",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.mapandroute.de/"
},
"vidible": {
"name": "Vidible",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://vidible.tv/"
},
"tradelab": {
"name": "Tradelab",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tradelab.fr/"
},
"twyn": {
"name": "Twyn",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.twyn.com"
},
"catchpoint": {
"name": "Catchpoint",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.catchpoint.com/"
},
"nosto.com": {
"name": "nosto",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.nosto.com/"
},
"similardeals.net": {
"name": "SimilarDeals",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.similardeals.net/"
},
"adult_webmaster_empire": {
"name": "Adult Webmaster Empire",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.awempire.com/"
},
"usemax": {
"name": "Usemax",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.usemax.de"
},
"autoscout24.com": {
"name": "Autoscout24",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"nexage": {
"name": "Nexage",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nexage.com/"
},
"doubleverify": {
"name": "DoubleVerify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.doubleverify.com/"
},
"octapi.net": {
"name": "octapi.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"eloqua": {
"name": "Eloqua",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.eloqua.com/"
},
"adelphic": {
"name": "Adelphic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"mycdn.me": {
"name": "Mail.Ru CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"adworx.at": {
"name": "adworx",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adworx.at/"
},
"adspyglass": {
"name": "AdSpyglass",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"sexypartners.net": {
"name": "sexypartners.net",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"adify": {
"name": "Adify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adify.com/"
},
"chatango": {
"name": "Chatango",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.chatango.com/"
},
"springserve": {
"name": "SpringServe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"united_digital_group": {
"name": "United Digital Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.udg.de/"
},
"adverserve": {
"name": "adverServe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adverserve.com/"
},
"segment": {
"name": "Segment",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://segment.io/"
},
"sekindo": {
"name": "Sekindo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sekindo.com/"
},
"perimeterx.net": {
"name": "Perimeterx",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.perimeterx.com/"
},
"adnet.de": {
"name": "adNET.de",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adnet.de"
},
"cursecdn.com": {
"name": "Curse CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.curse.com/"
},
"po.st": {
"name": "Po.st",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.po.st/"
},
"switch_concepts": {
"name": "Switch Concepts",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.switchconcepts.co.uk/"
},
"ask.com": {
"name": "Ask.com",
- "categoryId": 7
+ "categoryId": 7,
+ "url": null
},
"dynamic_yield": {
"name": "Dynamic Yield",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"1822direkt.de": {
"name": "1822direkt.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.1822direkt.de/"
},
"hola_player": {
"name": "Hola Player",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"zog.link": {
"name": "zog.link",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"richrelevance": {
"name": "RichRelevance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.richrelevance.com/"
},
"tubemogul": {
"name": "TubeMogul",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://tubemogul.com/"
},
"bugsnag": {
"name": "Bugsnag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://bugsnag.com"
},
"codeonclick.com": {
"name": "codeonclick.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"imgix.net": {
"name": "ImgIX",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.imgix.com/"
},
"eanalyzer.de": {
"name": "eanalyzer.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"yusp": {
"name": "Yusp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.yusp.com/"
},
"greatviews.de": {
"name": "GreatViews",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://greatviews.de/"
},
"lkqd": {
"name": "LKQD",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.lkqd.com/"
},
"woopic.com": {
"name": "woopic.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"eyeview": {
"name": "Eyeview",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.eyeviewdigital.com/"
},
"valiton": {
"name": "Valiton",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.valiton.com/"
},
"stripe.com": {
"name": "Stripe",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://stripe.com/"
},
"coll1onf.com": {
"name": "coll1onf.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"salecycle": {
"name": "SaleCycle",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.salecycle.com/"
},
"id-news.net": {
"name": "Ippen Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ippen-digital.de/"
},
"doofinder.com": {
"name": "doofinder",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.doofinder.com/"
},
"ixquick.com": {
"name": "ixquick",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.ixquick.com/"
},
"loadbee.com": {
"name": "Loadbee",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://company.loadbee.com/de/loadbee-home"
},
"findizer.fr": {
"name": "Findizer",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.findizer.fr/"
},
"wix.com": {
"name": "Wix",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.wix.com/"
},
"7tv.de": {
"name": "7tv.de",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.7tv.de/"
},
"opta.net": {
"name": "Opta",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.optasports.de/"
},
"zedo": {
"name": "Zedo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zedo.com/"
},
"alibaba.com": {
"name": "Alibaba",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"crossengage": {
"name": "CrossEngage",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"solads.media": {
"name": "solads.media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://solads.media/"
},
"office.com": {
"name": "office.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"adotmob.com": {
"name": "Adotmob",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adotmob.com/"
},
"liveadexchanger.com": {
"name": "liveadexchanger.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"brandwire.tv": {
"name": "BrandWire",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://brandwire.tv/"
},
"gumgum": {
"name": "gumgum",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://gumgum.com/"
},
"bombora": {
"name": "Bombora",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"king.com": {
"name": "King.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"admeira.ch": {
"name": "AdMeira",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://admeira.ch/"
},
"adventori": {
"name": "ADventori",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"stayfriends.de": {
"name": "stayfriends.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.stayfriends.de/"
},
"apester": {
"name": "Apester",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://apester.com/"
},
"bulkhentai.com": {
"name": "bulkhentai.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"metapeople": {
"name": "Metapeople",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.metapeople.com/us/"
},
"smartlook": {
"name": "Smartlook",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"getintent": {
"name": "GetIntent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.getintent.com/"
},
"sumome": {
"name": "SumoMe",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://sumome.com/"
},
"kairion.de": {
"name": "kairion",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://kairion.de/"
},
"trsv3.com": {
"name": "trsv3.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"powerlinks": {
"name": "PowerLinks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.powerlinks.com/"
},
"lifestreet_media": {
"name": "LifeStreet Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://lifestreetmedia.com/"
},
"sparkasse.de": {
"name": "sparkasse.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"netmining": {
"name": "Netmining",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.netmining.com/"
},
"videoplaza": {
"name": "Videoplaza",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.videoplaza.com/"
},
"inspectlet": {
"name": "Inspectlet",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.inspectlet.com/"
},
"yume": {
"name": "YuMe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"nanigans": {
"name": "Nanigans",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nanigans.com/"
},
"certona": {
"name": "Certona",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.certona.com/products/recommendation.php"
},
"affimax": {
"name": "AffiMax",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.affimax.de"
},
"hubspot": {
"name": "HubSpot",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.hubspot.com/"
},
"quisma": {
"name": "Quisma",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.quisma.com/en/"
},
"pusher.com": {
"name": "Pusher",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://pusher.com/"
},
"blogsmithmedia.com": {
"name": "blogsmithmedia.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sojern": {
"name": "Sojern",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sojern.com/"
},
"sublime_skinz": {
"name": "Sublime Skinz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://sublimeskinz.com/home"
},
"keen_io": {
"name": "Keen IO",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://keen.io"
},
"digiteka": {
"name": "Digiteka",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ard.de": {
"name": "ard.de",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"netflix": {
"name": "Netflix",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"tp-cdn.com": {
"name": "TrialPay",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.trialpay.com/"
},
"adtelligence.de": {
"name": "Adtelligence",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adtelligence.com/"
},
"tawk": {
"name": "Tawk",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"firebaseio.com": {
"name": "Firebase",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://firebase.google.com/"
},
"shopauskunft.de": {
"name": "ShopAuskunft.de",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://shopauskunft.de/"
},
"dcmn.com": {
"name": "DCMN",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.dcmn.com/"
},
"mythings": {
"name": "myThings",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mythings.com/"
},
"asambeauty.com": {
"name": "asambeauty.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.asambeauty.com/"
},
"dailymotion": {
"name": "Dailymotion",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"cam-content.com": {
"name": "Cam-Content.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.cam-content.com/"
},
"dmwd": {
"name": "DMWD",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"voicefive": {
"name": "VoiceFive",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.voicefive.com"
},
"run": {
"name": "RUN",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.rundsp.com/"
},
"orange": {
"name": "Orange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.orange.co.uk/"
},
"media-imdb.com": {
"name": "IMDB CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.imdb.com/"
},
"marketo": {
"name": "Marketo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.marketo.com/"
},
"shopify_stats": {
"name": "Shopify Stats",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.shopify.com/"
},
"dc_stormiq": {
"name": "DC StormIQ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dc-storm.com/"
},
"maxpoint_interactive": {
"name": "MaxPoint Interactive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.maxpointinteractive.com/"
},
"adxpansion": {
"name": "AdXpansion",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.adxpansion.com/"
},
"onaudience": {
"name": "OnAudience",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.onaudience.com/"
},
"uservoice": {
"name": "UserVoice",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://uservoice.com/"
},
"owneriq": {
"name": "OwnerIQ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.owneriq.com/"
},
"convertro": {
"name": "Convertro",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.convertro.com/"
},
"connextra": {
"name": "Connextra",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://connextra.com/"
},
"yandex_adexchange": {
"name": "Yandex AdExchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"digicert_trust_seal": {
"name": "Digicert Trust Seal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.digicert.com/"
},
"urban-media.com": {
"name": "Urban Media GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.urban-media.com/"
},
"adtiger": {
"name": "AdTiger",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adtiger.de/"
},
"pulpix.com": {
"name": "Pulpix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.pulpix.com/"
},
"branch_metrics": {
"name": "Branch",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"smartclick.net": {
"name": "SmartClick",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://smartclick.net/"
},
"xing": {
"name": "Xing",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"travel_audience": {
"name": "Travel Audience",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"streamrail.com": {
"name": "StreamRail",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.streamrail.com/"
},
"t8cdn.com": {
"name": "t8cdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"apple": {
"name": "Apple",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.apple.com/"
},
"magnetic": {
"name": "Magnetic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.magnetic.is"
},
"schneevonmorgen.com": {
"name": "Schnee von Morgen",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://www.schneevonmorgen.com/"
},
"fullstory": {
"name": "FullStory",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"vicomi.com": {
"name": "Vicomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vicomi.com/"
},
"alipay.com": {
"name": "Alipay",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.alipay.com/"
},
"deichmann.com": {
"name": "deichmann.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"upravel.com": {
"name": "upravel.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"hqentertainmentnetwork.com": {
"name": "HQ Entertainment Network",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://hqentertainmentnetwork.com/"
},
"here__formerly_navteq_media_solutions_": {
"name": "HERE (formerly Navteq Media Solutions)",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"commission_junction": {
"name": "CJ Affiliate",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cj.com/"
},
"othersearch.info": {
"name": "FlowSurf",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"avocet": {
"name": "Avocet",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"toplist.cz": {
"name": "toplist.cz",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"optimicdn.com": {
"name": "OptimiCDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://en.optimicdn.com/"
},
"bounce_exchange": {
"name": "Bounce Exchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://bounceexchange.com"
},
"rtblab": {
"name": "RTBmarkt",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.rtbmarkt.de/en/home/"
},
"haendlerbund.de": {
"name": "Händlerbund",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.haendlerbund.de/en"
},
"cdn-net.com": {
"name": "cdn-net.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"omarsys.com": {
"name": "Omarsys",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://omarsys.com/"
},
"adfox": {
"name": "AdFox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adfox.ru"
},
"iperceptions": {
"name": "iPerceptions",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.iperceptions.com/"
},
"chaturbate.com": {
"name": "chaturbate.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"sixt-neuwagen.de": {
"name": "sixt-neuwagen.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"yieldify": {
"name": "Yieldify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.yieldify.com/"
},
"cdnetworks.net": {
"name": "cdnetworks.net",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cdnetworks.com/"
},
"komoona": {
"name": "Komoona",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.komoona.com/"
},
"freewheel": {
"name": "FreeWheel",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://www.freewheel.tv/"
},
"sessioncam": {
"name": "SessionCam",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.sessioncam.com/"
},
"sailthru_horizon": {
"name": "Sailthru Horizon",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sailthru.com"
},
"datacaciques.com": {
"name": "DataCaciques",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.datacaciques.com/"
},
"mediarithmics.com": {
"name": "Mediarithmics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.mediarithmics.com/en/"
},
"clicktripz": {
"name": "ClickTripz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.clicktripz.com"
},
"apicit.net": {
"name": "apicit.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ampproject.org": {
"name": "AMP Project",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.ampproject.org/"
},
"deviantart.net": {
"name": "deviantart.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"txxx.com": {
"name": "txxx.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://txxx.com"
},
"uppr.de": {
"name": "uppr GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://uppr.de/"
},
"get_site_control": {
"name": "Get Site Control",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"clicky": {
"name": "Clicky",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://getclicky.com/"
},
"wikia_beacon": {
"name": "Wikia Beacon",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.wikia.com/"
},
"aldi-international.com": {
"name": "aldi-international.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"bigpoint": {
"name": "Bigpoint",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"rythmxchange": {
"name": "Rythmxchange",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"lenua.de": {
"name": "Lenua System",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://lenua.de/"
},
"lentainform.com": {
"name": "lentainform.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.lentainform.com/"
},
"avail": {
"name": "Avail",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://avail.com"
},
"twitch.tv": {
"name": "Twitch",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.twitch.tv/"
},
"olark": {
"name": "Olark",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.olark.com/"
},
"oracle_rightnow": {
"name": "Oracle RightNow",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sirdata": {
"name": "Sirdata",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"wdr.de": {
"name": "wdr.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www1.wdr.de/index.html"
},
"tumblr_buttons": {
"name": "Tumblr Buttons",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.tumblr.com/"
},
"netseer": {
"name": "NetSeer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.netseer.com/"
},
"vivalu": {
"name": "VIVALU",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"errorception": {
"name": "Errorception",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://errorception.com/"
},
"iias.eu": {
"name": "Insight Image",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://insightimage.com/"
},
"impact_radius": {
"name": "Impact Radius",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.impactradius.com/"
},
"answers_cloud_service": {
"name": "Answers Cloud Service",
- "categoryId": 1
+ "categoryId": 1,
+ "url": null
},
"aniview.com": {
"name": "AniView",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.aniview.com/"
},
"decibel_insight": {
"name": "Decibel Insight",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"adobe_tagmanager": {
"name": "Adobe TagManager",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adobe.com/"
},
"overheat.it": {
"name": "overheat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://overheat.io/"
},
"snowplow": {
"name": "Snowplow",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"psyma": {
"name": "Psyma",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.psyma.com/"
},
"bauer_media": {
"name": "Bauer Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"homeaway": {
"name": "HomeAway",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"perfect_audience": {
"name": "Perfect Audience",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.perfectaudience.com/"
},
"itineraire.info": {
"name": "itineraire.info",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.itineraire.info/"
},
"revcontent": {
"name": "RevContent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.revcontent.com/"
},
"algolia.net": {
"name": "algolia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.algolia.com/"
},
"zergnet": {
"name": "ZergNet",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.zergnet.com/info"
},
"adskeeper": {
"name": "AdsKeeper",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"jivox": {
"name": "Jivox",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.jivox.com/"
},
"basilic.io": {
"name": "basilic.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://basilic.io/"
},
"crosssell.info": {
"name": "econda Cross Sell",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.econda.de/en/solutions/personalization/cross-sell/"
},
"hi-media_performance": {
"name": "Hi-Media Performance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.hi-mediaperformance.co.uk/"
},
"perform_group": {
"name": "Perform Group",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.performgroup.co.uk/"
},
"kenshoo": {
"name": "Kenshoo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.kenshoo.com/"
},
"stepstone.com": {
"name": "StepStone",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.stepstone.com/"
},
"clever_push": {
"name": "Clever Push",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"recreativ": {
"name": "Recreativ",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://recreativ.ru/"
},
"polldaddy": {
"name": "Polldaddy",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://polldaddy.com/"
},
"s3xified.com": {
"name": "s3xified.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"microsoft": {
"name": "Microsoft Services",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"intent_media": {
"name": "Intent Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.intentmedia.com/"
},
"rtl_group": {
"name": "RTL Group",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"skadtec.com": {
"name": "GP One GmbH",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.gp-one.com/"
},
"nativo": {
"name": "Nativo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nativo.net/"
},
"kaltura": {
"name": "Kaltura",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://corp.kaltura.com/"
},
"effiliation": {
"name": "Effiliation",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.effiliation.com/"
},
"intimate_merger": {
"name": "Intimate Merger",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"innogames.de": {
"name": "InnoGames",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.innogames.com/"
},
"districtm.io": {
"name": "district m",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://districtm.net/"
},
"yandex.api": {
"name": "Yandex.API",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://api.yandex.ru/"
},
"snacktv": {
"name": "SnackTV",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"trafficforce": {
"name": "TrafficForce",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.trafficforce.com/"
},
"rollbar": {
"name": "Rollbar",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.rollbar.com/"
},
"baur.de": {
"name": "baur.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"adwebster": {
"name": "adwebster",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adwebster.com"
},
"clickonometrics": {
"name": "Clickonometrics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://clickonometrics.pl/"
},
"realytics.io": {
"name": "realytics.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.realytics.io/"
},
"nativeads.com": {
"name": "native ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://nativeads.com/"
},
"proxistore.com": {
"name": "Proxistore",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.proxistore.com/"
},
"greentube.com": {
"name": "Greentube Internet Entertainment Solutions",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.greentube.com/"
},
"heroku": {
"name": "Heroku",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"adzerk": {
"name": "Adzerk",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adzerk.com/"
},
"lengow": {
"name": "Lengow",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.lengow.com/"
},
"adworxs.net": {
"name": "adworxs.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adworxs.net/?lang=en"
},
"clickintext": {
"name": "ClickInText",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.clickintext.com/"
},
"tamedia.ch": {
"name": "Tamedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.tamedia.ch/"
},
"visible_measures": {
"name": "Visible Measures",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.visiblemeasures.com/"
},
"gamedistribution.com": {
"name": "Gamedistribution.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://gamedistribution.com/"
},
"flattr_button": {
"name": "Flattr Button",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://flattr.com/"
},
"sstatic.net": {
"name": "Stack Exchange",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://sstatic.net/"
},
"trustwave.com": {
"name": "Trustwave",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.trustwave.com/home/"
},
"siteimprove": {
"name": "Siteimprove",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://siteimprove.com"
},
"adtrue": {
"name": "Adtrue",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"1000mercis": {
"name": "1000mercis",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"ipg_mediabrands": {
"name": "IPG Mediabrands",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"tradetracker": {
"name": "TradeTracker",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.tradetracker.com"
},
"adnologies": {
"name": "Adnologies",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adnologies.com/"
},
"24-ads.com": {
"name": "24-ADS GmbH",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.24-ads.com/"
},
"pushnative.com": {
"name": "pushnative.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"flag_counter": {
"name": "Flag Counter",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://flagcounter.com/"
},
"dstillery": {
"name": "Dstillery",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.media6degrees.com/"
},
"office.net": {
"name": "office.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"tinypass": {
"name": "Piano",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://piano.io/"
},
"mobtrks.com": {
"name": "mobtrks.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"yoochoose.net": {
"name": "YOOCHOOSE",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://yoochoose.com/"
},
"cpmstar": {
"name": "CPMStar",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cpmstar.com"
},
"blink_new_media": {
"name": "Blink New Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://engagebdr.com/"
},
"acquia.com": {
"name": "Acquia",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.acquia.com/"
},
"gravity_insights": {
"name": "Gravity Insights",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.gravity.com/"
},
"baynote_observer": {
"name": "Baynote Observer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.baynote.com/"
},
"demandbase": {
"name": "Demandbase",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.demandbase.com/"
},
"stackpathdns.com": {
"name": "StackPath",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.stackpath.com/"
},
"booking.com": {
"name": "Booking.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"optimatic": {
"name": "Optimatic",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"realytics": {
"name": "Realytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"vi": {
"name": "Vi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vi.ru/"
},
"livefyre": {
"name": "Livefyre",
- "categoryId": 1
+ "categoryId": 1,
+ "url": "http://www.livefyre.com/"
},
"tremor_video": {
"name": "Tremor Video",
- "categoryId": 0
+ "categoryId": 0,
+ "url": null
},
"research_now": {
"name": "Research Now",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.researchnow.com/"
},
"baidu_ads": {
"name": "Baidu Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.baidu.com/"
},
"pixalate": {
"name": "Pixalate",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"aidata.io": {
"name": "AiData",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.aidata.me/"
},
"mcafee_secure": {
"name": "McAfee Secure",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.mcafeesecure.com/us/"
},
"livesportmedia.eu": {
"name": "Livesport Media",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.livesportmedia.eu/"
},
"smi2.ru": {
"name": "smi2.ru",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://smi2.ru/"
},
"vooxe.com": {
"name": "vooxe.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.vooxe.com/"
},
"walmart": {
"name": "Walmart",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"nice264.com": {
"name": "Nice264",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "http://nice264.com/"
},
"vidazoo.com": {
"name": "Vidazoo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.vidazoo.com/"
},
"heap": {
"name": "Heap",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://heapanalytics.com/"
},
"kaloo.ga": {
"name": "Kalooga",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.kalooga.com/"
},
"layer-ad.org": {
"name": "Layer-ADS.net",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://layer-ads.net/"
},
"loop11": {
"name": "Loop11",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"spot.im": {
"name": "Spot.IM",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.spot.im/"
},
"howtank.com": {
"name": "howtank",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.howtank.com/"
},
"sexadnetwork": {
"name": "SexAdNetwork",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.sexadnetwork.com/"
},
"pushcrew": {
"name": "Pushcrew",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"swisscom": {
"name": "Swisscom",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"spongecell": {
"name": "Spongecell",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.spongecell.com/"
},
"friendfinder_network": {
"name": "FriendFinder Network",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "http://www.ffn.com/"
},
"netrk.net": {
"name": "nfxTrack",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://netrk.net/"
},
"cloud-media.fr": {
"name": "CloudMedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://cloudmedia.fr/"
},
"vizury": {
"name": "Vizury",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vizury.com/website/"
},
"admized": {
"name": "ADMIZED",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sumologic.com": {
"name": "Sumologic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.sumologic.com/"
},
"raygun": {
"name": "Raygun",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"yahoo_japan": {
"name": "Yahoo! Japan",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"effective_measure": {
"name": "Effective Measure",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.effectivemeasure.com/"
},
"bluelithium": {
"name": "Bluelithium",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.bluelithium.com/"
},
"adocean": {
"name": "AdOcean",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adocean.cz/en"
},
"c1_exchange": {
"name": "C1 Exchange",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"netbiscuits": {
"name": "Netbiscuits",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.netbiscuits.net/"
},
"expedia": {
"name": "Expedia",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.trvl-px.com/"
},
"nonstop_consulting": {
"name": "nonstop Consulting",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nonstopconsulting.co.uk"
},
"jumptap": {
"name": "Jumptap",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.jumptap.com/"
},
"unister": {
"name": "Unister",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.unister.de/"
},
"underdog_media": {
"name": "Underdog Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.underdogmedia.com"
},
"wwwpromoter": {
"name": "WWWPromoter",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"maxmind": {
"name": "MaxMind",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.maxmind.com/"
},
"fstrk.net": {
"name": "24metrics Fraudshield",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://24metrics.com/"
},
"toro": {
"name": "TORO",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://toroadvertising.com/"
},
"content.ad": {
"name": "Content.ad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.content.ad/"
},
"aemediatraffic": {
"name": "Aemediatraffic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"babator.com": {
"name": "Babator",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.babator.com/"
},
"algovid.com": {
"name": "algovid.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"jetlore": {
"name": "Jetlore",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"feedbackify": {
"name": "Feedbackify",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.feedbackify.com/"
},
"flixmedia": {
"name": "Flixmedia",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"visualdna": {
"name": "VisualDNA",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.visualdna.com/"
},
"popcash": {
"name": "Popcash",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://popcash.net/"
},
"f11-ads.com": {
"name": "Factor Eleven",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"stumbleupon_widgets": {
"name": "StumbleUpon Widgets",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.stumbleupon.com/"
},
"adgear": {
"name": "AdGear",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adgear.com/"
},
"extreme_tracker": {
"name": "eXTReMe Tracker",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.extremetracking.com/"
},
"leadplace": {
"name": "LeadPlace",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"infolinks": {
"name": "InfoLinks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.infolinks.com/"
},
"smartsupp_chat": {
"name": "Smartsupp Chat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"redtube.com": {
"name": "redtube.com",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"adc_media": {
"name": "ad:C media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adcmedia.de/en/"
},
"hstrck.com": {
"name": "HEIM:SPIEL Medien GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.heimspiel.de/"
},
"tracc.it": {
"name": "Kiwe.io",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.kiwe.io/"
},
"walkme.com": {
"name": "Walk Me",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.walkme.com/"
},
"freshdesk": {
"name": "Freshdesk",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.freshdesk.com"
},
"forensiq": {
"name": "Forensiq",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.cpadetective.com/"
},
"truste_seal": {
"name": "TRUSTe Seal",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "http://www.truste.com/"
},
"optimonk": {
"name": "Optimonk",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"seznam": {
"name": "Seznam",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"oxomi.com": {
"name": "Oxomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://oxomi.com/"
},
"sas": {
"name": "SAS",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.sas.com/"
},
"gdm_digital": {
"name": "GDM Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.gdmdigital.com/"
},
"adnetworkperformance.com": {
"name": "adnetworkperformance.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"stackadapt": {
"name": "StackAdapt",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"ria.ru": {
"name": "ria.ru",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://ria.ru/"
},
"skyscnr.com": {
"name": "Skyscanner CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.skyscanner.net/"
},
"imonomy": {
"name": "imonomy",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"maru-edu": {
"name": "Maru-EDU",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"trustarc": {
"name": "TrustArc",
- "categoryId": 5
+ "categoryId": 5,
+ "url": null
},
"adbetclickin.pink": {
"name": "adbetnet",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adbetnet.com/"
},
"videoadex.com": {
"name": "VideoAdX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.videoadex.com/"
},
"monster_advertising": {
"name": "Monster Advertising",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.monster.com/"
},
"atlassian.net": {
"name": "Atlassian",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.atlassian.com/"
},
"siteimprove_analytics": {
"name": "SiteImprove Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"mirtesen.ru": {
"name": "mirtesen.ru",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://mirtesen.ru/"
},
"lenmit.com": {
"name": "lenmit.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"semknox.com": {
"name": "SEMKNOX GmbH",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://semknox.com/"
},
"wiredminds": {
"name": "WiredMinds",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.wiredminds.de/"
},
"adglare.net": {
"name": "Adglare",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adglare.com/"
},
"hivedx.com": {
"name": "hiveDX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.hivedx.com/"
},
"1und1": {
"name": "1&1 Internet",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"audiencesquare.com": {
"name": "Audience Square",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.audiencesquare.fr/"
},
"fidelity_media": {
"name": "Fidelity Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://fidelity-media.com/"
},
"adsnative": {
"name": "adsnative",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adsnative.com/"
},
"sophus3": {
"name": "Sophus3",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sophus3.com/ "
},
"shareaholic": {
"name": "Shareaholic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "hhttps://www.shareaholic.com/"
},
"wistia": {
"name": "Wistia",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"sundaysky": {
"name": "SundaySky",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.sundaysky.com/"
},
"pardot": {
"name": "Pardot",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.pardot.com/"
},
"qualaroo": {
"name": "Qualaroo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"logsss.com": {
"name": "logsss.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"github": {
"name": "GitHub",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"post_affiliate_pro": {
"name": "Post Affiliate Pro",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.qualityunit.com/"
},
"guj.de": {
"name": "Gruner + Jahr",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.guj.de/"
},
"deepintent.com": {
"name": "DeepIntent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.deepintent.com/"
},
"acuity_ads": {
"name": "Acuity Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.acuityads.com/"
},
"bidswitch": {
"name": "Bidswitch",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"33across": {
"name": "33Across",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://33across.com/"
},
"dantrack.net": {
"name": "DANtrack",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://media.dantrack.net/privacy/"
},
"first_impression": {
"name": "First Impression",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"pubnub.com": {
"name": "PubNub",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.pubnub.com/"
},
"vindico_group": {
"name": "Vindico Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.vindicogroup.com/"
},
"dynamic_1001_gmbh": {
"name": "Dynamic 1001 GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"intelligent_reach": {
"name": "Intelligent Reach",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.intelligentreach.com/"
},
"google_appspot": {
"name": "Google Appspot",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"msn": {
"name": "Microsoft Network",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sourcepoint": {
"name": "Sourcepoint",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sourcepoint.com/"
},
"cloudflare": {
"name": "CloudFlare",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cloudflare.com/"
},
"spotify": {
"name": "Spotify",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.spotify.com/"
},
"1plusx": {
"name": "1plusX",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.1plusx.com/"
},
"maxcdn": {
"name": "MaxCDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.maxcdn.com/"
},
"trafficfactory": {
"name": "Traffic Factory",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.trafficfactory.biz/"
},
"adsbookie": {
"name": "AdsBookie",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adsbookie.com/"
},
"zeusclicks": {
"name": "ZeusClicks",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://zeusclicks.com/"
},
"the_weather_company": {
"name": "The Weather Company",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.theweathercompany.com/"
},
"youporn": {
"name": "YouPorn",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"adpilot": {
"name": "AdPilot",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adpilotgroup.com/"
},
"geniee": {
"name": "GENIEE",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://geniee.co.jp/"
},
"bing_maps": {
"name": "Bing Maps",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"wetter_com": {
"name": "Wetter.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.wetter.com/"
},
"cdn77": {
"name": "CDN77",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cdn77.com/"
},
"mindspark": {
"name": "Mindspark",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.mindspark.com/"
},
"bonial": {
"name": "Bonial Connect",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.bonial.com/"
},
"atg_group": {
"name": "ATG Ad Tech Group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://ad-tech-group.com/"
},
"yieldr": {
"name": "Yieldr",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.yieldr.com/"
},
"zypmedia": {
"name": "ZypMedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zypmedia.com/"
},
"acxiom": {
"name": "Acxiom",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"twenga": {
"name": "Twenga Solutions",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.twenga-solutions.com/"
},
"fraudlogix": {
"name": "FraudLogix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.fraudlogix.com/"
},
"openload": {
"name": "Openload",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://openload.co/"
},
"merkle_rkg": {
"name": "Merkle RKG",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.merkleinc.com/what-we-do/digital-agency-services/rkg-now-fully-integrated-merkle"
},
"bidtellect": {
"name": "Bidtellect",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bidtellect.com/"
},
"optomaton": {
"name": "Optomaton",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.optomaton.com/"
},
"amazon_payments": {
"name": "Amazon Payments",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://pay.amazon.com/"
},
"bootstrap": {
"name": "Bootstrap CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://getbootstrap.com/"
},
"jquery": {
"name": "jQuery",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://jquery.org/"
},
"createjs": {
"name": "CreateJS",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://createjs.com/"
},
"jsdelivr": {
"name": "jsDelivr",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.jsdelivr.com/"
},
"batch_media": {
"name": "Batch Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://batch.ba/"
},
"monotype_gmbh": {
"name": "Monotype GmbH",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.monotype.com/"
},
"monotype_imaging": {
"name": "Monotype Imaging Inc.",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.fonts.com/"
},
"ablida": {
"name": "ablida",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ablida.de/"
},
"advanced_hosters": {
"name": "Advanced Hosters",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://advancedhosters.com/"
},
"sap_xm": {
"name": "SAP Exchange Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://sapexchange.media/"
},
"icf_technology": {
"name": "ICF Technology",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.icftechnology.com/"
},
"addefend": {
"name": "AdDefend",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.addefend.com/"
},
"permutive": {
"name": "Permutive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://permutive.com/"
},
"burda_digital_systems": {
"name": "Burda Digital Systems",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"bild": {
"name": "Bild.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"bahn_de": {
"name": "Deutsche Bahn",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"aspnetcdn": {
"name": "Microsoft Ajax CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"heimspiel": {
"name": "HEIM:SPIEL Medien GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.heimspiel.de"
},
"gujems": {
"name": "G+J e|MS",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.gujmedia.de/"
},
"tisoomi": {
"name": "Tisoomi",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://tisoomi-services.com/"
},
"circit": {
"name": "circIT",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.circit.de/"
},
"shopping_com": {
"name": "Shopping.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"wayfair_com": {
"name": "Wayfair",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.wayfair.com/"
},
"instagram_com": {
"name": "Instagram",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"immobilienscout24_de": {
"name": "immobilienscout24.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"zalando_de": {
"name": "zalando.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"gmx_net": {
"name": "gmx.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"xvideos_com": {
"name": "xvideos.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"blogspot_com": {
"name": "blogspot.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"eluxer_net": {
"name": "eluxer.net",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"worldnaturenet_xyz": {
"name": "worldnaturenet.xyz",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"tdsrmbl_net": {
"name": "tdsrmbl.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"pizzaandads_com": {
"name": "pizzaandads.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"nerfherdersolo_com": {
"name": "nerfherdersolo.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"sentry": {
"name": "Sentry",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://sentry.io/"
},
"performio": {
"name": "Performio.cz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://performio.cz/"
},
"channel_pilot_solutions": {
"name": "ChannelPilot Solutions",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.channelpilot.de/"
},
"sentifi.com": {
"name": "Sentifi",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://sentifi.com/"
},
"qubit": {
"name": "Qubit Opentag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.qubit.com/"
},
"traffective": {
"name": "Traffective",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://traffective.com/"
},
"rawgit": {
"name": "RawGit",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://rawgit.com/"
},
"opinary": {
"name": "Opinary",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://opinary.com/"
},
"cloudinary": {
"name": "Cloudinary",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://cloudinary.com/"
},
"king_com": {
"name": "King.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://king.com/"
},
"distil_tag": {
"name": "Distil Bot Discovery",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.distilnetworks.com/block-bot-detection/"
},
"netletix": {
"name": "Netletix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.netletix.com//"
},
"q_division": {
"name": "Q-Division",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://q-division.de/"
},
"hyvyd": {
"name": "Hyvyd GmbH",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"oms": {
"name": "OMS",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://oms.eu/"
},
"cdnnetwok_xyz": {
"name": "cdnnetwok.xyz",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"foxydeal_com": {
"name": "foxydeal.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.foxydeal.de"
},
"webclicks24_com": {
"name": "webclicks24.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"easylist_club": {
"name": "easylist.club",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"propvideo_net": {
"name": "propvideo.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"generaltracking_de": {
"name": "generaltracking.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"atsfi_de": {
"name": "atsfi.de",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"continum_net": {
"name": "continum.net",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://continum.net/"
},
"freenet_de": {
"name": "freenet.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://freenet.de/"
},
"fontawesome_com": {
"name": "fontawesome.com",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://fontawesome.com/"
},
"idealo_com": {
"name": "idealo.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://idealo.com/"
},
"4finance_com": {
"name": "4finance.com",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://4finance.com/"
},
"ausgezeichnet_org": {
"name": "ausgezeichnet.org",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://ausgezeichnet.org/"
},
"freegeoip_net": {
"name": "freegeoip.net",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://freegeoip.net/"
},
"adac_de": {
"name": "adac.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://adac.de/"
},
"stailamedia_com": {
"name": "stailamedia.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://stailamedia.com/"
},
"crimsonhexagon_com": {
"name": "Crimson Hexagon",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://crimsonhexagon.com/"
},
"ehi-siegel_de": {
"name": "ehi-siegel.de",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://ehi-siegel.de/"
},
"s24_com": {
"name": "Shopping24 internet group",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.s24.com/"
},
"redblue_de": {
"name": "redblue",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.redblue.de/"
},
"tchibo_de": {
"name": "tchibo.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://tchibo.de/"
},
"chefkoch_de": {
"name": "chefkoch.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://chefkoch.de/"
},
"iotec": {
"name": "iotec",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.iotecglobal.com/"
},
"a3cloud_net": {
"name": "a3cloud.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"maxonclick_com": {
"name": "maxonclick.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"toponclick_com": {
"name": "toponclick.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"westlotto_com": {
"name": "westlotto.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://westlotto.com/"
},
"admedo_com": {
"name": "Admedo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://admedo.com/"
},
"adbrain": {
"name": "AdBrain",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adbrain.com/"
},
"twitter_for_business": {
"name": "Twitter for Business",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://business.twitter.com/"
},
"brightonclick.com": {
"name": "brightonclick.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"voluum": {
"name": "Voluum",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://voluum.com/"
},
"xxxlshop.de": {
"name": "xxxlshop.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.xxxlshop.de/"
},
"fyber": {
"name": "Fyber",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.fyber.com/"
},
"eshopcomp.com": {
"name": "eshopcomp.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"vodafone.de": {
"name": "vodafone.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"davebestdeals.com": {
"name": "davebestdeals.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"stathat": {
"name": "StatHat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.stathat.com/"
},
"ubersetzung-app.com": {
"name": "ubersetzung-app.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.ubersetzung-app.com/"
},
"supership": {
"name": "Supership",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://supership.jp/en/"
},
"wikia_cdn": {
"name": "Wikia CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"insightexpress": {
"name": "InsightExpress",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.millwardbrowndigital.com/"
},
"platformone": {
"name": "Platform One",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.platform-one.co.jp/"
},
"adrom": {
"name": "adRom",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adrom.net/"
},
"purch": {
"name": "Purch",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.purch.com/"
},
"tumblr_analytics": {
"name": "Tumblr Analytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"scoota": {
"name": "Scoota",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://scoota.com/"
},
"bitly": {
"name": "Bitly",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://bitly.com/"
},
"programattik": {
"name": "Programattik",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.programattik.com/"
},
"cardlytics": {
"name": "Cardlytics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.cardlytics.com/"
},
"digilant": {
"name": "Digilant",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.digilant.com/"
},
"site24x7": {
"name": "Site24x7",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.site24x7.com/"
},
"shortnews": {
"name": "ShortNews.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.shortnews.de/#"
},
"mrpdata": {
"name": "MRP",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://mrpdata.com/Account/Login?ReturnUrl=%2F"
},
"sortable": {
"name": "Sortable",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://sortable.com/"
},
"pnamic.com": {
"name": "pnamic.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"bumlam.com": {
"name": "bumlam.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"fluct": {
"name": "Fluct",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://corp.fluct.jp/"
},
"interyield": {
"name": "Interyield",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.advertise.com/publisher-solutions/"
},
"adguard": {
"name": "Adguard",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://adguard.com/"
},
"truoptik": {
"name": "Tru Optik",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://truoptik.com/"
},
"pmddby.com": {
"name": "pmddby.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"digitrust": {
"name": "DigiTrust",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.digitru.st/"
},
"adtheorent": {
"name": "Adtheorent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://adtheorent.com/"
},
"narrative_io": {
"name": "Narrative I/O",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.narrative.io/"
},
"dcbap.com": {
"name": "dcbap.com",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"brealtime": {
"name": "bRealTime",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.brealtime.com/"
},
"donationtools": {
"name": "iRobinHood",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "http://www.irobinhood.org"
},
"hooklogic": {
"name": "HookLogic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://hooklogic.com/"
},
"ividence": {
"name": "Ividence",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ividence.com/home/"
},
"comprigo": {
"name": "comprigo",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://www.comprigo.com/"
},
"marvellous_machine": {
"name": "Marvellous Machine",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.marvellousmachine.net/"
},
"afgr2.com": {
"name": "afgr2.com",
- "categoryId": 3
+ "categoryId": 3,
+ "url": null
},
"orc_international": {
"name": "ORC International",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://orcinternational.com/"
},
"active_agent": {
"name": "Active Agent",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.active-agent.com/"
},
"yieldmo": {
"name": "Yieldmo",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.yieldmo.com/"
},
"google_photos": {
"name": "Google Photos",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"vinted": {
"name": "Vinted",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.vinted.com/"
},
"typeform": {
"name": "Typeform",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.typeform.com/"
},
"amazon_cloudfront": {
"name": "Amazon CloudFront",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"adthink": {
"name": "Adthink",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adthink.com/"
},
"admachine": {
"name": "AdMachine",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://admachine.co/"
},
"brillen.de": {
"name": "brillen.de",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.brillen.de/"
},
"docler": {
"name": "Docler",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.doclerholding.com/en/about/companies/33/"
},
"viralgains": {
"name": "ViralGains",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.viralgains.com/"
},
"visualstudio.com": {
"name": "Visualstudio.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.visualstudio.com/"
},
"capitaldata": {
"name": "CapitalData",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.capitaldata.fr/"
},
"akamoihd.net": {
"name": "akamoihd.net",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"magnuum.com": {
"name": "magnuum.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adswizz": {
"name": "AdsWizz",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.adswizz.com/"
},
"venturead.com": {
"name": "venturead.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adstir": {
"name": "adstir",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://en.ad-stir.com/"
},
"optinmonster": {
"name": "OptinMonster",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://optinmonster.com/"
},
"storygize": {
"name": "Storygize",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.storygize.com/"
},
"spoutable": {
"name": "Spoutable",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://spoutable.com/"
},
"petametrics": {
"name": "LiftIgniter",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.liftigniter.com/"
},
"lucky_orange": {
"name": "Lucky Orange",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.luckyorange.com/"
},
"advertserve": {
"name": "AdvertServe",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://secure.advertserve.com/"
},
"nano_interactive": {
"name": "Nano Interactive",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.nanointeractive.com/home/de"
},
"94j7afz2nr.xyz": {
"name": "94j7afz2nr.xyz",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"wordpress_ads": {
"name": "Wordpress Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://wordpress.com/"
},
"tubecorporate": {
"name": "Tube Corporate",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://tubecorporate.com/"
},
"ownpage": {
"name": "Ownpage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.ownpage.fr/index.en.html"
},
"dianomi": {
"name": "Diamoni",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.dianomi.com/cms/"
},
"bitrix": {
"name": "Bitrix24",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bitrix24.com/"
},
"wirecard": {
"name": "Wirecard",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.wirecard.com/"
},
"segmento": {
"name": "Segmento",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://segmento.ru/en"
},
"datonics": {
"name": "Datonics",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://datonics.com/"
},
"jivochat": {
"name": "JivoChat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.jivochat.com/"
},
"airbnb": {
"name": "Airbnb",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://affiliate.withairbnb.com/"
},
"widespace": {
"name": "Widespace",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.widespace.com/"
},
"platform360": {
"name": "Platform360",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.platform360.co/#home"
},
"kaeufersiegel.de": {
"name": "Käufersiegel",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.kaeufersiegel.de/"
},
"mapbox": {
"name": "Mapbox",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.mapbox.com/"
},
"startapp": {
"name": "StartApp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.startapp.com/"
},
"ipify": {
"name": "ipify",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.ipify.org/"
},
"keywee": {
"name": "Keywee",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://keywee.co/"
},
"rtbsuperhub.com": {
"name": "rtbsuperhub.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"bebi": {
"name": "Bebi Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bebi.com/"
},
"smarter_travel": {
"name": "Smarter Travel Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.smartertravel.com/"
},
"giphy.com": {
"name": "Giphy",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://giphy.com/"
},
"jetpack": {
"name": "Jetpack",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://jetpack.com/"
},
"acpm.fr": {
"name": "ACPM",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.acpm.fr/"
},
"olx-st.com": {
"name": "OLX",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.olx.com/"
},
"enreach": {
"name": "enreach",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://enreach.me/"
},
"sendpulse.com": {
"name": "SendPulse",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://sendpulse.com/"
},
"dotmetrics.net": {
"name": "Dotmetrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://dotmetrics.net/"
},
"bigmir.net": {
"name": "bigmir.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.bigmir.net/"
},
"onet.pl": {
"name": "onet",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.onet.pl/"
},
"yandex_advisor": {
"name": "Yandex.Advisor",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "https://sovetnik.yandex.ru/"
},
"dropbox.com": {
"name": "Dropbox",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.dropbox.com/"
},
"uptolike.com": {
"name": "Uptolike",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.uptolike.com/"
},
"digioh": {
"name": "Digioh",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://digioh.com/"
},
"caltat.com": {
"name": "Caltat",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://caltat.com/"
},
"1dmp.io": {
"name": "1DMP",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://1dmp.io/"
},
"datamind.ru": {
"name": "DataMind",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://datamind.ru/"
},
"embed.ly": {
"name": "Embedly",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://embed.ly/"
},
"hybrid.ai": {
"name": "Hybrid.ai",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://hybrid.ai/"
},
"dynatrace.com": {
"name": "Dynatrace",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.dynatrace.com/"
},
"pluso.ru": {
"name": "Pluso",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://share.pluso.ru/"
},
"adsniper.ru": {
"name": "AdSniper",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://ad-sniper.com/"
},
"tovarro.com": {
"name": "Tovarro",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.tovarro.com/"
},
"crosspixel": {
"name": "Cross Pixel",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://crosspixel.net/"
},
"ucoz.net": {
"name": "uCoz",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.ucoz.net/"
},
"audtd.com": {
"name": "Auditorius",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.auditorius.ru/"
},
"gfycat.com": {
"name": "gfycat",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://gfycat.com/"
},
"squarespace.com": {
"name": "Squarespace",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.squarespace.com/"
},
"acestream.net": {
"name": "ActStream",
- "categoryId": 12
+ "categoryId": 12,
+ "url": "http://www.acestream.org/"
},
"yapfiles.ru": {
"name": "yapfiles.ru",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.yapfiles.ru/"
},
"beachfront": {
"name": "Beachfront Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://beachfrontmedia.com/"
},
"dailymotion_advertising": {
"name": "Dailymotion Advertising",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://advertising.dailymotion.com/"
},
"kissmetrics.com": {
"name": "Kissmetrics",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.kissmetrics.com/"
},
"perfdrive.com": {
"name": "perfdrive.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"pendo.io": {
"name": "pendo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.pendo.io/"
},
"otm-r.com": {
"name": "OTM",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://otm-r.com/"
},
"beeline.ru": {
"name": "Beeline",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://moskva.beeline.ru/"
},
"wp.pl": {
"name": "wp.pl",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.wp.pl/"
},
"24smi": {
"name": "24СМИ",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://24smi.org/"
},
"linksynergy.com": {
"name": "Rakuten LinkShare",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://rakutenmarketing.com/affiliate"
},
"blueconic.net": {
"name": "BlueConic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.blueconic.com/"
},
"livetex.ru": {
"name": "LiveTex",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://livetex.ru/"
},
"seedtag.com": {
"name": "Seedtag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.seedtag.com/en/"
},
"hotlog.ru": {
"name": "HotLog",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://hotlog.ru/"
},
"mathjax.org": {
"name": "MathJax",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.mathjax.org/"
},
"quora.com": {
"name": "Quora",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://quora.com/"
},
"readspeaker.com": {
"name": "ReadSpeaker",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.readspeaker.com/"
},
"sanoma.fi": {
"name": "Sanoma",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://sanoma.com/"
},
"ad6media": {
"name": "ad6media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ad6media.fr/"
},
"iubenda.com": {
"name": "iubenda",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.iubenda.com/"
},
"cackle.me": {
"name": "Cackle",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://cackle.me/"
},
"giraff.io": {
"name": "Giraff.io",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.giraff.io/"
},
"feedburner.com": {
"name": "FeedBurner",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://feedburner.com"
},
"persgroep": {
"name": "De Persgroep",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.persgroep.be/"
},
"list.ru": {
"name": "Rating@Mail.Ru",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://list.ru/"
},
"retailrocket.net": {
"name": "Retail Rocket",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://retailrocket.net/"
},
"movable_ink": {
"name": "Movable Ink",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://movableink.com/"
},
"smyte": {
"name": "Smyte",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.smyte.com/"
},
"eperflex": {
"name": "Eperflex",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://eperflex.com/"
},
"ccm_benchmark": {
"name": "CCM Benchmark",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ccmbenchmark.com/"
},
"kataweb.it": {
"name": "KataWeb",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.kataweb.it/"
},
"bouncex": {
"name": "BounceX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bouncex.com/"
},
"userzoom.com": {
"name": "UserZoom",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://www.userzoom.com/"
},
"flocktory.com": {
"name": "Flocktory",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.flocktory.com/"
},
"messenger.com": {
"name": "Facebook Messenger",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://messenger.com"
},
"ooyala.com": {
"name": "Ooyala",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.ooyala.com/"
},
"naver.com": {
"name": "Naver",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.naver.com/"
},
"mailerlite.com": {
"name": "Mailerlite",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://www.mailerlite.com/"
},
"mediator.media": {
"name": "Mediator",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://mediator.media/"
},
"metaffiliation.com": {
"name": "Netaffiliation",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://netaffiliation.com/"
},
"mopinion.com": {
"name": "Mopinion",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://mopinion.com/"
},
"acint.net": {
"name": "Acint",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.acint.net/"
},
"adalyser.com": {
"name": "Adalyser",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.adalyser.com/"
},
"adblade.com": {
"name": "Adblade",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adblade.com/"
},
"adkontekst.pl": {
"name": "Adkontekst",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://netsprint.eu/"
},
"admitad.com": {
"name": "Admitad",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.admitad.com/en/#"
},
"affec.tv": {
"name": "Affec.tv",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://affectv.com/"
},
"airpr.com": {
"name": "AirPR",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://airpr.com/"
},
"allo-pages.fr": {
"name": "Allo-Pages",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "http://www.allo-pages.fr/"
},
"apa.at": {
"name": "Apa",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.apa.at/Site/index.de.html"
},
"artlebedev.ru": {
"name": "Art.Lebedev",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.artlebedev.ru/"
},
"awin1.com": {
"name": "Awin1",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.awin.com"
},
"bannerflow.com": {
"name": "Bannerflow",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bannerflow.com/"
},
"beeketing.com": {
"name": "Beeketing",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://beeketing.com/"
},
"bemobile.ua": {
"name": "Bemobile",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://bemobile.ua/en/"
},
"betweendigital.com": {
"name": "Between Digital",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://betweendigital.ru/ssp"
},
"bid.run": {
"name": "Bid.Run",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://bid.run/"
},
"bigcommerce.com": {
"name": "BigCommerce",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.bigcommerce.com/"
},
"blogfoster.com": {
"name": "Blogfoster",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.blogfoster.com/"
},
"btttag.com": {
"name": "Btttag",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.bluetriangletech.com/"
},
"bugherd.com": {
"name": "BugHerd",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://bugherd.com"
},
"cbsi.com": {
"name": "CBS Interactive",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.cbsinteractive.com/"
},
"cdnvideo.com": {
"name": "CDNvideo",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cdnvideo.com/"
},
"clearbit.com": {
"name": "Clearbit",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://clearbit.com/"
},
"cnetcontent.com": {
"name": "Cnetcontent",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://cnetcontent.com/"
},
"cnzz.com": {
"name": "Umeng",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.umeng.com/"
},
"condenastdigital.com": {
"name": "Condé Nast Digital",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.condenast.com/"
},
"connatix.com": {
"name": "Connatix",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://connatix.com/"
},
"contentexchange.me": {
"name": "Content Exchange",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.contentexchange.me/"
},
"dailymail.co.uk": {
"name": "Daily Mail",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.dailymail.co.uk/home/index.html"
},
"sociaplus.com": {
"name": "SociaPlus",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://sociaplus.com/"
},
"salesmanago.pl": {
"name": "SALESmanago",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.salesmanago.com/"
},
"zebestof.com": {
"name": "Zebestof",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.zebestof.com/en/home/"
},
"wysistat.com": {
"name": "Wysistat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://wysistat.net/"
},
"o2.pl": {
"name": "o2.pl",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.o2.pl/"
},
"omniconvert.com": {
"name": "Omniconvert",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.omniconvert.com/"
},
"optinproject.com": {
"name": "OptinProject",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.optincollect.com/en"
},
"ora.tv": {
"name": "Ora.TV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.ora.tv/"
},
"owox.com": {
"name": "OWOX",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.owox.com/"
},
"peer5.com": {
"name": "Peer5",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.peer5.com/"
},
"pepper.com": {
"name": "Pepper",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.pepper.com/"
},
"pladform.ru": {
"name": "Pladform",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://distribution.pladform.ru/"
},
"playbuzz.com": {
"name": "Playbuzz",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.playbuzz.com/"
},
"powr.io": {
"name": "POWr",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.powr.io/"
},
"prismamediadigital.com": {
"name": "Prisma Media Digital",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.pmdrecrute.com/"
},
"privy.com": {
"name": "Privy",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://privy.com/"
},
"pscp.tv": {
"name": "Periscope",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://www.pscp.tv/"
},
"push.world": {
"name": "Push.world",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://push.world/en"
},
"qq.com": {
"name": "qq.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.qq.com/"
},
"quartic.pl": {
"name": "Quartic",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.quarticon.com/"
},
"rcs.it": {
"name": "RCS",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.rcsmediagroup.it/"
},
"recettes.net": {
"name": "Recettes.net",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.recettes.net/"
},
"redcdn.pl": {
"name": "redGalaxy CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.atendesoftware.pl/"
},
"reembed.com": {
"name": "reEmbed",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.reembed.com/"
},
"reevoo.com": {
"name": "Reevoo",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.reevoo.com/en/"
},
"republer.com": {
"name": "Republer",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://republer.com/"
},
"resultspage.com": {
"name": "SLI Systems",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.sli-systems.com/"
},
"ringier.ch": {
"name": "Ringier",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://ringier.ch/en"
},
"riskfield.com": {
"name": "Riskfield",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.riskified.com/"
},
"salesforce.com": {
"name": "Salesforce",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.salesforce.com/eu/"
},
"samba.tv": {
"name": "Samba TV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://samba.tv/"
},
"sape.ru": {
"name": "Sape",
- "categoryId": 6
+ "categoryId": 6,
+ "url": null
},
"schibsted": {
"name": "Schibsted Media Group",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.schibsted.com/"
},
"shopifycdn.com": {
"name": "Shopify CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.shopify.com/"
},
"shopifycloud.com": {
"name": "Shopify Cloud",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.shopify.com/"
},
"orange_france": {
"name": "Orange France",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.orange.fr/"
},
"le_monde.fr": {
"name": "Le Monde.fr",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.lemonde.fr/"
},
"accengage": {
"name": "Accengage",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.accengage.com/"
},
"polar.me": {
"name": "Polar",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://polar.me/"
},
"nekudo.com": {
"name": "Nekudo",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://nekudo.com/"
},
"wikia-services.com": {
"name": "Wikia Services",
- "categoryId": 8
+ "categoryId": 8,
+ "url": " http://www.wikia.com/fandom"
},
"baidu_static": {
"name": "Baidu Static",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.baidu.com/"
},
"allegro.pl": {
"name": "Allegro",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://allegro.pl"
},
"pushwoosh.com": {
"name": "Pushwoosh",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.pushwoosh.com/"
},
"instart_logic": {
"name": "Instart Logic",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.instartlogic.com/"
},
"the_guardian": {
"name": "The Guardian",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.theguardian.com/"
},
"onfocus.io": {
"name": "OnFocus",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://onfocus.io/"
},
"fastpic.ru": {
"name": "FastPic",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://fastpic.ru/"
},
"vk.com": {
"name": "Vk.com",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "https://vk.com/"
},
"fileserve": {
"name": "FileServe",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "http://fileserve.com/"
},
"monero_miner": {
"name": "Monero Miner",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://devappgrant.space/"
},
"gstatic": {
"name": "Google Static",
- "categoryId": 9
+ "categoryId": 9,
+ "url": null
},
"google_servers": {
"name": "Google Servers",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://support.google.com/faqs/answer/174717?hl=en"
},
"google_fonts": {
"name": "Google Fonts",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://fonts.google.com/"
},
"google_custom_search": {
"name": "Google Custom Search Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://developers.google.com/custom-search-ads/"
},
"yieldlove": {
"name": "Yieldlove",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.yieldlove.com/"
},
"intermarkets.net": {
"name": "Intermarkets",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://intermarkets.net/"
},
"eproof": {
"name": "eProof",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.eproof.com/"
},
"combotag": {
"name": "ComboTag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.combotag.com/"
},
"ziff_davis": {
"name": "Ziff Davis",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ziffdavis.com/"
},
"twitch_cdn": {
"name": "Twitch CDN",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.twitch.tv/"
},
"disqus_ads": {
"name": "Disqus Ads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://disqusads.com/"
},
"typography.com": {
"name": "Webfonts by Hoefler&Co",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.typography.com/"
},
"bbci": {
"name": "BBC",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://bbc.co.uk"
},
"puserving.com": {
"name": "puserving.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"piguiqproxy.com": {
"name": "piguiqproxy.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"relap": {
"name": "Relap",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://relap.io/"
},
"speedcurve": {
"name": "SpeedCurve",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://speedcurve.com/"
},
"curse.com": {
"name": "Curse",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.curse.com/"
},
"taobao": {
"name": "Taobao",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://world.taobao.com/"
},
"zimbio.com": {
"name": "Zimbio",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.zimbio.com/"
},
"sharepoint": {
"name": "Microsoft SharePoint",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://products.office.com/en-us/sharepoint/sharepoint-online-collaboration-software"
},
"openstat": {
"name": "OpenStat",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.openstat.ru/"
},
"ymetrica1.com": {
"name": "ymetrica1.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"foresee": {
"name": "Foresee",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.foresee.com/"
},
"hotdogsandads.com": {
"name": "hotdogsandads.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"footprintdns.com": {
"name": "Footprint DNS",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"velocecdn.com": {
"name": "velocecdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"unpkg.com": {
"name": "unpkg",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://unpkg.com/#/"
},
"mailchimp": {
"name": "MailChimp",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://mailchimp.com/"
},
"xnxx_cdn": {
"name": "xnxx CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.xnxx.com"
},
"glganltcs.space": {
"name": "glganltcs.space",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"roblox": {
"name": "Roblox",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.roblox.com/"
},
"nbc_news": {
"name": "NBC News",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.nbcnews.com/"
},
"4chan": {
"name": "4Chan",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.4chan.org/"
},
"rakuten_display": {
"name": "Rakuten Display",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://rakutenmarketing.com/display"
},
"notify": {
"name": "Notify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://notify.ag/en/"
},
"loadercdn.com": {
"name": "loadercdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"dyncdn.me": {
"name": "dyncdn.me",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"amgload.net": {
"name": "amgload.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"statsy.net": {
"name": "statsy.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"digital_nomads": {
"name": "Digital Nomads",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://dnomads.net/"
},
"superfastcdn.com": {
"name": "superfastcdn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"i10c.net": {
"name": "i10c.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"fap.to": {
"name": "Imagefap",
- "categoryId": 8
+ "categoryId": 8,
+ "url": null
},
"nyt.com": {
"name": "The New York Times",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.nytimes.com/"
},
"datadome": {
"name": "DataDome",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://datadome.co/"
},
"adrecover": {
"name": "AdRecover",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adrecover.com/"
},
"navegg_dmp": {
"name": "Navegg DMP",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://navdmp.com/"
},
"adverticum": {
"name": "Adverticum",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adverticum.net/english/"
},
"auth0": {
"name": "Auth0 Inc.",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://auth0.com/"
},
"kampyle": {
"name": "Kampyle",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.kampyle.com/"
},
"st-hatena": {
"name": "St-Hatena",
- "categoryId": 7
+ "categoryId": 7,
+ "url": "http://www.hatena.ne.jp/"
},
"wonderpush": {
"name": "WonderPush",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.wonderpush.com/"
},
"yieldbot": {
"name": "Yieldbot",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.yieldbot.com/"
},
"strossle": {
"name": "Strossle",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://strossle.com/"
},
"comscore": {
"name": "ComScore, Inc.",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.comscore.com/"
},
"datds.net": {
"name": "datds.net",
- "categoryId": 12
+ "categoryId": 12,
+ "url": null
},
"uuidksinc.net": {
"name": "uuidksinc.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"camakaroda.com": {
"name": "camakaroda.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"khzbeucrltin.com": {
"name": "khzbeucrltin.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"defpush.com": {
"name": "defpush.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"webedia": {
"name": "Webedia",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://fr.webedia-group.com/"
},
"oath_inc": {
"name": "Oath, Inc.",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.oath.com/"
},
"grapeshot": {
"name": "Grapeshot",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.grapeshot.com/"
},
"cnbc": {
"name": "CNBC",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.cnbc.com/"
},
"statuspage.io": {
"name": "Statuspage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.statuspage.io/"
},
"adalliance.io": {
"name": "Ad Alliance",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ad-alliance.de/"
},
"pvclouds.com": {
"name": "pvclouds.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"borrango.com": {
"name": "borrango.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"shutterstock": {
"name": "Shutterstock",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.shutterstock.com/"
},
"xxxlutz": {
"name": "XXXLutz",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.xxxlutz.de/"
},
"dreamlab.pl": {
"name": "DreamLab.pl",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.dreamlab.pl/"
},
"mux_inc": {
"name": "Mux, Inc.",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://mux.com/"
},
"dmg_media": {
"name": "DMG Media",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.dmgmedia.co.uk/"
},
"admantx.com": {
"name": "ADmantX",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.admantx.com/"
},
"tail_target": {
"name": "Tail",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.tail.digital/"
},
"contentful_gmbh": {
"name": "Contentful GmbH",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.contentful.com/"
},
"snigelweb": {
"name": "SnigelWeb, Inc.",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.snigelweb.com/"
},
"github_apps": {
"name": "GitHub Apps",
- "categoryId": 2
+ "categoryId": 2,
+ "url": null
},
"quantum_metric": {
"name": "Quantum Metric",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.quantummetric.com/"
},
"the_sun": {
"name": "The Sun",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.thesun.co.uk/"
},
"ancestry_cdn": {
"name": "Ancestry CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.ancestry.com/"
},
"go.com": {
"name": "go.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "go.com"
},
"etsystatic": {
"name": "Etsy CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": ""
},
"latimes": {
"name": "Los Angeles Times",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.latimes.com/"
},
"sovrn_viewability_solutions": {
"name": "Sovrn Viewability Solutions",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.sovrn.com/meridian/onscroll-viewability/"
},
"espn_cdn": {
"name": "ESPN CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "http://www.espn.com/"
},
"themoviedb": {
"name": "The Movie DB",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.themoviedb.org/"
},
"netsprint_audience": {
"name": "Netsprint Audience",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://audience.netsprint.eu/"
},
"braze": {
"name": "Braze",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.braze.com/"
},
"experian": {
"name": "Experian",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.experian.com/"
},
"foxnews_static": {
"name": "Fox News CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": ""
},
"creative_commons": {
"name": "Creative Commons",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://creativecommons.org/"
},
"cloudimage.io": {
"name": "Cloudimage.io",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.cloudimage.io/en/home"
},
"level3_communications": {
"name": "Level 3 Communications, Inc.",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.level3.com/en/"
},
"boudja.com": {
"name": "boudja.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"bwbx.io": {
"name": "Bloomberg CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.bloomberg.com/"
},
"tororango.com": {
"name": "tororango.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"interedy.info": {
"name": "interedy.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"lottex_inc": {
"name": "vidcpm.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"lyuoaxruaqdo.com": {
"name": "lyuoaxruaqdo.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"github_pages": {
"name": "Github Pages",
- "categoryId": 10
+ "categoryId": 10,
+ "url": "https://pages.github.com/"
},
"bloomreach": {
"name": "BloomReach",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bloomreach.com/en"
},
"facebook_cdn": {
"name": "Facebook CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.facebook.com"
},
"amazon": {
"name": "Amazon.com",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.amazon.com"
},
"amazon_adsystem": {
"name": "Amazon Adsystem",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://advertising.amazon.com/"
},
"amazon_cdn": {
"name": "Amazon CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.amazon.com"
},
"iab_consent": {
"name": "IAB Consent",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://iabtechlab.com/standards/gdpr-transparency-and-consent-framework/"
},
"cookiebot": {
"name": "Cookiebot",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.cookiebot.com/en/"
},
"optanaon": {
"name": "Optanaon by OneTrust",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.cookielaw.org/"
},
"bluecore": {
"name": "Bluecore",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.bluecore.com/"
},
"adlabs": {
"name": "AdLabs",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.adlabs.ru/"
},
"admo.tv": {
"name": "Admo.TV",
- "categoryId": 3
+ "categoryId": 3,
+ "url": "https://admo.tv/"
},
"vntsm.com": {
"name": "Venatus Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.venatusmedia.com/"
},
"modulepush.com": {
"name": "modulepush.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"express.co.uk": {
"name": "express.co.uk",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.express.co.uk/"
},
"trafmag.com": {
"name": "TrafMag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://trafmag.com/"
},
"admixer.net": {
"name": "Admixer",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://admixer.net/"
},
"coll2onf.com": {
"name": "coll2onf.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"reuters_media": {
"name": "Reuters media",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://reuters.com"
},
"ad-delivery.net": {
"name": "ad-delivery.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"videoplayerhub.com": {
"name": "videoplayerhub.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"evergage.com": {
"name": "Evergage",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.evergage.com"
},
"zdassets.com": {
"name": "Zendesk CDN",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "http://www.zendesk.com/"
},
"sovrn_onetag": {
"name": "Sovrn OneTag",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://community.sovrn.com/s/article/OneTag-Implementation-Guide?language=en_US"
},
"revenue_hits": {
"name": "RevenueHits",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.revenuehits.com/"
},
"amazon_video": {
"name": "Amazon Instant Video",
- "categoryId": 0
+ "categoryId": 0,
+ "url": "https://www.amazon.com"
},
"kinja.com": {
"name": "Kinja",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://kinja.com/"
},
"kinja_static": {
"name": "Kinja Static",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://kinja.com/"
},
"coinhive": {
"name": "Coinhive",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://coinhive.com/"
},
"snapchat": {
"name": "Snapchat For Business",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.snapchat.com/"
},
"early_birds": {
"name": "Early Birds",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.early-birds.fr/"
},
"pushno.com": {
"name": "pushno.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"beampulse.com": {
"name": "BeamPulse",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://en.beampulse.com/"
},
"discord": {
"name": "Discord",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://discordapp.com/"
},
"medialead": {
"name": "Medialead",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.medialead.de/"
},
"r_advertising": {
"name": "R-Advertising",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://www.r-advertising.com/"
},
"storify": {
"name": "Storify",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://storify.com/"
},
"eulerian": {
"name": "Eulerian Technologies",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.eulerian.com/"
},
"steelhouse": {
"name": "Steel House Media",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://steelhouse.com/"
},
"stalluva.pro": {
"name": "stalluva.pro",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"ie8eamus.com": {
"name": "ie8eamus.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"pageanalytics.space": {
"name": "pageanalytics.space",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"zmctrack.net": {
"name": "zmctrack.net",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"urban_airship": {
"name": "Urban Airship",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.urbanairship.com/"
},
"trueanthem": {
"name": "True Anthem",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.trueanthem.com/"
},
"insider": {
"name": "Insider",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://useinsider.com/"
},
"joinhoney": {
"name": "Honey",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.joinhoney.com/"
},
"ionicframework.com": {
"name": "Ionic",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://ionicframework.com/"
},
"loadsource.org": {
"name": "loadsource.org",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"adbetnet.com": {
"name": "adbetnet",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://adbetnet.com/"
},
"pstatic.net": {
"name": "Naver CDN",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.naver.com/"
},
"zukxd6fkxqn.com": {
"name": "zukxd6fkxqn.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"treasuredata": {
"name": "Treasure Data",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://www.treasuredata.com/"
},
"yandex_direct": {
"name": "Yandex.Direct",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://direct.yandex.com/"
},
"ispot.tv": {
"name": "iSpot.tv",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.ispot.tv/"
},
"microad": {
"name": "MicroAd",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.microad.co.jp/"
},
"onetrust": {
"name": "OneTrust",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.onetrust.com/"
},
"undercomputer.com": {
"name": "undercomputer.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"popin.cc": {
"name": "popIn",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.popin.cc/"
},
"fout.jp": {
"name": "FreakOut",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.fout.co.jp/"
},
"baletingo.com": {
"name": "baletingo.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"arcpublishing": {
"name": "Arc Publishing",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.arcpublishing.com/"
},
"adxprtz.com": {
"name": "adxprtz.com",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"gettyimages": {
"name": "Getty Images",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.gettyimages.com/"
},
"distroscale": {
"name": "Distroscale",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.distroscale.com/"
},
"hubvisor.io": {
"name": "Hubvisor",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://hubvisor.io/"
},
"inboxsdk.com": {
"name": "Inbox SDK",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://www.inboxsdk.com/"
},
"maxymiser": {
"name": "Oracle Maxymiser",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.oracle.com/marketingcloud/products/testing-and-optimization/index.html"
},
"vacaneedasap.com": {
"name": "vacaneedasap.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"cdnsure.com": {
"name": "cdnsure.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"pub.network": {
"name": "pub.network",
- "categoryId": 4
+ "categoryId": 4,
+ "url": null
},
"noaa.gov": {
"name": "National Oceanic and Atmospheric Administration",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://noaa.gov/"
},
"o12zs3u2n.com": {
"name": "o12zs3u2n.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"nyacampwk.com": {
"name": "nyacampwk.com",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"noop.style": {
"name": "noop.style",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"poirreleast.club": {
"name": "poirreleast.club",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"newsupdatedir.info": {
"name": "newsupdatedir.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"bluenewsupdate.info": {
"name": "bluenewsupdate.info",
- "categoryId": 11
+ "categoryId": 11,
+ "url": null
},
"prebid": {
"name": "Prebid",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "http://prebid.org/"
},
"appcues": {
"name": "Appcues",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.appcues.com/"
},
"ninja_access_analysis": {
"name": "Ninja Access Analysis",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "http://www.ninja.co.jp/analysis/"
},
"moz": {
"name": "Moz",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://moz.com/"
},
"didomi": {
"name": "Didomi",
- "categoryId": 5
+ "categoryId": 5,
+ "url": "https://www.didomi.io/en/"
},
"licensebuttons.net": {
"name": "licensebuttons.net",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://licensebuttons.net/"
},
"line_apps": {
"name": "LINE Apps",
- "categoryId": 8
+ "categoryId": 8,
+ "url": "https://line.me/en-US/"
},
"mediav": {
"name": "MediaV",
- "categoryId": 4
+ "categoryId": 4,
+ "url": "https://www.mediav.com/"
},
"adobe_login": {
"name": "Adobe Login",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://www.adobe.com/"
},
"runmewivel.com": {
"name": "runmewivel.com",
- "categoryId": 10
+ "categoryId": 10,
+ "url": null
},
"turner": {
"name": "Turner",
- "categoryId": 9
+ "categoryId": 9,
+ "url": "https://www.turner.com/"
},
"digital.gov": {
"name": "Digital.gov",
- "categoryId": 6
+ "categoryId": 6,
+ "url": "https://digital.gov/"
},
"datatables": {
"name": "DataTables",
- "categoryId": 2
+ "categoryId": 2,
+ "url": "https://datatables.net/"
}
},
"trackerDomains": {
diff --git a/client/src/helpers/whotracksme.js b/client/src/helpers/whotracksme.js
deleted file mode 100644
index 8d86a9c6..00000000
--- a/client/src/helpers/whotracksme.js
+++ /dev/null
@@ -1,44 +0,0 @@
-import trackersDb from './whotracksmedb.json';
-
-/**
- @typedef TrackerData
- @type {object}
- @property {string} id - tracker ID.
- @property {string} name - tracker name.
- @property {number} category - tracker category.
- */
-
-/**
- * Gets tracker data in the whotracksme database
- *
- * @param {String} domainName domain name to check
- * @returns {TrackerData} tracker data or null if no matching tracker found
- */
-export const getTrackerData = (domainName) => {
- if (!domainName) {
- return null;
- }
-
- const parts = domainName.split(/\./g).reverse();
- let hostToCheck = '';
-
- // Check every subdomain
- for (let i = 0; i < parts.length; i += 1) {
- hostToCheck = parts[i] + (i > 0 ? '.' : '') + hostToCheck;
- const trackerId = trackersDb.trackerDomains[hostToCheck];
-
- if (trackerId) {
- const trackerData = trackersDb.trackers[trackerId];
- const categoryName = trackersDb.categories[trackerData.categoryId];
-
- return {
- id: trackerId,
- name: trackerData.name,
- category: categoryName,
- };
- }
- }
-
- // No tracker found for the specified domain
- return null;
-};
diff --git a/scripts/whotracksme/README.md b/scripts/whotracksme/README.md
index 0b65de0d..6ced7ac1 100644
--- a/scripts/whotracksme/README.md
+++ b/scripts/whotracksme/README.md
@@ -6,7 +6,7 @@ A simple script that converts the Ghostery/Cliqz trackers database to a json for
```
yarn install
-yarn index.js
+node index.js
```
You'll find the output in the `whotracksmedb.json` file.
\ No newline at end of file
diff --git a/scripts/whotracksme/index.js b/scripts/whotracksme/index.js
index 288b2179..76a44bd4 100644
--- a/scripts/whotracksme/index.js
+++ b/scripts/whotracksme/index.js
@@ -3,7 +3,7 @@ const sqlite3 = require('sqlite3').verbose();
const downloadFileSync = require('download-file-sync');
const INPUT_SQL_URL = 'https://raw.githubusercontent.com/cliqz-oss/whotracks.me/master/whotracksme/data/assets/trackerdb.sql';
-const OUTPUT_PATH = 'whotracksmedb.json';
+const OUTPUT_PATH = 'whotracksme.json';
console.log('Downloading ' + INPUT_SQL_URL);
let trackersDbSql = downloadFileSync(INPUT_SQL_URL).toString();
@@ -50,7 +50,8 @@ db.serialize(function() {
whotracksme.trackers[row.id] = {
"name": row.name,
- "categoryId": row.category_id
+ "categoryId": row.category_id,
+ "url": row.website_url
};
});
diff --git a/scripts/whotracksme/whotracksme.json b/scripts/whotracksme/whotracksme.json
new file mode 100644
index 00000000..122149a5
--- /dev/null
+++ b/scripts/whotracksme/whotracksme.json
@@ -0,0 +1,8628 @@
+{
+ "timeUpdated": "2018-10-14T19:21:45.099Z",
+ "categories": {
+ "0": "audio_video_player",
+ "1": "comments",
+ "2": "customer_interaction",
+ "3": "pornvertising",
+ "4": "advertising",
+ "5": "essential",
+ "6": "site_analytics",
+ "7": "social_media",
+ "8": "misc",
+ "9": "cdn",
+ "10": "hosting",
+ "11": "unknown",
+ "12": "extensions"
+ },
+ "trackers": {
+ "google_analytics": {
+ "name": "Google Analytics",
+ "categoryId": 6,
+ "url": "http://www.google.com/analytics/"
+ },
+ "doubleclick": {
+ "name": "DoubleClick",
+ "categoryId": 4,
+ "url": "http://www.doubleclick.com"
+ },
+ "google": {
+ "name": "Google",
+ "categoryId": 4,
+ "url": null
+ },
+ "googleapis.com": {
+ "name": "Google APIs",
+ "categoryId": 9,
+ "url": "https://www.googleapis.com/"
+ },
+ "google_tag_manager": {
+ "name": "Google Tag Manager",
+ "categoryId": 5,
+ "url": "http://www.google.com"
+ },
+ "facebook": {
+ "name": "Facebook",
+ "categoryId": 4,
+ "url": "https://www.facebook.com"
+ },
+ "infonline": {
+ "name": "INFOnline",
+ "categoryId": 6,
+ "url": "http://www2.infonline.de/"
+ },
+ "google_adservices": {
+ "name": "Google AdServices",
+ "categoryId": 4,
+ "url": null
+ },
+ "google_syndication": {
+ "name": "Google Syndication",
+ "categoryId": 4,
+ "url": null
+ },
+ "amazon_web_services": {
+ "name": "Amazon Web Services",
+ "categoryId": 10,
+ "url": null
+ },
+ "criteo": {
+ "name": "Criteo",
+ "categoryId": 4,
+ "url": "http://www.criteo.com/"
+ },
+ "appnexus": {
+ "name": "AppNexus",
+ "categoryId": 4,
+ "url": "http://www.appnexus.com/"
+ },
+ "adition": {
+ "name": "Adition",
+ "categoryId": 4,
+ "url": "http://en.adition.com/"
+ },
+ "amazon_associates": {
+ "name": "Amazon Associates",
+ "categoryId": 4,
+ "url": "http://aws.amazon.com/associates/"
+ },
+ "adform": {
+ "name": "Adform",
+ "categoryId": 4,
+ "url": "http://www.adform.com"
+ },
+ "scorecard_research_beacon": {
+ "name": "ScoreCard Research Beacon",
+ "categoryId": 4,
+ "url": "http://www.voicefive.com/"
+ },
+ "optimizely": {
+ "name": "Optimizely",
+ "categoryId": 6,
+ "url": "https://www.optimizely.com/"
+ },
+ "twitter": {
+ "name": "Twitter",
+ "categoryId": 7,
+ "url": "https://twitter.com"
+ },
+ "kaspersky-labs.com": {
+ "name": "Kaspersky Labs",
+ "categoryId": 12,
+ "url": "https://www.kaspersky.com/"
+ },
+ "bing_ads": {
+ "name": "Bing Ads",
+ "categoryId": 4,
+ "url": "https://adcenter.microsoft.com/"
+ },
+ "openx": {
+ "name": "OpenX",
+ "categoryId": 4,
+ "url": "http://www.openx.org/"
+ },
+ "youtube": {
+ "name": "YouTube",
+ "categoryId": 0,
+ "url": null
+ },
+ "the_adex": {
+ "name": "The ADEX",
+ "categoryId": 4,
+ "url": "http://www.theadex.com/"
+ },
+ "yieldlab": {
+ "name": "Yieldlab",
+ "categoryId": 4,
+ "url": "http://www.yieldlab.de/"
+ },
+ "rubicon": {
+ "name": "Rubicon",
+ "categoryId": 4,
+ "url": "http://rubiconproject.com/"
+ },
+ "nugg.ad": {
+ "name": "Nugg.Ad",
+ "categoryId": 4,
+ "url": "http://www.nugg.ad/"
+ },
+ "tradedesk": {
+ "name": "TradeDesk",
+ "categoryId": 4,
+ "url": "http://www.thetradedesk.com/"
+ },
+ "tealium": {
+ "name": "Tealium",
+ "categoryId": 5,
+ "url": "http://www.tealium.com/"
+ },
+ "adobe_audience_manager": {
+ "name": "Adobe Audience Manager",
+ "categoryId": 4,
+ "url": "http://www.demdex.com/"
+ },
+ "pubmatic": {
+ "name": "PubMatic",
+ "categoryId": 4,
+ "url": "http://www.pubmatic.com/"
+ },
+ "index_exchange_": {
+ "name": "Index Exchange",
+ "categoryId": 4,
+ "url": "http://www.casalemedia.com/"
+ },
+ "new_relic": {
+ "name": "New Relic",
+ "categoryId": 6,
+ "url": "http://newrelic.com/"
+ },
+ "addthis": {
+ "name": "AddThis",
+ "categoryId": 4,
+ "url": "http://www.addthis.com/"
+ },
+ "akamai_technologies": {
+ "name": "Akamai Technologies",
+ "categoryId": 6,
+ "url": null
+ },
+ "mediamath": {
+ "name": "MediaMath",
+ "categoryId": 4,
+ "url": "http://www.mediamath.com/"
+ },
+ "xplosion": {
+ "name": "xplosion",
+ "categoryId": 4,
+ "url": "http://www.xplosion.de/"
+ },
+ "meetrics": {
+ "name": "Meetrics",
+ "categoryId": 4,
+ "url": "http://www.meetrics.de/"
+ },
+ "media_innovation_group": {
+ "name": "Media Innovation Group",
+ "categoryId": 4,
+ "url": "http://www.themig.com/"
+ },
+ "bluekai": {
+ "name": "BlueKai",
+ "categoryId": 4,
+ "url": "http://www.bluekai.com/"
+ },
+ "exactag": {
+ "name": "Exactag",
+ "categoryId": 6,
+ "url": "http://www.exactag.com"
+ },
+ "google_users": {
+ "name": "Google User Content",
+ "categoryId": 9,
+ "url": null
+ },
+ "adomik": {
+ "name": "Adomik",
+ "categoryId": 4,
+ "url": null
+ },
+ "adobe_dynamic_tag_management": {
+ "name": "Adobe Dynamic Tag Management",
+ "categoryId": 5,
+ "url": null
+ },
+ "united_internet_media_gmbh": {
+ "name": "United Internet Media GmbH",
+ "categoryId": 4,
+ "url": null
+ },
+ "emetriq": {
+ "name": "emetriq",
+ "categoryId": 4,
+ "url": null
+ },
+ "adtech": {
+ "name": "ADTECH",
+ "categoryId": 6,
+ "url": "http://www.adtechus.com/"
+ },
+ "outbrain": {
+ "name": "Outbrain",
+ "categoryId": 8,
+ "url": null
+ },
+ "hotjar": {
+ "name": "Hotjar",
+ "categoryId": 6,
+ "url": "http://www.hotjar.com/"
+ },
+ "atlas": {
+ "name": "Atlas",
+ "categoryId": 4,
+ "url": "https://atlassolutions.com"
+ },
+ "at_internet": {
+ "name": "AT Internet",
+ "categoryId": 6,
+ "url": "http://www.xiti.com/"
+ },
+ "aggregate_knowledge": {
+ "name": "Aggregate Knowledge",
+ "categoryId": 4,
+ "url": "http://www.aggregateknowledge.com/"
+ },
+ "yahoo": {
+ "name": "Yahoo!",
+ "categoryId": 6,
+ "url": null
+ },
+ "trusted_shops": {
+ "name": "Trusted Shops",
+ "categoryId": 6,
+ "url": null
+ },
+ "taboola": {
+ "name": "Taboola",
+ "categoryId": 4,
+ "url": "http://www.taboola.com"
+ },
+ "smart_adserver": {
+ "name": "SMART AdServer",
+ "categoryId": 4,
+ "url": "http://www.smartadserver.co.uk/"
+ },
+ "quantcast": {
+ "name": "Quantcast",
+ "categoryId": 4,
+ "url": "http://www.quantcast.com/"
+ },
+ "adality_gmbh": {
+ "name": "adality GmbH",
+ "categoryId": 4,
+ "url": null
+ },
+ "omniture__adobe_analytics_": {
+ "name": "Omniture (Adobe Analytics)",
+ "categoryId": 6,
+ "url": "http://www.omniture.com/en/"
+ },
+ "yandex": {
+ "name": "Yandex",
+ "categoryId": 4,
+ "url": null
+ },
+ "contact_impact": {
+ "name": "Contact Impact",
+ "categoryId": 4,
+ "url": "https://www.contactimpact.de/"
+ },
+ "mbr_targeting": {
+ "name": "mbr targeting",
+ "categoryId": 4,
+ "url": null
+ },
+ "krux_digital": {
+ "name": "Krux Digital",
+ "categoryId": 4,
+ "url": "http://kruxdigital.com/"
+ },
+ "pinterest": {
+ "name": "Pinterest",
+ "categoryId": 7,
+ "url": "http://pinterest.com/"
+ },
+ "adscale": {
+ "name": "AdScale",
+ "categoryId": 4,
+ "url": "http://www.adscale.de/"
+ },
+ "moat": {
+ "name": "Moat",
+ "categoryId": 4,
+ "url": "http://www.moat.com/"
+ },
+ "sizmek": {
+ "name": "Sizmek",
+ "categoryId": 4,
+ "url": "http://www.mediamind.com/"
+ },
+ "ligatus": {
+ "name": "Ligatus",
+ "categoryId": 4,
+ "url": "http://www.ligatus.com/"
+ },
+ "webtrekk": {
+ "name": "Webtrekk",
+ "categoryId": 6,
+ "url": "http://www.webtrekk.com/"
+ },
+ "chartbeat": {
+ "name": "ChartBeat",
+ "categoryId": 6,
+ "url": "http://chartbeat.com/"
+ },
+ "turn_inc.": {
+ "name": "Turn Inc.",
+ "categoryId": 4,
+ "url": "http://www.turn.com/corp/"
+ },
+ "tapad": {
+ "name": "Tapad",
+ "categoryId": 4,
+ "url": "http://www.tapad.com/ "
+ },
+ "exoclick": {
+ "name": "ExoClick",
+ "categoryId": 3,
+ "url": "http://exoclick.com/"
+ },
+ "liveramp": {
+ "name": "LiveRamp",
+ "categoryId": 4,
+ "url": "http://www.rapleaf.com/"
+ },
+ "advertising.com": {
+ "name": "Advertising.com",
+ "categoryId": 4,
+ "url": "http://www.platform-a.com/"
+ },
+ "xhamster": {
+ "name": "xHamster",
+ "categoryId": 3,
+ "url": null
+ },
+ "plista": {
+ "name": "Plista",
+ "categoryId": 4,
+ "url": "http://www.plista.com"
+ },
+ "netratings_sitecensus": {
+ "name": "NetRatings SiteCensus",
+ "categoryId": 4,
+ "url": "http://www.nielsen-online.com"
+ },
+ "visual_website_optimizer": {
+ "name": "Visual Website Optimizer",
+ "categoryId": 6,
+ "url": "http://visualwebsiteoptimizer.com/"
+ },
+ "vg_wort": {
+ "name": "VG Wort",
+ "categoryId": 6,
+ "url": "https://tom.vgwort.de/portal/showHelp"
+ },
+ "buysellads": {
+ "name": "BuySellAds",
+ "categoryId": 4,
+ "url": "http://buysellads.com/"
+ },
+ "traffic_stars": {
+ "name": "Traffic Stars",
+ "categoryId": 3,
+ "url": null
+ },
+ "brightroll": {
+ "name": "BrightRoll",
+ "categoryId": 4,
+ "url": "http://www.brightroll.com/"
+ },
+ "rocket_fuel": {
+ "name": "Rocket Fuel",
+ "categoryId": 4,
+ "url": "http://rocketfuelinc.com/"
+ },
+ "gravatar": {
+ "name": "Gravatar",
+ "categoryId": 7,
+ "url": "http://en.gravatar.com/"
+ },
+ "zanox": {
+ "name": "Zanox",
+ "categoryId": 4,
+ "url": "http://www.zanox.com/us/"
+ },
+ "roq.ad": {
+ "name": "Roq.ad",
+ "categoryId": 4,
+ "url": "https://www.roq.ad/"
+ },
+ "pornhub": {
+ "name": "PornHub",
+ "categoryId": 3,
+ "url": null
+ },
+ "drawbridge": {
+ "name": "Drawbridge",
+ "categoryId": 4,
+ "url": "http://www.drawbrid.ge/"
+ },
+ "wikimedia.org": {
+ "name": "WikiMedia",
+ "categoryId": 9,
+ "url": null
+ },
+ "crazy_egg": {
+ "name": "Crazy Egg",
+ "categoryId": 6,
+ "url": "http://crazyegg.com/"
+ },
+ "conversant": {
+ "name": "Conversant",
+ "categoryId": 4,
+ "url": "https://www.conversantmedia.eu/"
+ },
+ "integral_ad_science": {
+ "name": "Integral Ad Science",
+ "categoryId": 4,
+ "url": "http://www.adsafemedia.com/"
+ },
+ "econda": {
+ "name": "Econda",
+ "categoryId": 6,
+ "url": "http://www.econda.de/"
+ },
+ "twiago": {
+ "name": "Twiago",
+ "categoryId": 4,
+ "url": "https://www.twiago.com/"
+ },
+ "trafficjunky": {
+ "name": "TrafficJunky",
+ "categoryId": 3,
+ "url": "http://www.trafficjunky.net/"
+ },
+ "dotomi": {
+ "name": "Dotomi",
+ "categoryId": 4,
+ "url": "http://www.dotomi.com/"
+ },
+ "jw_player": {
+ "name": "JW Player",
+ "categoryId": 0,
+ "url": null
+ },
+ "paypal": {
+ "name": "PayPal",
+ "categoryId": 2,
+ "url": "https://www.paypal.com"
+ },
+ "seeding_alliance": {
+ "name": "Seeding Alliance",
+ "categoryId": 4,
+ "url": "http://seeding-alliance.de"
+ },
+ "affilinet": {
+ "name": "affilinet",
+ "categoryId": 4,
+ "url": "https://www.affili.net/"
+ },
+ "etracker": {
+ "name": "etracker",
+ "categoryId": 6,
+ "url": "http://www.etracker.com/en/"
+ },
+ "lotame": {
+ "name": "Lotame",
+ "categoryId": 4,
+ "url": "http://www.lotame.com/"
+ },
+ "juggcash": {
+ "name": "JuggCash",
+ "categoryId": 3,
+ "url": "http://www.juggcash.com"
+ },
+ "liquidm_technology_gmbh": {
+ "name": "LiquidM Technology GmbH",
+ "categoryId": 4,
+ "url": "https://liquidm.com/"
+ },
+ "eyeota": {
+ "name": "Eyeota",
+ "categoryId": 4,
+ "url": "http://www.eyeota.com/"
+ },
+ "ebay": {
+ "name": "eBay Stats",
+ "categoryId": 4,
+ "url": "https://www.ebaypartnernetwork.com/files/hub/en-US/index.htmln progress "
+ },
+ "indeed": {
+ "name": "Indeed",
+ "categoryId": 4,
+ "url": "http://www.indeed.com/"
+ },
+ "linkedin": {
+ "name": "LinkedIn",
+ "categoryId": 8,
+ "url": null
+ },
+ "sevenone_media": {
+ "name": "SevenOne Media",
+ "categoryId": 4,
+ "url": null
+ },
+ "browser_update": {
+ "name": "Browser Update",
+ "categoryId": 2,
+ "url": "http://www.browser-update.org/"
+ },
+ "intelliad": {
+ "name": "intelliAd",
+ "categoryId": 4,
+ "url": "http://www.intelliad.de/"
+ },
+ "wordpress_stats": {
+ "name": "WordPress",
+ "categoryId": 6,
+ "url": "http://wordpress.org/extend/plugins/stats/"
+ },
+ "spotxchange": {
+ "name": "SpotXchange",
+ "categoryId": 4,
+ "url": "http://www.spotxchange.com/"
+ },
+ "dataxu": {
+ "name": "DataXu",
+ "categoryId": 4,
+ "url": "http://www.dataxu.com/"
+ },
+ "liveinternet": {
+ "name": "LiveInternet",
+ "categoryId": 1,
+ "url": "http://www.liveinternet.ru/"
+ },
+ "visual_revenue": {
+ "name": "Visual Revenue",
+ "categoryId": 6,
+ "url": "http://visualrevenue.com/"
+ },
+ "stroer_digital_media": {
+ "name": "Stroer Digital Media",
+ "categoryId": 4,
+ "url": null
+ },
+ "owa": {
+ "name": "OWA",
+ "categoryId": 6,
+ "url": "http://oewa.at/"
+ },
+ "live_intent": {
+ "name": "Live Intent",
+ "categoryId": 6,
+ "url": null
+ },
+ "flashtalking": {
+ "name": "Flashtalking",
+ "categoryId": 4,
+ "url": "http://www.flashtalking.com/"
+ },
+ "alexa_metrics": {
+ "name": "Alexa Metrics",
+ "categoryId": 6,
+ "url": "http://www.alexa.com/"
+ },
+ "heatmap": {
+ "name": "Heatmap",
+ "categoryId": 4,
+ "url": "https://heatmap.me/"
+ },
+ "mouseflow": {
+ "name": "Mouseflow",
+ "categoryId": 6,
+ "url": "http://mouseflow.com/"
+ },
+ "quantcount": {
+ "name": "Quantcount",
+ "categoryId": 6,
+ "url": null
+ },
+ "digital_analytix": {
+ "name": "Digital Analytix",
+ "categoryId": 6,
+ "url": "https://www.nedstat.com/"
+ },
+ "loggly": {
+ "name": "Loggly",
+ "categoryId": 6,
+ "url": "http://loggly.com/"
+ },
+ "improve_digital": {
+ "name": "Improve Digital",
+ "categoryId": 4,
+ "url": "http://www.improvedigital.com/"
+ },
+ "doublepimp": {
+ "name": "DoublePimp",
+ "categoryId": 3,
+ "url": "http://www.doublepimp.com/"
+ },
+ "pulsepoint": {
+ "name": "PulsePoint",
+ "categoryId": 4,
+ "url": "http://www.contextweb.com/"
+ },
+ "v12_group": {
+ "name": "V12 Group",
+ "categoryId": 6,
+ "url": null
+ },
+ "audience_science": {
+ "name": "Audience Science",
+ "categoryId": 4,
+ "url": "http://www.audiencescience.com/"
+ },
+ "webtrends": {
+ "name": "Webtrends",
+ "categoryId": 6,
+ "url": "http://www.webtrends.com/"
+ },
+ "google_trusted_stores": {
+ "name": "Google Shopping",
+ "categoryId": 6,
+ "url": null
+ },
+ "m._p._newmedia": {
+ "name": "M. P. NEWMEDIA",
+ "categoryId": 4,
+ "url": "http://www.mp-newmedia.com/"
+ },
+ "parsely": {
+ "name": "Parsely",
+ "categoryId": 6,
+ "url": null
+ },
+ "scarabresearch": {
+ "name": "Scarab Research",
+ "categoryId": 6,
+ "url": "https://www.scarabresearch.com/"
+ },
+ "highwinds": {
+ "name": "Highwinds",
+ "categoryId": 6,
+ "url": null
+ },
+ "typekit_by_adobe": {
+ "name": "Typekit by Adobe",
+ "categoryId": 5,
+ "url": "https://www.adobe.com/"
+ },
+ "linkpulse": {
+ "name": "Linkpulse",
+ "categoryId": 6,
+ "url": "http://www.linkpulse.com/"
+ },
+ "the_reach_group": {
+ "name": "The Reach Group",
+ "categoryId": 4,
+ "url": "http://www.redvertisment.com"
+ },
+ "teads": {
+ "name": "Teads",
+ "categoryId": 4,
+ "url": "http://teads.tv/"
+ },
+ "cedexis_radar": {
+ "name": "Cedexis Radar",
+ "categoryId": 6,
+ "url": "http://www.cedexis.com/products_radar.html"
+ },
+ "neory_": {
+ "name": "NEORY ",
+ "categoryId": 4,
+ "url": "https://www.neory.com/"
+ },
+ "ensighten": {
+ "name": "Ensighten",
+ "categoryId": 5,
+ "url": "http://www.ensighten.com"
+ },
+ "kameleoon": {
+ "name": "Kameleoon",
+ "categoryId": 6,
+ "url": "http://www.kameleoon.com/"
+ },
+ "stickyads": {
+ "name": "StickyAds",
+ "categoryId": 4,
+ "url": null
+ },
+ "disqus": {
+ "name": "Disqus",
+ "categoryId": 1,
+ "url": "https://disqus.com/"
+ },
+ "ad4mat": {
+ "name": "ad4mat",
+ "categoryId": 4,
+ "url": "http://ad4mat.info"
+ },
+ "weborama": {
+ "name": "Weborama",
+ "categoryId": 4,
+ "url": "http://weborama.com/2/?l=en"
+ },
+ "soasta_mpulse": {
+ "name": "SOASTA mPulse",
+ "categoryId": 6,
+ "url": "http://www.soasta.com/"
+ },
+ "ab_tasty": {
+ "name": "AB Tasty",
+ "categoryId": 6,
+ "url": "https://en.abtasty.com"
+ },
+ "usabilla": {
+ "name": "Usabilla",
+ "categoryId": 2,
+ "url": "https://usabilla.com/"
+ },
+ "otto.de": {
+ "name": "otto.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "pingdom": {
+ "name": "Pingdom",
+ "categoryId": 6,
+ "url": "https://www.pingdom.com/"
+ },
+ "ve_interactive": {
+ "name": "Ve Interactive",
+ "categoryId": 4,
+ "url": "http://www.veinteractive.com"
+ },
+ "burda": {
+ "name": "BurdaForward",
+ "categoryId": 4,
+ "url": null
+ },
+ "rhythmone_beacon": {
+ "name": "Rhythmone Beacon",
+ "categoryId": 4,
+ "url": null
+ },
+ "remintrex": {
+ "name": "Remintrex",
+ "categoryId": 4,
+ "url": "http://www.remintrex.com/"
+ },
+ "smartclip": {
+ "name": "SmartClip",
+ "categoryId": 4,
+ "url": null
+ },
+ "appdynamics": {
+ "name": "AppDynamics",
+ "categoryId": 6,
+ "url": "http://www.appdynamics.com"
+ },
+ "connexity": {
+ "name": "Connexity",
+ "categoryId": 4,
+ "url": "http://www.connexity.com"
+ },
+ "advolution": {
+ "name": "Advolution",
+ "categoryId": 4,
+ "url": "http://www.advolution.de"
+ },
+ "wywy.com": {
+ "name": "wywy",
+ "categoryId": 4,
+ "url": "http://wywy.com/"
+ },
+ "m-pathy": {
+ "name": "m-pathy",
+ "categoryId": 4,
+ "url": "http://www.m-pathy.com/"
+ },
+ "stripchat.com": {
+ "name": "stripchat.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "exelate": {
+ "name": "eXelate",
+ "categoryId": 4,
+ "url": "http://www.exelate.com/"
+ },
+ "semasio": {
+ "name": "Semasio",
+ "categoryId": 4,
+ "url": "http://semasio.com/"
+ },
+ "mixpanel": {
+ "name": "Mixpanel",
+ "categoryId": 6,
+ "url": "http://mixpanel.com/"
+ },
+ "t-mobile": {
+ "name": "Deutsche Telekom",
+ "categoryId": 8,
+ "url": null
+ },
+ "scene7.com": {
+ "name": "Adobe Dynamic Media (Scene7)",
+ "categoryId": 4,
+ "url": null
+ },
+ "ekomi": {
+ "name": "eKomi",
+ "categoryId": 1,
+ "url": "http://www.ekomi.co.uk"
+ },
+ "sovrn": {
+ "name": "sovrn",
+ "categoryId": 4,
+ "url": "https://www.sovrn.com/"
+ },
+ "cpx.to": {
+ "name": "cpx.to",
+ "categoryId": 11,
+ "url": null
+ },
+ "sharethis": {
+ "name": "ShareThis",
+ "categoryId": 4,
+ "url": "http://sharethis.com/"
+ },
+ "spoteffect": {
+ "name": "Spoteffect",
+ "categoryId": 6,
+ "url": null
+ },
+ "sitescout": {
+ "name": "SiteScout",
+ "categoryId": 4,
+ "url": "http://www.sitescout.com"
+ },
+ "kupona": {
+ "name": "Kupona",
+ "categoryId": 4,
+ "url": "http://www.kupona-media.de/en/retargeting-and-performance-media-width-kupona"
+ },
+ "conative.de": {
+ "name": "CoNative",
+ "categoryId": 4,
+ "url": "http://www.conative.de/"
+ },
+ "zopim": {
+ "name": "Zopim",
+ "categoryId": 2,
+ "url": "http://www.zopim.com/"
+ },
+ "tag_commander": {
+ "name": "Tag Commander",
+ "categoryId": 5,
+ "url": "http://www.tagcommander.com/"
+ },
+ "mail.ru_group": {
+ "name": "Mail.Ru Group",
+ "categoryId": 7,
+ "url": "http://mail.ru/"
+ },
+ "eroadvertising": {
+ "name": "EroAdvertising",
+ "categoryId": 3,
+ "url": "http://www.ero-advertising.com/"
+ },
+ "sociomantic": {
+ "name": "Sociomantic",
+ "categoryId": 4,
+ "url": "http://www.sociomantic.com/"
+ },
+ "tvsquared.com": {
+ "name": "TVSquared",
+ "categoryId": 4,
+ "url": "http://tvsquared.com/"
+ },
+ "zononi.com": {
+ "name": "zononi.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "userlike.com": {
+ "name": "Userlike",
+ "categoryId": 2,
+ "url": "https://www.userlike.com/"
+ },
+ "vkontakte_widgets": {
+ "name": "VKontakte",
+ "categoryId": 7,
+ "url": "http://vk.com/developers.php"
+ },
+ "cdn13.com": {
+ "name": "cdn13.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "ad_spirit": {
+ "name": "Ad Spirit",
+ "categoryId": 4,
+ "url": "http://www.adspirit.de "
+ },
+ "aol_cdn": {
+ "name": "AOL CDN",
+ "categoryId": 6,
+ "url": null
+ },
+ "buzzadexchange.com": {
+ "name": "buzzadexchange.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "gemius": {
+ "name": "Gemius",
+ "categoryId": 4,
+ "url": "http://www.gemius.com"
+ },
+ "trustpilot": {
+ "name": "Trustpilot",
+ "categoryId": 2,
+ "url": null
+ },
+ "net-metrix": {
+ "name": "NET-Metrix",
+ "categoryId": 6,
+ "url": "http://www.net-metrix.ch/"
+ },
+ "bunchbox": {
+ "name": "Bunchbox",
+ "categoryId": 6,
+ "url": null
+ },
+ "neustar_adadvisor": {
+ "name": "Neustar AdAdvisor",
+ "categoryId": 4,
+ "url": "http://www.targusinfo.com/"
+ },
+ "datalogix": {
+ "name": "Datalogix",
+ "categoryId": 4,
+ "url": "http://www.nextaction.net/"
+ },
+ "refined_labs": {
+ "name": "Refined Labs",
+ "categoryId": 4,
+ "url": "http://www.refinedlabs.com"
+ },
+ "evidon": {
+ "name": "Evidon",
+ "categoryId": 5,
+ "url": null
+ },
+ "nexeps.com": {
+ "name": "neXeps",
+ "categoryId": 4,
+ "url": "http://nexeps.com/"
+ },
+ "routenplaner-karten.com": {
+ "name": "Routenplaner Karten",
+ "categoryId": 2,
+ "url": "https://www.routenplaner-karten.com/"
+ },
+ "vibrant_ads": {
+ "name": "Vibrant Ads",
+ "categoryId": 4,
+ "url": "http://www.vibrantmedia.com/"
+ },
+ "highwebmedia.com": {
+ "name": "highwebmedia.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "triplelift": {
+ "name": "TripleLift",
+ "categoryId": 4,
+ "url": "http://triplelift.com/"
+ },
+ "estat": {
+ "name": "eStat",
+ "categoryId": 6,
+ "url": "http://www.mediametrie-estat.com/"
+ },
+ "bazaarvoice": {
+ "name": "Bazaarvoice",
+ "categoryId": 2,
+ "url": "http://www.bazaarvoice.com/"
+ },
+ "blau.de": {
+ "name": "Blau",
+ "categoryId": 8,
+ "url": "https://www.blau.de/"
+ },
+ "statcounter": {
+ "name": "Statcounter",
+ "categoryId": 6,
+ "url": "http://www.statcounter.com/"
+ },
+ "popads": {
+ "name": "PopAds",
+ "categoryId": 4,
+ "url": "https://www.popads.net/"
+ },
+ "liveperson": {
+ "name": "LivePerson",
+ "categoryId": 2,
+ "url": "http://www.liveperson.com/"
+ },
+ "contentpass": {
+ "name": "Contentpass",
+ "categoryId": 2,
+ "url": "https://www.contentpass.de/"
+ },
+ "adap.tv": {
+ "name": "Adap.tv",
+ "categoryId": 4,
+ "url": "http://www.adap.tv/"
+ },
+ "adgoal": {
+ "name": "adgoal",
+ "categoryId": 4,
+ "url": "http://www.adgoal.de/"
+ },
+ "tns": {
+ "name": "TNS",
+ "categoryId": 6,
+ "url": "http://www.tnsglobal.com/"
+ },
+ "brightcove": {
+ "name": "Brightcove",
+ "categoryId": 0,
+ "url": "http://www.brightcove.com/en/"
+ },
+ "trbo": {
+ "name": "trbo",
+ "categoryId": 4,
+ "url": "http://www.trbo.com/"
+ },
+ "onesignal": {
+ "name": "OneSignal",
+ "categoryId": 5,
+ "url": null
+ },
+ "zendesk": {
+ "name": "Zendesk",
+ "categoryId": 2,
+ "url": "http://www.zendesk.com/"
+ },
+ "kiosked": {
+ "name": "Kiosked",
+ "categoryId": 4,
+ "url": "http://www.kiosked.com/"
+ },
+ "alephd.com": {
+ "name": "alephd",
+ "categoryId": 4,
+ "url": "https://www.alephd.com/"
+ },
+ "24_7": {
+ "name": "[24]7",
+ "categoryId": 2,
+ "url": "http://www.247-inc.com/"
+ },
+ "epoq": {
+ "name": "epoq",
+ "categoryId": 4,
+ "url": "http://www.epoq.de/"
+ },
+ "madeleine.de": {
+ "name": "madeleine.de",
+ "categoryId": 4,
+ "url": null
+ },
+ "myfonts_counter": {
+ "name": "MyFonts",
+ "categoryId": 6,
+ "url": "http://www.myfonts.com/"
+ },
+ "nt.vc": {
+ "name": "Next Tuesday GmbH",
+ "categoryId": 8,
+ "url": "http://www.nexttuesday.de/"
+ },
+ "radiumone": {
+ "name": "RadiumOne",
+ "categoryId": 4,
+ "url": "http://www.radiumone.com/index.html"
+ },
+ "o2online.de": {
+ "name": "o2online.de",
+ "categoryId": 8,
+ "url": "https://www.o2online.de/"
+ },
+ "zencoder": {
+ "name": "Zencoder",
+ "categoryId": 0,
+ "url": null
+ },
+ "tripadvisor": {
+ "name": "TripAdvisor",
+ "categoryId": 8,
+ "url": null
+ },
+ "imgur": {
+ "name": "Imgur",
+ "categoryId": 8,
+ "url": null
+ },
+ "hurra_tracker": {
+ "name": "Hurra Tracker",
+ "categoryId": 4,
+ "url": "http://www.hurra.com/en/"
+ },
+ "etahub.com": {
+ "name": "etahub.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "infectious_media": {
+ "name": "Infectious Media",
+ "categoryId": 4,
+ "url": "http://www.infectiousdigital.com/"
+ },
+ "adroll": {
+ "name": "AdRoll",
+ "categoryId": 4,
+ "url": "https://www.adroll.com/"
+ },
+ "traffichaus": {
+ "name": "TrafficHaus",
+ "categoryId": 3,
+ "url": "http://www.traffichaus.com"
+ },
+ "videology": {
+ "name": "Videology",
+ "categoryId": 4,
+ "url": "https://videologygroup.com/"
+ },
+ "adup-tech.com": {
+ "name": "AdUp Technology",
+ "categoryId": 4,
+ "url": "https://www.adup-tech.com/"
+ },
+ "gigya": {
+ "name": "Gigya",
+ "categoryId": 6,
+ "url": null
+ },
+ "signal": {
+ "name": "Signal",
+ "categoryId": 5,
+ "url": "https://www.signal.co/"
+ },
+ "161media": {
+ "name": "Platform161",
+ "categoryId": 6,
+ "url": "https://platform161.com/"
+ },
+ "rackcdn.com": {
+ "name": "Rackspace",
+ "categoryId": 9,
+ "url": "https://www.rackspace.com/"
+ },
+ "kxcdn.com": {
+ "name": "Keycdn",
+ "categoryId": 9,
+ "url": "https://www.keycdn.com/"
+ },
+ "ixi_digital": {
+ "name": "IXI Digital",
+ "categoryId": 4,
+ "url": null
+ },
+ "iadvize": {
+ "name": "iAdvize",
+ "categoryId": 2,
+ "url": "http://www.iadvize.com/"
+ },
+ "igodigital": {
+ "name": "iGoDigital",
+ "categoryId": 2,
+ "url": "http://igodigital.com/"
+ },
+ "sharethrough": {
+ "name": "ShareThrough",
+ "categoryId": 4,
+ "url": "http://www.sharethrough.com/"
+ },
+ "vimeo": {
+ "name": "Vimeo",
+ "categoryId": 0,
+ "url": null
+ },
+ "metrigo": {
+ "name": "Metrigo",
+ "categoryId": 4,
+ "url": "http://metrigo.com/"
+ },
+ "i-behavior": {
+ "name": "i-Behavior",
+ "categoryId": 4,
+ "url": "http://www.i-behavior.com/"
+ },
+ "perfect_market": {
+ "name": "Perfect Market",
+ "categoryId": 4,
+ "url": "http://perfectmarket.com/"
+ },
+ "marketgid": {
+ "name": "MarketGid",
+ "categoryId": 4,
+ "url": "http://www.mgid.com/"
+ },
+ "next_performance": {
+ "name": "Next Performance",
+ "categoryId": 4,
+ "url": "http://www.nextperformance.com/"
+ },
+ "media_impact": {
+ "name": "Media Impact",
+ "categoryId": 4,
+ "url": null
+ },
+ "soundcloud": {
+ "name": "SoundCloud",
+ "categoryId": 0,
+ "url": "http://soundcloud.com/"
+ },
+ "akanoo": {
+ "name": "Akanoo",
+ "categoryId": 6,
+ "url": "http://www.akanoo.com/"
+ },
+ "findologic.com": {
+ "name": "Findologic",
+ "categoryId": 2,
+ "url": "https://www.findologic.com/"
+ },
+ "are_you_a_human": {
+ "name": "Are You a Human",
+ "categoryId": 6,
+ "url": "https://areyouahuman.com/"
+ },
+ "userreport": {
+ "name": "UserReport",
+ "categoryId": 2,
+ "url": "http://www.userreport.com/"
+ },
+ "adara_analytics": {
+ "name": "ADARA Analytics",
+ "categoryId": 4,
+ "url": "http://www.adaramedia.com/"
+ },
+ "kontextr": {
+ "name": "Kontextr",
+ "categoryId": 4,
+ "url": null
+ },
+ "content_spread": {
+ "name": "Content Spread",
+ "categoryId": 4,
+ "url": null
+ },
+ "visual_iq": {
+ "name": "Visual IQ",
+ "categoryId": 6,
+ "url": null
+ },
+ "ciuvo.com": {
+ "name": "ciuvo.com",
+ "categoryId": 12,
+ "url": "https://www.ciuvo.com/"
+ },
+ "adtriba.com": {
+ "name": "AdTriba",
+ "categoryId": 6,
+ "url": "https://www.adtriba.com/"
+ },
+ "tradedoubler": {
+ "name": "TradeDoubler",
+ "categoryId": 4,
+ "url": "http://www.tradedoubler.com/"
+ },
+ "propeller_ads": {
+ "name": "Propeller Ads",
+ "categoryId": 4,
+ "url": "http://www.propellerads.com/"
+ },
+ "exoticads.com": {
+ "name": "exoticads",
+ "categoryId": 3,
+ "url": "https://exoticads.com/welcome/"
+ },
+ "xfreeservice.com": {
+ "name": "xfreeservice.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "sheego.de": {
+ "name": "sheego.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "marin_search_marketer": {
+ "name": "Marin Search Marketer",
+ "categoryId": 4,
+ "url": "http://www.marinsoftware.com/"
+ },
+ "rtb_house": {
+ "name": "RTB House",
+ "categoryId": 4,
+ "url": "http://en.adpilot.com/"
+ },
+ "polyfill.io": {
+ "name": "Polyfill.io",
+ "categoryId": 8,
+ "url": "https://polyfill.io/"
+ },
+ "grandslammedia": {
+ "name": "GrandSlamMedia",
+ "categoryId": 4,
+ "url": "http://www.grandslammedia.com/"
+ },
+ "delta_projects": {
+ "name": "Delta Projects",
+ "categoryId": 4,
+ "url": "http://www.adaction.se/"
+ },
+ "clicktale": {
+ "name": "ClickTale",
+ "categoryId": 6,
+ "url": "http://www.clicktale.com/"
+ },
+ "onthe.io": {
+ "name": "OnThe.io",
+ "categoryId": 6,
+ "url": null
+ },
+ "whos.amung.us": {
+ "name": "Whos.amung.us",
+ "categoryId": 6,
+ "url": "http://whos.amung.us/"
+ },
+ "relevant4.com": {
+ "name": "relevant4 GmbH",
+ "categoryId": 8,
+ "url": "https://www.relevant4.com/"
+ },
+ "ibm_customer_experience": {
+ "name": "IBM Customer Experience",
+ "categoryId": 6,
+ "url": "http://www.coremetrics.com/"
+ },
+ "skimlinks": {
+ "name": "SkimLinks",
+ "categoryId": 4,
+ "url": "http://www.skimlinks.com/"
+ },
+ "conviva": {
+ "name": "Conviva",
+ "categoryId": 6,
+ "url": "http://www.conviva.com/"
+ },
+ "brightcove_player": {
+ "name": "Brightcove Player",
+ "categoryId": 0,
+ "url": null
+ },
+ "klarna.com": {
+ "name": "Klarna",
+ "categoryId": 2,
+ "url": "https://www.klarna.com/"
+ },
+ "sift_science": {
+ "name": "Sift Science",
+ "categoryId": 6,
+ "url": "https://siftscience.com/"
+ },
+ "congstar.de": {
+ "name": "congstar.de",
+ "categoryId": 4,
+ "url": null
+ },
+ "dtscout.com": {
+ "name": "Dtscout",
+ "categoryId": 6,
+ "url": "http://www.dtscout.com/"
+ },
+ "smaato": {
+ "name": "Smaato",
+ "categoryId": 4,
+ "url": "http://www.smaato.com/"
+ },
+ "spotscenered.info": {
+ "name": "spotscenered.info",
+ "categoryId": 11,
+ "url": null
+ },
+ "adriver": {
+ "name": "AdRiver",
+ "categoryId": 4,
+ "url": "http://www.adriver.ru/"
+ },
+ "cqq5id8n.com": {
+ "name": "cqq5id8n.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "bidtheatre": {
+ "name": "BidTheatre",
+ "categoryId": 4,
+ "url": "http://www.bidtheatre.com/"
+ },
+ "just_premium": {
+ "name": "Just Premium",
+ "categoryId": 4,
+ "url": "http://justpremium.com/"
+ },
+ "mein-bmi.com": {
+ "name": "mein-bmi.com",
+ "categoryId": 12,
+ "url": "https://www.mein-bmi.com/"
+ },
+ "internet_billboard": {
+ "name": "Internet BillBoard",
+ "categoryId": 4,
+ "url": "http://www.ibillboard.com/en/"
+ },
+ "admeta": {
+ "name": "Admeta",
+ "categoryId": 4,
+ "url": "http://www.admeta.com/"
+ },
+ "histats": {
+ "name": "Histats",
+ "categoryId": 4,
+ "url": "http://www.histats.com/"
+ },
+ "truste_notice": {
+ "name": "TRUSTe Notice",
+ "categoryId": 5,
+ "url": "http://www.truste.com/"
+ },
+ "vtracy.de": {
+ "name": "vtracy.de",
+ "categoryId": 11,
+ "url": null
+ },
+ "whatbroadcast": {
+ "name": "Whatbroadcast",
+ "categoryId": 2,
+ "url": null
+ },
+ "flowplayer": {
+ "name": "Flowplayer",
+ "categoryId": 4,
+ "url": null
+ },
+ "rambler": {
+ "name": "Rambler",
+ "categoryId": 8,
+ "url": null
+ },
+ "lockerz_share": {
+ "name": "AddToAny",
+ "categoryId": 7,
+ "url": "http://www.addtoany.com/"
+ },
+ "tynt": {
+ "name": "Tynt",
+ "categoryId": 4,
+ "url": "http://www.tynt.com/"
+ },
+ "smartstream.tv": {
+ "name": "SmartStream.TV",
+ "categoryId": 4,
+ "url": "https://www.smartstream.tv/en"
+ },
+ "realperson.de": {
+ "name": "Realperson Chat",
+ "categoryId": 2,
+ "url": "http://www.optimise-it.de/"
+ },
+ "glotgrx.com": {
+ "name": "glotgrx.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "threatmetrix": {
+ "name": "ThreatMetrix",
+ "categoryId": 6,
+ "url": "http://threatmetrix.com/"
+ },
+ "cxo.name": {
+ "name": "Chip Analytics",
+ "categoryId": 6,
+ "url": "http://www.chip.de/"
+ },
+ "glomex.com": {
+ "name": "Glomex",
+ "categoryId": 0,
+ "url": "https://www.glomex.com/"
+ },
+ "cxense": {
+ "name": "cXense",
+ "categoryId": 4,
+ "url": "http://www.cxense.com/"
+ },
+ "amplitude": {
+ "name": "Amplitude",
+ "categoryId": 6,
+ "url": "https://amplitude.com/"
+ },
+ "falk_technologies": {
+ "name": "Falk Technologies",
+ "categoryId": 8,
+ "url": null
+ },
+ "pagefair": {
+ "name": "PageFair",
+ "categoryId": 2,
+ "url": "https://pagefair.com/"
+ },
+ "emsmobile.de": {
+ "name": "EMS Mobile",
+ "categoryId": 8,
+ "url": "http://www.emsmobile.com/"
+ },
+ "fastlylb.net": {
+ "name": "Fastly",
+ "categoryId": 9,
+ "url": "https://www.fastly.com/"
+ },
+ "vorwerk.de": {
+ "name": "vorwerk.de",
+ "categoryId": 8,
+ "url": "https://corporate.vorwerk.de/home/"
+ },
+ "digidip": {
+ "name": "Digidip",
+ "categoryId": 4,
+ "url": null
+ },
+ "salesforce_live_agent": {
+ "name": "Salesforce Live Agent",
+ "categoryId": 2,
+ "url": "http://www.salesforce.com/"
+ },
+ "mycliplister.com": {
+ "name": "Cliplister",
+ "categoryId": 2,
+ "url": "https://www.cliplister.com/"
+ },
+ "peerius": {
+ "name": "Peerius",
+ "categoryId": 2,
+ "url": "http://www.peerius.com/"
+ },
+ "steepto.com": {
+ "name": "Steepto",
+ "categoryId": 4,
+ "url": "https://www.steepto.com/"
+ },
+ "adglue": {
+ "name": "Adglue",
+ "categoryId": 4,
+ "url": null
+ },
+ "monetate": {
+ "name": "Monetate",
+ "categoryId": 6,
+ "url": "http://monetate.com"
+ },
+ "mov.ad_": {
+ "name": "Mov.ad ",
+ "categoryId": 8,
+ "url": null
+ },
+ "simpli.fi": {
+ "name": "Simpli.fi",
+ "categoryId": 4,
+ "url": "http://www.simpli.fi"
+ },
+ "office365.com": {
+ "name": "office365.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "digital_window": {
+ "name": "Digital Window",
+ "categoryId": 4,
+ "url": "http://www.digitalwindow.com/"
+ },
+ "touchcommerce": {
+ "name": "Nuance",
+ "categoryId": 2,
+ "url": "https://www.nuance.com/"
+ },
+ "jimdo.com": {
+ "name": "jimdo.com",
+ "categoryId": 10,
+ "url": null
+ },
+ "srvtrck.com": {
+ "name": "srvtrck.com",
+ "categoryId": 12,
+ "url": null
+ },
+ "tribal_fusion": {
+ "name": "Tribal Fusion",
+ "categoryId": 4,
+ "url": "http://www.tribalfusion.com/"
+ },
+ "snap_engage": {
+ "name": "Snap Engage",
+ "categoryId": 2,
+ "url": null
+ },
+ "gfk": {
+ "name": "GfK",
+ "categoryId": 4,
+ "url": "http://nurago.com/"
+ },
+ "qualtrics": {
+ "name": "Qualtrics",
+ "categoryId": 6,
+ "url": "http://www.qualtrics.com/"
+ },
+ "juicyads": {
+ "name": "JuicyAds",
+ "categoryId": 3,
+ "url": "http://www.juicyads.com/"
+ },
+ "cquotient.com": {
+ "name": "CQuotient",
+ "categoryId": 6,
+ "url": "https://www.demandware.com/#cquotient"
+ },
+ "ancora": {
+ "name": "Ancora",
+ "categoryId": 6,
+ "url": null
+ },
+ "adclear": {
+ "name": "AdClear",
+ "categoryId": 4,
+ "url": "http://www.adclear.de/en/home.html"
+ },
+ "crimtan": {
+ "name": "Crimtan",
+ "categoryId": 4,
+ "url": "http://www.crimtan.com/"
+ },
+ "dynadmic": {
+ "name": "DynAdmic",
+ "categoryId": 4,
+ "url": null
+ },
+ "viglink": {
+ "name": "VigLink",
+ "categoryId": 4,
+ "url": "http://www.viglink.com"
+ },
+ "dawandastatic.com": {
+ "name": "Dawanda CDN",
+ "categoryId": 8,
+ "url": "https://dawanda.com/"
+ },
+ "tubecup.org": {
+ "name": "tubecup.org",
+ "categoryId": 3,
+ "url": null
+ },
+ "media.net": {
+ "name": "Media.net",
+ "categoryId": 4,
+ "url": "http://www.media.net/"
+ },
+ "rtmark.net": {
+ "name": "Advertising Technologies Ltd",
+ "categoryId": 4,
+ "url": "http://rtmark.net/"
+ },
+ "trackjs": {
+ "name": "TrackJS",
+ "categoryId": 6,
+ "url": "http://www.trackjs.com/"
+ },
+ "elastic_ad": {
+ "name": "Elastic Ad",
+ "categoryId": 4,
+ "url": null
+ },
+ "intercom": {
+ "name": "Intercom",
+ "categoryId": 2,
+ "url": "http://intercom.io/"
+ },
+ "adyoulike": {
+ "name": "Adyoulike",
+ "categoryId": 4,
+ "url": "http://www.adyoulike.com/"
+ },
+ "web_wipe_anlaytics": {
+ "name": "Wipe Analytics",
+ "categoryId": 6,
+ "url": "http://tensquare.de"
+ },
+ "adnium.com": {
+ "name": "Adnium",
+ "categoryId": 4,
+ "url": "https://adnium.com/"
+ },
+ "markmonitor": {
+ "name": "MarkMonitor",
+ "categoryId": 4,
+ "url": "https://www.markmonitor.com/"
+ },
+ "azureedge.net": {
+ "name": "Azure CDN",
+ "categoryId": 9,
+ "url": null
+ },
+ "iovation": {
+ "name": "iovation",
+ "categoryId": 5,
+ "url": null
+ },
+ "adtr02.com": {
+ "name": "adtr02.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "scribblelive": {
+ "name": "ScribbleLive",
+ "categoryId": 8,
+ "url": null
+ },
+ "unruly_media": {
+ "name": "Unruly Media",
+ "categoryId": 4,
+ "url": "http://www.unrulymedia.com/"
+ },
+ "beeswax": {
+ "name": "Beeswax",
+ "categoryId": 2,
+ "url": null
+ },
+ "contentsquare.net": {
+ "name": "ContentSquare",
+ "categoryId": 4,
+ "url": "https://www.contentsquare.com/"
+ },
+ "geotrust": {
+ "name": "GeoTrust",
+ "categoryId": 5,
+ "url": "http://www.geotrust.com/"
+ },
+ "zemanta": {
+ "name": "Zemanta",
+ "categoryId": 2,
+ "url": "http://www.zemanta.com/"
+ },
+ "trafficfabrik.com": {
+ "name": "Traffic Fabrik",
+ "categoryId": 3,
+ "url": "https://www.trafficfabrik.com/"
+ },
+ "rncdn3.com": {
+ "name": "Reflected Networks",
+ "categoryId": 9,
+ "url": "http://www.rncdn3.com/"
+ },
+ "skype": {
+ "name": "Skype",
+ "categoryId": 2,
+ "url": "http://www.skype.com"
+ },
+ "fit_analytics": {
+ "name": "Fit Analytics",
+ "categoryId": 6,
+ "url": null
+ },
+ "dimml": {
+ "name": "DimML",
+ "categoryId": 8,
+ "url": null
+ },
+ "sonobi": {
+ "name": "Sonobi",
+ "categoryId": 4,
+ "url": "http://sonobi.com/"
+ },
+ "belboon_gmbh": {
+ "name": "belboon GmbH",
+ "categoryId": 8,
+ "url": null
+ },
+ "web.de": {
+ "name": "web.de",
+ "categoryId": 8,
+ "url": "https://web.de/"
+ },
+ "flickr_badge": {
+ "name": "Flickr",
+ "categoryId": 7,
+ "url": "http://www.flickr.com/"
+ },
+ "globalsign": {
+ "name": "GlobalSign",
+ "categoryId": 8,
+ "url": null
+ },
+ "adloox": {
+ "name": "Adloox",
+ "categoryId": 4,
+ "url": "http://www.adloox.com"
+ },
+ "groupm_server": {
+ "name": "GroupM Server",
+ "categoryId": 4,
+ "url": "http://www.groupm.com/"
+ },
+ "bongacams.com": {
+ "name": "bongacams.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "symantec": {
+ "name": "Symantec (Norton Secured Seal)",
+ "categoryId": 5,
+ "url": null
+ },
+ "vergic.com": {
+ "name": "Vergic",
+ "categoryId": 1,
+ "url": "https://www.vergic.com/"
+ },
+ "esprit.de": {
+ "name": "esprit.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "mncdn.com": {
+ "name": "MediaNova CDN",
+ "categoryId": 9,
+ "url": "https://www.medianova.com/"
+ },
+ "marshadow.io": {
+ "name": "marshadow.io",
+ "categoryId": 4,
+ "url": null
+ },
+ "bangdom.com": {
+ "name": "BangBros",
+ "categoryId": 3,
+ "url": null
+ },
+ "teufel.de": {
+ "name": "teufel.de",
+ "categoryId": 8,
+ "url": "https://www.teufel.de/"
+ },
+ "webgains": {
+ "name": "Webgains",
+ "categoryId": 8,
+ "url": null
+ },
+ "truste_consent": {
+ "name": "Truste Consent",
+ "categoryId": 5,
+ "url": null
+ },
+ "inspsearchapi.com": {
+ "name": "Infospace Search",
+ "categoryId": 4,
+ "url": "http://infospace.com/"
+ },
+ "tagman": {
+ "name": "TagMan",
+ "categoryId": 5,
+ "url": "http://www.tagman.com/"
+ },
+ "livechat": {
+ "name": "LiveChat",
+ "categoryId": 2,
+ "url": "http://www.livechatinc.com"
+ },
+ "reddit": {
+ "name": "Reddit",
+ "categoryId": 7,
+ "url": "http://reddit.com"
+ },
+ "oclasrv.com": {
+ "name": "oclasrv.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "flxone": {
+ "name": "FLXONE",
+ "categoryId": 4,
+ "url": "http://www.flxone.com/"
+ },
+ "shopgate.com": {
+ "name": "Shopgate",
+ "categoryId": 2,
+ "url": "https://www.shopgate.com/"
+ },
+ "mapandroute.de": {
+ "name": "Map and Route",
+ "categoryId": 2,
+ "url": "http://www.mapandroute.de/"
+ },
+ "vidible": {
+ "name": "Vidible",
+ "categoryId": 4,
+ "url": "http://vidible.tv/"
+ },
+ "tradelab": {
+ "name": "Tradelab",
+ "categoryId": 4,
+ "url": "http://www.tradelab.fr/"
+ },
+ "twyn": {
+ "name": "Twyn",
+ "categoryId": 4,
+ "url": "http://www.twyn.com"
+ },
+ "catchpoint": {
+ "name": "Catchpoint",
+ "categoryId": 6,
+ "url": "http://www.catchpoint.com/"
+ },
+ "nosto.com": {
+ "name": "nosto",
+ "categoryId": 6,
+ "url": "http://www.nosto.com/"
+ },
+ "similardeals.net": {
+ "name": "SimilarDeals",
+ "categoryId": 8,
+ "url": "http://www.similardeals.net/"
+ },
+ "adult_webmaster_empire": {
+ "name": "Adult Webmaster Empire",
+ "categoryId": 3,
+ "url": "http://www.awempire.com/"
+ },
+ "usemax": {
+ "name": "Usemax",
+ "categoryId": 4,
+ "url": "http://www.usemax.de"
+ },
+ "autoscout24.com": {
+ "name": "Autoscout24",
+ "categoryId": 8,
+ "url": null
+ },
+ "nexage": {
+ "name": "Nexage",
+ "categoryId": 4,
+ "url": "http://www.nexage.com/"
+ },
+ "doubleverify": {
+ "name": "DoubleVerify",
+ "categoryId": 4,
+ "url": "http://www.doubleverify.com/"
+ },
+ "octapi.net": {
+ "name": "octapi.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "eloqua": {
+ "name": "Eloqua",
+ "categoryId": 4,
+ "url": "http://www.eloqua.com/"
+ },
+ "adelphic": {
+ "name": "Adelphic",
+ "categoryId": 6,
+ "url": null
+ },
+ "mycdn.me": {
+ "name": "Mail.Ru CDN",
+ "categoryId": 9,
+ "url": null
+ },
+ "adworx.at": {
+ "name": "adworx",
+ "categoryId": 4,
+ "url": "http://www.adworx.at/"
+ },
+ "adspyglass": {
+ "name": "AdSpyglass",
+ "categoryId": 4,
+ "url": null
+ },
+ "sexypartners.net": {
+ "name": "sexypartners.net",
+ "categoryId": 3,
+ "url": null
+ },
+ "adify": {
+ "name": "Adify",
+ "categoryId": 4,
+ "url": "http://www.adify.com/"
+ },
+ "chatango": {
+ "name": "Chatango",
+ "categoryId": 2,
+ "url": "http://www.chatango.com/"
+ },
+ "springserve": {
+ "name": "SpringServe",
+ "categoryId": 4,
+ "url": null
+ },
+ "united_digital_group": {
+ "name": "United Digital Group",
+ "categoryId": 4,
+ "url": "https://www.udg.de/"
+ },
+ "adverserve": {
+ "name": "adverServe",
+ "categoryId": 4,
+ "url": "http://www.adverserve.com/"
+ },
+ "segment": {
+ "name": "Segment",
+ "categoryId": 6,
+ "url": "https://segment.io/"
+ },
+ "sekindo": {
+ "name": "Sekindo",
+ "categoryId": 4,
+ "url": "http://www.sekindo.com/"
+ },
+ "perimeterx.net": {
+ "name": "Perimeterx",
+ "categoryId": 6,
+ "url": "https://www.perimeterx.com/"
+ },
+ "adnet.de": {
+ "name": "adNET.de",
+ "categoryId": 4,
+ "url": "http://www.adnet.de"
+ },
+ "cursecdn.com": {
+ "name": "Curse CDN",
+ "categoryId": 9,
+ "url": "https://www.curse.com/"
+ },
+ "po.st": {
+ "name": "Po.st",
+ "categoryId": 7,
+ "url": "https://www.po.st/"
+ },
+ "switch_concepts": {
+ "name": "Switch Concepts",
+ "categoryId": 4,
+ "url": "http://www.switchconcepts.co.uk/"
+ },
+ "ask.com": {
+ "name": "Ask.com",
+ "categoryId": 7,
+ "url": null
+ },
+ "dynamic_yield": {
+ "name": "Dynamic Yield",
+ "categoryId": 8,
+ "url": null
+ },
+ "1822direkt.de": {
+ "name": "1822direkt.de",
+ "categoryId": 8,
+ "url": "https://www.1822direkt.de/"
+ },
+ "hola_player": {
+ "name": "Hola Player",
+ "categoryId": 0,
+ "url": null
+ },
+ "zog.link": {
+ "name": "zog.link",
+ "categoryId": 11,
+ "url": null
+ },
+ "richrelevance": {
+ "name": "RichRelevance",
+ "categoryId": 4,
+ "url": "http://www.richrelevance.com/"
+ },
+ "tubemogul": {
+ "name": "TubeMogul",
+ "categoryId": 4,
+ "url": "http://tubemogul.com/"
+ },
+ "bugsnag": {
+ "name": "Bugsnag",
+ "categoryId": 6,
+ "url": "https://bugsnag.com"
+ },
+ "codeonclick.com": {
+ "name": "codeonclick.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "imgix.net": {
+ "name": "ImgIX",
+ "categoryId": 9,
+ "url": "https://www.imgix.com/"
+ },
+ "eanalyzer.de": {
+ "name": "eanalyzer.de",
+ "categoryId": 11,
+ "url": null
+ },
+ "yusp": {
+ "name": "Yusp",
+ "categoryId": 4,
+ "url": "https://www.yusp.com/"
+ },
+ "greatviews.de": {
+ "name": "GreatViews",
+ "categoryId": 4,
+ "url": "http://greatviews.de/"
+ },
+ "lkqd": {
+ "name": "LKQD",
+ "categoryId": 4,
+ "url": "http://www.lkqd.com/"
+ },
+ "woopic.com": {
+ "name": "woopic.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "eyeview": {
+ "name": "Eyeview",
+ "categoryId": 4,
+ "url": "http://www.eyeviewdigital.com/"
+ },
+ "valiton": {
+ "name": "Valiton",
+ "categoryId": 4,
+ "url": "https://www.valiton.com/"
+ },
+ "stripe.com": {
+ "name": "Stripe",
+ "categoryId": 2,
+ "url": "https://stripe.com/"
+ },
+ "coll1onf.com": {
+ "name": "coll1onf.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "salecycle": {
+ "name": "SaleCycle",
+ "categoryId": 4,
+ "url": "http://www.salecycle.com/"
+ },
+ "id-news.net": {
+ "name": "Ippen Digital",
+ "categoryId": 4,
+ "url": "https://www.ippen-digital.de/"
+ },
+ "doofinder.com": {
+ "name": "doofinder",
+ "categoryId": 2,
+ "url": "https://www.doofinder.com/"
+ },
+ "ixquick.com": {
+ "name": "ixquick",
+ "categoryId": 8,
+ "url": "https://www.ixquick.com/"
+ },
+ "loadbee.com": {
+ "name": "Loadbee",
+ "categoryId": 4,
+ "url": "https://company.loadbee.com/de/loadbee-home"
+ },
+ "findizer.fr": {
+ "name": "Findizer",
+ "categoryId": 8,
+ "url": "http://www.findizer.fr/"
+ },
+ "wix.com": {
+ "name": "Wix",
+ "categoryId": 8,
+ "url": "https://www.wix.com/"
+ },
+ "7tv.de": {
+ "name": "7tv.de",
+ "categoryId": 0,
+ "url": "https://www.7tv.de/"
+ },
+ "opta.net": {
+ "name": "Opta",
+ "categoryId": 2,
+ "url": "http://www.optasports.de/"
+ },
+ "zedo": {
+ "name": "Zedo",
+ "categoryId": 4,
+ "url": "http://www.zedo.com/"
+ },
+ "alibaba.com": {
+ "name": "Alibaba",
+ "categoryId": 8,
+ "url": null
+ },
+ "crossengage": {
+ "name": "CrossEngage",
+ "categoryId": 6,
+ "url": null
+ },
+ "solads.media": {
+ "name": "solads.media",
+ "categoryId": 4,
+ "url": "http://solads.media/"
+ },
+ "office.com": {
+ "name": "office.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "adotmob.com": {
+ "name": "Adotmob",
+ "categoryId": 4,
+ "url": "https://adotmob.com/"
+ },
+ "liveadexchanger.com": {
+ "name": "liveadexchanger.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "brandwire.tv": {
+ "name": "BrandWire",
+ "categoryId": 4,
+ "url": "https://brandwire.tv/"
+ },
+ "gumgum": {
+ "name": "gumgum",
+ "categoryId": 4,
+ "url": "http://gumgum.com/"
+ },
+ "bombora": {
+ "name": "Bombora",
+ "categoryId": 6,
+ "url": null
+ },
+ "king.com": {
+ "name": "King.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "admeira.ch": {
+ "name": "AdMeira",
+ "categoryId": 4,
+ "url": "http://admeira.ch/"
+ },
+ "adventori": {
+ "name": "ADventori",
+ "categoryId": 8,
+ "url": null
+ },
+ "stayfriends.de": {
+ "name": "stayfriends.de",
+ "categoryId": 8,
+ "url": "https://www.stayfriends.de/"
+ },
+ "apester": {
+ "name": "Apester",
+ "categoryId": 4,
+ "url": "http://apester.com/"
+ },
+ "bulkhentai.com": {
+ "name": "bulkhentai.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "metapeople": {
+ "name": "Metapeople",
+ "categoryId": 4,
+ "url": "http://www.metapeople.com/us/"
+ },
+ "smartlook": {
+ "name": "Smartlook",
+ "categoryId": 2,
+ "url": null
+ },
+ "getintent": {
+ "name": "GetIntent",
+ "categoryId": 4,
+ "url": "http://www.getintent.com/"
+ },
+ "sumome": {
+ "name": "SumoMe",
+ "categoryId": 6,
+ "url": "http://sumome.com/"
+ },
+ "kairion.de": {
+ "name": "kairion",
+ "categoryId": 4,
+ "url": "https://kairion.de/"
+ },
+ "trsv3.com": {
+ "name": "trsv3.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "powerlinks": {
+ "name": "PowerLinks",
+ "categoryId": 4,
+ "url": "http://www.powerlinks.com/"
+ },
+ "lifestreet_media": {
+ "name": "LifeStreet Media",
+ "categoryId": 4,
+ "url": "http://lifestreetmedia.com/"
+ },
+ "sparkasse.de": {
+ "name": "sparkasse.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "netmining": {
+ "name": "Netmining",
+ "categoryId": 4,
+ "url": "http://www.netmining.com/"
+ },
+ "videoplaza": {
+ "name": "Videoplaza",
+ "categoryId": 4,
+ "url": "http://www.videoplaza.com/"
+ },
+ "inspectlet": {
+ "name": "Inspectlet",
+ "categoryId": 6,
+ "url": "https://www.inspectlet.com/"
+ },
+ "yume": {
+ "name": "YuMe",
+ "categoryId": 4,
+ "url": null
+ },
+ "nanigans": {
+ "name": "Nanigans",
+ "categoryId": 4,
+ "url": "http://www.nanigans.com/"
+ },
+ "certona": {
+ "name": "Certona",
+ "categoryId": 4,
+ "url": "http://www.certona.com/products/recommendation.php"
+ },
+ "affimax": {
+ "name": "AffiMax",
+ "categoryId": 4,
+ "url": "https://www.affimax.de"
+ },
+ "hubspot": {
+ "name": "HubSpot",
+ "categoryId": 4,
+ "url": "http://www.hubspot.com/"
+ },
+ "quisma": {
+ "name": "Quisma",
+ "categoryId": 4,
+ "url": "http://www.quisma.com/en/"
+ },
+ "pusher.com": {
+ "name": "Pusher",
+ "categoryId": 6,
+ "url": "https://pusher.com/"
+ },
+ "blogsmithmedia.com": {
+ "name": "blogsmithmedia.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "sojern": {
+ "name": "Sojern",
+ "categoryId": 4,
+ "url": "http://www.sojern.com/"
+ },
+ "sublime_skinz": {
+ "name": "Sublime Skinz",
+ "categoryId": 4,
+ "url": "https://sublimeskinz.com/home"
+ },
+ "keen_io": {
+ "name": "Keen IO",
+ "categoryId": 6,
+ "url": "https://keen.io"
+ },
+ "digiteka": {
+ "name": "Digiteka",
+ "categoryId": 4,
+ "url": null
+ },
+ "ard.de": {
+ "name": "ard.de",
+ "categoryId": 0,
+ "url": null
+ },
+ "netflix": {
+ "name": "Netflix",
+ "categoryId": 8,
+ "url": null
+ },
+ "tp-cdn.com": {
+ "name": "TrialPay",
+ "categoryId": 4,
+ "url": "https://www.trialpay.com/"
+ },
+ "adtelligence.de": {
+ "name": "Adtelligence",
+ "categoryId": 4,
+ "url": "https://adtelligence.com/"
+ },
+ "tawk": {
+ "name": "Tawk",
+ "categoryId": 2,
+ "url": null
+ },
+ "firebaseio.com": {
+ "name": "Firebase",
+ "categoryId": 8,
+ "url": "https://firebase.google.com/"
+ },
+ "shopauskunft.de": {
+ "name": "ShopAuskunft.de",
+ "categoryId": 2,
+ "url": "https://shopauskunft.de/"
+ },
+ "dcmn.com": {
+ "name": "DCMN",
+ "categoryId": 4,
+ "url": "https://www.dcmn.com/"
+ },
+ "mythings": {
+ "name": "myThings",
+ "categoryId": 4,
+ "url": "http://www.mythings.com/"
+ },
+ "asambeauty.com": {
+ "name": "asambeauty.com",
+ "categoryId": 8,
+ "url": "https://www.asambeauty.com/"
+ },
+ "dailymotion": {
+ "name": "Dailymotion",
+ "categoryId": 8,
+ "url": null
+ },
+ "cam-content.com": {
+ "name": "Cam-Content.com",
+ "categoryId": 3,
+ "url": "https://www.cam-content.com/"
+ },
+ "dmwd": {
+ "name": "DMWD",
+ "categoryId": 8,
+ "url": null
+ },
+ "voicefive": {
+ "name": "VoiceFive",
+ "categoryId": 6,
+ "url": "https://www.voicefive.com"
+ },
+ "run": {
+ "name": "RUN",
+ "categoryId": 4,
+ "url": "http://www.rundsp.com/"
+ },
+ "orange": {
+ "name": "Orange",
+ "categoryId": 4,
+ "url": "http://www.orange.co.uk/"
+ },
+ "media-imdb.com": {
+ "name": "IMDB CDN",
+ "categoryId": 9,
+ "url": "https://www.imdb.com/"
+ },
+ "marketo": {
+ "name": "Marketo",
+ "categoryId": 4,
+ "url": "http://www.marketo.com/"
+ },
+ "shopify_stats": {
+ "name": "Shopify Stats",
+ "categoryId": 4,
+ "url": "http://www.shopify.com/"
+ },
+ "dc_stormiq": {
+ "name": "DC StormIQ",
+ "categoryId": 4,
+ "url": "http://www.dc-storm.com/"
+ },
+ "maxpoint_interactive": {
+ "name": "MaxPoint Interactive",
+ "categoryId": 4,
+ "url": "http://www.maxpointinteractive.com/"
+ },
+ "adxpansion": {
+ "name": "AdXpansion",
+ "categoryId": 3,
+ "url": "http://www.adxpansion.com/"
+ },
+ "onaudience": {
+ "name": "OnAudience",
+ "categoryId": 4,
+ "url": "http://www.onaudience.com/"
+ },
+ "uservoice": {
+ "name": "UserVoice",
+ "categoryId": 2,
+ "url": "http://uservoice.com/"
+ },
+ "owneriq": {
+ "name": "OwnerIQ",
+ "categoryId": 4,
+ "url": "http://www.owneriq.com/"
+ },
+ "convertro": {
+ "name": "Convertro",
+ "categoryId": 4,
+ "url": "http://www.convertro.com/"
+ },
+ "connextra": {
+ "name": "Connextra",
+ "categoryId": 4,
+ "url": "http://connextra.com/"
+ },
+ "yandex_adexchange": {
+ "name": "Yandex AdExchange",
+ "categoryId": 4,
+ "url": null
+ },
+ "digicert_trust_seal": {
+ "name": "Digicert Trust Seal",
+ "categoryId": 5,
+ "url": "http://www.digicert.com/"
+ },
+ "urban-media.com": {
+ "name": "Urban Media GmbH",
+ "categoryId": 4,
+ "url": "https://www.urban-media.com/"
+ },
+ "adtiger": {
+ "name": "AdTiger",
+ "categoryId": 4,
+ "url": "http://www.adtiger.de/"
+ },
+ "pulpix.com": {
+ "name": "Pulpix",
+ "categoryId": 4,
+ "url": "https://www.pulpix.com/"
+ },
+ "branch_metrics": {
+ "name": "Branch",
+ "categoryId": 4,
+ "url": null
+ },
+ "smartclick.net": {
+ "name": "SmartClick",
+ "categoryId": 4,
+ "url": "http://smartclick.net/"
+ },
+ "xing": {
+ "name": "Xing",
+ "categoryId": 6,
+ "url": null
+ },
+ "travel_audience": {
+ "name": "Travel Audience",
+ "categoryId": 6,
+ "url": null
+ },
+ "streamrail.com": {
+ "name": "StreamRail",
+ "categoryId": 0,
+ "url": "https://www.streamrail.com/"
+ },
+ "t8cdn.com": {
+ "name": "t8cdn.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "apple": {
+ "name": "Apple",
+ "categoryId": 4,
+ "url": "http://www.apple.com/"
+ },
+ "magnetic": {
+ "name": "Magnetic",
+ "categoryId": 4,
+ "url": "http://www.magnetic.is"
+ },
+ "schneevonmorgen.com": {
+ "name": "Schnee von Morgen",
+ "categoryId": 0,
+ "url": "http://www.schneevonmorgen.com/"
+ },
+ "fullstory": {
+ "name": "FullStory",
+ "categoryId": 6,
+ "url": null
+ },
+ "vicomi.com": {
+ "name": "Vicomi",
+ "categoryId": 4,
+ "url": "http://www.vicomi.com/"
+ },
+ "alipay.com": {
+ "name": "Alipay",
+ "categoryId": 2,
+ "url": "https://www.alipay.com/"
+ },
+ "deichmann.com": {
+ "name": "deichmann.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "upravel.com": {
+ "name": "upravel.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "hqentertainmentnetwork.com": {
+ "name": "HQ Entertainment Network",
+ "categoryId": 4,
+ "url": "https://hqentertainmentnetwork.com/"
+ },
+ "here__formerly_navteq_media_solutions_": {
+ "name": "HERE (formerly Navteq Media Solutions)",
+ "categoryId": 8,
+ "url": null
+ },
+ "commission_junction": {
+ "name": "CJ Affiliate",
+ "categoryId": 4,
+ "url": "http://www.cj.com/"
+ },
+ "othersearch.info": {
+ "name": "FlowSurf",
+ "categoryId": 8,
+ "url": null
+ },
+ "avocet": {
+ "name": "Avocet",
+ "categoryId": 8,
+ "url": null
+ },
+ "toplist.cz": {
+ "name": "toplist.cz",
+ "categoryId": 11,
+ "url": null
+ },
+ "optimicdn.com": {
+ "name": "OptimiCDN",
+ "categoryId": 9,
+ "url": "https://en.optimicdn.com/"
+ },
+ "bounce_exchange": {
+ "name": "Bounce Exchange",
+ "categoryId": 4,
+ "url": "http://bounceexchange.com"
+ },
+ "rtblab": {
+ "name": "RTBmarkt",
+ "categoryId": 4,
+ "url": "http://www.rtbmarkt.de/en/home/"
+ },
+ "haendlerbund.de": {
+ "name": "Händlerbund",
+ "categoryId": 2,
+ "url": "https://www.haendlerbund.de/en"
+ },
+ "cdn-net.com": {
+ "name": "cdn-net.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "omarsys.com": {
+ "name": "Omarsys",
+ "categoryId": 4,
+ "url": "http://omarsys.com/"
+ },
+ "adfox": {
+ "name": "AdFox",
+ "categoryId": 4,
+ "url": "http://adfox.ru"
+ },
+ "iperceptions": {
+ "name": "iPerceptions",
+ "categoryId": 2,
+ "url": "http://www.iperceptions.com/"
+ },
+ "chaturbate.com": {
+ "name": "chaturbate.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "sixt-neuwagen.de": {
+ "name": "sixt-neuwagen.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "yieldify": {
+ "name": "Yieldify",
+ "categoryId": 4,
+ "url": "http://www.yieldify.com/"
+ },
+ "cdnetworks.net": {
+ "name": "cdnetworks.net",
+ "categoryId": 9,
+ "url": "https://www.cdnetworks.com/"
+ },
+ "komoona": {
+ "name": "Komoona",
+ "categoryId": 4,
+ "url": "http://www.komoona.com/"
+ },
+ "freewheel": {
+ "name": "FreeWheel",
+ "categoryId": 0,
+ "url": "http://www.freewheel.tv/"
+ },
+ "sessioncam": {
+ "name": "SessionCam",
+ "categoryId": 6,
+ "url": "http://www.sessioncam.com/"
+ },
+ "sailthru_horizon": {
+ "name": "Sailthru Horizon",
+ "categoryId": 4,
+ "url": "https://www.sailthru.com"
+ },
+ "datacaciques.com": {
+ "name": "DataCaciques",
+ "categoryId": 6,
+ "url": "http://www.datacaciques.com/"
+ },
+ "mediarithmics.com": {
+ "name": "Mediarithmics",
+ "categoryId": 4,
+ "url": "http://www.mediarithmics.com/en/"
+ },
+ "clicktripz": {
+ "name": "ClickTripz",
+ "categoryId": 4,
+ "url": "https://www.clicktripz.com"
+ },
+ "apicit.net": {
+ "name": "apicit.net",
+ "categoryId": 4,
+ "url": null
+ },
+ "ampproject.org": {
+ "name": "AMP Project",
+ "categoryId": 8,
+ "url": "https://www.ampproject.org/"
+ },
+ "deviantart.net": {
+ "name": "deviantart.net",
+ "categoryId": 8,
+ "url": null
+ },
+ "txxx.com": {
+ "name": "txxx.com",
+ "categoryId": 8,
+ "url": "https://txxx.com"
+ },
+ "uppr.de": {
+ "name": "uppr GmbH",
+ "categoryId": 4,
+ "url": "https://uppr.de/"
+ },
+ "get_site_control": {
+ "name": "Get Site Control",
+ "categoryId": 4,
+ "url": null
+ },
+ "clicky": {
+ "name": "Clicky",
+ "categoryId": 6,
+ "url": "http://getclicky.com/"
+ },
+ "wikia_beacon": {
+ "name": "Wikia Beacon",
+ "categoryId": 6,
+ "url": "http://www.wikia.com/"
+ },
+ "aldi-international.com": {
+ "name": "aldi-international.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "bigpoint": {
+ "name": "Bigpoint",
+ "categoryId": 8,
+ "url": null
+ },
+ "rythmxchange": {
+ "name": "Rythmxchange",
+ "categoryId": 0,
+ "url": null
+ },
+ "lenua.de": {
+ "name": "Lenua System",
+ "categoryId": 4,
+ "url": "http://lenua.de/"
+ },
+ "lentainform.com": {
+ "name": "lentainform.com",
+ "categoryId": 8,
+ "url": "https://www.lentainform.com/"
+ },
+ "avail": {
+ "name": "Avail",
+ "categoryId": 4,
+ "url": "http://avail.com"
+ },
+ "twitch.tv": {
+ "name": "Twitch",
+ "categoryId": 0,
+ "url": "https://www.twitch.tv/"
+ },
+ "olark": {
+ "name": "Olark",
+ "categoryId": 2,
+ "url": "http://www.olark.com/"
+ },
+ "oracle_rightnow": {
+ "name": "Oracle RightNow",
+ "categoryId": 8,
+ "url": null
+ },
+ "sirdata": {
+ "name": "Sirdata",
+ "categoryId": 6,
+ "url": null
+ },
+ "wdr.de": {
+ "name": "wdr.de",
+ "categoryId": 8,
+ "url": "https://www1.wdr.de/index.html"
+ },
+ "tumblr_buttons": {
+ "name": "Tumblr Buttons",
+ "categoryId": 7,
+ "url": "http://www.tumblr.com/"
+ },
+ "netseer": {
+ "name": "NetSeer",
+ "categoryId": 4,
+ "url": "http://www.netseer.com/"
+ },
+ "vivalu": {
+ "name": "VIVALU",
+ "categoryId": 4,
+ "url": null
+ },
+ "errorception": {
+ "name": "Errorception",
+ "categoryId": 6,
+ "url": "http://errorception.com/"
+ },
+ "iias.eu": {
+ "name": "Insight Image",
+ "categoryId": 3,
+ "url": "http://insightimage.com/"
+ },
+ "impact_radius": {
+ "name": "Impact Radius",
+ "categoryId": 5,
+ "url": "http://www.impactradius.com/"
+ },
+ "answers_cloud_service": {
+ "name": "Answers Cloud Service",
+ "categoryId": 1,
+ "url": null
+ },
+ "aniview.com": {
+ "name": "AniView",
+ "categoryId": 4,
+ "url": "https://www.aniview.com/"
+ },
+ "decibel_insight": {
+ "name": "Decibel Insight",
+ "categoryId": 6,
+ "url": null
+ },
+ "adobe_tagmanager": {
+ "name": "Adobe TagManager",
+ "categoryId": 4,
+ "url": "https://www.adobe.com/"
+ },
+ "overheat.it": {
+ "name": "overheat",
+ "categoryId": 6,
+ "url": "https://overheat.io/"
+ },
+ "snowplow": {
+ "name": "Snowplow",
+ "categoryId": 6,
+ "url": null
+ },
+ "psyma": {
+ "name": "Psyma",
+ "categoryId": 4,
+ "url": "http://www.psyma.com/"
+ },
+ "bauer_media": {
+ "name": "Bauer Media",
+ "categoryId": 4,
+ "url": null
+ },
+ "homeaway": {
+ "name": "HomeAway",
+ "categoryId": 8,
+ "url": null
+ },
+ "perfect_audience": {
+ "name": "Perfect Audience",
+ "categoryId": 4,
+ "url": "https://www.perfectaudience.com/"
+ },
+ "itineraire.info": {
+ "name": "itineraire.info",
+ "categoryId": 2,
+ "url": "https://www.itineraire.info/"
+ },
+ "revcontent": {
+ "name": "RevContent",
+ "categoryId": 4,
+ "url": "https://www.revcontent.com/"
+ },
+ "algolia.net": {
+ "name": "algolia",
+ "categoryId": 4,
+ "url": "https://www.algolia.com/"
+ },
+ "zergnet": {
+ "name": "ZergNet",
+ "categoryId": 2,
+ "url": "http://www.zergnet.com/info"
+ },
+ "adskeeper": {
+ "name": "AdsKeeper",
+ "categoryId": 4,
+ "url": null
+ },
+ "jivox": {
+ "name": "Jivox",
+ "categoryId": 4,
+ "url": "http://www.jivox.com/"
+ },
+ "basilic.io": {
+ "name": "basilic.io",
+ "categoryId": 6,
+ "url": "https://basilic.io/"
+ },
+ "crosssell.info": {
+ "name": "econda Cross Sell",
+ "categoryId": 4,
+ "url": "https://www.econda.de/en/solutions/personalization/cross-sell/"
+ },
+ "hi-media_performance": {
+ "name": "Hi-Media Performance",
+ "categoryId": 4,
+ "url": "http://www.hi-mediaperformance.co.uk/"
+ },
+ "perform_group": {
+ "name": "Perform Group",
+ "categoryId": 5,
+ "url": "http://www.performgroup.co.uk/"
+ },
+ "kenshoo": {
+ "name": "Kenshoo",
+ "categoryId": 6,
+ "url": "http://www.kenshoo.com/"
+ },
+ "stepstone.com": {
+ "name": "StepStone",
+ "categoryId": 8,
+ "url": "https://www.stepstone.com/"
+ },
+ "clever_push": {
+ "name": "Clever Push",
+ "categoryId": 6,
+ "url": null
+ },
+ "recreativ": {
+ "name": "Recreativ",
+ "categoryId": 4,
+ "url": "http://recreativ.ru/"
+ },
+ "polldaddy": {
+ "name": "Polldaddy",
+ "categoryId": 2,
+ "url": "http://polldaddy.com/"
+ },
+ "s3xified.com": {
+ "name": "s3xified.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "microsoft": {
+ "name": "Microsoft Services",
+ "categoryId": 8,
+ "url": null
+ },
+ "intent_media": {
+ "name": "Intent Media",
+ "categoryId": 4,
+ "url": "http://www.intentmedia.com/"
+ },
+ "rtl_group": {
+ "name": "RTL Group",
+ "categoryId": 8,
+ "url": null
+ },
+ "skadtec.com": {
+ "name": "GP One GmbH",
+ "categoryId": 6,
+ "url": "http://www.gp-one.com/"
+ },
+ "nativo": {
+ "name": "Nativo",
+ "categoryId": 4,
+ "url": "http://www.nativo.net/"
+ },
+ "kaltura": {
+ "name": "Kaltura",
+ "categoryId": 0,
+ "url": "http://corp.kaltura.com/"
+ },
+ "effiliation": {
+ "name": "Effiliation",
+ "categoryId": 4,
+ "url": "http://www.effiliation.com/"
+ },
+ "intimate_merger": {
+ "name": "Intimate Merger",
+ "categoryId": 6,
+ "url": null
+ },
+ "innogames.de": {
+ "name": "InnoGames",
+ "categoryId": 8,
+ "url": "https://www.innogames.com/"
+ },
+ "districtm.io": {
+ "name": "district m",
+ "categoryId": 4,
+ "url": "https://districtm.net/"
+ },
+ "yandex.api": {
+ "name": "Yandex.API",
+ "categoryId": 2,
+ "url": "http://api.yandex.ru/"
+ },
+ "snacktv": {
+ "name": "SnackTV",
+ "categoryId": 6,
+ "url": null
+ },
+ "trafficforce": {
+ "name": "TrafficForce",
+ "categoryId": 4,
+ "url": "http://www.trafficforce.com/"
+ },
+ "rollbar": {
+ "name": "Rollbar",
+ "categoryId": 6,
+ "url": "http://www.rollbar.com/"
+ },
+ "baur.de": {
+ "name": "baur.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "adwebster": {
+ "name": "adwebster",
+ "categoryId": 4,
+ "url": "http://adwebster.com"
+ },
+ "clickonometrics": {
+ "name": "Clickonometrics",
+ "categoryId": 4,
+ "url": "http://clickonometrics.pl/"
+ },
+ "realytics.io": {
+ "name": "realytics.io",
+ "categoryId": 6,
+ "url": "https://www.realytics.io/"
+ },
+ "nativeads.com": {
+ "name": "native ads",
+ "categoryId": 4,
+ "url": "https://nativeads.com/"
+ },
+ "proxistore.com": {
+ "name": "Proxistore",
+ "categoryId": 4,
+ "url": "https://www.proxistore.com/"
+ },
+ "greentube.com": {
+ "name": "Greentube Internet Entertainment Solutions",
+ "categoryId": 7,
+ "url": "https://www.greentube.com/"
+ },
+ "heroku": {
+ "name": "Heroku",
+ "categoryId": 10,
+ "url": null
+ },
+ "adzerk": {
+ "name": "Adzerk",
+ "categoryId": 4,
+ "url": "http://adzerk.com/"
+ },
+ "lengow": {
+ "name": "Lengow",
+ "categoryId": 4,
+ "url": "http://www.lengow.com/"
+ },
+ "adworxs.net": {
+ "name": "adworxs.net",
+ "categoryId": 4,
+ "url": "http://www.adworxs.net/?lang=en"
+ },
+ "clickintext": {
+ "name": "ClickInText",
+ "categoryId": 4,
+ "url": "http://www.clickintext.com/"
+ },
+ "tamedia.ch": {
+ "name": "Tamedia",
+ "categoryId": 4,
+ "url": "https://www.tamedia.ch/"
+ },
+ "visible_measures": {
+ "name": "Visible Measures",
+ "categoryId": 4,
+ "url": "http://www.visiblemeasures.com/"
+ },
+ "gamedistribution.com": {
+ "name": "Gamedistribution.com",
+ "categoryId": 8,
+ "url": "http://gamedistribution.com/"
+ },
+ "flattr_button": {
+ "name": "Flattr Button",
+ "categoryId": 7,
+ "url": "http://flattr.com/"
+ },
+ "sstatic.net": {
+ "name": "Stack Exchange",
+ "categoryId": 9,
+ "url": "https://sstatic.net/"
+ },
+ "trustwave.com": {
+ "name": "Trustwave",
+ "categoryId": 8,
+ "url": "https://www.trustwave.com/home/"
+ },
+ "siteimprove": {
+ "name": "Siteimprove",
+ "categoryId": 6,
+ "url": "http://siteimprove.com"
+ },
+ "adtrue": {
+ "name": "Adtrue",
+ "categoryId": 4,
+ "url": null
+ },
+ "1000mercis": {
+ "name": "1000mercis",
+ "categoryId": 6,
+ "url": null
+ },
+ "ipg_mediabrands": {
+ "name": "IPG Mediabrands",
+ "categoryId": 4,
+ "url": null
+ },
+ "tradetracker": {
+ "name": "TradeTracker",
+ "categoryId": 4,
+ "url": "http://www.tradetracker.com"
+ },
+ "adnologies": {
+ "name": "Adnologies",
+ "categoryId": 4,
+ "url": "http://www.adnologies.com/"
+ },
+ "24-ads.com": {
+ "name": "24-ADS GmbH",
+ "categoryId": 4,
+ "url": "http://www.24-ads.com/"
+ },
+ "pushnative.com": {
+ "name": "pushnative.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "flag_counter": {
+ "name": "Flag Counter",
+ "categoryId": 4,
+ "url": "http://flagcounter.com/"
+ },
+ "dstillery": {
+ "name": "Dstillery",
+ "categoryId": 4,
+ "url": "http://www.media6degrees.com/"
+ },
+ "office.net": {
+ "name": "office.net",
+ "categoryId": 8,
+ "url": null
+ },
+ "tinypass": {
+ "name": "Piano",
+ "categoryId": 5,
+ "url": "https://piano.io/"
+ },
+ "mobtrks.com": {
+ "name": "mobtrks.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "yoochoose.net": {
+ "name": "YOOCHOOSE",
+ "categoryId": 4,
+ "url": "https://yoochoose.com/"
+ },
+ "cpmstar": {
+ "name": "CPMStar",
+ "categoryId": 4,
+ "url": "http://www.cpmstar.com"
+ },
+ "blink_new_media": {
+ "name": "Blink New Media",
+ "categoryId": 4,
+ "url": "http://engagebdr.com/"
+ },
+ "acquia.com": {
+ "name": "Acquia",
+ "categoryId": 6,
+ "url": "https://www.acquia.com/"
+ },
+ "gravity_insights": {
+ "name": "Gravity Insights",
+ "categoryId": 6,
+ "url": "http://www.gravity.com/"
+ },
+ "baynote_observer": {
+ "name": "Baynote Observer",
+ "categoryId": 4,
+ "url": "http://www.baynote.com/"
+ },
+ "demandbase": {
+ "name": "Demandbase",
+ "categoryId": 4,
+ "url": "http://www.demandbase.com/"
+ },
+ "stackpathdns.com": {
+ "name": "StackPath",
+ "categoryId": 9,
+ "url": "https://www.stackpath.com/"
+ },
+ "booking.com": {
+ "name": "Booking.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "optimatic": {
+ "name": "Optimatic",
+ "categoryId": 0,
+ "url": null
+ },
+ "realytics": {
+ "name": "Realytics",
+ "categoryId": 6,
+ "url": null
+ },
+ "vi": {
+ "name": "Vi",
+ "categoryId": 4,
+ "url": "http://www.vi.ru/"
+ },
+ "livefyre": {
+ "name": "Livefyre",
+ "categoryId": 1,
+ "url": "http://www.livefyre.com/"
+ },
+ "tremor_video": {
+ "name": "Tremor Video",
+ "categoryId": 0,
+ "url": null
+ },
+ "research_now": {
+ "name": "Research Now",
+ "categoryId": 4,
+ "url": "http://www.researchnow.com/"
+ },
+ "baidu_ads": {
+ "name": "Baidu Ads",
+ "categoryId": 4,
+ "url": "http://www.baidu.com/"
+ },
+ "pixalate": {
+ "name": "Pixalate",
+ "categoryId": 4,
+ "url": null
+ },
+ "aidata.io": {
+ "name": "AiData",
+ "categoryId": 4,
+ "url": "http://www.aidata.me/"
+ },
+ "mcafee_secure": {
+ "name": "McAfee Secure",
+ "categoryId": 5,
+ "url": "http://www.mcafeesecure.com/us/"
+ },
+ "livesportmedia.eu": {
+ "name": "Livesport Media",
+ "categoryId": 8,
+ "url": "http://www.livesportmedia.eu/"
+ },
+ "smi2.ru": {
+ "name": "smi2.ru",
+ "categoryId": 4,
+ "url": "https://smi2.ru/"
+ },
+ "vooxe.com": {
+ "name": "vooxe.com",
+ "categoryId": 8,
+ "url": "http://www.vooxe.com/"
+ },
+ "walmart": {
+ "name": "Walmart",
+ "categoryId": 8,
+ "url": null
+ },
+ "nice264.com": {
+ "name": "Nice264",
+ "categoryId": 0,
+ "url": "http://nice264.com/"
+ },
+ "vidazoo.com": {
+ "name": "Vidazoo",
+ "categoryId": 4,
+ "url": "https://www.vidazoo.com/"
+ },
+ "heap": {
+ "name": "Heap",
+ "categoryId": 6,
+ "url": "https://heapanalytics.com/"
+ },
+ "kaloo.ga": {
+ "name": "Kalooga",
+ "categoryId": 4,
+ "url": "https://www.kalooga.com/"
+ },
+ "layer-ad.org": {
+ "name": "Layer-ADS.net",
+ "categoryId": 4,
+ "url": "http://layer-ads.net/"
+ },
+ "loop11": {
+ "name": "Loop11",
+ "categoryId": 6,
+ "url": null
+ },
+ "spot.im": {
+ "name": "Spot.IM",
+ "categoryId": 7,
+ "url": "https://www.spot.im/"
+ },
+ "howtank.com": {
+ "name": "howtank",
+ "categoryId": 7,
+ "url": "https://www.howtank.com/"
+ },
+ "sexadnetwork": {
+ "name": "SexAdNetwork",
+ "categoryId": 3,
+ "url": "http://www.sexadnetwork.com/"
+ },
+ "pushcrew": {
+ "name": "Pushcrew",
+ "categoryId": 2,
+ "url": null
+ },
+ "swisscom": {
+ "name": "Swisscom",
+ "categoryId": 8,
+ "url": null
+ },
+ "spongecell": {
+ "name": "Spongecell",
+ "categoryId": 4,
+ "url": "http://www.spongecell.com/"
+ },
+ "friendfinder_network": {
+ "name": "FriendFinder Network",
+ "categoryId": 3,
+ "url": "http://www.ffn.com/"
+ },
+ "netrk.net": {
+ "name": "nfxTrack",
+ "categoryId": 6,
+ "url": "https://netrk.net/"
+ },
+ "cloud-media.fr": {
+ "name": "CloudMedia",
+ "categoryId": 4,
+ "url": "https://cloudmedia.fr/"
+ },
+ "vizury": {
+ "name": "Vizury",
+ "categoryId": 4,
+ "url": "http://www.vizury.com/website/"
+ },
+ "admized": {
+ "name": "ADMIZED",
+ "categoryId": 8,
+ "url": null
+ },
+ "sumologic.com": {
+ "name": "Sumologic",
+ "categoryId": 6,
+ "url": "https://www.sumologic.com/"
+ },
+ "raygun": {
+ "name": "Raygun",
+ "categoryId": 4,
+ "url": null
+ },
+ "yahoo_japan": {
+ "name": "Yahoo! Japan",
+ "categoryId": 8,
+ "url": null
+ },
+ "effective_measure": {
+ "name": "Effective Measure",
+ "categoryId": 4,
+ "url": "http://www.effectivemeasure.com/"
+ },
+ "bluelithium": {
+ "name": "Bluelithium",
+ "categoryId": 4,
+ "url": "http://www.bluelithium.com/"
+ },
+ "adocean": {
+ "name": "AdOcean",
+ "categoryId": 4,
+ "url": "http://adocean.cz/en"
+ },
+ "c1_exchange": {
+ "name": "C1 Exchange",
+ "categoryId": 4,
+ "url": null
+ },
+ "netbiscuits": {
+ "name": "Netbiscuits",
+ "categoryId": 6,
+ "url": "http://www.netbiscuits.net/"
+ },
+ "expedia": {
+ "name": "Expedia",
+ "categoryId": 8,
+ "url": "https://www.trvl-px.com/"
+ },
+ "nonstop_consulting": {
+ "name": "nonstop Consulting",
+ "categoryId": 4,
+ "url": "http://www.nonstopconsulting.co.uk"
+ },
+ "jumptap": {
+ "name": "Jumptap",
+ "categoryId": 4,
+ "url": "http://www.jumptap.com/"
+ },
+ "unister": {
+ "name": "Unister",
+ "categoryId": 6,
+ "url": "http://www.unister.de/"
+ },
+ "underdog_media": {
+ "name": "Underdog Media",
+ "categoryId": 4,
+ "url": "http://www.underdogmedia.com"
+ },
+ "wwwpromoter": {
+ "name": "WWWPromoter",
+ "categoryId": 4,
+ "url": null
+ },
+ "maxmind": {
+ "name": "MaxMind",
+ "categoryId": 4,
+ "url": "http://www.maxmind.com/"
+ },
+ "fstrk.net": {
+ "name": "24metrics Fraudshield",
+ "categoryId": 6,
+ "url": "https://24metrics.com/"
+ },
+ "toro": {
+ "name": "TORO",
+ "categoryId": 4,
+ "url": "http://toroadvertising.com/"
+ },
+ "content.ad": {
+ "name": "Content.ad",
+ "categoryId": 4,
+ "url": "https://www.content.ad/"
+ },
+ "aemediatraffic": {
+ "name": "Aemediatraffic",
+ "categoryId": 6,
+ "url": null
+ },
+ "babator.com": {
+ "name": "Babator",
+ "categoryId": 6,
+ "url": "https://www.babator.com/"
+ },
+ "algovid.com": {
+ "name": "algovid.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "jetlore": {
+ "name": "Jetlore",
+ "categoryId": 6,
+ "url": null
+ },
+ "feedbackify": {
+ "name": "Feedbackify",
+ "categoryId": 2,
+ "url": "http://www.feedbackify.com/"
+ },
+ "flixmedia": {
+ "name": "Flixmedia",
+ "categoryId": 8,
+ "url": null
+ },
+ "visualdna": {
+ "name": "VisualDNA",
+ "categoryId": 4,
+ "url": "http://www.visualdna.com/"
+ },
+ "popcash": {
+ "name": "Popcash",
+ "categoryId": 4,
+ "url": "http://popcash.net/"
+ },
+ "f11-ads.com": {
+ "name": "Factor Eleven",
+ "categoryId": 4,
+ "url": null
+ },
+ "stumbleupon_widgets": {
+ "name": "StumbleUpon Widgets",
+ "categoryId": 7,
+ "url": "http://www.stumbleupon.com/"
+ },
+ "adgear": {
+ "name": "AdGear",
+ "categoryId": 4,
+ "url": "http://adgear.com/"
+ },
+ "extreme_tracker": {
+ "name": "eXTReMe Tracker",
+ "categoryId": 6,
+ "url": "http://www.extremetracking.com/"
+ },
+ "leadplace": {
+ "name": "LeadPlace",
+ "categoryId": 6,
+ "url": null
+ },
+ "infolinks": {
+ "name": "InfoLinks",
+ "categoryId": 4,
+ "url": "http://www.infolinks.com/"
+ },
+ "smartsupp_chat": {
+ "name": "Smartsupp Chat",
+ "categoryId": 2,
+ "url": null
+ },
+ "redtube.com": {
+ "name": "redtube.com",
+ "categoryId": 9,
+ "url": null
+ },
+ "adc_media": {
+ "name": "ad:C media",
+ "categoryId": 4,
+ "url": "http://www.adcmedia.de/en/"
+ },
+ "hstrck.com": {
+ "name": "HEIM:SPIEL Medien GmbH",
+ "categoryId": 8,
+ "url": "https://www.heimspiel.de/"
+ },
+ "tracc.it": {
+ "name": "Kiwe.io",
+ "categoryId": 6,
+ "url": "https://www.kiwe.io/"
+ },
+ "walkme.com": {
+ "name": "Walk Me",
+ "categoryId": 2,
+ "url": "https://www.walkme.com/"
+ },
+ "freshdesk": {
+ "name": "Freshdesk",
+ "categoryId": 2,
+ "url": "http://www.freshdesk.com"
+ },
+ "forensiq": {
+ "name": "Forensiq",
+ "categoryId": 4,
+ "url": "http://www.cpadetective.com/"
+ },
+ "truste_seal": {
+ "name": "TRUSTe Seal",
+ "categoryId": 5,
+ "url": "http://www.truste.com/"
+ },
+ "optimonk": {
+ "name": "Optimonk",
+ "categoryId": 6,
+ "url": null
+ },
+ "seznam": {
+ "name": "Seznam",
+ "categoryId": 6,
+ "url": null
+ },
+ "oxomi.com": {
+ "name": "Oxomi",
+ "categoryId": 4,
+ "url": "https://oxomi.com/"
+ },
+ "sas": {
+ "name": "SAS",
+ "categoryId": 6,
+ "url": "http://www.sas.com/"
+ },
+ "gdm_digital": {
+ "name": "GDM Digital",
+ "categoryId": 4,
+ "url": "http://www.gdmdigital.com/"
+ },
+ "adnetworkperformance.com": {
+ "name": "adnetworkperformance.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "stackadapt": {
+ "name": "StackAdapt",
+ "categoryId": 4,
+ "url": null
+ },
+ "ria.ru": {
+ "name": "ria.ru",
+ "categoryId": 8,
+ "url": "https://ria.ru/"
+ },
+ "skyscnr.com": {
+ "name": "Skyscanner CDN",
+ "categoryId": 9,
+ "url": "https://www.skyscanner.net/"
+ },
+ "imonomy": {
+ "name": "imonomy",
+ "categoryId": 6,
+ "url": null
+ },
+ "maru-edu": {
+ "name": "Maru-EDU",
+ "categoryId": 2,
+ "url": null
+ },
+ "trustarc": {
+ "name": "TrustArc",
+ "categoryId": 5,
+ "url": null
+ },
+ "adbetclickin.pink": {
+ "name": "adbetnet",
+ "categoryId": 4,
+ "url": "http://adbetnet.com/"
+ },
+ "videoadex.com": {
+ "name": "VideoAdX",
+ "categoryId": 4,
+ "url": "https://www.videoadex.com/"
+ },
+ "monster_advertising": {
+ "name": "Monster Advertising",
+ "categoryId": 4,
+ "url": "http://www.monster.com/"
+ },
+ "atlassian.net": {
+ "name": "Atlassian",
+ "categoryId": 2,
+ "url": "https://www.atlassian.com/"
+ },
+ "siteimprove_analytics": {
+ "name": "SiteImprove Analytics",
+ "categoryId": 6,
+ "url": null
+ },
+ "mirtesen.ru": {
+ "name": "mirtesen.ru",
+ "categoryId": 7,
+ "url": "https://mirtesen.ru/"
+ },
+ "lenmit.com": {
+ "name": "lenmit.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "semknox.com": {
+ "name": "SEMKNOX GmbH",
+ "categoryId": 5,
+ "url": "https://semknox.com/"
+ },
+ "wiredminds": {
+ "name": "WiredMinds",
+ "categoryId": 6,
+ "url": "http://www.wiredminds.de/"
+ },
+ "adglare.net": {
+ "name": "Adglare",
+ "categoryId": 4,
+ "url": "https://www.adglare.com/"
+ },
+ "hivedx.com": {
+ "name": "hiveDX",
+ "categoryId": 4,
+ "url": "https://www.hivedx.com/"
+ },
+ "1und1": {
+ "name": "1&1 Internet",
+ "categoryId": 8,
+ "url": null
+ },
+ "audiencesquare.com": {
+ "name": "Audience Square",
+ "categoryId": 4,
+ "url": "http://www.audiencesquare.fr/"
+ },
+ "fidelity_media": {
+ "name": "Fidelity Media",
+ "categoryId": 4,
+ "url": "http://fidelity-media.com/"
+ },
+ "adsnative": {
+ "name": "adsnative",
+ "categoryId": 4,
+ "url": "http://www.adsnative.com/"
+ },
+ "sophus3": {
+ "name": "Sophus3",
+ "categoryId": 4,
+ "url": "http://www.sophus3.com/ "
+ },
+ "shareaholic": {
+ "name": "Shareaholic",
+ "categoryId": 4,
+ "url": "hhttps://www.shareaholic.com/"
+ },
+ "wistia": {
+ "name": "Wistia",
+ "categoryId": 6,
+ "url": null
+ },
+ "sundaysky": {
+ "name": "SundaySky",
+ "categoryId": 4,
+ "url": "http://www.sundaysky.com/"
+ },
+ "pardot": {
+ "name": "Pardot",
+ "categoryId": 6,
+ "url": "http://www.pardot.com/"
+ },
+ "qualaroo": {
+ "name": "Qualaroo",
+ "categoryId": 6,
+ "url": null
+ },
+ "logsss.com": {
+ "name": "logsss.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "github": {
+ "name": "GitHub",
+ "categoryId": 2,
+ "url": null
+ },
+ "post_affiliate_pro": {
+ "name": "Post Affiliate Pro",
+ "categoryId": 4,
+ "url": "http://www.qualityunit.com/"
+ },
+ "guj.de": {
+ "name": "Gruner + Jahr",
+ "categoryId": 4,
+ "url": "https://www.guj.de/"
+ },
+ "deepintent.com": {
+ "name": "DeepIntent",
+ "categoryId": 4,
+ "url": "https://www.deepintent.com/"
+ },
+ "acuity_ads": {
+ "name": "Acuity Ads",
+ "categoryId": 4,
+ "url": "http://www.acuityads.com/"
+ },
+ "bidswitch": {
+ "name": "Bidswitch",
+ "categoryId": 4,
+ "url": null
+ },
+ "33across": {
+ "name": "33Across",
+ "categoryId": 4,
+ "url": "http://33across.com/"
+ },
+ "dantrack.net": {
+ "name": "DANtrack",
+ "categoryId": 4,
+ "url": "http://media.dantrack.net/privacy/"
+ },
+ "first_impression": {
+ "name": "First Impression",
+ "categoryId": 4,
+ "url": null
+ },
+ "pubnub.com": {
+ "name": "PubNub",
+ "categoryId": 8,
+ "url": "https://www.pubnub.com/"
+ },
+ "vindico_group": {
+ "name": "Vindico Group",
+ "categoryId": 4,
+ "url": "http://www.vindicogroup.com/"
+ },
+ "dynamic_1001_gmbh": {
+ "name": "Dynamic 1001 GmbH",
+ "categoryId": 8,
+ "url": null
+ },
+ "intelligent_reach": {
+ "name": "Intelligent Reach",
+ "categoryId": 4,
+ "url": "http://www.intelligentreach.com/"
+ },
+ "google_appspot": {
+ "name": "Google Appspot",
+ "categoryId": 10,
+ "url": null
+ },
+ "msn": {
+ "name": "Microsoft Network",
+ "categoryId": 8,
+ "url": null
+ },
+ "sourcepoint": {
+ "name": "Sourcepoint",
+ "categoryId": 4,
+ "url": "https://www.sourcepoint.com/"
+ },
+ "cloudflare": {
+ "name": "CloudFlare",
+ "categoryId": 9,
+ "url": "https://www.cloudflare.com/"
+ },
+ "spotify": {
+ "name": "Spotify",
+ "categoryId": 0,
+ "url": "https://www.spotify.com/"
+ },
+ "1plusx": {
+ "name": "1plusX",
+ "categoryId": 6,
+ "url": "https://www.1plusx.com/"
+ },
+ "maxcdn": {
+ "name": "MaxCDN",
+ "categoryId": 9,
+ "url": "https://www.maxcdn.com/"
+ },
+ "trafficfactory": {
+ "name": "Traffic Factory",
+ "categoryId": 4,
+ "url": "https://www.trafficfactory.biz/"
+ },
+ "adsbookie": {
+ "name": "AdsBookie",
+ "categoryId": 4,
+ "url": "http://adsbookie.com/"
+ },
+ "zeusclicks": {
+ "name": "ZeusClicks",
+ "categoryId": 4,
+ "url": "http://zeusclicks.com/"
+ },
+ "the_weather_company": {
+ "name": "The Weather Company",
+ "categoryId": 4,
+ "url": "http://www.theweathercompany.com/"
+ },
+ "youporn": {
+ "name": "YouPorn",
+ "categoryId": 3,
+ "url": null
+ },
+ "adpilot": {
+ "name": "AdPilot",
+ "categoryId": 4,
+ "url": "http://www.adpilotgroup.com/"
+ },
+ "geniee": {
+ "name": "GENIEE",
+ "categoryId": 4,
+ "url": "http://geniee.co.jp/"
+ },
+ "bing_maps": {
+ "name": "Bing Maps",
+ "categoryId": 2,
+ "url": null
+ },
+ "wetter_com": {
+ "name": "Wetter.com",
+ "categoryId": 8,
+ "url": "http://www.wetter.com/"
+ },
+ "cdn77": {
+ "name": "CDN77",
+ "categoryId": 9,
+ "url": "https://www.cdn77.com/"
+ },
+ "mindspark": {
+ "name": "Mindspark",
+ "categoryId": 6,
+ "url": "http://www.mindspark.com/"
+ },
+ "bonial": {
+ "name": "Bonial Connect",
+ "categoryId": 2,
+ "url": "http://www.bonial.com/"
+ },
+ "atg_group": {
+ "name": "ATG Ad Tech Group",
+ "categoryId": 4,
+ "url": "https://ad-tech-group.com/"
+ },
+ "yieldr": {
+ "name": "Yieldr",
+ "categoryId": 6,
+ "url": "https://www.yieldr.com/"
+ },
+ "zypmedia": {
+ "name": "ZypMedia",
+ "categoryId": 4,
+ "url": "http://www.zypmedia.com/"
+ },
+ "acxiom": {
+ "name": "Acxiom",
+ "categoryId": 6,
+ "url": null
+ },
+ "twenga": {
+ "name": "Twenga Solutions",
+ "categoryId": 4,
+ "url": "https://www.twenga-solutions.com/"
+ },
+ "fraudlogix": {
+ "name": "FraudLogix",
+ "categoryId": 4,
+ "url": "https://www.fraudlogix.com/"
+ },
+ "openload": {
+ "name": "Openload",
+ "categoryId": 9,
+ "url": "https://openload.co/"
+ },
+ "merkle_rkg": {
+ "name": "Merkle RKG",
+ "categoryId": 6,
+ "url": "https://www.merkleinc.com/what-we-do/digital-agency-services/rkg-now-fully-integrated-merkle"
+ },
+ "bidtellect": {
+ "name": "Bidtellect",
+ "categoryId": 4,
+ "url": "https://www.bidtellect.com/"
+ },
+ "optomaton": {
+ "name": "Optomaton",
+ "categoryId": 4,
+ "url": "http://www.optomaton.com/"
+ },
+ "amazon_payments": {
+ "name": "Amazon Payments",
+ "categoryId": 2,
+ "url": "https://pay.amazon.com/"
+ },
+ "bootstrap": {
+ "name": "Bootstrap CDN",
+ "categoryId": 9,
+ "url": "http://getbootstrap.com/"
+ },
+ "jquery": {
+ "name": "jQuery",
+ "categoryId": 9,
+ "url": "https://jquery.org/"
+ },
+ "createjs": {
+ "name": "CreateJS",
+ "categoryId": 9,
+ "url": "https://createjs.com/"
+ },
+ "jsdelivr": {
+ "name": "jsDelivr",
+ "categoryId": 9,
+ "url": "https://www.jsdelivr.com/"
+ },
+ "batch_media": {
+ "name": "Batch Media",
+ "categoryId": 4,
+ "url": "http://batch.ba/"
+ },
+ "monotype_gmbh": {
+ "name": "Monotype GmbH",
+ "categoryId": 9,
+ "url": "http://www.monotype.com/"
+ },
+ "monotype_imaging": {
+ "name": "Monotype Imaging Inc.",
+ "categoryId": 9,
+ "url": "https://www.fonts.com/"
+ },
+ "ablida": {
+ "name": "ablida",
+ "categoryId": 4,
+ "url": "https://www.ablida.de/"
+ },
+ "advanced_hosters": {
+ "name": "Advanced Hosters",
+ "categoryId": 9,
+ "url": "https://advancedhosters.com/"
+ },
+ "sap_xm": {
+ "name": "SAP Exchange Media",
+ "categoryId": 4,
+ "url": "http://sapexchange.media/"
+ },
+ "icf_technology": {
+ "name": "ICF Technology",
+ "categoryId": 2,
+ "url": "http://www.icftechnology.com/"
+ },
+ "addefend": {
+ "name": "AdDefend",
+ "categoryId": 4,
+ "url": "https://www.addefend.com/"
+ },
+ "permutive": {
+ "name": "Permutive",
+ "categoryId": 4,
+ "url": "http://permutive.com/"
+ },
+ "burda_digital_systems": {
+ "name": "Burda Digital Systems",
+ "categoryId": 4,
+ "url": null
+ },
+ "bild": {
+ "name": "Bild.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "bahn_de": {
+ "name": "Deutsche Bahn",
+ "categoryId": 8,
+ "url": null
+ },
+ "aspnetcdn": {
+ "name": "Microsoft Ajax CDN",
+ "categoryId": 9,
+ "url": null
+ },
+ "heimspiel": {
+ "name": "HEIM:SPIEL Medien GmbH",
+ "categoryId": 8,
+ "url": "http://www.heimspiel.de"
+ },
+ "gujems": {
+ "name": "G+J e|MS",
+ "categoryId": 4,
+ "url": "http://www.gujmedia.de/"
+ },
+ "tisoomi": {
+ "name": "Tisoomi",
+ "categoryId": 4,
+ "url": "https://tisoomi-services.com/"
+ },
+ "circit": {
+ "name": "circIT",
+ "categoryId": 6,
+ "url": "http://www.circit.de/"
+ },
+ "shopping_com": {
+ "name": "Shopping.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "wayfair_com": {
+ "name": "Wayfair",
+ "categoryId": 8,
+ "url": "https://www.wayfair.com/"
+ },
+ "instagram_com": {
+ "name": "Instagram",
+ "categoryId": 8,
+ "url": null
+ },
+ "immobilienscout24_de": {
+ "name": "immobilienscout24.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "zalando_de": {
+ "name": "zalando.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "gmx_net": {
+ "name": "gmx.net",
+ "categoryId": 8,
+ "url": null
+ },
+ "xvideos_com": {
+ "name": "xvideos.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "blogspot_com": {
+ "name": "blogspot.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "eluxer_net": {
+ "name": "eluxer.net",
+ "categoryId": 12,
+ "url": null
+ },
+ "worldnaturenet_xyz": {
+ "name": "worldnaturenet.xyz",
+ "categoryId": 12,
+ "url": null
+ },
+ "tdsrmbl_net": {
+ "name": "tdsrmbl.net",
+ "categoryId": 8,
+ "url": null
+ },
+ "pizzaandads_com": {
+ "name": "pizzaandads.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "nerfherdersolo_com": {
+ "name": "nerfherdersolo.com",
+ "categoryId": 8,
+ "url": null
+ },
+ "sentry": {
+ "name": "Sentry",
+ "categoryId": 6,
+ "url": "https://sentry.io/"
+ },
+ "performio": {
+ "name": "Performio.cz",
+ "categoryId": 4,
+ "url": "http://performio.cz/"
+ },
+ "channel_pilot_solutions": {
+ "name": "ChannelPilot Solutions",
+ "categoryId": 6,
+ "url": "https://www.channelpilot.de/"
+ },
+ "sentifi.com": {
+ "name": "Sentifi",
+ "categoryId": 6,
+ "url": "https://sentifi.com/"
+ },
+ "qubit": {
+ "name": "Qubit Opentag",
+ "categoryId": 6,
+ "url": "http://www.qubit.com/"
+ },
+ "traffective": {
+ "name": "Traffective",
+ "categoryId": 4,
+ "url": "https://traffective.com/"
+ },
+ "rawgit": {
+ "name": "RawGit",
+ "categoryId": 9,
+ "url": "http://rawgit.com/"
+ },
+ "opinary": {
+ "name": "Opinary",
+ "categoryId": 2,
+ "url": "http://opinary.com/"
+ },
+ "cloudinary": {
+ "name": "Cloudinary",
+ "categoryId": 9,
+ "url": "https://cloudinary.com/"
+ },
+ "king_com": {
+ "name": "King.com",
+ "categoryId": 8,
+ "url": "https://king.com/"
+ },
+ "distil_tag": {
+ "name": "Distil Bot Discovery",
+ "categoryId": 6,
+ "url": "https://www.distilnetworks.com/block-bot-detection/"
+ },
+ "netletix": {
+ "name": "Netletix",
+ "categoryId": 4,
+ "url": "http://www.netletix.com//"
+ },
+ "q_division": {
+ "name": "Q-Division",
+ "categoryId": 4,
+ "url": "https://q-division.de/"
+ },
+ "hyvyd": {
+ "name": "Hyvyd GmbH",
+ "categoryId": 8,
+ "url": null
+ },
+ "oms": {
+ "name": "OMS",
+ "categoryId": 4,
+ "url": "http://oms.eu/"
+ },
+ "cdnnetwok_xyz": {
+ "name": "cdnnetwok.xyz",
+ "categoryId": 12,
+ "url": null
+ },
+ "foxydeal_com": {
+ "name": "foxydeal.com",
+ "categoryId": 12,
+ "url": "https://www.foxydeal.de"
+ },
+ "webclicks24_com": {
+ "name": "webclicks24.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "easylist_club": {
+ "name": "easylist.club",
+ "categoryId": 11,
+ "url": null
+ },
+ "propvideo_net": {
+ "name": "propvideo.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "generaltracking_de": {
+ "name": "generaltracking.de",
+ "categoryId": 11,
+ "url": null
+ },
+ "atsfi_de": {
+ "name": "atsfi.de",
+ "categoryId": 11,
+ "url": null
+ },
+ "continum_net": {
+ "name": "continum.net",
+ "categoryId": 10,
+ "url": "http://continum.net/"
+ },
+ "freenet_de": {
+ "name": "freenet.de",
+ "categoryId": 8,
+ "url": "http://freenet.de/"
+ },
+ "fontawesome_com": {
+ "name": "fontawesome.com",
+ "categoryId": 9,
+ "url": "http://fontawesome.com/"
+ },
+ "idealo_com": {
+ "name": "idealo.com",
+ "categoryId": 4,
+ "url": "http://idealo.com/"
+ },
+ "4finance_com": {
+ "name": "4finance.com",
+ "categoryId": 2,
+ "url": "http://4finance.com/"
+ },
+ "ausgezeichnet_org": {
+ "name": "ausgezeichnet.org",
+ "categoryId": 2,
+ "url": "http://ausgezeichnet.org/"
+ },
+ "freegeoip_net": {
+ "name": "freegeoip.net",
+ "categoryId": 6,
+ "url": "http://freegeoip.net/"
+ },
+ "adac_de": {
+ "name": "adac.de",
+ "categoryId": 8,
+ "url": "http://adac.de/"
+ },
+ "stailamedia_com": {
+ "name": "stailamedia.com",
+ "categoryId": 4,
+ "url": "http://stailamedia.com/"
+ },
+ "crimsonhexagon_com": {
+ "name": "Crimson Hexagon",
+ "categoryId": 6,
+ "url": "http://crimsonhexagon.com/"
+ },
+ "ehi-siegel_de": {
+ "name": "ehi-siegel.de",
+ "categoryId": 2,
+ "url": "http://ehi-siegel.de/"
+ },
+ "s24_com": {
+ "name": "Shopping24 internet group",
+ "categoryId": 4,
+ "url": "https://www.s24.com/"
+ },
+ "redblue_de": {
+ "name": "redblue",
+ "categoryId": 6,
+ "url": "https://www.redblue.de/"
+ },
+ "tchibo_de": {
+ "name": "tchibo.de",
+ "categoryId": 8,
+ "url": "http://tchibo.de/"
+ },
+ "chefkoch_de": {
+ "name": "chefkoch.de",
+ "categoryId": 8,
+ "url": "http://chefkoch.de/"
+ },
+ "iotec": {
+ "name": "iotec",
+ "categoryId": 4,
+ "url": "https://www.iotecglobal.com/"
+ },
+ "a3cloud_net": {
+ "name": "a3cloud.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "maxonclick_com": {
+ "name": "maxonclick.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "toponclick_com": {
+ "name": "toponclick.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "westlotto_com": {
+ "name": "westlotto.com",
+ "categoryId": 8,
+ "url": "http://westlotto.com/"
+ },
+ "admedo_com": {
+ "name": "Admedo",
+ "categoryId": 4,
+ "url": "http://admedo.com/"
+ },
+ "adbrain": {
+ "name": "AdBrain",
+ "categoryId": 4,
+ "url": "https://www.adbrain.com/"
+ },
+ "twitter_for_business": {
+ "name": "Twitter for Business",
+ "categoryId": 4,
+ "url": "https://business.twitter.com/"
+ },
+ "brightonclick.com": {
+ "name": "brightonclick.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "voluum": {
+ "name": "Voluum",
+ "categoryId": 4,
+ "url": "https://voluum.com/"
+ },
+ "xxxlshop.de": {
+ "name": "xxxlshop.de",
+ "categoryId": 8,
+ "url": "https://www.xxxlshop.de/"
+ },
+ "fyber": {
+ "name": "Fyber",
+ "categoryId": 4,
+ "url": "https://www.fyber.com/"
+ },
+ "eshopcomp.com": {
+ "name": "eshopcomp.com",
+ "categoryId": 12,
+ "url": null
+ },
+ "vodafone.de": {
+ "name": "vodafone.de",
+ "categoryId": 8,
+ "url": null
+ },
+ "davebestdeals.com": {
+ "name": "davebestdeals.com",
+ "categoryId": 12,
+ "url": null
+ },
+ "stathat": {
+ "name": "StatHat",
+ "categoryId": 6,
+ "url": "http://www.stathat.com/"
+ },
+ "ubersetzung-app.com": {
+ "name": "ubersetzung-app.com",
+ "categoryId": 12,
+ "url": "https://www.ubersetzung-app.com/"
+ },
+ "supership": {
+ "name": "Supership",
+ "categoryId": 4,
+ "url": "https://supership.jp/en/"
+ },
+ "wikia_cdn": {
+ "name": "Wikia CDN",
+ "categoryId": 9,
+ "url": null
+ },
+ "insightexpress": {
+ "name": "InsightExpress",
+ "categoryId": 6,
+ "url": "https://www.millwardbrowndigital.com/"
+ },
+ "platformone": {
+ "name": "Platform One",
+ "categoryId": 4,
+ "url": "https://www.platform-one.co.jp/"
+ },
+ "adrom": {
+ "name": "adRom",
+ "categoryId": 4,
+ "url": "http://www.adrom.net/"
+ },
+ "purch": {
+ "name": "Purch",
+ "categoryId": 4,
+ "url": "http://www.purch.com/"
+ },
+ "tumblr_analytics": {
+ "name": "Tumblr Analytics",
+ "categoryId": 6,
+ "url": null
+ },
+ "scoota": {
+ "name": "Scoota",
+ "categoryId": 4,
+ "url": "http://scoota.com/"
+ },
+ "bitly": {
+ "name": "Bitly",
+ "categoryId": 6,
+ "url": "https://bitly.com/"
+ },
+ "programattik": {
+ "name": "Programattik",
+ "categoryId": 4,
+ "url": "http://www.programattik.com/"
+ },
+ "cardlytics": {
+ "name": "Cardlytics",
+ "categoryId": 6,
+ "url": "http://www.cardlytics.com/"
+ },
+ "digilant": {
+ "name": "Digilant",
+ "categoryId": 4,
+ "url": "https://www.digilant.com/"
+ },
+ "site24x7": {
+ "name": "Site24x7",
+ "categoryId": 6,
+ "url": "https://www.site24x7.com/"
+ },
+ "shortnews": {
+ "name": "ShortNews.de",
+ "categoryId": 8,
+ "url": "http://www.shortnews.de/#"
+ },
+ "mrpdata": {
+ "name": "MRP",
+ "categoryId": 6,
+ "url": "http://mrpdata.com/Account/Login?ReturnUrl=%2F"
+ },
+ "sortable": {
+ "name": "Sortable",
+ "categoryId": 4,
+ "url": "https://sortable.com/"
+ },
+ "pnamic.com": {
+ "name": "pnamic.com",
+ "categoryId": 12,
+ "url": null
+ },
+ "bumlam.com": {
+ "name": "bumlam.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "fluct": {
+ "name": "Fluct",
+ "categoryId": 4,
+ "url": "https://corp.fluct.jp/"
+ },
+ "interyield": {
+ "name": "Interyield",
+ "categoryId": 4,
+ "url": "http://www.advertise.com/publisher-solutions/"
+ },
+ "adguard": {
+ "name": "Adguard",
+ "categoryId": 12,
+ "url": "https://adguard.com/"
+ },
+ "truoptik": {
+ "name": "Tru Optik",
+ "categoryId": 6,
+ "url": "http://truoptik.com/"
+ },
+ "pmddby.com": {
+ "name": "pmddby.com",
+ "categoryId": 12,
+ "url": null
+ },
+ "digitrust": {
+ "name": "DigiTrust",
+ "categoryId": 4,
+ "url": "http://www.digitru.st/"
+ },
+ "adtheorent": {
+ "name": "Adtheorent",
+ "categoryId": 4,
+ "url": "http://adtheorent.com/"
+ },
+ "narrative_io": {
+ "name": "Narrative I/O",
+ "categoryId": 6,
+ "url": "http://www.narrative.io/"
+ },
+ "dcbap.com": {
+ "name": "dcbap.com",
+ "categoryId": 12,
+ "url": null
+ },
+ "brealtime": {
+ "name": "bRealTime",
+ "categoryId": 4,
+ "url": "http://www.brealtime.com/"
+ },
+ "donationtools": {
+ "name": "iRobinHood",
+ "categoryId": 12,
+ "url": "http://www.irobinhood.org"
+ },
+ "hooklogic": {
+ "name": "HookLogic",
+ "categoryId": 4,
+ "url": "http://hooklogic.com/"
+ },
+ "ividence": {
+ "name": "Ividence",
+ "categoryId": 4,
+ "url": "https://www.ividence.com/home/"
+ },
+ "comprigo": {
+ "name": "comprigo",
+ "categoryId": 12,
+ "url": "https://www.comprigo.com/"
+ },
+ "marvellous_machine": {
+ "name": "Marvellous Machine",
+ "categoryId": 4,
+ "url": "https://www.marvellousmachine.net/"
+ },
+ "afgr2.com": {
+ "name": "afgr2.com",
+ "categoryId": 3,
+ "url": null
+ },
+ "orc_international": {
+ "name": "ORC International",
+ "categoryId": 4,
+ "url": "https://orcinternational.com/"
+ },
+ "active_agent": {
+ "name": "Active Agent",
+ "categoryId": 4,
+ "url": "http://www.active-agent.com/"
+ },
+ "yieldmo": {
+ "name": "Yieldmo",
+ "categoryId": 4,
+ "url": "https://www.yieldmo.com/"
+ },
+ "google_photos": {
+ "name": "Google Photos",
+ "categoryId": 9,
+ "url": null
+ },
+ "vinted": {
+ "name": "Vinted",
+ "categoryId": 8,
+ "url": "https://www.vinted.com/"
+ },
+ "typeform": {
+ "name": "Typeform",
+ "categoryId": 2,
+ "url": "https://www.typeform.com/"
+ },
+ "amazon_cloudfront": {
+ "name": "Amazon CloudFront",
+ "categoryId": 10,
+ "url": null
+ },
+ "adthink": {
+ "name": "Adthink",
+ "categoryId": 4,
+ "url": "https://adthink.com/"
+ },
+ "admachine": {
+ "name": "AdMachine",
+ "categoryId": 4,
+ "url": "https://admachine.co/"
+ },
+ "brillen.de": {
+ "name": "brillen.de",
+ "categoryId": 8,
+ "url": "https://www.brillen.de/"
+ },
+ "docler": {
+ "name": "Docler",
+ "categoryId": 0,
+ "url": "https://www.doclerholding.com/en/about/companies/33/"
+ },
+ "viralgains": {
+ "name": "ViralGains",
+ "categoryId": 4,
+ "url": "https://www.viralgains.com/"
+ },
+ "visualstudio.com": {
+ "name": "Visualstudio.com",
+ "categoryId": 8,
+ "url": "https://www.visualstudio.com/"
+ },
+ "capitaldata": {
+ "name": "CapitalData",
+ "categoryId": 6,
+ "url": "https://www.capitaldata.fr/"
+ },
+ "akamoihd.net": {
+ "name": "akamoihd.net",
+ "categoryId": 12,
+ "url": null
+ },
+ "magnuum.com": {
+ "name": "magnuum.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "adswizz": {
+ "name": "AdsWizz",
+ "categoryId": 4,
+ "url": "http://www.adswizz.com/"
+ },
+ "venturead.com": {
+ "name": "venturead.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "adstir": {
+ "name": "adstir",
+ "categoryId": 4,
+ "url": "https://en.ad-stir.com/"
+ },
+ "optinmonster": {
+ "name": "OptinMonster",
+ "categoryId": 6,
+ "url": "https://optinmonster.com/"
+ },
+ "storygize": {
+ "name": "Storygize",
+ "categoryId": 4,
+ "url": "http://www.storygize.com/"
+ },
+ "spoutable": {
+ "name": "Spoutable",
+ "categoryId": 4,
+ "url": "http://spoutable.com/"
+ },
+ "petametrics": {
+ "name": "LiftIgniter",
+ "categoryId": 2,
+ "url": "https://www.liftigniter.com/"
+ },
+ "lucky_orange": {
+ "name": "Lucky Orange",
+ "categoryId": 6,
+ "url": "http://www.luckyorange.com/"
+ },
+ "advertserve": {
+ "name": "AdvertServe",
+ "categoryId": 4,
+ "url": "https://secure.advertserve.com/"
+ },
+ "nano_interactive": {
+ "name": "Nano Interactive",
+ "categoryId": 4,
+ "url": "http://www.nanointeractive.com/home/de"
+ },
+ "94j7afz2nr.xyz": {
+ "name": "94j7afz2nr.xyz",
+ "categoryId": 12,
+ "url": null
+ },
+ "wordpress_ads": {
+ "name": "Wordpress Ads",
+ "categoryId": 4,
+ "url": "https://wordpress.com/"
+ },
+ "tubecorporate": {
+ "name": "Tube Corporate",
+ "categoryId": 3,
+ "url": "https://tubecorporate.com/"
+ },
+ "ownpage": {
+ "name": "Ownpage",
+ "categoryId": 2,
+ "url": "http://www.ownpage.fr/index.en.html"
+ },
+ "dianomi": {
+ "name": "Diamoni",
+ "categoryId": 4,
+ "url": "http://www.dianomi.com/cms/"
+ },
+ "bitrix": {
+ "name": "Bitrix24",
+ "categoryId": 4,
+ "url": "https://www.bitrix24.com/"
+ },
+ "wirecard": {
+ "name": "Wirecard",
+ "categoryId": 2,
+ "url": "https://www.wirecard.com/"
+ },
+ "segmento": {
+ "name": "Segmento",
+ "categoryId": 4,
+ "url": "https://segmento.ru/en"
+ },
+ "datonics": {
+ "name": "Datonics",
+ "categoryId": 4,
+ "url": "http://datonics.com/"
+ },
+ "jivochat": {
+ "name": "JivoChat",
+ "categoryId": 2,
+ "url": "https://www.jivochat.com/"
+ },
+ "airbnb": {
+ "name": "Airbnb",
+ "categoryId": 6,
+ "url": "https://affiliate.withairbnb.com/"
+ },
+ "widespace": {
+ "name": "Widespace",
+ "categoryId": 4,
+ "url": "https://www.widespace.com/"
+ },
+ "platform360": {
+ "name": "Platform360",
+ "categoryId": 4,
+ "url": "http://www.platform360.co/#home"
+ },
+ "kaeufersiegel.de": {
+ "name": "Käufersiegel",
+ "categoryId": 2,
+ "url": "https://www.kaeufersiegel.de/"
+ },
+ "mapbox": {
+ "name": "Mapbox",
+ "categoryId": 2,
+ "url": "https://www.mapbox.com/"
+ },
+ "startapp": {
+ "name": "StartApp",
+ "categoryId": 4,
+ "url": "https://www.startapp.com/"
+ },
+ "ipify": {
+ "name": "ipify",
+ "categoryId": 8,
+ "url": "https://www.ipify.org/"
+ },
+ "keywee": {
+ "name": "Keywee",
+ "categoryId": 6,
+ "url": "https://keywee.co/"
+ },
+ "rtbsuperhub.com": {
+ "name": "rtbsuperhub.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "bebi": {
+ "name": "Bebi Media",
+ "categoryId": 4,
+ "url": "https://www.bebi.com/"
+ },
+ "smarter_travel": {
+ "name": "Smarter Travel Media",
+ "categoryId": 4,
+ "url": "https://www.smartertravel.com/"
+ },
+ "giphy.com": {
+ "name": "Giphy",
+ "categoryId": 7,
+ "url": "https://giphy.com/"
+ },
+ "jetpack": {
+ "name": "Jetpack",
+ "categoryId": 6,
+ "url": "https://jetpack.com/"
+ },
+ "acpm.fr": {
+ "name": "ACPM",
+ "categoryId": 6,
+ "url": "http://www.acpm.fr/"
+ },
+ "olx-st.com": {
+ "name": "OLX",
+ "categoryId": 8,
+ "url": "http://www.olx.com/"
+ },
+ "enreach": {
+ "name": "enreach",
+ "categoryId": 6,
+ "url": "https://enreach.me/"
+ },
+ "sendpulse.com": {
+ "name": "SendPulse",
+ "categoryId": 3,
+ "url": "https://sendpulse.com/"
+ },
+ "dotmetrics.net": {
+ "name": "Dotmetrics",
+ "categoryId": 6,
+ "url": "https://dotmetrics.net/"
+ },
+ "bigmir.net": {
+ "name": "bigmir.net",
+ "categoryId": 8,
+ "url": "https://www.bigmir.net/"
+ },
+ "onet.pl": {
+ "name": "onet",
+ "categoryId": 8,
+ "url": "https://www.onet.pl/"
+ },
+ "yandex_advisor": {
+ "name": "Yandex.Advisor",
+ "categoryId": 12,
+ "url": "https://sovetnik.yandex.ru/"
+ },
+ "dropbox.com": {
+ "name": "Dropbox",
+ "categoryId": 3,
+ "url": "https://www.dropbox.com/"
+ },
+ "uptolike.com": {
+ "name": "Uptolike",
+ "categoryId": 7,
+ "url": "https://www.uptolike.com/"
+ },
+ "digioh": {
+ "name": "Digioh",
+ "categoryId": 4,
+ "url": "https://digioh.com/"
+ },
+ "caltat.com": {
+ "name": "Caltat",
+ "categoryId": 2,
+ "url": "https://caltat.com/"
+ },
+ "1dmp.io": {
+ "name": "1DMP",
+ "categoryId": 4,
+ "url": "https://1dmp.io/"
+ },
+ "datamind.ru": {
+ "name": "DataMind",
+ "categoryId": 4,
+ "url": "http://datamind.ru/"
+ },
+ "embed.ly": {
+ "name": "Embedly",
+ "categoryId": 6,
+ "url": "http://embed.ly/"
+ },
+ "hybrid.ai": {
+ "name": "Hybrid.ai",
+ "categoryId": 4,
+ "url": "https://hybrid.ai/"
+ },
+ "dynatrace.com": {
+ "name": "Dynatrace",
+ "categoryId": 6,
+ "url": "https://www.dynatrace.com/"
+ },
+ "pluso.ru": {
+ "name": "Pluso",
+ "categoryId": 7,
+ "url": "https://share.pluso.ru/"
+ },
+ "adsniper.ru": {
+ "name": "AdSniper",
+ "categoryId": 4,
+ "url": "http://ad-sniper.com/"
+ },
+ "tovarro.com": {
+ "name": "Tovarro",
+ "categoryId": 4,
+ "url": "https://www.tovarro.com/"
+ },
+ "crosspixel": {
+ "name": "Cross Pixel",
+ "categoryId": 4,
+ "url": "http://crosspixel.net/"
+ },
+ "ucoz.net": {
+ "name": "uCoz",
+ "categoryId": 6,
+ "url": "http://www.ucoz.net/"
+ },
+ "audtd.com": {
+ "name": "Auditorius",
+ "categoryId": 4,
+ "url": "http://www.auditorius.ru/"
+ },
+ "gfycat.com": {
+ "name": "gfycat",
+ "categoryId": 7,
+ "url": "https://gfycat.com/"
+ },
+ "squarespace.com": {
+ "name": "Squarespace",
+ "categoryId": 6,
+ "url": "https://www.squarespace.com/"
+ },
+ "acestream.net": {
+ "name": "ActStream",
+ "categoryId": 12,
+ "url": "http://www.acestream.org/"
+ },
+ "yapfiles.ru": {
+ "name": "yapfiles.ru",
+ "categoryId": 8,
+ "url": "https://www.yapfiles.ru/"
+ },
+ "beachfront": {
+ "name": "Beachfront Media",
+ "categoryId": 4,
+ "url": "http://beachfrontmedia.com/"
+ },
+ "dailymotion_advertising": {
+ "name": "Dailymotion Advertising",
+ "categoryId": 4,
+ "url": "http://advertising.dailymotion.com/"
+ },
+ "kissmetrics.com": {
+ "name": "Kissmetrics",
+ "categoryId": 6,
+ "url": "https://www.kissmetrics.com/"
+ },
+ "perfdrive.com": {
+ "name": "perfdrive.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "pendo.io": {
+ "name": "pendo",
+ "categoryId": 6,
+ "url": "https://www.pendo.io/"
+ },
+ "otm-r.com": {
+ "name": "OTM",
+ "categoryId": 4,
+ "url": "http://otm-r.com/"
+ },
+ "beeline.ru": {
+ "name": "Beeline",
+ "categoryId": 4,
+ "url": "https://moskva.beeline.ru/"
+ },
+ "wp.pl": {
+ "name": "wp.pl",
+ "categoryId": 8,
+ "url": "https://www.wp.pl/"
+ },
+ "24smi": {
+ "name": "24СМИ",
+ "categoryId": 8,
+ "url": "https://24smi.org/"
+ },
+ "linksynergy.com": {
+ "name": "Rakuten LinkShare",
+ "categoryId": 4,
+ "url": "https://rakutenmarketing.com/affiliate"
+ },
+ "blueconic.net": {
+ "name": "BlueConic",
+ "categoryId": 6,
+ "url": "https://www.blueconic.com/"
+ },
+ "livetex.ru": {
+ "name": "LiveTex",
+ "categoryId": 3,
+ "url": "https://livetex.ru/"
+ },
+ "seedtag.com": {
+ "name": "Seedtag",
+ "categoryId": 4,
+ "url": "https://www.seedtag.com/en/"
+ },
+ "hotlog.ru": {
+ "name": "HotLog",
+ "categoryId": 6,
+ "url": "https://hotlog.ru/"
+ },
+ "mathjax.org": {
+ "name": "MathJax",
+ "categoryId": 9,
+ "url": "https://www.mathjax.org/"
+ },
+ "quora.com": {
+ "name": "Quora",
+ "categoryId": 7,
+ "url": "https://quora.com/"
+ },
+ "readspeaker.com": {
+ "name": "ReadSpeaker",
+ "categoryId": 3,
+ "url": "https://www.readspeaker.com/"
+ },
+ "sanoma.fi": {
+ "name": "Sanoma",
+ "categoryId": 4,
+ "url": "https://sanoma.com/"
+ },
+ "ad6media": {
+ "name": "ad6media",
+ "categoryId": 4,
+ "url": "https://www.ad6media.fr/"
+ },
+ "iubenda.com": {
+ "name": "iubenda",
+ "categoryId": 5,
+ "url": "https://www.iubenda.com/"
+ },
+ "cackle.me": {
+ "name": "Cackle",
+ "categoryId": 3,
+ "url": "https://cackle.me/"
+ },
+ "giraff.io": {
+ "name": "Giraff.io",
+ "categoryId": 4,
+ "url": "https://www.giraff.io/"
+ },
+ "feedburner.com": {
+ "name": "FeedBurner",
+ "categoryId": 4,
+ "url": "https://feedburner.com"
+ },
+ "persgroep": {
+ "name": "De Persgroep",
+ "categoryId": 4,
+ "url": "https://www.persgroep.be/"
+ },
+ "list.ru": {
+ "name": "Rating@Mail.Ru",
+ "categoryId": 7,
+ "url": "http://list.ru/"
+ },
+ "retailrocket.net": {
+ "name": "Retail Rocket",
+ "categoryId": 3,
+ "url": "https://retailrocket.net/"
+ },
+ "movable_ink": {
+ "name": "Movable Ink",
+ "categoryId": 3,
+ "url": "https://movableink.com/"
+ },
+ "smyte": {
+ "name": "Smyte",
+ "categoryId": 6,
+ "url": "https://www.smyte.com/"
+ },
+ "eperflex": {
+ "name": "Eperflex",
+ "categoryId": 4,
+ "url": "https://eperflex.com/"
+ },
+ "ccm_benchmark": {
+ "name": "CCM Benchmark",
+ "categoryId": 4,
+ "url": "http://www.ccmbenchmark.com/"
+ },
+ "kataweb.it": {
+ "name": "KataWeb",
+ "categoryId": 4,
+ "url": "http://www.kataweb.it/"
+ },
+ "bouncex": {
+ "name": "BounceX",
+ "categoryId": 4,
+ "url": "https://www.bouncex.com/"
+ },
+ "userzoom.com": {
+ "name": "UserZoom",
+ "categoryId": 3,
+ "url": "https://www.userzoom.com/"
+ },
+ "flocktory.com": {
+ "name": "Flocktory",
+ "categoryId": 4,
+ "url": "https://www.flocktory.com/"
+ },
+ "messenger.com": {
+ "name": "Facebook Messenger",
+ "categoryId": 7,
+ "url": "https://messenger.com"
+ },
+ "ooyala.com": {
+ "name": "Ooyala",
+ "categoryId": 0,
+ "url": "https://www.ooyala.com/"
+ },
+ "naver.com": {
+ "name": "Naver",
+ "categoryId": 8,
+ "url": "https://www.naver.com/"
+ },
+ "mailerlite.com": {
+ "name": "Mailerlite",
+ "categoryId": 10,
+ "url": "https://www.mailerlite.com/"
+ },
+ "mediator.media": {
+ "name": "Mediator",
+ "categoryId": 6,
+ "url": "https://mediator.media/"
+ },
+ "metaffiliation.com": {
+ "name": "Netaffiliation",
+ "categoryId": 4,
+ "url": "http://netaffiliation.com/"
+ },
+ "mopinion.com": {
+ "name": "Mopinion",
+ "categoryId": 2,
+ "url": "https://mopinion.com/"
+ },
+ "acint.net": {
+ "name": "Acint",
+ "categoryId": 6,
+ "url": "https://www.acint.net/"
+ },
+ "adalyser.com": {
+ "name": "Adalyser",
+ "categoryId": 6,
+ "url": "https://www.adalyser.com/"
+ },
+ "adblade.com": {
+ "name": "Adblade",
+ "categoryId": 4,
+ "url": "https://adblade.com/"
+ },
+ "adkontekst.pl": {
+ "name": "Adkontekst",
+ "categoryId": 4,
+ "url": "http://netsprint.eu/"
+ },
+ "admitad.com": {
+ "name": "Admitad",
+ "categoryId": 4,
+ "url": "https://www.admitad.com/en/#"
+ },
+ "affec.tv": {
+ "name": "Affec.tv",
+ "categoryId": 4,
+ "url": "https://affectv.com/"
+ },
+ "airpr.com": {
+ "name": "AirPR",
+ "categoryId": 6,
+ "url": "https://airpr.com/"
+ },
+ "allo-pages.fr": {
+ "name": "Allo-Pages",
+ "categoryId": 2,
+ "url": "http://www.allo-pages.fr/"
+ },
+ "apa.at": {
+ "name": "Apa",
+ "categoryId": 8,
+ "url": "http://www.apa.at/Site/index.de.html"
+ },
+ "artlebedev.ru": {
+ "name": "Art.Lebedev",
+ "categoryId": 8,
+ "url": "https://www.artlebedev.ru/"
+ },
+ "awin1.com": {
+ "name": "Awin1",
+ "categoryId": 4,
+ "url": "https://www.awin.com"
+ },
+ "bannerflow.com": {
+ "name": "Bannerflow",
+ "categoryId": 4,
+ "url": "https://www.bannerflow.com/"
+ },
+ "beeketing.com": {
+ "name": "Beeketing",
+ "categoryId": 6,
+ "url": "https://beeketing.com/"
+ },
+ "bemobile.ua": {
+ "name": "Bemobile",
+ "categoryId": 10,
+ "url": "http://bemobile.ua/en/"
+ },
+ "betweendigital.com": {
+ "name": "Between Digital",
+ "categoryId": 6,
+ "url": "http://betweendigital.ru/ssp"
+ },
+ "bid.run": {
+ "name": "Bid.Run",
+ "categoryId": 6,
+ "url": "http://bid.run/"
+ },
+ "bigcommerce.com": {
+ "name": "BigCommerce",
+ "categoryId": 6,
+ "url": "https://www.bigcommerce.com/"
+ },
+ "blogfoster.com": {
+ "name": "Blogfoster",
+ "categoryId": 8,
+ "url": "http://www.blogfoster.com/"
+ },
+ "btttag.com": {
+ "name": "Btttag",
+ "categoryId": 6,
+ "url": "https://www.bluetriangletech.com/"
+ },
+ "bugherd.com": {
+ "name": "BugHerd",
+ "categoryId": 2,
+ "url": "https://bugherd.com"
+ },
+ "cbsi.com": {
+ "name": "CBS Interactive",
+ "categoryId": 8,
+ "url": "https://www.cbsinteractive.com/"
+ },
+ "cdnvideo.com": {
+ "name": "CDNvideo",
+ "categoryId": 9,
+ "url": "https://www.cdnvideo.com/"
+ },
+ "clearbit.com": {
+ "name": "Clearbit",
+ "categoryId": 6,
+ "url": "https://clearbit.com/"
+ },
+ "cnetcontent.com": {
+ "name": "Cnetcontent",
+ "categoryId": 8,
+ "url": "http://cnetcontent.com/"
+ },
+ "cnzz.com": {
+ "name": "Umeng",
+ "categoryId": 6,
+ "url": "http://www.umeng.com/"
+ },
+ "condenastdigital.com": {
+ "name": "Condé Nast Digital",
+ "categoryId": 8,
+ "url": "http://www.condenast.com/"
+ },
+ "connatix.com": {
+ "name": "Connatix",
+ "categoryId": 4,
+ "url": "https://connatix.com/"
+ },
+ "contentexchange.me": {
+ "name": "Content Exchange",
+ "categoryId": 6,
+ "url": "https://www.contentexchange.me/"
+ },
+ "dailymail.co.uk": {
+ "name": "Daily Mail",
+ "categoryId": 8,
+ "url": "http://www.dailymail.co.uk/home/index.html"
+ },
+ "sociaplus.com": {
+ "name": "SociaPlus",
+ "categoryId": 6,
+ "url": "https://sociaplus.com/"
+ },
+ "salesmanago.pl": {
+ "name": "SALESmanago",
+ "categoryId": 4,
+ "url": "https://www.salesmanago.com/"
+ },
+ "zebestof.com": {
+ "name": "Zebestof",
+ "categoryId": 4,
+ "url": "http://www.zebestof.com/en/home/"
+ },
+ "wysistat.com": {
+ "name": "Wysistat",
+ "categoryId": 6,
+ "url": "http://wysistat.net/"
+ },
+ "o2.pl": {
+ "name": "o2.pl",
+ "categoryId": 8,
+ "url": "https://www.o2.pl/"
+ },
+ "omniconvert.com": {
+ "name": "Omniconvert",
+ "categoryId": 4,
+ "url": "https://www.omniconvert.com/"
+ },
+ "optinproject.com": {
+ "name": "OptinProject",
+ "categoryId": 4,
+ "url": "https://www.optincollect.com/en"
+ },
+ "ora.tv": {
+ "name": "Ora.TV",
+ "categoryId": 4,
+ "url": "http://www.ora.tv/"
+ },
+ "owox.com": {
+ "name": "OWOX",
+ "categoryId": 6,
+ "url": "https://www.owox.com/"
+ },
+ "peer5.com": {
+ "name": "Peer5",
+ "categoryId": 9,
+ "url": "https://www.peer5.com/"
+ },
+ "pepper.com": {
+ "name": "Pepper",
+ "categoryId": 4,
+ "url": "https://www.pepper.com/"
+ },
+ "pladform.ru": {
+ "name": "Pladform",
+ "categoryId": 4,
+ "url": "https://distribution.pladform.ru/"
+ },
+ "playbuzz.com": {
+ "name": "Playbuzz",
+ "categoryId": 6,
+ "url": "https://www.playbuzz.com/"
+ },
+ "powr.io": {
+ "name": "POWr",
+ "categoryId": 6,
+ "url": "https://www.powr.io/"
+ },
+ "prismamediadigital.com": {
+ "name": "Prisma Media Digital",
+ "categoryId": 4,
+ "url": "http://www.pmdrecrute.com/"
+ },
+ "privy.com": {
+ "name": "Privy",
+ "categoryId": 6,
+ "url": "https://privy.com/"
+ },
+ "pscp.tv": {
+ "name": "Periscope",
+ "categoryId": 7,
+ "url": "https://www.pscp.tv/"
+ },
+ "push.world": {
+ "name": "Push.world",
+ "categoryId": 2,
+ "url": "https://push.world/en"
+ },
+ "qq.com": {
+ "name": "qq.com",
+ "categoryId": 8,
+ "url": "http://www.qq.com/"
+ },
+ "quartic.pl": {
+ "name": "Quartic",
+ "categoryId": 6,
+ "url": "https://www.quarticon.com/"
+ },
+ "rcs.it": {
+ "name": "RCS",
+ "categoryId": 8,
+ "url": "http://www.rcsmediagroup.it/"
+ },
+ "recettes.net": {
+ "name": "Recettes.net",
+ "categoryId": 8,
+ "url": "http://www.recettes.net/"
+ },
+ "redcdn.pl": {
+ "name": "redGalaxy CDN",
+ "categoryId": 9,
+ "url": "http://www.atendesoftware.pl/"
+ },
+ "reembed.com": {
+ "name": "reEmbed",
+ "categoryId": 0,
+ "url": "https://www.reembed.com/"
+ },
+ "reevoo.com": {
+ "name": "Reevoo",
+ "categoryId": 6,
+ "url": "https://www.reevoo.com/en/"
+ },
+ "republer.com": {
+ "name": "Republer",
+ "categoryId": 6,
+ "url": "http://republer.com/"
+ },
+ "resultspage.com": {
+ "name": "SLI Systems",
+ "categoryId": 6,
+ "url": "https://www.sli-systems.com/"
+ },
+ "ringier.ch": {
+ "name": "Ringier",
+ "categoryId": 6,
+ "url": "http://ringier.ch/en"
+ },
+ "riskfield.com": {
+ "name": "Riskfield",
+ "categoryId": 2,
+ "url": "https://www.riskified.com/"
+ },
+ "salesforce.com": {
+ "name": "Salesforce",
+ "categoryId": 6,
+ "url": "https://www.salesforce.com/eu/"
+ },
+ "samba.tv": {
+ "name": "Samba TV",
+ "categoryId": 4,
+ "url": "https://samba.tv/"
+ },
+ "sape.ru": {
+ "name": "Sape",
+ "categoryId": 6,
+ "url": null
+ },
+ "schibsted": {
+ "name": "Schibsted Media Group",
+ "categoryId": 8,
+ "url": "http://www.schibsted.com/"
+ },
+ "shopifycdn.com": {
+ "name": "Shopify CDN",
+ "categoryId": 9,
+ "url": "https://www.shopify.com/"
+ },
+ "shopifycloud.com": {
+ "name": "Shopify Cloud",
+ "categoryId": 2,
+ "url": "https://www.shopify.com/"
+ },
+ "orange_france": {
+ "name": "Orange France",
+ "categoryId": 8,
+ "url": "https://www.orange.fr/"
+ },
+ "le_monde.fr": {
+ "name": "Le Monde.fr",
+ "categoryId": 8,
+ "url": "http://www.lemonde.fr/"
+ },
+ "accengage": {
+ "name": "Accengage",
+ "categoryId": 4,
+ "url": "https://www.accengage.com/"
+ },
+ "polar.me": {
+ "name": "Polar",
+ "categoryId": 4,
+ "url": "https://polar.me/"
+ },
+ "nekudo.com": {
+ "name": "Nekudo",
+ "categoryId": 2,
+ "url": "https://nekudo.com/"
+ },
+ "wikia-services.com": {
+ "name": "Wikia Services",
+ "categoryId": 8,
+ "url": " http://www.wikia.com/fandom"
+ },
+ "baidu_static": {
+ "name": "Baidu Static",
+ "categoryId": 8,
+ "url": "https://www.baidu.com/"
+ },
+ "allegro.pl": {
+ "name": "Allegro",
+ "categoryId": 8,
+ "url": "https://allegro.pl"
+ },
+ "pushwoosh.com": {
+ "name": "Pushwoosh",
+ "categoryId": 2,
+ "url": "https://www.pushwoosh.com/"
+ },
+ "instart_logic": {
+ "name": "Instart Logic",
+ "categoryId": 4,
+ "url": "https://www.instartlogic.com/"
+ },
+ "the_guardian": {
+ "name": "The Guardian",
+ "categoryId": 8,
+ "url": "https://www.theguardian.com/"
+ },
+ "onfocus.io": {
+ "name": "OnFocus",
+ "categoryId": 4,
+ "url": "http://onfocus.io/"
+ },
+ "fastpic.ru": {
+ "name": "FastPic",
+ "categoryId": 10,
+ "url": "http://fastpic.ru/"
+ },
+ "vk.com": {
+ "name": "Vk.com",
+ "categoryId": 7,
+ "url": "https://vk.com/"
+ },
+ "fileserve": {
+ "name": "FileServe",
+ "categoryId": 10,
+ "url": "http://fileserve.com/"
+ },
+ "monero_miner": {
+ "name": "Monero Miner",
+ "categoryId": 8,
+ "url": "http://devappgrant.space/"
+ },
+ "gstatic": {
+ "name": "Google Static",
+ "categoryId": 9,
+ "url": null
+ },
+ "google_servers": {
+ "name": "Google Servers",
+ "categoryId": 8,
+ "url": "https://support.google.com/faqs/answer/174717?hl=en"
+ },
+ "google_fonts": {
+ "name": "Google Fonts",
+ "categoryId": 9,
+ "url": "https://fonts.google.com/"
+ },
+ "google_custom_search": {
+ "name": "Google Custom Search Ads",
+ "categoryId": 4,
+ "url": "https://developers.google.com/custom-search-ads/"
+ },
+ "yieldlove": {
+ "name": "Yieldlove",
+ "categoryId": 4,
+ "url": "https://www.yieldlove.com/"
+ },
+ "intermarkets.net": {
+ "name": "Intermarkets",
+ "categoryId": 4,
+ "url": "http://intermarkets.net/"
+ },
+ "eproof": {
+ "name": "eProof",
+ "categoryId": 6,
+ "url": "http://www.eproof.com/"
+ },
+ "combotag": {
+ "name": "ComboTag",
+ "categoryId": 4,
+ "url": "https://www.combotag.com/"
+ },
+ "ziff_davis": {
+ "name": "Ziff Davis",
+ "categoryId": 4,
+ "url": "https://www.ziffdavis.com/"
+ },
+ "twitch_cdn": {
+ "name": "Twitch CDN",
+ "categoryId": 0,
+ "url": "https://www.twitch.tv/"
+ },
+ "disqus_ads": {
+ "name": "Disqus Ads",
+ "categoryId": 4,
+ "url": "https://disqusads.com/"
+ },
+ "typography.com": {
+ "name": "Webfonts by Hoefler&Co",
+ "categoryId": 9,
+ "url": "https://www.typography.com/"
+ },
+ "bbci": {
+ "name": "BBC",
+ "categoryId": 10,
+ "url": "https://bbc.co.uk"
+ },
+ "puserving.com": {
+ "name": "puserving.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "piguiqproxy.com": {
+ "name": "piguiqproxy.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "relap": {
+ "name": "Relap",
+ "categoryId": 4,
+ "url": "https://relap.io/"
+ },
+ "speedcurve": {
+ "name": "SpeedCurve",
+ "categoryId": 6,
+ "url": "https://speedcurve.com/"
+ },
+ "curse.com": {
+ "name": "Curse",
+ "categoryId": 8,
+ "url": "https://www.curse.com/"
+ },
+ "taobao": {
+ "name": "Taobao",
+ "categoryId": 4,
+ "url": "https://world.taobao.com/"
+ },
+ "zimbio.com": {
+ "name": "Zimbio",
+ "categoryId": 8,
+ "url": "http://www.zimbio.com/"
+ },
+ "sharepoint": {
+ "name": "Microsoft SharePoint",
+ "categoryId": 2,
+ "url": "https://products.office.com/en-us/sharepoint/sharepoint-online-collaboration-software"
+ },
+ "openstat": {
+ "name": "OpenStat",
+ "categoryId": 6,
+ "url": "https://www.openstat.ru/"
+ },
+ "ymetrica1.com": {
+ "name": "ymetrica1.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "foresee": {
+ "name": "Foresee",
+ "categoryId": 6,
+ "url": "https://www.foresee.com/"
+ },
+ "hotdogsandads.com": {
+ "name": "hotdogsandads.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "footprintdns.com": {
+ "name": "Footprint DNS",
+ "categoryId": 11,
+ "url": null
+ },
+ "velocecdn.com": {
+ "name": "velocecdn.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "unpkg.com": {
+ "name": "unpkg",
+ "categoryId": 9,
+ "url": "https://unpkg.com/#/"
+ },
+ "mailchimp": {
+ "name": "MailChimp",
+ "categoryId": 4,
+ "url": "https://mailchimp.com/"
+ },
+ "xnxx_cdn": {
+ "name": "xnxx CDN",
+ "categoryId": 9,
+ "url": "https://www.xnxx.com"
+ },
+ "glganltcs.space": {
+ "name": "glganltcs.space",
+ "categoryId": 12,
+ "url": null
+ },
+ "roblox": {
+ "name": "Roblox",
+ "categoryId": 8,
+ "url": "https://www.roblox.com/"
+ },
+ "nbc_news": {
+ "name": "NBC News",
+ "categoryId": 8,
+ "url": "https://www.nbcnews.com/"
+ },
+ "4chan": {
+ "name": "4Chan",
+ "categoryId": 8,
+ "url": "https://www.4chan.org/"
+ },
+ "rakuten_display": {
+ "name": "Rakuten Display",
+ "categoryId": 4,
+ "url": "https://rakutenmarketing.com/display"
+ },
+ "notify": {
+ "name": "Notify",
+ "categoryId": 4,
+ "url": "http://notify.ag/en/"
+ },
+ "loadercdn.com": {
+ "name": "loadercdn.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "dyncdn.me": {
+ "name": "dyncdn.me",
+ "categoryId": 11,
+ "url": null
+ },
+ "amgload.net": {
+ "name": "amgload.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "statsy.net": {
+ "name": "statsy.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "digital_nomads": {
+ "name": "Digital Nomads",
+ "categoryId": 4,
+ "url": "http://dnomads.net/"
+ },
+ "superfastcdn.com": {
+ "name": "superfastcdn.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "i10c.net": {
+ "name": "i10c.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "fap.to": {
+ "name": "Imagefap",
+ "categoryId": 8,
+ "url": null
+ },
+ "nyt.com": {
+ "name": "The New York Times",
+ "categoryId": 8,
+ "url": "https://www.nytimes.com/"
+ },
+ "datadome": {
+ "name": "DataDome",
+ "categoryId": 6,
+ "url": "https://datadome.co/"
+ },
+ "adrecover": {
+ "name": "AdRecover",
+ "categoryId": 4,
+ "url": "https://www.adrecover.com/"
+ },
+ "navegg_dmp": {
+ "name": "Navegg DMP",
+ "categoryId": 6,
+ "url": "http://navdmp.com/"
+ },
+ "adverticum": {
+ "name": "Adverticum",
+ "categoryId": 4,
+ "url": "https://adverticum.net/english/"
+ },
+ "auth0": {
+ "name": "Auth0 Inc.",
+ "categoryId": 6,
+ "url": "https://auth0.com/"
+ },
+ "kampyle": {
+ "name": "Kampyle",
+ "categoryId": 6,
+ "url": "http://www.kampyle.com/"
+ },
+ "st-hatena": {
+ "name": "St-Hatena",
+ "categoryId": 7,
+ "url": "http://www.hatena.ne.jp/"
+ },
+ "wonderpush": {
+ "name": "WonderPush",
+ "categoryId": 2,
+ "url": "https://www.wonderpush.com/"
+ },
+ "yieldbot": {
+ "name": "Yieldbot",
+ "categoryId": 6,
+ "url": "https://www.yieldbot.com/"
+ },
+ "strossle": {
+ "name": "Strossle",
+ "categoryId": 4,
+ "url": "https://strossle.com/"
+ },
+ "comscore": {
+ "name": "ComScore, Inc.",
+ "categoryId": 6,
+ "url": "https://www.comscore.com/"
+ },
+ "datds.net": {
+ "name": "datds.net",
+ "categoryId": 12,
+ "url": null
+ },
+ "uuidksinc.net": {
+ "name": "uuidksinc.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "camakaroda.com": {
+ "name": "camakaroda.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "khzbeucrltin.com": {
+ "name": "khzbeucrltin.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "defpush.com": {
+ "name": "defpush.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "webedia": {
+ "name": "Webedia",
+ "categoryId": 4,
+ "url": "http://fr.webedia-group.com/"
+ },
+ "oath_inc": {
+ "name": "Oath, Inc.",
+ "categoryId": 8,
+ "url": "https://www.oath.com/"
+ },
+ "grapeshot": {
+ "name": "Grapeshot",
+ "categoryId": 4,
+ "url": "https://www.grapeshot.com/"
+ },
+ "cnbc": {
+ "name": "CNBC",
+ "categoryId": 8,
+ "url": "https://www.cnbc.com/"
+ },
+ "statuspage.io": {
+ "name": "Statuspage",
+ "categoryId": 2,
+ "url": "https://www.statuspage.io/"
+ },
+ "adalliance.io": {
+ "name": "Ad Alliance",
+ "categoryId": 4,
+ "url": "https://www.ad-alliance.de/"
+ },
+ "pvclouds.com": {
+ "name": "pvclouds.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "borrango.com": {
+ "name": "borrango.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "shutterstock": {
+ "name": "Shutterstock",
+ "categoryId": 8,
+ "url": "https://www.shutterstock.com/"
+ },
+ "xxxlutz": {
+ "name": "XXXLutz",
+ "categoryId": 8,
+ "url": "https://www.xxxlutz.de/"
+ },
+ "dreamlab.pl": {
+ "name": "DreamLab.pl",
+ "categoryId": 4,
+ "url": "https://www.dreamlab.pl/"
+ },
+ "mux_inc": {
+ "name": "Mux, Inc.",
+ "categoryId": 10,
+ "url": "https://mux.com/"
+ },
+ "dmg_media": {
+ "name": "DMG Media",
+ "categoryId": 8,
+ "url": "https://www.dmgmedia.co.uk/"
+ },
+ "admantx.com": {
+ "name": "ADmantX",
+ "categoryId": 4,
+ "url": "http://www.admantx.com/"
+ },
+ "tail_target": {
+ "name": "Tail",
+ "categoryId": 6,
+ "url": "https://www.tail.digital/"
+ },
+ "contentful_gmbh": {
+ "name": "Contentful GmbH",
+ "categoryId": 9,
+ "url": "https://www.contentful.com/"
+ },
+ "snigelweb": {
+ "name": "SnigelWeb, Inc.",
+ "categoryId": 4,
+ "url": "http://www.snigelweb.com/"
+ },
+ "github_apps": {
+ "name": "GitHub Apps",
+ "categoryId": 2,
+ "url": null
+ },
+ "quantum_metric": {
+ "name": "Quantum Metric",
+ "categoryId": 6,
+ "url": "https://www.quantummetric.com/"
+ },
+ "the_sun": {
+ "name": "The Sun",
+ "categoryId": 8,
+ "url": "https://www.thesun.co.uk/"
+ },
+ "ancestry_cdn": {
+ "name": "Ancestry CDN",
+ "categoryId": 9,
+ "url": "https://www.ancestry.com/"
+ },
+ "go.com": {
+ "name": "go.com",
+ "categoryId": 8,
+ "url": "go.com"
+ },
+ "etsystatic": {
+ "name": "Etsy CDN",
+ "categoryId": 9,
+ "url": ""
+ },
+ "latimes": {
+ "name": "Los Angeles Times",
+ "categoryId": 8,
+ "url": "http://www.latimes.com/"
+ },
+ "sovrn_viewability_solutions": {
+ "name": "Sovrn Viewability Solutions",
+ "categoryId": 4,
+ "url": "https://www.sovrn.com/meridian/onscroll-viewability/"
+ },
+ "espn_cdn": {
+ "name": "ESPN CDN",
+ "categoryId": 9,
+ "url": "http://www.espn.com/"
+ },
+ "themoviedb": {
+ "name": "The Movie DB",
+ "categoryId": 8,
+ "url": "https://www.themoviedb.org/"
+ },
+ "netsprint_audience": {
+ "name": "Netsprint Audience",
+ "categoryId": 6,
+ "url": "http://audience.netsprint.eu/"
+ },
+ "braze": {
+ "name": "Braze",
+ "categoryId": 6,
+ "url": "https://www.braze.com/"
+ },
+ "experian": {
+ "name": "Experian",
+ "categoryId": 8,
+ "url": "https://www.experian.com/"
+ },
+ "foxnews_static": {
+ "name": "Fox News CDN",
+ "categoryId": 9,
+ "url": ""
+ },
+ "creative_commons": {
+ "name": "Creative Commons",
+ "categoryId": 8,
+ "url": "https://creativecommons.org/"
+ },
+ "cloudimage.io": {
+ "name": "Cloudimage.io",
+ "categoryId": 9,
+ "url": "https://www.cloudimage.io/en/home"
+ },
+ "level3_communications": {
+ "name": "Level 3 Communications, Inc.",
+ "categoryId": 8,
+ "url": "http://www.level3.com/en/"
+ },
+ "boudja.com": {
+ "name": "boudja.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "bwbx.io": {
+ "name": "Bloomberg CDN",
+ "categoryId": 9,
+ "url": "https://www.bloomberg.com/"
+ },
+ "tororango.com": {
+ "name": "tororango.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "interedy.info": {
+ "name": "interedy.info",
+ "categoryId": 11,
+ "url": null
+ },
+ "lottex_inc": {
+ "name": "vidcpm.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "lyuoaxruaqdo.com": {
+ "name": "lyuoaxruaqdo.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "github_pages": {
+ "name": "Github Pages",
+ "categoryId": 10,
+ "url": "https://pages.github.com/"
+ },
+ "bloomreach": {
+ "name": "BloomReach",
+ "categoryId": 4,
+ "url": "https://www.bloomreach.com/en"
+ },
+ "facebook_cdn": {
+ "name": "Facebook CDN",
+ "categoryId": 9,
+ "url": "https://www.facebook.com"
+ },
+ "amazon": {
+ "name": "Amazon.com",
+ "categoryId": 8,
+ "url": "https://www.amazon.com"
+ },
+ "amazon_adsystem": {
+ "name": "Amazon Adsystem",
+ "categoryId": 4,
+ "url": "https://advertising.amazon.com/"
+ },
+ "amazon_cdn": {
+ "name": "Amazon CDN",
+ "categoryId": 9,
+ "url": "https://www.amazon.com"
+ },
+ "iab_consent": {
+ "name": "IAB Consent",
+ "categoryId": 5,
+ "url": "https://iabtechlab.com/standards/gdpr-transparency-and-consent-framework/"
+ },
+ "cookiebot": {
+ "name": "Cookiebot",
+ "categoryId": 5,
+ "url": "https://www.cookiebot.com/en/"
+ },
+ "optanaon": {
+ "name": "Optanaon by OneTrust",
+ "categoryId": 5,
+ "url": "https://www.cookielaw.org/"
+ },
+ "bluecore": {
+ "name": "Bluecore",
+ "categoryId": 4,
+ "url": "https://www.bluecore.com/"
+ },
+ "adlabs": {
+ "name": "AdLabs",
+ "categoryId": 4,
+ "url": "https://www.adlabs.ru/"
+ },
+ "admo.tv": {
+ "name": "Admo.TV",
+ "categoryId": 3,
+ "url": "https://admo.tv/"
+ },
+ "vntsm.com": {
+ "name": "Venatus Media",
+ "categoryId": 4,
+ "url": "https://www.venatusmedia.com/"
+ },
+ "modulepush.com": {
+ "name": "modulepush.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "express.co.uk": {
+ "name": "express.co.uk",
+ "categoryId": 8,
+ "url": "https://www.express.co.uk/"
+ },
+ "trafmag.com": {
+ "name": "TrafMag",
+ "categoryId": 4,
+ "url": "https://trafmag.com/"
+ },
+ "admixer.net": {
+ "name": "Admixer",
+ "categoryId": 4,
+ "url": "https://admixer.net/"
+ },
+ "coll2onf.com": {
+ "name": "coll2onf.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "reuters_media": {
+ "name": "Reuters media",
+ "categoryId": 9,
+ "url": "https://reuters.com"
+ },
+ "ad-delivery.net": {
+ "name": "ad-delivery.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "videoplayerhub.com": {
+ "name": "videoplayerhub.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "evergage.com": {
+ "name": "Evergage",
+ "categoryId": 2,
+ "url": "https://www.evergage.com"
+ },
+ "zdassets.com": {
+ "name": "Zendesk CDN",
+ "categoryId": 8,
+ "url": "http://www.zendesk.com/"
+ },
+ "sovrn_onetag": {
+ "name": "Sovrn OneTag",
+ "categoryId": 4,
+ "url": "https://community.sovrn.com/s/article/OneTag-Implementation-Guide?language=en_US"
+ },
+ "revenue_hits": {
+ "name": "RevenueHits",
+ "categoryId": 4,
+ "url": "https://www.revenuehits.com/"
+ },
+ "amazon_video": {
+ "name": "Amazon Instant Video",
+ "categoryId": 0,
+ "url": "https://www.amazon.com"
+ },
+ "kinja.com": {
+ "name": "Kinja",
+ "categoryId": 6,
+ "url": "https://kinja.com/"
+ },
+ "kinja_static": {
+ "name": "Kinja Static",
+ "categoryId": 9,
+ "url": "https://kinja.com/"
+ },
+ "coinhive": {
+ "name": "Coinhive",
+ "categoryId": 8,
+ "url": "https://coinhive.com/"
+ },
+ "snapchat": {
+ "name": "Snapchat For Business",
+ "categoryId": 4,
+ "url": "https://www.snapchat.com/"
+ },
+ "early_birds": {
+ "name": "Early Birds",
+ "categoryId": 4,
+ "url": "http://www.early-birds.fr/"
+ },
+ "pushno.com": {
+ "name": "pushno.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "beampulse.com": {
+ "name": "BeamPulse",
+ "categoryId": 4,
+ "url": "https://en.beampulse.com/"
+ },
+ "discord": {
+ "name": "Discord",
+ "categoryId": 2,
+ "url": "https://discordapp.com/"
+ },
+ "medialead": {
+ "name": "Medialead",
+ "categoryId": 4,
+ "url": "https://www.medialead.de/"
+ },
+ "r_advertising": {
+ "name": "R-Advertising",
+ "categoryId": 4,
+ "url": "http://www.r-advertising.com/"
+ },
+ "storify": {
+ "name": "Storify",
+ "categoryId": 4,
+ "url": "https://storify.com/"
+ },
+ "eulerian": {
+ "name": "Eulerian Technologies",
+ "categoryId": 6,
+ "url": "https://www.eulerian.com/"
+ },
+ "steelhouse": {
+ "name": "Steel House Media",
+ "categoryId": 4,
+ "url": "https://steelhouse.com/"
+ },
+ "stalluva.pro": {
+ "name": "stalluva.pro",
+ "categoryId": 11,
+ "url": null
+ },
+ "ie8eamus.com": {
+ "name": "ie8eamus.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "pageanalytics.space": {
+ "name": "pageanalytics.space",
+ "categoryId": 11,
+ "url": null
+ },
+ "zmctrack.net": {
+ "name": "zmctrack.net",
+ "categoryId": 11,
+ "url": null
+ },
+ "urban_airship": {
+ "name": "Urban Airship",
+ "categoryId": 2,
+ "url": "https://www.urbanairship.com/"
+ },
+ "trueanthem": {
+ "name": "True Anthem",
+ "categoryId": 4,
+ "url": "https://www.trueanthem.com/"
+ },
+ "insider": {
+ "name": "Insider",
+ "categoryId": 6,
+ "url": "http://useinsider.com/"
+ },
+ "joinhoney": {
+ "name": "Honey",
+ "categoryId": 8,
+ "url": "https://www.joinhoney.com/"
+ },
+ "ionicframework.com": {
+ "name": "Ionic",
+ "categoryId": 8,
+ "url": "https://ionicframework.com/"
+ },
+ "loadsource.org": {
+ "name": "loadsource.org",
+ "categoryId": 11,
+ "url": null
+ },
+ "adbetnet.com": {
+ "name": "adbetnet",
+ "categoryId": 4,
+ "url": "https://adbetnet.com/"
+ },
+ "pstatic.net": {
+ "name": "Naver CDN",
+ "categoryId": 9,
+ "url": "https://www.naver.com/"
+ },
+ "zukxd6fkxqn.com": {
+ "name": "zukxd6fkxqn.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "treasuredata": {
+ "name": "Treasure Data",
+ "categoryId": 6,
+ "url": "https://www.treasuredata.com/"
+ },
+ "yandex_direct": {
+ "name": "Yandex.Direct",
+ "categoryId": 6,
+ "url": "https://direct.yandex.com/"
+ },
+ "ispot.tv": {
+ "name": "iSpot.tv",
+ "categoryId": 4,
+ "url": "https://www.ispot.tv/"
+ },
+ "microad": {
+ "name": "MicroAd",
+ "categoryId": 4,
+ "url": "https://www.microad.co.jp/"
+ },
+ "onetrust": {
+ "name": "OneTrust",
+ "categoryId": 5,
+ "url": "https://www.onetrust.com/"
+ },
+ "undercomputer.com": {
+ "name": "undercomputer.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "popin.cc": {
+ "name": "popIn",
+ "categoryId": 4,
+ "url": "https://www.popin.cc/"
+ },
+ "fout.jp": {
+ "name": "FreakOut",
+ "categoryId": 4,
+ "url": "https://www.fout.co.jp/"
+ },
+ "baletingo.com": {
+ "name": "baletingo.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "arcpublishing": {
+ "name": "Arc Publishing",
+ "categoryId": 8,
+ "url": "https://www.arcpublishing.com/"
+ },
+ "adxprtz.com": {
+ "name": "adxprtz.com",
+ "categoryId": 4,
+ "url": null
+ },
+ "gettyimages": {
+ "name": "Getty Images",
+ "categoryId": 8,
+ "url": "https://www.gettyimages.com/"
+ },
+ "distroscale": {
+ "name": "Distroscale",
+ "categoryId": 6,
+ "url": "http://www.distroscale.com/"
+ },
+ "hubvisor.io": {
+ "name": "Hubvisor",
+ "categoryId": 4,
+ "url": "https://hubvisor.io/"
+ },
+ "inboxsdk.com": {
+ "name": "Inbox SDK",
+ "categoryId": 8,
+ "url": "https://www.inboxsdk.com/"
+ },
+ "maxymiser": {
+ "name": "Oracle Maxymiser",
+ "categoryId": 4,
+ "url": "https://www.oracle.com/marketingcloud/products/testing-and-optimization/index.html"
+ },
+ "vacaneedasap.com": {
+ "name": "vacaneedasap.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "cdnsure.com": {
+ "name": "cdnsure.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "pub.network": {
+ "name": "pub.network",
+ "categoryId": 4,
+ "url": null
+ },
+ "noaa.gov": {
+ "name": "National Oceanic and Atmospheric Administration",
+ "categoryId": 8,
+ "url": "https://noaa.gov/"
+ },
+ "o12zs3u2n.com": {
+ "name": "o12zs3u2n.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "nyacampwk.com": {
+ "name": "nyacampwk.com",
+ "categoryId": 11,
+ "url": null
+ },
+ "noop.style": {
+ "name": "noop.style",
+ "categoryId": 11,
+ "url": null
+ },
+ "poirreleast.club": {
+ "name": "poirreleast.club",
+ "categoryId": 11,
+ "url": null
+ },
+ "newsupdatedir.info": {
+ "name": "newsupdatedir.info",
+ "categoryId": 11,
+ "url": null
+ },
+ "bluenewsupdate.info": {
+ "name": "bluenewsupdate.info",
+ "categoryId": 11,
+ "url": null
+ },
+ "prebid": {
+ "name": "Prebid",
+ "categoryId": 4,
+ "url": "http://prebid.org/"
+ },
+ "appcues": {
+ "name": "Appcues",
+ "categoryId": 2,
+ "url": "https://www.appcues.com/"
+ },
+ "ninja_access_analysis": {
+ "name": "Ninja Access Analysis",
+ "categoryId": 6,
+ "url": "http://www.ninja.co.jp/analysis/"
+ },
+ "moz": {
+ "name": "Moz",
+ "categoryId": 8,
+ "url": "https://moz.com/"
+ },
+ "didomi": {
+ "name": "Didomi",
+ "categoryId": 5,
+ "url": "https://www.didomi.io/en/"
+ },
+ "licensebuttons.net": {
+ "name": "licensebuttons.net",
+ "categoryId": 9,
+ "url": "https://licensebuttons.net/"
+ },
+ "line_apps": {
+ "name": "LINE Apps",
+ "categoryId": 8,
+ "url": "https://line.me/en-US/"
+ },
+ "mediav": {
+ "name": "MediaV",
+ "categoryId": 4,
+ "url": "https://www.mediav.com/"
+ },
+ "adobe_login": {
+ "name": "Adobe Login",
+ "categoryId": 2,
+ "url": "https://www.adobe.com/"
+ },
+ "runmewivel.com": {
+ "name": "runmewivel.com",
+ "categoryId": 10,
+ "url": null
+ },
+ "turner": {
+ "name": "Turner",
+ "categoryId": 9,
+ "url": "https://www.turner.com/"
+ },
+ "digital.gov": {
+ "name": "Digital.gov",
+ "categoryId": 6,
+ "url": "https://digital.gov/"
+ },
+ "datatables": {
+ "name": "DataTables",
+ "categoryId": 2,
+ "url": "https://datatables.net/"
+ }
+ },
+ "trackerDomains": {
+ "google-analytics.com": "google_analytics",
+ "2mdn.net": "doubleclick",
+ "invitemedia.com": "doubleclick",
+ "doubleclick.net": "doubleclick",
+ "ggpht.com": "google_photos",
+ "google.nl": "google",
+ "google.it": "google",
+ "google.be": "google",
+ "google.co.uk": "google",
+ "google.es": "google",
+ "google.de": "google",
+ "google.pl": "google",
+ "google.ch": "google",
+ "google.gr": "google",
+ "google.at": "google",
+ "appspot.com": "google_appspot",
+ "google.com.br": "google",
+ "google.com": "google",
+ "google.co.th": "google",
+ "google.co.ma": "google",
+ "google.fr": "google",
+ "google.dz": "google",
+ "google.ca": "google",
+ "googleapis.com": "googleapis.com",
+ "gstatic.com": "gstatic",
+ "googletagmanager.com": "google_tag_manager",
+ "googletagservices.com": "google_tag_manager",
+ "facebook.net": "facebook",
+ "atlassbx.com": "atlas",
+ "facebook.com": "facebook",
+ "fbcdn.net": "facebook_cdn",
+ "ivwbox.de": "infonline",
+ "ioam.de": "infonline",
+ "adsensecustomsearchads.com": "google_custom_search",
+ "googleadservices.com": "google_adservices",
+ "googlesyndication.com": "google_syndication",
+ "cloudfront.net": "amazon_cloudfront",
+ "amazonaws.com": "amazon_web_services",
+ "criteo.com": "criteo",
+ "criteo.net": "criteo",
+ "adnxs.com": "appnexus",
+ "adnxs.net": "appnexus",
+ "adition.com": "adition",
+ "assoc-amazon.jp": "amazon_associates",
+ "assoc-amazon.de": "amazon_associates",
+ "assoc-amazon.ca": "amazon_associates",
+ "assoc-amazon.co.uk": "amazon_associates",
+ "amazon.fr": "amazon",
+ "amazon.ca": "amazon",
+ "amazon.es": "amazon",
+ "amazon.co.jp": "amazon",
+ "amazon.de": "amazon",
+ "assoc-amazon.com": "amazon_associates",
+ "amazon.com": "amazon",
+ "amazon-adsystem.com": "amazon_adsystem",
+ "amazon.co.uk": "amazon",
+ "assoc-amazon.fr": "amazon_associates",
+ "amazon.it": "amazon",
+ "ebayclassifiedsgroup.com": "ebay",
+ "ebayrtm.com": "ebay",
+ "ebaydesc.com": "ebay",
+ "ebayimg.com": "ebay",
+ "ebaystatic.com": "ebay",
+ "adformdsp.net": "adform",
+ "adform.net": "adform",
+ "scoreresearch.com": "scorecard_research_beacon",
+ "scrsrch.com": "scorecard_research_beacon",
+ "securestudies.com": "scorecard_research_beacon",
+ "scorecardresearch.com": "scorecard_research_beacon",
+ "comscore.com": "scorecard_research_beacon",
+ "optimizely.com": "optimizely",
+ "twitter.com": "twitter",
+ "kaspersky-labs.com": "kaspersky-labs.com",
+ "media-amazon.com": "amazon_cdn",
+ "ssl-images-amazon.com": "amazon_cdn",
+ "bing.com": "bing_ads",
+ "ads.msn.com": "msn",
+ "ads1.msn.com": "msn",
+ "bat.r.msn.com": "msn",
+ "adsyndication.msn.com": "msn",
+ "flex.msn.com": "msn",
+ "servedbyopenx.com": "openx",
+ "odnxs.net": "openx",
+ "openx.org": "openx",
+ "openx.net": "openx",
+ "openxenterprise.com": "openx",
+ "ytimg.com": "youtube",
+ "youtube-nocookie.com": "youtube",
+ "youtube.com": "youtube",
+ "googlevideo.com": "youtube",
+ "theadex.com": "the_adex",
+ "yieldlab.net": "yieldlab",
+ "dpclk.com": "rubicon",
+ "mobsmith.com": "rubicon",
+ "nearbyad.com": "rubicon",
+ "rubiconproject.com": "rubicon",
+ "nuggad.net": "nugg.ad",
+ "adsrvr.org": "tradedesk",
+ "llnwd.net": "tealium",
+ "tealiumiq.com": "tealium",
+ "tealium.com": "tealium",
+ "tiqcdn.com": "tealium",
+ "everestjs.net": "adobe_audience_manager",
+ "demdex.net": "adobe_audience_manager",
+ "everesttech.net": "adobe_audience_manager",
+ "pubmatic.com": "pubmatic",
+ "casalemedia.com": "index_exchange_",
+ "d1ros97qkrwjf5.cloudfront.net": "new_relic",
+ "nr-data.net": "new_relic",
+ "newrelic.com": "new_relic",
+ "addthiscdn.com": "addthis",
+ "addthis.com": "addthis",
+ "addthisedge.com": "addthis",
+ "akamai.net": "akamai_technologies",
+ "akamaihd.net": "akamai_technologies",
+ "edgesuite.net": "akamai_technologies",
+ "mathads.com": "mediamath",
+ "mathtag.com": "mediamath",
+ "xplosion.de": "xplosion",
+ "meetrics.net": "meetrics",
+ "research.de.com": "meetrics",
+ "mxcdn.net": "meetrics",
+ "mookie1.com": "media_innovation_group",
+ "bkrtx.com": "bluekai",
+ "bluekai.com": "bluekai",
+ "exactag.com": "exactag",
+ "googleusercontent.com": "google_users",
+ "adomik.com": "adomik",
+ "bidswitch.net": "bidswitch",
+ "adobedtm.com": "adobe_dynamic_tag_management",
+ "uimserv.net": "united_internet_media_gmbh",
+ "ui-portal.de": "united_internet_media_gmbh",
+ "tifbs.net": "united_internet_media_gmbh",
+ "emetriq.de": "emetriq",
+ "adtech.de": "adtech",
+ "adtechus.com": "adtech",
+ "outbrain.com": "outbrain",
+ "hotjar.com": "hotjar",
+ "adbureau.net": "atlas",
+ "atdmt.com": "atlas",
+ "xiti.com": "at_internet",
+ "ati-host.net": "at_internet",
+ "agkn.com": "aggregate_knowledge",
+ "tumblr.com": "yahoo",
+ "yahoo.com": "yahoo",
+ "trustedshops.com": "trusted_shops",
+ "ebay.com": "ebay",
+ "taboola.com": "taboola",
+ "taboolasyndication.com": "taboola",
+ "sascdn.com": "smart_adserver",
+ "smartadserver.com": "smart_adserver",
+ "yoc-adserver.com": "smart_adserver",
+ "styria-digital.com": "smart_adserver",
+ "quantcast.com": "quantcast",
+ "quantserve.com": "quantcast",
+ "adrtx.net": "adality_gmbh",
+ "imageg.net": "omniture__adobe_analytics_",
+ "freedom.com": "omniture__adobe_analytics_",
+ "du8783wkf05yr.cloudfront.net": "omniture__adobe_analytics_",
+ "hitbox.com": "omniture__adobe_analytics_",
+ "reedbusiness.net": "omniture__adobe_analytics_",
+ "omtrdc.net": "omniture__adobe_analytics_",
+ "2o7.net": "omniture__adobe_analytics_",
+ "yandex.ru": "yandex",
+ "yandex.net": "yandex",
+ "df-srv.de": "contact_impact",
+ "m6r.eu": "mbr_targeting",
+ "krxd.net": "krux_digital",
+ "pinimg.com": "pinterest",
+ "pinterest.com": "pinterest",
+ "d3io1k5o0zdpqr.cloudfront.net": "pinterest",
+ "adscale.de": "adscale",
+ "ebay.de": "ebay",
+ "moatpixel.com": "moat",
+ "moatads.com": "moat",
+ "serving-sys.com": "sizmek",
+ "ligatus.com": "ligatus",
+ "ligatus.de": "ligatus",
+ "ligadx.com": "ligatus",
+ "webtrekk.net": "webtrekk",
+ "wt-safetag.com": "webtrekk",
+ "webtrekk-asia.net": "webtrekk",
+ "chartbeat.net": "chartbeat",
+ "chartbeat.com": "chartbeat",
+ "turn.com": "turn_inc.",
+ "paypal.com": "paypal",
+ "tapad.com": "tapad",
+ "adrolays.de": "contact_impact",
+ "exoclick.com": "exoclick",
+ "rlcdn.com": "liveramp",
+ "rapleaf.com": "liveramp",
+ "advertising.com": "advertising.com",
+ "aol.com": "advertising.com",
+ "pictela.net": "advertising.com",
+ "adsdk.com": "advertising.com",
+ "atwola.com": "advertising.com",
+ "xhcdn.com": "xhamster",
+ "plista.com": "plista",
+ "twimg.com": "twitter",
+ "imrworldwide.com": "netratings_sitecensus",
+ "glanceguide.com": "netratings_sitecensus",
+ "vizu.com": "netratings_sitecensus",
+ "visualwebsiteoptimizer.com": "visual_website_optimizer",
+ "wingify.com": "visual_website_optimizer",
+ "d5phz18u4wuww.cloudfront.net": "visual_website_optimizer",
+ "vgwort.de": "vg_wort",
+ "maxymiser.net": "maxymiser",
+ "buysellads.com": "buysellads",
+ "trafficstars.com": "traffic_stars",
+ "tsyndicate.com": "traffic_stars",
+ "btrll.com": "brightroll",
+ "rfihub.net": "rocket_fuel",
+ "rfihub.com": "rocket_fuel",
+ "gravatar.com": "gravatar",
+ "zanox-affiliate.de": "zanox",
+ "zanox.com": "zanox",
+ "rqtrk.eu": "roq.ad",
+ "phncdn.com": "pornhub",
+ "adsymptotic.com": "drawbridge",
+ "wikimedia.org": "wikimedia.org",
+ "dnn506yrbagrg.cloudfront.net": "crazy_egg",
+ "crazyegg.com": "crazy_egg",
+ "cetrk.com": "crazy_egg",
+ "fastclick.net": "conversant",
+ "mplxtms.com": "conversant",
+ "mediaplex.com": "conversant",
+ "adsafeprotected.com": "integral_ad_science",
+ "econda-monitor.de": "econda",
+ "twiago.com": "twiago",
+ "trafficjunky.net": "trafficjunky",
+ "dtmpub.com": "dotomi",
+ "dtmc.com": "dotomi",
+ "dotomi.com": "dotomi",
+ "jwpcdn.com": "jw_player",
+ "jwpsrv.com": "jw_player",
+ "d21rhj7n383afu.cloudfront.net": "jw_player",
+ "paypalobjects.com": "paypal",
+ "banner-rotation.com": "affilinet",
+ "webmasterplan.com": "affilinet",
+ "etracker.com": "etracker",
+ "sedotracker.com": "etracker",
+ "etracker.de": "etracker",
+ "crwdcntrl.net": "lotame",
+ "contentabc.com": "juggcash",
+ "mofos.com": "juggcash",
+ "lqm.io": "liquidm_technology_gmbh",
+ "lqmcdn.com": "liquidm_technology_gmbh",
+ "eyeota.net": "eyeota",
+ "wt-eu02.net": "webtrekk",
+ "wbtrk.net": "webtrekk",
+ "webtrekk.com": "webtrekk",
+ "fastly.net": "fastlylb.net",
+ "interclick.com": "yahoo",
+ "yimg.com": "yahoo",
+ "yjtag.jp": "yahoo_japan",
+ "indeed.com": "indeed",
+ "exosrv.com": "exoclick",
+ "linkedin.com": "linkedin",
+ "71i.de": "sevenone_media",
+ "browser-update.org": "browser_update",
+ "intelliad.de": "intelliad",
+ "intelliad.com": "intelliad",
+ "wp.com": "wordpress_stats",
+ "wordpress.com": "wordpress_stats",
+ "spotxcdn.com": "spotxchange",
+ "spotxchange.com": "spotxchange",
+ "spotx.tv": "spotxchange",
+ "w55c.net": "dataxu",
+ "yadro.ru": "liveinternet",
+ "visualrevenue.com": "visual_revenue",
+ "stroeerdigitalmedia.de": "stroer_digital_media",
+ "oewabox.at": "owa",
+ "liadm.com": "live_intent",
+ "flashtalking.com": "flashtalking",
+ "d31qbv1cthcecs.cloudfront.net": "alexa_metrics",
+ "d5nxst8fruw4z.cloudfront.net": "alexa_metrics",
+ "jwpltx.com": "jw_player",
+ "heatmap.it": "heatmap",
+ "mouseflow.com": "mouseflow",
+ "quantcount.com": "quantcount",
+ "nedstat.com": "digital_analytix",
+ "sitestat.com": "digital_analytix",
+ "loggly.com": "loggly",
+ "360yield.com": "improve_digital",
+ "redcourtside.com": "doublepimp",
+ "doublepimp.com": "doublepimp",
+ "doublepimpssl.com": "doublepimp",
+ "zerezas.com": "doublepimp",
+ "xeontopa.com": "doublepimp",
+ "contextweb.com": "pulsepoint",
+ "opecloud.com": "1plusx",
+ "v12group.com": "v12_group",
+ "wunderloop.net": "audience_science",
+ "revsci.net": "audience_science",
+ "targetingmarketplace.com": "audience_science",
+ "webtrends.com": "webtrends",
+ "webtrendslive.com": "webtrends",
+ "googlecommerce.com": "google_trusted_stores",
+ "mpnrs.com": "m._p._newmedia",
+ "d1z2jf7jlzjs58.cloudfront.net": "parsely",
+ "parsely.com": "parsely",
+ "hwcdn.net": "highwinds",
+ "typekit.com": "typekit_by_adobe",
+ "typekit.net": "typekit_by_adobe",
+ "lp4.io": "linkpulse",
+ "redintelligence.net": "the_reach_group",
+ "teads.tv": "teads",
+ "cedexis.net": "cedexis_radar",
+ "cedexis-radar.net": "cedexis_radar",
+ "cedexis.com": "cedexis_radar",
+ "ad-srv.net": "neory_",
+ "ensighten.com": "ensighten",
+ "kameleoon.com": "kameleoon",
+ "bizographics.com": "linkedin",
+ "bizo.com": "linkedin",
+ "akamaized.net": "akamai_technologies",
+ "stickyadstv.com": "stickyads",
+ "disqus.com": "disqus",
+ "fonts.net": "monotype_gmbh",
+ "fbsbx.com": "facebook_cdn",
+ "ad4mat.fi": "ad4mat",
+ "ad4mat.it": "ad4mat",
+ "ad4mat.gr": "ad4mat",
+ "ad4mat.de": "ad4mat",
+ "ad4mat.pl": "ad4mat",
+ "ad4mat.bg": "ad4mat",
+ "ad4mat.ar": "ad4mat",
+ "ad4mat.ru": "ad4mat",
+ "ad4mat.dk": "ad4mat",
+ "ad4mat.cz": "ad4mat",
+ "ad4mat.tr": "ad4mat",
+ "ad4mat.ch": "ad4mat",
+ "ad4mat.net": "ad4mat",
+ "ad4mat.br": "ad4mat",
+ "ad4mat.be": "ad4mat",
+ "ad4mat.at": "ad4mat",
+ "ad4mat.fr": "ad4mat",
+ "ad4mat.nl": "ad4mat",
+ "ad4mat.co.uk": "ad4mat",
+ "ad4mat.no": "ad4mat",
+ "ad4mat.se": "ad4mat",
+ "ad4mat.ro": "ad4mat",
+ "ad4mat.es": "ad4mat",
+ "ad4mat.hu": "ad4mat",
+ "ad4mat.mx": "ad4mat",
+ "summerhamster.com": "sourcepoint",
+ "weborama.com": "weborama",
+ "weborama.fr": "weborama",
+ "adrcdn.com": "weborama",
+ "adrcntr.com": "weborama",
+ "mpstat.us": "soasta_mpulse",
+ "go-mpulse.net": "soasta_mpulse",
+ "abtasty.com": "ab_tasty",
+ "d1447tq2m68ekg.cloudfront.net": "ab_tasty",
+ "ads-twitter.com": "twitter",
+ "usabilla.com": "usabilla",
+ "otto.de": "otto.de",
+ "pingdom.net": "pingdom",
+ "veinteractive.com": "ve_interactive",
+ "bf-ad.net": "burda",
+ "1rx.io": "rhythmone_beacon",
+ "smartclip.net": "smartclip",
+ "de8of677fyt0b.cloudfront.net": "appdynamics",
+ "appdynamics.com": "appdynamics",
+ "eum-appdynamics.com": "appdynamics",
+ "cxt.ms": "connexity",
+ "connexity.net": "connexity",
+ "netdna-ssl.com": "maxcdn",
+ "advolution.de": "advolution",
+ "wywy.com": "wywy.com",
+ "m-pathy.com": "m-pathy",
+ "akstat.io": "akamai_technologies",
+ "xhamsterlive.com": "xhamster",
+ "stripchat.com": "stripchat.com",
+ "exelator.com": "exelate",
+ "adobe.com": "adobe_audience_manager",
+ "veeseo.com": "ligatus",
+ "semasio.net": "semasio",
+ "mixpanel.com": "mixpanel",
+ "mxpnl.net": "mixpanel",
+ "mxpnl.com": "mixpanel",
+ "stripcdn.com": "stripchat.com",
+ "t-online.de": "t-mobile",
+ "scene7.com": "scene7.com",
+ "ekomi.de": "ekomi",
+ "lijit.com": "sovrn",
+ "d3pkae9owd2lcf.cloudfront.net": "sovrn",
+ "cpx.to": "cpx.to",
+ "sharethis.com": "sharethis",
+ "spoteffects.net": "spoteffect",
+ "sitescout.com": "sitescout",
+ "d31bfnnwekbny6.cloudfront.net": "kupona",
+ "media01.eu": "dynamic_1001_gmbh",
+ "conative.de": "conative.de",
+ "zopim.com": "zopim",
+ "tagcommander.com": "tag_commander",
+ "commander1.com": "tag_commander",
+ "live.com": "microsoft",
+ "odnoklassniki.ru": "mail.ru_group",
+ "mail.ru": "mail.ru_group",
+ "ok.ru": "mail.ru_group",
+ "svonm.com": "schneevonmorgen.com",
+ "content-recommendation.net": "ligatus",
+ "ero-advertising.com": "eroadvertising",
+ "sociomantic.com": "sociomantic",
+ "tvsquared.com": "tvsquared.com",
+ "zononi.com": "zononi.com",
+ "userlike.com": "userlike.com",
+ "userapi.com": "vkontakte_widgets",
+ "vkontakte.ru": "vkontakte_widgets",
+ "vk.com": "vkontakte_widgets",
+ "cdn13.com": "cdn13.com",
+ "adspirit.de": "ad_spirit",
+ "adspirit.net": "ad_spirit",
+ "aolcdn.com": "aol_cdn",
+ "buzzadexchange.com": "buzzadexchange.com",
+ "gemius.pl": "gemius",
+ "trustpilot.com": "trustpilot",
+ "edgekey.net": "akamai_technologies",
+ "msecnd.net": "microsoft",
+ "telekom.de": "t-mobile",
+ "wemfbox.ch": "net-metrix",
+ "bunchbox.co": "bunchbox",
+ "adadvisor.net": "neustar_adadvisor",
+ "nexac.com": "datalogix",
+ "refinedads.com": "refined_labs",
+ "betrad.com": "evidon",
+ "nexeps.com": "nexeps.com",
+ "routenplaner-karten.com": "routenplaner-karten.com",
+ "ypncdn.com": "youporn",
+ "intellitxt.com": "vibrant_ads",
+ "licdn.com": "linkedin",
+ "highwebmedia.com": "highwebmedia.com",
+ "triplelift.com": "triplelift",
+ "d3iwjrnl4m67rd.cloudfront.net": "triplelift",
+ "3lift.com": "triplelift",
+ "cybermonitor.com": "estat",
+ "estat.com": "estat",
+ "bazaarvoice.com": "bazaarvoice",
+ "blau.de": "blau.de",
+ "statcounter.com": "statcounter",
+ "popadscdn.net": "popads",
+ "popads.net": "popads",
+ "lpsnmedia.net": "liveperson",
+ "liveperson.net": "liveperson",
+ "adap.tv": "adap.tv",
+ "247-inc.net": "24_7",
+ "smartredirect.de": "adgoal",
+ "tns-gallup.dk": "tns",
+ "spring-tns.net": "tns",
+ "statistik-gallup.net": "tns",
+ "tns-counter.ru": "tns",
+ "sesamestats.com": "tns",
+ "tns-cs.net": "tns",
+ "research-int.se": "tns",
+ "brightcove.com": "brightcove",
+ "trbo.com": "trbo",
+ "onesignal.com": "onesignal",
+ "zendesk.com": "zendesk",
+ "kiosked.com": "kiosked",
+ "alephd.com": "alephd.com",
+ "d1af033869koo7.cloudfront.net": "24_7",
+ "epoq.de": "epoq",
+ "madeleine.de": "madeleine.de",
+ "myfonts.net": "myfonts_counter",
+ "nt.vc": "nt.vc",
+ "gwallet.com": "radiumone",
+ "tamgrt.com": "tripadvisor",
+ "o2online.de": "o2online.de",
+ "zencdn.net": "zencoder",
+ "mateti.net": "webtrekk",
+ "tripadvisor.com": "tripadvisor",
+ "tripadvisor.co.uk": "tripadvisor",
+ "tacdn.com": "tripadvisor",
+ "tripadvisor.de": "tripadvisor",
+ "imgur.com": "imgur",
+ "hurra.com": "hurra_tracker",
+ "etahub.com": "etahub.com",
+ "impressiondesk.com": "infectious_media",
+ "impdesk.com": "infectious_media",
+ "adroll.com": "adroll",
+ "traffichaus.com": "traffichaus",
+ "tidaltv.com": "videology",
+ "wfxtriggers.com": "the_weather_company",
+ "adup-tech.com": "adup-tech.com",
+ "gigya.com": "gigya",
+ "btstatic.com": "signal",
+ "thebrighttag.com": "signal",
+ "creative-serving.com": "161media",
+ "rackcdn.com": "rackcdn.com",
+ "cedexis-test.com": "cedexis_radar",
+ "kxcdn.com": "kxcdn.com",
+ "ixiaa.com": "ixi_digital",
+ "iadvize.com": "iadvize",
+ "igodigital.com": "igodigital",
+ "zanox.ws": "zanox",
+ "shareth.ru": "sharethrough",
+ "sharethrough.com": "sharethrough",
+ "vimeocdn.com": "vimeo",
+ "metrigo.com": "metrigo",
+ "ib-ibi.com": "i-behavior",
+ "perfectmarket.com": "perfect_market",
+ "windows.net": "microsoft",
+ "dt07.net": "marketgid",
+ "dt00.net": "marketgid",
+ "mgid.com": "marketgid",
+ "w.org": "wordpress_stats",
+ "nxtck.com": "next_performance",
+ "mediaimpact.de": "media_impact",
+ "soundcloud.com": "soundcloud",
+ "adc-srv.net": "adc_media",
+ "akanoo.com": "akanoo",
+ "findologic.com": "findologic.com",
+ "areyouahuman.com": "are_you_a_human",
+ "userreport.com": "userreport",
+ "yieldoptimizer.com": "adara_analytics",
+ "ktxtr.com": "kontextr",
+ "sndcdn.com": "soundcloud",
+ "contentspread.net": "content_spread",
+ "myvisualiq.net": "visual_iq",
+ "ciuvo.com": "ciuvo.com",
+ "company-target.com": "demandbase",
+ "adtriba.com": "adtriba.com",
+ "yahooapis.com": "yahoo",
+ "tradedoubler.com": "tradedoubler",
+ "innogamescdn.com": "innogames.de",
+ "onclickads.net": "propeller_ads",
+ "onclkds.com": "propeller_ads",
+ "propellerpops.com": "propeller_ads",
+ "oclaserver.com": "propeller_ads",
+ "propellerads.com": "propeller_ads",
+ "yabidos.com": "fraudlogix",
+ "c4tw.net": "twenga",
+ "exoticads.com": "exoticads.com",
+ "xfreeservice.com": "xfreeservice.com",
+ "sheego.de": "sheego.de",
+ "marinsm.com": "marin_search_marketer",
+ "oloadcdn.net": "openload",
+ "creativecdn.com": "rtb_house",
+ "jimcdn.com": "jimdo.com",
+ "wettercomassets.com": "wetter_com",
+ "polyfill.io": "polyfill.io",
+ "tuberewards.com": "grandslammedia",
+ "trw12.com": "grandslammedia",
+ "ru4.com": "rocket_fuel",
+ "xplusone.com": "rocket_fuel",
+ "de17a.com": "delta_projects",
+ "adaction.se": "delta_projects",
+ "cdngc.net": "clicktale",
+ "clicktale.net": "clicktale",
+ "pantherssl.com": "clicktale",
+ "onthe.io": "onthe.io",
+ "amung.us": "whos.amung.us",
+ "oadts.com": "atg_group",
+ "relevant4.com": "relevant4.com",
+ "cmcore.com": "ibm_customer_experience",
+ "coremetrics.com": "ibm_customer_experience",
+ "redirectingat.com": "skimlinks",
+ "skimresources.com": "skimlinks",
+ "skimlinks.com": "skimlinks",
+ "conviva.com": "conviva",
+ "omsnative.de": "oms",
+ "wcfbc.net": "webtrekk",
+ "brightcove.net": "brightcove_player",
+ "klarna.com": "klarna.com",
+ "vimeo.com": "vimeo",
+ "usemaxserver.de": "usemax",
+ "dtlilztwypawv.cloudfront.net": "sift_science",
+ "siftscience.com": "sift_science",
+ "congstar.de": "congstar.de",
+ "dtscout.com": "dtscout.com",
+ "smaato.net": "smaato",
+ "spotscenered.info": "spotscenered.info",
+ "adriver.ru": "adriver",
+ "cqq5id8n.com": "cqq5id8n.com",
+ "bidtheatre.com": "bidtheatre",
+ "justpremium.nl": "just_premium",
+ "justpremium.com": "just_premium",
+ "mein-bmi.com": "mein-bmi.com",
+ "ibillboard.com": "internet_billboard",
+ "goadservices.com": "internet_billboard",
+ "admaym.com": "admeta",
+ "atemda.com": "admeta",
+ "histats.com": "histats",
+ "kpcustomer.de": "kupona",
+ "choices.truste.com": "truste_notice",
+ "choices-or.truste.com": "truste_notice",
+ "gssprt.jp": "geniee",
+ "vtracy.de": "vtracy.de",
+ "whatsbroadcast.com": "whatbroadcast",
+ "flowplayer.org": "flowplayer",
+ "rambler.ru": "rambler",
+ "addtoany.com": "lockerz_share",
+ "tynt.com": "tynt",
+ "smartstream.tv": "smartstream.tv",
+ "realperson.de": "realperson.de",
+ "glotgrx.com": "glotgrx.com",
+ "online-metrix.net": "threatmetrix",
+ "yastatic.net": "yandex",
+ "cxo.name": "cxo.name",
+ "glomex.com": "glomex.com",
+ "cxense.com": "cxense",
+ "gt-cdn.net": "greentube.com",
+ "d24n15hnbwhuhn.cloudfront.net": "amplitude",
+ "amplitude.com": "amplitude",
+ "angsrvr.com": "falk_technologies",
+ "pagefair.com": "pagefair",
+ "blockmetrics.com": "pagefair",
+ "pagefair.net": "pagefair",
+ "emsmobile.de": "emsmobile.de",
+ "fastlylb.net": "fastlylb.net",
+ "alicdn.com": "alibaba.com",
+ "vorwerk.de": "vorwerk.de",
+ "digidip.net": "digidip",
+ "salesforceliveagent.com": "salesforce_live_agent",
+ "liveagentforsalesforce.com": "salesforce_live_agent",
+ "mycliplister.com": "mycliplister.com",
+ "peerius.com": "peerius",
+ "q-sis.de": "kupona",
+ "steepto.com": "steepto.com",
+ "adsafety.net": "adglue",
+ "monetate.net": "monetate",
+ "virtualearth.net": "bing_maps",
+ "movad.net": "mov.ad_",
+ "movad.de": "mov.ad_",
+ "simpli.fi": "simpli.fi",
+ "office365.com": "office365.com",
+ "dwin1.com": "digital_window",
+ "inq.com": "touchcommerce",
+ "jimdo.com": "jimdo.com",
+ "srvtrck.com": "srvtrck.com",
+ "tribalfusion.com": "tribal_fusion",
+ "exponential.com": "tribal_fusion",
+ "snapengage.com": "snap_engage",
+ "sensic.net": "gfk",
+ "qualtrics.com": "qualtrics",
+ "juicyads.com": "juicyads",
+ "cquotient.com": "cquotient.com",
+ "ancoraplatform.com": "ancora",
+ "adclear.net": "adclear",
+ "ctnsnet.com": "crimtan",
+ "ctpsnet.com": "crimtan",
+ "ctasnet.com": "crimtan",
+ "dyntrk.com": "dynadmic",
+ "viglink.com": "viglink",
+ "dawandastatic.com": "dawandastatic.com",
+ "tubecup.org": "tubecup.org",
+ "media.net": "media.net",
+ "rtmark.net": "rtmark.net",
+ "dl1d2m8ri9v3j.cloudfront.net": "trackjs",
+ "d2zah9y47r7bi2.cloudfront.net": "trackjs",
+ "trackjs.com": "trackjs",
+ "elasticad.net": "elastic_ad",
+ "intercomcdn.com": "intercom",
+ "intercom.io": "intercom",
+ "adyoulike.com": "adyoulike",
+ "omnitagjs.com": "adyoulike",
+ "fonts.com": "monotype_imaging",
+ "wipe.de": "web_wipe_anlaytics",
+ "adnium.com": "adnium.com",
+ "caanalytics.com": "markmonitor",
+ "mmstat.com": "markmonitor",
+ "9c9media.com": "markmonitor",
+ "azureedge.net": "azureedge.net",
+ "iovation.com": "iovation",
+ "iesnare.com": "iovation",
+ "adtr02.com": "adtr02.com",
+ "scribblelive.com": "scribblelive",
+ "unrulymedia.com": "unruly_media",
+ "bidr.io": "beeswax",
+ "contentsquare.net": "contentsquare.net",
+ "geotrust.com": "geotrust",
+ "zemanta.com": "zemanta",
+ "trafficfabrik.com": "trafficfabrik.com",
+ "rncdn3.com": "rncdn3.com",
+ "indexww.com": "index_exchange_",
+ "skype.com": "skype",
+ "skypeassets.com": "skype",
+ "fitanalytics.com": "fit_analytics",
+ "dimml.io": "dimml",
+ "rdtcdn.com": "redtube.com",
+ "sonobi.com": "sonobi",
+ "belboon.de": "belboon_gmbh",
+ "web.de": "web.de",
+ "autoscout24.net": "autoscout24.com",
+ "flickr.com": "flickr_badge",
+ "globalsign.com": "globalsign",
+ "adlooxtracking.com": "adloox",
+ "gmads.net": "groupm_server",
+ "grmtech.net": "groupm_server",
+ "acxiomapac.com": "acxiom",
+ "bongacams.com": "bongacams.com",
+ "norton.com": "symantec",
+ "verisign.com": "symantec",
+ "vergic.com": "vergic.com",
+ "esprit.de": "esprit.de",
+ "mncdn.com": "mncdn.com",
+ "marshadow.io": "marshadow.io",
+ "bangdom.com": "bangdom.com",
+ "teufel.de": "teufel.de",
+ "basebanner.com": "taboola",
+ "webgains.com": "webgains",
+ "consent.truste.com": "truste_consent",
+ "inspsearchapi.com": "inspsearchapi.com",
+ "levexis.com": "tagman",
+ "livechatinc.net": "livechat",
+ "livechatinc.com": "livechat",
+ "reddit.com": "reddit",
+ "oclasrv.com": "oclasrv.com",
+ "flxpxl.com": "flxone",
+ "flx1.com": "flxone",
+ "ebay-us.com": "ebay",
+ "shopgate.com": "shopgate.com",
+ "bttrack.com": "bidtellect",
+ "mapandroute.de": "mapandroute.de",
+ "vidible.tv": "vidible",
+ "tradelab.fr": "tradelab",
+ "twyn.com": "twyn",
+ "3gl.net": "catchpoint",
+ "nosto.com": "nosto.com",
+ "similardeals.net": "similardeals.net",
+ "awempire.com": "adult_webmaster_empire",
+ "livejasmin.com": "adult_webmaster_empire",
+ "usemax.de": "usemax",
+ "autoscout24.com": "autoscout24.com",
+ "nexage.com": "nexage",
+ "muscache.com": "airbnb",
+ "doubleverify.com": "doubleverify",
+ "octapi.net": "octapi.net",
+ "en25.com": "eloqua",
+ "eloqua.com": "eloqua",
+ "ipredictive.com": "adelphic",
+ "mycdn.me": "mycdn.me",
+ "adworx.at": "adworx.at",
+ "o333o.com": "adspyglass",
+ "sexypartners.net": "sexypartners.net",
+ "afy11.net": "adify",
+ "website-start.de": "1und1",
+ "bing.net": "bing_ads",
+ "chatango.com": "chatango",
+ "xhamster.com": "xhamster",
+ "springserve.com": "springserve",
+ "nonstoppartner.net": "united_digital_group",
+ "adverserve.net": "adverserve",
+ "segment.com": "segment",
+ "segment.io": "segment",
+ "d47xnnr8b1rki.cloudfront.net": "segment",
+ "d2dq2ahtl5zl1z.cloudfront.net": "segment",
+ "sekindo.com": "sekindo",
+ "perimeterx.net": "perimeterx.net",
+ "adnet.biz": "adnet.de",
+ "adnet.de": "adnet.de",
+ "cursecdn.com": "cursecdn.com",
+ "staticimgfarm.com": "mindspark",
+ "po.st": "po.st",
+ "switchadhub.com": "switch_concepts",
+ "switchads.com": "switch_concepts",
+ "myswitchads.com": "switch_concepts",
+ "switchafrica.com": "switch_concepts",
+ "ask.com": "ask.com",
+ "dynamicyield.com": "dynamic_yield",
+ "1822direkt.de": "1822direkt.de",
+ "h-cdn.com": "hola_player",
+ "zog.link": "zog.link",
+ "videohub.tv": "tremor_video",
+ "ics0.com": "richrelevance",
+ "richrelevance.com": "richrelevance",
+ "tubemogul.com": "tubemogul",
+ "d2wy8f7a9ursnm.cloudfront.net": "bugsnag",
+ "codeonclick.com": "codeonclick.com",
+ "imgix.net": "imgix.net",
+ "eanalyzer.de": "eanalyzer.de",
+ "col.stc.s-msn.com": "msn",
+ "s-msn.com": "msn",
+ "greatviews.de": "greatviews.de",
+ "idcdn.de": "id-news.net",
+ "lkqd.net": "lkqd",
+ "woopic.com": "woopic.com",
+ "eyeviewads.com": "eyeview",
+ "stripe.com": "stripe.com",
+ "coll1onf.com": "coll1onf.com",
+ "d16fk4ms6rqz1v.cloudfront.net": "salecycle",
+ "salecycle.com": "salecycle",
+ "id-news.net": "id-news.net",
+ "doofinder.com": "doofinder.com",
+ "exdynsrv.com": "exoclick",
+ "ixquick.com": "ixquick.com",
+ "loadbee.com": "loadbee.com",
+ "findizer.fr": "findizer.fr",
+ "wix.com": "wix.com",
+ "7tv.de": "7tv.de",
+ "opta.net": "opta.net",
+ "zedo.com": "zedo",
+ "alibaba.com": "alibaba.com",
+ "crossengage.io": "crossengage",
+ "solads.media": "solads.media",
+ "redditmedia.com": "reddit",
+ "office.com": "office.com",
+ "adotmob.com": "adotmob.com",
+ "liveadexchanger.com": "liveadexchanger.com",
+ "brandwire.tv": "brandwire.tv",
+ "dditscdn.com": "adult_webmaster_empire",
+ "imgsmail.ru": "mail.ru_group",
+ "gumgum.com": "gumgum",
+ "ml314.com": "bombora",
+ "king.com": "king.com",
+ "admeira.ch": "admeira.ch",
+ "onclasrv.com": "propeller_ads",
+ "adventori.com": "adventori",
+ "kctag.net": "kairion.de",
+ "stayfriends.de": "stayfriends.de",
+ "apester.com": "apester",
+ "bulkhentai.com": "bulkhentai.com",
+ "metalyzer.com": "metapeople",
+ "smartlook.com": "smartlook",
+ "getsmartlook.com": "smartlook",
+ "adhigh.net": "getintent",
+ "sumome.com": "sumome",
+ "kairion.de": "kairion.de",
+ "trsv3.com": "trsv3.com",
+ "powerlinks.com": "powerlinks",
+ "lfstmedia.com": "lifestreet_media",
+ "sparkasse.de": "sparkasse.de",
+ "netmng.com": "netmining",
+ "netmining.com": "netmining",
+ "videoplaza.tv": "videoplaza",
+ "inspectlet.com": "inspectlet",
+ "yume.com": "yume",
+ "staticflickr.com": "flickr_badge",
+ "nanigans.com": "nanigans",
+ "certona.net": "certona",
+ "res-x.com": "certona",
+ "affimax.de": "affimax",
+ "hs-analytics.net": "hubspot",
+ "hubspot.com": "hubspot",
+ "quisma.com": "quisma",
+ "qservz.com": "quisma",
+ "pusher.com": "pusher.com",
+ "blogsmithmedia.com": "blogsmithmedia.com",
+ "sojern.com": "sojern",
+ "ayads.co": "sublime_skinz",
+ "keen.io": "keen_io",
+ "dc8na2hxrj29i.cloudfront.net": "keen_io",
+ "ultimedia.com": "digiteka",
+ "ard.de": "ard.de",
+ "decenthat.com": "sourcepoint",
+ "netflix.com": "netflix",
+ "tp-cdn.com": "tp-cdn.com",
+ "adtelligence.de": "adtelligence.de",
+ "tawk.to": "tawk",
+ "firebaseio.com": "firebaseio.com",
+ "shopauskunft.de": "shopauskunft.de",
+ "dcmn.com": "dcmn.com",
+ "mythings.com": "mythings",
+ "asambeauty.com": "asambeauty.com",
+ "dailymotion.com": "dailymotion",
+ "cam-content.com": "cam-content.com",
+ "ttvnw.net": "twitch_cdn",
+ "ctret.de": "dmwd",
+ "nocookie.net": "wikia_cdn",
+ "voicefive.com": "voicefive",
+ "rundsp.com": "run",
+ "runadtag.com": "run",
+ "orange.fr": "orange",
+ "orangeads.fr": "orange",
+ "media-imdb.com": "media-imdb.com",
+ "mktoresp.com": "marketo",
+ "marketo.com": "marketo",
+ "marketo.net": "marketo",
+ "shopify.com": "shopify_stats",
+ "dc-storm.com": "dc_stormiq",
+ "stormcontainertag.com": "dc_stormiq",
+ "h4k5.com": "dc_stormiq",
+ "stormiq.com": "dc_stormiq",
+ "mxptint.net": "maxpoint_interactive",
+ "adxpansion.com": "adxpansion",
+ "onaudience.com": "onaudience",
+ "app.link": "branch_metrics",
+ "uservoice.com": "uservoice",
+ "owneriq.net": "owneriq",
+ "d1ivexoxmp59q7.cloudfront.net": "convertro",
+ "convertro.com": "convertro",
+ "connextra.com": "connextra",
+ "yandexadexchange.net": "yandex_adexchange",
+ "digicert.com": "digicert_trust_seal",
+ "urban-media.com": "urban-media.com",
+ "marketgid.com": "marketgid",
+ "adtiger.de": "adtiger",
+ "pulpix.com": "pulpix.com",
+ "branch.io": "branch_metrics",
+ "smartclick.net": "smartclick.net",
+ "xing-share.com": "xing",
+ "travelaudience.com": "travel_audience",
+ "streamrail.com": "streamrail.com",
+ "t8cdn.com": "t8cdn.com",
+ "apple.com": "apple",
+ "domdex.com": "magnetic",
+ "d3ezl4ajpp2zy8.cloudfront.net": "magnetic",
+ "domdex.net": "magnetic",
+ "schneevonmorgen.com": "schneevonmorgen.com",
+ "fullstory.com": "fullstory",
+ "vicomi.com": "vicomi.com",
+ "alipay.com": "alipay.com",
+ "deichmann.com": "deichmann.com",
+ "upravel.com": "upravel.com",
+ "hqentertainmentnetwork.com": "hqentertainmentnetwork.com",
+ "here.com": "here__formerly_navteq_media_solutions_",
+ "anrdoezrs.net": "commission_junction",
+ "apmebf.com": "commission_junction",
+ "ftjcfx.com": "commission_junction",
+ "qksz.net": "commission_junction",
+ "awltovhc.com": "commission_junction",
+ "emjcd.com": "commission_junction",
+ "tkqlhce.com": "commission_junction",
+ "lduhtrp.net": "commission_junction",
+ "yceml.net": "commission_junction",
+ "tqlkg.com": "commission_junction",
+ "afcyhf.com": "commission_junction",
+ "othersearch.info": "othersearch.info",
+ "avocet.io": "avocet",
+ "toplist.cz": "toplist.cz",
+ "microsofttranslator.com": "microsoft",
+ "optimicdn.com": "optimicdn.com",
+ "bounceexchange.com": "bounce_exchange",
+ "txt.eu": "adrom",
+ "rvty.net": "rtblab",
+ "1e100cdn.net": "google_servers",
+ "haendlerbund.de": "haendlerbund.de",
+ "symantec.com": "symantec",
+ "thawte.com": "symantec",
+ "cdn-net.com": "cdn-net.com",
+ "omarsys.com": "omarsys.com",
+ "adwolf.ru": "adfox",
+ "adfox.ru": "adfox",
+ "iperceptions.com": "iperceptions",
+ "pusherapp.com": "pusher.com",
+ "streamrail.net": "streamrail.com",
+ "chaturbate.com": "chaturbate.com",
+ "sixt-neuwagen.de": "sixt-neuwagen.de",
+ "yieldify.com": "yieldify",
+ "cdnetworks.net": "cdnetworks.net",
+ "komoona.com": "komoona",
+ "fwmrm.net": "freewheel",
+ "deployads.com": "sortable",
+ "sessioncam.com": "sessioncam",
+ "d2oh4tlt9mrke9.cloudfront.net": "sessioncam",
+ "top100.ru": "rambler",
+ "sail-horizon.com": "sailthru_horizon",
+ "sailthru.com": "sailthru_horizon",
+ "datacaciques.com": "datacaciques.com",
+ "mediarithmics.com": "mediarithmics.com",
+ "clicktripz.com": "clicktripz",
+ "apicit.net": "apicit.net",
+ "microsoftonline.com": "microsoft",
+ "glomex.cloud": "glomex.com",
+ "voluumtrk3.com": "voluum",
+ "ampproject.org": "ampproject.org",
+ "deviantart.net": "deviantart.net",
+ "txxx.com": "txxx.com",
+ "uppr.de": "uppr.de",
+ "getsitecontrol.com": "get_site_control",
+ "getclicky.com": "clicky",
+ "staticstuff.net": "clicky",
+ "msedge.net": "microsoft",
+ "wikia-beacon.com": "wikia_beacon",
+ "aldi-international.com": "aldi-international.com",
+ "bigpoint.net": "bigpoint",
+ "bigpoint.com": "bigpoint",
+ "bpsecure.com": "bigpoint",
+ "rhythmxchange.com": "rythmxchange",
+ "lenua.de": "lenua.de",
+ "lentainform.com": "lentainform.com",
+ "avail.net": "avail",
+ "twitch.tv": "twitch.tv",
+ "site24x7rum.com": "site24x7",
+ "olark.com": "olark",
+ "sddan.com": "sirdata",
+ "wdr.de": "wdr.de",
+ "platform.tumblr.com": "tumblr_buttons",
+ "netseer.com": "netseer",
+ "githubusercontent.com": "github",
+ "vi-tag.net": "vivalu",
+ "d15qhc0lu1ghnk.cloudfront.net": "errorception",
+ "errorception.com": "errorception",
+ "iias.eu": "iias.eu",
+ "evyy.net": "impact_radius",
+ "impactradius.com": "impact_radius",
+ "r7ls.net": "impact_radius",
+ "ojrq.net": "impact_radius",
+ "7eer.net": "impact_radius",
+ "d3cxv97fi8q177.cloudfront.net": "impact_radius",
+ "answerscloud.com": "answers_cloud_service",
+ "aniview.com": "aniview.com",
+ "decibelinsight.net": "decibel_insight",
+ "adobetag.com": "adobe_tagmanager",
+ "overheat.it": "overheat.it",
+ "playwire.com": "snowplow",
+ "dc8xl0ndzn2cb.cloudfront.net": "snowplow",
+ "d346whrrklhco7.cloudfront.net": "snowplow",
+ "d78fikflryjgj.cloudfront.net": "snowplow",
+ "psyma.com": "psyma",
+ "bauernative.com": "bauer_media",
+ "homeaway.com": "homeaway",
+ "perfectaudience.com": "perfect_audience",
+ "prfct.co": "perfect_audience",
+ "itineraire.info": "itineraire.info",
+ "revcontent.com": "revcontent",
+ "algolia.net": "algolia.net",
+ "zergnet.com": "zergnet",
+ "adskeeper.co.uk": "adskeeper",
+ "jivox.com": "jivox",
+ "basilic.io": "basilic.io",
+ "crosssell.info": "crosssell.info",
+ "adlink.net": "hi-media_performance",
+ "comclick.com": "hi-media_performance",
+ "hi-mediaserver.com": "hi-media_performance",
+ "himediads.com": "hi-media_performance",
+ "himediadx.com": "hi-media_performance",
+ "performgroup.com": "perform_group",
+ "xg4ken.com": "kenshoo",
+ "stepstone.com": "stepstone.com",
+ "cleverpush.com": "clever_push",
+ "recreativ.ru": "recreativ",
+ "polldaddy.com": "polldaddy",
+ "s3xified.com": "s3xified.com",
+ "pornhub.com": "pornhub",
+ "cloudapp.net": "microsoft",
+ "msn.com": "msn",
+ "azurewebsites.net": "microsoft",
+ "intentmedia.net": "intent_media",
+ "rtl.de": "rtl_group",
+ "skadtec.com": "skadtec.com",
+ "ntv.io": "nativo",
+ "postrelease.com": "nativo",
+ "kaltura.com": "kaltura",
+ "effiliation.com": "effiliation",
+ "im-apps.net": "intimate_merger",
+ "innogames.de": "innogames.de",
+ "districtm.io": "districtm.io",
+ "yandex.st": "yandex.api",
+ "snacktv.de": "snacktv",
+ "trafficforce.com": "trafficforce",
+ "luckyorange.net": "lucky_orange",
+ "d37gvrvc0wt4s1.cloudfront.net": "rollbar",
+ "baur.de": "baur.de",
+ "adwebster.com": "adwebster",
+ "clickonometrics.pl": "clickonometrics",
+ "realytics.io": "realytics.io",
+ "nativeads.com": "nativeads.com",
+ "proxistore.com": "proxistore.com",
+ "greentube.com": "greentube.com",
+ "herokuapp.com": "heroku",
+ "adzerk.net": "adzerk",
+ "lengow.com": "lengow",
+ "adworxs.net": "adworxs.net",
+ "jscache.com": "tripadvisor",
+ "clickintext.net": "clickintext",
+ "tamedia.ch": "tamedia.ch",
+ "visiblemeasures.com": "visible_measures",
+ "viewablemedia.net": "visible_measures",
+ "gamedistribution.com": "gamedistribution.com",
+ "flattr.com": "flattr_button",
+ "sstatic.net": "sstatic.net",
+ "trustwave.com": "trustwave.com",
+ "siteimprove.com": "siteimprove",
+ "adtrue.com": "adtrue",
+ "mmtro.com": "1000mercis",
+ "mbww.com": "ipg_mediabrands",
+ "tradetracker.net": "tradetracker",
+ "heias.com": "adnologies",
+ "24-ads.com": "24-ads.com",
+ "pushnative.com": "pushnative.com",
+ "flagcounter.com": "flag_counter",
+ "media6degrees.com": "dstillery",
+ "office.net": "office.net",
+ "tinypass.com": "tinypass",
+ "mobtrks.com": "mobtrks.com",
+ "yoochoose.net": "yoochoose.net",
+ "cpmstar.com": "cpmstar",
+ "bnmla.com": "blink_new_media",
+ "acquia.com": "acquia.com",
+ "grvcdn.com": "gravity_insights",
+ "gravity.com": "gravity_insights",
+ "s-microsoft.com": "microsoft",
+ "baynote.net": "baynote_observer",
+ "demandbase.com": "demandbase",
+ "stackpathdns.com": "stackpathdns.com",
+ "booking.com": "booking.com",
+ "optimatic.com": "optimatic",
+ "dcniko1cv0rz.cloudfront.net": "realytics",
+ "digitaltarget.ru": "vi",
+ "fyre.co": "livefyre",
+ "livefyre.com": "livefyre",
+ "digiteka.net": "digiteka",
+ "researchnow.com": "research_now",
+ "baidu.com": "baidu_ads",
+ "baidustatic.com": "baidu_ads",
+ "adrta.com": "pixalate",
+ "aidata.io": "aidata.io",
+ "ywxi.net": "mcafee_secure",
+ "scanalert.com": "mcafee_secure",
+ "livesportmedia.eu": "livesportmedia.eu",
+ "smi2.ru": "smi2.ru",
+ "vooxe.com": "vooxe.com",
+ "walmart.com": "walmart",
+ "smi2.net": "smi2.ru",
+ "nice264.com": "nice264.com",
+ "vidazoo.com": "vidazoo.com",
+ "d36lvucg9kzous.cloudfront.net": "heap",
+ "heapanalytics.com": "heap",
+ "kaloo.ga": "kaloo.ga",
+ "layer-ad.org": "layer-ad.org",
+ "loop11.com": "loop11",
+ "spot.im": "spot.im",
+ "howtank.com": "howtank.com",
+ "sexad.net": "sexadnetwork",
+ "pushcrew.com": "pushcrew",
+ "swisscom.ch": "swisscom",
+ "spongecell.com": "spongecell",
+ "getiton.com": "friendfinder_network",
+ "pop6.com": "friendfinder_network",
+ "adultfriendfinder.com": "friendfinder_network",
+ "streamray.com": "friendfinder_network",
+ "cams.com": "friendfinder_network",
+ "amigos.com": "friendfinder_network",
+ "board-books.com": "friendfinder_network",
+ "facebookofsex.com": "friendfinder_network",
+ "nostringsattached.com": "friendfinder_network",
+ "netrk.net": "netrk.net",
+ "stroeermediabrands.de": "stroer_digital_media",
+ "cloud-media.fr": "cloud-media.fr",
+ "vizury.com": "vizury",
+ "admized.com": "admized",
+ "sumologic.com": "sumologic.com",
+ "raygun.io": "raygun",
+ "yahoo.co.jp": "yahoo_japan",
+ "effectivemeasure.net": "effective_measure",
+ "bluelithium.com": "bluelithium",
+ "adrevolver.com": "bluelithium",
+ "adocean.pl": "adocean",
+ "c1exchange.com": "c1_exchange",
+ "netbiscuits.net": "netbiscuits",
+ "expedia.com": "expedia",
+ "trkme.net": "nonstop_consulting",
+ "jumptap.com": "jumptap",
+ "unister-gmbh.de": "unister",
+ "unister-adservices.com": "unister",
+ "udmserve.net": "underdog_media",
+ "wwwpromoter.com": "wwwpromoter",
+ "maxmind.com": "maxmind",
+ "hprofits.com": "aemediatraffic",
+ "fstrk.net": "fstrk.net",
+ "toroadvertisingmedia.com": "toro",
+ "toro-tags.com": "toro",
+ "toroadvertising.com": "toro",
+ "content.ad": "content.ad",
+ "babator.com": "babator.com",
+ "algovid.com": "algovid.com",
+ "jetlore.com": "jetlore",
+ "feedbackify.com": "feedbackify",
+ "flix360.com": "flixmedia",
+ "visualdna.com": "visualdna",
+ "vdna-assets.com": "visualdna",
+ "popcash.net": "popcash",
+ "f11-ads.com": "f11-ads.com",
+ "stumbleupon.com": "stumbleupon_widgets",
+ "su.pr": "stumbleupon_widgets",
+ "stumble-upon.com": "stumbleupon_widgets",
+ "scdn.co": "spotify",
+ "adgear.com": "adgear",
+ "adgrx.com": "adgear",
+ "extreme-dm.com": "extreme_tracker",
+ "leadplace.fr": "leadplace",
+ "intextscript.com": "infolinks",
+ "infolinks.com": "infolinks",
+ "smartsuppchat.com": "smartsupp_chat",
+ "redtube.com": "redtube.com",
+ "adc-serv.net": "adc_media",
+ "hstrck.com": "hstrck.com",
+ "tracc.it": "tracc.it",
+ "walkme.com": "walkme.com",
+ "d36mpcpuzc4ztk.cloudfront.net": "freshdesk",
+ "freshdesk.com": "freshdesk",
+ "fqtag.com": "forensiq",
+ "securepaths.com": "forensiq",
+ "privacy-policy.truste.com": "truste_seal",
+ "optimonk.com": "optimonk",
+ "imedia.cz": "seznam",
+ "oxomi.com": "oxomi.com",
+ "sas.com": "sas",
+ "aimatch.com": "sas",
+ "netdna-cdn.com": "maxcdn",
+ "gdmdigital.com": "gdm_digital",
+ "adnetworkperformance.com": "adnetworkperformance.com",
+ "stackadapt.com": "stackadapt",
+ "ria.ru": "ria.ru",
+ "skyscnr.com": "skyscnr.com",
+ "imonomy.com": "imonomy",
+ "edigitalsurvey.com": "maru-edu",
+ "bpcdn.net": "bigpoint",
+ "truste.com": "trustarc",
+ "adbetclickin.pink": "adbetclickin.pink",
+ "videoadex.com": "videoadex.com",
+ "monster.com": "monster_advertising",
+ "atlassian.net": "atlassian.net",
+ "siteimproveanalytics.com": "siteimprove_analytics",
+ "mirtesen.ru": "mirtesen.ru",
+ "lenmit.com": "lenmit.com",
+ "semknox.com": "semknox.com",
+ "wiredminds.de": "wiredminds",
+ "adglare.net": "adglare.net",
+ "hivedx.com": "hivedx.com",
+ "1and1.com": "1und1",
+ "audiencesquare.com": "audiencesquare.com",
+ "fidelity-media.com": "fidelity_media",
+ "adsnative.com": "adsnative",
+ "sophus3.com": "sophus3",
+ "rightnowtech.com": "oracle_rightnow",
+ "dtym7iokkjlif.cloudfront.net": "shareaholic",
+ "shareaholic.com": "shareaholic",
+ "wistia.com": "wistia",
+ "wistia.net": "wistia",
+ "sundaysky.com": "sundaysky",
+ "pardot.com": "pardot",
+ "qualaroo.com": "qualaroo",
+ "logsss.com": "logsss.com",
+ "github.com": "github",
+ "postaffiliatepro.com": "post_affiliate_pro",
+ "guj.de": "guj.de",
+ "deepintent.com": "deepintent.com",
+ "acuityplatform.com": "acuity_ads",
+ "exe.bid": "bidswitch",
+ "33across.com": "33across",
+ "bigpoint-payment.com": "bigpoint",
+ "dantrack.net": "dantrack.net",
+ "firstimpression.io": "first_impression",
+ "pubnub.com": "pubnub.com",
+ "vindicosuite.com": "vindico_group",
+ "dyntracker.de": "dynamic_1001_gmbh",
+ "ist-track.com": "intelligent_reach",
+ "rnengage.com": "oracle_rightnow",
+ "cloudflare.com": "cloudflare",
+ "cloudflare.net": "cloudflare",
+ "spotify.com": "spotify",
+ "pulsepoint.com": "pulsepoint",
+ "abmr.net": "akamai_technologies",
+ "nativendo.de": "seeding_alliance",
+ "scarabresearch.com": "scarabresearch",
+ "vinsight.de": "valiton",
+ "signal.co": "signal",
+ "remintrex.com": "remintrex",
+ "maxcdn.com": "maxcdn",
+ "trafficfactory.biz": "trafficfactory",
+ "adsbookie.com": "adsbookie",
+ "zeusclicks.com": "zeusclicks",
+ "contentpass.net": "contentpass",
+ "contentpass.de": "contentpass",
+ "weather.com": "the_weather_company",
+ "youporn.com": "youporn",
+ "erne.co": "adpilot",
+ "adpilot.at": "adpilot",
+ "microsoft.com": "microsoft",
+ "innogames.com": "innogames.de",
+ "mlsat02.de": "metapeople",
+ "wetter.com": "wetter_com",
+ "tremorhub.com": "tremor_video",
+ "tremorvideo.com": "tremor_video",
+ "cdn77.org": "cdn77",
+ "cdn77.com": "cdn77",
+ "wywyuserservice.com": "wywy.com",
+ "imgfarm.com": "mindspark",
+ "mindspark.com": "mindspark",
+ "bonial.com": "bonial",
+ "bonialserviceswidget.de": "bonial",
+ "bonialconnect.com": "bonial",
+ "254a.com": "yieldr",
+ "extend.tv": "zypmedia",
+ "rkdms.com": "merkle_rkg",
+ "volvelle.tech": "optomaton",
+ "payments-amazon.com": "amazon_payments",
+ "google.dk": "google",
+ "bootstrapcdn.com": "bootstrap",
+ "jquery.com": "jquery",
+ "createjs.com": "createjs",
+ "jwplayer.com": "jw_player",
+ "jwplatform.com": "jw_player",
+ "jsdelivr.net": "jsdelivr",
+ "interactivemedia.net": "stroer_digital_media",
+ "stroeerdigitalgroup.de": "stroer_digital_media",
+ "stroeerdp.de": "stroer_digital_media",
+ "aticdn.net": "at_internet",
+ "t4ft.de": "batch_media",
+ "t.co": "twitter",
+ "classistatic.de": "ebay",
+ "ablida.de": "ablida",
+ "ablida.net": "ablida",
+ "telekom.com": "t-mobile",
+ "oms.eu": "oms",
+ "1und1.de": "1und1",
+ "uicdn.com": "1und1",
+ "ahcdn.com": "advanced_hosters",
+ "sap-xm.org": "sap_xm",
+ "images-amazon.com": "amazon_cdn",
+ "kameleoon.eu": "kameleoon",
+ "nsimg.net": "icf_technology",
+ "bf-tools.net": "burda",
+ "yagiay.com": "addefend",
+ "permutive.com": "permutive",
+ "bstatic.com": "booking.com",
+ "bstatic.de": "burda_digital_systems",
+ "bildstatic.de": "bild",
+ "disquscdn.com": "disqus",
+ "static-fra.de": "rtl_group",
+ "technical-service.net": "rtl_group",
+ "img-bahn.de": "bahn_de",
+ "bahn.de": "bahn_de",
+ "ebaycommercenetwork.com": "ebay",
+ "toi.de": "t-mobile",
+ "aspnetcdn.com": "aspnetcdn",
+ "weltsport.net": "heimspiel",
+ "webde.de": "web.de",
+ "emsservice.de": "gujems",
+ "tisoomi-services.com": "tisoomi",
+ "iqcontentplatform.de": "circit",
+ "shoppingshadow.com": "shopping_com",
+ "eluxer.net": "eluxer_net",
+ "worldnaturenet.xyz": "worldnaturenet_xyz",
+ "tdsrmbl.net": "tdsrmbl_net",
+ "pizzaandads.com": "pizzaandads_com",
+ "wayfair.com": "wayfair_com",
+ "instagram.com": "instagram_com",
+ "immobilienscout24.de": "immobilienscout24_de",
+ "zalando.de": "zalando_de",
+ "gmx.net": "gmx_net",
+ "xvideos.com": "xvideos_com",
+ "blogspot.com": "blogspot_com",
+ "cdninstagram.com": "instagram_com",
+ "ztat.net": "zalando_de",
+ "gmxpro.net": "gmx_net",
+ "nerfherdersolo.com": "nerfherdersolo_com",
+ "static-immobilienscout24.de": "immobilienscout24_de",
+ "ravenjs.com": "sentry",
+ "sentry.io": "sentry",
+ "performax.cz": "performio",
+ "cptrack.de": "channel_pilot_solutions",
+ "qubit.com": "qubit",
+ "d3c3cq33003psk.cloudfront.net": "qubit",
+ "eroadvertising.com": "eroadvertising",
+ "cdntrf.com": "traffective",
+ "traffective.com": "traffective",
+ "rawgit.com": "rawgit",
+ "opinary.com": "opinary",
+ "cloudinary.com": "cloudinary",
+ "jimstatic.com": "jimdo.com",
+ "midasplayer.com": "king_com",
+ "gfx.ms": "microsoft",
+ "blogger.com": "blogspot_com",
+ "distiltag.com": "distil_tag",
+ "r1-cdn.net": "radiumone",
+ "netzathleten-media.de": "netletix",
+ "openload.co": "openload",
+ "smartadcheck.de": "adgoal",
+ "snplow.net": "snowplow",
+ "q-divisioncdn.de": "q_division",
+ "nflxext.com": "netflix",
+ "hyvyd.com": "hyvyd",
+ "sdp-campaign.de": "t-mobile",
+ "cdnnetwok.xyz": "cdnnetwok_xyz",
+ "foxydeal.com": "foxydeal_com",
+ "webclicks24.com": "webclicks24_com",
+ "easylist.club": "easylist_club",
+ "propvideo.net": "propvideo_net",
+ "generaltracking.de": "generaltracking_de",
+ "atsfi.de": "atsfi_de",
+ "continum.net": "continum_net",
+ "freenet.de": "freenet_de",
+ "fontawesome.com": "fontawesome_com",
+ "idealo.com": "idealo_com",
+ "4finance.com": "4finance_com",
+ "ausgezeichnet.org": "ausgezeichnet_org",
+ "freegeoip.net": "freegeoip_net",
+ "adac.de": "adac_de",
+ "stailamedia.com": "stailamedia_com",
+ "crimsonhexagon.com": "crimsonhexagon_com",
+ "ehi-siegel.de": "ehi-siegel_de",
+ "s24.com": "s24_com",
+ "redblue.de": "redblue_de",
+ "tchibo.de": "tchibo_de",
+ "chefkoch.de": "chefkoch_de",
+ "freent.de": "freenet_de",
+ "hexagon-analytics.com": "crimsonhexagon_com",
+ "tchibo-content.de": "tchibo_de",
+ "zalan.do": "zalando_de",
+ "chefkoch-cdn.de": "chefkoch_de",
+ "dsp.io": "iotec",
+ "a3cloud.net": "a3cloud_net",
+ "maxonclick.com": "maxonclick_com",
+ "toponclick.com": "toponclick_com",
+ "westlotto.com": "westlotto_com",
+ "admedo.com": "admedo_com",
+ "adbrn.com": "adbrain",
+ "tellapart.com": "twitter_for_business",
+ "brightonclick.com": "brightonclick.com",
+ "cwkuki.com": "voluum",
+ "trustarc.com": "trustarc",
+ "xxxlshop.de": "xxxlshop.de",
+ "fyber.com": "fyber",
+ "eshopcomp.com": "eshopcomp.com",
+ "vodafone.de": "vodafone.de",
+ "davebestdeals.com": "davebestdeals.com",
+ "stathat.com": "stathat",
+ "ubersetzung-app.com": "ubersetzung-app.com",
+ "socdm.com": "supership",
+ "aemediatraffic.com": "aemediatraffic",
+ "insightexpressai.com": "insightexpress",
+ "impact-ad.jp": "platformone",
+ "adrom.net": "adrom",
+ "servebom.com": "purch",
+ "sre-perim.com": "tumblr_analytics",
+ "rockabox.co": "scoota",
+ "bit.ly": "bitly",
+ "programattik.com": "programattik",
+ "cardlytics.com": "cardlytics",
+ "wtp101.com": "digilant",
+ "site24x7rum.eu": "site24x7",
+ "shortnews.de": "shortnews",
+ "mrpdata.com": "mrpdata",
+ "mrpdata.net": "mrpdata",
+ "adizio.com": "admedo_com",
+ "pnamic.com": "pnamic.com",
+ "bumlam.com": "bumlam.com",
+ "adingo.jp": "fluct",
+ "ps7894.com": "interyield",
+ "adguard.com": "adguard",
+ "truoptik.com": "truoptik",
+ "digitru.st": "digitrust",
+ "adentifi.com": "adtheorent",
+ "narrative.io": "narrative_io",
+ "dcbap.com": "dcbap.com",
+ "brealtime.com": "brealtime",
+ "donation-tools.org": "donationtools",
+ "hlserve.com": "hooklogic",
+ "ivitrack.com": "ividence",
+ "comprigo.com": "comprigo",
+ "marvellousmachine.net": "marvellous_machine",
+ "seadform.net": "adform",
+ "afgr2.com": "afgr2.com",
+ "emxdgt.com": "orc_international",
+ "active-agent.com": "active_agent",
+ "yieldmo.com": "yieldmo",
+ "xvideos-cdn.com": "xvideos_com",
+ "pmddby.com": "pmddby.com",
+ "vinted.net": "vinted",
+ "typeform.com": "typeform",
+ "amazonwebservices.com": "amazon_web_services",
+ "awsstatic.com": "amazon_web_services",
+ "audienceinsights.net": "adthink",
+ "adthink.com": "adthink",
+ "behavioralengine.com": "onaudience",
+ "d12ramskps3070.cloudfront.net": "atlassian.net",
+ "atl-paas.net": "atlassian.net",
+ "adx1.com": "admachine",
+ "brillen.de": "brillen.de",
+ "awecr.com": "docler",
+ "google.ru": "google",
+ "viralgains.com": "viralgains",
+ "kdata.fr": "capitaldata",
+ "akamoihd.net": "akamoihd.net",
+ "magnuum.com": "magnuum.com",
+ "adswizz.com": "adswizz",
+ "venturead.com": "venturead.com",
+ "ad-stir.com": "adstir",
+ "fwbntw.com": "docler",
+ "mstrlytcs.com": "optinmonster",
+ "optnmstr.com": "optinmonster",
+ "visualstudio.com": "visualstudio.com",
+ "storygize.net": "storygize",
+ "spoutable.com": "spoutable",
+ "petametrics.com": "petametrics",
+ "luckyorange.com": "lucky_orange",
+ "livestatserver.com": "lucky_orange",
+ "wikiquote.org": "wikimedia.org",
+ "advertserve.com": "advertserve",
+ "audiencemanager.de": "nano_interactive",
+ "94j7afz2nr.xyz": "94j7afz2nr.xyz",
+ "pubmine.com": "wordpress_ads",
+ "tubecorporate.com": "tubecorporate",
+ "telekom-dienste.de": "t-mobile",
+ "c-i.as": "contact_impact",
+ "google.fi": "google",
+ "google.com.ua": "google",
+ "google.se": "google",
+ "google.com.au": "google",
+ "google.no": "google",
+ "google.cz": "google",
+ "google.pt": "google",
+ "google.co.in": "google",
+ "google.hu": "google",
+ "google.ro": "google",
+ "google.rs": "google",
+ "google.tn": "google",
+ "google.com.mx": "google",
+ "google.com.tr": "google",
+ "ownpage.fr": "ownpage",
+ "dianomi.com": "dianomi",
+ "dianomioffers.co.uk": "dianomi",
+ "d3von6il1wr7wo.cloudfront.net": "dianomi",
+ "bitrix.info": "bitrix",
+ "bitrix.ru": "bitrix",
+ "wirecard.com": "wirecard",
+ "wirecard.de": "wirecard",
+ "rutarget.ru": "segmento",
+ "pro-market.net": "datonics",
+ "jivosite.com": "jivochat",
+ "impactradius-tag.com": "impact_radius",
+ "musthird.com": "airbnb",
+ "widespace.com": "widespace",
+ "pfrm.co": "platform360",
+ "kaeufersiegel.de": "kaeufersiegel.de",
+ "alexametrics.com": "alexa_metrics",
+ "xing.com": "xing",
+ "mapbox.com": "mapbox",
+ "startappservice.com": "startapp",
+ "ipify.org": "ipify",
+ "yimg.jp": "yahoo",
+ "keywee.co": "keywee",
+ "trvl-px.com": "expedia",
+ "rtbsuperhub.com": "rtbsuperhub.com",
+ "bebi.com": "bebi",
+ "smartertravel.com": "smarter_travel",
+ "giphy.com": "giphy.com",
+ "dq4irj27fs462.cloudfront.net": "userlike.com",
+ "userlike-cdn-widgets.s3-eu-west-1.amazonaws.com": "userlike.com",
+ "pixel.wp.com": "jetpack",
+ "stats.wp.com": "jetpack",
+ "acpm.fr": "acpm.fr",
+ "olx-st.com": "olx-st.com",
+ "adtlgc.com": "enreach",
+ "bbelements.com": "internet_billboard",
+ "sendpulse.com": "sendpulse.com",
+ "dotmetrics.net": "dotmetrics.net",
+ "bigmir.net": "bigmir.net",
+ "intercomassets.com": "intercom",
+ "onet.pl": "onet.pl",
+ "ocdn.eu": "onet.pl",
+ "metabar.ru": "yandex_advisor",
+ "dropbox.com": "dropbox.com",
+ "uptolike.com": "uptolike.com",
+ "digioh.com": "digioh",
+ "lightboxcdn.com": "digioh",
+ "caltat.com": "caltat.com",
+ "1dmp.io": "1dmp.io",
+ "datamind.ru": "datamind.ru",
+ "embed.ly": "embed.ly",
+ "embedly.com": "embed.ly",
+ "hybrid.ai": "hybrid.ai",
+ "targetix.net": "hybrid.ai",
+ "dynatrace.com": "dynatrace.com",
+ "pluso.ru": "pluso.ru",
+ "adsniper.ru": "adsniper.ru",
+ "tovarro.com": "tovarro.com",
+ "crosspixel.net": "crosspixel",
+ "crsspxl.com": "crosspixel",
+ "ucoz.net": "ucoz.net",
+ "audtd.com": "audtd.com",
+ "gfycat.com": "gfycat.com",
+ "squarespace.com": "squarespace.com",
+ "acestream.net": "acestream.net",
+ "yapfiles.ru": "yapfiles.ru",
+ "bfmio.com": "beachfront",
+ "dmxleo.com": "dailymotion_advertising",
+ "kissmetrics.com": "kissmetrics.com",
+ "perfdrive.com": "perfdrive.com",
+ "pendo.io": "pendo.io",
+ "otm-r.com": "otm-r.com",
+ "rnet.plus": "rambler",
+ "beeline.ru": "beeline.ru",
+ "wp.pl": "wp.pl",
+ "24smi.net": "24smi",
+ "24smi.org": "24smi",
+ "linksynergy.com": "linksynergy.com",
+ "livetex.ru": "livetex.ru",
+ "seedtag.com": "seedtag.com",
+ "hotlog.ru": "hotlog.ru",
+ "mathjax.org": "mathjax.org",
+ "quora.com": "quora.com",
+ "readspeaker.com": "readspeaker.com",
+ "sanoma.fi": "sanoma.fi",
+ "ilsemedia.nl": "sanoma.fi",
+ "ad6media.fr": "ad6media",
+ "ad6media.es": "ad6media",
+ "ad6media.co.uk": "ad6media",
+ "ad6media.com": "ad6media",
+ "ad6.fr": "ad6media",
+ "iubenda.com": "iubenda.com",
+ "cackle.me": "cackle.me",
+ "giraff.io": "giraff.io",
+ "feedburner.com": "feedburner.com",
+ "persgroep.net": "persgroep",
+ "list.ru": "list.ru",
+ "wikipedia.org": "wikimedia.org",
+ "retailrocket.net": "retailrocket.net",
+ "retailrocket.ru": "retailrocket.net",
+ "micpn.com": "movable_ink",
+ "smyte.com": "smyte",
+ "email-reflex.com": "eperflex",
+ "ccmbg.com": "ccm_benchmark",
+ "kataweb.it": "kataweb.it",
+ "bouncex.net": "bouncex",
+ "bouncex.com": "bouncex",
+ "userzoom.com": "userzoom.com",
+ "blueconic.net": "blueconic.net",
+ "flocktory.com": "flocktory.com",
+ "messenger.com": "messenger.com",
+ "ooyala.com": "ooyala.com",
+ "naver.com": "naver.com",
+ "mailerlite.com": "mailerlite.com",
+ "mediator.media": "mediator.media",
+ "netaffiliation.com": "metaffiliation.com",
+ "mopinion.com": "mopinion.com",
+ "acint.net": "acint.net",
+ "adalyser.com": "adalyser.com",
+ "adblade.com": "adblade.com",
+ "netsprint.eu": "adkontekst.pl",
+ "admitad.com": "admitad.com",
+ "affectv.com": "affec.tv",
+ "airpr.com": "airpr.com",
+ "allo-pages.fr": "allo-pages.fr",
+ "apa.at": "apa.at",
+ "artlebedev.ru": "artlebedev.ru",
+ "atlassian.com": "atlassian.net",
+ "awin.com": "awin1.com",
+ "bannerflow.com": "bannerflow.com",
+ "beeketing.com": "beeketing.com",
+ "bemobile.ua": "bemobile.ua",
+ "betweendigital.com": "betweendigital.com",
+ "bid.run": "bid.run",
+ "bigcommerce.com": "bigcommerce.com",
+ "blogfoster.com": "blogfoster.com",
+ "bluetriangletech.com": "btttag.com",
+ "bugherd.com": "bugherd.com",
+ "cbsinteractive.com": "cbsi.com",
+ "cdnvideo.com": "cdnvideo.com",
+ "clearbit.com": "clearbit.com",
+ "cnetcontent.com": "cnetcontent.com",
+ "umeng.com": "cnzz.com",
+ "condenast.com": "condenastdigital.com",
+ "connatix.com": "connatix.com",
+ "contentexchange.me": "contentexchange.me",
+ "dailymail.co.uk": "dailymail.co.uk",
+ "sociaplus.com": "sociaplus.com",
+ "salesmanago.com": "salesmanago.pl",
+ "zebestof.com": "zebestof.com",
+ "wysistat.net": "wysistat.com",
+ "o2.pl": "o2.pl",
+ "omniconvert.com": "omniconvert.com",
+ "optincollect.com": "optinproject.com",
+ "ora.tv": "ora.tv",
+ "owox.com": "owox.com",
+ "peer5.com": "peer5.com",
+ "pepper.com": "pepper.com",
+ "pladform.com": "pladform.ru",
+ "playbuzz.com": "playbuzz.com",
+ "powr.io": "powr.io",
+ "pmdrecrute.com": "prismamediadigital.com",
+ "privy.com": "privy.com",
+ "pscp.tv": "pscp.tv",
+ "purch.com": "purch",
+ "push.world": "push.world",
+ "qq.com": "qq.com",
+ "quarticon.com": "quartic.pl",
+ "rcsmediagroup.it": "rcs.it",
+ "recettes.net": "recettes.net",
+ "atendesoftware.pl": "redcdn.pl",
+ "reembed.com": "reembed.com",
+ "reevoo.com": "reevoo.com",
+ "republer.com": "republer.com",
+ "sli-system.com": "resultspage.com",
+ "ringier.ch": "ringier.ch",
+ "riskfield.com": "riskfield.com",
+ "force.com": "salesforce.com",
+ "salesforce.com": "salesforce.com",
+ "samba.tv": "samba.tv",
+ "sape.ru": "sape.ru",
+ "schibsted.com": "schibsted",
+ "schibsted.io": "schibsted",
+ "sentifi.com": "sentifi.com",
+ "shopifycdn.com": "shopifycdn.com",
+ "shopifycloud.com": "shopifycloud.com",
+ "fogl1onf.com": "onfocus.io",
+ "dmcdn.net": "dailymotion",
+ "onestore.ms": "microsoft",
+ "bdstatic.com": "baidu_static",
+ "trouter.io": "microsoft",
+ "sdad.guru": "instart_logic",
+ "wanadoo.fr": "orange_france",
+ "lemde.fr": "le_monde.fr",
+ "accengage.net": "accengage",
+ "mediavoice.com": "polar.me",
+ "nekudo.com": "nekudo.com",
+ "wikia-services.com": "wikia-services.com",
+ "pushwoosh.com": "pushwoosh.com",
+ "onfocus.io": "onfocus.io",
+ "fastpic.ru": "fastpic.ru",
+ "os.tc": "onesignal",
+ "fileserve.xyz": "fileserve",
+ "vkuservideo.net": "vk.com",
+ "guim.co.uk": "the_guardian",
+ "devappgrant.space": "monero_miner",
+ "allegrostatic.com": "allegro.pl",
+ "allegroimg.com": "allegro.pl",
+ "fonts.googleapis.com": "google_fonts",
+ "redditstatic.com": "reddit",
+ "yieldlove.com": "yieldlove",
+ "yieldlove-ad-serving.net": "yieldlove",
+ "intermarkets.net": "intermarkets.net",
+ "eproof.com": "eproof",
+ "combotag.com": "combotag",
+ "districtm.ca": "districtm.io",
+ "zdbb.net": "ziff_davis",
+ "ziffdavis.com": "ziff_davis",
+ "ziffprod.com": "ziff_davis",
+ "ziffdavisinternational.com": "ziff_davis",
+ "ziffstatic.com": "ziff_davis",
+ "webtest.net": "ziff_davis",
+ "jtvnw.net": "twitch_cdn",
+ "disqusads.com": "disqus_ads",
+ "typography.com": "typography.com",
+ "bbci.co.uk": "bbci",
+ "puserving.com": "puserving.com",
+ "mradx.net": "mail.ru_group",
+ "piguiqproxy.com": "piguiqproxy.com",
+ "relap.io": "relap",
+ "speedcurve.com": "speedcurve",
+ "redd.it": "reddit",
+ "curse.com": "curse.com",
+ "hs-scripts.com": "hubspot",
+ "twitchcdn.net": "twitch_cdn",
+ "alipcsec.com": "taobao",
+ "zimbio.com": "zimbio.com",
+ "sharepointonline.com": "sharepoint",
+ "twitchsvc.net": "twitch_cdn",
+ "optmstr.com": "optinmonster",
+ "openstat.net": "openstat",
+ "stripe.network": "stripe.com",
+ "ymetrica1.com": "ymetrica1.com",
+ "foresee.com": "foresee",
+ "hotdogsandads.com": "hotdogsandads.com",
+ "npttech.com": "tinypass",
+ "footprintdns.com": "footprintdns.com",
+ "velocecdn.com": "velocecdn.com",
+ "unpkg.com": "unpkg.com",
+ "mailchimp.com": "mailchimp",
+ "list-manage.com": "mailchimp",
+ "xnxx-cdn.com": "xnxx_cdn",
+ "glganltcs.space": "glganltcs.space",
+ "iasds01.com": "integral_ad_science",
+ "gravityrd-services.com": "yusp",
+ "ngacm.com": "allegro.pl",
+ "ngastatic.com": "allegro.pl",
+ "rbxcdn.com": "roblox",
+ "s-nbcnews.com": "nbc_news",
+ "google.co.jp": "google",
+ "google.ie": "google",
+ "4cdn.org": "4chan",
+ "rmtag.com": "rakuten_display",
+ "mediaforge.com": "rakuten_display",
+ "adleadevent.com": "notify",
+ "onap.io": "olx-st.com",
+ "loadercdn.com": "loadercdn.com",
+ "dyncdn.me": "dyncdn.me",
+ "dailymotionbus.com": "dailymotion",
+ "amgload.net": "amgload.net",
+ "statsy.net": "statsy.net",
+ "adtag.cc": "digital_nomads",
+ "superfastcdn.com": "superfastcdn.com",
+ "i10c.net": "i10c.net",
+ "fap.to": "fap.to",
+ "microsoftonline-p.com": "microsoft",
+ "nyt.com": "nyt.com",
+ "datadome.co": "datadome",
+ "cnzz.com": "cnzz.com",
+ "dropboxstatic.com": "dropbox.com",
+ "msocdn.com": "microsoft",
+ "allegrostatic.pl": "allegro.pl",
+ "nflxso.net": "netflix",
+ "nflximg.net": "netflix",
+ "lynda.com": "linkedin",
+ "sumo.com": "sumome",
+ "adrecover.com": "adrecover",
+ "navdmp.com": "navegg_dmp",
+ "adverticum.net": "adverticum",
+ "auth0.com": "auth0",
+ "kampyle.com": "kampyle",
+ "st-hatena.com": "st-hatena",
+ "wonderpush.com": "wonderpush",
+ "yldbt.com": "yieldbot",
+ "sprinklecontent.com": "strossle",
+ "zqtk.net": "comscore",
+ "datds.net": "datds.net",
+ "uuidksinc.net": "uuidksinc.net",
+ "camakaroda.com": "camakaroda.com",
+ "khzbeucrltin.com": "khzbeucrltin.com",
+ "wpimg.pl": "wp.pl",
+ "defpush.com": "defpush.com",
+ "mediaathay.org.uk": "webedia",
+ "goutee.top": "webedia",
+ "oath.com": "oath_inc",
+ "gscontxt.net": "grapeshot",
+ "iocnt.net": "infonline",
+ "evidon.com": "evidon",
+ "cnbc.com": "cnbc",
+ "sail-personalize.com": "sailthru_horizon",
+ "statuspage.io": "statuspage.io",
+ "adalliance.io": "adalliance.io",
+ "pvclouds.com": "pvclouds.com",
+ "borrango.com": "borrango.com",
+ "shutterstock.com": "shutterstock",
+ "xxxlutz.de": "xxxlutz",
+ "chimpstatic.com": "mailchimp",
+ "dreamlab.pl": "dreamlab.pl",
+ "and.co.uk": "dmg_media",
+ "litix.io": "mux_inc",
+ "admantx.com": "admantx.com",
+ "tailtarget.com": "tail_target",
+ "ctfassets.net": "contentful_gmbh",
+ "h-bid.com": "snigelweb",
+ "strossle.it": "strossle",
+ "travelsmarter.net": "smarter_travel",
+ "kiwe.io": "tracc.it",
+ "githubapp.com": "github_apps",
+ "quantummetric.com": "quantum_metric",
+ "thesun.co.uk": "the_sun",
+ "ancestrycdn.com": "ancestry_cdn",
+ "go.com": "go.com",
+ "etsystatic.com": "etsystatic",
+ "latimes.com": "latimes",
+ "onscroll.com": "sovrn_viewability_solutions",
+ "espncdn.com": "espn_cdn",
+ "tmdb.org": "themoviedb",
+ "nsaudience.pl": "netsprint_audience",
+ "pippio.com": "liveramp",
+ "appboycdn.com": "braze",
+ "eccmp.com": "experian",
+ "fncstatic.com": "foxnews_static",
+ "creativecommons.org": "creative_commons",
+ "cloudimg.io": "cloudimage.io",
+ "impactradius-event.com": "impact_radius",
+ "footprint.net": "level3_communications",
+ "boudja.com": "boudja.com",
+ "bwbx.io": "bwbx.io",
+ "tororango.com": "tororango.com",
+ "interedy.info": "interedy.info",
+ "vidcpm.com": "lottex_inc",
+ "pix-cdn.org": "advanced_hosters",
+ "lyuoaxruaqdo.com": "lyuoaxruaqdo.com",
+ "github.io": "github_pages",
+ "brcdn.com": "bloomreach",
+ "brsrvr.com": "bloomreach",
+ "brtstats.com": "bloomreach",
+ "consensu.org": "iab_consent",
+ "cedexis.fastlylb.net": "cedexis_radar",
+ "cookiebot.com": "cookiebot",
+ "cookielaw.org": "optanaon",
+ "triggeredmail.appspot.com": "bluecore",
+ "clickiocdn.com": "adlabs",
+ "adlabs.ru": "adlabs",
+ "luxup.ru": "adlabs",
+ "mixmarket.biz": "adlabs",
+ "admo.tv": "admo.tv",
+ "vntsm.com": "vntsm.com",
+ "outbrainimg.com": "outbrain",
+ "d31j93rd8oukbv.cloudfront.net": "yandex",
+ "modulepush.com": "modulepush.com",
+ "express.co.uk": "express.co.uk",
+ "trafmag.com": "trafmag.com",
+ "admixer.net": "admixer.net",
+ "cdnjquery.com": "jquery",
+ "coll2onf.com": "coll2onf.com",
+ "reutersmedia.net": "reuters_media",
+ "ad-delivery.net": "ad-delivery.net",
+ "videoplayerhub.com": "videoplayerhub.com",
+ "evergage.com": "evergage.com",
+ "zdassets.com": "zdassets.com",
+ "s-onetag.com": "sovrn_onetag",
+ "clksite.com": "revenue_hits",
+ "szn.cz": "seznam",
+ "aiv-cdn.net": "amazon_video",
+ "bugsnag.com": "bugsnag",
+ "kinja.com": "kinja.com",
+ "kinja-img.com": "kinja_static",
+ "kinja-static.com": "kinja_static",
+ "d1r27qvpjiaqj3.cloudfront.net": "webtrekk",
+ "coinhive.com": "coinhive",
+ "authedmine.com": "coinhive",
+ "dapxl.com": "deviantart.net",
+ "sc-static.net": "snapchat",
+ "early-birds.fr": "early_birds",
+ "pushno.com": "pushno.com",
+ "beampulse.com": "beampulse.com",
+ "discordapp.com": "discord",
+ "reachgroup.com": "the_reach_group",
+ "medialead.de": "medialead",
+ "ads-digitalkeys.com": "r_advertising",
+ "rialpay.com": "tp-cdn.com",
+ "cdnetworks.com": "cdnetworks.net",
+ "algolia.com": "algolia.net",
+ "amazonpay.com": "amazon_payments",
+ "storify.com": "storify",
+ "optmnstr.com": "optinmonster",
+ "ew3.io": "eulerian",
+ "steelhousemedia.com": "steelhouse",
+ "parastorage.com": "wix.com",
+ "stalluva.pro": "stalluva.pro",
+ "ie8eamus.com": "ie8eamus.com",
+ "pageanalytics.space": "pageanalytics.space",
+ "zmctrack.net": "zmctrack.net",
+ "tru.am": "trueanthem",
+ "useinsider.com": "insider",
+ "joinhoney.com": "joinhoney",
+ "ionicframework.com": "ionicframework.com",
+ "urbanairship.com": "urban_airship",
+ "loadsource.org": "loadsource.org",
+ "adbetnet.com": "adbetnet.com",
+ "pstatic.net": "pstatic.net",
+ "hatena.ne.jp": "st-hatena",
+ "zukxd6fkxqn.com": "zukxd6fkxqn.com",
+ "treasuredata.com": "treasuredata",
+ "webvisor.org": "yandex_direct",
+ "storage-yahoo.jp": "yahoo_japan",
+ "ispot.tv": "ispot.tv",
+ "microad.co.jp": "microad",
+ "onetrust.com": "onetrust",
+ "google.com.ar": "google",
+ "undercomputer.com": "undercomputer.com",
+ "popin.cc": "popin.cc",
+ "fout.jp": "fout.jp",
+ "baletingo.com": "baletingo.com",
+ "google.com.tw": "google",
+ "yahooapis.jp": "yahoo_japan",
+ "arcpublishing.com": "arcpublishing",
+ "adxprtz.com": "adxprtz.com",
+ "gettyimages.com": "gettyimages",
+ "jsrdn.com": "distroscale",
+ "hubvisor.io": "hubvisor.io",
+ "inboxsdk.com": "inboxsdk.com",
+ "reddit-image.s3.amazonaws.com": "reddit",
+ "blogblog.com": "blogspot_com",
+ "vacaneedasap.com": "vacaneedasap.com",
+ "cdnsure.com": "cdnsure.com",
+ "bdimg.com": "baidu_static",
+ "pub.network": "pub.network",
+ "microad.jp": "microad",
+ "noaa.gov": "noaa.gov",
+ "dm-event.net": "dailymotion",
+ "o12zs3u2n.com": "o12zs3u2n.com",
+ "snapchat.com": "snapchat",
+ "grapeshot.co.uk": "grapeshot",
+ "nyacampwk.com": "nyacampwk.com",
+ "noop.style": "noop.style",
+ "poirreleast.club": "poirreleast.club",
+ "newsupdatedir.info": "newsupdatedir.info",
+ "bluenewsupdate.info": "bluenewsupdate.info",
+ "prebid.org": "prebid",
+ "appcues.com": "appcues",
+ "shinobi.jp": "ninja_access_analysis",
+ "donburako.com": "ninja_access_analysis",
+ "cho-chin.com": "ninja_access_analysis",
+ "hishaku.com": "ninja_access_analysis",
+ "moz.com": "moz",
+ "privacy-center.org": "didomi",
+ "licensebuttons.net": "licensebuttons.net",
+ "line-apps.com": "line_apps",
+ "mediav.com": "mediav",
+ "naver.net": "naver.com",
+ "adobelogin.com": "adobe_login",
+ "runmewivel.com": "runmewivel.com",
+ "turner.com": "turner",
+ "google.co.id": "google",
+ "digitalgov.gov": "digital.gov",
+ "datatables.net": "datatables"
+ }
+}
\ No newline at end of file