bouncex.callbacks["website"]({"active":"1","advanced_cookie_options":"{\"first_party_limit\":\"3500\",\"local_storage\":\"1\"}","analytics":"0","ba_enabled":null,"ba_settings":null,"ba_settings_json":null,"block_ips":null,"block_urls":[],"campaign_js":{"custom_validation":{"deployments":[[{"activation":"type","prop":"not_exactly","prop2":"tabtitle","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"teleport","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"none","prop3":"","val":""}]],"event":"impression","testmode":false,"ttype":"variation","val":"/* SOTEC-9673 */\nvar $eCapCampaign = bouncex.campaigns[campaign_id].obj1;\nvar defaultValidation = {\n gender: window.location.href.indexOf('/es/') === -1 ? 'Please select your title' : 'Seleccione su título',\n fname: window.location.href.indexOf('/es/') === -1 ? 'Please enter your first name' : 'Por favor, introduzca su nombre',\n lname: window.location.href.indexOf('/es/') === -1 ? 'Please enter your last name' : 'Por favor, introduzca su apellido',\n checkbox: window.location.href.indexOf('/es/') === -1 ? 'This checkbox is required' : 'Este campo es obligatorio ',\n emailEmpty: window.location.href.indexOf('/es/') === -1 ? 'Please enter email' : 'Por favor, no olvides tu e-mail',\n emailInvalid: window.location.href.indexOf('/es/') === -1 ? 'Please enter a valid email address' : 'Por favor, introce un e-mail válido',\n duplicateemail: window.location.href.indexOf('/es/') === -1 ? 'That email is already registered' : 'Este e-mail ya existe'\n};\n\n/* make all changes above this line */\n\nfunction removeErrorText($el) {\n $el.closest('.bx-row').removeClass('bx-row-validation');\n $el.removeAttr('aria-invalid aria-describedby');\n}\n\nfunction addErrorText($el, txt) {\n var $row = $el.closest('.bx-row');\n $row.addClass('bx-row-validation');\n $row.find('.bx-vtext').text(txt);\n $el.attr('aria-invalid', true).attr('aria-describedby', $row.find('.bx-vtext').attr('id'));\n}\n\nfunction emailValidationCheck() {\n var $el = jQuery(this);\n if (bouncex.utils.validate.email($el.val())) {\n removeErrorText($el);\n } else {\n var emailErr = $el.val() !== \"\" ? defaultValidation.emailInvalid : defaultValidation.emailEmpty;\n addErrorText($el, emailErr); \n }\n}\n\nfunction validationCheck() {\n var $el = jQuery(this);\n if ((!$el.hasClass('bx-checkelem') \u0026\u0026 $el.val() !== \"\") || !!$el[0].checked) {\n removeErrorText($el);\n } else {\n addErrorText($el, defaultValidation[$el.attr('name')]);\n }\n}\n\n/*Duplicate error */\nbouncex.on(bouncex.document, 'bxValidateFormComplete.bx-custom-email-'+ca_id, function(e) {\n if (e.response \u0026\u0026 e.response.errors \u0026\u0026 e.response.errors.email === 'Please enter a valid e-mail') {\n $eCapCampaign.find('#bx-error-'+ca_id+'-email').text(defaultValidation.duplicateEmail);\n }\n}); \n\nbouncex.on(bouncex.document, 'bxValidateFormComplete.bx-custom-valid-'+ca_id, function(e) {\n bouncex.on($eCapCampaign.find('.bx-el.bx-input[name=\"email\"]'), 'input.wknd-' + ca_id, emailValidationCheck);\n bouncex.on($eCapCampaign.find('.bx-el.bx-input:not([name=\"email\"]), .bx-selectelem.bx-input, .bx-checkelem.bx-input'), 'input.wknd-' + ca_id, validationCheck);\n bouncex.off(bouncex.document, 'bxValidateFormComplete.bx-custom-valid-'+ca_id);\n});"},"custom_validation_close":{"deployments":[[{"activation":"type","prop":"not_exactly","prop2":"tabtitle","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"teleport","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"none","prop3":"","val":""}]],"event":"close","testmode":false,"ttype":"variation","val":"/* SOTEC-9673 */\nbouncex.off(bouncex.campaigns[campaign_id].obj1.find('.bx-el.bx-input[name=\"email\"]'), 'input.wknd-' + ca_id);\nbouncex.off(bouncex.campaigns[campaign_id].obj1.find('.bx-el.bx-input:not([name=\"email\"]), .bx-selectelem.bx-input, .bx-checkelem.bx-input'), 'input.wknd-' + ca_id);\nbouncex.off(bouncex.document, 'bxValidateFormComplete.bx-custom-valid-'+ca_id);\nbouncex.off(bouncex.document, 'bxValidateFormComplete.bx-custom-email-'+ca_id);"},"gender_profiling_ec_logic":{"deployments":[[{"activation":"purpose","prop":"exactly","prop2":"emailcapture","prop3":"","val":""}]],"event":"impression","testmode":false,"ttype":"variation","val":"/* Populate Appropriate Value for Gender and Profiling Fields Passed to ESP */\nvar $campaign = bouncex.campaigns[ca_id].obj1;\n\nif ($campaign.find('input[name=\"checkbox\"]').length \u003e 0 \u0026\u0026 $campaign.find('select[name=\"gender\"]').length \u003e 0) {\n var $consent = $campaign.find('[name=\"checkbox\"]'),\n $gender = $campaign.find('[name=\"gender\"]'),\n interest = $campaign.find('[name=\"interest\"]'),\n profiling = $campaign.find('[name=\"profiling\"]');\n\n var male = ['sr', 'mr'],\n female = ['sra', 'srta', 'ms'],\n preferNot = ['prefiero no decirlo', 'rather not say'];\n \n interest.val(1);\n profiling.val(2);\n \n bouncex.on($gender, 'change.wknd-' + ca_id, function (e) {\n var genderOption = jQuery(this).val().toLowerCase().replace('.','');\n \n determineInterest(genderOption);\n });\n\n bouncex.on($consent, 'change.wknd-' + ca_id, function (e) {\n jQuery(this).is(':checked') ? profiling.val(1) : profiling.val(2);\n });\n \n}\n\nfunction determineInterest(str) {\n if(female.indexOf(str) \u003e -1) {\n interest.val(2); \n } else if(male.indexOf(str) \u003e -1) {\n interest.val(1); \n } else if(preferNot.indexOf(str) \u003e -1) {\n interest.val(3); \n }\n}"},"heading_focus":{"deployments":[[{"activation":"type","prop":"not_exactly","prop2":"tabtitle","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"teleport","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"none","prop3":"","val":""}],[{"activation":"purpose","prop":"not_exactly","prop2":"programmatic","prop3":"","val":""}]],"event":"activation","testmode":false,"ttype":"variation","val":"bouncex.campaigns[ca_id].obj1.find('form:not(:has(.bx-2-heading))').each(function(i, formEl) {\n var $htmlHeadingElement = jQuery(formEl).find('h1, h2, h3, h4, h5, h6').eq(0);\n if ($htmlHeadingElement.length \u003e 0) {\n $htmlHeadingElement.addClass('bx-2-heading wknd-ally-focus').attr('tabindex', '-1');\n } else {\n var $headlineGroup = jQuery(formEl).find('.bx-group:has(.bx-row-text-headline, .bx-row-text-subheadline)').eq(0);\n if ($headlineGroup.length === 0) {\n $headlineGroup = jQuery(formEl).find('.bx-group:has(.bx-row-text)').eq(0);\n }\n $headlineGroup.find('.bx-row-text:first').nextUntil(':not(.bx-row-text, .bx-row-coupon)').addBack().wrapAll('\u003cdiv class=\"bx-2-heading wknd-ally-focus\" id=\"'+$headlineGroup.attr('id')+'-h2\" tabindex=\"-1\" role=\"heading\" aria-level=\"2\"\u003e\u003c/div\u003e'); \n }\n});"},"omniture_impression":{"deployments":[[{"activation":"default"}]],"event":"impression","testmode":false,"ttype":"variation","val":"var $campaign = bouncex.campaigns[ca_id],\n\tpid = $campaign.pid,\n\tpurpose = $campaign.purpose,\n\tcaName = $campaign.name;\n\nif (!!utag \u0026\u0026 !!utag.link) {\n\tutag.link({\n\t\t\"event_name\": \"wunderkind_overlay_impression\",\n\t\t\"wunderkind_overlay_campaign_id\": pid + '-' + purpose + '-' + caName + '-' + ca_id\n\t});\n}\n"},"omniture_submit":{"deployments":[[{"activation":"default"}]],"event":"submission","testmode":false,"ttype":"variation","val":"var $campaign = bouncex.campaigns[ca_id],\n\tpid = $campaign.pid,\n\tpurpose = $campaign.purpose,\n\tcaName = $campaign.name;\n\nif (!!utag \u0026\u0026 !!utag.link) {\n\tutag.link({\n\t\t\"event_name\": \"wunderkind_overlay_submit\",\n\t\t\"wunderkind_overlay_campaign_id\": pid + '-' + purpose + '-' + caName + '-' + ca_id\n\t});\n}"},"pushup_fix":{"deployments":[[{"activation":"type","prop":"exactly","prop2":"conversionbar","prop3":"","val":""}]],"event":"impression","exclusions":[],"testmode":false,"ttype":"variation","val":"var $campaign = bouncex.campaigns[campaign_id].obj1,\n $creative = $campaign.find('.bx-creative');\n\nif ($campaign.find('#bx-campaign-'+campaign_id+'-pushup-style').length === 0) {\n bouncex.addCss('', $campaign.get(0), 'bx-campaign-'+campaign_id+'-pushup');\n}\n\nfunction updatePushup() {\n var pushAmount = $creative.outerHeight(true);\n\n var styles = [\n '#inside_liveChatTab, .back-to-top, .checkout-CTA.sticky-btn, .pd-tab-bar .tab-bar__tabber--position-m-fixed.tab-bar__tabber--alignment-bottom { margin-bottom: '+pushAmount+'px; }',\n '#bx-campaign-'+ca_id+'-clone .bx-creative { height: '+pushAmount+'px; }',\n '@media screen and (max-width: 767px) {',\n '.cart-and-ipay .add-to-cart-container .btn { margin-bottom: '+pushAmount+'px; }',\n '}'\n ];\n \n $campaign.find('#bx-campaign-'+campaign_id+'-pushup-style').text(styles.join(' '));\n}\n \nbouncex.on(bouncex.window, 'resize.bx-'+campaign_id, updatePushup);\n\nbouncex.on(bouncex.document, 'bxValidateFormComplete.bx-'+campaign_id, updatePushup);\n \nbouncex.on($campaign.find('.bx-button'), 'click.bx-'+campaign_id, function(){\n var cachedHeight = $creative.height();\n \n var onClickInterval = bouncex.setInterval2(function() {\n var currentHeight = $creative.height();\n \n if (currentHeight !== cachedHeight) {\n updatePushup();\n cachedHeight = currentHeight;\n }\n }, 20);\n \n bouncex.setTimeout2(function(){ clearInterval(onClickInterval); }, 1000);\n});\n\nupdatePushup();"},"pushup_fix_close":{"deployments":[[{"activation":"type","prop":"exactly","prop2":"conversionbar","prop3":"","val":""}]],"event":"close","testmode":false,"ttype":"variation","val":"jQuery('#bx-campaign-'+campaign_id+'-pushup-style').remove();\nbouncex.off(bouncex.window, 'resize.bx-'+campaign_id);\nbouncex.off(bouncex.document, 'bxValidateFormComplete.bx-'+campaign_id);\nbouncex.off(bouncex.campaigns[campaign_id].obj1.find('.bx-button'), 'click.bx-'+campaign_id);"},"remove_form_focus":{"deployments":[[{"activation":"type","prop":"not_exactly","prop2":"tabtitle","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"teleport","prop3":"","val":""}],[{"activation":"type","prop":"not_exactly","prop2":"none","prop3":"","val":""}],[{"activation":"purpose","prop":"not_exactly","prop2":"programmatic","prop3":"","val":""}]],"event":"activation","testmode":false,"ttype":"variation","val":"bouncex.campaigns[ca_id].obj1.find('form').addClass('bx-ally-no-focus').removeAttr('tabindex role');"},"zindex_fix":{"deployments":[[{"activation":"type","prop":"exactly","prop2":"conversionbar","prop3":"","val":""},{"activation":"type","prop":"exactly","prop2":"nanotab","prop3":"","val":""}]],"event":"impression","testmode":false,"ttype":"variation","val":"bouncex.addCss('#bx-campaign-' + campaign_id + ' .bx-slab { z-index: 10; }', bouncex.campaigns[campaign_id].obj1.get(0), 'bx-campaign-'+campaign_id+'-indexFix');"},"zindex_fix_close":{"deployments":[[{"activation":"type","prop":"exactly","prop2":"conversionbar","prop3":"","val":""},{"activation":"type","prop":"exactly","prop2":"nanotab","prop3":"","val":""}]],"event":"close","testmode":false,"ttype":"variation","val":"jQuery('#bx-campaign-'+campaign_id+'-indexFix-style').remove();"}},"cart_rep":null,"casl_prevent_user_tracking":"1","client_id":null,"compliance":{"gdpr":0,"gmp":0,"whitelist_check":1},"compliance_json":"{\"gdpr\":0,\"gmp\":0,\"whitelist_check\":1}","confirmation_criteria":null,"confirmation_page":"","confirmation_url":null,"content_width":"900","contract_id":"3","cookie_type":"fp_local_storage","currency":"EUR","custom_campaign_js":"{\"pushup_fix\":{\"val\":\"var $campaign = bouncex.campaigns[campaign_id].obj1,\\n $creative = $campaign.find('.bx-creative');\\n\\nif ($campaign.find('#bx-campaign-'+campaign_id+'-pushup-style').length === 0) {\\n bouncex.addCss('', $campaign.get(0), 'bx-campaign-'+campaign_id+'-pushup');\\n}\\n\\nfunction updatePushup() {\\n var pushAmount = $creative.outerHeight(true);\\n\\n var styles = [\\n '#inside_liveChatTab, .back-to-top, .checkout-CTA.sticky-btn, .pd-tab-bar .tab-bar__tabber--position-m-fixed.tab-bar__tabber--alignment-bottom { margin-bottom: '+pushAmount+'px; }',\\n '#bx-campaign-'+ca_id+'-clone .bx-creative { height: '+pushAmount+'px; }',\\n '@media screen and (max-width: 767px) {',\\n '.cart-and-ipay .add-to-cart-container .btn { margin-bottom: '+pushAmount+'px; }',\\n '}'\\n ];\\n \\n $campaign.find('#bx-campaign-'+campaign_id+'-pushup-style').text(styles.join(' '));\\n}\\n \\nbouncex.on(bouncex.window, 'resize.bx-'+campaign_id, updatePushup);\\n\\nbouncex.on(bouncex.document, 'bxValidateFormComplete.bx-'+campaign_id, updatePushup);\\n \\nbouncex.on($campaign.find('.bx-button'), 'click.bx-'+campaign_id, function(){\\n var cachedHeight = $creative.height();\\n \\n var onClickInterval = bouncex.setInterval2(function() {\\n var currentHeight = $creative.height();\\n \\n if (currentHeight !== cachedHeight) {\\n updatePushup();\\n cachedHeight = currentHeight;\\n }\\n }, 20);\\n \\n bouncex.setTimeout2(function(){ clearInterval(onClickInterval); }, 1000);\\n});\\n\\nupdatePushup();\",\"event\":\"impression\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"conversionbar\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\",\"exclusions\":{}},\"pushup_fix_close\":{\"val\":\"jQuery('#bx-campaign-'+campaign_id+'-pushup-style').remove();\\nbouncex.off(bouncex.window, 'resize.bx-'+campaign_id);\\nbouncex.off(bouncex.document, 'bxValidateFormComplete.bx-'+campaign_id);\\nbouncex.off(bouncex.campaigns[campaign_id].obj1.find('.bx-button'), 'click.bx-'+campaign_id);\",\"event\":\"close\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"conversionbar\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"zindex_fix\":{\"val\":\"bouncex.addCss('#bx-campaign-' + campaign_id + ' .bx-slab { z-index: 10; }', bouncex.campaigns[campaign_id].obj1.get(0), 'bx-campaign-'+campaign_id+'-indexFix');\",\"event\":\"impression\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"conversionbar\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"},\\\"1\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"nanotab\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"zindex_fix_close\":{\"val\":\"jQuery('#bx-campaign-'+campaign_id+'-indexFix-style').remove();\",\"event\":\"close\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"conversionbar\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"},\\\"1\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"nanotab\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"remove_form_focus\":{\"val\":\"bouncex.campaigns[ca_id].obj1.find('form').addClass('bx-ally-no-focus').removeAttr('tabindex role');\",\"event\":\"activation\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"tabtitle\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"1\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"teleport\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"2\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"none\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"3\\\":{\\\"0\\\":{\\\"activation\\\":\\\"purpose\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"programmatic\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"heading_focus\":{\"val\":\"bouncex.campaigns[ca_id].obj1.find('form:not(:has(.bx-2-heading))').each(function(i, formEl) {\\n var $htmlHeadingElement = jQuery(formEl).find('h1, h2, h3, h4, h5, h6').eq(0);\\n if ($htmlHeadingElement.length \u003e 0) {\\n $htmlHeadingElement.addClass('bx-2-heading wknd-ally-focus').attr('tabindex', '-1');\\n } else {\\n var $headlineGroup = jQuery(formEl).find('.bx-group:has(.bx-row-text-headline, .bx-row-text-subheadline)').eq(0);\\n if ($headlineGroup.length === 0) {\\n $headlineGroup = jQuery(formEl).find('.bx-group:has(.bx-row-text)').eq(0);\\n }\\n $headlineGroup.find('.bx-row-text:first').nextUntil(':not(.bx-row-text, .bx-row-coupon)').addBack().wrapAll('\u003cdiv class=\\\"bx-2-heading wknd-ally-focus\\\" id=\\\"'+$headlineGroup.attr('id')+'-h2\\\" tabindex=\\\"-1\\\" role=\\\"heading\\\" aria-level=\\\"2\\\"\u003e\u003c/div\u003e'); \\n }\\n});\",\"event\":\"activation\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"tabtitle\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"1\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"teleport\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"2\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"none\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"3\\\":{\\\"0\\\":{\\\"activation\\\":\\\"purpose\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"programmatic\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"omniture_impression\":{\"val\":\"var $campaign = bouncex.campaigns[ca_id],\\n\\tpid = $campaign.pid,\\n\\tpurpose = $campaign.purpose,\\n\\tcaName = $campaign.name;\\n\\nif (!!utag \u0026\u0026 !!utag.link) {\\n\\tutag.link({\\n\\t\\t\\\"event_name\\\": \\\"wunderkind_overlay_impression\\\",\\n\\t\\t\\\"wunderkind_overlay_campaign_id\\\": pid + '-' + purpose + '-' + caName + '-' + ca_id\\n\\t});\\n}\\n\",\"event\":\"impression\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"default\\\"}}}\"},\"omniture_submit\":{\"val\":\"var $campaign = bouncex.campaigns[ca_id],\\n\\tpid = $campaign.pid,\\n\\tpurpose = $campaign.purpose,\\n\\tcaName = $campaign.name;\\n\\nif (!!utag \u0026\u0026 !!utag.link) {\\n\\tutag.link({\\n\\t\\t\\\"event_name\\\": \\\"wunderkind_overlay_submit\\\",\\n\\t\\t\\\"wunderkind_overlay_campaign_id\\\": pid + '-' + purpose + '-' + caName + '-' + ca_id\\n\\t});\\n}\",\"event\":\"submission\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"default\\\"}}}\"},\"custom_validation\":{\"val\":\"/* SOTEC-9673 */\\nvar $eCapCampaign = bouncex.campaigns[campaign_id].obj1;\\nvar defaultValidation = {\\n gender: window.location.href.indexOf('/es/') === -1 ? 'Please select your title' : 'Seleccione su título',\\n fname: window.location.href.indexOf('/es/') === -1 ? 'Please enter your first name' : 'Por favor, introduzca su nombre',\\n lname: window.location.href.indexOf('/es/') === -1 ? 'Please enter your last name' : 'Por favor, introduzca su apellido',\\n checkbox: window.location.href.indexOf('/es/') === -1 ? 'This checkbox is required' : 'Este campo es obligatorio ',\\n emailEmpty: window.location.href.indexOf('/es/') === -1 ? 'Please enter email' : 'Por favor, no olvides tu e-mail',\\n emailInvalid: window.location.href.indexOf('/es/') === -1 ? 'Please enter a valid email address' : 'Por favor, introce un e-mail válido',\\n duplicateemail: window.location.href.indexOf('/es/') === -1 ? 'That email is already registered' : 'Este e-mail ya existe'\\n};\\n\\n/* make all changes above this line */\\n\\nfunction removeErrorText($el) {\\n $el.closest('.bx-row').removeClass('bx-row-validation');\\n $el.removeAttr('aria-invalid aria-describedby');\\n}\\n\\nfunction addErrorText($el, txt) {\\n var $row = $el.closest('.bx-row');\\n $row.addClass('bx-row-validation');\\n $row.find('.bx-vtext').text(txt);\\n $el.attr('aria-invalid', true).attr('aria-describedby', $row.find('.bx-vtext').attr('id'));\\n}\\n\\nfunction emailValidationCheck() {\\n var $el = jQuery(this);\\n if (bouncex.utils.validate.email($el.val())) {\\n removeErrorText($el);\\n } else {\\n var emailErr = $el.val() !== \\\"\\\" ? defaultValidation.emailInvalid : defaultValidation.emailEmpty;\\n addErrorText($el, emailErr); \\n }\\n}\\n\\nfunction validationCheck() {\\n var $el = jQuery(this);\\n if ((!$el.hasClass('bx-checkelem') \u0026\u0026 $el.val() !== \\\"\\\") || !!$el[0].checked) {\\n removeErrorText($el);\\n } else {\\n addErrorText($el, defaultValidation[$el.attr('name')]);\\n }\\n}\\n\\n/*Duplicate error */\\nbouncex.on(bouncex.document, 'bxValidateFormComplete.bx-custom-email-'+ca_id, function(e) {\\n if (e.response \u0026\u0026 e.response.errors \u0026\u0026 e.response.errors.email === 'Please enter a valid e-mail') {\\n $eCapCampaign.find('#bx-error-'+ca_id+'-email').text(defaultValidation.duplicateEmail);\\n }\\n}); \\n\\nbouncex.on(bouncex.document, 'bxValidateFormComplete.bx-custom-valid-'+ca_id, function(e) {\\n bouncex.on($eCapCampaign.find('.bx-el.bx-input[name=\\\"email\\\"]'), 'input.wknd-' + ca_id, emailValidationCheck);\\n bouncex.on($eCapCampaign.find('.bx-el.bx-input:not([name=\\\"email\\\"]), .bx-selectelem.bx-input, .bx-checkelem.bx-input'), 'input.wknd-' + ca_id, validationCheck);\\n bouncex.off(bouncex.document, 'bxValidateFormComplete.bx-custom-valid-'+ca_id);\\n});\",\"event\":\"impression\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"tabtitle\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"1\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"teleport\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"2\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"none\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"custom_validation_close\":{\"val\":\"/* SOTEC-9673 */\\nbouncex.off(bouncex.campaigns[campaign_id].obj1.find('.bx-el.bx-input[name=\\\"email\\\"]'), 'input.wknd-' + ca_id);\\nbouncex.off(bouncex.campaigns[campaign_id].obj1.find('.bx-el.bx-input:not([name=\\\"email\\\"]), .bx-selectelem.bx-input, .bx-checkelem.bx-input'), 'input.wknd-' + ca_id);\\nbouncex.off(bouncex.document, 'bxValidateFormComplete.bx-custom-valid-'+ca_id);\\nbouncex.off(bouncex.document, 'bxValidateFormComplete.bx-custom-email-'+ca_id);\",\"event\":\"close\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"tabtitle\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"1\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"teleport\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}},\\\"2\\\":{\\\"0\\\":{\\\"activation\\\":\\\"type\\\",\\\"prop\\\":\\\"not_exactly\\\",\\\"prop2\\\":\\\"none\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"},\"gender_profiling_ec_logic\":{\"val\":\"/* Populate Appropriate Value for Gender and Profiling Fields Passed to ESP */\\nvar $campaign = bouncex.campaigns[ca_id].obj1;\\n\\nif ($campaign.find('input[name=\\\"checkbox\\\"]').length \u003e 0 \u0026\u0026 $campaign.find('select[name=\\\"gender\\\"]').length \u003e 0) {\\n var $consent = $campaign.find('[name=\\\"checkbox\\\"]'),\\n $gender = $campaign.find('[name=\\\"gender\\\"]'),\\n interest = $campaign.find('[name=\\\"interest\\\"]'),\\n profiling = $campaign.find('[name=\\\"profiling\\\"]');\\n\\n var male = ['sr', 'mr'],\\n female = ['sra', 'srta', 'ms'],\\n preferNot = ['prefiero no decirlo', 'rather not say'];\\n \\n interest.val(1);\\n profiling.val(2);\\n \\n bouncex.on($gender, 'change.wknd-' + ca_id, function (e) {\\n var genderOption = jQuery(this).val().toLowerCase().replace('.','');\\n \\n determineInterest(genderOption);\\n });\\n\\n bouncex.on($consent, 'change.wknd-' + ca_id, function (e) {\\n jQuery(this).is(':checked') ? profiling.val(1) : profiling.val(2);\\n });\\n \\n}\\n\\nfunction determineInterest(str) {\\n if(female.indexOf(str) \u003e -1) {\\n interest.val(2); \\n } else if(male.indexOf(str) \u003e -1) {\\n interest.val(1); \\n } else if(preferNot.indexOf(str) \u003e -1) {\\n interest.val(3); \\n }\\n}\",\"event\":\"impression\",\"testmode\":false,\"ttype\":\"variation\",\"deployments\":\"{\\\"0\\\":{\\\"0\\\":{\\\"activation\\\":\\\"purpose\\\",\\\"prop\\\":\\\"exactly\\\",\\\"prop2\\\":\\\"emailcapture\\\",\\\"prop3\\\":\\\"\\\",\\\"val\\\":\\\"\\\"}}}\"}}","custom_js":"","custom_liquid_variable":"{\"Address\":{\"val\":\"PIVA IT04636090963\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"BelowHeroBannerImg\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"BelowHeroBannerUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"BelowProdGridBannerImg\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"BelowProdGridBannerUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"ClientId\":{\"val\":\"6357\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"ClientName\":{\"val\":\"Versace\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"CopyrightCopy\":{\"val\":\"GIANNI VERSACE S.R.L. - P.IVA IT04636090963\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"CorpName\":{\"val\":\"GIANNI VERSACE S.R.L.\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"DeadZone\":{\"val\":\"true\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Disclaimer_new\":{\"val\":\"\\\"YOU ARE RECEIVING THIS INFORMATION BECAUSE YOU ARE SUBSCRIBED TO THE VERSACE UPDATES SERVICE. THIS IS AN AUTOMATED E-MAIL, PLEASE DO NOT RESPOND. MANAGE YOUR PREFERENCES IN ORDER TO RECEIVE COMMUNICATIONS TAILORED TO YOUR PERSONAL INTERESTS. IF YOU DO NOT WISH TO RECEIVE THESE MESSAGES ANYMORE, PLEASE CLICK HERE. \\\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Disclaimer_new1\":{\"val\":\"RECIBES ESTA INFORMACIÓN PORQUE ESTÁS SUSCRITO AL SERVICIO DE ACTUALIZACIONES DE VERSACE. SE TRATA DE UN CORREO ELECTRÓNICO AUTOMATIZADO, POR FAVOR NO RESPONDAS. GESTIONA TUS PREFERENCIAS PARA RECIBIR COMUNICACIONES ADAPTADAS A TUS INTERESES PERSONALES. SI YA NO DESEAS RECIBIR ESTOS MENSAJES, HAZ CLIC AQUÍ.\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Disclaimer_new_sh\":{\"val\":\"\\\"This information is being sent to customers who have requested to receive updates on Versace's latest information. As this is an automatic email, we are unable to reply. Thank you for your understanding. Manage the information you would like to receive so that we can send you communications tailored to your interests. If you do not wish to receive this message, please click here. \\\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"EmailTopBanner\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"1200px\",\"imgHeight\":\"188px\"},\"EmailTopBanner2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"1200px\",\"imgHeight\":\"104px\"},\"EmailTopBannerURL\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"HeroImg1\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/70f1e791eb7da28915aaa686ee61a11d.jpg\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/324c0732a323e7b15d4d2caf9008d57a.jpg\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"432kb\",\"imgWidth\":\"1080px\",\"imgHeight\":\"1350px\"},\"HomepageUrl\":{\"val\":\"https://www.versace.com/us/en\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"HomepageUrlES\":{\"val\":\"https://www.versace.com/us/es/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"IbxDisclaimer1\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"IbxDisclaimer2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"IbxDisclaimer3\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"IbxOffer1\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"IbxOffer2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"IbxOffer3\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"LogoImg\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/4eabd6d32bcac38bb7b48bcd458e8ed0.png\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"9kb\",\"imgWidth\":\"466px\",\"imgHeight\":\"102px\"},\"LogoImgWidth\":{\"val\":\"233\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav1Copy\":{\"val\":\"Women\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav1CopyES\":{\"val\":\"Mujer\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav1Url\":{\"val\":\"https://www.versace.com/us/en/women/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav1UrlES\":{\"val\":\"https://www.versace.com/us/es/mujer/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav2Copy\":{\"val\":\"Men\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav2CopyES\":{\"val\":\"Hombre\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav2Url\":{\"val\":\"https://www.versace.com/us/en/men/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav2UrlES\":{\"val\":\"https://www.versace.com/us/es/hombre/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav3Copy\":{\"val\":\"Children\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav3CopyES\":{\"val\":\"Niños\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav3Url\":{\"val\":\"https://www.versace.com/us/en/children/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"Nav3UrlES\":{\"val\":\"https://www.versace.com/us/es/ninos/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"NavImg\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/c958b91c6494c661a0c3f633492afaa5.png\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"892kb\",\"imgWidth\":\"640px\",\"imgHeight\":\"640px\"},\"OpenBrowserCopy\":{\"val\":\"Open in Browser\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"PrivacyCopy\":{\"val\":\"Privacy Policy\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"PrivacyUrl\":{\"val\":\"https://versace.com/us/en/legal/privacy-policy.html\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"PrivacyUrlES\":{\"val\":\"https://www.versace.com/us/es/avisos-legales/privacy-policy.html\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"ProductGridImg1\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/1725422dd82d1f1603358d4a26e5250e.jpg\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/c34d2417af550adfd89e42371e6a05b8.jpg\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"408kb\",\"imgWidth\":\"1080px\",\"imgHeight\":\"1350px\"},\"ProductGridImg2\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/1725422dd82d1f1603358d4a26e5250e.jpg\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/c34d2417af550adfd89e42371e6a05b8.jpg\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"408kb\",\"imgWidth\":\"1080px\",\"imgHeight\":\"1350px\"},\"SocialLink1Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/ab8e6ceb4f10b18e734b31ee15edba47.png\",\"promoVal\":\"\",\"description\":\"Instagram\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"SocialLink1Url\":{\"val\":\"https://www.instagram.com/versace/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"SocialLink2Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/a086f4f9476727304edebb925d0bf30b.png\",\"promoVal\":\"\",\"description\":\"Facebook\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"1kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"SocialLink2Url\":{\"val\":\"https://www.facebook.com/versace/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"SocialLink3Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/05f1956feae4b419a6f218a9844fcaa9.png\",\"promoVal\":\"\",\"description\":\"Twitter\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"SocialLink3Url\":{\"val\":\"https://twitter.com/Versace?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"SocialLink4Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/5c6ef2bf9c5fbba999003e7cae354179.png\",\"promoVal\":\"\",\"description\":\"Youtube\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"SocialLink4Url\":{\"val\":\"https://www.youtube.com/versace\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"SocialLink5Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/4a44adca65ba1551b1ecdd9ef8f1b47c.png\",\"promoVal\":\"\",\"description\":\"WeChat\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"SocialLink5Url\":{\"val\":\"https://www.versace.com/us/en/wechat.html?service=true\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"SocialLink6Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/b452bb475c083b3b69c0e81b6a2a58cc.png\",\"promoVal\":\"\",\"description\":\"Weibo\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"SocialLink6Url\":{\"val\":\"https://weibo.com/versacechina\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"SocialLinkHeadline\":{\"val\":\"Follow Us\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"Studio_BelowHeroBannerImg\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"promoBannerSmartFields\",\"label\":\"$BelowHeroBannerImg\"},\"Studio_BelowHeroBannerUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"promoBannerSmartFields\",\"label\":\"$BelowHeroBannerUrl\"},\"Studio_BelowProdGridBannerImg\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"promoBannerSmartFields\",\"label\":\"$BelowProdGridBannerImg\"},\"Studio_BelowProdGridBannerUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"promoBannerSmartFields\",\"label\":\"$BelowProdGridBannerUrl\"},\"Studio_HomepageCartUrl\":{\"val\":\"{{ $CartSuffix := printf \\\"#bx_cart=%s\\\" ( base64 $.CartJSON ) }}$HomepageUrl{{ $CartSuffix }}\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"advancedLinks\",\"label\":\"$HomepageCartUrl\"},\"Studio_HomepageUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"advancedLinks\",\"label\":\"$HomepageUrl\"},\"Studio_ListPageUrl\":{\"val\":\"{{ $.ListPageUrl }}\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"advancedLinks\",\"label\":\"$ListPageUrl\"},\"Studio_TopBannerImg\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"promoBannerSmartFields\",\"label\":\"$TopBannerImg\"},\"Studio_TopBannerUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\",\"origin\":\"Studio\",\"group\":\"promoBannerSmartFields\",\"label\":\"$TopBannerUrl\"},\"TextSendOffer1\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TextSendOffer2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TextSendOffer3\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopBannerImg\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopBannerUrl\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat1Copy\":{\"val\":\"Versace Tag\",\"promoVal\":\"Kleio Bags\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat1CopyES\":{\"val\":\"Bolsos Kleio\",\"promoVal\":\"Bolsos Kleio\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat1Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/a18c6326f9d1ecdbb858266dd6a5b316.png\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/8a917d22c48fe2fc7f3b76bd134528b1.png\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"166kb\",\"imgWidth\":\"312px\",\"imgHeight\":\"312px\"},\"TopCat1Url\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Versace_Tag\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=Kleio\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat1UrlES\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Kleio\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=Kleio\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat2Copy\":{\"val\":\"Galaxia\",\"promoVal\":\"Gianni Ribbon Shoes\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat2CopyES\":{\"val\":\"Zapatos Gianni Ribbon\",\"promoVal\":\"Zapatos Gianni Ribbon\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"200px\",\"imgHeight\":\"201px\"},\"TopCat2Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/cbe13dbb35265e34762d1053d58b9b9b.png\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/87ab073b004aa8070fbf79d907bc6ffc.png\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"177kb\",\"imgWidth\":\"312px\",\"imgHeight\":\"312px\"},\"TopCat2Url\":{\"val\":\"https://www.versace.com/sh-category/?cgid=M_Galaxia\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"200px\",\"imgHeight\":\"201px\"},\"TopCat2UrlES\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"200px\",\"imgHeight\":\"201px\"},\"TopCat3Copy\":{\"val\":\"Kleio\",\"promoVal\":\"Medusa '95 Bags\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat3CopyES\":{\"val\":\"Bolsos '95 Bags\",\"promoVal\":\"Bolsos '95 Bags\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat3Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/cbd9429f8eea83a16b9986763d69e9ea.png\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/46cf6bd430dce2430b74eec45ff249cd.png\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"177kb\",\"imgWidth\":\"312px\",\"imgHeight\":\"312px\"},\"TopCat3Url\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Kleio\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=Medusa_95_Bags\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"2250px\",\"imgHeight\":\"2250px\"},\"TopCat3UrlES\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Medusa_95_Bags\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=Medusa_95_Bags\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat4Copy\":{\"val\":\"Gianni Ribbon\",\"promoVal\":\"Men's Boots\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat4CopyES\":{\"val\":\"Botas para hombre\",\"promoVal\":\"Botas para hombre\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat4Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/603f2450f8ea0c9b8b326f20c2d08793.png\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/6a275786d7272adf1e35439020013d16.png\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"188kb\",\"imgWidth\":\"312px\",\"imgHeight\":\"312px\"},\"TopCat4Url\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=231300\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat4UrlES\":{\"val\":\"https://www.versace.com/sh-category/?cgid=231300\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=231300\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat5Copy\":{\"val\":\"Protea\",\"promoVal\":\"Medusa Biggie Bags\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat5CopyES\":{\"val\":\"Bolsos Medusa Biggie\",\"promoVal\":\"Bolsos Medusa Biggie\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCat5Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/5ad07fe92bd57d0c888bb57ab2c44573.png\",\"promoVal\":\"https://assets.bounceexchange.com/assets/uploads/users/5801/6e9a733cb27ad88b8ffaf4cc2649c3a0.png\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"174kb\",\"imgWidth\":\"312px\",\"imgHeight\":\"312px\"},\"TopCat5Url\":{\"val\":\"https://www.versace.com/sh-category/?cgid=Protea\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=242008\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"200px\",\"imgHeight\":\"200px\"},\"TopCat5UrlES\":{\"val\":\"https://www.versace.com/sh-category/?cgid=242008\",\"promoVal\":\"https://www.versace.com/sh-category/?cgid=242008\",\"description\":\"\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCatHeadline\":{\"val\":\"New Season Highlights\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"TopCatHeadlineES\":{\"val\":\"Lo más destacado\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UnsubscribeCopy\":{\"val\":\"IF YOU DO NOT WISH TO RECEIVE THESE MESSAGES ANYMORE\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UnsubscribeCopy_July2024\":{\"val\":\"SI YA NO DESEAS RECIBIR ESTOS MENSAJES,\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UnsubscribeUrlCopy\":{\"val\":\"Please click here\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UnsubscribeUrlCopy_July2024\":{\"val\":\"HAZ CLIC AQUÍ.\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UserSubscriptionCopy\":{\"val\":\"YOU ARE RECEIVING THIS INFORMATION BECAUSE YOU ARE SUBSCRIBED TO THE VERSACE UPDATES SERVICE WITH THIS E-MAIL ADDRESS\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UserSubscriptionCopy2\":{\"val\":\"- THIS IS AN AUTOMATED E-MAIL, PLEASE\u0026nbsp;DO\u0026nbsp;NOT\u0026nbsp;RESPOND.\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UserSubscriptionCopy2_July2024\":{\"val\":\"GESTIONA TUS PREFERENCIAS PARA RECIBIR COMUNICACIONES ADAPTADAS A TUS INTERESES PERSONALES.\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"UserSubscriptionCopy_July2024\":{\"val\":\"RECIBES ESTA INFORMACIÓN PORQUE ESTÁS SUSCRITO AL SERVICIO DE ACTUALIZACIONES DE VERSACE. SE TRATA DE UN CORREO ELECTRÓNICO AUTOMATIZADO, POR FAVOR NO RESPONDAS.\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp1Copy\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp1CopyES\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp1Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/10b633c36121ae5ea136c7707dab2b94.png\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"VProp1Url\":{\"val\":\"https://www.versace.com/us/en/find-a-store/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp1UrlES\":{\"val\":\"https://www.versace.com/us/es/contact-us/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp2Copy\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"VProp2CopyES\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp2Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/ec5972a0c4088dc52f51013594de2cf2.png\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"VProp2Url\":{\"val\":\"https://www.versace.com/us/en/client-service/order-and-shipping.html\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp2UrlES\":{\"val\":\"https://www.versace.com/us/es/atencion-al-cliente/order-and-shipping.html?service=true\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp3Copy\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp3CopyES\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp3Img\":{\"val\":\"https://assets.bounceexchange.com/assets/uploads/users/8134/134af163d92b7cd8ce8cca2f776d3be1.png\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"2kb\",\"imgWidth\":\"60px\",\"imgHeight\":\"61px\"},\"VProp3Url\":{\"val\":\"https://www.versace.com/us/en/client-service/help-and-faqs.html\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"VProp3UrlES\":{\"val\":\"https://www.versace.com/us/es/contact-us/\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"couponcode1\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"couponcode2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"couponcode3\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitecanvas\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitecanvasmobile\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitedisclaimer1\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitedisclaimer2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitedisclaimer3\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitelogodark\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitelogolight\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitenonstandard\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitenonstandardmobile\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsiteoffer1\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsiteoffer2\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsiteoffer3\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"},\"onsitestandard\":{\"val\":\"assets.bounceexchange.com/assets/uploads/users/5801/5a79c3dee48c3e8d830fd86647c0d71c.jpg\",\"promoVal\":\"assets.bounceexchange.com/assets/uploads/users/5801/da9d61c45c8d44810103c0d36055f868.jpg\",\"description\":\"2024-05-15\",\"enabled\":false,\"startDate\":\"2024-08-27\",\"startTime\":\"01:00\",\"endDate\":\"2024-10-30\",\"endTime\":\"00:00\",\"imgSize\":\"345kb\",\"imgWidth\":\"1080px\",\"imgHeight\":\"1350px\"},\"onsitestandardmobile\":{\"val\":\"\",\"promoVal\":\"\",\"description\":\"\",\"enabled\":false,\"startDate\":\"NaN-NaN-NaN\",\"startTime\":\"NaN:NaN\",\"endDate\":\"NaN-NaN-NaN\",\"endTime\":\"NaN:NaN\",\"imgSize\":\"\",\"imgWidth\":\"\",\"imgHeight\":\"\"}}","custom_variable":"{\"logged_in\":{\"default\":\"false\",\"polling\":\"none\",\"persist\":\"visit\",\"val\":\"(function () {\\n if (bouncex.website.pts === 'checkout') {\\n return null;\\n }\\n\\n return jQuery('#authenticated-user-nav-item [title=\\\"my account\\\"]').length \u003e 0\\n})();\",\"t\":\"bool\",\"page_type_json\":[],\"testmode\":false},\"ever_logged_in\":{\"default\":\"false\",\"polling\":\"none\",\"persist\":\"permanent\",\"val\":\"bouncex.vars.logged_in || null;\",\"t\":\"bool\",\"page_type_json\":[],\"testmode\":false},\"cart_qty\":{\"default\":\"0\",\"polling\":\"all\",\"persist\":\"visit\",\"val\":\"(function () {\\n if(bouncex.website.pts === \\\"checkout\\\"){\\n return null\\n }\\n return Number(jQuery('.minicart-quantity').first().text().trim());\\n})();\",\"t\":\"int\",\"page_type_json\":[],\"testmode\":false},\"cart_value\":{\"default\":\"0\",\"polling\":\"all\",\"persist\":\"visit\",\"val\":\"(function () { \\n if (bouncex.website.pts === 'checkout') {\\n return null\\n }\\n\\n return Number(jQuery('.minicart-products .sub-total').first().text().replace(/[^0-9.]/g, ''))\\n})();\",\"t\":\"float\",\"page_type_json\":[],\"testmode\":false},\"in_stock\":{\"default\":\"false\",\"polling\":\"none\",\"persist\":\"no\",\"val\":\"\",\"t\":\"bool\",\"page_type_json\":[],\"testmode\":true},\"submitted_onsite\":{\"polling\":\"all\",\"persist\":\"permanent\",\"val\":\"jQuery('.newsletter-success--title:visible').first().text().toLowerCase().indexOf('thank you') \u003e -1 || null;\",\"default\":\"false\",\"page_type_json\":[],\"testmode\":false},\"page_url\":{\"polling\":\"none\",\"persist\":\"no\",\"val\":\"\",\"default\":\"false\",\"page_type_json\":[\"category\",\"search\"],\"testmode\":true},\"logged_in_identified\":{\"polling\":\"none\",\"persist\":\"visit\",\"val\":\"null;\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":false},\"cart\":{\"polling\":\"none\",\"persist\":\"permanent\",\"val\":\"null;\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":false},\"cookie_modal_present\":{\"polling\":\"all\",\"persist\":\"no\",\"val\":\"null;\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":true},\"page_type\":{\"polling\":\"none\",\"persist\":\"no\",\"val\":\"bouncex.website.pts;\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":false},\"attentive_visible\":{\"polling\":\"all\",\"persist\":\"no\",\"val\":\"jQuery('#attentive_overlay').length \u003e 0;\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":true},\"zoom_modal_visible\":{\"polling\":\"all\",\"persist\":\"no\",\"val\":\"jQuery('#zoom-gallery.show').length \u003e 0;\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":false},\"quickview_itemid\":{\"polling\":\"vars\",\"persist\":\"visit\",\"val\":\"(function() {\\n if (jQuery('#quickViewModal.show').length) {\\n var rawPid = jQuery('.product-quickview').attr('data-pid') || '',\\n cleanPid = rawPid.replace(/(__)/g, '').split('_'),\\n lang = jQuery('html').attr('lang') || 'en',\\n baseId = cleanPid.shift(),\\n variantId = cleanPid.pop() || jQuery('.product-quickview .color-value.selected').attr('data-attr-value') || '',\\n itemId = baseId + '_' + variantId + '-' + lang.toUpperCase();\\n \\n if (itemId \u0026\u0026 baseId \u0026\u0026 variantId) {\\n return itemId;\\n }\\n return null;\\n }\\n return null;\\n})()\",\"default\":\"false\",\"page_type_json\":[],\"trigger\":\"pageload\",\"datatype\":\"\",\"testmode\":false},\"product_name\":{\"polling\":\"none\",\"persist\":\"no\",\"val\":\"jQuery('.product-name').first().text();\",\"default\":\"false\",\"page_type_json\":[\"product\"],\"trigger\":\"pageload\",\"datatype\":\"string\",\"testmode\":false},\"product_color\":{\"polling\":\"all\",\"persist\":\"no\",\"val\":\"jQuery('.display-color-name').first().text();\",\"default\":\"false\",\"page_type_json\":[\"product\"],\"trigger\":\"pageload\",\"datatype\":\"string\",\"testmode\":false},\"product_size\":{\"polling\":\"all\",\"persist\":\"no\",\"val\":\"jQuery('.size-option.selected').first().text().trim();\",\"default\":\"false\",\"page_type_json\":[\"product\"],\"trigger\":\"pageload\",\"datatype\":\"string\",\"testmode\":false}}","deployment_json":null,"deployment_presets":{"Email Capture Eligible":[[{"activation":"customer","prop":"no","prop2":"","prop3":"","val":""}],[{"activation":"submitted_email","prop":"no","prop2":"","prop3":"","val":""}],[{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"/thankyou/"}],[{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"e-mail.newsletter"}],[{"activation":"any_page_url","prop":"not_contains","prop2":"session","prop3":"","val":"utm_source=wunderkind"}],[{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"utm_medium=email"}],[{"activation":"variable","prop":"equal","prop2":"submitted_onsite","prop3":"","val":"false"},{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"bxtest"}],[{"activation":"variable","prop":"equal","prop2":"logged_in","prop3":"","val":"false"}],[{"activation":"variable","prop":"equal","prop2":"ever_logged_in","prop3":"","val":"false"}]],"Exclude Checkout Pages":[[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/checkout/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/cart/"}]],"IBX Continuity":[[{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"\u003cemail param 1\u003e"},{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"\u003cemail param 2\u003e"}]],"Items in Cart":[[{"activation":"variable","prop":"greater","prop2":"cart_qty","prop3":"","val":"0"}],[{"activation":"variable","prop":"greater","prop2":"cart_value","prop3":"","val":"0"}]],"URL Exclusions":[[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/login/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/find-a-store/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/bookappointment/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/exclusive-services.html"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/contact-us/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/client-service/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/about-us/"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/legal"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/storelocator"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/product-care"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/corporate-overview"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/sitemap"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/atencion-al-cliente"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/empresa"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"/avisos-legales"}]]},"deployment_settings":null,"device_graph_enabled":"0","device_graph_settings":{"tagData":{"async":"true","data-fire":"0","data-gm":"0","id":"c.js","src":"//pixel.cdnwidget.com/cdn/c.min.js"},"trafficPercentage":100},"dfp_account_id":null,"dt_inserted_unix":"1687528731","els":{"blank_site_element":""},"enable_advanced_cookie":"0","enable_ally":"0","enable_bpush":"0","enable_ga_integration":"1","enable_iframe":"0","enable_waypoints":"0","enabled":"1","encrypt_email":"0","encrypt_email_two_way":"0","event_stream_enabled":"1","event_tracking_enabled":"1","event_tracking_js":"/* ---------------------------- SHARED VARIABLES ---------------------------- */\n\nvar CLEAN_URL = bouncex.utils.url.allowParams(),\n LANG_PREF = jQuery('html').attr('lang') ? jQuery('html').attr('lang') : 'en';\n\n/* --------------------------------- HELPERS -------------------------------- */\n\nfunction getMasterCategory() {\n var dl = bouncex.utils.getNestedProp('window.dataLayer', []),\n length = dl.length,\n i = 0,\n mCatName = '';\n\n for (i; i \u003c length; i++) {\n if (dl[i][1] === 'page_view') {\n mCatName = bouncex.utils.getNestedProp('store_department', '', dl[i][2]);\n }\n }\n\n return mCatName;\n}\n\nfunction getImgUrl(imgIndex) {\n return bouncex.state.mobile ? jQuery('[id*=slick-slide] img[itemprop=\"image\"]:visible, [id*=slick-slide] img[data-zoom-img]:visible').eq(imgIndex).attr('src') || '' : jQuery('.large-images img[itemprop=\"image\"]:visible, .large-images-list img[data-zoom-img]:visible').eq(imgIndex).attr('src') || '';\n}\n\nfunction getItemUrl(vid) {\n // some items URL will lead to broken pages if it doesn't have appended color id\n return CLEAN_URL.indexOf('_') === -1 \u0026\u0026 vid ? CLEAN_URL.replace('.html', '_' + vid + '.html') : CLEAN_URL;\n}\n\nfunction getItemId(vid) {\n var itemId = CLEAN_URL.split('/').pop().replace('.html', ''),\n lang = LANG_PREF.toUpperCase();\n return itemId.indexOf('_') === -1 \u0026\u0026 vid ? itemId + '_' + vid + '-' + lang : itemId + '-' + lang;\n}\n\nfunction getItemCat() {\n return LANG_PREF.indexOf('es') \u003e -1 ? 'global-es' : jQuery('.breadcrumb li:eq(-2)').text().trim().replace(/\\s*\\|$/, '');\n}\n\n/* ------------------------------ ITEM TRACKING ----------------------------- */\nfunction getItem() {\n var pidData = jQuery('.add-to-cart').attr('data-pid') || '',\n variantId = pidData.split('_').filter(function (e) { return e; }).pop();\n\n return {\n id: getItemId(variantId),\n copy: jQuery('.product-name').first().text().trim(),\n category: getItemCat(),\n url: getItemUrl(variantId),\n imageurl: getImgUrl(0),\n secondimgurl: getImgUrl(1),\n instock: jQuery('.add-to-cart:not(:disabled):visible').length \u003e 0,\n mastercategory: getMasterCategory(),\n price: jQuery('.product-detail-content .product-prices .default-pricing .value').last().text().trim().replace(/[^\\d]/g, '')\n };\n}\n\nfunction fireViewItem(id) {\n bouncex.push(['view item', { 'item:id': id }]);\n}\n\nfunction initializeItemEvents() {\n var item;\n\n bouncex.et.onTrue(\n function () {\n item = getItem();\n return (\n !!item.id \u0026\u0026\n !!item.copy \u0026\u0026\n !!item.category \u0026\u0026\n !!item.url \u0026\u0026\n !!item.imageurl\n );\n },\n function () {\n if (item.url.indexOf('gift-card') \u003e -1) {\n return;\n }\n bouncex.push(['item', item]);\n fireViewItem(item.id);\n fireViewItemEventOnColorChange(item.id);\n },\n 10\n );\n}\n\nfunction fireViewItemEventOnColorChange(itemId) {\n var baseId = itemId.split('_').shift(),\n colorId,\n prevColorId = jQuery('.color-value.selected:visible').attr('data-attr-value') || '';\n\n bouncex.et.on(bouncex.document, 'click.bxclrchng', function () {\n bouncex.et.onTrue(function () {\n colorId = jQuery('.color-value.selected:visible').attr('data-attr-value') || '';\n return !!colorId \u0026\u0026 colorId !== prevColorId;\n },\n function () {\n fireViewItem(baseId + '_' + colorId + '-' + LANG_PREF.toUpperCase());\n prevColorId = colorId;\n },\n 10);\n }, '.color-attribute:visible');\n}\n\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\n\nfunction getItemIdsCat() {\n var ids = [];\n\n jQuery('.product-tile-wrapper:visible [data-analytics-pid]:visible').each(function (i, e) {\n var id = jQuery(e).attr('data-analytics-pid') ? jQuery(e).attr('data-analytics-pid') + '-' + LANG_PREF.toUpperCase() : '';\n\n if (id) {\n id = id.replace('.html', '');\n\n if (ids.indexOf(id) \u003c 0) {\n ids.push(id);\n }\n }\n });\n\n return ids.join(',');\n}\n\nfunction getCategoryObject() {\n return {\n 'page:url': bouncex.utils.url.allowParams('q'),\n 'items:ids': getItemIdsCat()\n };\n}\n\nfunction initializeCategoryEvents() {\n var categoryObj;\n\n bouncex.et.onTrue(\n function () {\n categoryObj = getCategoryObject();\n return (\n !!categoryObj['items:ids'].length \u0026\u0026 !!categoryObj['page:url']\n );\n },\n function () {\n bouncex.push(['view category', categoryObj]);\n },\n 10\n );\n}\n\n/* ------------------------------- CART EVENTS ------------------------------ */\n\nfunction fireAddToCart(itemId, replenItem) {\n bouncex.push([\n 'add to cart',\n {\n 'item:id': itemId,\n 'cart:item': bouncex.stringify(replenItem)\n }\n ]);\n\n if (bouncex.vars.cart) {\n return;\n }\n bouncex.setVar('cart', true);\n}\n\n\nfunction emptyCart() {\n bouncex.et.onVarChange('cart_qty', function (oldVal, newVal) {\n if (bouncex.vars.cart \u0026\u0026 newVal === 0 \u0026\u0026 oldVal \u003e 0) {\n bouncex.push(['empty_cart']);\n bouncex.setVar('cart', false);\n }\n });\n}\n\n\nfunction initializeCartEvents() {\n bouncex.et.cart.init({\n replenishmentType: 'ajax',\n replenish: function (cart) {\n var deferreds = [];\n\n cart.items.forEach(function (item) {\n deferreds.push(makeAjaxATCFunc(item));\n });\n\n deferreds.reduce(\n function (promise, func) {\n return promise.then(function () {\n return func();\n });\n },\n jQuery.Deferred().resolve([])\n )\n .then(AjaxReplenComplete);\n }\n });\n\n function makeAjaxATCFunc(replenItem) {\n return function () {\n return jQuery.ajax({\n type: 'POST',\n url: 'https://www.versace.com/on/demandware.store/Sites-US-Site/' + LANG_PREF + '_US/Cart-AddProduct',\n data: {\n cartAction: 'add',\n pid: replenItem.pid,\n quantity: replenItem.qty,\n }\n });\n };\n }\n\n function AjaxReplenComplete() {\n window.location.href = CLEAN_URL + '?bx_replen=true';\n }\n\n bouncex.et.on(bouncex.document, 'ajaxComplete.wknd', trackAJAXCart);\n\n emptyCart();\n}\n\nfunction trackAJAXCart(e, xhr, settings) {\n if (\n settings.url.indexOf('/on/demandware.store/Sites-US-Site/' + LANG_PREF + '_US/Cart-BeforeAddToCart') \u003e -1\n \u0026\u0026 !bouncex.utils.url.getParam('bx_cart')\n \u0026\u0026 xhr.status === 200\n ) {\n var data = bouncex.utils.url.queryStringToObject(settings.data) || {},\n rawPid = bouncex.utils.getNestedProp('pid', '', data).replace(/(__)/g, '').split('_'),\n baseId = rawPid.shift(),\n variantId = rawPid.pop(),\n itemId = baseId \u0026\u0026 variantId ? baseId + '_' + variantId + '-' + LANG_PREF.toUpperCase() : '',\n replenItem = {\n 'pid': bouncex.utils.getNestedProp('pid', '', data),\n 'qty': data.quantity || '1'\n };\n\n if (!itemId \u0026\u0026 !replenItem.pid) {\n return;\n }\n\n fireAddToCart(itemId, replenItem);\n }\n}\n\n/* ------------------------------ USER TRACKING ----------------------------- */\n\nfunction initializeUserTracking() {\n if (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\n return;\n }\n\n var userEmail,\n dataElement,\n userData = {};\n\n bouncex.et.onTrue(\n function () {\n dataElement = bouncex.utils.getNestedProp('window.userDataElement', '');\n\n if (dataElement) {\n userData = dataElement.data('tracking-viewuserdata', '');\n }\n\n if (userData \u0026\u0026 dataElement) {\n userEmail = bouncex.utils.getNestedProp('userDataElement.profile[0].profileInfo.userEmail', '', userData);\n }\n\n if (!userEmail \u0026\u0026 jQuery('#analytics-datalayer-userdata').length \u003e 0) {\n userEmail = bouncex.utils.getNestedProp('additionalData.customer_email', '', JSON.parse(jQuery('#analytics-datalayer-userdata').attr('data-tracking-viewuserdata')));\n }\n\n return bouncex.utils.validate.email(userEmail);\n\n },\n function () {\n bouncex.push([\n 'user',\n {\n email: userEmail,\n source: 'LoggedIn'\n }\n ]);\n bouncex.setVar('logged_in_identified', true);\n },\n 5\n );\n}\n\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\n\nfunction isValidDomain() {\n return CLEAN_URL.indexOf('www.versace.com') \u003e -1;\n}\n\nfunction isEn() {\n return jQuery('html[lang=\"en\"]').length \u003e 0;\n}\n\nfunction isEs() {\n return jQuery('html[lang=\"es\"]').length \u003e 0;\n}\n\nfunction isValidForTracking() {\n return isValidDomain() \u0026\u0026 isEn() || isEs();\n}\n\nfunction init() {\n if (!isValidForTracking()) {\n return;\n }\n\n initializeUserTracking();\n initializeCartEvents();\n\n switch (bouncex.website.pts) {\n case 'category':\n case 'search':\n initializeCategoryEvents();\n break;\n case 'product':\n initializeItemEvents();\n break;\n default:\n break;\n }\n}\n\ninit();\n","event_tracking_test_mode":"0","fastboot_enabled":"1","feed_config_json":"","force_https":"0","gbi_enabled":"0","global_control_size":"0","global_deployment":{"any_page_url| \u003cpost-purchase URL\u003e|ever":{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":" \u003cpost-purchase URL\u003e"},"any_page_url|/thankyou/|ever":{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"/thankyou/"},"any_page_url|\u003cemail param 1\u003e|session":{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"\u003cemail param 1\u003e"},"any_page_url|\u003cemail param 2\u003e|session":{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"\u003cemail param 2\u003e"},"any_page_url|\u003cpost-purchase URL\u003e|session":{"activation":"any_page_url","prop":"not_contains","prop2":"session","prop3":"","val":"\u003cpost-purchase URL\u003e"},"any_page_url|bxtest|session":{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"bxtest"},"any_page_url|e-mail.newsletter|ever":{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"e-mail.newsletter"},"any_page_url|gclid|ever":{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"gclid"},"any_page_url|gclid|session":{"activation":"any_page_url","prop":"not_contains","prop2":"session","prop3":"","val":"gclid"},"any_page_url|utm_medium=email|ever":{"activation":"any_page_url","prop":"not_contains","prop2":"ever","prop3":"","val":"utm_medium=email"},"any_page_url|utm_source=wunderkind|session":{"activation":"any_page_url","prop":"not_contains","prop2":"session","prop3":"","val":"utm_source=wunderkind"},"any_page_url|wunderkind|session":{"activation":"any_page_url","prop":"contains","prop2":"session","prop3":"","val":"wunderkind"},"google_mobile_policy|session":{"activation":"google_mobile_policy","prop":"yes","prop2":"session","prop3":"","val":""}},"gmp_enabled":"1","gmp_url_exceptions":["gclid"],"google_analytics_id":null,"google_analytics_view_account":null,"google_analytics_view_id":null,"ibx_cart_replenishment_js":null,"ibx_tracking_enabled":"0","id":"6357","inbox_reporting_enabled":"1","lang":"english","liquid_vars":{"Address":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"PIVA IT04636090963"},"BelowHeroBannerImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"BelowHeroBannerUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"BelowProdGridBannerImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"BelowProdGridBannerUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"ClientId":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"6357"},"ClientName":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Versace"},"CopyrightCopy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"GIANNI VERSACE S.R.L. - P.IVA IT04636090963"},"CorpName":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"GIANNI VERSACE S.R.L."},"DeadZone":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"true"},"Disclaimer_new":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"\"YOU ARE RECEIVING THIS INFORMATION BECAUSE YOU ARE SUBSCRIBED TO THE VERSACE UPDATES SERVICE. THIS IS AN AUTOMATED E-MAIL, PLEASE DO NOT RESPOND. MANAGE YOUR PREFERENCES IN ORDER TO RECEIVE COMMUNICATIONS TAILORED TO YOUR PERSONAL INTERESTS. IF YOU DO NOT WISH TO RECEIVE THESE MESSAGES ANYMORE, PLEASE CLICK HERE. \""},"Disclaimer_new1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"RECIBES ESTA INFORMACIÓN PORQUE ESTÁS SUSCRITO AL SERVICIO DE ACTUALIZACIONES DE VERSACE. SE TRATA DE UN CORREO ELECTRÓNICO AUTOMATIZADO, POR FAVOR NO RESPONDAS. GESTIONA TUS PREFERENCIAS PARA RECIBIR COMUNICACIONES ADAPTADAS A TUS INTERESES PERSONALES. SI YA NO DESEAS RECIBIR ESTOS MENSAJES, HAZ CLIC AQUÍ."},"Disclaimer_new_sh":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"\"This information is being sent to customers who have requested to receive updates on Versace's latest information. As this is an automatic email, we are unable to reply. Thank you for your understanding. Manage the information you would like to receive so that we can send you communications tailored to your interests. If you do not wish to receive this message, please click here. \""},"EmailTopBanner":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"188px","imgSize":"","imgWidth":"1200px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"EmailTopBanner2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"104px","imgSize":"","imgWidth":"1200px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"EmailTopBannerURL":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"HeroImg1":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"1350px","imgSize":"432kb","imgWidth":"1080px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/324c0732a323e7b15d4d2caf9008d57a.jpg","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/70f1e791eb7da28915aaa686ee61a11d.jpg"},"HomepageUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en"},"HomepageUrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/"},"IbxDisclaimer1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"IbxDisclaimer2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"IbxDisclaimer3":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"IbxOffer1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"IbxOffer2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"IbxOffer3":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"LogoImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"102px","imgSize":"9kb","imgWidth":"466px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/4eabd6d32bcac38bb7b48bcd458e8ed0.png"},"LogoImgWidth":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"233"},"Nav1Copy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Women"},"Nav1CopyES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Mujer"},"Nav1Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/women/"},"Nav1UrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/mujer/"},"Nav2Copy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Men"},"Nav2CopyES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Hombre"},"Nav2Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/men/"},"Nav2UrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/hombre/"},"Nav3Copy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Children"},"Nav3CopyES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Niños"},"Nav3Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/children/"},"Nav3UrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/ninos/"},"NavImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"640px","imgSize":"892kb","imgWidth":"640px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/c958b91c6494c661a0c3f633492afaa5.png"},"OpenBrowserCopy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Open in Browser"},"PrivacyCopy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Privacy Policy"},"PrivacyUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://versace.com/us/en/legal/privacy-policy.html"},"PrivacyUrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/avisos-legales/privacy-policy.html"},"ProductGridImg1":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"1350px","imgSize":"408kb","imgWidth":"1080px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/c34d2417af550adfd89e42371e6a05b8.jpg","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/1725422dd82d1f1603358d4a26e5250e.jpg"},"ProductGridImg2":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"1350px","imgSize":"408kb","imgWidth":"1080px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/c34d2417af550adfd89e42371e6a05b8.jpg","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/1725422dd82d1f1603358d4a26e5250e.jpg"},"SocialLink1Img":{"description":"Instagram","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/ab8e6ceb4f10b18e734b31ee15edba47.png"},"SocialLink1Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.instagram.com/versace/"},"SocialLink2Img":{"description":"Facebook","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"1kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/a086f4f9476727304edebb925d0bf30b.png"},"SocialLink2Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.facebook.com/versace/"},"SocialLink3Img":{"description":"Twitter","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/05f1956feae4b419a6f218a9844fcaa9.png"},"SocialLink3Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://twitter.com/Versace?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor"},"SocialLink4Img":{"description":"Youtube","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/5c6ef2bf9c5fbba999003e7cae354179.png"},"SocialLink4Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.youtube.com/versace"},"SocialLink5Img":{"description":"WeChat","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/4a44adca65ba1551b1ecdd9ef8f1b47c.png"},"SocialLink5Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/wechat.html?service=true"},"SocialLink6Img":{"description":"Weibo","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/b452bb475c083b3b69c0e81b6a2a58cc.png"},"SocialLink6Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://weibo.com/versacechina"},"SocialLinkHeadline":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Follow Us"},"Studio_BelowHeroBannerImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"promoBannerSmartFields","imgHeight":"","imgSize":"","imgWidth":"","label":"$BelowHeroBannerImg","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"Studio_BelowHeroBannerUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"promoBannerSmartFields","imgHeight":"","imgSize":"","imgWidth":"","label":"$BelowHeroBannerUrl","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"Studio_BelowProdGridBannerImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"promoBannerSmartFields","imgHeight":"","imgSize":"","imgWidth":"","label":"$BelowProdGridBannerImg","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"Studio_BelowProdGridBannerUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"promoBannerSmartFields","imgHeight":"","imgSize":"","imgWidth":"","label":"$BelowProdGridBannerUrl","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"Studio_HomepageCartUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"advancedLinks","imgHeight":"","imgSize":"","imgWidth":"","label":"$HomepageCartUrl","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"{{ $CartSuffix := printf \"#bx_cart=%s\" ( base64 $.CartJSON ) }}$HomepageUrl{{ $CartSuffix }}"},"Studio_HomepageUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"advancedLinks","imgHeight":"","imgSize":"","imgWidth":"","label":"$HomepageUrl","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"Studio_ListPageUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"advancedLinks","imgHeight":"","imgSize":"","imgWidth":"","label":"$ListPageUrl","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"{{ $.ListPageUrl }}"},"Studio_TopBannerImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"promoBannerSmartFields","imgHeight":"","imgSize":"","imgWidth":"","label":"$TopBannerImg","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"Studio_TopBannerUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","group":"promoBannerSmartFields","imgHeight":"","imgSize":"","imgWidth":"","label":"$TopBannerUrl","origin":"Studio","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"TextSendOffer1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"TextSendOffer2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"TextSendOffer3":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"TopBannerImg":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"TopBannerUrl":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"TopCat1Copy":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Kleio Bags","startDate":"2024-08-27","startTime":"01:00","val":"Versace Tag"},"TopCat1CopyES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Bolsos Kleio","startDate":"2024-08-27","startTime":"01:00","val":"Bolsos Kleio"},"TopCat1Img":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"312px","imgSize":"166kb","imgWidth":"312px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/8a917d22c48fe2fc7f3b76bd134528b1.png","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/a18c6326f9d1ecdbb858266dd6a5b316.png"},"TopCat1Url":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"https://www.versace.com/sh-category/?cgid=Kleio","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Versace_Tag"},"TopCat1UrlES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"https://www.versace.com/sh-category/?cgid=Kleio","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Kleio"},"TopCat2Copy":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Gianni Ribbon Shoes","startDate":"2024-08-27","startTime":"01:00","val":"Galaxia"},"TopCat2CopyES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"201px","imgSize":"","imgWidth":"200px","promoVal":"Zapatos Gianni Ribbon","startDate":"2024-08-27","startTime":"01:00","val":"Zapatos Gianni Ribbon"},"TopCat2Img":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"312px","imgSize":"177kb","imgWidth":"312px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/87ab073b004aa8070fbf79d907bc6ffc.png","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/cbe13dbb35265e34762d1053d58b9b9b.png"},"TopCat2Url":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"201px","imgSize":"","imgWidth":"200px","promoVal":"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=M_Galaxia"},"TopCat2UrlES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"201px","imgSize":"","imgWidth":"200px","promoVal":"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon"},"TopCat3Copy":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Medusa '95 Bags","startDate":"2024-08-27","startTime":"01:00","val":"Kleio"},"TopCat3CopyES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Bolsos '95 Bags","startDate":"2024-08-27","startTime":"01:00","val":"Bolsos '95 Bags"},"TopCat3Img":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"312px","imgSize":"177kb","imgWidth":"312px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/46cf6bd430dce2430b74eec45ff249cd.png","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/cbd9429f8eea83a16b9986763d69e9ea.png"},"TopCat3Url":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"2250px","imgSize":"","imgWidth":"2250px","promoVal":"https://www.versace.com/sh-category/?cgid=Medusa_95_Bags","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Kleio"},"TopCat3UrlES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"https://www.versace.com/sh-category/?cgid=Medusa_95_Bags","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Medusa_95_Bags"},"TopCat4Copy":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Men's Boots","startDate":"2024-08-27","startTime":"01:00","val":"Gianni Ribbon"},"TopCat4CopyES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Botas para hombre","startDate":"2024-08-27","startTime":"01:00","val":"Botas para hombre"},"TopCat4Img":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"312px","imgSize":"188kb","imgWidth":"312px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/6a275786d7272adf1e35439020013d16.png","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/603f2450f8ea0c9b8b326f20c2d08793.png"},"TopCat4Url":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"https://www.versace.com/sh-category/?cgid=231300","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Gianni_Ribbon"},"TopCat4UrlES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"https://www.versace.com/sh-category/?cgid=231300","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=231300"},"TopCat5Copy":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Medusa Biggie Bags","startDate":"2024-08-27","startTime":"01:00","val":"Protea"},"TopCat5CopyES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"Bolsos Medusa Biggie","startDate":"2024-08-27","startTime":"01:00","val":"Bolsos Medusa Biggie"},"TopCat5Img":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"312px","imgSize":"174kb","imgWidth":"312px","promoVal":"https://assets.bounceexchange.com/assets/uploads/users/5801/6e9a733cb27ad88b8ffaf4cc2649c3a0.png","startDate":"2024-08-27","startTime":"01:00","val":"https://assets.bounceexchange.com/assets/uploads/users/5801/5ad07fe92bd57d0c888bb57ab2c44573.png"},"TopCat5Url":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"200px","imgSize":"","imgWidth":"200px","promoVal":"https://www.versace.com/sh-category/?cgid=242008","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=Protea"},"TopCat5UrlES":{"description":"","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"https://www.versace.com/sh-category/?cgid=242008","startDate":"2024-08-27","startTime":"01:00","val":"https://www.versace.com/sh-category/?cgid=242008"},"TopCatHeadline":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"New Season Highlights"},"TopCatHeadlineES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Lo más destacado"},"UnsubscribeCopy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"IF YOU DO NOT WISH TO RECEIVE THESE MESSAGES ANYMORE"},"UnsubscribeCopy_July2024":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"SI YA NO DESEAS RECIBIR ESTOS MENSAJES,"},"UnsubscribeUrlCopy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"Please click here"},"UnsubscribeUrlCopy_July2024":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"HAZ CLIC AQUÍ."},"UserSubscriptionCopy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"YOU ARE RECEIVING THIS INFORMATION BECAUSE YOU ARE SUBSCRIBED TO THE VERSACE UPDATES SERVICE WITH THIS E-MAIL ADDRESS"},"UserSubscriptionCopy2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"- THIS IS AN AUTOMATED E-MAIL, PLEASE\u0026nbsp;DO\u0026nbsp;NOT\u0026nbsp;RESPOND."},"UserSubscriptionCopy2_July2024":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"GESTIONA TUS PREFERENCIAS PARA RECIBIR COMUNICACIONES ADAPTADAS A TUS INTERESES PERSONALES."},"UserSubscriptionCopy_July2024":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"RECIBES ESTA INFORMACIÓN PORQUE ESTÁS SUSCRITO AL SERVICIO DE ACTUALIZACIONES DE VERSACE. SE TRATA DE UN CORREO ELECTRÓNICO AUTOMATIZADO, POR FAVOR NO RESPONDAS."},"VProp1Copy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"VProp1CopyES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"VProp1Img":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/10b633c36121ae5ea136c7707dab2b94.png"},"VProp1Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/find-a-store/"},"VProp1UrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/contact-us/"},"VProp2Copy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"VProp2CopyES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"VProp2Img":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/ec5972a0c4088dc52f51013594de2cf2.png"},"VProp2Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/client-service/order-and-shipping.html"},"VProp2UrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/atencion-al-cliente/order-and-shipping.html?service=true"},"VProp3Copy":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"VProp3CopyES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"VProp3Img":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"61px","imgSize":"2kb","imgWidth":"60px","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://assets.bounceexchange.com/assets/uploads/users/8134/134af163d92b7cd8ce8cca2f776d3be1.png"},"VProp3Url":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/en/client-service/help-and-faqs.html"},"VProp3UrlES":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":"https://www.versace.com/us/es/contact-us/"},"couponcode1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"couponcode2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"couponcode3":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitecanvas":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitecanvasmobile":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitedisclaimer1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitedisclaimer2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitedisclaimer3":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitelogodark":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitelogolight":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitenonstandard":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitenonstandardmobile":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsiteoffer1":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsiteoffer2":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsiteoffer3":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""},"onsitestandard":{"description":"2024-05-15","enabled":false,"endDate":"2024-10-30","endTime":"00:00","imgHeight":"1350px","imgSize":"345kb","imgWidth":"1080px","promoVal":"assets.bounceexchange.com/assets/uploads/users/5801/da9d61c45c8d44810103c0d36055f868.jpg","startDate":"2024-08-27","startTime":"01:00","val":"assets.bounceexchange.com/assets/uploads/users/5801/5a79c3dee48c3e8d830fd86647c0d71c.jpg"},"onsitestandardmobile":{"description":"","enabled":false,"endDate":"NaN-NaN-NaN","endTime":"NaN:NaN","imgHeight":"","imgSize":"","imgWidth":"","promoVal":"","startDate":"NaN-NaN-NaN","startTime":"NaN:NaN","val":""}},"load_jquery":"auto","max_activations_pageview":"1","max_activations_session":"2","metadata":{"enable_ally_settings_json":"{\"enable_ally_aria_labels\": 1,\"enable_ally_focus\": 1,\"enable_ally_number_to_string\": 1}","enable_cms_dfp_suppression":"0","enable_osr_events":"0","gs_url_identifiers":"","max_activations_timeperiod":"0","max_activations_timeperiod_hours":"0","minify_email":"0","single_page_app_on":"1","single_page_app_test_mode":"0","sms_block_quebec":"0","sms_configs":"{}","sms_creds_id":"","sms_double_opt_in":"0","sms_shared_short_code_enabled":"0","sms_short_code_by_country":"{}","use_button_tag_for_close":"1","use_verbose_label_for_close":"1"},"name":"Versace | US (EN + ES)","no_control_ips":[],"no_ecaps_in_canada":"1","order_email_js":"","order_id_js":"","order_val_js":"","overlay_js":null,"page_type_json":{"cart":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"cart"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('h1.category-name').length \u003e 0"},{"activation":"js","prop":"","prop2":"","prop3":"","val":"jQuery('[data-action=\"Search-Show\"]').length \u003e 0 \u0026\u0026 window.location.href.indexOf('search') == -1"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"checkout"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelector('[name=\"description\"]') \u0026\u0026 document.querySelector('[name=\"description\"]').getAttribute('content') \u0026\u0026 document.querySelector('[name=\"description\"]').getAttribute('content').toLowerCase().indexOf('home') \u003e -1;"}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('.product-detail.product-wrapper').length \u003e 0"}]]},"search":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"search"}]]}},"perf_logging_enabled":"0","pick_random_campaigns":"0","polling_interval":"1000","provider_config":false,"script_delay":"0","script_tags_json":"[{\"name\":\"wknd_tag\",\"version\":null},{\"name\":\"conversion_multipixel\",\"version\":\"ecommerce\"},{\"name\":\"gam_pixel\",\"version\":\"out_of_page\"},{\"name\":\"amp_auto_ad_pixel\",\"version\":\"default\"}]","sibling_website_ids":null,"template_site":"0","test_child_id":"0","test_enabled":"0","test_traffic":"50","third_party_cookie":"0","top_stats_disabled":"0","tp_conversion_js":null,"use_website_cookie":"0","user_history_enabled":"0","v2_enabled":"1","vars":[{"code":"jQuery('#attentive_overlay').length \u003e 0;","default":"false","name":"attentive_visible","page_types":[],"persist":"no","polling":"all","testmode":true,"trigger":"pageload"},{"code":"null;","default":"false","name":"cart","page_types":[],"persist":"permanent","polling":"none","testmode":false,"trigger":"pageload"},{"code":"(function () {\n if(bouncex.website.pts === \"checkout\"){\n return null\n }\n return Number(jQuery('.minicart-quantity').first().text().trim());\n})();","default":"0","name":"cart_qty","page_types":[],"persist":"visit","polling":"all","testmode":false,"trigger":false},{"code":"(function () { \n if (bouncex.website.pts === 'checkout') {\n return null\n }\n\n return Number(jQuery('.minicart-products .sub-total').first().text().replace(/[^0-9.]/g, ''))\n})();","default":"0","name":"cart_value","page_types":[],"persist":"visit","polling":"all","testmode":false,"trigger":false},{"code":"null;","default":"false","name":"cookie_modal_present","page_types":[],"persist":"no","polling":"all","testmode":true,"trigger":"pageload"},{"code":"bouncex.vars.logged_in || null;","default":"false","name":"ever_logged_in","page_types":[],"persist":"permanent","polling":"none","testmode":false,"trigger":false},{"code":"","default":"false","name":"in_stock","page_types":[],"persist":"no","polling":"none","testmode":true,"trigger":false},{"code":"(function () {\n if (bouncex.website.pts === 'checkout') {\n return null;\n }\n\n return jQuery('#authenticated-user-nav-item [title=\"my account\"]').length \u003e 0\n})();","default":"false","name":"logged_in","page_types":[],"persist":"visit","polling":"none","testmode":false,"trigger":false},{"code":"null;","default":"false","name":"logged_in_identified","page_types":[],"persist":"visit","polling":"none","testmode":false,"trigger":"pageload"},{"code":"bouncex.website.pts;","default":"false","name":"page_type","page_types":[],"persist":"no","polling":"none","testmode":false,"trigger":"pageload"},{"code":"","default":"false","name":"page_url","page_types":["category","search"],"persist":"no","polling":"none","testmode":true,"trigger":false},{"code":"jQuery('.display-color-name').first().text();","default":"false","name":"product_color","page_types":["product"],"persist":"no","polling":"all","testmode":false,"trigger":"pageload"},{"code":"jQuery('.product-name').first().text();","default":"false","name":"product_name","page_types":["product"],"persist":"no","polling":"none","testmode":false,"trigger":"pageload"},{"code":"jQuery('.size-option.selected').first().text().trim();","default":"false","name":"product_size","page_types":["product"],"persist":"no","polling":"all","testmode":false,"trigger":"pageload"},{"code":"(function() {\n if (jQuery('#quickViewModal.show').length) {\n var rawPid = jQuery('.product-quickview').attr('data-pid') || '',\n cleanPid = rawPid.replace(/(__)/g, '').split('_'),\n lang = jQuery('html').attr('lang') || 'en',\n baseId = cleanPid.shift(),\n variantId = cleanPid.pop() || jQuery('.product-quickview .color-value.selected').attr('data-attr-value') || '',\n itemId = baseId + '_' + variantId + '-' + lang.toUpperCase();\n \n if (itemId \u0026\u0026 baseId \u0026\u0026 variantId) {\n return itemId;\n }\n return null;\n }\n return null;\n})()","default":"false","name":"quickview_itemid","page_types":[],"persist":"visit","polling":"vars","testmode":false,"trigger":"pageload"},{"code":"jQuery('.newsletter-success--title:visible').first().text().toLowerCase().indexOf('thank you') \u003e -1 || null;","default":"false","name":"submitted_onsite","page_types":[],"persist":"permanent","polling":"all","testmode":false,"trigger":false},{"code":"jQuery('#zoom-gallery.show').length \u003e 0;","default":"false","name":"zoom_modal_visible","page_types":[],"persist":"no","polling":"all","testmode":false,"trigger":"pageload"}],"website":"versace.com/us/en","website_id":"6357","cache_meta":{"paths":{"2227915":"cache/6357/campaigns/2227915-af10789d97d9a1baed5be19a80924177","2227916":"cache/6357/campaigns/2227916-68ca21df5358541b70793cc8b2451bd4","2227917":"cache/6357/campaigns/2227917-d0e035e2cb05860a6e884ddeec3bf87c","2227918":"cache/6357/campaigns/2227918-f12a6dba43d76d24699ff0b0f5a15ec8","2227919":"cache/6357/campaigns/2227919-98df98acfc0f6d85a8f17be4276b3486","2227920":"cache/6357/campaigns/2227920-9ede50581c4b8b9f05cde5d7ac86c16f","2227921":"cache/6357/campaigns/2227921-b506e753f46fc8dfb3c2f67688d8beeb","2227922":"cache/6357/campaigns/2227922-bdab708d47762929d97748e20442672e","2227923":"cache/6357/campaigns/2227923-cae8d8a3e38afd07593ad97604df7234","2227924":"cache/6357/campaigns/2227924-f9936a894d7aa7e7ab1d551752d0d91c","2227925":"cache/6357/campaigns/2227925-d5082df6d3836e2e457ad431a729997f","2227926":"cache/6357/campaigns/2227926-c257b42377e550d9be824b87ac4c0be5","2227927":"cache/6357/campaigns/2227927-3fc00243a066691f6d6fd8a7187640c0","2227928":"cache/6357/campaigns/2227928-1c5faa2a165c397b35b48aa4521db8f1","2227929":"cache/6357/campaigns/2227929-5544de1bf44f6dd4df56f992209f8ecc","2227930":"cache/6357/campaigns/2227930-26af214c6bfa47332b2e1a0b1f5d5981","2227931":"cache/6357/campaigns/2227931-551dbfc16339f528181e8fc93b98763c","2227932":"cache/6357/campaigns/2227932-3c3d9125c01d2ed26ad7afb5be1513ad","2227933":"cache/6357/campaigns/2227933-49fa4603ae750f071763fe9d5a90a0f4","2227934":"cache/6357/campaigns/2227934-4f16850d02719eed951f74d0ca149573","2227935":"cache/6357/campaigns/2227935-e6003a82a43e97d0a4df6bfdb934a82d","2227936":"cache/6357/campaigns/2227936-d2e041a279299b9ffeafa1019446803d","2227937":"cache/6357/campaigns/2227937-034f147909d127c731f09bc57ba78d8a","2227938":"cache/6357/campaigns/2227938-429e4d69ca4d9a0339340b5d4bddcf50","2227939":"cache/6357/campaigns/2227939-0dee9bce2b9b30f6c62fb1f61801ebfb","2227940":"cache/6357/campaigns/2227940-847a0a0ac98ab0861ab6f10947b22901","2227941":"cache/6357/campaigns/2227941-38f8ee3dc180b68c35cb88acdb6fe5af","2227942":"cache/6357/campaigns/2227942-0df09dcb30cec77019ee1efe155192ff","2227943":"cache/6357/campaigns/2227943-bd8057e76befd68da15a16eb308de07a","2227944":"cache/6357/campaigns/2227944-f7de7b2002dfc2ea091792a20414870c","2227945":"cache/6357/campaigns/2227945-d01787c55fe28e9145042e2f96cc4d85","2227946":"cache/6357/campaigns/2227946-c72f000c05f9e8e51513316bc9b9b2e6","2227947":"cache/6357/campaigns/2227947-296312680411b31664638c34317414fa","2227948":"cache/6357/campaigns/2227948-1f598229278e3d7c4f2dfec313335c69","2227949":"cache/6357/campaigns/2227949-977683547d2bf83ddaedb1b565a24a11","2227950":"cache/6357/campaigns/2227950-d23dcec17662204bdeedfb48d8f47acd","2227951":"cache/6357/campaigns/2227951-5bf485777497e260694bab72ae51df16","2227952":"cache/6357/campaigns/2227952-6fcea2bc3ca16938d957940354094f10","2227953":"cache/6357/campaigns/2227953-be101b2e85af3ba76948904ca29c2612","2227954":"cache/6357/campaigns/2227954-3c656c2ba7e521c51b11661224cede88","2227955":"cache/6357/campaigns/2227955-6b6230ae00fb0ac30b417b57b6a3d1b1","2227956":"cache/6357/campaigns/2227956-b0b222bc947f64bfb76ca7dcda4efece","2227957":"cache/6357/campaigns/2227957-09bd1ba8310a624a454f5c3716ac65fd","2227958":"cache/6357/campaigns/2227958-df52f0e8c84fe9394dd8a79c5cd40264","2227959":"cache/6357/campaigns/2227959-7c8685a455b01469a0cd96abf1155f43","2227960":"cache/6357/campaigns/2227960-758038d70e7331175c43233376369de5","2227961":"cache/6357/campaigns/2227961-3c6afa3f3b624219397ac49caa5e0503","2227962":"cache/6357/campaigns/2227962-82c8e48555ae7fa0b31afc8c9f1c5a9c","2227963":"cache/6357/campaigns/2227963-576676f579be0f715b2553d503eae3e7","2227964":"cache/6357/campaigns/2227964-1e117d74c5dca65028704decc3dc15b0","2227965":"cache/6357/campaigns/2227965-d92cfbbb04ae7ab068799fbfa6da5417","2227966":"cache/6357/campaigns/2227966-1013546dd78617e8140af48d955891b6","2227967":"cache/6357/campaigns/2227967-af46627cabfa4fe1d5ffc1389da0d2f4","2227968":"cache/6357/campaigns/2227968-9605830172434db3c0d57d066d777a3a","2227969":"cache/6357/campaigns/2227969-db69674654d861455976219b3bf72cb2","2227970":"cache/6357/campaigns/2227970-1cc28332bdc10144e5b7ff8734aefb37","2227971":"cache/6357/campaigns/2227971-b8176a9e5d0d69f74c8d39daecba4464","2227972":"cache/6357/campaigns/2227972-4886597766d1a64ab886c2605c10e7e2","2227973":"cache/6357/campaigns/2227973-291cba89caa33c25985524d719116674","2227974":"cache/6357/campaigns/2227974-9ea6e390a15dd6c5c9f5fb1f47bd2c1c","2227975":"cache/6357/campaigns/2227975-a41ddf6e14e21a44c425cb4dc364368c","2227976":"cache/6357/campaigns/2227976-c1b86ac1782c150518f2f9b339fab1f0","2227977":"cache/6357/campaigns/2227977-7f7c07578aa8367dd914c30612b0e1b8","2227978":"cache/6357/campaigns/2227978-ec1ee03e7b49937bd811e603d2180f06","2227979":"cache/6357/campaigns/2227979-06c9d8e2acb4c547ea1b230f1a94ba49","2227980":"cache/6357/campaigns/2227980-9ef980e7697c017c1561065216b1d180","2227981":"cache/6357/campaigns/2227981-ab8ded734be047a0d5f44add23679ce4","2227982":"cache/6357/campaigns/2227982-9dcc54dc54862be1ab1e482e809eeef6","2227983":"cache/6357/campaigns/2227983-ae24bf0471b3fef0bd3bcdfda5754cc5","2227984":"cache/6357/campaigns/2227984-6bc9bafaf4e24f95d4915e9dcdd3ae22","2227985":"cache/6357/campaigns/2227985-7cb981b7357cdc768136335c3e14e685","2227986":"cache/6357/campaigns/2227986-b03e2d0fe0acc02808215ed45d966d36","2227987":"cache/6357/campaigns/2227987-c2b97fb7f5b69e5a61b24d5af718e14e","2227988":"cache/6357/campaigns/2227988-a242d536c8cb111675da99e6c3931a91","2227989":"cache/6357/campaigns/2227989-02c4ddab8f6e08dc75fcc07a1256616c","2227990":"cache/6357/campaigns/2227990-4964eff72dd5fcd933f7174e43c0a9a3","2227991":"cache/6357/campaigns/2227991-05eb01ef0573659efa15c4e094c9124f","2227992":"cache/6357/campaigns/2227992-a20244738467b09115722b77a413735f","2227993":"cache/6357/campaigns/2227993-9e9aa31490ea5f2225349740c9164e41","2227994":"cache/6357/campaigns/2227994-b652df3d8706fbf2d9abf4c9cb627438","2227995":"cache/6357/campaigns/2227995-5c74c6bebfea5d97b0396afff255d063","2227996":"cache/6357/campaigns/2227996-22e154dd8b2c15ac743418414c8b3ba1","2227997":"cache/6357/campaigns/2227997-f46b5d34b9d1d207dc8c509a87597b53","2227998":"cache/6357/campaigns/2227998-f3f34c149ef5c4740ae58d0fb4613119","2227999":"cache/6357/campaigns/2227999-dfc204c4ccf1094915f5b67c1bec1a3f","2228000":"cache/6357/campaigns/2228000-6c346125adbc6fdee2b79e4a68048ae4","2228001":"cache/6357/campaigns/2228001-639e7d870a8c261a0a8468faed62e92e","2228002":"cache/6357/campaigns/2228002-08885b22af2ca4b21102d545a090532f","2228003":"cache/6357/campaigns/2228003-056d4e2a944d15f56c1aee953765958e","2228004":"cache/6357/campaigns/2228004-be9eee5c324236029908de8fb08d464f","2228005":"cache/6357/campaigns/2228005-8e219805b9d7211c84b0494d6fd257bc","2228006":"cache/6357/campaigns/2228006-639fce41cc4e2da6fa8587d68442d18a","2228007":"cache/6357/campaigns/2228007-1981ed3a9e83c76e59eb7f5e4db9050b","2228008":"cache/6357/campaigns/2228008-939beabb9ae4e869d394635225ea0c66","2228009":"cache/6357/campaigns/2228009-be153d6bd3670cea53496d2d83ee3c0c","2228010":"cache/6357/campaigns/2228010-fa9c23114e6d2abb5ed35e09c371bb77","2228011":"cache/6357/campaigns/2228011-f591e79322ce8916a3954f46494e9aea","2228012":"cache/6357/campaigns/2228012-d3497b3927297c2563ae82b311fbe00e","2228013":"cache/6357/campaigns/2228013-06f41b829498dcabef9af760a43c6bde","2228014":"cache/6357/campaigns/2228014-1ed1f380405157cef2f35009b93e8726","2228015":"cache/6357/campaigns/2228015-37992258c7914c1664e5b3d466d59f69","2228016":"cache/6357/campaigns/2228016-1453914a11baf2681f7ca5eb0e277714","2228017":"cache/6357/campaigns/2228017-c44719f67ceadb4e2179dcffcc3bf525","2263398":"cache/6357/campaigns/2263398-588e28052c4cd9e3ae8afba9f86917f1","2263399":"cache/6357/campaigns/2263399-7becdb9baee95aa3b632372f6b380746","2263401":"cache/6357/campaigns/2263401-1ca3b229e7426de0fcf6663e0a959c76","2263402":"cache/6357/campaigns/2263402-8b897a5427159f9430a7fb5fd69c86e6","2263404":"cache/6357/campaigns/2263404-6dc8ef83ed70d11593b854de8fab4d9d","2263405":"cache/6357/campaigns/2263405-5d44058bbb3fba3d2ad9397531f93c8e","2263407":"cache/6357/campaigns/2263407-274966cc0e0da404a896b014bfda4fa7","2263408":"cache/6357/campaigns/2263408-e7b4ea5ab9a7a78242c2f1510bd8b27a","2263410":"cache/6357/campaigns/2263410-fd0c38c3eb094104f589c08e17962a6d","2263411":"cache/6357/campaigns/2263411-743c384b8a0f1805665a917393a83c64","2263413":"cache/6357/campaigns/2263413-a43869cf8973dc8afaedd57dfb5eb380","2263414":"cache/6357/campaigns/2263414-3af2d7565befef46b40f16a0254ead26","2263416":"cache/6357/campaigns/2263416-d2b6644e13055441bd521d86ac0f7bb6","2263417":"cache/6357/campaigns/2263417-43d9edbc48874cdd393524294f6838c5","2263419":"cache/6357/campaigns/2263419-5d9a5e24339f625cc5765e9468315597","2263420":"cache/6357/campaigns/2263420-8ab4bd390fe9813c0e5571f52b8f0af8","2263422":"cache/6357/campaigns/2263422-4f1d678c105d2c1de27725d69b9b7696","2263423":"cache/6357/campaigns/2263423-92e78658b01d80cf2707835387021313","2263425":"cache/6357/campaigns/2263425-0c6c256ec57fd9fc638b61438ca60ba5","2263426":"cache/6357/campaigns/2263426-211eea827891bc1bccc1a85c062c1afb","2263428":"cache/6357/campaigns/2263428-3be9f77f046e441767a1587e61e3c1aa","2263429":"cache/6357/campaigns/2263429-4b084aaf70cadca7bf71563b7dccd840","2263431":"cache/6357/campaigns/2263431-a7ac9628c0d5ed55b85ad0e38ddf7ef7","2263432":"cache/6357/campaigns/2263432-ca419d53fc8b0839134dae08580dd4b1","2265418":"cache/6357/campaigns/2265418-621babb6a610d9f7ed290388aa4b142c","2265420":"cache/6357/campaigns/2265420-bdf5f49492b146d1ade01137050957ed","2313451":"cache/6357/campaigns/2313451-1c3755eacbd7e8d5b03e85dca25a6d58","2313452":"cache/6357/campaigns/2313452-44482b772e3725aecf72cb6c4d379fa5","2313454":"cache/6357/campaigns/2313454-1c2854bcdf7148b3638b53f0fc6d7dad","2313455":"cache/6357/campaigns/2313455-6c855ba75cc9ec93d459387f10590543","2313457":"cache/6357/campaigns/2313457-d072235b4d4b15916c108da03c397021","2313458":"cache/6357/campaigns/2313458-eac0c2a5fd670b59dae596e81e13cdf1","2313460":"cache/6357/campaigns/2313460-33f342cce1271a847f03327ab56714a7","2313461":"cache/6357/campaigns/2313461-96328f16781058db1dc2cb83bc08dfd9","2313463":"cache/6357/campaigns/2313463-48258f991b1bd45629699a262ef3b0d5","2313464":"cache/6357/campaigns/2313464-b8c89d7f37796c3ca45360a7ea045643","2313466":"cache/6357/campaigns/2313466-fda80f6f4db78b29c395e3e0e86e0632","2313467":"cache/6357/campaigns/2313467-2f9123b81762c7d1525a5ede1e127d99","2313479":"cache/6357/campaigns/2313479-6fa417b15f5e1214aaf49bd99fde4398","2313480":"cache/6357/campaigns/2313480-02983dc8ea168021ddce71bc36e53314","2313482":"cache/6357/campaigns/2313482-21da80169ed6d4bbc8e3a8ca1475debd","2313483":"cache/6357/campaigns/2313483-53cf7ac1a0f7e1761b9b28c56a251f35","2313485":"cache/6357/campaigns/2313485-1c883f7efa577bcba75196239d5eec3c","2313486":"cache/6357/campaigns/2313486-18cfa3832e59ec72c5ab0f7fcb1d756b","2313488":"cache/6357/campaigns/2313488-888bc3f468fb8d3ee98c12ef8363bda6","2313489":"cache/6357/campaigns/2313489-9b4c3c65105a9e34a06c8c4ab11aa7c9","2313491":"cache/6357/campaigns/2313491-a3675404254eac35423adc807897f7c1","2313492":"cache/6357/campaigns/2313492-fca6acaa16cd8f6101f429c63cf2a410","2313494":"cache/6357/campaigns/2313494-5f94304c9b429dd2cb42391ee16afbdc","2313495":"cache/6357/campaigns/2313495-8f6f5c95484f312ed98fcdd3da0183fc","2313499":"cache/6357/campaigns/2313499-df7aecae38f339aad82a67988cbdaf69","2313500":"cache/6357/campaigns/2313500-690c0b54149a11887f8002177d4e0b4c","2327619":"cache/6357/campaigns/2327619-cba4d6ea4c109614f561a9bbbdb73335","2327620":"cache/6357/campaigns/2327620-8d8a4ec1ca7838263c3aff41d43bc0d9","2327622":"cache/6357/campaigns/2327622-5d25b13ddb0b2bd27a84a3932943e825","2327623":"cache/6357/campaigns/2327623-d206f5fde6942bfb9a1f47485578ffca","2327625":"cache/6357/campaigns/2327625-9da44e1747e3d719027b5710ebecc47b","2327626":"cache/6357/campaigns/2327626-e518ac6ed42031d506df0a5d2b495e31","2327628":"cache/6357/campaigns/2327628-62031877cf188c3b2dd881342c8e9935","2327629":"cache/6357/campaigns/2327629-89a92aee8c449e48fc14c43896e8d718","2327632":"cache/6357/campaigns/2327632-295c72edb313193158aead0bcef24698","2327633":"cache/6357/campaigns/2327633-ca3c3245e88ed661d861288a94aed7d8","2327635":"cache/6357/campaigns/2327635-f7fc4ee41adf29ac1097e37c01f1bdff","2327636":"cache/6357/campaigns/2327636-282bc101a821a695faff19d476820748","2327638":"cache/6357/campaigns/2327638-6de2039b84e2e66f0bba5c5bab5c15e2","2327639":"cache/6357/campaigns/2327639-da4ffd58e16203c0f20de6d6144ce9d5","2327641":"cache/6357/campaigns/2327641-5baf84177edbaa183223593b0ffe5090","2327642":"cache/6357/campaigns/2327642-7b57a6578d6c1dd3c5803a3f41593475","2327644":"cache/6357/campaigns/2327644-1af631752255b87ed7a104a305220097","2327645":"cache/6357/campaigns/2327645-6f6612eabe99ddbd3e857dcab87ee61c","2327647":"cache/6357/campaigns/2327647-c38ab49c8b1b34e8da96de57e4a41a44","2327648":"cache/6357/campaigns/2327648-29cb6c4237c0a736889ed370524ca22e","2327650":"cache/6357/campaigns/2327650-316707f7c4f2f663a8d223b61f62aa73","2327651":"cache/6357/campaigns/2327651-0e88653f196c9ed925b8f8bf9cbf08c0","2327653":"cache/6357/campaigns/2327653-0a4db3e2e97fc9b5690be27f9d7f3935","2327654":"cache/6357/campaigns/2327654-99a1702582dc4046a9a45cb824aadf04","2327656":"cache/6357/campaigns/2327656-8301347ad6f7535667cb27c009d513fe","2327657":"cache/6357/campaigns/2327657-f152a15931d32f0532cf97b2dea1702a","2327659":"cache/6357/campaigns/2327659-5d35c8133b4bed52da45eacff9fcb91d","2327660":"cache/6357/campaigns/2327660-bed0222a4f9d1052614f3b5d5ff3a357","2327662":"cache/6357/campaigns/2327662-1f6529f6e2233ddeda2ed29bef44875f","2327663":"cache/6357/campaigns/2327663-fc1b319d726342d46c6ab5df633a5798","2327665":"cache/6357/campaigns/2327665-6da1547ddbab35688863a7b422911af5","2327666":"cache/6357/campaigns/2327666-91ca220658c7dd8c680f1946966ea748","2327668":"cache/6357/campaigns/2327668-27ac9e2a24a454ec4d613df488f59e37","2327669":"cache/6357/campaigns/2327669-3e8524788c2d4a233838920494768cd5","2327671":"cache/6357/campaigns/2327671-cceebcf649d5367a1fe1505d2b29bdab","2327672":"cache/6357/campaigns/2327672-7e84fa97bc69a365a851664601d8f9bd","2327674":"cache/6357/campaigns/2327674-4836204e2998edef642c084a49f7d492","2327675":"cache/6357/campaigns/2327675-5d45cced26d209e6e63c96d904bdc589","2327677":"cache/6357/campaigns/2327677-f773ae0f9638d61a563a72e01fffbe73","2327678":"cache/6357/campaigns/2327678-40820e172cab58df3c825b20543ff2f9","2327680":"cache/6357/campaigns/2327680-043832a4e4b04656b40cefc1ed9a9812","2327681":"cache/6357/campaigns/2327681-9b1db1a26c76e1adac759e32770919b5","2327683":"cache/6357/campaigns/2327683-2122ad3a40dc4b2975e42e39841ba8d9","2327684":"cache/6357/campaigns/2327684-cae649d7ac3beab3d05f85ccc184888f","2327686":"cache/6357/campaigns/2327686-658d9013b58f2ee83efb4555df3f5cb2","2327687":"cache/6357/campaigns/2327687-dfbbaf4fc5ac57839bc792e3b645a477","2327689":"cache/6357/campaigns/2327689-347430c74d995813b88b7bf98919fdd4","2327690":"cache/6357/campaigns/2327690-db995739ac94fef2a3a4b64cbe5e7552","2351518":"cache/6357/campaigns/2351518-4b1eb7546e21c9999cbd0c425aca1358","2351665":"cache/6357/campaigns/2351665-76456ba4296e6118ae929aec6ba99385","2352037":"cache/6357/campaigns/2352037-17fee9eca7df3cc68d781f4cc5f9127e","2352038":"cache/6357/campaigns/2352038-edec456d9a44871f24b2b6b050ba2200","2352039":"cache/6357/campaigns/2352039-7d9434d0bf8f277d49e5ef613c69d46a","2352040":"cache/6357/campaigns/2352040-fd2c4fddafa5bc1dc551a8a6c35f4165","2352053":"cache/6357/campaigns/2352053-7dcc24fbb72bfb4871a39b72eb186aa9","2352054":"cache/6357/campaigns/2352054-6bc3795492a0f71237ca5f9b8ee1a235","2352055":"cache/6357/campaigns/2352055-7f63c28084f849f9279f8647988c235c","2353840":"cache/6357/campaigns/2353840-4803f5639a060fdd79266a732acc66e4","2353841":"cache/6357/campaigns/2353841-6af6edf3eefb3b88d2324b102f0308a6","2353842":"cache/6357/campaigns/2353842-9b5f01ca081d96061be15a2a34230720","2353843":"cache/6357/campaigns/2353843-baa8104aef6dd44258217e1c4348098b","2354145":"cache/6357/campaigns/2354145-0b36e6a17713bc6831cf11c8bf5d6878","2356400":"cache/6357/campaigns/2356400-231888732018f14f353e6737df57d114","2356459":"cache/6357/campaigns/2356459-26429858799db875e911492caa664762","2356477":"cache/6357/campaigns/2356477-d4eb8da2f1183099589eb979ddf26825","2359158":"cache/6357/campaigns/2359158-0fcb5becbdd4a848fb5efc1049881474","2359159":"cache/6357/campaigns/2359159-506aee395cf7c60d182afa758fa98b03","2359160":"cache/6357/campaigns/2359160-63d68e2d6b658593e96dc63d5bc6cd2d","2415299":"cache/6357/campaigns/2415299-aac6e3a02a09eb4e2faafb003f75cbeb","2418493":"cache/6357/campaigns/2418493-23c29a11226e2826477d2206d4996f42","2418494":"cache/6357/campaigns/2418494-1d68f95aad3fded639e340a2481d0056","2418495":"cache/6357/campaigns/2418495-fd9fceaeb23bb993014bd16ef6e3764e","2418828":"cache/6357/campaigns/2418828-036fec750eca71d598c222c98bd25b4d","2430436":"cache/6357/campaigns/2430436-7431776ebe0a67d09954521f0f145bf6","2430437":"cache/6357/campaigns/2430437-d543bc8e1c7803e82f92ad1dc4a92880","2430439":"cache/6357/campaigns/2430439-693dcf7fb978217a61780ac0aa33639d","2430440":"cache/6357/campaigns/2430440-fc40735a8daea0c0aa24623e5555623b","2430442":"cache/6357/campaigns/2430442-2d65c1e595f8544c6733e455f41d1752","2430443":"cache/6357/campaigns/2430443-f2ac5e3e8394a587fffe934068cd83d6","2443415":"cache/6357/campaigns/2443415-a698e96ecb0fcd693f726e21e871637d","2456961":"cache/6357/campaigns/2456961-e44c153251848bbb67479f1e6b22fded","2456962":"cache/6357/campaigns/2456962-e443b116bbf0f1abdea02c1297974f76","2456965":"cache/6357/campaigns/2456965-9aa5e994da6a4cf033d8569371c110b9","2456966":"cache/6357/campaigns/2456966-5b69ba8280cbdcad89992cec3593dde8","2456968":"cache/6357/campaigns/2456968-c098d7b4e4bcabf75faa028bca149846","2456969":"cache/6357/campaigns/2456969-7b895368833eaa62d1a35ce8a234a1a5","2461847":"cache/6357/campaigns/2461847-9dcc3237ecf3a4c566a7fcf7e72a4ec0","2464890":"cache/6357/campaigns/2464890-2c902e3ea12d32e88c71f4564f684b03","2492080":"cache/6357/campaigns/2492080-7f631169e7d11f083364722906bcda7f","2492081":"cache/6357/campaigns/2492081-4ce4f27f6951313e2ddbabd877445a4d","2492083":"cache/6357/campaigns/2492083-166469402964608f22bce0e285848aea","2492084":"cache/6357/campaigns/2492084-55732f5c09ac74a450b430b9050c64b8","2492892":"cache/6357/campaigns/2492892-52f4623b1e1b9cdf16a1cf1fd9ebfcf5","2492893":"cache/6357/campaigns/2492893-4f92bb7f61b969c1af76df6fa4640b79","2570362":"cache/6357/campaigns/2570362-578a0afcb1f5a98bb7941abbef36e97c","2570363":"cache/6357/campaigns/2570363-56a81f334a6f851b35ec5e0e7da853b6","2570365":"cache/6357/campaigns/2570365-8a12a7aedd8d5f9278434f823e9ca3ce","2570366":"cache/6357/campaigns/2570366-7482aa27880e6a8b2ed1679f16ed399b","2595345":"cache/6357/campaigns/2595345-e76390226c953aea207563db731cf6e0","2595346":"cache/6357/campaigns/2595346-560f675bcadb95502637e24769fa1470","2595347":"cache/6357/campaigns/2595347-45478381086defa4bbbd9565e33f0ff7","2595348":"cache/6357/campaigns/2595348-79f22cff99c776abb10adf080aa6004e","2658251":"cache/6357/campaigns/2658251-acf1ae4c2af389693a6b22e9e4b08fce","2659161":"cache/6357/campaigns/2659161-6130c10b42e80c22abfd453691c2b236","2659162":"cache/6357/campaigns/2659162-e27c2aa785dc71fb151b793c56fa8d68","2659163":"cache/6357/campaigns/2659163-24882baa55e93cdd58295ab7bea1566e","2659164":"cache/6357/campaigns/2659164-ad367777a9498f7ce136efa9a64d5ae4","2659924":"cache/6357/campaigns/2659924-084873a21493b89b83cd7b5ac35911b1","2659925":"cache/6357/campaigns/2659925-98045817ff085234f2484b8ac2dcbbb4","2659926":"cache/6357/campaigns/2659926-d8ad75818783a39df999c2323b12b72e","2662401":"cache/6357/campaigns/2662401-4bb5646f171f0d03d41ced3722f12593","2662402":"cache/6357/campaigns/2662402-d5024691ba3919e59b5204f42dc3dd04","2662403":"cache/6357/campaigns/2662403-b2bf68d639615aafd1d15853cb60fbe5","2663411":"cache/6357/campaigns/2663411-aa1d89bf6d539e6edf96493b9f741199","2663412":"cache/6357/campaigns/2663412-3b5771bd89fc549b12e242d6780c093b","2663413":"cache/6357/campaigns/2663413-04ffb6cb1c66b4430a3a6f2ef853b28b","2663414":"cache/6357/campaigns/2663414-7fbd608e0c056af3c2b66d0e99de4eaf","2673641":"cache/6357/campaigns/2673641-595a4d0268530260d4aee04e7cc1b847","2674343":"cache/6357/campaigns/2674343-4d07c044656767c40ff79bb5981c2aa0","2676058":"cache/6357/campaigns/2676058-4c8697939ee57257e8f3724eb491fccf","2676155":"cache/6357/campaigns/2676155-0ade715420471686d35d2b38df77280a","2679746":"cache/6357/campaigns/2679746-54b2fc304daa102932ea1846191fc518","2681470":"cache/6357/campaigns/2681470-23074b08fce2bb93a0664444b18f7c3b","2681507":"cache/6357/campaigns/2681507-b27e583845e1af52c3e521d9ec16037c","2691126":"cache/6357/campaigns/2691126-7549492aed2ff93eda56fa0b4d41af97","2691315":"cache/6357/campaigns/2691315-169f489bee33e583030e4a0c53e446ce","2691316":"cache/6357/campaigns/2691316-8bbde32925c9a2d18e789052d0744362","2691317":"cache/6357/campaigns/2691317-86a8886ce325bf185b082590068c296f","2691318":"cache/6357/campaigns/2691318-03f3f055a33cdf9fb35d1185ad1e56e4","2691320":"cache/6357/campaigns/2691320-dfe08e2c78a6fc6cfcd5c52b89272bff","2691321":"cache/6357/campaigns/2691321-015648382a17936e6a5e217f8b8a61ce","2691323":"cache/6357/campaigns/2691323-25858f4a58de6aa930f9a57b815ec677","2691324":"cache/6357/campaigns/2691324-64b0a82d4717b3cf7374ddcd2ea6c142","2691326":"cache/6357/campaigns/2691326-5edb3400aa0dcd675be65c6b974813c2","2691327":"cache/6357/campaigns/2691327-ffbc67c6d1023d9ee68ebfb61ad5d0ce","2691329":"cache/6357/campaigns/2691329-7d924d57f66de48315cb49ab06cd4a1a","2691330":"cache/6357/campaigns/2691330-1805b7e4fdb69fc72a6767c164de5146","2691332":"cache/6357/campaigns/2691332-a7975f915329b50db4982e1784775cf1","2691333":"cache/6357/campaigns/2691333-de40bc4b7b99e97e8679048f031a7e03","2691335":"cache/6357/campaigns/2691335-057553376f5713837821604321b8518d","2691336":"cache/6357/campaigns/2691336-22ee0388f3629ebee317257b58c22656","2691338":"cache/6357/campaigns/2691338-b2ba6c2ff2e44bc037013268dea8a6b6","2691339":"cache/6357/campaigns/2691339-cb5f500f1e7f1bd1bd24470a08c9c508","2691341":"cache/6357/campaigns/2691341-910bae12dd31a9de4d1346fb6b403a0a","2691342":"cache/6357/campaigns/2691342-703a511a5f30896683df7d091af11510","2691344":"cache/6357/campaigns/2691344-5a8997204d648c8f57e13c2cc7a4bcd2","2691345":"cache/6357/campaigns/2691345-6d2600c22935655657a9d18e6770aa26","2691347":"cache/6357/campaigns/2691347-50bad7f20c869c43e583f7d7cf7895e5","2691348":"cache/6357/campaigns/2691348-7932253c80aedb3957bf5e8338218099","2692848":"cache/6357/campaigns/2692848-114e6b771eb027042b5140daef357a0b","2692849":"cache/6357/campaigns/2692849-90c459f39e95dbb3d59f823b887863c0","2692850":"cache/6357/campaigns/2692850-ff4b55f3db664d4106dbef336d8fcdfc","2692851":"cache/6357/campaigns/2692851-f926f6e24f6d3c47b57351b8bbfcb30d","2692892":"cache/6357/campaigns/2692892-9ebe8fe61d788bfea708861772311ac2","2692893":"cache/6357/campaigns/2692893-3b1ac337cc700f8ce8505942be2df8b1","2692894":"cache/6357/campaigns/2692894-d58c35d33ef5300774aab4d1864f9da4","2692895":"cache/6357/campaigns/2692895-2b01f558d3f0f859c609659aad9171d2","2692896":"cache/6357/campaigns/2692896-908febfa652bab60d1e28d2d156de9c8","2692897":"cache/6357/campaigns/2692897-405738d88b02becd479b6eebe6d47d9d","2692898":"cache/6357/campaigns/2692898-d822710312a2da1ea6d13a407641cfb5","2692899":"cache/6357/campaigns/2692899-f4b4db7c2fc0294f78e0b30e24bb1289","2692900":"cache/6357/campaigns/2692900-5a81cb4164fe06c392f0fbfc5e706766","2692901":"cache/6357/campaigns/2692901-7a9e3c3db2059fd7fa86fe4a6073ef2c","2693128":"cache/6357/campaigns/2693128-848852b663f62adaefe336f388392496","2693129":"cache/6357/campaigns/2693129-9273942443f42df875ca00daf2941667","2693130":"cache/6357/campaigns/2693130-b407cbbc7d163ea117d1ad01cfc59fe5","2693131":"cache/6357/campaigns/2693131-d1e78677c9c66d10f4adce2a4cab738a","2693132":"cache/6357/campaigns/2693132-0925b6be53da74afd15a9929f5de7bc8","2700717":"cache/6357/campaigns/2700717-a6dbcb1c31ba088bf8a423911b73d32c","2706786":"cache/6357/campaigns/2706786-3eba621b955b023fb2983d7ed810f1a9","2706787":"cache/6357/campaigns/2706787-51f198b519f1923b053b972d8d31914d","2711025":"cache/6357/campaigns/2711025-100301a19a04cd7e2bf38f5f5ebbb93c","2711026":"cache/6357/campaigns/2711026-99538d34a628e12f7c03880820bea30f","2756722":"cache/6357/campaigns/2756722-55f905216d36a7b8be5c35f02c75a145","2758635":"cache/6357/campaigns/2758635-7813a150b9d7cc00660ecbc31c25341c","2801304":"cache/6357/campaigns/2801304-378adc7db092821b432a0f4b0fe37e49","2801305":"cache/6357/campaigns/2801305-d356a06c245dc82f4edc0d163345b6ef","2801306":"cache/6357/campaigns/2801306-be87f27fbd8e297d7dd1fcab8b3768ff","2801307":"cache/6357/campaigns/2801307-6529b77e1797943c888e9e9e76202fd4","2819715":"cache/6357/campaigns/2819715-3048e207f594bb425f04663c47193e8f","2830954":"cache/6357/campaigns/2830954-7dad979d4a51e82dd18ac2f87dd1a286","2830955":"cache/6357/campaigns/2830955-a1e448c38df72a54e44dbc86bdfd4825","2830957":"cache/6357/campaigns/2830957-05169bc0ecdcb4297d834baacfa6972b","2830958":"cache/6357/campaigns/2830958-d5ad0694ec5eeefc6a3a0085951925cf","2830960":"cache/6357/campaigns/2830960-a99e787219d33c629b5729d299064c99","2830961":"cache/6357/campaigns/2830961-7cae114282c273f7f50055b6e5a70381","2830963":"cache/6357/campaigns/2830963-58bacd1c2fc71bdaf2af2c7f63e55295","2830964":"cache/6357/campaigns/2830964-27e797548830b41bd7c7bf65c99387d1","2830966":"cache/6357/campaigns/2830966-4c5b35ad4384c5811229fc346f7caf3b","2830967":"cache/6357/campaigns/2830967-b3f5bb0df7ab5af0fe15757e634cef2a","2830969":"cache/6357/campaigns/2830969-6d13ccf394bde521027a0d7029247610","2830970":"cache/6357/campaigns/2830970-39f8f52efd8f99f9c19e5786f7b4dcfd","2830972":"cache/6357/campaigns/2830972-1bb39e0d274f8d6ec1a25d5910ef6a87","2830973":"cache/6357/campaigns/2830973-4626128db89e7d2ae04a69d08ffec3c3","2830975":"cache/6357/campaigns/2830975-44af4b31f2dadd8688d9cc4f85684565","2830976":"cache/6357/campaigns/2830976-be6dae4972af879d4c20ec29322330e3","2830978":"cache/6357/campaigns/2830978-0f39326935385d07f2ee8bed52a70a8a","2830979":"cache/6357/campaigns/2830979-e83488476b969e0f5a13a565476978ad","2830981":"cache/6357/campaigns/2830981-e8554782cb63933a48784e9765dea196","2830982":"cache/6357/campaigns/2830982-d2dfdfd0a197c203dc972506ea1ae764","2830984":"cache/6357/campaigns/2830984-4abab6d3e6aef0d74a9570b36fe10b58","2830985":"cache/6357/campaigns/2830985-66448559fc29f6315393d3444a5467ad","2830987":"cache/6357/campaigns/2830987-b1505ee69b8eead4d0d59432bd101c93","2830988":"cache/6357/campaigns/2830988-282775e932c500d4e2355e5622ea067b","2830990":"cache/6357/campaigns/2830990-2b7e05d729220a8a34591e7efd7a6c02","2830991":"cache/6357/campaigns/2830991-a7266cdadf955c948a671b226d627184","2830993":"cache/6357/campaigns/2830993-260210043138c688512bdfb7838e7725","2830994":"cache/6357/campaigns/2830994-2d93b215e0c6b78705f691195bceac99","2830996":"cache/6357/campaigns/2830996-631c5d2a564230333e82fdf4c9664383","2830997":"cache/6357/campaigns/2830997-c5db5f69ef7e7fe2b11b8be2e7b32014","2830999":"cache/6357/campaigns/2830999-d09a74bfd8a778474157e7c2f0296759","2831000":"cache/6357/campaigns/2831000-3f63b414b86ee8640a3f50b1117269e3","2831002":"cache/6357/campaigns/2831002-1d9e63f91bfd581c9788b65d01e379ca","2831003":"cache/6357/campaigns/2831003-930743253f340bd9f9efeae6684bddc7","2831005":"cache/6357/campaigns/2831005-76b5e77359d8bffb41a218dc085379db","2831006":"cache/6357/campaigns/2831006-c638f45fb35846a0a78ca0eb84bcf3e8","2831008":"cache/6357/campaigns/2831008-b7cf73507ef53cfe6da6f9d2ea34e9c7","2831009":"cache/6357/campaigns/2831009-1e0d98414adee459eea63473f56dc576","2831011":"cache/6357/campaigns/2831011-4c97e3cc5b5096865d549375dfe31951","2831012":"cache/6357/campaigns/2831012-25feebc2211e929cb794fd39d50a9656","2831014":"cache/6357/campaigns/2831014-30b6ab564fa02aaf9b7fb4a0b3618e04","2831015":"cache/6357/campaigns/2831015-835237bab3dc26c029bc6f91c683c359","2831017":"cache/6357/campaigns/2831017-5cbd130acef3730aef2166155ef8c12b","2831018":"cache/6357/campaigns/2831018-dd27046bd8fb972b820fa69839eb93eb","2831020":"cache/6357/campaigns/2831020-b4d4f2a1c4b3e2f2505cc4addf7729b2","2831021":"cache/6357/campaigns/2831021-039171bb9cfee99880020b174cc1337f","2831023":"cache/6357/campaigns/2831023-eb888a8eb45e480fe7c8b54722c89ce0","2831024":"cache/6357/campaigns/2831024-77a9931abb0dd4a3128a48c3467a8330","2831026":"cache/6357/campaigns/2831026-b222200add3b5e33e3bd11a095585891","2831027":"cache/6357/campaigns/2831027-edf339d25677fceee6e009c570d526f8","2831029":"cache/6357/campaigns/2831029-3f1940b926a99594de4cbf1dd1649cb4","2831030":"cache/6357/campaigns/2831030-0a0713b1aa26dd673591db4a715ccbc7","2831032":"cache/6357/campaigns/2831032-7969ed166fd7f3b2ee2c4e55a6d05bf6","2831033":"cache/6357/campaigns/2831033-93898b26287ed933841d8b4883d8ccd8","2831035":"cache/6357/campaigns/2831035-aa98e54542895667f92a427017fdcf5a","2831036":"cache/6357/campaigns/2831036-fa52bc804613d28ec1fdab3854e64efd","2831038":"cache/6357/campaigns/2831038-ba9cdc467b06906d3a4204608fa4b0fc","2831039":"cache/6357/campaigns/2831039-700c1ffab6574dc04512d3a12421ef9e","2831041":"cache/6357/campaigns/2831041-d35b1f38cae1a78bfd32fe805232c42a","2831042":"cache/6357/campaigns/2831042-42d9d63248f8b6597ab0a70f7debcac5","2831044":"cache/6357/campaigns/2831044-844111450a2a81b88bad5f72b6871508","2831045":"cache/6357/campaigns/2831045-db5fc5fb329a73360a35d99d74e207cf","2831047":"cache/6357/campaigns/2831047-7f9df2faeace0d7a55fef972d14badae","2831048":"cache/6357/campaigns/2831048-92ff601869e3e454ec80320faa4fa4a0","2885770":"cache/6357/campaigns/2885770-72226401e78df125bf7a8ba8132cbb61","2892538":"cache/6357/campaigns/2892538-a5034c2582bfed924de8e04c05341934","2892539":"cache/6357/campaigns/2892539-ca60a46a4dc6d6dd14afeb7c052d8f23","2892540":"cache/6357/campaigns/2892540-bd624105107c5d36768cd3c1553d457f","2892541":"cache/6357/campaigns/2892541-dfc8f3f65dfa9e527b4eb936b260e36c","2892543":"cache/6357/campaigns/2892543-f73ecf347f47cae10407a5f4983f1438","2892544":"cache/6357/campaigns/2892544-6dfaa2e15ebda884eaaed9f445ca0ab7","2892545":"cache/6357/campaigns/2892545-a7232523d40e3da85d8094fe8839186c","2892546":"cache/6357/campaigns/2892546-79b09bbe758f0d3d7bc95a2e870744cb","2923159":"cache/6357/campaigns/2923159-404c7eaeb83a92c50068166292482c3e","2923161":"cache/6357/campaigns/2923161-0027a387740f5e331024142fac1768e9","2923162":"cache/6357/campaigns/2923162-b728db39e2e9373bf51b1ab592c70349","2923163":"cache/6357/campaigns/2923163-e1979ad49cfb99703816310cfaa772e5","2923164":"cache/6357/campaigns/2923164-4c1a01cf479ace976560c394e9606002","2923170":"cache/6357/campaigns/2923170-baf124e229f8bab7be8b25d38c906b10","2923171":"cache/6357/campaigns/2923171-c4ff3cfbab785e93d9eb511a4df773e2","2923172":"cache/6357/campaigns/2923172-a552635e487de8d401e419ca7d3496c9","2923174":"cache/6357/campaigns/2923174-d8a301894b77e35affb7f71dc27fad4a","2923175":"cache/6357/campaigns/2923175-86ed3fd64aacd1750f9373cd934dcf31","2923176":"cache/6357/campaigns/2923176-55c08a971abdf4cf95949b5855020d53","2923177":"cache/6357/campaigns/2923177-f423d840bc115a4a77b55c9fac0018b3","2923180":"cache/6357/campaigns/2923180-53f3dc04fc7f8e150324c0765f13f7da","2923182":"cache/6357/campaigns/2923182-d62ce323780cdf0a7a278ef67b1517b4","2923183":"cache/6357/campaigns/2923183-81fb463152e49c7b2d78f88c9af72252","2923184":"cache/6357/campaigns/2923184-f80d986deaad60e98fcbd503d336bf7f","2923185":"cache/6357/campaigns/2923185-87cf777034d67c12fc3c55ee96e4ccd5","2923590":"cache/6357/campaigns/2923590-b781371c619c59f16f5ee7f65d865d78","2923591":"cache/6357/campaigns/2923591-bfc8963e6a7bb7592898aa4f635d131c","2923592":"cache/6357/campaigns/2923592-94ec1631c91f84bf321475de0711d00c","2923594":"cache/6357/campaigns/2923594-80fd350bd6871e54e6e12289cba74b9f","2923595":"cache/6357/campaigns/2923595-ec5cbfeab66873c85e746a9f888b30a8","2923596":"cache/6357/campaigns/2923596-de515169a77cdba8b668c291c3847828","2923662":"cache/6357/campaigns/2923662-ae79d3ae652f77da9ef80453a2983b4c","2923663":"cache/6357/campaigns/2923663-cf08ae6f1bb8a2208a46c44397e2932b","2923664":"cache/6357/campaigns/2923664-31df22f8b36b40f39be87fd83421e0a6","2923666":"cache/6357/campaigns/2923666-2a78a43c234222003515fcd4a7048f50","2923667":"cache/6357/campaigns/2923667-374aa8faa644eaf088ffbec0aca3d25a","2923668":"cache/6357/campaigns/2923668-8d3d1d421c68ea5c969c6cc21486c9df"},"index_live":"cache/6357/campaign-index-live-41ddac54c21c33e2b9a994416397699c","index_test":"cache/6357/campaign-index-test-2840942081425bae1098c770d8ad224d"}});