.elementor-kit-7{--e-global-color-primary:#7E0808;--e-global-color-secondary:#141204;--e-global-color-text:#ECEBE4;--e-global-color-accent:#89000D;--e-global-typography-primary-font-family:"Ubuntu";--e-global-typography-primary-font-size:35px;--e-global-typography-primary-font-weight:normal;--e-global-typography-primary-text-transform:none;--e-global-typography-secondary-font-family:"Ubuntu";--e-global-typography-secondary-font-size:35px;--e-global-typography-secondary-font-weight:300;--e-global-typography-secondary-text-transform:uppercase;--e-global-typography-secondary-text-decoration:none;--e-global-typography-text-font-family:"Ubuntu";--e-global-typography-text-font-size:30px;--e-global-typography-text-font-weight:300;--e-global-typography-text-text-transform:none;--e-global-typography-text-font-style:normal;--e-global-typography-text-text-decoration:none;--e-global-typography-accent-font-family:"Caveat";--e-global-typography-accent-font-size:35px;--e-global-typography-accent-font-weight:500;color:#474746;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 p{margin-block-end:30px;}.elementor-kit-7 a{font-family:"Ubuntu", Sans-serif;}.elementor-kit-7 h1{color:var( --e-global-color-secondary );font-family:"Ubuntu", Sans-serif;}.elementor-kit-7 h2{color:var( --e-global-color-primary );}.elementor-kit-7 h3{color:var( --e-global-color-primary );font-family:"Ubuntu", Sans-serif;}.elementor-kit-7 h4{color:var( --e-global-color-primary );}.elementor-kit-7 h5{font-family:"Ubuntu", Sans-serif;}.elementor-kit-7 h6{font-family:"Ubuntu", Sans-serif;}.elementor-kit-7 img{border-radius:9px 9px 9px 9px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1260px;}.e-con{--container-max-width:1260px;}.elementor-widget:not(:last-child){margin-block-end:28px;}.elementor-element{--widgets-spacing:28px 28px;--widgets-spacing-row:28px;--widgets-spacing-column:28px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<!DOCTYPE html><html><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><meta name="app-version" content="${COMMIT_HASH}"><meta name="robots" content="noindex"><meta name="hostedSubdomain" content="webflow.io"><link rel="manifest" type="application/manifest+json" href="/manifest.json"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="theme-color" content="#3490eb"><link rel="stylesheet" type="text/css" href="https://d3e54v103j8qbb.cloudfront.net/gen/css/webflow-designer.757075cabc6f1ab2d61d.css"><title>Webflow - Alco Möbel Karriere</title><link rel="icon" href="https://d3e54v103j8qbb.cloudfront.net/static/favicon_designer.88fce7c7f8.png"><script>//- attributes == {apiKey: "", source: "", hostUrl: "", authenticated: true/false}
var source = 'designer-preview';
var hostUrl = 'https://webflow.com';
var authenticated = Boolean();

var forceFalse = false;
// When ipstack is not loaded window.wf_continentCode is undefined and
// segment consent manager doesn't require consent. We assume consent for
// authenticated users
switch (source) {
  case 'dashboard':
    // If in iframe we don't want consent banner to pop up so we don't load ipstack,
    // but we also use parent window consent manager settings for analytics
    if (!authenticated) {
      initCallbacks();
      loadIpStack();
    }
    break;
  case 'designer-preview':
    // When loading preview.webflow.com/... we don't know if a user is
    // authenticated or not so we need to call this extra endpoint
    initCallbacks();
    isAuthenticated(function(authenticated) {
      if (!authenticated) {
        loadIpStack();
      } else {
        // Needed to resolve wf_isEU
        forceFalse = true;
      }
    });
    break;
  // Default: do nothing
  // Users in Designer are always authenticated so we don't need to detect
  // EU continent because we assume consent
}

function initCallbacks() {
  // ipstack docs: https://ipstack.com/documentation
  window.wf_onDetectContinent = function(ipstackResponseJson) {
    window.wf_continentCode = ipstackResponseJson.continent_code; 
    window.wf_userLocation = {
      country_code: ipstackResponseJson.country_code,
      city: ipstackResponseJson.city
    }
  };

  window.wf_isEU = function() {
    // In order to be GDPR-compliant, we want to treat users from unidentified continent
    // as if they were from EU and in result – show them cookie consent manager
    // instead of assuming the consent was given:
    var fallbackValue = true;
    
    if (forceFalse) {
      return false;
    }
    if (typeof window.wf_continentCode === 'string') {
      return window.wf_continentCode === 'EU';
    }
    if (typeof Promise === 'undefined') {
      return fallbackValue;
    }
    
    // There could be a race condition and wf_continentCode be undefined
    return new Promise(function(resolve) {
      var i = 0;
      var interval = setInterval(function() {
        // Resolve it if:
        // - ipstack has loaded and window.wf_continentCode is defined
        // - 5 seconds passed and wf_continentCode is still undefined
        // - forceFalse is true (used in preview sites when user is authenticated)
        if (forceFalse) {
          clearInterval(interval);
          return resolve(false);
        }
        if (i++ >= 50) {
          clearInterval(interval);
          return resolve(fallbackValue);
        }
        if (typeof window.wf_continentCode === 'string') {
          clearInterval(interval);
          return resolve(window.wf_continentCode === 'EU');
        }
      }, 100);
    });
  };
}

function loadIpStack() {
  var head = document.getElementsByTagName("head")[0];
  var ipstackScript = document.createElement("script");
  ipstackScript.src = "https://api.ipstack.com/check?access_key=53038fede8e664ed0b2e5274047e23a8&fields=continent_code,country_code,city&callback=wf_onDetectContinent";
  head.appendChild(ipstackScript);
}

function isAuthenticated(cb) {
  var xmlhttp = new XMLHttpRequest();
  xmlhttp.open("GET", hostUrl + '/api/user/readOnlyData');
  xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
  xmlhttp.withCredentials = true;
  xmlhttp.onload = function() {
    if (xmlhttp.status === 200) {
      cb(true);
    } else {
      cb(false);
    }
  };
  xmlhttp.send();
}</script><script type="text/javascript">!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on","addSourceMiddleware","addIntegrationMiddleware","setAnonymousId","addDestinationMiddleware"];analytics.factory=function(e){return function(){var t=Array.prototype.slice.call(arguments);t.unshift(e);analytics.push(t);return analytics}};for(var e=0;e<analytics.methods.length;e++){var key=analytics.methods[e];analytics[key]=analytics.factory(key)}analytics.load=function(key,e){var t=document.createElement("script");t.type="text/javascript";t.async=!0;t.src="https://analytics.webflow.com/analytics.js/v1/" + key + "/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n);analytics._loadOptions=e};analytics._writeKey="f28KeHZ0I4kQbVZw6U8fqkBHQ5PyOMs0";analytics._cdn="https://analytics.webflow.com";;analytics.SNIPPET_VERSION="4.15.3";
//- Purposefully doesn't include 'analytics.load(API_TOKEN)' here, as this is deferred to segment-consent-manager
analytics.page();
}}();</script><script type="text/javascript">Object.defineProperty(window, 'wfenvironment', {
  value: Object.freeze({
    APP_ENV: "production",
    designerCanvasCss: "https://d3e54v103j8qbb.cloudfront.net/gen/css/designer-canvas.5c09f0ec0418e9a61779.css",
    WEBFLOW_DEFAULT_HOST: "https://webflow.com",
  }),
  writable: false,
  enumerable: false
});
</script></head><body class="wf-control"><div id="preloader"><div class="loader-wrapper"><svg width="1080" height="674" viewBox="0 0 1080 674" fill="none" xmlns="http://www.w3.org/2000/svg" class="logo"><path fill-rule="evenodd" clip-rule="evenodd" d="M1080 0L735.386 673.684H411.695L555.916 394.481H549.445C430.464 548.934 252.942 650.61 -0.000366211 673.684V398.344C-0.000366211 398.344 161.813 388.787 256.938 288.776H-0.000366211V0.0053214H288.771V237.515L295.252 237.489L413.254 0.0053214H631.645V236.009L638.126 235.999L760.556 0H1080Z" fill="white"></path></svg><div class="overlay"></div><div class="shapes-overlay"></div><div class="bar"><div class="clipper"><div class="clipped-light"></div></div><div class="shapes-group"><svg width="100%" height="100%" viewBox="0 0 640 446" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;" class="cast-blur"><g id="Artboard1" transform="matrix(0.687089,0,0,0.75508,-695.831,558.042)"><rect x="1012.72" y="-739.051" width="931.263" height="590.584" style="fill:none;"></rect><g id="cast-blur" serif:id="cast blur" transform="matrix(2.34977e-16,-3.49193,2.58578,1.44076e-16,-1540.19,4648.89)"><path style="fill:rgb(0,100,255);" d="M1458.34,1040.74L1491.73,1202.75C1485.21,1195.23 1467.63,1184.21 1458.34,1183.32C1451.92,1183.48 1434.02,1192.4 1425.08,1203.15L1458.34,1040.74Z"></path></g></g></svg><svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 640 446" xmlns="http://www.w3.org/2000/svg" class="shadow"><g transform="matrix(.687089 0 0 .75508 -695.831 558.042)"><path d="m1012.72-739.051h931.263v590.584h-931.263" fill="none"></path><path d="m1269.48 1088.74 182.69 221.74h-365.39" transform="matrix(0 -1.32436 1.45542 0 -53.1962 1237.49)"></path></g></svg><svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 640 446" xmlns="http://www.w3.org/2000/svg" class="bar-glow"><g transform="matrix(.687089 0 0 .75508 -695.831 558.042)"><path d="m1012.72-739.051h931.263v590.584h-931.263" fill="none"></path><path d="m1458.34 1040.74c16.09 52.59 24.86 105.12 22.72 157.58h-45.43c-.5-54.12 6.76-106.71 22.71-157.58" fill="#000eff" transform="matrix(0 -.202703 1.77038 0 -593.442 -148.149)"></path></g></svg><svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 640 446" xmlns="http://www.w3.org/2000/svg" class="mid-glow"><g transform="matrix(.687089 0 0 .75508 -695.831 558.042)"><path d="m1012.72-739.051h931.263v590.584h-931.263" fill="none"></path><path d="m1269.48 1088.74 182.69 221.74h-365.39" transform="matrix(0 -1.32436 1.45542 0 -53.1962 1237.49)"></path></g></svg><svg width="100%" height="100%" viewBox="0 0 640 446" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;" class="top-glow-3"><g id="Artboard1" transform="matrix(0.687089,0,0,0.75508,-695.831,558.042)"><rect x="1012.72" y="-739.051" width="931.263" height="590.584" style="fill:none;"></rect><g id="top-glow-2" serif:id="top glow 2" transform="matrix(1.36402e-17,-0.202703,1.45542,8.10939e-17,-216.009,-148.149)"><path style="fill:url(#_Linear1);" d="M1458.34,1040.74C1474.43,1093.33 1483.2,1145.86 1481.06,1198.32L1435.63,1198.32C1435.13,1144.2 1442.39,1091.61 1458.34,1040.74Z"></path></g></g><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.12804e-14,151.347,-184.223,9.26731e-15,1460.62,1046.97)"><stop offset="0" style="stop-color:rgb(49,144,255);stop-opacity:0"></stop><stop offset="1" style="stop-color:rgb(0,255,255);stop-opacity:1"></stop></linearGradient></defs></svg><svg width="100%" height="100%" viewBox="0 0 640 446" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;" class="top-glow-2"><g id="Artboard1" transform="matrix(0.687089,0,0,0.75508,-695.831,558.042)"><rect x="1012.72" y="-739.051" width="931.263" height="590.584" style="fill:none;"></rect><g id="top-glow-2" serif:id="top glow 2" transform="matrix(1.36402e-17,-0.202703,1.45542,8.10939e-17,-216.009,-148.149)"><path style="fill:url(#_Linear1);" d="M1458.34,1040.74C1474.43,1093.33 1483.2,1145.86 1481.06,1198.32L1435.63,1198.32C1435.13,1144.2 1442.39,1091.61 1458.34,1040.74Z"></path></g></g><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.12804e-14,151.347,-184.223,9.26731e-15,1460.62,1046.97)"><stop offset="0" style="stop-color:rgb(49,144,255);stop-opacity:0"></stop><stop offset="1" style="stop-color:rgb(0,255,255);stop-opacity:1"></stop></linearGradient></defs></svg><svg width="100%" height="100%" viewBox="0 0 640 446" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;" class="top-glow-1"><g id="Artboard1" transform="matrix(0.687089,0,0,0.75508,-695.831,558.042)"><rect x="1012.72" y="-739.051" width="931.263" height="590.584" style="fill:none;"></rect><g id="top-glow-1" serif:id="top glow 1" transform="matrix(1.36402e-17,-0.202703,2.69976,1.50427e-16,-1707.14,-148.149)"><path style="fill:url(#_Linear1);" d="M1458.34,1040.74C1474.43,1093.33 1483.2,1145.86 1481.06,1198.32L1435.63,1198.32C1435.13,1144.2 1442.39,1091.61 1458.34,1040.74Z"></path></g></g><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.12804e-14,151.347,-184.223,9.26731e-15,1460.62,1046.97)"><stop offset="0" style="stop-color:rgb(49,144,255);stop-opacity:0"></stop><stop offset="1" style="stop-color:rgb(0,255,255);stop-opacity:1"></stop></linearGradient></defs></svg></div></div></div></div><script type="text/javascript">window.performance && typeof performance.mark === 'function' &&
  performance.mark('start js:execute-preloader');
