(function() { function bxBootstrap() { var re = /bot|crawl|slurp|spider|mediapartners|headlesschrome|snap-prefetch|remotasks|woorank|uptime\.com|facebookexternalhit|facebookcatalog/i; if (re.test(navigator.userAgent) || navigator.userAgent == '') { return; } if (!(window.bouncex&&bouncex.website)) { var pushedData = []; if(window.bouncex && bouncex.push && bouncex.length){ pushedData = bouncex; } window.bouncex = {}; bouncex.pushedData = pushedData; bouncex.website = {"id":5603,"name":"Cubavera","cookie_name":"bounceClientVisit5603","domain":"cubavera.com","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"","force_https":false,"waypoints":false,"content_width":900,"gai":"UA-1500723-2","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"ffs":"","mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"/* ---------------------------- SHARED VARIABLES ---------------------------- */\r\nvar CART_COOKIE_KEY = 'cart',\r\n\tCLEAN_URL = bouncex.utils.url.allowParams(),\r\n\tSKU_MAP = {};\r\n\r\n/* ------------------------------ ITEM TRACKING ----------------------------- */\r\n\r\n// ensures we are only firing ids with 13 digits\r\nfunction isValidItemId(id) {\r\n\treturn /^\\d{13}$/g.test(id);\r\n\r\n\r\n}\r\n\r\nfunction getItem() {\r\n\tvar itemData = jQuery('.product-section-master:visible').data() || {};\r\n\treturn {\r\n\t\tid: itemData.sectionId,\r\n\t\tcopy: jQuery('.product-single__title').first().text().trim(),\r\n\t\tcategory: jQuery('.breadcrumb a').last().text().trim() || 'global',\r\n\t\turl: itemData.productUrl ? window.location.origin + itemData.productUrl : '',\r\n\t\timageurl: itemData.imgUrl ? window.location.protocol + itemData.imgUrl.replace('{width}x', '1200x1200') : '',\r\n\t\tinstock: itemData.inventory,\r\n\t\tstarrating: jQuery('.yotpo-summary-section .yotpo-bottom-line-score').text().split(' ')[0] ,\r\n\t\tnumberofreviews: jQuery('.yotpo-summary-section .yotpo-bottom-line-basic-text').text().split(' ')[0] ,\r\n\t\t\r\n\t};\r\n}\r\n\r\nfunction initializeItemEvents() {\r\n\tvar item;\r\n\r\n\tbouncex.et.onTrue(\r\n\t\tfunction () {\r\n\t\t\titem = getItem();\r\n\t\t\treturn itemLoaded(item);\r\n\t\t},\r\n\t\tfunction () {\r\n\t\t\tif (item.url.indexOf('gift-card') > -1) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tfireItemEvents(item);\r\n\t\t\tinitColorSpecficTracking(item);\r\n\t\t\tbouncex.setTimeout2(function() {\r\n\t\t\t\t// convert to string because sku object uses strings\r\n\t\t\t\tfireSelectSkuForOneVariant(item.id + '');\r\n\t\t\t}, 500);\r\n\t\t},\r\n\t\t10\r\n\t);\r\n}\r\n\r\nfunction fireItemEvents(item) {\r\n\tbouncex.push(['item', item]);\r\n\tbouncex.push(['view item', {\r\n\t\t'item:id': item.id,\r\n\t\t'item:itemgroupid': item.id\r\n\t}]);\r\n}\r\n\r\nfunction itemLoaded(item) {\r\n\treturn isValidItemId(item.id) &&\r\n\t\t!!item.copy &&\r\n\t\t!!item.category &&\r\n\t\t!!item.url &&\r\n\t\t!!item.imageurl;\r\n}\r\n\r\nfunction newItemIsNotPreviousItem(previousItem, newItem) {\r\n\treturn previousItem.id !== newItem.id\r\n\t\t&& previousItem.url !== newItem.url\r\n\t\t&& previousItem.imageurl !== newItem.imageurl;\r\n}\r\n\r\nfunction fireSelectSkuForOneVariant(itemId) {\r\n\tSKU_MAP = createSkuMap(SKU_MAP);\r\n\tvar skuObjs = Object.values(SKU_MAP).filter(function(skuObj) {\r\n\t\treturn skuObj.itemId === itemId;\r\n\t});\r\n\r\n\tif (skuObjs.length === 1) {\r\n\t\tfireSelectSku(itemId, skuObjs[0].variantSku);\r\n\t}\r\n}\r\n\r\nfunction initColorSpecficTracking(previousItem) {\r\n\tbouncex.et.onVarChange('item_id', function (oldVal, newVal) {\r\n\t\tif (!newVal || !oldVal) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar newItem;\r\n\t\tbouncex.et.onTrue(function () {\r\n\t\t\tnewItem = getItem();\r\n\t\t\treturn itemLoaded(newItem) && newItemIsNotPreviousItem(previousItem, newItem);\r\n\t\t}, function () {\r\n\t\t\tpreviousItem = newItem;\r\n\t\t\tfireItemEvents(previousItem);\r\n\r\n\t\t\t// sometimes sku does not dynamically change with PDP change\r\n\t\t\tbouncex.setTimeout2(function () {\r\n\t\t\t\tSKU_MAP = createSkuMap(SKU_MAP);\r\n\t\t\t\tvar newVariant = jQuery('#ProductSelect-' + previousItem.id).val(),\r\n\t\t\t\t\tnewSku = newVariant && SKU_MAP[newVariant] && SKU_MAP[newVariant].variantSku;\r\n\r\n\t\t\t\tif (newSku && newVariant !== bouncex.vars.prod_sku) {\r\n\t\t\t\t\tfireSelectSku(previousItem.id, newSku);\r\n\t\t\t\t}\r\n\t\t\t}, 500);\r\n\t\t}, 5);\r\n\t});\r\n}\r\n\r\n/* ------------------------------ SKU TRACKING ------------------------------ */\r\nfunction createSkuMap(skuMap) {\r\n\tvar $variantJson = jQuery('[id*=VariantsJson-]');\r\n\r\n\t$variantJson.each(function (i, e) {\r\n\t\tvar $item = jQuery(e),\r\n\t\t\titemSelectorId = $item.attr('id') || '',\r\n\t\t\titemId = itemSelectorId.split('-').pop(),\r\n\t\t\tvariants = bouncex.parseJSON($item.text().trim(), []);\r\n\t\tvariants.forEach(function (variant) {\r\n\t\t\tvar variantId = variant.id,\r\n\t\t\t\tvariantSku = variant.sku;\r\n\t\t\tif (!skuMap[variantId] && isValidItemId(itemId) && variantSku) {\r\n\t\t\t\tskuMap[variantId] = {\r\n\t\t\t\t\titemId: itemId,\r\n\t\t\t\t\tvariantSku: variantSku\r\n\t\t\t\t};\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n\r\n\treturn skuMap;\r\n}\r\n\r\nfunction initializeSkuEvents() {\r\n\tSKU_MAP = createSkuMap({});\r\n\r\n\tbouncex.et.onVarChange('prod_sku', function (oldVal, newVal) {\r\n\t\tif (!newVal || !oldVal) {\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\tvar variantObject,\r\n\t\t\titemId,\r\n\t\t\tskuId;\r\n\t\tbouncex.et.onTrue(function () {\r\n\t\t\tvariantObject = SKU_MAP[newVal] || {};\r\n\t\t\titemId = variantObject.itemId;\r\n\t\t\tskuId = variantObject.variantSku;\r\n\t\t\tif (!itemId || !skuId) {\r\n\t\t\t\tSKU_MAP = createSkuMap(SKU_MAP);\r\n\t\t\t} else {\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t}, function () {\r\n\t\t\tfireSelectSku(itemId, skuId);\r\n\t\t}, 5);\r\n\t});\r\n}\r\n\r\nfunction fireSelectSku(itemId, skuId) {\r\n\tbouncex.push(['select_sku', {\r\n\t\t'item:id': itemId,\r\n\t\t'item:itemgroupid': itemId,\r\n\t\t'item:feedid': skuId\r\n\t}]);\r\n}\r\n\r\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\r\n\r\nfunction getItemIdsCat() {\r\n\tvar ids = [];\r\n\r\n\tjQuery('.grid [data-id]').each(function (i, e) {\r\n\t\tvar id = jQuery(e).attr('data-id');\r\n\r\n\t\tif (isValidItemId(id) && ids.indexOf(id) < 0) {\r\n\t\t\tids.push(id);\r\n\t\t}\r\n\t});\r\n\r\n\treturn ids.join(',');\r\n}\r\n\r\nfunction getCategoryObject() {\r\n\treturn {\r\n\t\t'page:url': bouncex.utils.url.allowParams(['name', 'query', 'products.size']),\r\n\t\t'items:ids': getItemIdsCat()\r\n\t};\r\n}\r\n\r\nfunction initializeCategoryEvents() {\r\n\tvar categoryObj;\r\n\r\n\tbouncex.et.onTrue(\r\n\t\tfunction () {\r\n\t\t\tcategoryObj = getCategoryObject();\r\n\t\t\treturn !!categoryObj['items:ids'].length &&\r\n\t\t\t\t!!categoryObj['page:url'];\r\n\t\t},\r\n\t\tfunction () {\r\n\t\t\tbouncex.push(['view category', categoryObj]);\r\n\t\t},\r\n\t\t10\r\n\t);\r\n}\r\n\r\n/* ------------------------------- CART EVENTS ------------------------------ */\r\n\r\nfunction fireAddToCart(itemId) {\r\n\tvar token;\r\n\r\n\tbouncex.et.onTrue(\r\n\t\tfunction () {\r\n\t\t\ttoken = bouncex.getBounceCookie(CART_COOKIE_KEY);\r\n\t\t\treturn token;\r\n\t\t},\r\n\t\tfunction () {\r\n\t\t\tbouncex.push([\r\n\t\t\t\t'add to cart',\r\n\t\t\t\t{\r\n\t\t\t\t\t'item:id': itemId,\r\n\t\t\t\t\t'cart:token': token\r\n\t\t\t\t}\r\n\t\t\t]);\r\n\r\n\t\t\tif (bouncex.vars.cart) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tbouncex.setVar('cart', true);\r\n\t\t},\r\n\t\t10\r\n\t);\r\n}\r\n\r\nfunction trackAJAXCart(e, xhr, settings) {\r\n\tif (\r\n\t\tsettings.url.indexOf('/cart/add') > -1\r\n\t\t&& xhr.status === 200\r\n\t\t&& settings.type === 'POST'\r\n\t) {\r\n\t\tvar id = bouncex.utils.getNestedProp('responseJSON.product_id', '', xhr);\r\n\r\n\t\tif (isValidItemId(id)) {\r\n\t\t\tfireAddToCart(id);\r\n\t\t}\r\n\r\n\t}\r\n}\r\n\r\nfunction emptyCart() {\r\n if (bouncex.vars.cart && bouncex.website.pts === 'cart' && bouncex.vars.cart_qty === 0) {\r\n\t\tbouncex.push(['empty_cart']);\r\n\t\tbouncex.setVar('cart', false);\r\n\t}\r\n\t\r\n\tbouncex.et.onVarChange('cart_qty', function (oldVal, newVal) {\r\n\t\tif (bouncex.vars.cart && newVal === 0 && oldVal > 0) {\r\n\t\t\tbouncex.push(['empty_cart']);\r\n\t\t\tbouncex.setVar('cart', false);\r\n\t\t}\r\n\t});\r\n}\r\n\r\nfunction fireEmptyCart() {\r\n\tbouncex.push(['empty_cart']);\r\n\tbouncex.setVar('cart', false);\r\n}\r\n\r\nfunction initializeCartEvents() {\r\n\tbouncex.et.cart.init({\r\n\t\treplenishmentType: 'cookie',\r\n\t\treplenish: function (cart) {\r\n\t\t\tbouncex.utils.cookies.create({\r\n\t\t\t\tname: CART_COOKIE_KEY,\r\n\t\t\t\tvalue: cart.token\r\n\t\t\t});\r\n\t\t\treplenComplete();\r\n\t\t}\r\n\t});\r\n\r\n\r\n\tfunction replenComplete() {\r\n\t\twindow.location.href = CLEAN_URL + '?bx_replen=true';\r\n\t}\r\n\r\n\tbouncex.et.on(bouncex.document, 'ajaxComplete.wknd', trackAJAXCart);\r\n\r\n\temptyCart();\r\n}\r\n\r\n/* ------------------------------ USER TRACKING ----------------------------- */\r\n\r\nfunction initializeUserTracking() {\r\n\tif (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tvar userEmail;\r\n\r\n\tbouncex.et.onTrue(\r\n\t\tfunction () {\r\n\t\t\tuserEmail = jQuery('.nosto_customer .email').first().text().trim() && bouncex.utils.getNestedProp('ltkCustObj.email');\r\n\t\t\treturn bouncex.utils.validate.email(userEmail);\r\n\t\t},\r\n\t\tfunction () {\r\n\t\t\tbouncex.push([\r\n\t\t\t\t'user',\r\n\t\t\t\t{\r\n\t\t\t\t\t'email': userEmail,\r\n\t\t\t\t\t'source': 'LoggedIn'\r\n\t\t\t\t}\r\n\t\t\t]);\r\n\t\t\tbouncex.setVar('logged_in_identified', true);\r\n\t\t},\r\n\t\t5\r\n\t);\r\n}\r\n\r\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\r\nfunction initUpsellAtc() {\r\n\tvar eventName = 'click.upsellAtc';\r\n\r\n\tbouncex.et.onVisible('.cart__upsell-btn', function (e) {\r\n\t\tbouncex.off(e, eventName);\r\n\t\tbouncex.et.on(e, eventName, function () {\r\n\t\t\tvar itemId = e.attr('data-product-id');\r\n\t\t\tif (isValidItemId(itemId)) {\r\n\t\t\t\tfireAddToCart(itemId);\r\n\t\t\t}\r\n\t\t});\r\n\t});\r\n}\r\n\r\nfunction isValidDomain() {\r\n\treturn CLEAN_URL.indexOf('www.cubavera.com') > -1;\r\n}\r\n\r\nfunction isEn() {\r\n\treturn jQuery(\"html\").attr(\"lang\") === 'en';\r\n}\r\n\r\nfunction isValidForTracking() {\r\n\treturn isValidDomain() && isEn();\r\n}\r\n\r\nfunction init() {\r\n\tif (!isValidForTracking()) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tinitializeUserTracking();\r\n\tinitializeCartEvents();\r\n\tinitUpsellAtc();\r\n\r\n\tswitch (bouncex.website.pts) {\r\n\t\tcase 'category':\r\n\t\tcase 'search':\r\n\t\t\tinitializeCategoryEvents();\r\n\t\t\tbreak;\r\n\t\tcase 'product':\r\n\t\t\tinitializeItemEvents();\r\n\t\t\tinitializeSkuEvents();\r\n\t\t\tbreak;\r\n\t\tdefault:\r\n\t\t\tbreak;\r\n\t}\r\n}\r\n\r\ninit();\r\n","dge":true,"bxidLoadFirst":false,"pie":true,"cme":true,"gbi_enabled":0,"bpush":false,"pt":{"cart":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType', '') === 'collection';"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/checkouts/"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.location.pathname === '/'"}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType', '') === 'product';"}]]},"search":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType', '') === 'searchresults';"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search-results"}]]}},"els":{"blank_site_element":""},"vars":[{"name":"logged_in","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.utils.gtmLookup('user_properties.visitor_type', '') === 'logged_in';","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function() {\n if (bouncex.website.pts === 'checkout') {\n var count = 0;\n jQuery('#order-summary .product-thumbnail__quantity').each(function() {\n count += Number(jQuery(this).text()) || 0;\n });\n return count;\n }\n return Number(jQuery('.cart-link__bubble--visible').first().text().replace(/[^0-9.]/g, ''));\n})();","trigger":""},{"name":"cart_value","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function(){\n if (bouncex.website.pts === 'checkout') {\n return Number(bouncex.utils.gtmLookup('cart_total', '').replace(/[^0-9.]/g, ''));\n }\n return Number(jQuery('.drawer__footer .ajaxcart__price').text().replace(/[^0-9.]/g, ''));\n})();","trigger":""},{"name":"prod_price","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"","trigger":""},{"name":"prod_name","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"","trigger":""},{"name":"in_stock","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"","trigger":""},{"name":"submitted_onsite","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"window.location.pathname.indexOf('email-subscription-confirmation') > -1 && jQuery('#emailsignup-landing h2').text().toLowerCase().indexOf('gracias!') > -1 || null;","trigger":""},{"name":"page_url","polling":"none","persist":"no","page_types":["category","search"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"cart_token","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart_items","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"cookie_modal_present","polling":"all","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"page_type","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.website.pts;","trigger":"pageload"},{"name":"shop","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"window.location.href.indexOf('//shop.') > -1;","trigger":"pageload"},{"name":"prod_sku","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.selectedVariantId');","trigger":"pageload"},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"listrak_visible","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('#ltkpopup-container:visible').length > 0;","trigger":"pageload"},{"name":"modal_visible","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.mfp-wrap #size-chart').length > 0;","trigger":"pageload"},{"name":"item_id","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"(jQuery('.product-section-master:visible').data() || {}).sectionId;","trigger":"pageload"},{"name":"truevault_present","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.polaris-consent-widget:visible').length > 0;","trigger":"pageload"}],"dgu":"pixel.cdnwidget.com","dgp":false,"ba":{"enabled":0,"fbte":0},"biu":"assets.bounceexchange.com","bau":"api.bounceexchange.com","beu":"events.bouncex.net","ibx":{"tjs":"","cjs":"","miw":0,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"bxid":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":0,"spatm":1,"preinit_cjs":"","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"","eventSharing":false,"shqId":"","enabled":0},"pde":true,"fmc":["AW","AI","AG","AR","BS","BB","BZ","BM","BO","BQ","BR","CA","KY","CL","CO","CR","CU","CW","DM","DO","EC","SV","GF","GL","GD","GT","GP","HT","HN","JM","MQ","MX","MS","NI","PA","PY","PE","PR","PM","MF","BL","KN","LC","VC","SX","SR","TT","US","UM","UY","VE","VG","VI"],"fme":true,"fmx":"","sdk":{"android":{"enabled":false,"enabledVersions":[],"eventModifications":null},"ios":{"enabled":false,"enabledVersions":[],"eventModifications":null}},"onsite":{"enabled":1},"ads":{"enabled":0},"pubs":{"enabled":0},"websdk":{"enabled":0},"ga4_property_id":"260333628","ga4_measurement_id":"G-L4EPQ414MH","tag_state_domain":"api.bounceexchange.com"} ; bouncex.tag = 'tag3'; bouncex.$ = window.jQuery; bouncex.env = 'production'; bouncex.restrictedTlds = {"casl":{"ca":1},"gdpr":{"ad":1,"al":1,"at":1,"ax":1,"ba":1,"be":1,"bg":1,"by":1,"xn--90ais":1,"ch":1,"cy":1,"cz":1,"de":1,"dk":1,"ee":1,"es":1,"eu":1,"fi":1,"fo":1,"fr":1,"uk":1,"gb":1,"gg":1,"gi":1,"gr":1,"hr":1,"hu":1,"ie":1,"im":1,"is":1,"it":1,"je":1,"li":1,"lt":1,"lu":1,"lv":1,"mc":1,"md":1,"me":1,"mk":1,"xn--d1al":1,"mt":1,"nl":1,"no":1,"pl":1,"pt":1,"ro":1,"rs":1,"xn--90a3ac":1,"ru":1,"su":1,"xn--p1ai":1,"se":1,"si":1,"sj":1,"sk":1,"sm":1,"ua":1,"xn--j1amh":1,"va":1,"tr":1}}; bouncex.client = { supportsBrotli: 1 }; bouncex.assets = {"ads":"005ab6b05ecd8ae76686b26c919990d4","creativesBaseStyles":"a53944a2","gpsAuction":"bbb80866120d17013073bb6d284cbd6b","inbox":"75060a85c1a4aebcc6f779b9e84db722","onsite":"abbdf7a49be9b52b097917b7b527b262","sms":"e39203556bab2366e56296ce42e974a7","websdk":"3cdb3cd0b71927a211b8afdc85918cfd"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_6459738026535cda4232dc813c61447d.br.js'); runtime.setAttribute('async', 'async'); runtime.setAttribute('onload', 'bouncex.initializeTag()'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_756cfb1d158076d67943a971b41e5c68.br.js'); script.setAttribute('async', 'async'); document.body.appendChild(script); var deviceGraphScript = document.createElement('script'); deviceGraphScript.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/cjs_min_3a843477d8e318f67237a66d0a58c542.js'); deviceGraphScript.setAttribute('async', 'async'); var dgAttrs = [{"Key":"id","Value":"c.js"},{"Key":"async","Value":"true"},{"Key":"data-apikey","Value":"2^HIykD"},{"Key":"data-cb","Value":"bouncex.dg.initPostDeviceGraph"},{"Key":"data-bx","Value":"1"},{"Key":"data-gm","Value":"1"},{"Key":"data-fire","Value":"1"}]; if (dgAttrs) { for (var i = 0; i < dgAttrs.length; i++) { deviceGraphScript.setAttribute(dgAttrs[i].Key, dgAttrs[i].Value); } } document.body.appendChild(deviceGraphScript); bouncex.initializeTag = function() {}; }; document.body.appendChild(runtime); } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();