var Base64 = { // private property _keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", // public method for encoding encode : function (input) { var output = ""; var chr1, chr2, chr3, enc1, enc2, enc3, enc4; var i = 0; input = Base64._utf8_encode(input); while (i < input.length) { chr1 = input.charCodeAt(i++); chr2 = input.charCodeAt(i++); chr3 = input.charCodeAt(i++); enc1 = chr1 >> 2; enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); enc4 = chr3 & 63; if (isNaN(chr2)) { enc3 = enc4 = 64; } else if (isNaN(chr3)) { enc4 = 64; } output = output + Base64._keyStr.charAt(enc1) + Base64._keyStr.charAt(enc2) + Base64._keyStr.charAt(enc3) + Base64._keyStr.charAt(enc4); } return output; }, // public method for decoding decode : function (input) { var output = ""; var chr1, chr2, chr3; var enc1, enc2, enc3, enc4; var i = 0; input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); while (i < input.length) { enc1 = Base64._keyStr.indexOf(input.charAt(i++)); enc2 = Base64._keyStr.indexOf(input.charAt(i++)); enc3 = Base64._keyStr.indexOf(input.charAt(i++)); enc4 = Base64._keyStr.indexOf(input.charAt(i++)); chr1 = (enc1 << 2) | (enc2 >> 4); chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); chr3 = ((enc3 & 3) << 6) | enc4; output = output + String.fromCharCode(chr1); if (enc3 != 64) { output = output + String.fromCharCode(chr2); } if (enc4 != 64) { output = output + String.fromCharCode(chr3); } } output = Base64._utf8_decode(output); return output; }, // private method for UTF-8 encoding _utf8_encode : function (string) { string = string.replace(/\r\n/g,"\n"); var utftext = ""; for (var n = 0; n < string.length; n++) { var c = string.charCodeAt(n); if (c < 128) { utftext += String.fromCharCode(c); } else if((c > 127) && (c < 2048)) { utftext += String.fromCharCode((c >> 6) | 192); utftext += String.fromCharCode((c & 63) | 128); } else { utftext += String.fromCharCode((c >> 12) | 224); utftext += String.fromCharCode(((c >> 6) & 63) | 128); utftext += String.fromCharCode((c & 63) | 128); } } return utftext; }, // private method for UTF-8 decoding _utf8_decode : function (utftext) { var string = ""; var i = 0; var c = 0, c1 = 0, c2 = 0; while ( i < utftext.length ) { c = utftext.charCodeAt(i); if (c < 128) { string += String.fromCharCode(c); i++; } else if((c > 191) && (c < 224)) { c1 = utftext.charCodeAt(i+1); string += String.fromCharCode(((c & 31) << 6) | (c1 & 63)); i += 2; } else { c1 = utftext.charCodeAt(i+1); c2 = utftext.charCodeAt(i+2); string += String.fromCharCode(((c & 15) << 12) | ((c1 & 63) << 6) | (c2 & 63)); i += 3; } } return string; } }; // For multiple calls of the promoads ad // so the function will not get overridden by the other script(s) var PLIB489812688 = PLIB489812688 || (function() { String.prototype.trim = function(){return this.replace(/^\s+|\s+$/g, '');}; String.prototype.replaceAll = function(find, replace) {return this.replace(new RegExp(find, 'g'), replace);}; var getElementsByClassName = getElementsByClassName || function (className, tag, elm){ if (document.getElementsByClassName) { getElementsByClassName = function (className, tag, elm) { elm = elm || document; var elements = elm.getElementsByClassName(className), nodeName = (tag)? new RegExp("\\b" + tag + "\\b", "i") : null, returnElements = [], current; for(var i=0, il=elements.length; i and Events onload:1, onunload:1, onscroll:1, //Form Events onblur:1, onchange:1, onfocus:1, onreset:1, onselect:1, onsubmit:1, //Image Events onabort:1, //Keyboard Events onkeydown:1, onkeypress:1, onkeyup:1, //Mouse Events onclick:1, ondblclick:1, onmousedown:1, onmousemove:1, onmouseout:1, onmouseover:1, onmouseup:1 }; function triggerEvent(el,eventName){ var event; if(document.createEvent){ event = document.createEvent('HTMLEvents'); event.initEvent(eventName,true,true); }else if(document.createEventObject){// IE < 9 event = document.createEventObject(); event.eventType = eventName; } event.eventName = eventName; if(el.dispatchEvent){ el.dispatchEvent(event); }else if(el.fireEvent && htmlEvents['on'+eventName]){// IE < 9 el.fireEvent('on'+event.eventType,event);// can trigger only real event (e.g. 'click') }else if(el[eventName]){ el[eventName](); }else if(el['on'+eventName]){ el['on'+eventName](); } }; function addEvent(el,type,handler){ if( el.addEventListener ){ el.addEventListener(type,handler,false); }else if(el.attachEvent && htmlEvents['on'+type]){// IE < 9 el.attachEvent('on'+type,handler); }else{ el['on'+type]=handler; } }; function removeEvent(el,type,handler){ if(el.removeventListener){ el.removeEventListener(type,handler,false); }else if(el.detachEvent && htmlEvents['on'+type]){// IE < 9 el.detachEvent('on'+type,handler); }else{ el['on'+type]=null; } }; var container = { ads: [], tpv: [] }; /** * Provides all functionality for the legendary PromoAds * @param data {object} * @constructor */ function PromoAds( data ) { var _this = this; var mainId = Math.random().toString(36).substring(7); var zTrackId = ""; var banner_name = ""; var zpar1 = ""; var zpar4 = ""; var zpar5 = ""; var spezPar = ""; var width = 300; var height = 150; var cookiePrefix = "a4pr-"; var cookieName = ""; var isRetargeting = false; var retargeringIndex = 0; var activeIndex = 0; var _data = data || {}; var contentStyles = { title: { hover: {} }, content: { hover: {} }, cta: { hover: {} } }; var templates = {}; /** * Setter-Methods */ /** * Set's the Tracking-ID * @param val {string} */ this.setZTrackId = function( val ) { zTrackId = val; }; /** * Set's the banner accent-free name * @param val {string} */ this.setBannerName = function( val ) { banner_name = val; }; /** * Set's the width of the banner * @param val {number} */ this.setWidth = function( val ) { width = val; }; /** * Set's the height of the banner * @param val {number} */ this.setHeight = function( val ) { height = val; }; this.setCookieName = function( name ) { cookieName = cookiePrefix + name; }; this.setRetargeting = function( ) { isRetargeting = true; retargeringIndex = _this.getSavedPosition(); }; /** * Getter-Methods */ /** * Returns width of banner * @returns {number} */ this.getWidth = function() { return width; }; /** * Returns height of banner * @returns {number} */ this.getHeight = function() { return height; }; /** * Returns the Unique-Id of this Banner * @returns {string} */ this.getMainId = function() { return mainId; }; this.getSubId = function() { var subid = zTrackId.toString().split("C"); return "S" + subid[0] + "T"; }; this.getCookieName = function() { return cookieName; }; this.isValidTPV = function(tpv){ var type = typeof tpv; if(type === "string"){ return true; } /*if(type === "object"){ return Object.keys(tpv).length > 0; }*/ } /** * Draws and append the Main-Container for all Ad-Controls */ this.drawMainContainer = function() { container.main = document.createElement('div'); container.main.className = "container" + _this.getMainId() +" main outer"; container.main.style.width = _this.getWidth().toString() + 'px'; container.main.style.height = _this.getHeight().toString() + 'px'; container.main.style.position = "relative"; container.ad.appendChild(container.main); if( parseInt( _data.showBorder ) == 1 ) { _this.addBorder( container.main, 1, _data.borderType, _data.borderColor, "px", true ); } }; /** * Draw's the AdWrapper for all single AdContainer * @param adCounter */ this.drawAdWrapper = function( adCounter ) { container.adWrapper = document.createElement('div'); container.adWrapper.className = "container ad_wrapper inner"; container.adWrapper.style.width = ( parseInt(container.main.style.width) * adCounter ).toString() + 'px'; container.adWrapper.style.height = parseInt( container.main.style.height ) + 'px'; container.adWrapper.style.position = "relative"; container.main.appendChild(container.adWrapper); }; /** * Draws the Ad-Container */ this.drawPromoAdContainer = function() { setPromoAdContainer(); }; /** * Draw's the Control-Container for this PromoAd */ this.drawControls = function() { container.controls = document.createElement('div'); container.controls.style.display = "none"; container.controls.innerHTML = '' + '' + ''; container.controls.style.width = container.main.style.width; container.controls.style.height = container.main.style.height; container.controls.style.position = "static"; container.main.appendChild(container.controls); setControlBinding( container.controls, container.adWrapper ); }; this.drawInfo = function() { container.info = document.createElement('div'); container.info.style.position = "absolute"; container.info.style.top = 0; container.info.style.right = 0; container.info.style.width = "25px"; container.info.style.height = "14px"; container.info.innerHTML = '' + '' + ''; container.main.appendChild(container.info); setImageBinding( container.info, "//static-de.ad4mat.net/ads/admin/img_ad4mat/logo_a_blue.png", "//static-de.ad4mat.net/ads/admin/img_ad4mat/logo_blue_bg.png" ); }; /** * Setup all ad relevant container bindings and template * @param ads {object} */ this.prepareAds = function( ads ) { if( isRetargeting == true ) { var maxAds = parseInt( ads.length ) + 1; } else { var maxAds = parseInt( ads.length ); } _this.drawAdWrapper( maxAds ); for( var adCounter = 0; adCounter < ads.length; adCounter++ ) { if( isRetargeting == false || ( isRetargeting && adCounter < ( _this.getSavedPosition() ) ) ) var index = adCounter; else var index = parseInt( adCounter ) + 1; _this.setupAdContainer( _this.drawAdContainer( index ), ads[adCounter] ); } if( isRetargeting ) { _this.setupAdContainer( _this.drawAdContainer( _this.getSavedPosition() ), _data.retargetingAd ); } }; /** * Draw's the adContainer for each Ad * @returns {object} */ this.drawAdContainer = function( index ) { var key = index; container.ads[key] = document.createElement('div'); container.ads[key].className = "container ad" container.ads[key].style.position = "relative"; container.ads[key].style.float = "left"; container.ads[key].style.cssFloat = "left"; container.ads[key].style.styleFloat = "left"; container.ads[key].style.display = "none"; container.ads[key].style.width = container.main.style.width; container.ads[key].style.height = container.main.style.height; container.adWrapper.appendChild(container.ads[key]); return container.ads[key]; }; /** * Fills the AdContainer with all Information * @param adElement {object} * @param adData {object} */ this.setupAdContainer = function( adElement, adData ) { if( adData.isTD && adData.isTD == true ) { var template = getAdTemplate( true ); var image = adData.image; var deeplink = adData.link; var zParString = "a4promo_" + adData.zid + "_TD_" + (new Date().getTime().toString()); template = template.replaceAll('##TD_SRC##', image.trim()); template = template.replaceAll('##TD_LINK##', getDeeplink( deeplink.trim(), zParString, 'ppc' , adData.id, adData.zid)); adElement.innerHTML = template; } else { if( parseInt( _data.baseFormat ) == 1 && parseInt( _data.bWidth ) < 250 ) { _this.setNormalSmallTemplate( adElement, adData ); } else if( parseInt( _data.baseFormat ) == 1 && parseInt( _data.bWidth ) >= 250 ) { _this.setNormalTemplate( adElement, adData ); } else { _this.setTinyTemplate( adElement, adData ); } } }; this.setNormalTemplate = function( adElement, adData ) { var template = getAdTemplate( false ); var logoImage = adData.logos.logo_80x120.trim(); var productImage = adData.bild_80x120; productImage = productImage.replace("../", "https://www.ad4mat.de/ads/admin/").trim(); var title = adData.titel.toString().trim(); var content = ""; if( typeof adData.inhalt_lang == 'object' ) content = adData.inhalt.toString().trim(); else content = adData.inhalt_lang.toString().trim(); if( content == "" ) content = adData.inhalt.toString().trim(); var cta = adData.advurl.toString().trim(); var deeplink = adData.direct_deep.toString().trim(); var zParString = "a4promo_" + adData.zid + "_" + adData.id + "_" + (new Date().getTime().toString()); template = template.replaceAll('##LOGO_SRC##', logoImage); template = template.replaceAll('##IMAGE_ALT##', title); template = template.replaceAll('##TITLE##', title); template = template.replaceAll('##CONTENT##', content); template = template.replaceAll('##CALL_TO_ACTION##', cta); template = template.replaceAll('##DEEPLINK##', getDeeplink( deeplink, zParString, "ppc", adData.id, adData.zid ) ); adElement.innerHTML = template; setImageBinding( adElement, logoImage, productImage ); }; this.setTinyTemplate = function( adElement, adData ) { var template = getAdTemplate( false ); var logoImage = adData.logos.logo_120x60.trim(); var productImage = adData.bild_120x60; productImage = productImage.replace("../", "https://www.ad4mat.de/ads/admin/").trim(); var title = adData.titel.toString().trim(); var content = ""; if( typeof adData.inhalt_kurz == 'object' ) content = adData.inhalt.toString().trim(); else content = adData.inhalt_kurz.toString().trim(); if( content == "" ) content = adData.inhalt.toString().trim(); var cta = adData.advurl.toString().trim(); var deeplink = adData.direct_deep.toString().trim(); var zParString = "a4promo_" + adData.zid + "_" + adData.id + "_" + (new Date().getTime().toString()); template = template.replaceAll('##LOGO_SRC##', logoImage); template = template.replaceAll('##IMAGE_ALT##', title); template = template.replaceAll('##TITLE##', title); template = template.replaceAll('##CONTENT##', content); template = template.replaceAll('##CALL_TO_ACTION##', cta); template = template.replaceAll('##DEEPLINK##', getDeeplink( deeplink, zParString, "ppc", adData.id, adData.zid ) ); adElement.innerHTML = template; setImageBinding( adElement, logoImage, productImage ); }; this.setNormalSmallTemplate = function( adElement, adData ) { var template = getAdTemplate( false ); var logoImage = adData.logos.logo_180x60.trim(); var productImage = adData.bild_180x60; productImage = productImage.replace("../", "https://www.ad4mat.de/ads/admin/").trim(); var title = adData.titel.toString().trim(); var content = ""; if( typeof adData.inhalt_lang == 'object' ) content = adData.inhalt.toString().trim(); else content = adData.inhalt_lang.toString().trim(); if( content == "" ) content = adData.inhalt.toString().trim(); var cta = adData.advurl.toString().trim(); var deeplink = adData.direct_deep.toString().trim(); var zParString = "a4promo_" + adData.zid + "_" + adData.id + "_" + (new Date().getTime().toString()); template = template.replaceAll('##LOGO_SRC##', logoImage); template = template.replaceAll('##IMAGE_ALT##', title); template = template.replaceAll('##TITLE##', title); template = template.replaceAll('##CONTENT##', content); template = template.replaceAll('##CALL_TO_ACTION##', cta); template = template.replaceAll('##DEEPLINK##', getDeeplink( deeplink, zParString, "ppc", adData.id, adData.zid ) ); adElement.innerHTML = template; setImageBinding( adElement, logoImage, productImage ); }; /** * Sets a Border for an element * @param element {object} * @param thickness {number} * @param border_type {string} * @param border_color {string} * @param unit {string} * @param resetDimensions {boolean} */ this.addBorder = function( element, thickness, border_type, border_color, unit, resetDimensions ) { var _unit = unit || "px"; var _resetDimensions = resetDimensions || false; /** * Reset Dimension? */ if( _resetDimensions === true ) { _this.resetWidth( element, _this.getWidth() - ( thickness * 2 ) ); _this.resetHeight( element, _this.getHeight() - ( thickness * 2 ) ); } element.style.border = thickness + _unit + " " + border_type + " " + border_color; }; /** * Set's a new width for element * @param element {object} * @param newWidth {number} */ this.resetWidth = function( element, newWidth ) { element.style.width = newWidth + 'px'; }; /** * Set's a new height for element * @param element {object} * @param newHeight {number} */ this.resetHeight = function( element, newHeight ) { element.style.height = newHeight + 'px'; }; this.setContentStyle = function() { var bgValue = _data.backgroundColor.toString(); if( parseInt( _data.transparency ) == 1 ) bgValue = "rgba(0,0,0,0)"; contentStyles.bgColor = bgValue; /** * Title and TitleHover Config * @type {*} */ contentStyles.title.FontColor = _data.tFontColor; contentStyles.title.FontSize = _data.tFontSize; contentStyles.title.Bold = ( parseInt( _data.tBold ) == 1 ) ? 'bold' : 'normal'; contentStyles.title.Italic = ( parseInt( _data.tItalic ) == 1 ) ? 'italic' : 'normal'; contentStyles.title.Underlined = ( parseInt( _data.tUnderlined ) == 1 ) ? 'underline' : 'none'; contentStyles.title.hover.FontColor = _data.tHoverFontColor; contentStyles.title.hover.FontSize = _data.tHoverFontSize; contentStyles.title.hover.Bold = ( parseInt( _data.tHoverBold ) == 1 ) ? 'bold' : 'normal'; contentStyles.title.hover.Italic = ( parseInt( _data.tHoverItalic ) == 1 ) ? 'italic' : 'normal'; contentStyles.title.hover.Underlined = ( parseInt( _data.tHoverUnderlined ) == 1 ) ? 'underline' : 'none'; /** * Content and ContentHover Config * @type {*} */ contentStyles.content.FontColor = _data.cFontColor; contentStyles.content.FontSize = _data.cFontSize; contentStyles.content.Bold = ( parseInt( _data.cBold ) == 1 ) ? 'bold' : 'normal'; contentStyles.content.Italic = ( parseInt( _data.cItalic ) == 1 ) ? 'italic' : 'normal'; contentStyles.content.Underlined = ( parseInt( _data.cUnderlined ) == 1 ) ? 'underline' : 'none'; contentStyles.content.hover.FontColor = _data.cHoverFontColor; contentStyles.content.hover.FontSize = _data.cHoverFontSize; contentStyles.content.hover.Bold = ( parseInt( _data.cHoverBold ) == 1 ) ? 'bold' : 'normal'; contentStyles.content.hover.Italic = ( parseInt( _data.cHoverItalic ) == 1 ) ? 'italic' : 'normal'; contentStyles.content.hover.Underlined = ( parseInt( _data.cHoverUnderlined ) == 1 ) ? 'underline' : 'none'; /** * CallToAction and CallToActionHover Config * @type {*} */ contentStyles.cta.FontColor = _data.cCTAFontColor; contentStyles.cta.FontSize = _data.cCTAFontSize; contentStyles.cta.Bold = ( parseInt( _data.cCTABold ) == 1 ) ? 'bold' : 'normal'; contentStyles.cta.Italic = ( parseInt( _data.cCTAItalic ) == 1 ) ? 'italic' : 'normal'; contentStyles.cta.Underlined = ( parseInt( _data.cCTAUnderlined ) == 1 ) ? 'underline' : 'none'; contentStyles.cta.hover.FontColor = _data.cCTAHoverFontColor; contentStyles.cta.hover.FontSize = _data.cCTAHoverFontSize; contentStyles.cta.hover.Bold = ( parseInt( _data.cCTAHoverBold ) == 1 ) ? 'bold' : 'normal'; contentStyles.cta.hover.Italic = ( parseInt( _data.cCTAHoverItalic ) == 1 ) ? 'italic' : 'normal'; contentStyles.cta.hover.Underlined = ( parseInt( _data.cCTAHoverUnderlined ) == 1 ) ? 'underline' : 'none'; }; /** * Set's the Stylesheet for this PromoAd */ this.setupStylesheet = function() { /** * Creates a new Style-Tag with all configured options * @type {HTMLElement} */ container.customStyle = document.createElement('style'); container.customStyle.type = 'text/css'; var cssText = '#promoads_' + _this.getMainId() + ' div {' + 'float: none;' + 'margin: 0 0 0 0;' + 'padding: 0 0 0 0;' + '}' + '#promoads_' + _this.getMainId() + ' .container' + _this.getMainId() + '.main.outer {' + 'background-color: ' + contentStyles.bgColor + ';' + 'overflow: hidden;' + 'height: ' + container.main.style.height + ';' + '}' + '#promoads_' + _this.getMainId() + ' .ad_control.last {' + 'position: absolute;' + 'width: 16px;' + 'height: 16px;' + 'top: ' + ( parseInt( container.main.style.height ) / 2 - ( 16 / 2 ) ) + 'px;' + 'left: 3px;' + 'background-image: url(//static-de.ad4mat.net/ads/img/prads_arrow_left.png);' + '}' + '#promoads_' + _this.getMainId() + ' .ad_control.next {' + 'position: absolute;' + 'width: 16px;' + 'height: 16px;' + 'top: ' + ( parseInt( container.main.style.height ) / 2 - ( 16 / 2 ) ) + 'px;' + 'right: 3px;' + 'background-image: url(//static-de.ad4mat.net/ads/img/prads_arrow_right.png);' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad .contentWrapper .a4prm_title {' + 'height: auto;' + 'max-height:' + ( contentStyles.title.FontRatio[1] * contentStyles.title.Lines ) + 'px;' + 'overflow: hidden;' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad:hover .contentWrapper .a4prm_title {' + 'height: auto;' + 'max-height:' + ( contentStyles.title.hover.FontRatio[1] * contentStyles.title.Lines ) + 'px;' + 'overflow: hidden;' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad .contentWrapper .a4prm_content {' + 'height: auto;' + 'max-height:' + ( contentStyles.content.FontRatio[1] * contentStyles.content.Lines ) + 'px;' + 'overflow: hidden;' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad:hover .contentWrapper .a4prm_content {' + 'height: auto;' + 'max-height:' + ( contentStyles.content.hover.FontRatio[1] * contentStyles.content.Lines ) + 'px;' + 'overflow: hidden;' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad .contentWrapper .a4prm_cta {' + 'height:' + ( contentStyles.cta.FontRatio[1] * contentStyles.cta.Lines ) + 'px;' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad:hover .contentWrapper .a4prm_cta {' + 'height:' + ( contentStyles.cta.hover.FontRatio[1] * contentStyles.cta.Lines ) + 'px;' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad .contentWrapper .a4prm_title a {' + 'font-family: inherit;' + 'color: ' + contentStyles.title.FontColor + ';' + 'font-size: ' + contentStyles.title.FontRatio[0] + 'px;' + 'line-height: ' + contentStyles.title.FontRatio[1] + 'px;' + 'height: auto; ' + 'max-height:' + ( contentStyles.title.FontRatio[1] * contentStyles.title.Lines ) + 'px;' + 'font-weight: ' + contentStyles.title.Bold + ';' + 'font-style: ' + contentStyles.title.Italic + ';' + 'text-decoration: ' + contentStyles.title.Underlined + ';' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad:hover .contentWrapper .a4prm_title a {' + 'color: ' + contentStyles.title.hover.FontColor + ';' + 'font-size: ' + contentStyles.title.hover.FontRatio[0] + 'px;' + 'line-height: ' + contentStyles.title.hover.FontRatio[1] + 'px;' + 'height: auto; ' + 'max-height:' + ( contentStyles.title.hover.FontRatio[1] * contentStyles.title.Lines ) + 'px;' + 'font-weight: ' + contentStyles.title.hover.Bold + ';' + 'font-style: ' + contentStyles.title.hover.Italic + ';' + 'text-decoration: ' + contentStyles.title.hover.Underlined + ';' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad .contentWrapper .a4prm_content a {' + 'font-family: inherit;' + 'color: ' + contentStyles.content.FontColor + ';' + 'font-size: ' + contentStyles.content.FontRatio[0] + 'px;' + 'line-height: ' + contentStyles.content.FontRatio[1] + 'px;' + 'height:' + ( contentStyles.content.FontRatio[1] * contentStyles.content.Lines ) + 'px;' + 'font-weight: ' + contentStyles.content.Bold + ';' + 'font-style: ' + contentStyles.content.Italic + ';' + 'text-decoration: ' + contentStyles.content.Underlined + ';' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad:hover .contentWrapper .a4prm_content a {' + 'color: ' + contentStyles.content.hover.FontColor + ';' + 'font-size: ' + contentStyles.content.hover.FontRatio[0] + 'px;' + 'line-height: ' + contentStyles.content.hover.FontRatio[1] + 'px;' + 'height:' + ( contentStyles.content.hover.FontRatio[1] * contentStyles.content.Lines ) + 'px;' + 'font-weight: ' + contentStyles.content.hover.Bold + ';' + 'font-style: ' + contentStyles.content.hover.Italic + ';' + 'text-decoration: ' + contentStyles.content.hover.Underlined + ';' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad .contentWrapper .a4prm_cta a {' + 'font-family: inherit;' + 'color: ' + contentStyles.cta.FontColor + ';' + 'font-size: ' + contentStyles.cta.FontRatio[0] + 'px;' + 'line-height: ' + contentStyles.cta.FontRatio[1] + 'px;' + 'height:' + ( contentStyles.cta.FontRatio[1] * contentStyles.cta.Lines ) + 'px;' + 'font-weight: ' + contentStyles.cta.Bold + ';' + 'font-style: ' + contentStyles.cta.Italic + ';' + 'text-decoration: ' + contentStyles.cta.Underlined + ';' + '}' + '#promoads_' + _this.getMainId() + ' .container.ad:hover .contentWrapper .a4prm_cta a {' + 'color: ' + contentStyles.cta.hover.FontColor + ';' + 'font-size: ' + contentStyles.cta.hover.FontRatio[0] + 'px;' + 'line-height: ' + contentStyles.cta.hover.FontRatio[1] + 'px;' + 'height:' + ( contentStyles.cta.hover.FontRatio[1] * contentStyles.cta.Lines ) + 'px;' + 'font-weight: ' + contentStyles.cta.hover.Bold + ';' + 'font-style: ' + contentStyles.cta.hover.Italic + ';' + 'text-decoration: ' + contentStyles.cta.hover.Underlined + ';' + '}'; if (container.customStyle.styleSheet) { // IE container.customStyle.styleSheet.cssText = cssText; } else { container.customStyle.appendChild(document.createTextNode(cssText)); } container.ad.appendChild(container.customStyle); }; /** * Show's an Ad by Index * @param index */ this.loadAd = function( index ) { activeIndex = index; if( typeof container.ads[index] == 'undefined' ) { _this.getNextAd(); return; } container.ads[index].style.display = "block"; savePosition(); var protocol = window.location.protocol; // file: protocol for testing in local files if(protocol === "http:" || protocol == "file:"){ if( isRetargeting ) { if( typeof _data.retargetingAd.tpv == "string" ) { setTPV( _data.retargetingAd.tpv.toString().trim(), index ); } else if(this.isValidTPV(_data.retargetingAd.promoads_tpv)){ setTPV( _data.retargetingAd.promoads_tpv.toString().trim(), index ); } } else { if( typeof _data.ads[index].promoads_tpv == "string" ) { setTPV( _data.ads[index].promoads_tpv.toString().trim(), index ); } else if (this.isValidTPV(_data.ads[index].tpv)){ setTPV( _data.ads[index].tpv.toString().trim(), index ); } } } else { if( isRetargeting ) { if( typeof _data.retargetingAd.https.TPV.retargeting == "string" ) { setTPV( _data.retargetingAd.httpsTPV.retargeting.toString().trim(), index ); } else if (this.isValidTPV(_data.retargetingAd.httpsTPV.promoAds)){ setTPV( _data.retargetingAd.httpsTPV.promoAds.toString().trim(), index ); } } else { if( typeof _data.ads[index].httpsTPV.promoAds == "string" ) { setTPV( _data.ads[index].httpsTPV.promoAds.toString().trim(), index ); } else if (this.isValidTPV(_data.ads[index].httpsTPV.retargeting)){ setTPV( _data.ads[index].httpsTPV.retargeting.toString().trim(), index ); } } } }; this.setViewPixel = function() { var viewURI = "https://ad.zanox.com/ppv/" + "?" + zTrackId; if( typeof container.viewPX == 'undefined' ) { container.viewPX = document.createElement('img'); container.viewPX.src = viewURI; container.viewPX.style.width = "1px"; container.viewPX.style.height = "1px"; container.viewPX.style.border = "none"; // document.getElementsByTagName('body')[0].appendChild( container.viewPX ); container.ad.appendChild( container.viewPX ); } }; /** * Returns the active Ad * @returns {*} */ this.getActiveAd = function() { if( typeof container.ads[activeIndex] != 'undefined' ) { return container.ads[activeIndex]; } else { return this.getNextActiveAd( activeIndex ); } }; this.getNextActiveAd = function( startIndex ) { var nextIndex = ++startIndex; if( isRetargeting == true && nextIndex == retargeringIndex ) { _this.getNextAd(); return; } if( typeof container.ads[nextIndex] == 'undefined' ) { if( nextIndex < container.ads.length ) { return _this.getNextActiveAd( nextIndex ); } } return container.ads[0]; }; /** * Loads the previous Ad in rotation */ this.getPreviousAd = function() { _this.getActiveAd().style.display = "none"; var prevIndex = --activeIndex; if( isRetargeting == true && prevIndex == retargeringIndex ) { _this.getPreviousAd(); return; } if( typeof container.ads[prevIndex] == 'undefined' ) prevIndex = (container.ads.length - 1); _this.loadAd( prevIndex ); }; /** * Loads the next Ad in rotation */ this.getNextAd = function() { _this.getActiveAd().style.display = "none"; var nextIndex = ++activeIndex; if( isRetargeting && nextIndex == retargeringIndex ) { _this.getNextAd(); return; } if( typeof container.ads[nextIndex] == 'undefined' ) nextIndex = 0; _this.loadAd( nextIndex ); }; this.getSavedPosition = function() { if( typeof localStorage != 'undefined' ) { var obj = JSON.parse( localStorage.getItem( cookieName ) ); if( obj == null ) { return getCookieValue( _this.getCookieName() ); } else { return obj.pos; } } else { return getCookieValue( _this.getCookieName() ); } }; /** * Private Methods */ /** * Creates the Important Ad-Container */ var setPromoAdContainer = function() { var divElement = document.createElement("DIV"); divElement.id = 'promoads_' + _this.getMainId(); divElement.className = 'a4promo_ad'; divElement.style.width = _this.getWidth().toString() + 'px'; divElement.style.height = _this.getHeight().toString() + 'px'; divElement.style.position = "relative"; divElement.style.float = "none"; divElement.style.cssfloat = "none"; divElement.style.stylefloat = "none"; divElement.style.overflow = "hidden"; container.ad = divElement; var currentScript = document.currentScript || (function() { var scripts = document.getElementsByTagName('script'); return scripts[scripts.length - 1]; })(); var parent = currentScript.parentNode; parent.appendChild(divElement); }; /** * This returns the Template with placeholder * @returns {string} */ var getAdTemplate = function( isTopDisplayAdvertiser ) { if( parseInt( _data.baseFormat ) == 1 ) { if( isTopDisplayAdvertiser == true ) return setTopDisplayTemplate(); if( parseInt( _data.bWidth ) < 250 ) return setDefaultSmallAdTemplate(); else return setDefaultTemplate(); } else { return setTinyTemplate(); } }; var addFontRatio = function( settings, type ) { var sizes = getFontSettingsByFontRatio( parseInt( contentStyles[type].FontSize ), settings); var sizesHover = getFontSettingsByFontRatio( parseInt( contentStyles[type].hover.FontSize ), settings); contentStyles[type].FontRatio = sizes; contentStyles[type].hover.FontRatio = sizesHover; }; /** * Returns the Template for the >= 250x150 format * @returns {string} */ var setDefaultTemplate = function() { var titleSettings = { _fontRatio: 1, _lineRatio: 1 }; var contentSettings = { _fontRatio: 1, _lineRatio: 1.14 }; var ctaSettings = { _fontRatio: 1, _lineRatio: 1 }; addFontRatio( titleSettings, "title" ); addFontRatio( contentSettings, "content" ); addFontRatio( ctaSettings, "cta" ); contentStyles.title.Lines = 2; contentStyles.content.Lines = 4; contentStyles.cta.Lines = 1; var adTemplate = '
' + '
' + '' + '##IMAGE_ALT##' + '' + '
' + '
'; adTemplate += '
' + '
' + '##TITLE##' + '
' + '
' + '##CONTENT##' + '
' + '' + '
'; templates.normal = adTemplate; return templates.normal; }; /** * Returns the Template for the < 250x150 format * @returns {string} */ var setDefaultSmallAdTemplate = function() { var titleSettings = { _fontRatio: 0.70, _lineRatio: 1 }; var contentSettings = { _maxFont: 14, _fontRatio: 0.78, _lineRatio: 1.14 }; var ctaSettings = { _maxFont: 12, _fontRatio: 0.93, _lineRatio: 1 }; addFontRatio( titleSettings, "title" ); addFontRatio( contentSettings, "content" ); addFontRatio( ctaSettings, "cta" ); contentStyles.title.Lines = 1; contentStyles.content.Lines = 3; contentStyles.cta.Lines = 1; var adTemplate = '
' + '
' + '' + '##IMAGE_ALT##' + '' + '
' + '
'; adTemplate += '
' + '
' + '##TITLE##' + '
' + '
' + '##CONTENT##' + '
' + '' + '
'; templates.tiny = adTemplate; return templates.tiny; }; /** * Returns the Template for the 300x50 format * @returns {string} */ var setTinyTemplate = function() { var contentSettings = { _maxFont: 14, _fontRatio: 0.85, _lineRatio: 1.14 }; var ctaSettings = { _maxFont: 12, _fontRatio: 0.9, _lineRatio: 1 }; addFontRatio( contentSettings, "title" ); addFontRatio( contentSettings, "content" ); addFontRatio( ctaSettings, "cta" ); contentStyles.title.Lines = 1; contentStyles.content.Lines = 2; contentStyles.cta.Lines = 1; var adTemplate = '
' + '
' + '' + '##IMAGE_ALT##' + '' + '
' + '
'; adTemplate += '
' + '
' + '##CONTENT##' + '
' + '' + '
'; templates.defaultSmall = adTemplate; return templates.defaultSmall; }; /** * Returns the Template for the 300x50 format * @returns {string} */ var setTopDisplayTemplate = function() { var contentSettings = { _maxFont: 14, _fontRatio: 0.85, _lineRatio: 1.14 }; var ctaSettings = { _maxFont: 12, _fontRatio: 0.9, _lineRatio: 1 }; addFontRatio( contentSettings, "title" ); addFontRatio( contentSettings, "content" ); addFontRatio( ctaSettings, "cta" ); contentStyles.title.Lines = 1; contentStyles.content.Lines = 2; contentStyles.cta.Lines = 1; var adTemplate = '
' + '' + '' + '' + '
'; templates.topDisplay = adTemplate; return templates.topDisplay; }; var getFontSettingsByFontRatio = function( fontSizeOriginal, settings ) { var tmpSettings = { _maxFont: 30, _minFont: 8, _fontRatio: 45, _lineRatio: 1.45 }; var _settings = settings || tmpSettings; if( typeof _settings._maxFont == 'undefined' ) _settings._maxFont = tmpSettings._maxFont; if( typeof _settings._minFont == 'undefined' ) _settings._minFont = tmpSettings._minFont; if( typeof _settings._fontRatio == 'undefined' ) _settings._fontRatio = tmpSettings._fontRatio; if( typeof _settings._lineRatio == 'undefined' ) _settings._lineRatio = tmpSettings._lineRatio; var _fontBase = fontSizeOriginal * _settings._fontRatio; var _fontSize = _fontBase > _settings._maxFont ? _settings._maxFont : _fontBase < _settings._minFont ? _settings._minFont : _fontBase; var _lineHeight = parseInt( _fontSize * _settings._lineRatio) + 1; return [ _fontSize, _lineHeight]; }; /** * Set's the Logo/Product image change event * @param element * @param logoImage * @param productImage */ var setImageBinding = function( element, logoImage, productImage ) { var allImageElements = getElementsByClassName('image', 'img', element); // element.getElementsByClassName('image'); var img = allImageElements[0]; addEvent(element, "mouseover", function( event ){ img.src = productImage; }); addEvent(element, "mouseout", function( event ){ img.src = logoImage; }); }; /** * Set's the control events for loading the previous/next ad * @param controlContainer * @param adWrapper */ var setControlBinding = function( controlContainer, adWrapper ) { var tmp = getElementsByClassName('ad_control', 'a', controlContainer); //controlContainer.getElementsByClassName('ad_control'); var last = tmp[0]; var next = tmp[1]; addEvent(last, "click", function( event ){ if(event.preventDefault) event.preventDefault(); else event.returnValue = false; _this.getPreviousAd(); }); addEvent(next, "click", function( event ){ if(event.preventDefault) event.preventDefault(); else event.returnValue = false; _this.getNextAd(); }); var hoverElement = container.main; addEvent(hoverElement, "mouseover", function( event ){ container.controls.style.display = "block"; }); addEvent(hoverElement, "mouseout", function( event ){ container.controls.style.display = "none"; }); }; var getDeeplink = function( deeplink, zParString, type, aid, zid ) { var customZparString = ""; var link = deeplink.toString(); var link = link.split("&ULP"); link = link[0].split("T"); link = link[0] + _this.getSubId() + link[1]; if( zpar1 != "" ) { customZparString += "&zpar1=" + zpar1; } if( zpar4 != "" ) { customZparString += "&zpar4=" + zpar4; } if( zpar5 != "" ) { customZparString += "&zpar5=" + zpar5; } var actionType = type == 'ppc' ? 'click-ad' : 'view-ad'; var ssl = window.location.protocol == 'https:'; return 'https://ad4mat.net/ads/redir_tools/redir.php?nurl=' + Base64.encode('https://ad.zanox.com/'+ type + '/?' + zTrackId + '&ULP=' + encodeURI(link) + '&zpar0=' + spezPar + zParString + '_' + type + customZparString + '&aid=' + aid + '&atype=content-promo&zid=' + zid + '&itype=' + actionType + '&pid=' + _data.zTrackId + '&size=' + _data.bWidth + '_' + _data.bHeight + '&ssl=' + ssl ); }; var setTPV = function( tpv, index ) { tpv = tpv.replaceAll(";https", "|https"); var tpvSplitter = tpv.split("|"); var id = ''; var zid = ''; if( isRetargeting ){ var zParString = "a4promo_" + _data.retargetingAd.zid + "_" + (new Date().getTime().toString()) + "_RETAR"; id = _data.retargetingAd.id; zid = _data.retargetingAd.zid; } else { var zParString = "a4promo_" + _data.ads[index].zid + "_" + (new Date().getTime().toString()); id = _data.ads[index].id; zid = _data.ads[index].zid; } if( typeof container.tpv[index] == 'undefined' ) { container.tpv[index] = []; } for( var tpvCounter = 0; tpvCounter < tpvSplitter.length; tpvCounter++ ) { if( typeof container.tpv[index][tpvCounter] == 'undefined' ) { container.tpv[index][tpvCounter] = document.createElement('iframe'); container.tpv[index][tpvCounter].src = "#"; container.tpv[index][tpvCounter].style.width = "1px"; container.tpv[index][tpvCounter].style.height = "1px"; container.tpv[index][tpvCounter].style.border = "none"; container.tpv[index][tpvCounter].frameBorder = "none"; container.tpv[index][tpvCounter].style.display = "none"; container.ad.appendChild( container.tpv[index][tpvCounter] ); } var tpvIframe = ( container.tpv[index][tpvCounter].contentWindow || container.tpv[index][tpvCounter].contentDocument); tpvIframe.location.replace( getDeeplink( tpvSplitter[tpvCounter], zParString, "tpv", id, zid) ); } }; var savePosition = function() { setCookie( _this.getCookieName(), getNextHigherIndex() ); setLS(); }; var setCookie = function( cookie_name, value ) { var value = value; var expireDays = 7; var expireDate = new Date(); expireDate.setDate(expireDate.getDate() + expireDays); var c_value = encodeURI( value.toString() ) + ((expireDays==null) ? "" : "; expires="+expireDate.toUTCString()); document.cookie = cookie_name + "=" + c_value; }; var setLS = function() { if( typeof localStorage != 'undefined' ) { var a4prm = { 'pos': getNextHigherIndex() }; localStorage.setItem(cookieName, JSON.stringify(a4prm)); } }; var getNextHigherIndex = function() { var nextIndex = ( parseInt( activeIndex ) + 1); if( nextIndex <= ( container.ads.length - 1 ) ) { return nextIndex; } else { return 0; } }; var getCookieValue = function( name ) { var c_value = document.cookie; var c_start = c_value.indexOf(" " + name + "="); if (c_start == -1) { c_start = c_value.indexOf(name + "="); } if (c_start == -1) { c_value = null; } else { c_start = c_value.indexOf("=", c_start) + 1; var c_end = c_value.indexOf(";", c_start); if (c_end == -1) { c_end = c_value.length; } c_value = decodeURI(c_value.substring(c_start,c_end)); } if( typeof c_value == 'undefined' || c_value == null ) c_value = 0; return c_value; }; }; var WUSIWUG = function( element ) { var that = this; var el = element; var elwidth = parseInt( element.style.width ); var elheight = parseInt( element.style.height ); var ref = document.location.host; var myEvent = null; var loaded = true; var yOffset = 0; var actscrollpos = 0; var found = false; var direction = ""; this.findObj = function () { var scrollPos = getScrollXY(); if (scrollPos != actscrollpos) { if (scrollPos > actscrollpos) direction = "down" else direction = "up"; actscrollpos = scrollPos; } else { direction = "same"; } var wh = getWindowHeight(); var yh = findPosY(el); if (direction == "down" || direction == "same") { if ((scrollPos + wh) >= (yh + ((elheight / 4) * 3)) && scrollPos < (yh + elheight)) { if (!found && scrollPos < (yh + (elheight / 4))) { found = true; triggerEvent(el, 'visibleWUSIWUG'); } } else { if (found) { if (scrollPos > (yh + elheight)) { triggerEvent(el, 'hiddenWUSIWUG'); } } } } else if (direction == "up") { if (scrollPos < (yh + (elheight / 4)) && (scrollPos + wh) > yh) { if (!found && (scrollPos + wh) >= (yh + ((elheight / 4) * 3))) { found = true; triggerEvent(el, 'visibleWUSIWUG'); } } else { if (found) { if ((scrollPos + wh) < yh) { triggerEvent(el, 'hiddenWUSIWUG'); } } } } }; function getWindowHeight() { var myWidth = 0, myHeight = 0; if (typeof (window.innerWidth) == 'number') { myWidth = window.innerWidth; myHeight = window.innerHeight; } else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) { myWidth = document.documentElement.clientWidth; myHeight = document.documentElement.clientHeight; } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) { myWidth = document.body.clientWidth; myHeight = document.body.clientHeight; } return myHeight; }; function getScrollXY() { var scrOfX = 0, scrOfY = 0; if (typeof (window.pageYOffset) == 'number') { scrOfY = window.pageYOffset; scrOfX = window.pageXOffset; } else if (document.body && (document.body.scrollLeft || document.body.scrollTop)) { scrOfY = document.body.scrollTop; scrOfX = document.body.scrollLeft; } else if (document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop)) { scrOfY = document.documentElement.scrollTop; scrOfX = document.documentElement.scrollLeft; } return scrOfY; }; function findPosY(obj) { var curtop = 0; if (obj.offsetParent) { while (1) { curtop += obj.offsetTop; if (!obj.offsetParent) break; obj = obj.offsetParent; } } else if (obj.y) { curtop += obj.y; } yOffset = curtop; return curtop; }; function getVisibleEvent() { if( document.createEvent ) { var myEvent = document.createEvent("Event"); myEvent.initEvent("onVisibleWUSIWUG", true, false); } else { var myEvent = new CustomEvent( "onVisibleWUSIWUG", { detail: { message: "WUSIWUG Visible", time: new Date() }, bubbles: true, cancelable: false } ); } return myEvent; }; function getHiddenEvent() { if( document.createEvent ) { var myEvent = document.createEvent("Event"); myEvent.initEvent("onHiddenWUSIWUG", true, false); } else { var myEvent = new CustomEvent( "onHiddenWUSIWUG", { detail: { message: "WUSIWUG Hidden", time: new Date() }, bubbles: true, cancelable: false } ); } return myEvent; }; function init() { var docReady = function () { that.findObj(); loaded = true; }; addEvent(window, "scroll", function( event ){ if (!loaded) { that.findObj(); } loaded = false; }); addEvent(document, "DOMContentLoaded", docReady); if(document && document.readyState == "complete" || document.readyState == "interactive"){ docReady(); } if (document.all && !window.opera) { var randomId = Math.random(); var JSNode = document.createElement('script'); JSNode.id = 'contentloadtag' + randomId; JSNode.async = true; container.ad.appendChild(JSNode); JSNode.onreadystatechange = function () { if (this.readyState == "complete") docReady(); } } var loaded = false; }; init(); }; return { /** * Base method for creating a new PromoAd * @param zTrackId {string} * @param bName {string} * @param data {object} */ init: function( zTrackId, bName, data ){ var p = new PromoAds( data ); p.setZTrackId( zTrackId ); p.setBannerName( bName ); p.setCookieName( zTrackId + "-" + bName ); p.setWidth( data.bWidth ); p.setHeight( data.bHeight ); if( typeof data.retargetingAd == 'object' ){ p.setRetargeting(); } p.setContentStyle(); p.drawPromoAdContainer(); var mainPromoAdsContainer = document.getElementById( 'promoads_' + p.getMainId() ); addEvent(mainPromoAdsContainer, 'visibleWUSIWUG', function( event ){ p.drawMainContainer(); if( data.ads.length >= 1 ) { p.setViewPixel(); p.prepareAds( data.ads ); p.setupStylesheet(); p.loadAd( p.getSavedPosition() ); if( ( parseInt( data.ads.length ) ) > 1 || typeof data.retargetingAd == 'object' ) p.drawControls(); p.drawInfo(); } }); new WUSIWUG( mainPromoAdsContainer ); } } })(); PLIB489812688.init('31693324C1821838347T', 'Alle', {"bannerName":"Alle","zTrackId":"31693324C1821838347T","baseFormat":"2","baseLayout":"1","advertiserOrder":"0:16436_38232;1:5100_37629;2:11494_37707;3:11494_38229;4:2519_37597;5:3471_37598;6:3471_37601;7:9975_37726;8:1045_38176;9:3800_37467;10:1414_38172;11:990843_38032;12:16375_38201;13:10097_37632;14:472_38137;15:472_38138;16:427_37730;17:427_182;18:2775_118;19:1184_37815;20:1962_37713;21:125_248;22:16386_38195;23:10695_38167;24:11850_37837","fontFamily":"Arial,Helvetica,sans-serif","bWidth":"300","bHeight":"50","retargeting":"1","transparency":"0","bAdvSelection":"static","showBorder":"1","borderColor":"#BBBBBB","borderType":"solid","backgroundColor":"#FFFFFF","tFontColor":"#000000","tFontSize":"17","tBold":"1","tItalic":"0","tUnderlined":"0","tHoverFontColor":"#000000","tHoverFontSize":"17","tHoverBold":"1","tHoverItalic":"0","tHoverUnderlined":"1","cFontColor":"#000000","cFontSize":"14","cBold":"0","cItalic":"0","cUnderlined":"0","cHoverFontColor":"#000000","cHoverFontSize":"14","cHoverBold":"0","cHoverItalic":"0","cHoverUnderlined":"1","cCTAFontColor":"#5d636b","cCTAFontSize":"11","cCTABold":"1","cCTAItalic":"0","cCTAUnderlined":"0","cCTAHoverFontColor":"#1564C5","cCTAHoverFontSize":"11","cCTAHoverBold":"1","cCTAHoverItalic":"0","cCTAHoverUnderlined":"1","ads":[{"id":"37630","zid":"5100","loc":"de","gstd":"0","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" Baby-Markt DE ","titel":" Klick.Klick.Gl\u00fcck. ","titel_kurz":" Klick.Klick.Gl\u00fcck. ","titel_lang":" Klick.Klick.Gl\u00fcck. ","inhalt":" Der Baby Fachmarkt - Babyartikel & Babyausstattung online! ","inhalt_lang":" Babyausstattung, Babysachen und Babyartikel online zum besten Preis beim Baby Fachmarkt! ","inhalt_kurz":" Fachmarkt f\u00fcr Babyausstattung zum besten Preis ","deeplink":" Hier zugreifen!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?29624765C65578858T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/5100\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/5100\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/5100\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/5100\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/5100\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/5100\/logos\/180x60 "},"bild_80x80":" ..\/img\/5100\/80x80\/baby-markt-de-80x80.jpg ","bild_80x120":" ..\/img\/5100\/80x120\/baby-markt-de-80x120.jpg ","bild_120x60":" ..\/img\/5100\/120x60\/baby-markt-de-120x60.jpg ","bild_120x80":" ..\/img_formate\/pic_120x80\/baby-markt-de-allg_120x80.jpg ","bild_120x90":" ..\/img\/5100\/120x90\/baby-markt-de-120x90.jpg ","bild_120x120":" ..\/img\/5100\/120x120\/baby-markt-de-120x120.jpg ","bild_180x60":" ..\/img\/5100\/180x60\/Baby-markt-de-180x60.jpg ","bild_200x200":" ..\/img\/5100\/200x200\/baby-markt-de-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?19261163C786404132T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?19261163C786404132T ","retargeting":"1","ret_out":"2-3 ads","re_products":"1","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?22922693C540425188T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?22916262C89297770T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":" https:\/\/ad.zanox.com\/ppv\/?29624765C65578858T ","promoads_tpv":" https:\/\/ad.zanox.com\/ppv\/?29624765C65578858T ","keywords":{},"adkeywords":{},"advurl":" baby-markt.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?22922693C540425188T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?19261163C786404132T ","normal":" https:\/\/ad.zanox.com\/tpv\/?19261163C786404132T ","ads_mobile":{},"ad4content":" https:\/\/ad.zanox.com\/ppv\/?29624765C65578858T ","promoAds":" https:\/\/ad.zanox.com\/ppv\/?29624765C65578858T "}},{"id":"37707","zid":"11494","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" BASE ","titel":" Neu! BASE PLUS ","titel_kurz":" Neu! BASE PLUS ","titel_lang":" Neu! BASE PLUS ","inhalt":" Alle-Netze-Flatrate, Surfen (4GB mtl. bis 21,6 Mit\/s) ab 19,99 \u20ac mtl* ","inhalt_lang":" Alle-Netze-Flatrate, Surfen 4 GB\/Mon. mit bis zu 21,6 Mbit\/s schnell - ab 19,99 \u20ac mtl* ","inhalt_kurz":" Alle-Netze-Flatrate, Surfen (4 GB) ab 19,99 \u20ac mtl* ","deeplink":" Zum BASE Shop!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?30996153C37631766T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/180x60 "},"bild_80x80":" ..\/img\/11494\/80x80\/base-plus-80x80.jpg ","bild_80x120":" ..\/img\/11494\/80x120\/base-plus-80x120.jpg ","bild_120x60":" ..\/img\/11494\/120x60\/base-plus-120x60.jpg ","bild_120x80":" ..\/img\/11494\/120x80\/base-allin-120x80.jpg ","bild_120x90":" ..\/img\/11494\/120x90\/base-plus-120x90.jpg ","bild_120x120":" ..\/img\/11494\/120x120\/base-plus-120x120.jpg ","bild_180x60":" ..\/img\/11494\/180x60\/base-plus-180x60.jpg ","bild_200x200":" ..\/img\/11494\/200x200\/base-plus-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?23527002C90370902T;https:\/\/ad.zanox.com\/ppv\/?31051046C78353285T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?23527002C90370902T;https:\/\/ad.zanox.com\/ppv\/?31051046C78353285T ","retargeting":"1","ret_out":"topdisplay","re_products":"1","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?31220974C2043817586T;https:\/\/ad.zanox.com\/ppv\/?32312828C491279249T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?39538072C648079915T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?32312928C1578936536T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?31717065C544645809T;https:\/\/ad.zanox.com\/ppv\/?35112722C1887840001T ","ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":" Handys ","advurl":" www.base.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?31220974C2043817586T;https:\/\/ad.zanox.com\/ppv\/?32312828C491279249T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?31717097C1451928503T;https:\/\/ad.zanox.com\/ppv\/?36140646C1054550061T ","normal":" https:\/\/ad.zanox.com\/tpv\/?23527002C90370902T;https:\/\/ad.zanox.com\/ppv\/?31051046C78353285T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"38229","zid":"11494","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" BASE ","titel":" iPhone 6s - 16 GB ","titel_kurz":" iPhone 6s - 16 GB ","titel_lang":" iPhone 6s - 16 GB ","inhalt":" mit BASE PRO & 5 GB statt 2 GB u. EU-Roaming nur 44,99 mtl.* ","inhalt_lang":" Das iPhone 6s mit BASE PRO & 5 GB statt 2 GB u. EU-Roaming nur 44,99 mtl.* ","inhalt_kurz":" mit BASE PRO & 5 GB statt 2 GB nur 44,99 \u20ac mtl.*! ","deeplink":" www.base.de<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?31051046C78353285T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/11494\/logos\/180x60 "},"bild_80x80":" ..\/img\/11494\/80x80\/6s-pro-80x80.jpg ","bild_80x120":" ..\/img\/11494\/80x120\/6s-pro-80x120.jpg ","bild_120x60":" ..\/img\/11494\/120x60\/6s-pro-120x90.jpg ","bild_120x80":" ..\/img\/11494\/120x80\/s4mini-120x80.jpg ","bild_120x90":" ..\/img\/11494\/120x90\/6s-pro-120x90.jpg ","bild_120x120":" ..\/img\/11494\/120x120\/6s-pro-120x120.jpg ","bild_180x60":" ..\/img\/11494\/180x60\/6s-pro-180x60.jpg ","bild_200x200":" ..\/img\/11494\/200x200\/6s-pro-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?23527002C90370902T;https:\/\/ad.zanox.com\/ppv\/?31051046C78353285T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?23527002C90370902T;https:\/\/ad.zanox.com\/ppv\/?31051046C78353285T ","retargeting":"1","ret_out":"topdisplay","re_products":"1","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?31220974C2043817586T;https:\/\/ad.zanox.com\/ppv\/?32312828C491279249T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?32312828C491279249T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?35112722C1887840001T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?31717065C544645809T;https:\/\/ad.zanox.com\/ppv\/?35112722C1887840001T ","ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":" Handys ","advurl":" www.base.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?31220974C2043817586T;https:\/\/ad.zanox.com\/ppv\/?32312828C491279249T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?31717097C1451928503T;https:\/\/ad.zanox.com\/ppv\/?36140646C1054550061T ","normal":" https:\/\/ad.zanox.com\/tpv\/?23527002C90370902T;https:\/\/ad.zanox.com\/ppv\/?31051046C78353285T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"37597","zid":"2519","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"0","adtype":"1","advertiser":" buch.de ","titel":" eBook-Deal ","titel_kurz":" eBook-Deal ","titel_lang":" eBook - Deal ","inhalt":" eBooks g\u00fcnstiger als das gedruckte Buch - Preisvorteil sichern !* ","inhalt_lang":" eBooks g\u00fcnstiger als das gedruckte Buch - eBook Preisvorteil sichern bei buch.de !* ","inhalt_kurz":" eBooks g\u00fcnstiger als das gedruckte Buch * ","deeplink":" Zum Online Shop!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?30558505C30206196T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/2519\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/2519\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/2519\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/2519\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/2519\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/2519\/logos\/180x60 "},"bild_80x80":" ..\/img\/2519\/80x80\/ebook25sep-80x80.jpg ","bild_80x120":" ..\/img\/2519\/80x120\/ebook25sep-80x120.jpg ","bild_120x60":" ..\/img\/2519\/120x60\/ebook25sep-120x60.jpg ","bild_120x80":" ..\/img_formate\/pic_120x80\/buch-de-kinderwelt_120x80.jpg ","bild_120x90":" ..\/img\/2519\/120x90\/ebook25sep-120x90.jpg ","bild_120x120":" ..\/img\/2519\/120x120\/ebook25sep-120x120.jpg ","bild_180x60":" ..\/img\/2519\/180x60\/ebook25sep-180x60.jpg ","bild_200x200":" ..\/img\/2519\/200x200\/ebook25sep-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?18509183C2098100329T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?18509183C2098100329T ","retargeting":"0","ret_out":{},"re_products":"0","re_no_tpv":"0","re_tpv":{},"re_cpc":{},"re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":" Schn\u00c3\u00a4ppchen,B\u00c3\u00bccher,CDs,DVDs ","advurl":" www.buch.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":{},"topDisplay":{},"normal":" https:\/\/ad.zanox.com\/tpv\/?18509183C2098100329T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"38650","zid":"3471","loc":"de","gstd":"0","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" congstar ","titel":" Allnet Flat ","titel_kurz":" Allnet Flat ","titel_lang":" Allnet Flat ","inhalt":" 2 GB Datenvolumen & bis zu 42 Mbit\/s schnell schon ab 20,00 \u20ac mtl.* ","inhalt_lang":" Jetzt mit 2 GB Datenvolumen & bis zu 42 Mbit\/s schnell schon ab 20,00 \u20ac mtl.* ","inhalt_kurz":" 2 GB bis zu 42 Mbit\/s schnell schon ab 20,00 \u20ac mtl.* ","deeplink":" www.congstar.de<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?38452510C903148654T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/180x60 "},"bild_80x80":" ..\/img\/3471\/80x80\/congstar-mai-80x80.jpg ","bild_80x120":" ..\/img\/3471\/80x120\/congstar-mai-80x120.jpg ","bild_120x60":" ..\/img\/3471\/120x60\/congstar-mai-120x60.jpg ","bild_120x80":" ..\/img_formate\/pic_120x80\/congstar-def1_120x80.jpg ","bild_120x90":" ..\/img\/3471\/120x90\/congstar-mai-120x90.jpg ","bild_120x120":" ..\/img\/3471\/120x120\/congstar-mai-120x120.jpg ","bild_180x60":" ..\/img\/3471\/180x60\/congstar-mai-180x60.jpg ","bild_200x200":" ..\/img\/3471\/200x200\/congstar-mai-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?32037975C808833240T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?26130127C75006982T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?24219005C1300473316T;https:\/\/ad.zanox.com\/ppv\/?24447024C2119147123T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?26299114C123343985T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?22772306C962689769T ","ad4contentTPVable":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T ","promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T ","keywords":{},"adkeywords":" Handys ","advurl":" www.congstar.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?26226952C2066350258T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?38788109C1949530747T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","normal":" https:\/\/ad.zanox.com\/tpv\/?26130127C75006982T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","ads_mobile":{},"ad4content":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T ","promoAds":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T "}},{"id":"37601","zid":"3471","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" congstar ","titel":" Spare bis zu 70\u20ac!* ","titel_kurz":" Spare bis zu 70\u20ac!* ","titel_lang":" Spare bis zu 70\u20ac!* ","inhalt":" Wunschtarif in bester D-Netz Qualit\u00e4t! Du willst es. Du kriegst es. ","inhalt_lang":" Wunschtarif in bester D-Netz Qualit\u00e4t! Du willst es. Du kriegst es. ","inhalt_kurz":" Dein Wunschtarif in bester D-Netz Qualit\u00e4t! ","deeplink":" Zum Angebot!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?13403867C372495141T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/3471\/logos\/180x60 "},"bild_80x80":" ..\/img\/3471\/80x80\/congstar-mai-80x80.jpg ","bild_80x120":" ..\/img\/3471\/80x120\/congstar-mai-80x120.jpg ","bild_120x60":" ..\/img\/3471\/120x60\/congstar-mai-120x60.jpg ","bild_120x80":" ..\/img\/3471\/120x80\/congstar-htc-one-120x80.jpg ","bild_120x90":" ..\/img\/3471\/120x90\/congstar-mai-120x90.jpg ","bild_120x120":" ..\/img\/3471\/120x120\/congstar-mai-120x120.jpg ","bild_180x60":" ..\/img\/3471\/180x60\/congstar-mai-180x60.jpg ","bild_200x200":" ..\/img\/3471\/200x200\/congstar-mai-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?32037975C808833240T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?26130127C75006982T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?24219005C1300473316T;https:\/\/ad.zanox.com\/ppv\/?24447024C2119147123T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?35825127C980178373T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?22772306C962689769T ","ad4contentTPVable":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T ","promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T ","keywords":{},"adkeywords":" Handys ","advurl":" www.congstar.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?26226952C2066350258T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?38788109C1949530747T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","normal":" https:\/\/ad.zanox.com\/tpv\/?26130127C75006982T;https:\/\/ad.zanox.com\/ppv\/?13403867C372495141T ","ads_mobile":{},"ad4content":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T ","promoAds":" https:\/\/ad.zanox.com\/tpv\/?38450983C63257939T;https:\/\/ad.zanox.com\/ppv\/?38452510C903148654T "}},{"id":"37726","zid":"9975","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" crashtarife DE ","titel":" Highspeed surfen ","titel_kurz":" Highspeed surfen ","titel_lang":" Highspeed surfen ","inhalt":" surf flat 5000 - ab 5,95 \u20ac mtl. in den ersten 12 Monaten! ","inhalt_lang":" surf flat 5000 - mobil surfen mit bis zu 7,2 Mbit\/s - ab 5,95 \u20ac mtl. in den ersten 12 Monaten! ","inhalt_kurz":" surf flat 5000 ab 5,95 \u20ac mtl. in den ersten 12 Monaten! ","deeplink":" Jetzt informieren!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?22995867C293063773T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/180x60 "},"bild_80x80":" ..\/img\/9975\/80x80\/5gb-80x80.jpg ","bild_80x120":" ..\/img\/9975\/80x120\/crash-surfflat-80x120.jpg ","bild_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/ads\/120x60 ","bild_120x80":" ..\/img\/9975\/120x80\/crash-surfflat-120x80.jpg ","bild_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/ads\/120x90 ","bild_120x120":" ..\/img\/9975\/120x120\/5gb-120x120.jpg ","bild_180x60":" ..\/img\/9975\/180x60\/surf-flat-neu-180x60.jpg ","bild_200x200":" ..\/img\/9975\/200x200\/5gb-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?20790067C73691849T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?20790067C73691849T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?21608946C50359610T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?21615421C44753182T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?32539894C1630446367T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?31407255C986816457T ","ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":{},"advurl":" www.crash-tarife.de ","tpvNormalOptions":{"@attributes":{"startTime":"13","endTime":"16","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?21608946C50359610T ","topDisplay":{},"normal":" https:\/\/ad.zanox.com\/tpv\/?20790067C73691849T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"38176","zid":"1045","loc":"de","gstd":"0","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"0","adtype":"1","advertiser":" ElitePartner.de ","titel":" Singles mit Niveau ","titel_kurz":" Singles mit Niveau ","titel_lang":" Akademiker & Singles mit Niveau ","inhalt":" Testen Sie Ihre Chancen auf dem \u201eBeziehungsmarkt\u201c! ","inhalt_lang":" Den Partner f\u00fcr eine gl\u00fcckliche Beziehung finden? Jetzt Chancen auf dem \u201eBeziehungsmarkt\u201c testen! ","inhalt_kurz":" Chancen auf dem \u201eBeziehungsmarkt\u201c testen! ","deeplink":" \u00bb zu ElitePartner.de<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?30771148C721505899T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1045\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1045\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1045\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1045\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1045\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1045\/logos\/180x60 "},"bild_80x80":" ..\/img\/1045\/80x80\/elitep2016-80x80.jpg ","bild_80x120":" ..\/img\/1045\/80x120\/elitep2016-80x120.jpg ","bild_120x60":" ..\/img\/1045\/120x60\/elitep2016-120x60.jpg ","bild_120x80":" ..\/img_ad4mat\/img_120x80.gif ","bild_120x90":" ..\/img\/1045\/120x90\/elitep2016-120x120.jpg ","bild_120x120":" ..\/img\/1045\/120x120\/elitep2016-120x120.jpg ","bild_180x60":" ..\/img\/1045\/180x60\/elitep2016-180x60.jpg ","bild_200x200":" ..\/img\/1045\/200x200\/elitep2016-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/ppv\/?27598025C343590567T ","ssl_tpv":" https:\/\/ad.zanox.com\/ppv\/?27598025C343590567T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?27598124C1490327743T ","re_cpc":{},"re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":" https:\/\/ad.zanox.com\/ppv\/?28435466C1466243655T ","ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":{},"advurl":" www.elitepartner.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":{},"topDisplay":{},"normal":" https:\/\/ad.zanox.com\/ppv\/?27598025C343590567T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"38172","zid":"1414","loc":"de","gstd":"0","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" Klarmobil ","titel":" Aktion: Datenturbo ","titel_kurz":" Allnet Flat 1000 ","titel_lang":" Aktion: Datenturbo ","inhalt":" Allnet Flat 1000 - nur 14,85! \u20ac* ","inhalt_lang":" Nutzen Sie das zus\u00e4tzliche Datenvolumen! Nur 14,85\u20ac f\u00fcr die Allnet Flat 1000 ","inhalt_kurz":" Allnet Flat 1000 - nur 14,85! \u20ac* ","deeplink":" klarmobil.de<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?37830272C1267207093T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1414\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1414\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1414\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1414\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1414\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1414\/logos\/180x60 "},"bild_80x80":" ..\/img\/1414\/80x80\/allnet-flat-80x80.jpg ","bild_80x120":" ..\/img\/1414\/80x120\/allnet-flat-80x120.jpg ","bild_120x60":" ..\/img\/1414\/120x60\/allnet-flat-120x60.jpg ","bild_120x80":" ..\/img_formate\/pic_120x80\/klarmobil-def_120x80.jpg ","bild_120x90":" ..\/img\/1414\/120x90\/allnet-flat-120x90.jpg ","bild_120x120":" ..\/img\/1414\/120x120\/allnet-flat-120x120.jpg ","bild_180x60":" ..\/img\/1414\/180x60\/allnet-flat-180x60.jpg ","bild_200x200":" ..\/img\/1414\/200x200\/allnet-flat-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?24025034C83252163T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?24025034C83252163T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?29673010C1210111932T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?37830301C351708677T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?38948479C706421013T ","ad4contentTPVable":" https:\/\/ad.zanox.com\/tpv\/?26225739C88903552T ","promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?26225739C88903552T ","keywords":{},"adkeywords":{},"advurl":" www.klarmobil.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?29673010C1210111932T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?38948464C2030642381T ","normal":" https:\/\/ad.zanox.com\/tpv\/?24025034C83252163T ","ads_mobile":{},"ad4content":" https:\/\/ad.zanox.com\/tpv\/?26225739C88903552T ","promoAds":" https:\/\/ad.zanox.com\/tpv\/?26225739C88903552T "}},{"id":"38032","zid":"990843","loc":"de","gstd":"1","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"0","adtype":"1","advertiser":" marc-o-polo ","titel":" Marc O\u00b4Polo ","titel_kurz":" Marc O\u00b4Polo ","titel_lang":" Marc O\u00b4Polo - Onlineshop ","inhalt":" MID SEASON SALE! - Jetzt bis 50% sparen! ","inhalt_lang":" MID SEASON SALE! - Jetzt bis 50% sparen! ","inhalt_kurz":" MID SEASON SALE! - Jetzt bis 50% sparen! ","deeplink":" Hier sparen!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?30638191C82640871T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/990843\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/990843\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/990843\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/990843\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/990843\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/990843\/logos\/180x60 "},"bild_80x80":" ..\/img\/990843\/80x80\/marcopolo-strick-80x80.jpg ","bild_80x120":" ..\/img\/990843\/80x120\/marcopolo-strick-80x120.jpg ","bild_120x60":" ..\/img\/990843\/120x60\/marcopolo-strick-120x60.jpg ","bild_120x80":{},"bild_120x90":" ..\/img\/990843\/120x90\/marcopolo-strick-120x90.jpg ","bild_120x120":" ..\/img\/990843\/120x120\/marcopolo-strick-120x120.jpg ","bild_180x60":" ..\/img\/990843\/180x60\/marcopolo-strick-180x60.jpg ","bild_200x200":" ..\/img\/990843\/200x200\/marcopolo-strick-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?27673836C1463242770T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?27673836C1463242770T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?30071551C1408844142T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?30071719C1077212035T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":{},"advurl":" marc-o-polo.com ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?30071551C1408844142T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?27673836C1463242770T ","normal":" https:\/\/ad.zanox.com\/tpv\/?27673836C1463242770T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"38201","zid":"16375","loc":"de","gstd":"0","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" Mediaspar DE ","titel":" Mediaspar TV ","titel_kurz":" Mediaspar TV ","titel_lang":" Mediaspar TV ","inhalt":" Top-Tarife, attraktive Preise & das passende Smartphone f\u00fcr Dich! ","inhalt_lang":" Top-Tarife, attraktive Preise & das passende Smartphone f\u00fcr Dich! Online bei mediaspar.tv! ","inhalt_kurz":" Top-Tarife, attraktive Preise & passende Smartphones ","deeplink":" \u00bb Jetzt zu Mediaspar<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?31053345C78639470T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/logos\/180x60 "},"bild_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/ads\/80x80 ","bild_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/ads\/80x120 ","bild_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/ads\/120x60 ","bild_120x80":{},"bild_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/ads\/120x90 ","bild_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/ads\/120x120 ","bild_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/16375\/ads\/180x60 ","bild_200x200":" ..\/img\/16375\/200x200\/mediaspar-p-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?31058039C51601638T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?31058039C51601638T ","retargeting":"1","ret_out":"2-3 ads","re_products":"1","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?31091154C649964832T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?31338792C485146076T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":{},"promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?31058044C1006795761T ","keywords":{},"adkeywords":{},"advurl":" www.mediaspar.tv ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?31091154C649964832T ","topDisplay":{},"normal":" https:\/\/ad.zanox.com\/tpv\/?31058039C51601638T ","ads_mobile":{},"ad4content":{},"promoAds":" https:\/\/ad.zanox.com\/tpv\/?31058044C1006795761T "}},{"id":"37632","zid":"10097","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" mobilcom-debitel DE ","titel":" Samsung Galaxy S7 schon ab 1 \u20ac!* ","titel_kurz":" Galaxy S7 ab 1\u20ac!* ","titel_lang":" Samsung Galaxy S7 ab 1 \u20ac!* ","inhalt":" SCHN\u00c4PPCHEN-AALAAARM - Top Smartphones der Top Marken ab 1 \u20ac! ","inhalt_lang":" SCHN\u00c4PPCHEN-AALAAARM - Top Smartphones der gro\u00dfen Marken ab 1 \u20ac! ","inhalt_kurz":" Top Smartphones wie das Galaxy S7 schon ab 1\u20ac! ","deeplink":" mobilcom-debitel.de<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?19270179C99710459T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/10097\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/10097\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/10097\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/10097\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/10097\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/10097\/logos\/180x60 "},"bild_80x80":" ..\/img\/10097\/80x80\/topangebot-september- 80x80.jpg ","bild_80x120":" ..\/img\/10097\/80x120\/topangebot-september- 80x120.jpg ","bild_120x60":" ..\/img\/10097\/120x60\/topangebot-september- 120x60.jpg ","bild_120x80":" ..\/img_formate\/pic_120x80\/mobilcom-nokiax7_120x80.jpg ","bild_120x90":" ..\/img\/10097\/120x90\/topangebot-september- 120x90.jpg ","bild_120x120":" ..\/img\/10097\/120x120\/topangebot-september- 120x120.jpg ","bild_180x60":" ..\/img\/10097\/180x60\/topangebot-september- 180x60.jpg ","bild_200x200":" ..\/img\/10097\/200x200\/topangebot-september- 200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?19272071C1793086368T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?19272071C1793086368T ","retargeting":"1","ret_out":"2-3 ads","re_products":"1","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?22501230C1302182209T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?21340657C7392151T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?31407588C493372518T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?31407588C493372518T ","ad4contentTPVable":{},"promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?19272071C1793086368T ","keywords":{},"adkeywords":{},"advurl":" www.md.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?22501230C1302182209T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?23476786C76740391T ","normal":" https:\/\/ad.zanox.com\/tpv\/?19272071C1793086368T ","ads_mobile":{},"ad4content":{},"promoAds":" https:\/\/ad.zanox.com\/tpv\/?19272071C1793086368T "}},{"id":"37937","zid":"472","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" o2 ","titel":" o2 DSL All-In L ","titel_kurz":" o2 DSL All-In L ","titel_lang":" o2 DSL All-In L ","inhalt":" Allnet-Flat ab 14,99\u20ac mtl. - 219,98\u20ac sparen bis 04.10.* ","inhalt_lang":" Bis 50 Mbit\/s & Allnet-Flat ab 14,99\u20ac mtl.* - jetzt bis 04.10. bis zu 219,98 \u20ac sparen!* ","inhalt_kurz":" 50 Mbit\/s & Allnet-Flat ab 14,99 \u20ac mtl.* ","deeplink":" Nur Online!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?12680502C978705987T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/180x60 "},"bild_80x80":" ..\/img\/472\/80x80\/O2DSL-August15-80x80.jpg ","bild_80x120":" ..\/img\/472\/80x120\/O2DSL-August15-80x120.jpg ","bild_120x60":" ..\/img\/472\/120x60\/O2DSL-August15-120x60.jpg ","bild_120x80":" ..\/img\/472\/120x80\/o2-huawei999-120x80.jpg ","bild_120x90":" ..\/img\/472\/120x90\/O2DSL-August15-120x90.jpg ","bild_120x120":" ..\/img\/472\/120x120\/O2DSL-August15-120x120.jpg ","bild_180x60":" ..\/img\/472\/180x60\/O2DSL-August15-180x60.jpg ","bild_200x200":" ..\/img\/472\/200x200\/O2DSL-August15-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?11488157C1719865837T;https:\/\/ad.zanox.com\/ppv\/?10377311C647050252T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?11488157C1719865837T;https:\/\/ad.zanox.com\/ppv\/?10377311C647050252T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?35332738C75712185T;https:\/\/ad.zanox.com\/ppv\/?35332738C75712185T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?35377036C635397144T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?32539915C1130250275T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?22779399C1621194522T;https:\/\/ad.zanox.com\/ppv\/?38043378C786528297T ","ad4contentTPVable":{},"promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?30094974C17080497T;https:\/\/ad.zanox.com\/ppv\/?30094974C17080497T ","keywords":{},"adkeywords":{},"advurl":" o2online.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?35332738C75712185T;https:\/\/ad.zanox.com\/ppv\/?35332738C75712185T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?11772126C710262408T;https:\/\/ad.zanox.com\/ppv\/?11772126C710262408T ","normal":" https:\/\/ad.zanox.com\/tpv\/?11488157C1719865837T;https:\/\/ad.zanox.com\/ppv\/?10377311C647050252T ","ads_mobile":{},"ad4content":{},"promoAds":" https:\/\/ad.zanox.com\/tpv\/?30094974C17080497T;https:\/\/ad.zanox.com\/ppv\/?30094974C17080497T "}},{"id":"37937","zid":"472","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" o2 ","titel":" o2 DSL All-In L ","titel_kurz":" o2 DSL All-In L ","titel_lang":" o2 DSL All-In L ","inhalt":" Allnet-Flat ab 14,99\u20ac mtl. - 219,98\u20ac sparen bis 04.10.* ","inhalt_lang":" Bis 50 Mbit\/s & Allnet-Flat ab 14,99\u20ac mtl.* - jetzt bis 04.10. bis zu 219,98 \u20ac sparen!* ","inhalt_kurz":" 50 Mbit\/s & Allnet-Flat ab 14,99 \u20ac mtl.* ","deeplink":" Nur Online!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?12680502C978705987T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/472\/logos\/180x60 "},"bild_80x80":" ..\/img\/472\/80x80\/O2DSL-August15-80x80.jpg ","bild_80x120":" ..\/img\/472\/80x120\/O2DSL-August15-80x120.jpg ","bild_120x60":" ..\/img\/472\/120x60\/O2DSL-August15-120x60.jpg ","bild_120x80":" ..\/img\/472\/120x80\/o2-huawei999-120x80.jpg ","bild_120x90":" ..\/img\/472\/120x90\/O2DSL-August15-120x90.jpg ","bild_120x120":" ..\/img\/472\/120x120\/O2DSL-August15-120x120.jpg ","bild_180x60":" ..\/img\/472\/180x60\/O2DSL-August15-180x60.jpg ","bild_200x200":" ..\/img\/472\/200x200\/O2DSL-August15-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?11488157C1719865837T;https:\/\/ad.zanox.com\/ppv\/?10377311C647050252T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?11488157C1719865837T;https:\/\/ad.zanox.com\/ppv\/?10377311C647050252T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?35332738C75712185T;https:\/\/ad.zanox.com\/ppv\/?35332738C75712185T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?35377036C635397144T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?32539915C1130250275T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?22779399C1621194522T;https:\/\/ad.zanox.com\/ppv\/?38043378C786528297T ","ad4contentTPVable":{},"promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?30094974C17080497T;https:\/\/ad.zanox.com\/ppv\/?30094974C17080497T ","keywords":{},"adkeywords":{},"advurl":" o2online.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?35332738C75712185T;https:\/\/ad.zanox.com\/ppv\/?35332738C75712185T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?11772126C710262408T;https:\/\/ad.zanox.com\/ppv\/?11772126C710262408T ","normal":" https:\/\/ad.zanox.com\/tpv\/?11488157C1719865837T;https:\/\/ad.zanox.com\/ppv\/?10377311C647050252T ","ads_mobile":{},"ad4content":{},"promoAds":" https:\/\/ad.zanox.com\/tpv\/?30094974C17080497T;https:\/\/ad.zanox.com\/ppv\/?30094974C17080497T "}},{"id":"37730","zid":"427","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" Parship - Online-Partneragentur ","titel":" Auf Partnersuche? ","titel_kurz":" Auf Partnersuche? ","titel_lang":" Partnersuche nur beim Original! ","inhalt":" Bei Deutschlands gro\u00dfer Partnervermittlung finden Sie den Richtigen! ","inhalt_lang":" Finden Sie den richtigen Partner bei Parship, Deutschlands gro\u00dfer Partnervermittlung! ","inhalt_kurz":" Finden Sie den richtigen Partner bei Parship! ","deeplink":" Gleich verlieben<\/a> ","direct_deep":" https:\/\/www.zanox-affiliate.de\/ppc\/?21064310C1376700715T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/180x60 "},"bild_80x80":" ..\/img\/427\/80x80\/parshipApril2015-80x80.jpg ","bild_80x120":" ..\/img\/427\/80x120\/parshipApril2015-80x120.jpg ","bild_120x60":" ..\/img\/427\/120x60\/parshipApril2015-120x60.jpg ","bild_120x80":" ..\/img\/427\/120x80\/parship-frau-120x80.jpg ","bild_120x90":" ..\/img\/427\/120x90\/parshipApril2015-120x90.jpg ","bild_120x120":" ..\/img\/427\/120x120\/parshipApril2015-120x120.jpg ","bild_180x60":" ..\/img\/427\/180x60\/parshipApril2015-180x60.jpg ","bild_200x200":" ..\/img\/427\/200x200\/parshipApril2015-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","ssl_tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22506544C1159052576T ","re_cpc":" https:\/\/www.zanox-affiliate.de\/ppc\/?21064059C1853222881T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":{},"promoads_tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","keywords":{},"adkeywords":{},"advurl":" www.parship.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/www.zanox-affiliate.de\/tpv\/?22506544C1159052576T ","topDisplay":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","normal":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","ads_mobile":{},"ad4content":{},"promoAds":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T "}},{"id":"182","zid":"427","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" Parship - Online-Partneragentur ","titel":" PARSHIP - das Original ","titel_kurz":" PARSHIP ","titel_lang":" Paare finden sich - bei PARSHIP! ","inhalt":" Jetzt den passenden Partner finden! Ihre Suche? Nur beim Original! ","inhalt_lang":" Starten Sie jetzt Ihre Partnersuche bei Parship - dem Original! Partnersuche mit hoher Erfolgsquote*! ","inhalt_kurz":" Den passenden Partner finden - beim Original! ","deeplink":" Hier verlieben!<\/a> ","direct_deep":" https:\/\/www.zanox-affiliate.de\/ppc\/?11631442C1802955004T ","bild":" //static-de.ad4mat.net/ads/promoads/parship_40.jpg ","bild_gr":" //static-de.ad4mat.net/ads/promoads/parship_105.jpg ","bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/427\/logos\/180x60 "},"bild_80x80":" ..\/img\/427\/80x80\/jan16-80x80.jpg ","bild_80x120":" ..\/img\/427\/80x120\/jan16-80x120.jpg ","bild_120x60":" ..\/img\/427\/120x60\/jan16-120x60.jpg ","bild_120x80":" ..\/img\/427\/120x80\/parship-frau-120x80.jpg ","bild_120x90":" ..\/img\/427\/120x90\/jan16-120x90.jpg ","bild_120x120":" ..\/img\/427\/120x120\/jan16-120x120.jpg ","bild_180x60":" ..\/img\/427\/180x60\/jan16-180x60.jpg ","bild_200x200":" ..\/img\/427\/200x200\/jan16-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":" icons\/dating.gif ","tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","ssl_tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22506544C1159052576T ","re_cpc":" https:\/\/www.zanox-affiliate.de\/ppc\/?21064059C1853222881T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":{},"promoads_tpv":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","keywords":{},"adkeywords":{},"advurl":" www.parship.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/www.zanox-affiliate.de\/tpv\/?22506544C1159052576T ","topDisplay":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","normal":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T ","ads_mobile":{},"ad4content":{},"promoAds":" https:\/\/www.zanox-affiliate.de\/tpv\/?22430513C1898032625T "}},{"id":"37815","zid":"1184","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" simyo ","titel":" Unsere Top Angebote ","titel_kurz":" Top Angebote ","titel_lang":" Jetzt die besten Smartphone Angebote sichern! ","inhalt":" Aus Simyo wird BLAU - Jetzt Angebote sichern! ","inhalt_lang":" Aus Simyo wird BLAU - Jetzt Top Angebote ","inhalt_kurz":" Aus Simyo wird BLAU ","deeplink":" Hier sichern!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?24027362C91055731T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1184\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1184\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1184\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1184\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1184\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1184\/logos\/180x60 "},"bild_80x80":" ..\/img\/1184\/80x80\/iph6-magenta-80x80.jpg ","bild_80x120":" ..\/img\/1184\/80x120\/iph6-magenta-80x120.jpg ","bild_120x60":" ..\/img\/1184\/120x60\/iph6-magenta-120x60.jpg ","bild_120x80":" ..\/img_formate\/pic_120x80\/simyo-allnetflat_120x80.jpg ","bild_120x90":" ..\/img\/1184\/120x90\/iph6-magenta-120x90.jpg ","bild_120x120":" ..\/img\/1184\/120x120\/iph6-magenta-120x120.jpg ","bild_180x60":" ..\/img\/1184\/180x60\/iph6-magenta-180x60.jpg ","bild_200x200":" ..\/img\/1184\/200x200\/iph6-magenta-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/ppv\/?24027362C91055731T ","ssl_tpv":" https:\/\/ad.zanox.com\/ppv\/?24027362C91055731T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/ppv\/?25447717C75637399T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?25447717C75637399T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":{},"advurl":" https:\/\/angebote.simyo.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/ppv\/?25447717C75637399T ","topDisplay":" https:\/\/ad.zanox.com\/ppv\/?24027362C91055731T ","normal":" https:\/\/ad.zanox.com\/ppv\/?24027362C91055731T ","ads_mobile":{},"ad4content":{},"promoAds":{}}},{"id":"37713","zid":"1962","loc":"de","gstd":"0","gxml":"0","gpip":"0","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" Unitymedia ","titel":" Unitymedia ","titel_kurz":" Unitymedia ","titel_lang":" Unitymedia ","inhalt":" Mit 2play COMFORT 120 g\u00fcnstig surfen und telefonieren ab 24,99 \u20ac mtl.* ","inhalt_lang":" Mit 2play COMFORT 120 g\u00fcnstig surfen und telefonieren ab 24,99 \u20ac mtl.* - 60 \u20ac Online Vorteil ","inhalt_kurz":" Mit 2play COMFORT 120 g\u00fcnstig surfen & telefonieren ","deeplink":" Jetzt wechseln!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?24041716C41367536T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1962\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1962\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1962\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1962\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1962\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/1962\/logos\/180x60 "},"bild_80x80":" ..\/img\/1962\/80x80\/unity-80x80.jpg ","bild_80x120":" ..\/img\/1962\/80x120\/unity-80x120.jpg ","bild_120x60":" ..\/img\/1962\/120x60\/unity-120x60.jpg ","bild_120x80":" ..\/img\/1962\/120x80\/2play2499-120x80.jpg ","bild_120x90":" ..\/img\/1962\/120x90\/unity-120x90.jpg ","bild_120x120":" ..\/img\/1962\/120x120\/unity-120x120.jpg ","bild_180x60":" ..\/img\/1962\/180x60\/unity-180x60.jpg ","bild_200x200":" ..\/img\/1962\/200x200\/unity-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?30350953C1242378436T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?30350953C1242378436T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?29548144C1859717557T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?30354236C947342688T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":{},"mobile_tpv":{},"ad4contentTPVable":" https:\/\/ad.zanox.com\/tpv\/?30173249C56563589T ","promoads_tpv":" https:\/\/ad.zanox.com\/tpv\/?30173249C56563589T ","keywords":{},"adkeywords":{},"advurl":" unitymedia.de ","tpvNormalOptions":{"@attributes":{"startTime":"0","endTime":"0","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?29548144C1859717557T ","topDisplay":" https:\/\/ad.zanox.com\/tpv\/?30350953C1242378436T ","normal":" https:\/\/ad.zanox.com\/tpv\/?30350953C1242378436T ","ads_mobile":{},"ad4content":" https:\/\/ad.zanox.com\/tpv\/?30173249C56563589T ","promoAds":" https:\/\/ad.zanox.com\/tpv\/?30173249C56563589T "}},{"id":"37726","zid":"9975","loc":"de","gstd":"1","gxml":"1","gpip":"1","gmobile":"0","gpromoads":"1","gad4content":"1","adtype":"1","advertiser":" crashtarife DE ","titel":" Highspeed surfen ","titel_kurz":" Highspeed surfen ","titel_lang":" Highspeed surfen ","inhalt":" surf flat 5000 - ab 5,95 \u20ac mtl. in den ersten 12 Monaten! ","inhalt_lang":" surf flat 5000 - mobil surfen mit bis zu 7,2 Mbit\/s - ab 5,95 \u20ac mtl. in den ersten 12 Monaten! ","inhalt_kurz":" surf flat 5000 ab 5,95 \u20ac mtl. in den ersten 12 Monaten! ","deeplink":" Jetzt informieren!<\/a> ","direct_deep":" https:\/\/ad.zanox.com\/ppc\/?22995867C293063773T ","bild":{},"bild_gr":{},"bild_xxl":{},"logos":{"logo_80x80":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/80x80 ","logo_80x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/80x120 ","logo_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/120x60 ","logo_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/120x90 ","logo_120x120":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/120x120 ","logo_180x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/logos\/180x60 "},"bild_80x80":" ..\/img\/9975\/80x80\/5gb-80x80.jpg ","bild_80x120":" ..\/img\/9975\/80x120\/crash-surfflat-80x120.jpg ","bild_120x60":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/ads\/120x60 ","bild_120x80":" ..\/img\/9975\/120x80\/crash-surfflat-120x80.jpg ","bild_120x90":" https:\/\/static.ad4mat.net\/images\/de\/advertiser\/9975\/ads\/120x90 ","bild_120x120":" ..\/img\/9975\/120x120\/5gb-120x120.jpg ","bild_180x60":" ..\/img\/9975\/180x60\/surf-flat-neu-180x60.jpg ","bild_200x200":" ..\/img\/9975\/200x200\/5gb-200x200.jpg ","kampagne_view":{},"kamp_freq_cap":"0","icons":{},"tpv":" https:\/\/ad.zanox.com\/tpv\/?20790067C73691849T ","ssl_tpv":" https:\/\/ad.zanox.com\/tpv\/?20790067C73691849T ","retargeting":"1","ret_out":"topdisplay","re_products":"0","re_no_tpv":"0","re_tpv":" https:\/\/ad.zanox.com\/tpv\/?21608946C50359610T ","re_cpc":" https:\/\/ad.zanox.com\/ppc\/?21615421C44753182T ","re_bsx":" 0 ","hasCapping":"0","mobile_cpc":" https:\/\/ad.zanox.com\/ppc\/?32539894C1630446367T ","mobile_tpv":" https:\/\/ad.zanox.com\/tpv\/?31407255C986816457T ","ad4contentTPVable":{},"promoads_tpv":{},"keywords":{},"adkeywords":{},"advurl":" www.crash-tarife.de ","tpvNormalOptions":{"@attributes":{"startTime":"13","endTime":"16","isOn":"0"}},"advertiserTracking":{"@attributes":{"advertiserTracking":"1"}},"hasClickRetargeting":{"@attributes":{"isOn":"0"}},"hasTopDisplayBorder":{},"topDisplayBorderColor":{},"httpsTPV":{"active":" 1 ","retargeting":" https:\/\/ad.zanox.com\/tpv\/?21608946C50359610T ","topDisplay":{},"normal":" https:\/\/ad.zanox.com\/tpv\/?20790067C73691849T ","ads_mobile":{},"ad4content":{},"promoAds":{}}}]});