</script><script type="text/javascript">var Preloader=function(doc,s,PRELOADER){var wrapperDiv=doc[s](PRELOADER);function update(phase){const shapesGroup=wrapperDiv.getElementsByClassName("shapes-group")[0];if(!shapesGroup)return;const clippedLight=wrapperDiv.getElementsByClassName("clipped-light")[0];if(!clippedLight)return;shapesGroup.classList.add(`shapes-phase-${phase}`);clippedLight.classList.add(`clipped-light-${phase}`)}function destroy(){if(wrapperDiv){const transitionTime=600;wrapperDiv.style.transition=`opacity ${transitionTime}ms ease-out`;wrapperDiv.style.opacity="0";setTimeout((function(){const div=wrapperDiv;div.classList.add("hidden");setTimeout((function(){if(div.parentNode){div.parentNode.removeChild(div)}wrapperDiv=null}),transitionTime*5)}),transitionTime)}}return{update:update,destroy:destroy}}(document,"getElementById","preloader");</script><script type="text/javascript">window.performance && typeof performance.mark === 'function' &&
  performance.mark('end js:execute-preloader');
</script><div id="workspace" style="height: 100%"></div><div id="debug-overlay"></div><iframe id="responsive-images-iframe" src="/site/empty.html"></iframe><div id="designer-app-react-mount"></div><div id="preload-assets"></div><div id="drag-ghost"></div><div id="wf-eyedropper-button"></div><script type="text/javascript">window.isMainTabHidden = Boolean(window.document && window.document.hidden);
</script><script type="text/javascript">if (typeof Preloader !== 'undefined') Preloader.update(1);
</script><script type="text/javascript">window.performance && typeof performance.mark === 'function' &&
  performance.mark('start js:execute-app');
</script><script type="text/plain" id="wf-initial-data">{&quot;experimentAssignments&quot;:[],&quot;featureConfig&quot;:{&quot;config&quot;:{&quot;clientSdkKey&quot;:&quot;client-nJfFsZScKezfQDA01wjoxovvPhAK4FTSLslypZ2pHYL&quot;,&quot;tier&quot;:&quot;production&quot;},&quot;identity&quot;:{&quot;userID&quot;:&quot;unauthenticated-users&quot;,&quot;userAgent&quot;:&quot;Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0&quot;,&quot;ip&quot;:&quot;80.243.41.180&quot;,&quot;custom&quot;:{&quot;app&quot;:&quot;preview&quot;,&quot;path&quot;:&quot;/&quot;,&quot;pathWithParams&quot;:&quot;/&quot;,&quot;siteCreated&quot;:&quot;1721983380283&quot;,&quot;siteShortName&quot;:&quot;alco-mobel-karriere&quot;,&quot;templateOf&quot;:&quot;5fadd9200c75fd59653e9e75&quot;,&quot;userVerified&quot;:&quot;false&quot;,&quot;isOveragesEnabled&quot;:&quot;false&quot;,&quot;ruleCacheUpdated&quot;:&quot;Wed Apr 09 2025 12:28:46 GMT+0000 (Coordinated Universal Time)&quot;,&quot;hydrationDataCreated&quot;:&quot;Wed Apr 09 2025 13:09:38 GMT+0000 (Coordinated Universal Time)&quot;},&quot;customIDs&quot;:{&quot;stableID&quot;:&quot;651ef21e-aa8a-4685-9723-6c36095f97f2&quot;,&quot;anonymousId&quot;:&quot;651ef21e-aa8a-4685-9723-6c36095f97f2&quot;,&quot;siteId&quot;:&quot;66a36194f472d5a508cb4bd9&quot;,&quot;workspaceId&quot;:&quot;66a3546caa4a992b8be25c2c&quot;},&quot;privateAttributes&quot;:{},&quot;statsigEnvironment&quot;:{&quot;tier&quot;:&quot;production&quot;}},&quot;values&quot;:{&quot;feature_gates&quot;:{&quot;21336891&quot;:{&quot;name&quot;:&quot;21336891&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4XwqI1y8iet2NIcDO2TzoN:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;23146391&quot;:{&quot;name&quot;:&quot;23146391&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6SNArMCfFxkOG4PypDBWFL:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;32656869&quot;:{&quot;name&quot;:&quot;32656869&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1GryNzwYQsYgFaV7vF7Fhn:0.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;58643902&quot;:{&quot;name&quot;:&quot;58643902&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;hkOn466sUI0yGQjyRd8iJ:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;58644495&quot;:{&quot;name&quot;:&quot;58644495&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;67361265&quot;:{&quot;name&quot;:&quot;67361265&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;78901965&quot;:{&quot;name&quot;:&quot;78901965&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;48RuCGokajj05IjM83clg6&quot;,&quot;secondary_exposures&quot;:[]},&quot;80315670&quot;:{&quot;name&quot;:&quot;80315670&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;85110914&quot;:{&quot;name&quot;:&quot;85110914&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;7uVBrY8Wwqsxs5mwuMID4s:100.00:5&quot;,&quot;secondary_exposures&quot;:[]},&quot;92678417&quot;:{&quot;name&quot;:&quot;92678417&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2uyelcweXZtWXIQZ86cu2N&quot;,&quot;secondary_exposures&quot;:[]},&quot;105340574&quot;:{&quot;name&quot;:&quot;105340574&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3HvbKC4VIYLRtFPnKj0ZIm:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;130043074&quot;:{&quot;name&quot;:&quot;130043074&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6DrHnMVtw8sNwJ5LUmKPLX&quot;,&quot;secondary_exposures&quot;:[]},&quot;143629253&quot;:{&quot;name&quot;:&quot;143629253&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4pcB3CevzQyxYvZBIZgrCR:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;173185438&quot;:{&quot;name&quot;:&quot;173185438&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6wX54XB2rmBVf5MXh3pYIY&quot;,&quot;secondary_exposures&quot;:[]},&quot;183596474&quot;:{&quot;name&quot;:&quot;183596474&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;187681422&quot;:{&quot;name&quot;:&quot;187681422&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5WhMZIHDvnqPIXXTKf9UGy&quot;,&quot;secondary_exposures&quot;:[]},&quot;214950889&quot;:{&quot;name&quot;:&quot;214950889&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;4uiiUCw7JbnKVKEUq94RhK&quot;,&quot;secondary_exposures&quot;:[]},&quot;216777687&quot;:{&quot;name&quot;:&quot;216777687&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;22rNf2z4W1RMsdJMLYN6Ep&quot;,&quot;secondary_exposures&quot;:[]},&quot;224017973&quot;:{&quot;name&quot;:&quot;224017973&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;65VOq410JSL4CNXSvNh2qz:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;274817750&quot;:{&quot;name&quot;:&quot;274817750&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6GHWDAQLh7W4BFZlIpV4H8&quot;,&quot;secondary_exposures&quot;:[]},&quot;278063376&quot;:{&quot;name&quot;:&quot;278063376&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5xBUpOKTCCfy5ks1DMAyii&quot;,&quot;secondary_exposures&quot;:[]},&quot;281310832&quot;:{&quot;name&quot;:&quot;281310832&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;347694146&quot;:{&quot;name&quot;:&quot;347694146&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6yBMEwOrYk0S8hWJ4BwrRT:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;361817985&quot;:{&quot;name&quot;:&quot;361817985&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;368691143&quot;:{&quot;name&quot;:&quot;368691143&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;370767413&quot;:{&quot;name&quot;:&quot;370767413&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6ah0MZLgEPWxNjPKzxaJXI&quot;,&quot;secondary_exposures&quot;:[]},&quot;373409229&quot;:{&quot;name&quot;:&quot;373409229&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;379754554&quot;:{&quot;name&quot;:&quot;379754554&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;21AUbbLP55YUfUzXBDt38Z:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;381320489&quot;:{&quot;name&quot;:&quot;381320489&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;392549701&quot;:{&quot;name&quot;:&quot;392549701&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;397188075&quot;:{&quot;name&quot;:&quot;397188075&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;7x4gVpp1YLhyvPMaX3qNKY&quot;,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;1662541974&quot;,&quot;gateValue&quot;:&quot;false&quot;,&quot;ruleID&quot;:&quot;default&quot;}]},&quot;420508899&quot;:{&quot;name&quot;:&quot;420508899&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;466598482&quot;:{&quot;name&quot;:&quot;466598482&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2PaoTp0720L6EjWJBFhBaE&quot;,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;3615398992&quot;,&quot;gateValue&quot;:&quot;true&quot;,&quot;ruleID&quot;:&quot;5bgc9rHvAukK5ZTtBWyAS:100.00:3&quot;}]},&quot;486481147&quot;:{&quot;name&quot;:&quot;486481147&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;490989642&quot;:{&quot;name&quot;:&quot;490989642&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;492007898&quot;:{&quot;name&quot;:&quot;492007898&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;38zxe5byFnGWh3WfAeIZ0b&quot;,&quot;secondary_exposures&quot;:[]},&quot;525484074&quot;:{&quot;name&quot;:&quot;525484074&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;527890114&quot;:{&quot;name&quot;:&quot;527890114&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;9c3i50g8YSgg9LIr3P2xJ&quot;,&quot;secondary_exposures&quot;:[]},&quot;533663812&quot;:{&quot;name&quot;:&quot;533663812&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1rx2lC4tGc8nJnrg3KsKis&quot;,&quot;secondary_exposures&quot;:[]},&quot;561368588&quot;:{&quot;name&quot;:&quot;561368588&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;156ZtLLLCVy1yt3MnObCtF&quot;,&quot;secondary_exposures&quot;:[]},&quot;575494819&quot;:{&quot;name&quot;:&quot;575494819&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;7v9EH9wTp0IpDpUAReMeOC:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;575890794&quot;:{&quot;name&quot;:&quot;575890794&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;1OuQ7pMkwkBAEsKa5CwPh5&quot;,&quot;secondary_exposures&quot;:[]},&quot;579933697&quot;:{&quot;name&quot;:&quot;579933697&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;1ITE4PJD4UpWDXZr4xHKDW&quot;,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;3615398992&quot;,&quot;gateValue&quot;:&quot;true&quot;,&quot;ruleID&quot;:&quot;5bgc9rHvAukK5ZTtBWyAS:100.00:3&quot;}]},&quot;607322028&quot;:{&quot;name&quot;:&quot;607322028&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;01mLI2iXylyDgNDSJZmlgh&quot;,&quot;secondary_exposures&quot;:[]},&quot;633659184&quot;:{&quot;name&quot;:&quot;633659184&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;637059582&quot;:{&quot;name&quot;:&quot;637059582&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;26joHEbguxmgBA1jHelyMO&quot;,&quot;secondary_exposures&quot;:[]},&quot;642893197&quot;:{&quot;name&quot;:&quot;642893197&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;652933121&quot;:{&quot;name&quot;:&quot;652933121&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2EiAzL4Yys02KxoUlLxshZ&quot;,&quot;secondary_exposures&quot;:[]},&quot;659371440&quot;:{&quot;name&quot;:&quot;659371440&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2ndYVfvGizPjJ7TzBzcv8a&quot;,&quot;secondary_exposures&quot;:[]},&quot;672763133&quot;:{&quot;name&quot;:&quot;672763133&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1qCrGeAtLErUFBBWkMPDcC&quot;,&quot;secondary_exposures&quot;:[]},&quot;677045167&quot;:{&quot;name&quot;:&quot;677045167&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6XSGGtj4HmnksUh3z9Yzvo:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;682290353&quot;:{&quot;name&quot;:&quot;682290353&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;4R0vLHUjp7uThAgXy0UqEy&quot;,&quot;secondary_exposures&quot;:[]},&quot;699655920&quot;:{&quot;name&quot;:&quot;699655920&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;54pKN0WUblz4HR0gs4qCel&quot;,&quot;secondary_exposures&quot;:[]},&quot;699780214&quot;:{&quot;name&quot;:&quot;699780214&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4Jhyr6CJgAN0xW9SWKIpSk:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;700798523&quot;:{&quot;name&quot;:&quot;700798523&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4B4dX5NIDz1ZbzVxjWNeC8&quot;,&quot;secondary_exposures&quot;:[]},&quot;721027892&quot;:{&quot;name&quot;:&quot;721027892&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2IdQAsb3SSJGLT2pkTeSW0:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;735446394&quot;:{&quot;name&quot;:&quot;735446394&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;741077080&quot;:{&quot;name&quot;:&quot;741077080&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;789968278&quot;:{&quot;name&quot;:&quot;789968278&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;12KBV7ZGIPESGYEd9f1J6j&quot;,&quot;secondary_exposures&quot;:[]},&quot;790106369&quot;:{&quot;name&quot;:&quot;790106369&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;1tAgyiw7xysVj3idDeuzJM&quot;,&quot;secondary_exposures&quot;:[]},&quot;792309681&quot;:{&quot;name&quot;:&quot;792309681&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;7paL5oTr3GqYyyQ6oIF7eh:100.00:7&quot;,&quot;secondary_exposures&quot;:[]},&quot;807953839&quot;:{&quot;name&quot;:&quot;807953839&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3MClV6ERIlJKSDEUmOR7AS:100.00:6&quot;,&quot;secondary_exposures&quot;:[]},&quot;808410796&quot;:{&quot;name&quot;:&quot;808410796&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1iCKZcm2GMgSULga9B5fvh&quot;,&quot;secondary_exposures&quot;:[]},&quot;814340148&quot;:{&quot;name&quot;:&quot;814340148&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;843549521&quot;:{&quot;name&quot;:&quot;843549521&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;871930497&quot;:{&quot;name&quot;:&quot;871930497&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;nFP7RdICMb0cVi7RlT6hE&quot;,&quot;secondary_exposures&quot;:[]},&quot;891226326&quot;:{&quot;name&quot;:&quot;891226326&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;907248223&quot;:{&quot;name&quot;:&quot;907248223&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4ZpcsbLShNB91ebPxczTsP:100.00:5&quot;,&quot;secondary_exposures&quot;:[]},&quot;915869300&quot;:{&quot;name&quot;:&quot;915869300&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;eiobECKNtfwlqhgncU3Fs:100.00:8&quot;,&quot;secondary_exposures&quot;:[]},&quot;917779246&quot;:{&quot;name&quot;:&quot;917779246&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;7uvxFS3A2uDYuLfKw95rtl&quot;,&quot;secondary_exposures&quot;:[]},&quot;1004117952&quot;:{&quot;name&quot;:&quot;1004117952&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6DFfCORYbeF9Rf173AWjpB&quot;,&quot;secondary_exposures&quot;:[]},&quot;1049811722&quot;:{&quot;name&quot;:&quot;1049811722&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1120744071&quot;:{&quot;name&quot;:&quot;1120744071&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6WAJfHrHjoBt7qpNovfR2m:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;1131151533&quot;:{&quot;name&quot;:&quot;1131151533&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1157563538&quot;:{&quot;name&quot;:&quot;1157563538&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1TcYpRIxp2OXdHAT5m4V3v&quot;,&quot;secondary_exposures&quot;:[]},&quot;1171384976&quot;:{&quot;name&quot;:&quot;1171384976&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4GxqeVlMf5pohFY54f6pbF:100.00:7&quot;,&quot;secondary_exposures&quot;:[]},&quot;1197475705&quot;:{&quot;name&quot;:&quot;1197475705&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1229056119&quot;:{&quot;name&quot;:&quot;1229056119&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1234765101&quot;:{&quot;name&quot;:&quot;1234765101&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;1uGqcnA8i9tlWCnnpAa17X:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;1236803103&quot;:{&quot;name&quot;:&quot;1236803103&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;Sn9PmHzqK5EWutYoUW7WM&quot;,&quot;secondary_exposures&quot;:[]},&quot;1250328847&quot;:{&quot;name&quot;:&quot;1250328847&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4yYXdGbZjnBA3YRVIDdpTV:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;1292405251&quot;:{&quot;name&quot;:&quot;1292405251&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6y92tFtERCGAOPANEFtCs6&quot;,&quot;secondary_exposures&quot;:[]},&quot;1306352991&quot;:{&quot;name&quot;:&quot;1306352991&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6SrBv1aewMIwxN4hNyC3bi&quot;,&quot;secondary_exposures&quot;:[]},&quot;1312703771&quot;:{&quot;name&quot;:&quot;1312703771&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;7cWnWnsTvoPaogQCbzhZZP&quot;,&quot;secondary_exposures&quot;:[]},&quot;1322655470&quot;:{&quot;name&quot;:&quot;1322655470&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;33a1CT6pcQxQNJcK6V9hr2&quot;,&quot;secondary_exposures&quot;:[]},&quot;1336067073&quot;:{&quot;name&quot;:&quot;1336067073&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2fAtq6siUQJKXEYjpkbIDr:100.00:16&quot;,&quot;secondary_exposures&quot;:[]},&quot;1350250754&quot;:{&quot;name&quot;:&quot;1350250754&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1380813821&quot;:{&quot;name&quot;:&quot;1380813821&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;49bVqqEPCEx9gvgqlfF8xr&quot;,&quot;secondary_exposures&quot;:[]},&quot;1380896143&quot;:{&quot;name&quot;:&quot;1380896143&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1386092744&quot;:{&quot;name&quot;:&quot;1386092744&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1406455659&quot;:{&quot;name&quot;:&quot;1406455659&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5rlegi2iZRyCRkOPlUlKQU:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;1418395020&quot;:{&quot;name&quot;:&quot;1418395020&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6qQhRaDxbTEJjpU4n58483:0.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;1433303746&quot;:{&quot;name&quot;:&quot;1433303746&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1437392009&quot;:{&quot;name&quot;:&quot;1437392009&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2DentSOxFV1U1jEnpKv48&quot;,&quot;secondary_exposures&quot;:[]},&quot;1455163268&quot;:{&quot;name&quot;:&quot;1455163268&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2kVFgR7xQVy9BkZOFIxc05&quot;,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;2685146257&quot;,&quot;gateValue&quot;:&quot;true&quot;,&quot;ruleID&quot;:&quot;5P9QlfTudFTaLyVQ9CLaHk:100.00:3&quot;}]},&quot;1455742168&quot;:{&quot;name&quot;:&quot;1455742168&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6Fkpty0I0HfLt5ffZ3yclJ&quot;,&quot;secondary_exposures&quot;:[]},&quot;1457420719&quot;:{&quot;name&quot;:&quot;1457420719&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1458975701&quot;:{&quot;name&quot;:&quot;1458975701&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;569VGXh60GyZrID2jR81Q9:100.00:12&quot;,&quot;secondary_exposures&quot;:[]},&quot;1475952185&quot;:{&quot;name&quot;:&quot;1475952185&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2RhMP5gVNCVy1QXuDxvKxb&quot;,&quot;secondary_exposures&quot;:[]},&quot;1483622682&quot;:{&quot;name&quot;:&quot;1483622682&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;7hCYczDK1VfZ0L7KQBm40c&quot;,&quot;secondary_exposures&quot;:[]},&quot;1499868407&quot;:{&quot;name&quot;:&quot;1499868407&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1501922903&quot;:{&quot;name&quot;:&quot;1501922903&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5RvIFSPqVidVKcu6J4M7SS:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;1509255256&quot;:{&quot;name&quot;:&quot;1509255256&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1JCGxZLk9h9ztlR1Dxejke&quot;,&quot;secondary_exposures&quot;:[]},&quot;1545754914&quot;:{&quot;name&quot;:&quot;1545754914&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1557989767&quot;:{&quot;name&quot;:&quot;1557989767&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3jeAADU5YqetI0qcaF7Bx5:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;1568482678&quot;:{&quot;name&quot;:&quot;1568482678&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;47ghK65eraI0eFp7ZfT3sq:100.00:5&quot;,&quot;secondary_exposures&quot;:[]},&quot;1571190444&quot;:{&quot;name&quot;:&quot;1571190444&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;3FZfKVICKmYoIrqR5lRYje&quot;,&quot;secondary_exposures&quot;:[]},&quot;1575119218&quot;:{&quot;name&quot;:&quot;1575119218&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;79p4FvICjzg6PwrZYeGfR1&quot;,&quot;secondary_exposures&quot;:[]},&quot;1662541974&quot;:{&quot;name&quot;:&quot;1662541974&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1665126082&quot;:{&quot;name&quot;:&quot;1665126082&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1U8GcaH799WWPvfleBj0Jd:0.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;1680201874&quot;:{&quot;name&quot;:&quot;1680201874&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1680586027&quot;:{&quot;name&quot;:&quot;1680586027&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5LyBdDrZdtUcvTdQ2zBaJI:0.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;1701648875&quot;:{&quot;name&quot;:&quot;1701648875&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1752293186&quot;:{&quot;name&quot;:&quot;1752293186&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6NnOPKsNMv21BOR1BRb71A&quot;,&quot;secondary_exposures&quot;:[]},&quot;1753134293&quot;:{&quot;name&quot;:&quot;1753134293&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1803820771&quot;:{&quot;name&quot;:&quot;1803820771&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5qdZydsFgtCYvsVbCi4eL7&quot;,&quot;secondary_exposures&quot;:[]},&quot;1856326096&quot;:{&quot;name&quot;:&quot;1856326096&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;V6E2GHitGNACRzpOrAxb2&quot;,&quot;secondary_exposures&quot;:[]},&quot;1857805694&quot;:{&quot;name&quot;:&quot;1857805694&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1928608458&quot;:{&quot;name&quot;:&quot;1928608458&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;1931880952&quot;:{&quot;name&quot;:&quot;1931880952&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1apRz2Zf9ITKmntYLbs894&quot;,&quot;secondary_exposures&quot;:[]},&quot;1944913766&quot;:{&quot;name&quot;:&quot;1944913766&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;1951876014&quot;:{&quot;name&quot;:&quot;1951876014&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1SSHy1dzyxFJdSRPr4lBna&quot;,&quot;secondary_exposures&quot;:[]},&quot;1968719184&quot;:{&quot;name&quot;:&quot;1968719184&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2Hbb76pHOUExfFtF1VQWF9:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;2031799369&quot;:{&quot;name&quot;:&quot;2031799369&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;53fF1cbeHgvzmb04i7IHm2:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2084850560&quot;:{&quot;name&quot;:&quot;2084850560&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;s2ATEUdygbs6WDNtNnFmO:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;2085494476&quot;:{&quot;name&quot;:&quot;2085494476&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;MBAzjFMud89mVA6SRqDyQ:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;2091902242&quot;:{&quot;name&quot;:&quot;2091902242&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6maJdrkIkMO9tixmJTk0G0:0.00:7&quot;,&quot;secondary_exposures&quot;:[]},&quot;2161096664&quot;:{&quot;name&quot;:&quot;2161096664&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;MYNxzsJWY5RTmXzZoccWy:50.00:7&quot;,&quot;secondary_exposures&quot;:[]},&quot;2182233325&quot;:{&quot;name&quot;:&quot;2182233325&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2184630439&quot;:{&quot;name&quot;:&quot;2184630439&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2187198051&quot;:{&quot;name&quot;:&quot;2187198051&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6y4fZyzjj34zcQUyKnnEWs:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2193997669&quot;:{&quot;name&quot;:&quot;2193997669&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2198334698&quot;:{&quot;name&quot;:&quot;2198334698&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2224902271&quot;:{&quot;name&quot;:&quot;2224902271&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;7v6Oj64zC3txSdNM8WyqJ5&quot;,&quot;secondary_exposures&quot;:[]},&quot;2274255187&quot;:{&quot;name&quot;:&quot;2274255187&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5113o5aQqRiMenHax2q9Gn&quot;,&quot;secondary_exposures&quot;:[]},&quot;2276264697&quot;:{&quot;name&quot;:&quot;2276264697&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;72SdP19YimpM8Mc5Ecw8ep&quot;,&quot;secondary_exposures&quot;:[]},&quot;2332153945&quot;:{&quot;name&quot;:&quot;2332153945&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2ttbTN7Dyd38G7zkfsd3gO&quot;,&quot;secondary_exposures&quot;:[]},&quot;2340184165&quot;:{&quot;name&quot;:&quot;2340184165&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2354820654&quot;:{&quot;name&quot;:&quot;2354820654&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3ieVn0gTdtKamPeRfwaACI:100.00:8&quot;,&quot;secondary_exposures&quot;:[]},&quot;2361218180&quot;:{&quot;name&quot;:&quot;2361218180&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2378130748&quot;:{&quot;name&quot;:&quot;2378130748&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5HFaf4333N93LZZQsflkgz&quot;,&quot;secondary_exposures&quot;:[]},&quot;2403993584&quot;:{&quot;name&quot;:&quot;2403993584&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2458909760&quot;:{&quot;name&quot;:&quot;2458909760&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2465149363&quot;:{&quot;name&quot;:&quot;2465149363&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2487845889&quot;:{&quot;name&quot;:&quot;2487845889&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2491585091&quot;:{&quot;name&quot;:&quot;2491585091&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2494249199&quot;:{&quot;name&quot;:&quot;2494249199&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2519229707&quot;:{&quot;name&quot;:&quot;2519229707&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2526987152&quot;:{&quot;name&quot;:&quot;2526987152&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2529408901&quot;:{&quot;name&quot;:&quot;2529408901&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2FVrP3zpJxPGJ4lpzATOAz:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;2536248640&quot;:{&quot;name&quot;:&quot;2536248640&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;1zmuVc8J74B60nlDBJ8IWS:100.00:6&quot;,&quot;secondary_exposures&quot;:[]},&quot;2543965310&quot;:{&quot;name&quot;:&quot;2543965310&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;lxHSZy72yhnXbyQEwPKxa&quot;,&quot;secondary_exposures&quot;:[]},&quot;2550320370&quot;:{&quot;name&quot;:&quot;2550320370&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;72G1Fy8i0ruKbdhdWPRBZP:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;2571858959&quot;:{&quot;name&quot;:&quot;2571858959&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2BzzzCsPTN6kZFSQChdTi5&quot;,&quot;secondary_exposures&quot;:[]},&quot;2605123638&quot;:{&quot;name&quot;:&quot;2605123638&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3AOavQFFZQPhBgYu4UUpkZ:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;2608516337&quot;:{&quot;name&quot;:&quot;2608516337&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2yciR763sFPOKevyKfefiH:100.00:5&quot;,&quot;secondary_exposures&quot;:[]},&quot;2636510003&quot;:{&quot;name&quot;:&quot;2636510003&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;7DiereHJW3aKChKjkU73yF&quot;,&quot;secondary_exposures&quot;:[]},&quot;2663519398&quot;:{&quot;name&quot;:&quot;2663519398&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3XGyJJW8YQ2sZhp9DysyGf:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2685146257&quot;:{&quot;name&quot;:&quot;2685146257&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5P9QlfTudFTaLyVQ9CLaHk:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;2709133931&quot;:{&quot;name&quot;:&quot;2709133931&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;bRuykRyO1cxa9HVVkd7nT&quot;,&quot;secondary_exposures&quot;:[]},&quot;2714120603&quot;:{&quot;name&quot;:&quot;2714120603&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6VjZF3B6S2pogRcYSCvTFr:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2715927287&quot;:{&quot;name&quot;:&quot;2715927287&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3tXvySrc5O9CWt3vcijiMW:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2718510159&quot;:{&quot;name&quot;:&quot;2718510159&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2753418190&quot;:{&quot;name&quot;:&quot;2753418190&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;xZT7YcZSEH2GovDssiVFu:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;2759911512&quot;:{&quot;name&quot;:&quot;2759911512&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;H5QQfy17ZNmsA0yv60ujx:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2776696732&quot;:{&quot;name&quot;:&quot;2776696732&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2781896974&quot;:{&quot;name&quot;:&quot;2781896974&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2793810821&quot;:{&quot;name&quot;:&quot;2793810821&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;10KgQnD1OPAVXvJBqV7yWQ:5.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;2825044701&quot;:{&quot;name&quot;:&quot;2825044701&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;2860045578&quot;:{&quot;name&quot;:&quot;2860045578&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;7LsLYGp7Jn6Km8hHgwAYZC:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;2867851366&quot;:{&quot;name&quot;:&quot;2867851366&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;2886076224&quot;:{&quot;name&quot;:&quot;2886076224&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;2886816758&quot;:{&quot;name&quot;:&quot;2886816758&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2902992011&quot;:{&quot;name&quot;:&quot;2902992011&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;2907110567&quot;:{&quot;name&quot;:&quot;2907110567&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3NB8tHOutIEq36ohdRkDfi:100.00:5&quot;,&quot;secondary_exposures&quot;:[]},&quot;2971373544&quot;:{&quot;name&quot;:&quot;2971373544&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5mWXkJfW5T7BIOzAPxp4Wn&quot;,&quot;secondary_exposures&quot;:[]},&quot;2974679073&quot;:{&quot;name&quot;:&quot;2974679073&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2RIdGkmf41mJnytXCLsKjP&quot;,&quot;secondary_exposures&quot;:[]},&quot;2978864049&quot;:{&quot;name&quot;:&quot;2978864049&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6aWA9ZaF7ZgPePjBFJwljv:0.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;3015624811&quot;:{&quot;name&quot;:&quot;3015624811&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6ntC9ZGOhzGRBuPF1NT28F&quot;,&quot;secondary_exposures&quot;:[]},&quot;3017737205&quot;:{&quot;name&quot;:&quot;3017737205&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3BdVaVl8zT6Y8DmUDZR5Vc:100.00:21&quot;,&quot;secondary_exposures&quot;:[]},&quot;3049370236&quot;:{&quot;name&quot;:&quot;3049370236&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2Sh3MDPwgLU8auX8ukFjtA&quot;,&quot;secondary_exposures&quot;:[]},&quot;3063401492&quot;:{&quot;name&quot;:&quot;3063401492&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5Tmxa8n1SXvH4tav5gUZcv&quot;,&quot;secondary_exposures&quot;:[]},&quot;3081421921&quot;:{&quot;name&quot;:&quot;3081421921&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3KB4fj7rA3jMr26J5idkP8&quot;,&quot;secondary_exposures&quot;:[]},&quot;3091005856&quot;:{&quot;name&quot;:&quot;3091005856&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3092681112&quot;:{&quot;name&quot;:&quot;3092681112&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5Fk7i8PWiAtfn3riTr8sG3:100.00:5&quot;,&quot;secondary_exposures&quot;:[]},&quot;3096464966&quot;:{&quot;name&quot;:&quot;3096464966&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3112831239&quot;:{&quot;name&quot;:&quot;3112831239&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2rDV8rhmoEqCURIn6BT8Gh:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;3117615019&quot;:{&quot;name&quot;:&quot;3117615019&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;xKaORY7klYZ78AMtmdM69&quot;,&quot;secondary_exposures&quot;:[]},&quot;3146107018&quot;:{&quot;name&quot;:&quot;3146107018&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;c4q35BEVx9znjP7JGBtVT&quot;,&quot;secondary_exposures&quot;:[]},&quot;3221145664&quot;:{&quot;name&quot;:&quot;3221145664&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2cBLA8TUSXL7UgZDS8WInS&quot;,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;2685146257&quot;,&quot;gateValue&quot;:&quot;true&quot;,&quot;ruleID&quot;:&quot;5P9QlfTudFTaLyVQ9CLaHk:100.00:3&quot;}]},&quot;3222128304&quot;:{&quot;name&quot;:&quot;3222128304&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1m9QTVQzZFEKPa1KNALsGI&quot;,&quot;secondary_exposures&quot;:[]},&quot;3229469216&quot;:{&quot;name&quot;:&quot;3229469216&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3233830964&quot;:{&quot;name&quot;:&quot;3233830964&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3237984132&quot;:{&quot;name&quot;:&quot;3237984132&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;10pjz58c6Zg30jLxPkZvVq:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;3245744487&quot;:{&quot;name&quot;:&quot;3245744487&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2tPYgRHDUIV3ZMqiEVoqhg&quot;,&quot;secondary_exposures&quot;:[]},&quot;3258263545&quot;:{&quot;name&quot;:&quot;3258263545&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3328021560&quot;:{&quot;name&quot;:&quot;3328021560&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3330964648&quot;:{&quot;name&quot;:&quot;3330964648&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3341216341&quot;:{&quot;name&quot;:&quot;3341216341&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3385366709&quot;:{&quot;name&quot;:&quot;3385366709&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6q1F0sCi96BQLXFecRVTnQ:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;3399908046&quot;:{&quot;name&quot;:&quot;3399908046&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;cOZnxN0tbO0930jX8UPNN&quot;,&quot;secondary_exposures&quot;:[]},&quot;3410274851&quot;:{&quot;name&quot;:&quot;3410274851&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3425825648&quot;:{&quot;name&quot;:&quot;3425825648&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1w5nTGtC55qW4MknWUg0j3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3446095163&quot;:{&quot;name&quot;:&quot;3446095163&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6KqmYBA0CTqtf5qM55WRei:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;3529116683&quot;:{&quot;name&quot;:&quot;3529116683&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2p116jsNXa949QcZh4HwIg&quot;,&quot;secondary_exposures&quot;:[]},&quot;3549982661&quot;:{&quot;name&quot;:&quot;3549982661&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;3IDD4AMWgMUKsIK4lNaMNF&quot;,&quot;secondary_exposures&quot;:[]},&quot;3569511999&quot;:{&quot;name&quot;:&quot;3569511999&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;38p24hiNcPdhhQn9FNatCa:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3570326623&quot;:{&quot;name&quot;:&quot;3570326623&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3576132033&quot;:{&quot;name&quot;:&quot;3576132033&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5oTihpxUIzGjuV57OJVI8L:0.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;3593149932&quot;:{&quot;name&quot;:&quot;3593149932&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3596166000&quot;:{&quot;name&quot;:&quot;3596166000&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5XLIOT3TX44LNErmtvgNEI:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3598297568&quot;:{&quot;name&quot;:&quot;3598297568&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4q9bBoAzovpLdBIfucblfm&quot;,&quot;secondary_exposures&quot;:[]},&quot;3598331298&quot;:{&quot;name&quot;:&quot;3598331298&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2RxLvtezrHj1v0cGhvl4jc&quot;,&quot;secondary_exposures&quot;:[]},&quot;3615398992&quot;:{&quot;name&quot;:&quot;3615398992&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5bgc9rHvAukK5ZTtBWyAS:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3639909728&quot;:{&quot;name&quot;:&quot;3639909728&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2Y7wiVbpBIq7eM332U3u6N:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;3642392651&quot;:{&quot;name&quot;:&quot;3642392651&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3644978022&quot;:{&quot;name&quot;:&quot;3644978022&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;28PL87SEG8ZC1aT2WzhKTQ:100.00:11&quot;,&quot;secondary_exposures&quot;:[]},&quot;3645086757&quot;:{&quot;name&quot;:&quot;3645086757&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3647343655&quot;:{&quot;name&quot;:&quot;3647343655&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3649469781&quot;:{&quot;name&quot;:&quot;3649469781&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2NNTwx8ORBXIP0ZOIarS1V&quot;,&quot;secondary_exposures&quot;:[]},&quot;3656888587&quot;:{&quot;name&quot;:&quot;3656888587&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;21WVHXQRIUhE1kRb0UxZ7R:50.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3658032975&quot;:{&quot;name&quot;:&quot;3658032975&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4HDDvXBkdEDc75ngJ5hpZV:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;3662817404&quot;:{&quot;name&quot;:&quot;3662817404&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5UT2KSeAyvTqDqCB5j1hcH&quot;,&quot;secondary_exposures&quot;:[]},&quot;3672465503&quot;:{&quot;name&quot;:&quot;3672465503&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3675601689&quot;:{&quot;name&quot;:&quot;3675601689&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;32BFRMcGqnmbQXA5Bu3NCU:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;3679659923&quot;:{&quot;name&quot;:&quot;3679659923&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2FsnqXsl5NW50ecZ8zhkYQ:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3681014316&quot;:{&quot;name&quot;:&quot;3681014316&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;E4nV4vADJg7gntzUilMAD&quot;,&quot;secondary_exposures&quot;:[]},&quot;3705255263&quot;:{&quot;name&quot;:&quot;3705255263&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1pr2fX6bO1UV5Pf8u34xLc&quot;,&quot;secondary_exposures&quot;:[]},&quot;3706363283&quot;:{&quot;name&quot;:&quot;3706363283&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3711032220&quot;:{&quot;name&quot;:&quot;3711032220&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6iJcGWZgkTyYv51doVZxwT:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;3716835170&quot;:{&quot;name&quot;:&quot;3716835170&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2GldrOU0HyOoKvCnwTRj2Q&quot;,&quot;secondary_exposures&quot;:[]},&quot;3718325580&quot;:{&quot;name&quot;:&quot;3718325580&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;eNgjD3wvuCPxb5UPq6Yjr&quot;,&quot;secondary_exposures&quot;:[]},&quot;3769240674&quot;:{&quot;name&quot;:&quot;3769240674&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;6TtXNrAN7EjCL0ghQheID3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3771237523&quot;:{&quot;name&quot;:&quot;3771237523&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3801790482&quot;:{&quot;name&quot;:&quot;3801790482&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3802223021&quot;:{&quot;name&quot;:&quot;3802223021&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2O1b5QJMFdRymkps89PMnE:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;3813949267&quot;:{&quot;name&quot;:&quot;3813949267&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;3UXGSzwAsNZNGFCyJVzMTm&quot;,&quot;secondary_exposures&quot;:[]},&quot;3831511682&quot;:{&quot;name&quot;:&quot;3831511682&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;3834310666&quot;:{&quot;name&quot;:&quot;3834310666&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1YUKKtzoaqYfl04q6CFRx&quot;,&quot;secondary_exposures&quot;:[]},&quot;3839874323&quot;:{&quot;name&quot;:&quot;3839874323&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;30Zf8SH2suXsFGIg45HYCm:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;3867416455&quot;:{&quot;name&quot;:&quot;3867416455&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2sKzmu9jNx6i6CUcI5Fkkz&quot;,&quot;secondary_exposures&quot;:[]},&quot;3882237741&quot;:{&quot;name&quot;:&quot;3882237741&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6mDcLhDXMywoNzXU3guFyu:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;3890151290&quot;:{&quot;name&quot;:&quot;3890151290&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;4zDMAa7PbSRYuCI9vrrlxc:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;3896737890&quot;:{&quot;name&quot;:&quot;3896737890&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;irdJsWy4YAwH7k5cqYQAW:100.00:6&quot;,&quot;secondary_exposures&quot;:[]},&quot;3918944076&quot;:{&quot;name&quot;:&quot;3918944076&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6lmHWp1vWNTGNpMIPu2UtP&quot;,&quot;secondary_exposures&quot;:[]},&quot;3943950952&quot;:{&quot;name&quot;:&quot;3943950952&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;3969412823&quot;:{&quot;name&quot;:&quot;3969412823&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;3R0ihwlqH05xfPsz6CODYI&quot;,&quot;secondary_exposures&quot;:[]},&quot;3999398617&quot;:{&quot;name&quot;:&quot;3999398617&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;4022667153&quot;:{&quot;name&quot;:&quot;4022667153&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;4042975260&quot;:{&quot;name&quot;:&quot;4042975260&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3ojdCCkK8PWtJ7BzgOAKxb:100.00:7&quot;,&quot;secondary_exposures&quot;:[]},&quot;4051398573&quot;:{&quot;name&quot;:&quot;4051398573&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5db3Rj2yuMYqBFwmuxU9Yw:100.00:2&quot;,&quot;secondary_exposures&quot;:[]},&quot;4063261051&quot;:{&quot;name&quot;:&quot;4063261051&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5hLueuvpFDGmXJdZqgA6B1&quot;,&quot;secondary_exposures&quot;:[]},&quot;4093292429&quot;:{&quot;name&quot;:&quot;4093292429&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2mFWFBDczFBSS3n0wqYfge&quot;,&quot;secondary_exposures&quot;:[]},&quot;4130065283&quot;:{&quot;name&quot;:&quot;4130065283&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;4133963028&quot;:{&quot;name&quot;:&quot;4133963028&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5fK1zayQrO5TeS5hWXJejb&quot;,&quot;secondary_exposures&quot;:[]},&quot;4161155619&quot;:{&quot;name&quot;:&quot;4161155619&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;secondary_exposures&quot;:[]},&quot;4162533519&quot;:{&quot;name&quot;:&quot;4162533519&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;5S442L6Cnfx4h6QR4jJWJJ:100.00:3&quot;,&quot;secondary_exposures&quot;:[]},&quot;4173539718&quot;:{&quot;name&quot;:&quot;4173539718&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;6OcWkXZuFdfUXaKzXh2Nef:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;4185876433&quot;:{&quot;name&quot;:&quot;4185876433&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;default&quot;,&quot;secondary_exposures&quot;:[]},&quot;4197778757&quot;:{&quot;name&quot;:&quot;4197778757&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;2weXGzIBZd6NmL73NjnGea&quot;,&quot;secondary_exposures&quot;:[]},&quot;4198834332&quot;:{&quot;name&quot;:&quot;4198834332&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;4kPkKq4e4sX6XuSwnV9TXV&quot;,&quot;secondary_exposures&quot;:[]},&quot;4205199681&quot;:{&quot;name&quot;:&quot;4205199681&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;1ecEohWZoWWThxn6B15WRa&quot;,&quot;secondary_exposures&quot;:[]},&quot;4212621178&quot;:{&quot;name&quot;:&quot;4212621178&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;72Ezg7v2trq8YOISi3JGfU:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;4213366719&quot;:{&quot;name&quot;:&quot;4213366719&quot;,&quot;value&quot;:false,&quot;rule_id&quot;:&quot;5URxOqWSag8x3yewMIicWe&quot;,&quot;secondary_exposures&quot;:[]},&quot;4240978131&quot;:{&quot;name&quot;:&quot;4240978131&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;2QXHGEeqxigUejcfB7j7nL:100.00:4&quot;,&quot;secondary_exposures&quot;:[]},&quot;4247444196&quot;:{&quot;name&quot;:&quot;4247444196&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3pdsiYgVcKttxCHUYipiFj:100.00:1&quot;,&quot;secondary_exposures&quot;:[]},&quot;4257775671&quot;:{&quot;name&quot;:&quot;4257775671&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;xzGluxzTpAtSS7Uttoife&quot;,&quot;secondary_exposures&quot;:[]},&quot;4284804574&quot;:{&quot;name&quot;:&quot;4284804574&quot;,&quot;value&quot;:true,&quot;rule_id&quot;:&quot;3i9jYoDXYSdqosUc1HDrpp:100.00:4&quot;,&quot;secondary_exposures&quot;:[]}},&quot;dynamic_configs&quot;:{&quot;173927913&quot;:{&quot;name&quot;:&quot;173927913&quot;,&quot;value&quot;:{&quot;mode&quot;:&quot;random&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;451433404&quot;:{&quot;name&quot;:&quot;451433404&quot;,&quot;value&quot;:{&quot;MAX_PAGES_LIMIT&quot;:-1},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;504462606&quot;:{&quot;name&quot;:&quot;504462606&quot;,&quot;value&quot;:{&quot;announcementComingSoon&quot;:{&quot;copy&quot;:&quot;&lt;p&gt;&lt;strong&gt;Seat pricing is changing and we’re removing caps on seats&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;New seat pricing will become available for current Workspaces after Jan 29, 2025, upon next billing month end. Reviewers will remain free and the price of your Workspace plan will stay the same. &lt;a target=&quot;_blank&quot; href=&quot;http://webflow.com/blog/pricing-and-product-updates-wxp-2024&quot;&gt;Learn more about all plan changes&lt;/a&gt;&lt;/p&gt;&quot;,&quot;validPlans&quot;:[&quot;workspace-core-seat-v1&quot;,&quot;workspace-growth-seat-v1&quot;,&quot;workspace-freelancer-seat-v1&quot;,&quot;workspace-agency-seat-v1&quot;],&quot;expirationDate&quot;:&quot;2025-01-29&quot;},&quot;announcementGA&quot;:{&quot;copy&quot;:&quot;&lt;p&gt;&lt;strong&gt;Seat pricing has changed and we’ve removed caps on seats&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;New seat pricing is now available for your Workspace. Reviewers remain free and the price of your [workspace plan] plan is the same. &lt;a target=&quot;_blank&quot; href=&quot;http://webflow.com/blog/pricing-and-product-updates-wxp-2024&quot;&gt;Learn more about all plan changes&lt;/a&gt;&lt;/p&gt;&quot;,&quot;validPlans&quot;:[&quot;workspace-starter-add-on-v1&quot;,&quot;workspace-starter-seat-v1&quot;,&quot;workspace-freelancer-v2&quot;,&quot;workspace-agency-v2&quot;,&quot;workspace-core-v2&quot;,&quot;workspace-growth-v2&quot;],&quot;expirationDate&quot;:&quot;2025-03-31&quot;}},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;622649767&quot;:{&quot;name&quot;:&quot;622649767&quot;,&quot;value&quot;:{&quot;enabled&quot;:true,&quot;color&quot;:&quot;yellow&quot;},&quot;group&quot;:&quot;launchedGroup&quot;,&quot;rule_id&quot;:&quot;launchedGroup&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;explicit_parameters&quot;:[&quot;enabled&quot;],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false,&quot;is_in_layer&quot;:true},&quot;622649768&quot;:{&quot;name&quot;:&quot;622649768&quot;,&quot;value&quot;:{&quot;enabled&quot;:true,&quot;color&quot;:&quot;yellow&quot;},&quot;group&quot;:&quot;launchedGroup&quot;,&quot;rule_id&quot;:&quot;launchedGroup&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;explicit_parameters&quot;:[&quot;color&quot;],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false,&quot;is_in_layer&quot;:true},&quot;657188092&quot;:{&quot;name&quot;:&quot;657188092&quot;,&quot;value&quot;:{&quot;expiry&quot;:1800},&quot;group&quot;:&quot;1WwytFUSX8cBbFFTtWYmfJ:100.00:1&quot;,&quot;rule_id&quot;:&quot;1WwytFUSX8cBbFFTtWYmfJ:100.00:1&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;665836192&quot;:{&quot;name&quot;:&quot;665836192&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;737109165&quot;:{&quot;name&quot;:&quot;737109165&quot;,&quot;value&quot;:{&quot;batchLimit&quot;:1000,&quot;upperLimit&quot;:10000},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;772001133&quot;:{&quot;name&quot;:&quot;772001133&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;846847440&quot;:{&quot;name&quot;:&quot;846847440&quot;,&quot;value&quot;:{&quot;secondaryLocaleConcurrency&quot;:3},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;882147072&quot;:{&quot;name&quot;:&quot;882147072&quot;,&quot;value&quot;:{&quot;env&quot;:&quot;production&quot;},&quot;group&quot;:&quot;5UbDumatBcUWBMfWbj1FNy&quot;,&quot;rule_id&quot;:&quot;5UbDumatBcUWBMfWbj1FNy&quot;,&quot;is_device_based&quot;:true,&quot;secondary_exposures&quot;:[]},&quot;938734410&quot;:{&quot;name&quot;:&quot;938734410&quot;,&quot;value&quot;:{&quot;enabled&quot;:true},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1070795817&quot;:{&quot;name&quot;:&quot;1070795817&quot;,&quot;value&quot;:{&quot;openai&quot;:{&quot;gpt-4o-mini&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.00015,&quot;output&quot;:0.0006},&quot;base&quot;:{&quot;input&quot;:0.00015,&quot;output&quot;:0.0006}},&quot;gpt-4o-mini-2024-07-18&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.0003,&quot;output&quot;:0.0012},&quot;base&quot;:{&quot;input&quot;:0.00015,&quot;output&quot;:0.0006}},&quot;gpt-4o&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.005,&quot;output&quot;:0.015},&quot;base&quot;:{&quot;input&quot;:0.005,&quot;output&quot;:0.015}},&quot;gpt-4o-2024-05-13&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.005,&quot;output&quot;:0.015},&quot;base&quot;:{&quot;input&quot;:0.005,&quot;output&quot;:0.015}},&quot;gpt-4o-2024-08-06&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.0025,&quot;output&quot;:0.01},&quot;base&quot;:{&quot;input&quot;:0.0025,&quot;output&quot;:0.01}},&quot;gpt-4-0125-preview&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03},&quot;base&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03}},&quot;gpt-4-1106-preview&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03},&quot;base&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03}},&quot;gpt-4-1106-vision-preview&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03},&quot;base&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03}},&quot;gpt-4-vision-preview&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03},&quot;base&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03}},&quot;gpt-4&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.03,&quot;output&quot;:0.06},&quot;base&quot;:{&quot;input&quot;:0.03,&quot;output&quot;:0.06}},&quot;gpt-4-32k&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.06,&quot;output&quot;:0.12},&quot;base&quot;:{&quot;input&quot;:0.06,&quot;output&quot;:0.12}},&quot;gpt-4-turbo&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03},&quot;base&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03}},&quot;gpt-4-turbo-2024-04-09&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03},&quot;base&quot;:{&quot;input&quot;:0.01,&quot;output&quot;:0.03}},&quot;gpt-3.5-turbo-0125&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.006},&quot;base&quot;:{&quot;input&quot;:0.0005,&quot;output&quot;:0.0015}},&quot;gpt-3.5-turbo-instruct&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.006},&quot;base&quot;:{&quot;input&quot;:0.0015,&quot;output&quot;:0.002}},&quot;gpt-3.5-turbo-1106&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.006},&quot;base&quot;:{&quot;input&quot;:0.001,&quot;output&quot;:0.002}},&quot;gpt-3.5-turbo-0613&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.006},&quot;base&quot;:{&quot;input&quot;:0.0015,&quot;output&quot;:0.002}},&quot;gpt-3.5-turbo-16k-0613&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.006},&quot;base&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.004}},&quot;gpt-3.5-turbo-0301&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.003,&quot;output&quot;:0.006},&quot;base&quot;:{&quot;input&quot;:0.0015,&quot;output&quot;:0.002}},&quot;text-embedding-3-small&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.00002,&quot;output&quot;:0.00002},&quot;base&quot;:{&quot;input&quot;:0.00002,&quot;output&quot;:0.00002}},&quot;text-embedding-3-large&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.00013,&quot;output&quot;:0.00013},&quot;base&quot;:{&quot;input&quot;:0.00013,&quot;output&quot;:0.00013}},&quot;text-embedding-ada-002&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.0001,&quot;output&quot;:0.0001},&quot;base&quot;:{&quot;input&quot;:0.0001,&quot;output&quot;:0.0001}},&quot;da-vinci-002&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.012,&quot;output&quot;:0.012},&quot;base&quot;:{&quot;input&quot;:0.002,&quot;output&quot;:0.002}},&quot;babbage-002&quot;:{&quot;ft&quot;:{&quot;input&quot;:0.0016,&quot;output&quot;:0.0016},&quot;base&quot;:{&quot;input&quot;:0.0004,&quot;output&quot;:0.0004}}}},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1316201488&quot;:{&quot;name&quot;:&quot;1316201488&quot;,&quot;value&quot;:{&quot;color&quot;:&quot;yellow&quot;,&quot;size&quot;:&quot;small&quot;},&quot;group&quot;:&quot;launchedGroup&quot;,&quot;rule_id&quot;:&quot;launchedGroup&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;explicit_parameters&quot;:[&quot;color&quot;],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false,&quot;is_in_layer&quot;:true},&quot;1316201489&quot;:{&quot;name&quot;:&quot;1316201489&quot;,&quot;value&quot;:{&quot;color&quot;:&quot;yellow&quot;,&quot;size&quot;:&quot;small&quot;},&quot;group&quot;:&quot;launchedGroup&quot;,&quot;rule_id&quot;:&quot;launchedGroup&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;explicit_parameters&quot;:[&quot;size&quot;],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false,&quot;is_in_layer&quot;:true},&quot;1462086697&quot;:{&quot;name&quot;:&quot;1462086697&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1567550242&quot;:{&quot;name&quot;:&quot;1567550242&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1592612642&quot;:{&quot;name&quot;:&quot;1592612642&quot;,&quot;value&quot;:{&quot;qualifiers&quot;:[&quot;cdnBandwidthLimit&quot;],&quot;anchorDate&quot;:&quot;2024-07-29&quot;,&quot;anchorDateTranche4&quot;:&quot;2024-12-01&quot;,&quot;anchorDateTranche2and3&quot;:&quot;2024-12-27&quot;,&quot;anchorDateTranche5and6&quot;:&quot;2025-03-19&quot;,&quot;highUsage&quot;:&quot;550000000000&quot;,&quot;useCubeForPreviousMonthUsage&quot;:false,&quot;enableConsecutiveOverageNotifications&quot;:true},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1726628865&quot;:{&quot;name&quot;:&quot;1726628865&quot;,&quot;value&quot;:{&quot;openai&quot;:{&quot;chat&quot;:{&quot;gpt-4o&quot;:{&quot;input&quot;:2.5,&quot;output&quot;:10},&quot;gpt-4o-mini&quot;:{&quot;input&quot;:0.15,&quot;output&quot;:0.6},&quot;o1-preview&quot;:{&quot;input&quot;:15,&quot;output&quot;:60},&quot;o1-mini&quot;:{&quot;input&quot;:3,&quot;output&quot;:12}},&quot;embedding&quot;:{&quot;text-embedding-3-small&quot;:{&quot;input&quot;:0.02,&quot;output&quot;:0.02},&quot;text-embedding-3-large&quot;:{&quot;input&quot;:0.13,&quot;output&quot;:0.13},&quot;text-embedding-ada-002&quot;:{&quot;input&quot;:0.1,&quot;output&quot;:0.1}}},&quot;anthropic&quot;:{&quot;chat&quot;:{&quot;claude-3-5-haiku-20241022&quot;:{&quot;input&quot;:1,&quot;output&quot;:5},&quot;claude-3-5-sonnet-20241022&quot;:{&quot;input&quot;:3,&quot;output&quot;:15},&quot;claude-3-opus-20240229&quot;:{&quot;input&quot;:15,&quot;output&quot;:75}}}},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1771795565&quot;:{&quot;name&quot;:&quot;1771795565&quot;,&quot;value&quot;:{&quot;minimumDuration&quot;:500,&quot;percent&quot;:0},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1863160016&quot;:{&quot;name&quot;:&quot;1863160016&quot;,&quot;value&quot;:{&quot;sampleRatePercentage&quot;:25},&quot;group&quot;:&quot;4OtVQ6ydhDiLynVSDrQUem&quot;,&quot;rule_id&quot;:&quot;4OtVQ6ydhDiLynVSDrQUem&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;1905118106&quot;:{&quot;name&quot;:&quot;1905118106&quot;,&quot;value&quot;:{&quot;imageGenJobBatchSize&quot;:5,&quot;imageGenRedisTTL&quot;:604800000,&quot;shouldSkipImagenJob&quot;:false},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2144870841&quot;:{&quot;name&quot;:&quot;2144870841&quot;,&quot;value&quot;:{&quot;forkedLibrary&quot;:{&quot;versionedResourceId&quot;:&quot;67c23ed8ee943ab9e5b27f82&quot;,&quot;bucket&quot;:&quot;webflow-prod-assets&quot;},&quot;query&quot;:{&quot;versionedResourceId&quot;:&quot;67c23ed8ee943ab9e5b27f82&quot;,&quot;libraryName&quot;:&quot;copilot-library&quot;},&quot;blockedAssetNames&quot;:[&quot;Banner 1 - Centered&quot;,&quot;Banner 6 - Text left, button group and closing button right, boxed, fixed to bottom&quot;,&quot;Content feed 8 - Header left aligned, stacked rows of link blocks with heading and text left, image right. Dividers.&quot;,&quot;Content feed 9 - Heading left, stacked rows of link blocks with date left, heading middle, call to action right.&quot;,&quot;Content feed 34 - Three column editorial grid with link boxes&quot;,&quot;Content feed 38 - Feature link block left, smaller link blocks right&quot;,&quot;Content feed 40 - Irregular two column grid with differently sized link blocks with heading top and image bottom&quot;,&quot;Content feed 42 - Heading left aligned, irregular grid with differently sized link blocks with portrait image top, info bottom&quot;,&quot;Content feed 43 - Heading and link list left, featured post right with image top and info bottom, three by three grid with link blocks&quot;,&quot;Content header 30 - Featured image in the background, overlapping tag left, content center and box right&quot;,&quot;Content header 31 - Extra large heading centered overlapping content, eyebrow and tag left, heading center, image right centered,&quot;,&quot;Content header 33 - Featured image center, large text bottom right, links bottom left&quot;,&quot;CTA 15 - Large heading and subscription form right, boxed&quot;,&quot;CTA 29 - Image left, large heading and button right&quot;,&quot;CTA 30 - Heading and button left, image right&quot;,&quot;FAQ 3 - Padded background image, centered header, accordion questions&quot;,&quot;FAQ 14 - Header centered, grid with centered icon, question and answer blocks&quot;,&quot;Feature 1&quot;,&quot;Features 1 - Text left, image right&quot;,&quot;Features 29 - Text and list of features left, image right&quot;,&quot;Features 30 - Heading and paragraph left, image right, list of features with icons below&quot;,&quot;Features 38 - Heading, list of features with icons in two columns&quot;,&quot;Features 41 - Heading left, text right&quot;,&quot;Features 42 - Text left, heading right&quot;,&quot;Features 48 - Image left, list of features right&quot;,&quot;Features 52 - Full size cards overlapping on scroll&quot;,&quot;Features 54 - Multi column layout&quot;,&quot;Features 74 - IX - Sticky cards, cards overlap&quot;,&quot;Footer 2 - Centered text&quot;,&quot;Footer 5 - Text left, social right&quot;,&quot;Footer 6 - Social left, text right&quot;,&quot;Footer 8 - Four columns. Logo, links, text and dropdown below.&quot;,&quot;Footer 20 - Large email and address&quot;,&quot;Footer 24 - Four link columns. Text and links below.&quot;,&quot;Gallery 18 - Three column masonry grid&quot;,&quot;Gallery 35 - Random grid&quot;,&quot;Gallery 37 - Random grid&quot;,&quot;Gallery 38 - Tabbed gallery&quot;,&quot;Hero 6 - Content left, image grid&quot;,&quot;Hero 11 - Content left boxed, image right&quot;,&quot;Hero 12 - Content right boxed, image right&quot;,&quot;Hero 15 - Content left, image right, metrics below&quot;,&quot;Hero 17 - Content left, image right&quot;,&quot;Hero 18 - Image left, content right&quot;,&quot;Hero 30 - Staggered heading, text and image narrow centered&quot;,&quot;Hero 31 - Large heading staggered, subheading, image below&quot;,&quot;Hero 32 - Eyebrow, heading with spans, image below&quot;,&quot;Hero 34 - Headings and images stacked&quot;,&quot;Hero 39 - Background image, content left with subscription form&quot;,&quot;Hero 41 - Background image, heading, overlapping image&quot;,&quot;Hero 44 - Content top right, heading bottom centered&quot;,&quot;Hero 45 - Background image, heading and buttons left, subheading and subscription form right&quot;,&quot;Hero 46 - Background image, content left, metrics right&quot;,&quot;Hero 48 - Background image, content centered&quot;,&quot;Hero 49 - Heading with inline images&quot;,&quot;Hero 53 - Heading top left, subheading and buttons bottom right&quot;,&quot;Hero Interactive 15 - Centered Heading, Image Overlaying Text&quot;,&quot;Hero Interactive 18 - Centered Heading, Scrolling Image&quot;,&quot;Hero Interactive 4 - Images left, Heading Right, CTA&quot;,&quot;Hero Interactive 9 - Centered Heading, Subheading, Images in the background&quot;,&quot;Logos 7 - Logo grid left, heading and subhedaing right&quot;,&quot;Logos 8 - Eyebrow, heading, subheading, and button left, logo grid right&quot;,&quot;Nav 4 - Logo and links left, buttons right (Meganav)&quot;,&quot;Nav 5 - Logo and links left, buttons right (Meganav)&quot;,&quot;Nav 13 - Logo left, links and button right (Meganav)&quot;,&quot;Nav 14 - Logo left, links and button right (Meganav)&quot;,&quot;Nav 22 - Logo left, links center, buttons right (Meganav)&quot;,&quot;Nav 23 - Logo left, links center, buttons right (Meganav)&quot;,&quot;Nav 31 - Links left, logo center, buttons right (Meganav)&quot;,&quot;Nav 32 - Links left, logo center, buttons right (Meganav)&quot;,&quot;Nav 37 - Logo and links spaced (Simple)&quot;,&quot;Nav 38 - Logo and links spaced (Dropdown)&quot;,&quot;Nav 39 - Logo and links spaced (Large dropdown)&quot;,&quot;Nav 40 - Logo and links spaced (Large dropdown)&quot;,&quot;Nav 41 - Logo and links spaced (Meganav)&quot;,&quot;Nav 42 - Logo and links spaced (Meganav)&quot;,&quot;Nav 44 - Logo and links spaced (Meganav)&quot;,&quot;Nav 46 - Logo left, button right (Centered full screen nav)&quot;,&quot;Nav 47 - Logo left, button right (Right-aligned full screen nav)&quot;,&quot;Nav 48 - Logo left, button right (Two column full screen nav)&quot;,&quot;Nav 49 - Logo left, button right (Three column full screen nav)&quot;,&quot;Nav 50 - Logo left, button right (Two column and additional links full screen nav)&quot;,&quot;Nav 51 - Logo left, button right (Two columns of large links, two columns of small links, in full screen nav)&quot;,&quot;Nav 52 - Logo left, button right (Large links left-aligned in full screen nav)&quot;,&quot;Nav 53 - Logo left, button right&quot;,&quot;Nav 54 - Two level nav. Logo, search, links and button top, extra links below.&quot;,&quot;Nav 55 - Two level nav. Dropdown, centered logo and buttons top. Links and search below.&quot;,&quot;Nav 56 - Logo left, links and button right. Boxed. Fixed.&quot;,&quot;Nav 57 - Logo left, links center boxed, button right. Fixed.&quot;,&quot;Nav 58 - Logo left, buttons right. Small. Fixed.&quot;,&quot;Nav 59 - Logo, links and button. Boxed. Narrow. Fixed.&quot;,&quot;Nav 60 - Two level nav. Links top. Logo, links and button below. Fixed.&quot;,&quot;Nav 61 - Logo, links and button. Boxed. Bottom fixed.&quot;,&quot;Pricing 4 - Heading, one card centered&quot;,&quot;Pricing 14 - Icon, heading, two columns merged&quot;,&quot;Pricing 15 - Icon, heading, three columns merged&quot;],&quot;pinecone&quot;:{&quot;resultsCount&quot;:2,&quot;versionedResourceId&quot;:&quot;67c23ed8ee943ab9e5b27f82&quot;,&quot;model&quot;:&quot;Component&quot;,&quot;libraryName&quot;:&quot;copilot-library&quot;,&quot;fallBackSectionResults&quot;:[{&quot;assetName&quot;:&quot;Nav 1 - Logo and links left, buttons right (Simple)&quot;,&quot;targetComponentId&quot;:&quot;de26db10-c777-29bd-dfe6-0c14bf933c1a&quot;},{&quot;assetName&quot;:&quot;Hero 1 - Content left, image right&quot;,&quot;targetComponentId&quot;:&quot;ed0df957-42e7-0df3-e577-352399b48f11&quot;},{&quot;assetName&quot;:&quot;Features 20 - Three blocks&quot;,&quot;targetComponentId&quot;:&quot;56f2be38-a918-7d38-c356-0291a1c17017&quot;},{&quot;assetName&quot;:&quot;Gallery 11 - Four by two grid&quot;,&quot;targetComponentId&quot;:&quot;797c0572-98a3-41a6-1037-5620222cd5b9&quot;},{&quot;assetName&quot;:&quot;Features 39 - Heading, list of features with icons in three columns&quot;,&quot;targetComponentId&quot;:&quot;f6b1cc4f-38a5-9a66-ecee-6bea87ebcc2a&quot;},{&quot;assetName&quot;:&quot;FAQ 8 - Header left aligned, three column grid with questions and answers stacked&quot;,&quot;targetComponentId&quot;:&quot;b91c719b-7425-3d70-9a9e-e77cb79326a9&quot;},{&quot;assetName&quot;:&quot;Contact 23 - Header left aligned, two columns of contact info&quot;,&quot;targetComponentId&quot;:&quot;56dfef87-8bc4-50b0-0f83-5209c04eaa62&quot;},{&quot;assetName&quot;:&quot;Footer 4 - Logo left, links center, social right. Text below.&quot;,&quot;targetComponentId&quot;:&quot;6edc7c5d-2168-465f-a27e-2f0e7ea24353&quot;}]}},&quot;group&quot;:&quot;R3kBq8LuMfkV3R32mhK0N&quot;,&quot;rule_id&quot;:&quot;R3kBq8LuMfkV3R32mhK0N&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2213518682&quot;:{&quot;name&quot;:&quot;2213518682&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;prestart&quot;,&quot;rule_id&quot;:&quot;prestart&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false},&quot;2216482092&quot;:{&quot;name&quot;:&quot;2216482092&quot;,&quot;value&quot;:{&quot;libraryMetadata&quot;:{&quot;copilot-library&quot;:{&quot;versionedResourceId&quot;:&quot;66c4bc82c44f7c3bea9aa534&quot;}},&quot;maxConcurrent&quot;:50,&quot;librarySearchOptions&quot;:{&quot;numResults&quot;:100,&quot;weightPower&quot;:10,&quot;rerank&quot;:true,&quot;allowedLibraries&quot;:[&quot;copilot-library&quot;],&quot;allowedVersions&quot;:[&quot;66c4bc82c44f7c3bea9aa534&quot;],&quot;includeOmitted&quot;:&quot;never&quot;},&quot;availableComponentCategories&quot;:[&quot;Hero&quot;,&quot;Features&quot;,&quot;Footer&quot;,&quot;Pricing&quot;,&quot;Gallery&quot;,&quot;CTA&quot;,&quot;Testimonial&quot;,&quot;Content Feed&quot;,&quot;Content Hero&quot;,&quot;Blog Body&quot;,&quot;Banner&quot;,&quot;FAQ&quot;,&quot;Contact&quot;,&quot;Team&quot;,&quot;Career&quot;,&quot;Stats / Metrics&quot;,&quot;Event Header&quot;,&quot;Event Feed&quot;,&quot;404&quot;],&quot;availableIterationCategories&quot;:[&quot;Copy&quot;],&quot;enableQueryByMetadata&quot;:true,&quot;approvedTemplateIds&quot;:[&quot;5c75aacdf20430c74e511659&quot;,&quot;5c75a7eab05c3fd864a6436c&quot;,&quot;5c75aee206591073b28b2d36&quot;,&quot;66da3c1791a367f95fea4e65&quot;,&quot;67092c2346eca33cec2a4b80&quot;,&quot;6706e96d9a1ac6af22f67dc6&quot;,&quot;670881e9ca5b45aded57e8bf&quot;,&quot;67093b55adc4a9a95151dcf3&quot;],&quot;supportedWfdlTypes&quot;:[&quot;Layout::Section&quot;,&quot;Basic::Block&quot;,&quot;Layout::Grid&quot;,&quot;Basic::Image&quot;,&quot;Basic::Heading&quot;,&quot;Basic::Paragraph&quot;,&quot;Basic::Link&quot;,&quot;Basic::Strong&quot;,&quot;Basic::LineBreak&quot;,&quot;Basic::String&quot;,&quot;Icon::Icon&quot;,&quot;Layout::Layout&quot;,&quot;Layout::Cell&quot;,&quot;Tabs::TabsWrapper&quot;,&quot;Tabs::TabsMenu&quot;,&quot;Tabs::TabsLink&quot;,&quot;Tabs::TabsContent&quot;,&quot;Tabs::TabsPane&quot;,&quot;Basic::List&quot;,&quot;Basic::ListItem&quot;,&quot;Basic::RichText&quot;,&quot;Basic::Figure&quot;,&quot;Basic::Span&quot;,&quot;Layout::HFlex&quot;,&quot;Basic::Blockquote&quot;,&quot;Basic::Figcaption&quot;,&quot;Embed::HtmlEmbed&quot;,&quot;Layout::VFlex&quot;,&quot;Builtin::DOM&quot;],&quot;maxEditSectionCharacterCount&quot;:80000,&quot;skipEditSectionValidation&quot;:false},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2339906037&quot;:{&quot;name&quot;:&quot;2339906037&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;prestart&quot;,&quot;rule_id&quot;:&quot;prestart&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false},&quot;2351366352&quot;:{&quot;name&quot;:&quot;2351366352&quot;,&quot;value&quot;:{&quot;field1&quot;:&quot;value1&quot;,&quot;field2&quot;:&quot;value2 changed&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2355632600&quot;:{&quot;name&quot;:&quot;2355632600&quot;,&quot;value&quot;:{&quot;contentURL&quot;:&quot;https://s3.amazonaws.com/webflow-dev-assets/66fd83b6cc0c8c6ed0e398e6%2Fcontent.json&quot;},&quot;group&quot;:&quot;4hbT4fg2lW0gpsgDSUkfnE&quot;,&quot;rule_id&quot;:&quot;4hbT4fg2lW0gpsgDSUkfnE&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2401116685&quot;:{&quot;name&quot;:&quot;2401116685&quot;,&quot;value&quot;:{&quot;Logger&quot;:false},&quot;group&quot;:&quot;7uBjuMzSrf1kFNLoPxK7RW&quot;,&quot;rule_id&quot;:&quot;7uBjuMzSrf1kFNLoPxK7RW&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2486364096&quot;:{&quot;name&quot;:&quot;2486364096&quot;,&quot;value&quot;:{&quot;addAndRemoveClasses&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;applyExistingStyles&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;applyExistingStylesFineTuned&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;copyChanges&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;extendStyles&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;getRequiredStyles&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;getStyleAdditions&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o-mini&quot;},&quot;getToolCall&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;modifyHtmlSnippet&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o-mini&quot;},&quot;openAIModelOverride&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o-mini&quot;},&quot;rerankLibrarySection&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o-mini&quot;},&quot;spacingIteration&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;summarizeHTML&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;},&quot;summarizeSite&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o-mini&quot;},&quot;winnowStyles&quot;:{&quot;provider&quot;:&quot;openai&quot;,&quot;name&quot;:&quot;gpt-4o&quot;}},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2546957535&quot;:{&quot;name&quot;:&quot;2546957535&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2631983062&quot;:{&quot;name&quot;:&quot;2631983062&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;prestart&quot;,&quot;rule_id&quot;:&quot;prestart&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false},&quot;2789269995&quot;:{&quot;name&quot;:&quot;2789269995&quot;,&quot;value&quot;:{&quot;limit&quot;:10},&quot;group&quot;:&quot;2sw1MbaVRxXxcxjqtd7uAl:100.00:3&quot;,&quot;rule_id&quot;:&quot;2sw1MbaVRxXxcxjqtd7uAl:100.00:3&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;2857348505&quot;:{&quot;name&quot;:&quot;2857348505&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;prestart&quot;,&quot;rule_id&quot;:&quot;prestart&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false},&quot;2903381045&quot;:{&quot;name&quot;:&quot;2903381045&quot;,&quot;value&quot;:{&quot;modalVisible&quot;:true,&quot;modalText&quot;:&quot;User Accounts will no longer be available on January 29, 2026.&quot;,&quot;modalCTA&quot;:&quot;https://help.webflow.com/hc/en-us/articles/36046006227731-User-Accounts-deprecation&quot;,&quot;sidebarVisible&quot;:true,&quot;sidebarTitle&quot;:&quot;User Accounts will no longer be available on January 29, 2026.&quot;,&quot;sidebarText&quot;:&quot;Visit Webflow’s Help Center for migration guidance and more info.&quot;,&quot;sidebarCTA&quot;:&quot;https://help.webflow.com/hc/en-us/articles/36046006227731-User-Accounts-deprecation&quot;},&quot;group&quot;:&quot;469fA0xu6eIx4cNGg08bXa:100.00:1&quot;,&quot;rule_id&quot;:&quot;469fA0xu6eIx4cNGg08bXa:100.00:1&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3023147062&quot;:{&quot;name&quot;:&quot;3023147062&quot;,&quot;value&quot;:{&quot;interval&quot;:1000,&quot;batchSize&quot;:2,&quot;maxRetries&quot;:3},&quot;group&quot;:&quot;438VE7lIEaCROk5Wwuykir&quot;,&quot;rule_id&quot;:&quot;438VE7lIEaCROk5Wwuykir&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3106924665&quot;:{&quot;name&quot;:&quot;3106924665&quot;,&quot;value&quot;:{&quot;sees_follow_up_questions&quot;:true},&quot;group&quot;:&quot;3NKgCTsEbMcvoKuxhv35l6&quot;,&quot;rule_id&quot;:&quot;3NKgCTsEbMcvoKuxhv35l6&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:true,&quot;is_experiment_active&quot;:true},&quot;3112069432&quot;:{&quot;name&quot;:&quot;3112069432&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;7LLKzh2sYN9ZQNWvFtAGCo&quot;,&quot;rule_id&quot;:&quot;7LLKzh2sYN9ZQNWvFtAGCo&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3120801339&quot;:{&quot;name&quot;:&quot;3120801339&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;prestart&quot;,&quot;rule_id&quot;:&quot;prestart&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false},&quot;3258716925&quot;:{&quot;name&quot;:&quot;3258716925&quot;,&quot;value&quot;:{&quot;concurrency&quot;:10,&quot;jobConcurrency&quot;:5,&quot;testConcurrency&quot;:5},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3289310561&quot;:{&quot;name&quot;:&quot;3289310561&quot;,&quot;value&quot;:{&quot;cancelId&quot;:&quot;&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3313039722&quot;:{&quot;name&quot;:&quot;3313039722&quot;,&quot;value&quot;:{&quot;concurrencyLimit&quot;:5,&quot;concurrencyLimitVariants&quot;:1,&quot;batchSize&quot;:50},&quot;group&quot;:&quot;1GvE2ByNdIwDAl4XiF6gAK&quot;,&quot;rule_id&quot;:&quot;1GvE2ByNdIwDAl4XiF6gAK&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3315729993&quot;:{&quot;name&quot;:&quot;3315729993&quot;,&quot;value&quot;:{&quot;batchSize&quot;:20},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3410056804&quot;:{&quot;name&quot;:&quot;3410056804&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;prestart&quot;,&quot;rule_id&quot;:&quot;prestart&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;is_user_in_experiment&quot;:false,&quot;is_experiment_active&quot;:false},&quot;3410497685&quot;:{&quot;name&quot;:&quot;3410497685&quot;,&quot;value&quot;:{&quot;batchSize&quot;:50},&quot;group&quot;:&quot;19LEjK6AzZKrJM3crgILVx&quot;,&quot;rule_id&quot;:&quot;19LEjK6AzZKrJM3crgILVx&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3557227276&quot;:{&quot;name&quot;:&quot;3557227276&quot;,&quot;value&quot;:{},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3590523401&quot;:{&quot;name&quot;:&quot;3590523401&quot;,&quot;value&quot;:{&quot;isUserEligibleForWxpTutorial&quot;:false,&quot;wxpLearnMoreLink&quot;:&quot;&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;3096464966&quot;,&quot;gateValue&quot;:&quot;true&quot;,&quot;ruleID&quot;:&quot;disabled&quot;}]},&quot;3591394191&quot;:{&quot;name&quot;:&quot;3591394191&quot;,&quot;value&quot;:{&quot;fullStoryConsent&quot;:[&quot;flagOne&quot;],&quot;keyboardShortcuts&quot;:{&quot;flagOne&quot;:&quot;* e m e r s o n *&quot;}},&quot;group&quot;:&quot;disabled&quot;,&quot;rule_id&quot;:&quot;disabled&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3801251705&quot;:{&quot;name&quot;:&quot;3801251705&quot;,&quot;value&quot;:{&quot;variant&quot;:&quot;control&quot;},&quot;group&quot;:&quot;6dusdm8kxsM5VKnaBkJLs0&quot;,&quot;rule_id&quot;:&quot;6dusdm8kxsM5VKnaBkJLs0&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[{&quot;gate&quot;:&quot;2361218180&quot;,&quot;gateValue&quot;:&quot;false&quot;,&quot;ruleID&quot;:&quot;default&quot;}],&quot;is_user_in_experiment&quot;:true,&quot;is_experiment_active&quot;:true},&quot;3913199261&quot;:{&quot;name&quot;:&quot;3913199261&quot;,&quot;value&quot;:{&quot;cdnUsagePercentage&quot;:-1},&quot;group&quot;:&quot;5zmIpszINEongj5uEsaAbm&quot;,&quot;rule_id&quot;:&quot;5zmIpszINEongj5uEsaAbm&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;3934148661&quot;:{&quot;name&quot;:&quot;3934148661&quot;,&quot;value&quot;:{&quot;MAX_NESTED_DYNLISTS_PER_PAGE&quot;:1,&quot;MAX_DYNLISTS_PER_PAGE&quot;:20,&quot;MAX_NESTED_COLLECTION_LIST_LIMIT&quot;:5,&quot;MAX_COLLECTION_LIST_LIMIT&quot;:100},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;4092855684&quot;:{&quot;name&quot;:&quot;4092855684&quot;,&quot;value&quot;:{&quot;model&quot;:&quot;gemini-1.5-flash-001&quot;,&quot;promptText:&quot;:&quot;&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;4103643638&quot;:{&quot;name&quot;:&quot;4103643638&quot;,&quot;value&quot;:{&quot;Database&quot;:{&quot;TTL&quot;:120,&quot;Method&quot;:&quot;json&quot;}},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]},&quot;4206156914&quot;:{&quot;name&quot;:&quot;4206156914&quot;,&quot;value&quot;:{&quot;flags&quot;:[&quot;ff-wfa-1180-site-goals&quot;]},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[]}},&quot;layer_configs&quot;:{&quot;1188775031&quot;:{&quot;name&quot;:&quot;1188775031&quot;,&quot;value&quot;:{&quot;enabled&quot;:true,&quot;color&quot;:&quot;yellow&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;explicit_parameters&quot;:[],&quot;undelegated_secondary_exposures&quot;:[]},&quot;3882713391&quot;:{&quot;name&quot;:&quot;3882713391&quot;,&quot;value&quot;:{&quot;color&quot;:&quot;yellow&quot;,&quot;size&quot;:&quot;small&quot;},&quot;group&quot;:&quot;default&quot;,&quot;rule_id&quot;:&quot;default&quot;,&quot;is_device_based&quot;:false,&quot;secondary_exposures&quot;:[],&quot;explicit_parameters&quot;:[],&quot;undelegated_secondary_exposures&quot;:[]}},&quot;sdkParams&quot;:{},&quot;has_updates&quot;:true,&quot;generator&quot;:&quot;statsig-node-sdk&quot;,&quot;sdkInfo&quot;:{&quot;sdkType&quot;:&quot;statsig-node&quot;,&quot;sdkVersion&quot;:&quot;5.26.0&quot;},&quot;time&quot;:1744159357911,&quot;evaluated_keys&quot;:{&quot;userID&quot;:&quot;unauthenticated-users&quot;,&quot;customIDs&quot;:{&quot;stableID&quot;:&quot;651ef21e-aa8a-4685-9723-6c36095f97f2&quot;,&quot;anonymousId&quot;:&quot;651ef21e-aa8a-4685-9723-6c36095f97f2&quot;,&quot;siteId&quot;:&quot;66a36194f472d5a508cb4bd9&quot;,&quot;workspaceId&quot;:&quot;66a3546caa4a992b8be25c2c&quot;}},&quot;hash_used&quot;:&quot;djb2&quot;,&quot;user&quot;:{&quot;userID&quot;:&quot;unauthenticated-users&quot;,&quot;userAgent&quot;:&quot;Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0&quot;,&quot;ip&quot;:&quot;80.243.41.180&quot;,&quot;custom&quot;:{&quot;app&quot;:&quot;preview&quot;,&quot;path&quot;:&quot;/&quot;,&quot;pathWithParams&quot;:&quot;/&quot;,&quot;siteCreated&quot;:&quot;1721983380283&quot;,&quot;siteShortName&quot;:&quot;alco-mobel-karriere&quot;,&quot;templateOf&quot;:&quot;5fadd9200c75fd59653e9e75&quot;,&quot;userVerified&quot;:&quot;false&quot;,&quot;isOveragesEnabled&quot;:&quot;false&quot;,&quot;ruleCacheUpdated&quot;:&quot;Wed Apr 09 2025 12:28:46 GMT+0000 (Coordinated Universal Time)&quot;,&quot;hydrationDataCreated&quot;:&quot;Wed Apr 09 2025 13:09:38 GMT+0000 (Coordinated Universal Time)&quot;},&quot;customIDs&quot;:{&quot;stableID&quot;:&quot;651ef21e-aa8a-4685-9723-6c36095f97f2&quot;,&quot;anonymousId&quot;:&quot;651ef21e-aa8a-4685-9723-6c36095f97f2&quot;,&quot;siteId&quot;:&quot;66a36194f472d5a508cb4bd9&quot;,&quot;workspaceId&quot;:&quot;66a3546caa4a992b8be25c2c&quot;},&quot;statsigEnvironment&quot;:{&quot;tier&quot;:&quot;production&quot;}}},&quot;hydrationDataCreatedTimestamp&quot;:1744204178574},&quot;isInBeta&quot;:true,&quot;configTest&quot;:&quot;production&quot;,&quot;initialFeatureFlags&quot;:{&quot;d2&quot;:true}}
</script><script type="text/javascript">function htmlDecode(input) {
  var doc = new DOMParser().parseFromString(input, "text/html");
  return doc.documentElement.textContent;
}
var initialDataEl = document.getElementById('wf-initial-data');
var initialData = {};
try {
  initialData = JSON.parse(htmlDecode(initialDataEl.innerHTML));
} catch (e) {
  console.log("Failed to parse initial data");
}
window.webflowInitialData = initialData;
window.datadogRumConfig = {"applicationId":"f3c57749-9e82-4d88-becf-68d52740251a","clientToken":"pub169e3de286f8f5a3a10c221c89a167d3","sampleRate":10,"replaySampleRate":0,"env":"prod","version":"dev-08f058f3d86aa7d1415d3667f1c024731a6a5535","allowedTracingOrigins":["https://*.design.webflow.com","https://webflow.com","http://webflow.com","https://www.webflow.com"]};
window.fullstoryConfig = {"orgId":"2Z5NT","isEnabled":false};
window.knockPublicApiKey = null;
window.exploConfig = {};
</script><script type="text/javascript" src="https://d3e54v103j8qbb.cloudfront.net/gen/js/webflow-designer.25f6e604386e51d3f6a3.js" crossorigin="anonymous"></script><script type="text/javascript">window.performance && typeof performance.mark === 'function' &&
  performance.mark('end js:execute-app');
</script><script>window.consentManagerConfig = function(exports) {
  var React = exports.React
  var bannerContent = React.createElement(
    "span",
    null,
    "We use cookies (and other similar technologies) to improve your experience on our site. By using this website you agree to our",
    " ",
    React.createElement(
      "a",
      { href: '/legal/cookie-policy', target: "_blank" },
      "Cookie Policy"
    ),
    "."
  );
  var preferencesDialogTitle = 'Cookie Preferences'
  var preferencesDialogContent = 'We use data collected by cookies and JavaScript libraries to improve the functionality of the Webflow Dashboard, deliver personalized advertisements, and increase the overall performance of our service.'
  var cancelDialogTitle = 'Are you sure you want to cancel?'
  var cancelDialogContent = React.createElement(
    'span',
    null,
    'Your preferences have not been saved. By continuing to use our website, you՚re agreeing to our',
    ' ',
    React.createElement(
      'a',
      {href: '/legal/cookie-policy', target: '_blank'},
      'Cookie Policy'
    ),
    '.'
  )
  var defaultDestinationBehavior = 'imply'

  return {
    container: '#consent-container',
    writeKey: 'f28KeHZ0I4kQbVZw6U8fqkBHQ5PyOMs0',
    cdnHost: 'analytics.webflow.com',
    shouldRequireConsent: async function () {
      try {
        const inEu = exports.inEU();
        let isAuth;

        if(inEu) {
          isAuth = await isAuthenticated();
        }

        // if in EU and not authenticated, require consent
        return inEu && !isAuth;
      } catch (e) {
        return true;
      }
    },
    bannerContent: bannerContent,
    preferencesDialogTitle: preferencesDialogTitle,
    preferencesDialogContent: preferencesDialogContent,
    cancelDialogTitle: cancelDialogTitle,
    cancelDialogContent: cancelDialogContent,
    defaultDestinationBehavior: defaultDestinationBehavior,
    onError: function(err) { console.error('SegmentConsentManager', err); },
    closeBehavior: function(categories) {
      return categories; // This sets them to the default value
    },
  }
}

var body = document.getElementsByTagName("body")[0];
var consentScript = document.createElement("script");
consentScript.setAttribute(
  "src",
  "https://unpkg.com/@segment/consent-manager@4.5.1/standalone/consent-manager.js"
);
consentScript.setAttribute(
  "integrity",
  "sha384-6m1+pfvSflZ20rCXvmOQ340ZQ4K4peogarq/HMfzcCXyB6ngUjpm3PuCGwvQy87Y"
);
consentScript.setAttribute("crossorigin", "anonymous");
consentScript.setAttribute("defer", "defer");
body.appendChild(consentScript);
</script><div id="consent-container"></div><script type="text/javascript">window._hostUrl = "https://webflow.com";
</script><script type="text/javascript">async function isAuthenticated() {
    try {
        let response = await fetch(`${window._hostUrl}/api/user/readOnlyData`, {
            method: 'GET',
            headers: {
                "Content-Type": "application/json;charset=UTF-8"
            },
            credentials: 'include'
        });
        return response.status === 200;
    } catch (error) {
        console.error('Error during authentication:', error);
        return false;
    }
}</script><script type="text/javascript">(function() {
  var isLoggedIn = "true" === "false";

  ////////////////////////////////////////////////////////////////////////////////
  // code shared between both logged in and logged out states

  function getFirstTouchCookie(firstTouchCookieKey) {
    if (!firstTouchCookieKey) return;
    return document.cookie.split(';').find(function(item) {
      return item.trim().indexOf(firstTouchCookieKey + '=') === 0;
    });
  }

  function setFirstTouchCookie(firstTouchCookieKey, firstTouchParams) {
    var expireDate = new Date();
    var domain;

    try {
      domain = new URL("https://webflow.com").hostname;
    } catch (err) {
      console.log(err);
      domain = window.location.hostname.toString();
    }

    expireDate.setTime(expireDate.getTime() + (365 * 24 * 60 * 60 * 1000));

    document.cookie = [
      firstTouchCookieKey,
      '=',
      encodeURIComponent(JSON.stringify(firstTouchParams)),
      ';secure',
      ';domain=.',
      domain,
      ';path=/',
      ';expires=',
      expireDate.toUTCString(),
    ].join('');
  }

  function parseFirstTouchParams(firstTouchCookieKey, firstTouchCookie) {
    try {
      return JSON.parse(decodeURIComponent(firstTouchCookie).trim().substring(firstTouchCookieKey.length + 1, firstTouchCookie.length))
    } catch (e) {
      console.log(e);
    }
  }

  // We apply a limit on a presignup breadcrumbs entry in order to not allow cookie to grow too big
  // (above 4000 bytes, which was a max size of cookies allowed by our infrastructure
  // when the issue was reported).
  //
  // A sophisticated approach could be to check length of a whole cookie and, if too big in bytes,
  // decide what data to remove from the cookie. But we decided to take a simplified one:
  // we know that "presignup_breadcrumbs" is so far the only first touch cookie's field which
  // grows a lot over time (adding a URL to an array potentially on every page visit), therefore 
  // we can focus on that field only. Next, we do not count real bytes in a serialized cookie,
  // but string chars (they could differ for example for emojis, but we do not expect emojis in URLs).
  // Moreover, we ignore bytes added between array entries in a serialized JSON (double quotes, commas,
  // spaces). Instead, we limit URLs to arbitrarily chosen:
  // - max 10 URLs
  // - max 1000 characters (sum of those URLs)
  //
  function limitPresignupBreadcrumbs(breadcrumbs) {
    var urlsLimit = 10;
    var charsLimit = 1000;

    var limitedBreadcrumbs = [];

    var charsTotal = 0;
    for (let i = breadcrumbs.length - 1; i >= 0; i--) {
      if (limitedBreadcrumbs.length < urlsLimit) {
        charsTotal += breadcrumbs[i].length;
        if (charsTotal <= charsLimit) {
          limitedBreadcrumbs.push(breadcrumbs[i]);
        }
      }
    }
    limitedBreadcrumbs.reverse();
    return limitedBreadcrumbs;
  }

  ////////////////////////////////////////////////////////////////////////////////
  // code for a logged in user

  if (isLoggedIn) {
    var a_uid = "";
    var a_pl = "";
    var a_cr = "";
    var a_school = "";

    // This is useful to quickly access user variables via window object
    var _dashboard_vars = {
      subscriptionPlan: a_pl,
      created: a_cr,
    };

    window.wm_userRole = _dashboard_vars;

    // Here we define user properties that are easier to define on the
    // client side
    var _user_meta = {
      'last open dashboard': new Date()
    };

    if (typeof dashboard != 'undefined' && dashboard.queryObj().school) {
      // school discount
      _user_meta['School Discount'] = a_school ? true : false;
    }

    // Only call identify on dashboard paths
    var pathname = window.location.pathname;
    if (/^/dashboard(/.*)?$/.test(pathname) ||
      /^/websites(/.*)?$/.test(pathname) ||
      /^/designers(/.*)?$/.test(pathname) ||
      /^/website(/.*)?$/.test(pathname) ||
      /^/team(/.*)?$/.test(pathname)) {
      analytics.identify(a_uid, _user_meta);

      // Identify user on Tatari for TV ads conversions
      if (window.tatari && typeof window.tatari.identify === 'function') {
        window.tatari.identify(a_uid);
      }
    }

    (function limitSizeOfPreviouslyCreatedFirstTouchCookie() {
      var firstTouchCookieKey = window.SharedConfig && window.SharedConfig.FIRST_TOUCH_COOKIE;
      if (!firstTouchCookieKey) return;

      var firstTouchCookie = getFirstTouchCookie(firstTouchCookieKey);
      if (!firstTouchCookie) return;

      var firstTouchParams = parseFirstTouchParams(firstTouchCookieKey, firstTouchCookie);
      if (!firstTouchParams) return;

      if (firstTouchParams.presignup_breadcrumbs) {
        firstTouchParams.presignup_breadcrumbs = limitPresignupBreadcrumbs(firstTouchParams.presignup_breadcrumbs);
        setFirstTouchCookie(firstTouchCookieKey, firstTouchParams);
      }
    })();

    return;
  }

  ////////////////////////////////////////////////////////////////////////////////
  // code for a logged out / anonymous user

  if (!isLoggedIn) {
    function getQueryParam(param) {
      var query = window.location.search.substring(1);
      var params = query.split('&');
      for (var i = 0; i < params.length; i++) {
        var pair = params[i].split('=');
        if (decodeURIComponent(pair[0]) === param) {
          return decodeURIComponent(pair[1]);
        }
      }
      return null;
    }

    function getURLDomainName(url) {
      var a = document.createElement('a');
      a.href = url;
      return a.hostname;
    }

    function getBreadcrumb() {
      var match = 'utm_';
      var hasUtm = window.location.search.substr(1).split('&').some(function(query) {
        var chunks = query.split('=');
        var key = chunks[0];
        return key.startsWith(match);
      });

      return (hasUtm) ?
        window.location.host +
        window.location.pathname +
        window.location.search +
        window.location.hash :
        '';
    }

    function handleFirstTouchParams(firstTouchCookieKey, gatherFirstTouchParamsFn, updateBreadcrumbInFirstTouchParamsFn) {
      if (!firstTouchCookieKey) return;

      var firstTouchCookie = getFirstTouchCookie(firstTouchCookieKey);
      var breadcrumb = getBreadcrumb();

      if (!firstTouchCookie) {
        var firstTouchParams = gatherFirstTouchParamsFn(breadcrumb);
        setFirstTouchCookie(firstTouchCookieKey, firstTouchParams);
      } else if (breadcrumb) {
        var firstTouchParams = parseFirstTouchParams(firstTouchCookieKey, firstTouchCookie);
        if (!firstTouchParams) return;
        updateBreadcrumbInFirstTouchParamsFn(firstTouchParams, breadcrumb);
        setFirstTouchCookie(firstTouchCookieKey, firstTouchParams);
      }
    }

    if (window.self !== window.top) {
      // If this is loaded in an iframe, skip setting the first touch cookie.
      // We load the dashboard sign up page in an iframe (within a modal) on marketing pages
      // and the iframe has the incorrect first touch parameters. 
      // Therefore, we'll let the marketing page itself set the cookie and skip setting it here.
      return;
    }

    handleFirstTouchParams(
      window.SharedConfig && window.SharedConfig.FIRST_TOUCH_COOKIE,
      function gatherFirstTouchParams(breadcrumb) {
        var firstTouchParams = {
          first_touch_date: new Date().toISOString(),
          initial_utm_campaign: getQueryParam('utm_campaign'),
          initial_utm_content: getQueryParam('utm_content'),
          initial_utm_medium: getQueryParam('utm_medium'),
          initial_utm_source: getQueryParam('utm_source'),
          initial_utm_term: getQueryParam('utm_term'),
          initial_gclid: getQueryParam('gclid'),
          initial_page_url: document.location.href,
        };
        if (document.referrer) {
          firstTouchParams['initial_referrer'] = document.referrer;
          firstTouchParams['initial_referring_domain'] = getURLDomainName(document.referrer);
        }
        if (breadcrumb) {
          firstTouchParams.presignup_breadcrumbs = limitPresignupBreadcrumbs([breadcrumb]);
        }
        return firstTouchParams;
      },
      function updateBreadcrumbInFirstTouchParams(firstTouchParams, breadcrumb) {
        if (!firstTouchParams.presignup_breadcrumbs) {
          firstTouchParams.presignup_breadcrumbs = [];
        }
        firstTouchParams.presignup_breadcrumbs.push(breadcrumb);
        firstTouchParams.presignup_breadcrumbs = limitPresignupBreadcrumbs(firstTouchParams.presignup_breadcrumbs);
      }
    );

  }

  ////////////////////////////////////////////////////////////////////////////////

})();</script><link href="//fonts.googleapis.com/css?family=Roboto:400,300,500|Inconsolata:400,700" rel="stylesheet" type="text/css"><link href="//fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;1,100&amp;family=Roboto+Mono&amp;display=swap" rel="stylesheet" type="text/css"><script>var apiKey = 'pk_2nNBXyHVOq9PIwSiawFPnWu2IHvHwxiv';
// Adapted from PartnerStack snippet https://app.partnerstack.com/settings/integrations/snippet
function loadPartnerStack() {
  var script = document.createElement('script');
  script.src = 'https://snippet.growsumo.com/growsumo.min.js';
  script.type = 'text/javascript';
  script.async = 'true';
  script.onload = script.onreadystatechange = function() {
    var rs = this.readyState;
    if (rs && rs != 'complete' && rs != 'loaded') return;
    try {
      growsumo._initialize(apiKey);
      if (typeof(growsumoInit) === 'function') {
        growsumoInit();
      }
    } catch (e) {}
  };
  var topScript = document.getElementsByTagName('script')[0];
  topScript.parentNode.insertBefore(script, topScript);
}

if (Boolean(apiKey)) {
  loadPartnerStack();
}</script></body></html>/* End custom CSS */