{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/4cv8vjBJdeJzeTPPZ10g/SNy8UufsfHLdjwddEOoM/QZT3xtO72.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Button from\"#framer/local/canvasComponent/CrxtlJXor/CrxtlJXor.js\";import TestimonialsCard from\"#framer/local/canvasComponent/DcEsiXMOm/DcEsiXMOm.js\";import FAQs from\"#framer/local/canvasComponent/dF8FsQypY/dF8FsQypY.js\";import NavbarDark from\"#framer/local/canvasComponent/k4nurvAOW/k4nurvAOW.js\";import Cursor from\"#framer/local/canvasComponent/SXwzBqnCx/SXwzBqnCx.js\";import Footer from\"#framer/local/canvasComponent/WP34n8MOY/WP34n8MOY.js\";import*as sharedStyle3 from\"#framer/local/css/dhyMBQpYU/dhyMBQpYU.js\";import*as sharedStyle2 from\"#framer/local/css/EVj6p8sxi/EVj6p8sxi.js\";import*as sharedStyle from\"#framer/local/css/lez8u5z1Y/lez8u5z1Y.js\";import*as sharedStyle1 from\"#framer/local/css/uqBSN3l2_/uqBSN3l2_.js\";import metadataProvider from\"#framer/local/webPageMetadata/QZT3xtO72/QZT3xtO72.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const TestimonialsCardFonts=getFonts(TestimonialsCard);const ContainerWithFX=withFX(Container);const FAQsFonts=getFonts(FAQs);const FooterFonts=getFonts(Footer);const NavbarDarkFonts=getFonts(NavbarDark);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorFonts=getFonts(Cursor);const breakpoints={mx0V7tpnn:\"(max-width: 809px)\",OF4IOgHVL:\"(min-width: 810px) and (max-width: 1439px)\",uuljLICIy:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3jI7L\";const variantClassNames={mx0V7tpnn:\"framer-v-1eyn6m\",OF4IOgHVL:\"framer-v-8ww75t\",uuljLICIy:\"framer-v-14j6ae6\"};const transition1={damping:25,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:25,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:25,delay:.3,mass:1,stiffness:150,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:25};const transition4={damping:25,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:25};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:25};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:25};const transition5={damping:25,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:25};const transition6={damping:25,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:25};const transition7={damping:25,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:25};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:20};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:25};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:25};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:25};const transition8={damping:25,delay:.35,mass:1,stiffness:150,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:20};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:20};const transition9={damping:25,delay:.45,mass:1,stiffness:150,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:20};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:20};const transition10={damping:40,delay:0,mass:1,stiffness:250,type:\"spring\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"uuljLICIy\",Phone:\"mx0V7tpnn\",Tablet:\"OF4IOgHVL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uuljLICIy\"};};const cursor={component:Cursor,variant:\"knmBD9ypf\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({m5bldr:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"uuljLICIy\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a0d7ef09-de3c-43dc-9873-495fa71f24ad, rgb(3, 2, 8)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-14j6ae6\",className),\"data-framer-cursor\":\"m5bldr\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kecpqe\",\"data-framer-name\":\"Hero sections\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gntcsc\",\"data-framer-name\":\"Text content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8d2666\",\"data-framer-name\":\"Ellipse 387\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pa6l1i\",\"data-framer-name\":\"Ellipse 390\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1empiut\",\"data-framer-name\":\"Ellipse 391\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1j7tm\",\"data-framer-name\":\"Ellipse 386\"}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-dpcsb5\",\"data-border\":true,\"data-framer-appear-id\":\"dpcsb5\",\"data-framer-name\":\"Feature\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ktd6ul\",\"data-framer-name\":\"Ellipse 389\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-acunkb\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3827 1.51368C13.2927 0.661985 14.7073 0.661986 15.6173 1.51368L17.5292 3.30318C17.948 3.69516 18.4949 3.92169 19.0682 3.94066L21.6856 4.02726C22.9313 4.06847 23.9315 5.06873 23.9727 6.31443L24.0593 8.93175C24.0783 9.50506 24.3048 10.052 24.6968 10.4708L26.4863 12.3827C27.338 13.2927 27.338 14.7073 26.4863 15.6173L24.6968 17.5292C24.3048 17.948 24.0783 18.4949 24.0593 19.0682L23.9727 21.6856C23.9315 22.9313 22.9313 23.9315 21.6856 23.9727L19.0682 24.0593C18.4949 24.0783 17.948 24.3048 17.5292 24.6968L15.6173 26.4863C14.7073 27.338 13.2927 27.338 12.3827 26.4863L10.4708 24.6968C10.052 24.3048 9.50506 24.0783 8.93175 24.0593L6.31443 23.9727C5.06873 23.9315 4.06847 22.9313 4.02726 21.6856L3.94066 19.0682C3.92169 18.4949 3.69516 17.948 3.30318 17.5292L1.51368 15.6173C0.661985 14.7073 0.661986 13.2927 1.51368 12.3827L3.30318 10.4708C3.69516 10.052 3.92169 9.50506 3.94066 8.93175L4.02726 6.31443C4.06847 5.06873 5.06873 4.06847 6.31443 4.02726L8.93175 3.94066C9.50506 3.92169 10.052 3.69516 10.4708 3.30318L12.3827 1.51368Z\" fill=\"#353539\"/>\\n<path d=\"M18.6668 9.33398L9.3335 18.6673\" stroke=\"#13BA74\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M17.6667 19.3333C18.5871 19.3333 19.3333 18.5871 19.3333 17.6667C19.3333 16.7462 18.5871 16 17.6667 16C16.7462 16 16 16.7462 16 17.6667C16 18.5871 16.7462 19.3333 17.6667 19.3333Z\" stroke=\"#13BA74\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.3332 11.9993C11.2536 11.9993 11.9998 11.2532 11.9998 10.3327C11.9998 9.41221 11.2536 8.66602 10.3332 8.66602C9.4127 8.66602 8.6665 9.41221 8.6665 10.3327C8.6665 11.2532 9.4127 11.9993 10.3332 11.9993Z\" stroke=\"#13BA74\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Our Mission and Values\"})}),className:\"framer-x76o67\",\"data-framer-name\":\"20% Discount For 1 Month Account\",fonts:[\"GF;Lexend-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fla23t\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dwf9as\",\"data-styles-preset\":\"lez8u5z1Y\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(283deg, rgba(255, 255, 255, 0.46) 0%, rgb(255, 255, 255) 98%)\"},children:\"Choose the right pricing plan for you\"})})}),className:\"framer-13j3bff\",\"data-framer-appear-id\":\"13j3bff\",\"data-framer-name\":\"Build your dream website without the hassle\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Your organization wants to keep itself safe, secure and well governed, we get it. We have done all the hard work to ensure your organizational, employee and data are protected.\"})}),className:\"framer-1gmv31i\",\"data-framer-appear-id\":\"1gmv31i\",\"data-framer-name\":\"Your organization wants to keep itself safe, secure and well governed, we get it. We have done all the hard work to ensure your organizational, employee and data are protected.\",fonts:[\"GF;Lexend-regular\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5lhz9e\",\"data-framer-name\":\"Pricing \",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j5tls\",\"data-framer-name\":\"Tittles\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8ifdn4\",\"data-border\":true,\"data-framer-name\":\"Feature\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4g8so3\",\"data-framer-name\":\"icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v49rfn\",\"data-framer-name\":\"Star 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"28\" viewBox=\"0 0 29 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.8827 1.51368C13.7927 0.661985 15.2073 0.661986 16.1173 1.51368L18.0292 3.30318C18.448 3.69516 18.9949 3.92169 19.5682 3.94066L22.1856 4.02726C23.4313 4.06847 24.4315 5.06873 24.4727 6.31443L24.5593 8.93175C24.5783 9.50506 24.8048 10.052 25.1968 10.4708L26.9863 12.3827C27.838 13.2927 27.838 14.7073 26.9863 15.6173L25.1968 17.5292C24.8048 17.948 24.5783 18.4949 24.5593 19.0682L24.4727 21.6856C24.4315 22.9313 23.4313 23.9315 22.1856 23.9727L19.5682 24.0593C18.9949 24.0783 18.448 24.3048 18.0292 24.6968L16.1173 26.4863C15.2073 27.338 13.7927 27.338 12.8827 26.4863L10.9708 24.6968C10.552 24.3048 10.0051 24.0783 9.43175 24.0593L6.81443 23.9727C5.56873 23.9315 4.56847 22.9313 4.52726 21.6856L4.44066 19.0682C4.42169 18.4949 4.19516 17.948 3.80318 17.5292L2.01368 15.6173C1.16199 14.7073 1.16199 13.2927 2.01368 12.3827L3.80318 10.4708C4.19516 10.052 4.42169 9.50506 4.44066 8.93175L4.52726 6.31443C4.56847 5.06873 5.56873 4.06847 6.81443 4.02726L9.43175 3.94066C10.0051 3.92169 10.552 3.69516 10.9708 3.30318L12.8827 1.51368Z\" fill=\"#353539\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xkui5i\",\"data-framer-name\":\"fi-bs-money\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t02623\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"9\" viewBox=\"0 0 13 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5 9H0.5V1.75C0.5 1.28587 0.684374 0.840752 1.01256 0.512563C1.34075 0.184375 1.78587 0 2.25 0H10.75C11.2141 0 11.6592 0.184375 11.9874 0.512563C12.3156 0.840752 12.5 1.28587 12.5 1.75V9ZM2 7.5H11V1.75C11 1.6837 10.9737 1.62011 10.9268 1.57322C10.8799 1.52634 10.8163 1.5 10.75 1.5H2.25C2.1837 1.5 2.12011 1.52634 2.07322 1.57322C2.02634 1.62011 2 1.6837 2 1.75V7.5ZM6.5 6C6.20333 6 5.91332 5.91203 5.66664 5.7472C5.41997 5.58238 5.22771 5.34811 5.11418 5.07403C5.00065 4.79994 4.97094 4.49834 5.02882 4.20736C5.0867 3.91639 5.22956 3.64912 5.43934 3.43934C5.64912 3.22956 5.91639 3.0867 6.20736 3.02882C6.49834 2.97094 6.79994 3.00065 7.07403 3.11418C7.34811 3.22771 7.58238 3.41997 7.7472 3.66664C7.91203 3.91332 8 4.20333 8 4.5C8 4.89782 7.84196 5.27936 7.56066 5.56066C7.27936 5.84196 6.89782 6 6.5 6ZM3.25 2C3.10166 2 2.95666 2.04399 2.83332 2.1264C2.70999 2.20881 2.61386 2.32594 2.55709 2.46299C2.50032 2.60003 2.48547 2.75083 2.51441 2.89632C2.54335 3.0418 2.61478 3.17544 2.71967 3.28033C2.82456 3.38522 2.9582 3.45665 3.10368 3.48559C3.24917 3.51453 3.39997 3.49968 3.53701 3.44291C3.67406 3.38614 3.79119 3.29001 3.8736 3.16668C3.95601 3.04334 4 2.89834 4 2.75C4 2.55109 3.92098 2.36032 3.78033 2.21967C3.63968 2.07902 3.44891 2 3.25 2ZM9 2.75C9 2.89834 9.04399 3.04334 9.1264 3.16668C9.20881 3.29001 9.32594 3.38614 9.46299 3.44291C9.60003 3.49968 9.75083 3.51453 9.89632 3.48559C10.0418 3.45665 10.1754 3.38522 10.2803 3.28033C10.3852 3.17544 10.4566 3.0418 10.4856 2.89632C10.5145 2.75083 10.4997 2.60003 10.4429 2.46299C10.3861 2.32594 10.29 2.20881 10.1667 2.1264C10.0433 2.04399 9.89834 2 9.75 2C9.55109 2 9.36032 2.07902 9.21967 2.21967C9.07902 2.36032 9 2.55109 9 2.75ZM3.25 5.5C3.10166 5.5 2.95666 5.54399 2.83332 5.6264C2.70999 5.70881 2.61386 5.82594 2.55709 5.96299C2.50032 6.10003 2.48547 6.25083 2.51441 6.39632C2.54335 6.5418 2.61478 6.67544 2.71967 6.78033C2.82456 6.88522 2.9582 6.95665 3.10368 6.98559C3.24917 7.01453 3.39997 6.99967 3.53701 6.94291C3.67406 6.88614 3.79119 6.79001 3.8736 6.66668C3.95601 6.54334 4 6.39834 4 6.25C4 6.05109 3.92098 5.86032 3.78033 5.71967C3.63968 5.57902 3.44891 5.5 3.25 5.5ZM9 6.25C9 6.39834 9.04399 6.54334 9.1264 6.66668C9.20881 6.79001 9.32594 6.88614 9.46299 6.94291C9.60003 6.99967 9.75083 7.01453 9.89632 6.98559C10.0418 6.95665 10.1754 6.88522 10.2803 6.78033C10.3852 6.67544 10.4566 6.5418 10.4856 6.39632C10.5145 6.25083 10.4997 6.10003 10.4429 5.96299C10.3861 5.82594 10.29 5.70881 10.1667 5.6264C10.0433 5.54399 9.89834 5.5 9.75 5.5C9.55109 5.5 9.36032 5.57902 9.21967 5.71967C9.07902 5.86032 9 6.05109 9 6.25Z\" fill=\"#01F2A7\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Pricing\"})}),className:\"framer-20goo8\",\"data-framer-name\":\"Pricing\",fonts:[\"GF;Lexend-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gy2ol4\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12zg35w\",\"data-styles-preset\":\"uqBSN3l2_\",children:\"Choose the Perfect Plan for Your Business\"})}),className:\"framer-dkcbgs\",\"data-framer-name\":'\"Drive Business Growth with Actionable Insights\"',fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kzsfqp\",\"data-styles-preset\":\"EVj6p8sxi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlock Your Full Potential with Flexible Pricing\"})}),className:\"framer-1yuh12e\",\"data-framer-name\":\"Our advanced data analytics feature offers unparalleled real-time insights, allowing you to stay ahead of market trends and customer preferences.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tapt96\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rjdfd\",\"data-border\":true,\"data-framer-name\":\"Pricing card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amvqj0\",\"data-border\":true,\"data-framer-name\":\"Tittle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 198, 197)\",\"--framer-text-transform\":\"uppercase\"},children:\"Free\"})}),className:\"framer-1n2ja3v\",\"data-framer-name\":\"STANDERED\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjfcr9\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Free Forever\"})}),className:\"framer-em6vyy\",\"data-framer-name\":\"$85\",fonts:[\"GF;Lexend-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k3d8ta\",\"data-framer-name\":\"Informations\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yxpfw3\",\"data-framer-name\":\"Frame 39626\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5uv69\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Unlimited contacts\"})}),className:\"framer-vpgc7m\",\"data-framer-name\":\"Unlimited contacts\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddpx90\",\"data-framer-name\":\"Frame 39627\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kyrkzp\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"AI integration\"})}),className:\"framer-14a7dq0\",\"data-framer-name\":\"AI integration\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52nlfp\",\"data-framer-name\":\"Frame 39629\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1osqdlw\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Migration service\"})}),className:\"framer-sm7bnf\",\"data-framer-name\":\"Migration service\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14tfbx5\",\"data-framer-name\":\"Frame 39628\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kp55fr\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Collaborations & permissions\"})}),className:\"framer-178j2o6\",\"data-framer-name\":\"Collaborations & permissions\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 374px) - 64px)`,y:(componentViewport?.y||0)+0+576+80+344.8+0+0+64+836.6},OF4IOgHVL:{width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 1px), 374px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 318px) / 3, 1px), 374px) - 64px)`,y:(componentViewport?.y||0)+0+576+80+344.8+0+64+836.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8v0s8i-container\",nodeId:\"LPBrEUm9U\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{JPryOfVFO:resolvedLinks[2]},OF4IOgHVL:{JPryOfVFO:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"LPBrEUm9U\",IwQsMHdUp:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",JPryOfVFO:resolvedLinks[0],jxAiC6W_D:\"rgb(242, 242, 243)\",layoutId:\"LPBrEUm9U\",Retzofj_n:\"var(--token-91c155d7-c7ed-4eb1-a9d4-a2941334c334, rgb(255, 255, 255))\",RSgeLoDOV:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",style:{width:\"100%\"},u3mp7LAje:\"Get Started\",variant:\"GIw5rzfVI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dl82mu\",\"data-border\":true,\"data-framer-name\":\"Pricing card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wicnj\",\"data-border\":true,\"data-framer-name\":\"Frame 404\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 198, 197)\",\"--framer-text-transform\":\"uppercase\"},children:\"standard\"})}),className:\"framer-578eud\",\"data-framer-name\":\"STANDERED\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5az41s\",\"data-framer-name\":\"Frame 39630\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$85\"})}),className:\"framer-1l04bxs\",\"data-framer-name\":\"$85\",fonts:[\"GF;Lexend-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:\"/ per month\"})]}),className:\"framer-1041i0p\",\"data-framer-name\":\"/ per month\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182k1k6\",\"data-framer-name\":\"Frame 39628\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oaymhn\",\"data-framer-name\":\"Frame 39626\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-br2a57\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Unlimited contacts\"})}),className:\"framer-1rzn5g4\",\"data-framer-name\":\"Unlimited contacts\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ut1uvi\",\"data-framer-name\":\"Frame 39627\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-126390\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"AI integration\"})}),className:\"framer-18oz1fv\",\"data-framer-name\":\"AI integration\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmk56q\",\"data-framer-name\":\"Frame 39629\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n4f9nw\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Migration service\"})}),className:\"framer-17frfdm\",\"data-framer-name\":\"Migration service\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ll3wsa\",\"data-framer-name\":\"Frame 39628\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zbu3e\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Collaborations & permissions\"})}),className:\"framer-1ftjl64\",\"data-framer-name\":\"Collaborations & permissions\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 374px) - 64px)`,y:(componentViewport?.y||0)+0+576+80+344.8+0+1034.6+64+836.6},OF4IOgHVL:{width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 1px), 374px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 318px) / 3, 1px), 374px) - 64px)`,y:(componentViewport?.y||0)+0+576+80+344.8+0+64+836.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v1qeyn-container\",nodeId:\"om2rDrP9J\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{JPryOfVFO:resolvedLinks1[2]},OF4IOgHVL:{JPryOfVFO:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"om2rDrP9J\",IwQsMHdUp:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",JPryOfVFO:resolvedLinks1[0],jxAiC6W_D:\"rgb(242, 242, 243)\",layoutId:\"om2rDrP9J\",Retzofj_n:\"var(--token-91c155d7-c7ed-4eb1-a9d4-a2941334c334, rgb(255, 255, 255))\",RSgeLoDOV:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",style:{width:\"100%\"},u3mp7LAje:\"Get Started\",variant:\"CuogP4Sth\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vvsb7g\",\"data-border\":true,\"data-framer-name\":\"Pricing card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ajsuba\",\"data-border\":true,\"data-framer-name\":\"Frame 404\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(197, 198, 197)\",\"--framer-text-transform\":\"uppercase\"},children:\"pREMIUM\"})}),className:\"framer-mksoi5\",\"data-framer-name\":\"STANDERED\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j19ztd\",\"data-framer-name\":\"Frame 39630\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$120\"})}),className:\"framer-tl2ern\",\"data-framer-name\":\"$85\",fonts:[\"GF;Lexend-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(223, 223, 223)\"},children:\"/ per month\"})]}),className:\"framer-zbksok\",\"data-framer-name\":\"/ per month\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rjvfe8\",\"data-framer-name\":\"Frame 39628\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cnknes\",\"data-framer-name\":\"Frame 39626\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ehxajn\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Unlimited contacts\"})}),className:\"framer-e5aj3v\",\"data-framer-name\":\"Unlimited contacts\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-io9o0r\",\"data-framer-name\":\"Frame 39627\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-100s81l\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"AI integration\"})}),className:\"framer-y1rs6f\",\"data-framer-name\":\"AI integration\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8avky4\",\"data-framer-name\":\"Frame 39629\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xye8dw\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Migration service\"})}),className:\"framer-gqxx7k\",\"data-framer-name\":\"Migration service\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u17ac1\",\"data-framer-name\":\"Frame 39628\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9923hr\",\"data-framer-name\":\"Ellipse 382\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(197, 198, 197)\"},children:\"Collaborations & permissions\"})}),className:\"framer-7t10mx\",\"data-framer-name\":\"Collaborations & permissions\",fonts:[\"GF;Lexend-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 374px) - 64px)`,y:(componentViewport?.y||0)+0+576+80+344.8+0+2069.2+64+836.6},OF4IOgHVL:{width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 1px), 374px) - 64px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`calc(min(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 318px) / 3, 1px), 374px) - 64px)`,y:(componentViewport?.y||0)+0+576+80+344.8+0+64+836.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15qp3m0-container\",nodeId:\"CJJEQ1Avp\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{JPryOfVFO:resolvedLinks2[2]},OF4IOgHVL:{JPryOfVFO:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"CJJEQ1Avp\",IwQsMHdUp:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",JPryOfVFO:resolvedLinks2[0],jxAiC6W_D:\"rgb(242, 242, 243)\",layoutId:\"CJJEQ1Avp\",Retzofj_n:\"var(--token-91c155d7-c7ed-4eb1-a9d4-a2941334c334, rgb(255, 255, 255))\",RSgeLoDOV:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",style:{width:\"100%\"},u3mp7LAje:\"Get Started\",variant:\"GIw5rzfVI\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1li2wig\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-z2o3o\",\"data-styles-preset\":\"dhyMBQpYU\",children:\"Some of our trusted clients\"})}),className:\"framer-1w1hql3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q87hnj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iR88Nuo1c\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:.75,id:\"iR88Nuo1c\",layoutId:\"iR88Nuo1c\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d40r4k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w48g44\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:199,svg:'<svg width=\"199\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#B6B6B6\"><path d=\"M3.601 31.564a20.386 20.386 0 0 0 4.867 4.855l6.655-11.483L3.6 31.564ZM8.468 3.58a20.27 20.27 0 0 0-4.867 4.855l11.521 6.628L8.469 3.58Zm20.074-1.806A20.236 20.236 0 0 0 21.888 0v13.258l6.654-11.484ZM11.606 38.225c2.062.95 4.3 1.56 6.655 1.775V26.742l-6.655 11.483ZM36.554 8.436a20.038 20.038 0 0 0-4.874-4.848l-6.648 11.47 11.522-6.622ZM31.68 36.419a20.295 20.295 0 0 0 4.874-4.855l-11.522-6.628 6.648 11.483Zm8.468-18.229a20.038 20.038 0 0 0-1.78-6.63l-11.522 6.63h13.302ZM0 21.803a19.952 19.952 0 0 0 1.781 6.628l11.528-6.628H0ZM1.781 11.56a19.874 19.874 0 0 0-1.775 6.63H13.31L1.78 11.56Zm25.065 10.243 11.521 6.628a19.795 19.795 0 0 0 1.781-6.628H26.846ZM18.26 0a20.098 20.098 0 0 0-6.654 1.774l6.655 11.483V0Zm3.628 40a20.03 20.03 0 0 0 6.654-1.775l-6.654-11.483V40ZM35.295 2.411c0-1.326 1.09-2.411 2.433-2.411a2.419 2.419 0 0 1 2.42 2.411 2.422 2.422 0 0 1-2.42 2.424 2.429 2.429 0 0 1-2.433-2.424Zm4.462 0c0-1.176-.848-2.021-2.029-2.021-1.187 0-2.042.845-2.042 2.021 0 1.19.855 2.04 2.042 2.04 1.18 0 2.029-.85 2.029-2.04Zm-2.584 1.371h-.358V1.02h1.2c.718 0 .966.267.966.76 0 .534-.379.735-.862.774l.829 1.228h-.398l-.783-1.228h-.594v1.228Zm.49-1.553c.391 0 .933.065.933-.455 0-.383-.326-.435-.66-.435h-.763v.89h.49M63.27 15.533c-.131-1.761-2.03-2.938-3.922-2.938-4.566 0-5.408 4.16-5.408 7.409 0 3.802 1.155 7.396 5.18 7.396 1.964 0 3.764-.969 4.065-2.931h2.694c-.254 3.087-3.38 5.127-6.994 5.127-5.454 0-7.633-4.438-7.633-9.592 0-4.523 1.996-9.78 8.194-9.605 3.562.104 6.23 1.839 6.511 5.134H63.27Zm7.11 7.733c-.176 2.248.75 4.568 3.23 4.568 1.898 0 2.844-.734 3.131-2.6H79.3c-.385 2.912-2.636 4.361-5.709 4.361-4.13 0-5.767-2.904-5.767-6.68 0-3.757 1.899-6.895 5.97-6.895 3.842.078 5.662 2.502 5.662 6.043v1.203H70.38Zm6.511-1.677c.052-2.151-.92-3.808-3.281-3.808-2.023 0-3.23 1.709-3.23 3.808h6.511Zm7.444-3.301h.047c.822-1.612 2.617-2.268 3.895-2.268.894 0 4.874.233 4.874 4.34v8.852h-2.44v-8.065c0-2.118-.894-3.269-2.95-3.269 0 0-1.33-.078-2.354.949-.36.35-1.025.916-1.025 3.418v6.967H81.95v-12.81h2.388v1.886m12.66-1.892v-2.723l2.434-.767v3.49h2.968v1.761h-2.968v8.228c0 .916.717 1.345 1.591 1.345.379 0 .894-.047 1.273-.15v1.866c-.561.022-1.103.15-1.657.15a9.497 9.497 0 0 1-1.644-.125c-.385-.077-1.025-.28-1.436-.844-.437-.611-.56-.663-.56-2.372v-8.098h-2.206v-1.761h2.205m16.101.006h2.434v12.81h-2.382v-1.885h-.052c-.978 1.605-2.616 2.268-4.41 2.268-2.688 0-4.227-2.034-4.227-4.62v-8.573h2.439v7.578c0 2.223.509 3.854 2.838 3.854.999 0 2.356-.507 2.877-1.833.457-1.202.483-2.703.483-3.015v-6.584m8.116 12.81h-2.434v-12.81h2.434v2.47h.059c.358-1.755 1.989-2.651 3.757-2.651.307 0 .568.028.849.028v2.3c-.333-.123-.718-.123-1.051-.123-3.079.098-3.614 1.729-3.614 4.439v6.349m11.86 4.904h-2.485l1.95-4.959-5.356-12.757h2.714l4.026 10.106 4.097-10.106h2.609l-7.555 17.716Zm9.382-4.906v-18.43h3.973V26.15h8.018v3.06h-11.991Zm14.268-18.431h4.103v3.295h-4.103v-3.295Zm.13 5.622h3.843v12.809h-3.843v-12.81Zm11.345 1.475.048.085c.796-1.183 2.003-1.944 3.947-1.944 1.279 0 3.764.943 4.227 2.808a9 9 0 0 1 .261 2.04v8.345h-3.849v-7.707c-.02-1.378-.411-2.931-2.303-2.931-1.207 0-2.257 1.072-2.309 2.93v7.708h-3.843V16.403h3.823v1.475m16.034 3.711.052.047 3.791-5.38h4.28l-4.437 5.608 4.717 7.35h-4.482l-3.869-7.019-.052.052v6.967H180.4v-18.43h3.836V21.59m9.91-2.931c0-1.326 1.09-2.405 2.434-2.405a2.413 2.413 0 0 1 2.42 2.404 2.427 2.427 0 0 1-2.42 2.431 2.435 2.435 0 0 1-2.434-2.43Zm4.469 0c0-1.177-.855-2.022-2.035-2.022-1.188 0-2.042.845-2.042 2.021 0 1.19.854 2.041 2.042 2.041 1.18 0 2.035-.851 2.035-2.04Zm-2.59 1.37h-.359v-2.761h1.194c.724 0 .972.266.972.76 0 .533-.378.735-.861.774l.829 1.228h-.405l-.776-1.229h-.594v1.229Zm.489-1.546c.385 0 .927.065.927-.461 0-.384-.32-.435-.653-.435h-.763v.896h.489\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h199v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qx0jw6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rw50e3\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:159,svg:'<svg width=\"159\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#B6B6B6\"><path d=\"M24.363 7.759c0 4.01-3.306 7.26-7.385 7.26s-7.385-3.25-7.385-7.26C9.593 3.75 12.9.5 16.978.5c4.078 0 7.385 3.25 7.385 7.259ZM7.385 16.833c-4.079 0-7.385 3.25-7.385 7.26C0 28.1 3.306 31.35 7.385 31.35c4.078 0 7.385-3.25 7.385-7.259 0-4.01-3.307-7.259-7.385-7.259Zm19.186 0c-4.078 0-7.385 3.25-7.385 7.26 0 4.008 3.307 7.258 7.385 7.258 4.078 0 7.385-3.25 7.385-7.259 0-4.01-3.307-7.26-7.385-7.26Zm33.369 7.172c.097 1.077.973 2.448 2.492 2.448h.888a.624.624 0 0 0 .626-.616V6.634h-.003a.622.622 0 0 0-.623-.583h-2.753a.622.622 0 0 0-.623.583h-.003v1.56c-1.687-2.043-4.345-2.891-7.012-2.891-6.06 0-10.973 4.833-10.973 10.795s4.913 10.796 10.973 10.796c2.667 0 5.572-1.017 7.011-2.891v.002Zm-7-.89c-3.854 0-6.98-3.141-6.98-7.017 0-3.875 3.126-7.017 6.98-7.017 3.854 0 6.979 3.142 6.979 7.017 0 3.876-3.125 7.017-6.979 7.017Zm51.845.89c.096 1.077.972 2.448 2.491 2.448h.888a.623.623 0 0 0 .626-.616V6.634h-.003a.623.623 0 0 0-.623-.583h-2.753a.623.623 0 0 0-.623.583h-.003v1.56c-1.687-2.043-4.346-2.891-7.012-2.891-6.06 0-10.973 4.833-10.973 10.795s4.913 10.796 10.973 10.796c2.666 0 5.572-1.017 7.011-2.891l.001.002Zm-7.001-.89c-3.854 0-6.98-3.141-6.98-7.017 0-3.875 3.126-7.017 6.98-7.017 3.854 0 6.979 3.142 6.979 7.017 0 3.876-3.125 7.017-6.98 7.017Zm57.131.89c.097 1.077.973 2.448 2.491 2.448h.888a.624.624 0 0 0 .627-.616V6.634h-.004a.622.622 0 0 0-.623-.583h-2.752a.622.622 0 0 0-.623.583h-.004v1.56c-1.686-2.043-4.345-2.891-7.011-2.891-6.061 0-10.974 4.833-10.974 10.795s4.913 10.796 10.974 10.796c2.666 0 5.572-1.017 7.011-2.891v.002Zm-7-.89c-3.855 0-6.98-3.141-6.98-7.017 0-3.875 3.125-7.017 6.98-7.017 3.854 0 6.979 3.142 6.979 7.017 0 3.876-3.125 7.017-6.979 7.017Zm-14.464 1.551-.002-9.936h.001c0-5.602-3.593-9.38-9.321-9.38-2.734 0-4.976 1.555-5.767 2.891-.171-1.045-.735-2.143-2.484-2.143h-.891a.623.623 0 0 0-.626.617v19.204h.003c.018.323.29.583.623.583h2.753a.65.65 0 0 0 .123-.013c.018-.003.035-.01.053-.015.02-.006.042-.011.061-.02.025-.01.047-.023.07-.035l.033-.018a.566.566 0 0 0 .077-.06l.013-.01a.603.603 0 0 0 .192-.411h.004V14.575c0-3.009 2.479-5.448 5.538-5.448 3.058 0 5.537 2.44 5.537 5.448l.003 9.481v-.003l.002.026v1.84h.003c.018.322.29.582.623.582h2.753a.65.65 0 0 0 .123-.013c.016-.003.031-.01.047-.014.023-.006.046-.012.068-.02.022-.01.043-.022.064-.034.013-.007.027-.012.039-.02a.723.723 0 0 0 .072-.056c.005-.006.012-.01.017-.015a.569.569 0 0 0 .071-.08l.005-.005a.602.602 0 0 0 .116-.324l.001-.002h.003v-1.252Zm-62.929-3.411c1.838 1.253 3.843 1.86 5.77 1.86 1.837 0 3.735-.936 3.735-2.565 0-2.177-4.136-2.515-6.735-3.384-2.6-.869-4.838-2.665-4.838-5.574 0-4.451 4.031-6.29 7.794-6.29 2.384 0 4.844.774 6.439 1.882.55.41.215.88.215.88l-1.523 2.138c-.17.241-.47.45-.9.189-.429-.261-1.935-1.31-4.23-1.31-2.297 0-3.68 1.043-3.68 2.336 0 1.55 1.798 2.038 3.903 2.566 3.669.973 7.67 2.142 7.67 6.567 0 3.921-3.728 6.345-7.85 6.345-3.122 0-5.781-.876-8.011-2.486-.465-.457-.14-.882-.14-.882l1.514-2.128c.308-.398.697-.26.867-.144Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .5)\" d=\"M0 0h159v31H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dlre72\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dpd9oi\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:142,svg:'<svg width=\"142\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.525 31.594H1.667L8.76 6.71h18.157l-1.73 5.905H15.92l-1.188 4.236h9.266l-1.562 5.435h-9.265l-2.646 9.307Zm20.497 0h-8.755l5.192-18.178h8.754l-5.191 18.178Zm5.667-19.913h-8.755l1.425-4.97h8.755l-1.425 4.97Zm17.047 19.913H45.15l.61-2.034c-1.731 1.433-3.495 2.467-6.311 2.467-2.852 0-4.649-1.335-4.649-4.17 0-3.134 1.256-7.805 3.122-11.073 1.357-2.435 3.8-3.702 6.685-3.702 2.476 0 4.309 1.068 5.023 2.4l2.444-8.771h8.754l-7.092 24.883Zm-6.584-12.776c-.782 0-1.56.235-2.002 1.301-.645 1.534-1.222 3.036-1.222 4.536 0 .701.51 1.301 1.357 1.301.68 0 1.12-.2 1.493-.432l1.766-5.972a1.763 1.763 0 0 0-1.392-.734Zm31.306 4.838h-12.08c-.24.966-.476 1.635-.476 2.4 0 .368.068 1.302 1.29 1.302 1.22 0 1.764-.468 2.273-2.235h8.586c-1.086 5.17-7.33 6.937-11.165 6.937-5.193 0-9.231-.734-9.231-5.636 0-2.702 1.39-7.172 3.225-9.539 2.205-2.835 6.04-3.9 9.57-3.9 5.43 0 8.958 1.1 8.958 5.634 0 1.102-.474 3.535-.95 5.037Zm-8.756-6.103c-1.085 0-1.831.733-2.307 2.567h3.597c.102-.367.238-.933.238-1.267 0-1-.612-1.3-1.528-1.3Zm17.555 14.041h-8.756L85.594 6.71h8.756l-7.093 24.883Zm11.569 0h-8.758l5.193-18.178h8.756l-5.191 18.178Zm5.666-19.913h-8.755l1.425-4.97h8.756l-1.426 4.97Zm15.741 1.734.762 4.102h-6.701l-1.969 6.905c-.169.533-.306 1.2-.306 1.634 0 .8.341 1.068 1.528 1.068h1.867l-1.29 4.469h-7.805c-2.58 0-3.565-1.235-3.565-3.104 0-.764.103-1.6.375-2.534l4.751-16.576h8.755l-1.154 4.036h4.752ZM1.488 34.388l2.183-.003L2.28 38.86H.104l1.384-4.473Zm7.618.004 3.192-.002.819 2.984h.022l.924-2.985 1.894-.002-1.4 4.465-3.054.011-.886-3.188h-.015l-.968 3.182-1.895.001 1.367-4.465v-.001Zm10.989.003 2.404-.001.42 2.812 2.198-2.814 2.224-.003-3.667 4.466-2.667.002-.912-4.463v.001Zm11.43.001 4.964-.003-.28.904-2.854.003-.277.917h2.677l-.268.861-2.675.001-.277.886 2.884-.003-.29.906-4.992.003 1.388-4.475Zm21.322 1.09h-1.7l.337-1.085 5.58-.005-.336 1.086-1.7.002-1.042 3.366-2.18.003 1.041-3.368Zm8.733-1.096 3.305-.002.16 2.986h.014l1.971-2.987 3.323-.004-1.38 4.475-2.023.002 1.037-3.37h-.016l-2.456 3.371-2.108.003-.298-3.37h-.022l-1.036 3.36-1.851.001 1.38-4.465Zm22.665.002 3.19-.002.821 2.985h.021l.924-2.987 1.893-.001-1.385 4.476-3.094-.009-.86-3.18h-.013l-.992 3.181-1.894.002 1.39-4.465Zm12.082 1.086h-1.701l.337-1.086 5.58-.003-.335 1.085-1.701.002-1.041 3.377-2.182.003 1.043-3.379Zm-53.148.27c-.049-.05-.051-.134-.031-.203.071-.227.36-.377.821-.377.272 0 .69.03.809.123a.31.31 0 0 1 .123.363h1.933c.227-.799-.284-1.313-2.466-1.312-2.074.003-3.25.44-3.552 1.414-.078.255-.088.568.126.779.535.522 2.946.73 3.15 1.011.04.057.056.125.031.205-.11.36-.628.452-1.08.452-.288 0-.66-.061-.768-.178a.392.392 0 0 1-.044-.412l-2.023.004c-.203.693-.29 1.414 2.523 1.413 2.36-.003 3.44-.571 3.712-1.453.134-.432 0-.671-.152-.826-.524-.53-2.86-.725-3.112-1.002m31.615-1.352 4.965-.004-.28.904-2.854.002-.277.917h2.676l-.268.861-2.675.001-.276.887 2.883-.002-.29.905-4.992.005 1.388-4.477Z\" fill=\"#B6B6B6\"/><path d=\"m132.052 13.415-4.751 10.072.136-10.072h-8.857l1.697 18.178c-.217 1.064-.576 1.664-1.255 1.96-.743.325-2.424.268-3.016.235l-.107.006-1.396 4.939 5.976.006c3.53 0 5.261-1.744 7.772-5.612l12.761-19.713h-8.96m-25.847 22.323c-.048-.051-.049-.136-.031-.204.073-.228.361-.377.821-.377.272 0 .689.03.809.123.129.09.169.228.124.363h1.932c.229-.799-.284-1.314-2.466-1.312-2.073.002-3.249.44-3.55 1.414-.079.254-.089.568.124.778.535.523 2.946.73 3.15 1.012a.22.22 0 0 1 .032.206c-.11.359-.629.45-1.08.451-.289 0-.662-.06-.769-.178a.395.395 0 0 1-.043-.412l-2.023.002c-.204.694-.29 1.415 2.523 1.414 2.359-.004 3.439-.57 3.712-1.454.134-.432.001-.671-.153-.824-.524-.53-2.859-.726-3.112-1.003m27.228-4.476c-.877 0-1.586-.698-1.586-1.559 0-.86.709-1.558 1.586-1.558.875 0 1.585.698 1.585 1.558 0 .86-.71 1.559-1.585 1.559Zm0-3.453c-1.064 0-1.928.85-1.928 1.894s.864 1.895 1.928 1.895c1.061 0 1.926-.85 1.926-1.895 0-1.044-.865-1.894-1.926-1.894Z\" fill=\"#B6B6B6\"/><path d=\"M133.102 29.57v-.548h.264c.226-.005.473.01.473.272s-.247.276-.473.276h-.264Zm1.103-.261c0-.378-.224-.59-.703-.59h-.749v1.954h.349v-.8h.264l.498.8h.382l-.519-.828c.272-.033.478-.198.478-.536Zm-2.166-15.849-4.736 10.038.136-10.039h-8.827l1.691 18.115c-.216 1.061-.573 1.658-1.25 1.954-.741.323-2.416.266-3.006.233l-.106.006-1.392 4.923 5.955.005c3.519 0 5.244-1.737 7.746-5.592l12.716-19.644h-8.927Z\" fill=\"#B6B6B6\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-157kxn1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z9yymj\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:191,svg:'<svg width=\"191\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#AAA\"><path d=\"m11.536 17.649 7.43-8.156 7.435 8.16 4.324-4.746L18.966 0 7.212 12.903l4.324 4.746ZM8.482 21 4.16 16.254-.165 21l4.323 4.746L8.482 21Zm3.054 3.352 7.43 8.156 7.435-8.16 4.326 4.743-.002.003L18.966 42 7.212 29.098l-.006-.007 4.33-4.74Zm22.238 1.396 4.324-4.746-4.323-4.746-4.324 4.746 4.323 4.746Z\"/><path d=\"M23.352 20.998h.002l-4.388-4.816-3.242 3.559-.373.409-.768.843-.006.007.006.007 4.383 4.812 4.388-4.816.002-.003-.004-.002Zm21.487-10.82h9.403c2.334 0 4.1.657 5.295 1.972.926 1.019 1.389 2.28 1.389 3.787V16c0 .636-.072 1.199-.216 1.686a5.476 5.476 0 0 1-.576 1.32c-.24.393-.519.738-.835 1.035a5.603 5.603 0 0 1-1.023.763c1.173.489 2.097 1.151 2.77 1.989.673.838 1.01 2 1.01 3.484v.063c0 1.019-.178 1.91-.535 2.673a5.074 5.074 0 0 1-1.534 1.91c-.666.509-1.466.89-2.402 1.145-.935.254-1.972.381-3.11.381h-9.636V10.178Zm8.463 9.004c.986 0 1.769-.185 2.348-.557.58-.371.87-.97.87-1.797v-.064c0-.742-.252-1.31-.754-1.702-.503-.393-1.227-.59-2.174-.59h-4.406v4.71h4.116Zm1.189 8.973c.985 0 1.758-.196 2.319-.589.56-.392.84-1.002.84-1.83v-.063c0-.742-.26-1.331-.782-1.766-.522-.434-1.363-.652-2.522-.652h-5.16v4.9h5.305Zm13.166-17.977h4.464V32.45h-4.464V10.178Zm11.225 0h4.116l9.508 13.713V10.178h4.406V32.45h-3.797l-9.827-14.159v14.16h-4.406V10.177Zm31.544-.16h4.116l8.697 22.43h-4.667l-1.856-4.994h-8.58l-1.855 4.995h-4.551l8.696-22.431Zm4.696 13.108-2.696-7.222-2.695 7.222h5.391Zm12.935-12.948h4.117l9.507 13.713V10.178h4.406V32.45h-3.797l-9.827-14.159v14.16h-4.406V10.177Zm34.095 22.652c-1.489 0-2.87-.297-4.145-.89a10.187 10.187 0 0 1-3.305-2.434c-.928-1.029-1.653-2.243-2.174-3.643-.521-1.4-.782-2.896-.782-4.487v-.063c0-1.591.261-3.081.782-4.47.522-1.39 1.246-2.61 2.174-3.66a10.093 10.093 0 0 1 3.333-2.482c1.295-.604 2.726-.906 4.291-.906.946 0 1.811.085 2.593.254.783.17 1.493.403 2.131.7a9.09 9.09 0 0 1 1.769 1.082c.54.425 1.043.891 1.507 1.4l-2.841 3.595c-.793-.784-1.599-1.4-2.42-1.845-.822-.445-1.744-.668-2.769-.668-.85 0-1.638.18-2.362.541a5.66 5.66 0 0 0-1.87 1.495 7.146 7.146 0 0 0-1.217 2.211 8.192 8.192 0 0 0-.434 2.689v.063c0 .955.145 1.857.434 2.705.29.849.69 1.59 1.203 2.227a5.677 5.677 0 0 0 1.855 1.512 5.165 5.165 0 0 0 2.391.556c1.16 0 2.14-.233 2.942-.7.802-.466 1.6-1.102 2.392-1.909l2.841 3.15a15.354 15.354 0 0 1-1.624 1.654 9.537 9.537 0 0 1-1.841 1.258 8.946 8.946 0 0 1-2.188.795c-.793.18-1.681.27-2.666.27Zm13.572-22.652H191v4.359h-10.87v4.518h9.566v4.359h-9.566v4.677h11.016v4.36h-15.422V10.177Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h191v42H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-152xd2u\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.4,intrinsicWidth:120.8,pixelHeight:38,pixelWidth:151,src:\"https://framerusercontent.com/images/t5zs4eFKHjGbS1D3VLQru0DAqg.svg\"},className:\"framer-1qrh6jg\",\"data-framer-name\":\"graphic\"})})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193o0dw\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zyce5d\",\"data-framer-name\":\"Tittles\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gujncc\",\"data-border\":true,\"data-framer-name\":\"Feature\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17qo7f\",\"data-framer-name\":\"icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b19hqd\",\"data-framer-name\":\"Star 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3827 1.51368C13.2927 0.661985 14.7073 0.661986 15.6173 1.51368L17.5292 3.30318C17.948 3.69516 18.4949 3.92169 19.0682 3.94066L21.6856 4.02726C22.9313 4.06847 23.9315 5.06873 23.9727 6.31443L24.0593 8.93175C24.0783 9.50506 24.3048 10.052 24.6968 10.4708L26.4863 12.3827C27.338 13.2927 27.338 14.7073 26.4863 15.6173L24.6968 17.5292C24.3048 17.948 24.0783 18.4949 24.0593 19.0682L23.9727 21.6856C23.9315 22.9313 22.9313 23.9315 21.6856 23.9727L19.0682 24.0593C18.4949 24.0783 17.948 24.3048 17.5292 24.6968L15.6173 26.4863C14.7073 27.338 13.2927 27.338 12.3827 26.4863L10.4708 24.6968C10.052 24.3048 9.50506 24.0783 8.93175 24.0593L6.31443 23.9727C5.06873 23.9315 4.06847 22.9313 4.02726 21.6856L3.94066 19.0682C3.92169 18.4949 3.69516 17.948 3.30318 17.5292L1.51368 15.6173C0.661985 14.7073 0.661986 13.2927 1.51368 12.3827L3.30318 10.4708C3.69516 10.052 3.92169 9.50506 3.94066 8.93175L4.02726 6.31443C4.06847 5.06873 5.06873 4.06847 6.31443 4.02726L8.93175 3.94066C9.50506 3.92169 10.052 3.69516 10.4708 3.30318L12.3827 1.51368Z\" fill=\"#353539\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwhbus\",\"data-framer-name\":\"fi-bs-rocket\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-an5rfo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6 5.25097C6 5.10264 6.04399 4.95763 6.1264 4.83429C6.20881 4.71096 6.32594 4.61483 6.46299 4.55806C6.60003 4.5013 6.75083 4.48644 6.89632 4.51538C7.0418 4.54432 7.17544 4.61575 7.28033 4.72064C7.38522 4.82553 7.45665 4.95917 7.48559 5.10465C7.51453 5.25014 7.49968 5.40094 7.44291 5.53798C7.38614 5.67503 7.29001 5.79216 7.16668 5.87457C7.04334 5.95699 6.89834 6.00097 6.75 6.00097C6.55109 6.00097 6.36032 5.92195 6.21967 5.7813C6.07902 5.64065 6 5.44988 6 5.25097ZM8.25 4.50097C8.39834 4.50097 8.54334 4.45699 8.66668 4.37457C8.79001 4.29216 8.88614 4.17503 8.94291 4.03798C8.99967 3.90094 9.01453 3.75014 8.98559 3.60465C8.95665 3.45917 8.88522 3.32553 8.78033 3.22064C8.67544 3.11575 8.5418 3.04432 8.39632 3.01538C8.25083 2.98644 8.10003 3.0013 7.96299 3.05806C7.82594 3.11483 7.70881 3.21096 7.6264 3.33429C7.54399 3.45763 7.5 3.60264 7.5 3.75097C7.5 3.94988 7.57902 4.14065 7.71967 4.2813C7.86032 4.42195 8.05109 4.50097 8.25 4.50097ZM5.25 7.50097C5.39834 7.50097 5.54334 7.45699 5.66668 7.37457C5.79001 7.29216 5.88614 7.17503 5.94291 7.03798C5.99968 6.90094 6.01453 6.75014 5.98559 6.60465C5.95665 6.45917 5.88522 6.32553 5.78033 6.22064C5.67544 6.11575 5.5418 6.04432 5.39632 6.01538C5.25083 5.98644 5.10003 6.0013 4.96299 6.05806C4.82594 6.11483 4.70881 6.21096 4.6264 6.33429C4.54399 6.45763 4.5 6.60264 4.5 6.75097C4.5 6.94988 4.57902 7.14065 4.71967 7.2813C4.86032 7.42195 5.05109 7.50097 5.25 7.50097ZM11.9205 1.77747L11.883 1.88197C11.139 3.94497 10.43 5.90747 8.9715 7.65097C8.73443 9.34381 7.88565 10.8912 6.5855 12.001H4.5V10.3345L3.6135 9.44797L2.6 10.461L1.54 9.40097L2.553 8.38747L1.6665 7.50097H0V5.41547C1.08781 4.06697 2.66189 3.19985 4.383 3.00097C6.118 1.56097 8.069 0.856973 10.119 0.117972L10.2235 0.0804725C10.4603 -0.00485052 10.7165 -0.0210223 10.9621 0.0338469C11.2077 0.0887161 11.4327 0.21236 11.6106 0.39033C11.7886 0.5683 11.9123 0.793245 11.9671 1.03888C12.022 1.28451 12.0058 1.54069 11.9205 1.77747ZM10.384 1.61697C8.206 2.40347 6.3175 3.12097 4.7 4.73697C4.0983 5.37723 3.56848 6.08143 3.12 6.83697L5.164 8.88097C5.91917 8.43213 6.62331 7.90252 7.264 7.30147C8.88 5.68347 9.6 3.79497 10.384 1.61697Z\" fill=\"#13BA74\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"TESTIMONIALS\"})}),className:\"framer-u6e4e9\",\"data-framer-name\":\"Explore Features\",fonts:[\"GF;Lexend-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xust9h\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12zg35w\",\"data-styles-preset\":\"uqBSN3l2_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover what our customers say about us\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12zg35w\",\"data-styles-preset\":\"uqBSN3l2_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Discover what our customers say about us\"})}),className:\"framer-1q6hj8u\",\"data-framer-name\":'\"Drive Business Growth with Actionable Insights\"',fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kzsfqp\",\"data-styles-preset\":\"EVj6p8sxi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore the testimonials and feedback from our valued customers to gain insights into their experiences and satisfaction with our SaaS solution.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kzsfqp\",\"data-styles-preset\":\"EVj6p8sxi\",style:{\"--framer-text-alignment\":\"left\"},children:\"Explore the testimonials and feedback from our valued customers to gain insights into their experiences and satisfaction with our SaaS solution.\"})}),className:\"framer-om021y\",\"data-framer-name\":\"Our advanced data analytics feature offers unparalleled real-time insights, allowing you to stay ahead of market trends and customer preferences.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f7e2d2\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+4475.2+80+344.8+0+0},OF4IOgHVL:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 318px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2414+80+276+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nsaaf5-container\",nodeId:\"hTeEqg5Wu\",rendersWithMotion:true,scopeId:\"QZT3xtO72\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialsCard,{height:\"100%\",HOClMmjgH:\"Senior Director at Acme\",id:\"hTeEqg5Wu\",layoutId:\"hTeEqg5Wu\",rhbR6V6xX:\"Chris Johnson \",style:{width:\"100%\"},width:\"100%\",zipEfvyEt:\"SalesRocket's SaaS AI Framer Template is a must-have for tech startups. It's helped us automate tasks, identify new opportunities, and stay ahead.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+4475.2+80+344.8+0+425},OF4IOgHVL:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 318px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2414+80+276+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-177fcvv-container\",nodeId:\"Tn0Z2eOI9\",rendersWithMotion:true,scopeId:\"QZT3xtO72\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialsCard,{height:\"100%\",HOClMmjgH:\"VP of Sales at Global Enterprises\",id:\"Tn0Z2eOI9\",layoutId:\"Tn0Z2eOI9\",rhbR6V6xX:\"John Smith\",style:{width:\"100%\"},VSi5FgFwV:addImageAlt({pixelHeight:99,pixelWidth:98,src:\"https://framerusercontent.com/images/717pjEEyARVT6RVX8DPgscRSTKA.jpg\"},\"\"),width:\"100%\",zipEfvyEt:\"The SalesRocket SaaS AI Framer Template has enabled us to work smarter. Its advanced analytics and AI-driven insights have delivered impressive results.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,y:(componentViewport?.y||0)+0+4475.2+80+344.8+0+850},OF4IOgHVL:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px) / 3, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:401,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 318px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2414+80+276+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16wuop4-container\",nodeId:\"XvV_GoSE4\",rendersWithMotion:true,scopeId:\"QZT3xtO72\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(TestimonialsCard,{height:\"100%\",HOClMmjgH:\"Founder of TechStartUpX\",id:\"XvV_GoSE4\",layoutId:\"XvV_GoSE4\",rhbR6V6xX:\"David Thompson\",style:{width:\"100%\"},VSi5FgFwV:addImageAlt({pixelHeight:99,pixelWidth:98,src:\"https://framerusercontent.com/images/SpjzJpqKFQXBNuKbU7xaAxaloxY.jpg\"},\"\"),width:\"100%\",zipEfvyEt:\"The SalesRocket SaaS AI Framer Template exceeded our expectations. It's user-friendly, customizable, and transformed our sales strategy.\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xxmtge\",\"data-framer-name\":\"FAQs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxvsja\",\"data-framer-name\":\"Tittles\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-351kzm\",\"data-border\":true,\"data-framer-name\":\"Frame 401\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9n2i99\",\"data-framer-name\":\"icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bklorj\",\"data-framer-name\":\"Star 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"28\" viewBox=\"0 0 29 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.8827 1.51368C13.7927 0.661985 15.2073 0.661986 16.1173 1.51368L18.0292 3.30318C18.448 3.69516 18.9949 3.92169 19.5682 3.94066L22.1856 4.02726C23.4313 4.06847 24.4315 5.06873 24.4727 6.31443L24.5593 8.93175C24.5783 9.50506 24.8048 10.052 25.1968 10.4708L26.9863 12.3827C27.838 13.2927 27.838 14.7073 26.9863 15.6173L25.1968 17.5292C24.8048 17.948 24.5783 18.4949 24.5593 19.0682L24.4727 21.6856C24.4315 22.9313 23.4313 23.9315 22.1856 23.9727L19.5682 24.0593C18.9949 24.0783 18.448 24.3048 18.0292 24.6968L16.1173 26.4863C15.2073 27.338 13.7927 27.338 12.8827 26.4863L10.9708 24.6968C10.552 24.3048 10.0051 24.0783 9.43175 24.0593L6.81443 23.9727C5.56873 23.9315 4.56847 22.9313 4.52726 21.6856L4.44066 19.0682C4.42169 18.4949 4.19516 17.948 3.80318 17.5292L2.01368 15.6173C1.16199 14.7073 1.16199 13.2927 2.01368 12.3827L3.80318 10.4708C4.19516 10.052 4.42169 9.50506 4.44066 8.93175L4.52726 6.31443C4.56847 5.06873 5.56873 4.06847 6.81443 4.02726L9.43175 3.94066C10.0051 3.92169 10.552 3.69516 10.9708 3.30318L12.8827 1.51368Z\" fill=\"#353539\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4vfmz\",\"data-framer-name\":\"fi-br-quote-right\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qpplmq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"10\" viewBox=\"0 0 6 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.5 0.5H2.5C1.96957 0.5 1.46086 0.710714 1.08579 1.08579C0.710714 1.46086 0.5 1.96957 0.5 2.5L0.5 4.5C0.5 4.76522 0.605357 5.01957 0.792893 5.20711C0.98043 5.39464 1.23478 5.5 1.5 5.5H4C3.99921 6.1628 3.73556 6.79822 3.26689 7.26689C2.79822 7.73556 2.1628 7.99921 1.5 8C1.30109 8 1.11032 8.07902 0.96967 8.21967C0.829018 8.36032 0.75 8.55109 0.75 8.75C0.75 8.94891 0.829018 9.13968 0.96967 9.28033C1.11032 9.42098 1.30109 9.5 1.5 9.5C2.5605 9.49881 3.57722 9.077 4.32711 8.32711C5.077 7.57722 5.49881 6.5605 5.5 5.5V1.5C5.5 1.23478 5.39464 0.98043 5.20711 0.792893C5.01957 0.605357 4.76522 0.5 4.5 0.5Z\" fill=\"#01F2A7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15o1ifa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"10\" viewBox=\"0 0 6 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.49999 0.5H2.49999C1.96956 0.5 1.46086 0.710714 1.08578 1.08579C0.710713 1.46086 0.5 1.96957 0.5 2.5V4.5C0.5 4.76522 0.605357 5.01957 0.792893 5.20711C0.980428 5.39464 1.23478 5.5 1.5 5.5H3.99999C3.9992 6.1628 3.73555 6.79822 3.26688 7.26689C2.79821 7.73556 2.16279 7.99921 1.5 8C1.30109 8 1.11032 8.07902 0.969668 8.21967C0.829017 8.36032 0.749999 8.55109 0.749999 8.75C0.749999 8.94891 0.829017 9.13968 0.969668 9.28033C1.11032 9.42098 1.30109 9.5 1.5 9.5C2.56049 9.49881 3.57721 9.077 4.3271 8.32711C5.07699 7.57722 5.49879 6.5605 5.49999 5.5V1.5C5.49999 1.23478 5.39463 0.98043 5.20709 0.792893C5.01956 0.605357 4.7652 0.5 4.49999 0.5Z\" fill=\"#01F2A7\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTUwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Queries\"})}),className:\"framer-kb597n\",\"data-framer-name\":\"Queries\",fonts:[\"GF;Lexend-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cm2g30\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-12zg35w\",\"data-styles-preset\":\"uqBSN3l2_\",children:[\"Got Questions? We've \",/*#__PURE__*/_jsx(\"br\",{}),\"Got Answers!\"]})}),className:\"framer-1iuj0m3\",\"data-framer-name\":'\"Drive Business Growth with Actionable Insights\"',fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kzsfqp\",\"data-styles-preset\":\"EVj6p8sxi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your Roadmap to Clarity\"})}),className:\"framer-4gc199\",\"data-framer-name\":\"Our advanced data analytics feature offers unparalleled real-time insights, allowing you to stay ahead of market trends and customer preferences.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3covg8\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jt9d1o\",\"data-framer-name\":\"FAQ\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 800px)`,y:(componentViewport?.y||0)+0+6311+0+344.8+0+0+0+0},OF4IOgHVL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 270px, 800px)`,y:(componentViewport?.y||0)+0+3331+0+344.8+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-prbpp4-container\",nodeId:\"N0CQTO7A1\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"N0CQTO7A1\",layoutId:\"N0CQTO7A1\",lWXojD9yc:\"SalesRocket is a leading provider of AI-powered sales solutions designed to revolutionize the way businesses drive revenue. Our mission is to empower sales teams with cutting-edge technology to achieve unparalleled success in today's competitive market.\",style:{width:\"100%\"},variant:\"I3agRNpKe\",width:\"100%\",WLpja9Lse:\"What is SalesRocket all about?\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15tqe6y\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lzniqm\",\"data-framer-name\":\"FAQ\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 800px)`,y:(componentViewport?.y||0)+0+6311+0+344.8+0+75+0+0},OF4IOgHVL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 270px, 800px)`,y:(componentViewport?.y||0)+0+3331+0+344.8+0+75+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lql6fe-container\",nodeId:\"NIEASCwyi\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"NIEASCwyi\",layoutId:\"NIEASCwyi\",lWXojD9yc:\"We'd love to connect with you! You can reach out to our team at SalesRocket via email at [email address], by phone at [phone number], or through our live chat feature on the website. Our dedicated team is here to assist you with any questions or inquiries you may have.\",style:{width:\"100%\"},variant:\"SZj3crV2K\",width:\"100%\",WLpja9Lse:\"How can I contact SalesRocket?\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7sptri\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rnkp46\",\"data-framer-name\":\"FAQ\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 800px)`,y:(componentViewport?.y||0)+0+6311+0+344.8+0+150+0+0},OF4IOgHVL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 270px, 800px)`,y:(componentViewport?.y||0)+0+3331+0+344.8+0+150+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z3c9qr-container\",nodeId:\"arX7qzj6B\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"arX7qzj6B\",layoutId:\"arX7qzj6B\",lWXojD9yc:\"Absolutely! SalesRocket serves customers globally, catering to businesses of all sizes and industries. Whether you're based in North America, Europe, Asia, or anywhere else in the world, SalesRocket is accessible to help you boost your sales performance.\",style:{width:\"100%\"},variant:\"SZj3crV2K\",width:\"100%\",WLpja9Lse:\"Is SalesRocket available internationally?\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ma5s1\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ym6nan\",\"data-framer-name\":\"FAQ\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 800px)`,y:(componentViewport?.y||0)+0+6311+0+344.8+0+225+0+0},OF4IOgHVL:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 270px, 800px)`,y:(componentViewport?.y||0)+0+3331+0+344.8+0+225+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vubsdi-container\",nodeId:\"p4DTkbTPX\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"p4DTkbTPX\",layoutId:\"p4DTkbTPX\",lWXojD9yc:\"At SalesRocket, we occasionally run special promotions and offer discounts to our valued customers. Be sure to subscribe to our newsletter or follow us on social media to stay updated on the latest offers and promotions. Additionally, our sales representatives are available to discuss customized pricing options to suit your specific needs and budget.\",style:{width:\"100%\"},variant:\"SZj3crV2K\",width:\"100%\",WLpja9Lse:\"Do you offer any discounts or promotions?\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u96mdi\",\"data-framer-name\":\"Line\"})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1flj4cr\",\"data-framer-name\":\"FAQs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16smclg\",\"data-framer-name\":\"Contents\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dabsk5\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12zg35w\",\"data-styles-preset\":\"uqBSN3l2_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let\u2019s try our service now!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12zg35w\",\"data-styles-preset\":\"uqBSN3l2_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Let\u2019s try our service now!\"})}),className:\"framer-18mw0do\",\"data-framer-name\":'\"Drive Business Growth with Actionable Insights\"',fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kzsfqp\",\"data-styles-preset\":\"EVj6p8sxi\",style:{\"--framer-text-alignment\":\"center\"},children:\"With the right credit card, you can improve your financial life by building credit, earning rewards and saving money.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kzsfqp\",\"data-styles-preset\":\"EVj6p8sxi\",style:{\"--framer-text-alignment\":\"left\"},children:\"With the right credit card, you can improve your financial life by building credit, earning rewards and saving money.\"})}),className:\"framer-9eeyby\",\"data-framer-name\":\"Our advanced data analytics feature offers unparalleled real-time insights, allowing you to stay ahead of market trends and customer preferences.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined},{href:{webPageId:\"CoB5f2hth\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1169px) - 48px, 350px)`,y:(componentViewport?.y||0)+0+7091.8+0+0+48+220.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,y:(componentViewport?.y||0)+0+4111.8+0+0+80+138.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13aw1qi-container\",nodeId:\"nuMZ1FtfA\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{JPryOfVFO:resolvedLinks3[2],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}},OF4IOgHVL:{JPryOfVFO:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"nuMZ1FtfA\",IwQsMHdUp:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",JPryOfVFO:resolvedLinks3[0],jxAiC6W_D:\"rgb(242, 242, 243)\",layoutId:\"nuMZ1FtfA\",Retzofj_n:\"var(--token-91c155d7-c7ed-4eb1-a9d4-a2941334c334, rgb(255, 255, 255))\",RSgeLoDOV:\"var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, rgb(19, 185, 115))\",style:{height:\"100%\"},u3mp7LAje:\"Get Started\",variant:\"CuogP4Sth\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{y:(componentViewport?.y||0)+0+7626.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:473,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4628.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xgajco-container\",nodeId:\"jFpXAKoLB\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{variant:\"tzxGGjXT4\"},OF4IOgHVL:{variant:\"JmvOW9enW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jFpXAKoLB\",layoutId:\"jFpXAKoLB\",style:{width:\"100%\"},variant:\"tXvnOMlRG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation22},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10jhfi8-container\",layoutScroll:true,nodeId:\"zBdyN8CFJ\",rendersWithMotion:true,scopeId:\"QZT3xtO72\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mx0V7tpnn:{variant:\"HaxF8MdHK\"},OF4IOgHVL:{variant:\"hVUH4Hu5q\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"zBdyN8CFJ\",layoutId:\"zBdyN8CFJ\",style:{width:\"100%\"},variant:\"C67yQvrtr\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j6cmpu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YbT8oslZV\",scopeId:\"QZT3xtO72\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"YbT8oslZV\",intensity:10,layoutId:\"YbT8oslZV\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3jI7L.framer-71tkni, .framer-3jI7L .framer-71tkni { display: block; }\",\".framer-3jI7L.framer-14j6ae6 { align-content: center; align-items: center; background-color: var(--token-a0d7ef09-de3c-43dc-9873-495fa71f24ad, #030208); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-3jI7L .framer-kecpqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1gntcsc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 954px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3jI7L .framer-8d2666 { -webkit-filter: blur(117px); aspect-ratio: 1 / 1; background: linear-gradient(180deg, rgba(195, 202, 204, 0.4) 0%, rgba(58, 88, 127, 0.4) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(117px); flex: none; height: var(--framer-aspect-ratio-supported, 231px); position: absolute; right: -21px; top: 12px; width: 231px; z-index: 1; }\",\".framer-3jI7L .framer-1pa6l1i { aspect-ratio: 1 / 1; background: radial-gradient(64.49999970853328% 64.49999970853328% at 73.99999963924289% 32.50000130802392%, #5c5d66 0%, rgb(77, 79, 88) 41.15224480628967%, rgb(56, 59, 68) 74.43576455116272%, rgb(42, 46, 56) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 126px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: absolute; right: -70px; width: 70px; z-index: 1; }\",\".framer-3jI7L .framer-1empiut { aspect-ratio: 1 / 1; background: radial-gradient(64.49999970853328% 64.49999970853328% at 73.99999963924289% 32.50000130802392%, #5c5d66 0%, rgb(77, 79, 88) 41.15224480628967%, rgb(56, 59, 68) 74.43576455116272%, rgb(42, 46, 56) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -8px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: -67px; position: absolute; width: 32px; z-index: 1; }\",\".framer-3jI7L .framer-1p1j7tm { -webkit-filter: blur(76.5px); aspect-ratio: 1 / 1; background: linear-gradient(180deg, rgba(33, 36, 46, 0.4) 0%, rgba(40, 43, 53, 0.4) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -24px; filter: blur(76.5px); flex: none; height: var(--framer-aspect-ratio-supported, 360px); left: -201px; opacity: 0.93; position: absolute; width: 360px; z-index: 1; }\",\".framer-3jI7L .framer-dpcsb5 { --border-bottom-width: 2px; --border-color: var(--token-979d8a31-ba9c-4868-8bc3-a2bd8883e6ef, #29282d); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: var(--token-b81173eb-f242-4952-943f-ce59b1af409a, #100f14); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3jI7L .framer-1ktd6ul { aspect-ratio: 1 / 1; background: radial-gradient(64.49999970853328% 64.49999970853328% at 73.99999963924289% 32.50000130802392%, rgba(92, 93, 102, 0.4) 0%, rgba(77, 79, 88, 0.4) 41.15224480628967%, rgba(56, 59, 68, 0.4) 74.43576455116272%, rgba(42, 46, 56, 0.4) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -6px; flex: none; position: absolute; right: -78px; top: -50px; width: var(--framer-aspect-ratio-supported, 100px); z-index: 1; }\",\".framer-3jI7L .framer-acunkb { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-3jI7L .framer-x76o67, .framer-3jI7L .framer-20goo8, .framer-3jI7L .framer-em6vyy, .framer-3jI7L .framer-1l04bxs, .framer-3jI7L .framer-1041i0p, .framer-3jI7L .framer-tl2ern, .framer-3jI7L .framer-zbksok, .framer-3jI7L .framer-u6e4e9, .framer-3jI7L .framer-kb597n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3jI7L .framer-1fla23t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-13j3bff { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3jI7L .framer-1gmv31i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-3jI7L .framer-5lhz9e, .framer-3jI7L .framer-193o0dw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 80px 135px 160px 135px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1j5tls, .framer-3jI7L .framer-1rxvsja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-8ifdn4, .framer-3jI7L .framer-1gujncc, .framer-3jI7L .framer-351kzm { --border-bottom-width: 1.5px; --border-color: #464646; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background: linear-gradient(180deg, #1f1f23 0%, rgb(46, 45, 53) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-3jI7L .framer-4g8so3, .framer-3jI7L .framer-17qo7f, .framer-3jI7L .framer-9n2i99 { flex: none; height: 28px; overflow: visible; position: relative; width: 28px; }\",\".framer-3jI7L .framer-v49rfn, .framer-3jI7L .framer-1bklorj { flex: none; height: 28px; left: 0px; position: absolute; top: 0px; width: 29px; }\",\".framer-3jI7L .framer-1xkui5i, .framer-3jI7L .framer-1qwhbus, .framer-3jI7L .framer-l4vfmz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 8px; overflow: hidden; position: absolute; top: 8px; width: 12px; }\",\".framer-3jI7L .framer-1t02623 { bottom: 2px; flex: none; left: 0px; position: absolute; right: 1px; top: 2px; }\",\".framer-3jI7L .framer-gy2ol4, .framer-3jI7L .framer-1cm2g30 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-dkcbgs, .framer-3jI7L .framer-1yuh12e, .framer-3jI7L .framer-1n2ja3v, .framer-3jI7L .framer-578eud, .framer-3jI7L .framer-mksoi5, .framer-3jI7L .framer-1iuj0m3, .framer-3jI7L .framer-4gc199, .framer-3jI7L .framer-18mw0do, .framer-3jI7L .framer-9eeyby { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3jI7L .framer-tapt96, .framer-3jI7L .framer-f7e2d2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1rjdfd, .framer-3jI7L .framer-1vvsb7g { --border-bottom-width: 1.5px; --border-color: #29282d; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 374px; overflow: visible; padding: 64px 32px 64px 32px; position: relative; width: 1px; }\",\".framer-3jI7L .framer-amvqj0, .framer-3jI7L .framer-3wicnj, .framer-3jI7L .framer-ajsuba { --border-bottom-width: 1px; --border-color: #353539; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 23px 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-tjfcr9, .framer-3jI7L .framer-5az41s, .framer-3jI7L .framer-j19ztd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-k3d8ta, .framer-3jI7L .framer-182k1k6, .framer-3jI7L .framer-rjvfe8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-yxpfw3, .framer-3jI7L .framer-1ddpx90, .framer-3jI7L .framer-52nlfp, .framer-3jI7L .framer-14tfbx5, .framer-3jI7L .framer-oaymhn, .framer-3jI7L .framer-ut1uvi, .framer-3jI7L .framer-cmk56q, .framer-3jI7L .framer-1ll3wsa, .framer-3jI7L .framer-1cnknes, .framer-3jI7L .framer-io9o0r, .framer-3jI7L .framer-8avky4, .framer-3jI7L .framer-u17ac1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1x5uv69, .framer-3jI7L .framer-1kyrkzp, .framer-3jI7L .framer-1osqdlw, .framer-3jI7L .framer-1kp55fr, .framer-3jI7L .framer-br2a57, .framer-3jI7L .framer-126390, .framer-3jI7L .framer-4zbu3e, .framer-3jI7L .framer-ehxajn, .framer-3jI7L .framer-100s81l, .framer-3jI7L .framer-xye8dw, .framer-3jI7L .framer-9923hr { aspect-ratio: 1 / 1; background-color: #13b973; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-3jI7L .framer-vpgc7m, .framer-3jI7L .framer-14a7dq0, .framer-3jI7L .framer-sm7bnf, .framer-3jI7L .framer-178j2o6, .framer-3jI7L .framer-1rzn5g4, .framer-3jI7L .framer-18oz1fv, .framer-3jI7L .framer-17frfdm, .framer-3jI7L .framer-1ftjl64, .framer-3jI7L .framer-e5aj3v, .framer-3jI7L .framer-y1rs6f, .framer-3jI7L .framer-gqxx7k, .framer-3jI7L .framer-7t10mx, .framer-3jI7L .framer-1q6hj8u { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3jI7L .framer-8v0s8i-container, .framer-3jI7L .framer-1v1qeyn-container, .framer-3jI7L .framer-15qp3m0-container, .framer-3jI7L .framer-prbpp4-container, .framer-3jI7L .framer-1lql6fe-container, .framer-3jI7L .framer-z3c9qr-container, .framer-3jI7L .framer-1vubsdi-container, .framer-3jI7L .framer-1xgajco-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1dl82mu { --border-bottom-width: 1.5px; --border-color: #29282d; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: var(--token-b81173eb-f242-4952-943f-ce59b1af409a, #100f14); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 374px; overflow: visible; padding: 64px 32px 64px 32px; position: relative; width: 1px; }\",\".framer-3jI7L .framer-n4f9nw { aspect-ratio: 1 / 1; background-color: var(--token-c6e4f112-a06d-4005-92a4-98431ae66318, #13b973); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-3jI7L .framer-1li2wig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 135px 80px 135px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1w1hql3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3jI7L .framer-q87hnj-container { flex: none; height: 89px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1d40r4k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 199px; }\",\".framer-3jI7L .framer-w48g44 { aspect-ratio: 4.975 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 199px; }\",\".framer-3jI7L .framer-qx0jw6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 159px; }\",\".framer-3jI7L .framer-1rw50e3 { aspect-ratio: 4.96875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 159px; }\",\".framer-3jI7L .framer-dlre72 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 142px; }\",\".framer-3jI7L .framer-dpd9oi { aspect-ratio: 3.55 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 142px; }\",\".framer-3jI7L .framer-157kxn1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 191px; }\",\".framer-3jI7L .framer-z9yymj { aspect-ratio: 4.5476190476190474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 191px; }\",\".framer-3jI7L .framer-152xd2u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 121px; }\",\".framer-3jI7L .framer-1qrh6jg { aspect-ratio: 3.973684210526316 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 121px; }\",\".framer-3jI7L .framer-zyce5d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1b19hqd { flex: none; height: 28px; left: 0px; position: absolute; top: 0px; width: 28px; }\",\".framer-3jI7L .framer-an5rfo { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-3jI7L .framer-1xust9h { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-om021y { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 420px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3jI7L .framer-1nsaaf5-container, .framer-3jI7L .framer-177fcvv-container, .framer-3jI7L .framer-16wuop4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-3jI7L .framer-xxmtge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 135px 160px 135px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-qpplmq { bottom: 2px; flex: none; left: 0px; position: absolute; right: 8px; top: 2px; }\",\".framer-3jI7L .framer-15o1ifa { bottom: 2px; flex: none; left: 6px; position: absolute; right: 1px; top: 2px; }\",\".framer-3jI7L .framer-3covg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1jt9d1o, .framer-3jI7L .framer-lzniqm, .framer-3jI7L .framer-rnkp46, .framer-3jI7L .framer-ym6nan { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-15tqe6y, .framer-3jI7L .framer-7sptri, .framer-3jI7L .framer-16ma5s1, .framer-3jI7L .framer-u96mdi { background-color: var(--token-979d8a31-ba9c-4868-8bc3-a2bd8883e6ef, #29282d); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1flj4cr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 135px 160px 135px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-16smclg { align-content: flex-end; align-items: flex-end; background: linear-gradient(197deg, #3b3b42 17%, rgb(22, 21, 33) 86%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1169px; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-3jI7L .framer-1dabsk5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 582px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3jI7L .framer-13aw1qi-container { flex: none; height: 58px; position: relative; width: auto; }\",\".framer-3jI7L .framer-10jhfi8-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-3jI7L .framer-1j6cmpu-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3jI7L.framer-14j6ae6, .framer-3jI7L .framer-kecpqe, .framer-3jI7L .framer-1gntcsc, .framer-3jI7L .framer-dpcsb5, .framer-3jI7L .framer-1fla23t, .framer-3jI7L .framer-5lhz9e, .framer-3jI7L .framer-1j5tls, .framer-3jI7L .framer-8ifdn4, .framer-3jI7L .framer-gy2ol4, .framer-3jI7L .framer-tapt96, .framer-3jI7L .framer-1rjdfd, .framer-3jI7L .framer-amvqj0, .framer-3jI7L .framer-tjfcr9, .framer-3jI7L .framer-k3d8ta, .framer-3jI7L .framer-yxpfw3, .framer-3jI7L .framer-1ddpx90, .framer-3jI7L .framer-52nlfp, .framer-3jI7L .framer-14tfbx5, .framer-3jI7L .framer-1dl82mu, .framer-3jI7L .framer-3wicnj, .framer-3jI7L .framer-5az41s, .framer-3jI7L .framer-182k1k6, .framer-3jI7L .framer-oaymhn, .framer-3jI7L .framer-ut1uvi, .framer-3jI7L .framer-cmk56q, .framer-3jI7L .framer-1ll3wsa, .framer-3jI7L .framer-1vvsb7g, .framer-3jI7L .framer-ajsuba, .framer-3jI7L .framer-j19ztd, .framer-3jI7L .framer-rjvfe8, .framer-3jI7L .framer-1cnknes, .framer-3jI7L .framer-io9o0r, .framer-3jI7L .framer-8avky4, .framer-3jI7L .framer-u17ac1, .framer-3jI7L .framer-1li2wig, .framer-3jI7L .framer-1d40r4k, .framer-3jI7L .framer-qx0jw6, .framer-3jI7L .framer-dlre72, .framer-3jI7L .framer-157kxn1, .framer-3jI7L .framer-152xd2u, .framer-3jI7L .framer-193o0dw, .framer-3jI7L .framer-zyce5d, .framer-3jI7L .framer-1gujncc, .framer-3jI7L .framer-1xust9h, .framer-3jI7L .framer-f7e2d2, .framer-3jI7L .framer-xxmtge, .framer-3jI7L .framer-1rxvsja, .framer-3jI7L .framer-351kzm, .framer-3jI7L .framer-1cm2g30, .framer-3jI7L .framer-3covg8, .framer-3jI7L .framer-1jt9d1o, .framer-3jI7L .framer-lzniqm, .framer-3jI7L .framer-rnkp46, .framer-3jI7L .framer-ym6nan, .framer-3jI7L .framer-1flj4cr, .framer-3jI7L .framer-1dabsk5 { gap: 0px; } .framer-3jI7L.framer-14j6ae6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3jI7L.framer-14j6ae6 > :first-child, .framer-3jI7L .framer-1gntcsc > :first-child, .framer-3jI7L .framer-1fla23t > :first-child, .framer-3jI7L .framer-5lhz9e > :first-child, .framer-3jI7L .framer-1j5tls > :first-child, .framer-3jI7L .framer-gy2ol4 > :first-child, .framer-3jI7L .framer-1rjdfd > :first-child, .framer-3jI7L .framer-amvqj0 > :first-child, .framer-3jI7L .framer-k3d8ta > :first-child, .framer-3jI7L .framer-1dl82mu > :first-child, .framer-3jI7L .framer-3wicnj > :first-child, .framer-3jI7L .framer-182k1k6 > :first-child, .framer-3jI7L .framer-1vvsb7g > :first-child, .framer-3jI7L .framer-ajsuba > :first-child, .framer-3jI7L .framer-rjvfe8 > :first-child, .framer-3jI7L .framer-1li2wig > :first-child, .framer-3jI7L .framer-193o0dw > :first-child, .framer-3jI7L .framer-zyce5d > :first-child, .framer-3jI7L .framer-xxmtge > :first-child, .framer-3jI7L .framer-1rxvsja > :first-child, .framer-3jI7L .framer-1cm2g30 > :first-child, .framer-3jI7L .framer-3covg8 > :first-child, .framer-3jI7L .framer-1jt9d1o > :first-child, .framer-3jI7L .framer-lzniqm > :first-child, .framer-3jI7L .framer-rnkp46 > :first-child, .framer-3jI7L .framer-ym6nan > :first-child, .framer-3jI7L .framer-1flj4cr > :first-child, .framer-3jI7L .framer-1dabsk5 > :first-child { margin-top: 0px; } .framer-3jI7L.framer-14j6ae6 > :last-child, .framer-3jI7L .framer-1gntcsc > :last-child, .framer-3jI7L .framer-1fla23t > :last-child, .framer-3jI7L .framer-5lhz9e > :last-child, .framer-3jI7L .framer-1j5tls > :last-child, .framer-3jI7L .framer-gy2ol4 > :last-child, .framer-3jI7L .framer-1rjdfd > :last-child, .framer-3jI7L .framer-amvqj0 > :last-child, .framer-3jI7L .framer-k3d8ta > :last-child, .framer-3jI7L .framer-1dl82mu > :last-child, .framer-3jI7L .framer-3wicnj > :last-child, .framer-3jI7L .framer-182k1k6 > :last-child, .framer-3jI7L .framer-1vvsb7g > :last-child, .framer-3jI7L .framer-ajsuba > :last-child, .framer-3jI7L .framer-rjvfe8 > :last-child, .framer-3jI7L .framer-1li2wig > :last-child, .framer-3jI7L .framer-193o0dw > :last-child, .framer-3jI7L .framer-zyce5d > :last-child, .framer-3jI7L .framer-xxmtge > :last-child, .framer-3jI7L .framer-1rxvsja > :last-child, .framer-3jI7L .framer-1cm2g30 > :last-child, .framer-3jI7L .framer-3covg8 > :last-child, .framer-3jI7L .framer-1jt9d1o > :last-child, .framer-3jI7L .framer-lzniqm > :last-child, .framer-3jI7L .framer-rnkp46 > :last-child, .framer-3jI7L .framer-ym6nan > :last-child, .framer-3jI7L .framer-1flj4cr > :last-child, .framer-3jI7L .framer-1dabsk5 > :last-child { margin-bottom: 0px; } .framer-3jI7L .framer-kecpqe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3jI7L .framer-kecpqe > :first-child, .framer-3jI7L .framer-dpcsb5 > :first-child, .framer-3jI7L .framer-8ifdn4 > :first-child, .framer-3jI7L .framer-tapt96 > :first-child, .framer-3jI7L .framer-tjfcr9 > :first-child, .framer-3jI7L .framer-yxpfw3 > :first-child, .framer-3jI7L .framer-1ddpx90 > :first-child, .framer-3jI7L .framer-52nlfp > :first-child, .framer-3jI7L .framer-14tfbx5 > :first-child, .framer-3jI7L .framer-5az41s > :first-child, .framer-3jI7L .framer-oaymhn > :first-child, .framer-3jI7L .framer-ut1uvi > :first-child, .framer-3jI7L .framer-cmk56q > :first-child, .framer-3jI7L .framer-1ll3wsa > :first-child, .framer-3jI7L .framer-j19ztd > :first-child, .framer-3jI7L .framer-1cnknes > :first-child, .framer-3jI7L .framer-io9o0r > :first-child, .framer-3jI7L .framer-8avky4 > :first-child, .framer-3jI7L .framer-u17ac1 > :first-child, .framer-3jI7L .framer-1d40r4k > :first-child, .framer-3jI7L .framer-qx0jw6 > :first-child, .framer-3jI7L .framer-dlre72 > :first-child, .framer-3jI7L .framer-157kxn1 > :first-child, .framer-3jI7L .framer-152xd2u > :first-child, .framer-3jI7L .framer-1gujncc > :first-child, .framer-3jI7L .framer-1xust9h > :first-child, .framer-3jI7L .framer-f7e2d2 > :first-child, .framer-3jI7L .framer-351kzm > :first-child { margin-left: 0px; } .framer-3jI7L .framer-kecpqe > :last-child, .framer-3jI7L .framer-dpcsb5 > :last-child, .framer-3jI7L .framer-8ifdn4 > :last-child, .framer-3jI7L .framer-tapt96 > :last-child, .framer-3jI7L .framer-tjfcr9 > :last-child, .framer-3jI7L .framer-yxpfw3 > :last-child, .framer-3jI7L .framer-1ddpx90 > :last-child, .framer-3jI7L .framer-52nlfp > :last-child, .framer-3jI7L .framer-14tfbx5 > :last-child, .framer-3jI7L .framer-5az41s > :last-child, .framer-3jI7L .framer-oaymhn > :last-child, .framer-3jI7L .framer-ut1uvi > :last-child, .framer-3jI7L .framer-cmk56q > :last-child, .framer-3jI7L .framer-1ll3wsa > :last-child, .framer-3jI7L .framer-j19ztd > :last-child, .framer-3jI7L .framer-1cnknes > :last-child, .framer-3jI7L .framer-io9o0r > :last-child, .framer-3jI7L .framer-8avky4 > :last-child, .framer-3jI7L .framer-u17ac1 > :last-child, .framer-3jI7L .framer-1d40r4k > :last-child, .framer-3jI7L .framer-qx0jw6 > :last-child, .framer-3jI7L .framer-dlre72 > :last-child, .framer-3jI7L .framer-157kxn1 > :last-child, .framer-3jI7L .framer-152xd2u > :last-child, .framer-3jI7L .framer-1gujncc > :last-child, .framer-3jI7L .framer-1xust9h > :last-child, .framer-3jI7L .framer-f7e2d2 > :last-child, .framer-3jI7L .framer-351kzm > :last-child { margin-right: 0px; } .framer-3jI7L .framer-1gntcsc > *, .framer-3jI7L .framer-1j5tls > *, .framer-3jI7L .framer-zyce5d > *, .framer-3jI7L .framer-1rxvsja > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3jI7L .framer-dpcsb5 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-3jI7L .framer-1fla23t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3jI7L .framer-5lhz9e > *, .framer-3jI7L .framer-193o0dw > *, .framer-3jI7L .framer-xxmtge > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-3jI7L .framer-8ifdn4 > *, .framer-3jI7L .framer-yxpfw3 > *, .framer-3jI7L .framer-1ddpx90 > *, .framer-3jI7L .framer-52nlfp > *, .framer-3jI7L .framer-14tfbx5 > *, .framer-3jI7L .framer-oaymhn > *, .framer-3jI7L .framer-ut1uvi > *, .framer-3jI7L .framer-cmk56q > *, .framer-3jI7L .framer-1ll3wsa > *, .framer-3jI7L .framer-1cnknes > *, .framer-3jI7L .framer-io9o0r > *, .framer-3jI7L .framer-8avky4 > *, .framer-3jI7L .framer-u17ac1 > *, .framer-3jI7L .framer-1gujncc > *, .framer-3jI7L .framer-351kzm > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-3jI7L .framer-gy2ol4 > *, .framer-3jI7L .framer-k3d8ta > *, .framer-3jI7L .framer-182k1k6 > *, .framer-3jI7L .framer-rjvfe8 > *, .framer-3jI7L .framer-1cm2g30 > *, .framer-3jI7L .framer-1jt9d1o > *, .framer-3jI7L .framer-lzniqm > *, .framer-3jI7L .framer-rnkp46 > *, .framer-3jI7L .framer-ym6nan > *, .framer-3jI7L .framer-1dabsk5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-3jI7L .framer-tapt96 > *, .framer-3jI7L .framer-f7e2d2 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-3jI7L .framer-1rjdfd > *, .framer-3jI7L .framer-1dl82mu > *, .framer-3jI7L .framer-1vvsb7g > *, .framer-3jI7L .framer-1li2wig > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3jI7L .framer-amvqj0 > *, .framer-3jI7L .framer-3wicnj > *, .framer-3jI7L .framer-ajsuba > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-3jI7L .framer-tjfcr9 > *, .framer-3jI7L .framer-5az41s > *, .framer-3jI7L .framer-j19ztd > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-3jI7L .framer-1d40r4k > *, .framer-3jI7L .framer-qx0jw6 > *, .framer-3jI7L .framer-dlre72 > *, .framer-3jI7L .framer-157kxn1 > *, .framer-3jI7L .framer-152xd2u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3jI7L .framer-1xust9h > * { margin: 0px; margin-left: calc(180px / 2); margin-right: calc(180px / 2); } .framer-3jI7L .framer-3covg8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3jI7L .framer-1flj4cr > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-3jI7L[data-border=\"true\"]::after, .framer-3jI7L [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-3jI7L.framer-14j6ae6 { width: 810px; } .framer-3jI7L .framer-kecpqe { padding: 160px 40px 80px 40px; } .framer-3jI7L .framer-1empiut { bottom: -16px; left: 0px; } .framer-3jI7L .framer-1p1j7tm { bottom: unset; left: 34px; top: 66px; z-index: 0; } .framer-3jI7L .framer-1ktd6ul { bottom: -25px; right: -121px; top: -75px; width: var(--framer-aspect-ratio-supported, 144px); } .framer-3jI7L .framer-5lhz9e, .framer-3jI7L .framer-193o0dw { padding: 80px 40px 160px 40px; } .framer-3jI7L .framer-1li2wig { flex-wrap: wrap; padding: 0px 40px 80px 40px; } .framer-3jI7L .framer-1xust9h { gap: 40px; } .framer-3jI7L .framer-xxmtge, .framer-3jI7L .framer-1flj4cr { padding: 0px 40px 160px 40px; } .framer-3jI7L .framer-16smclg { gap: 80px; justify-content: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3jI7L .framer-1xust9h, .framer-3jI7L .framer-16smclg { gap: 0px; } .framer-3jI7L .framer-1xust9h > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-3jI7L .framer-1xust9h > :first-child, .framer-3jI7L .framer-16smclg > :first-child { margin-left: 0px; } .framer-3jI7L .framer-1xust9h > :last-child, .framer-3jI7L .framer-16smclg > :last-child { margin-right: 0px; } .framer-3jI7L .framer-16smclg > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } }}\",\"@media (max-width: 809px) { .framer-3jI7L.framer-14j6ae6 { width: 390px; } .framer-3jI7L .framer-kecpqe { padding: 160px 20px 80px 20px; } .framer-3jI7L .framer-1empiut { bottom: unset; left: -32px; top: 54%; transform: translateY(-50%); } .framer-3jI7L .framer-1p1j7tm { bottom: -72px; left: unset; right: -141px; } .framer-3jI7L .framer-5lhz9e, .framer-3jI7L .framer-193o0dw { padding: 80px 20px 160px 20px; } .framer-3jI7L .framer-tapt96, .framer-3jI7L .framer-f7e2d2 { flex-direction: column; } .framer-3jI7L .framer-1rjdfd, .framer-3jI7L .framer-1dl82mu, .framer-3jI7L .framer-1vvsb7g, .framer-3jI7L .framer-1q6hj8u, .framer-3jI7L .framer-om021y, .framer-3jI7L .framer-1nsaaf5-container, .framer-3jI7L .framer-177fcvv-container, .framer-3jI7L .framer-16wuop4-container, .framer-3jI7L .framer-1dabsk5 { flex: none; width: 100%; } .framer-3jI7L .framer-1li2wig { flex-wrap: wrap; gap: 32px; padding: 0px 20px 80px 20px; } .framer-3jI7L .framer-zyce5d { align-content: center; align-items: center; } .framer-3jI7L .framer-1xust9h { flex-direction: column; gap: 16px; } .framer-3jI7L .framer-xxmtge, .framer-3jI7L .framer-1flj4cr { padding: 0px 20px 160px 20px; } .framer-3jI7L .framer-16smclg { align-content: center; align-items: center; flex-direction: column; gap: 24px; justify-content: center; padding: 48px 24px 48px 24px; } .framer-3jI7L .framer-13aw1qi-container { max-width: 350px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3jI7L .framer-tapt96, .framer-3jI7L .framer-1li2wig, .framer-3jI7L .framer-1xust9h, .framer-3jI7L .framer-f7e2d2, .framer-3jI7L .framer-16smclg { gap: 0px; } .framer-3jI7L .framer-tapt96 > *, .framer-3jI7L .framer-f7e2d2 > *, .framer-3jI7L .framer-16smclg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3jI7L .framer-tapt96 > :first-child, .framer-3jI7L .framer-1li2wig > :first-child, .framer-3jI7L .framer-1xust9h > :first-child, .framer-3jI7L .framer-f7e2d2 > :first-child, .framer-3jI7L .framer-16smclg > :first-child { margin-top: 0px; } .framer-3jI7L .framer-tapt96 > :last-child, .framer-3jI7L .framer-1li2wig > :last-child, .framer-3jI7L .framer-1xust9h > :last-child, .framer-3jI7L .framer-f7e2d2 > :last-child, .framer-3jI7L .framer-16smclg > :last-child { margin-bottom: 0px; } .framer-3jI7L .framer-1li2wig > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3jI7L .framer-1xust9h > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4546\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OF4IOgHVL\":{\"layout\":[\"fixed\",\"auto\"]},\"mx0V7tpnn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerQZT3xtO72=withCSS(Component,css,\"framer-3jI7L\");export default FramerQZT3xtO72;FramerQZT3xtO72.displayName=\"Page\";FramerQZT3xtO72.defaultProps={height:4546,width:1440};addFonts(FramerQZT3xtO72,[{explicitInter:true,fonts:[{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v24/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v24/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LVte6KuGEo.woff2\",weight:\"400\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v24/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LVte6KuGEo.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...ButtonFonts,...TickerFonts,...TestimonialsCardFonts,...FAQsFonts,...FooterFonts,...NavbarDarkFonts,...SmoothScrollFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQZT3xtO72\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OF4IOgHVL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mx0V7tpnn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"4546\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "85BAAigB,IAAMA,GAAWC,GAAGA,EAA6sB,IAAMC,GAAE,CAAC,GAAGC,GAAG,IAAIA,EAAE,EAAEA,GAAGA,EAAE,GAAG,EAM/vC,SAASC,GAAkBD,EAAED,EAAE,CAAC,OAAOA,EAAEC,GAAG,IAAID,GAAG,CAAC,CCNG,IAAMG,GAAW,CAACC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAGD,GAAG,EAAEE,EAAE,EAAED,IAAID,EAAE,EAAEC,GAAGD,EAAQE,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgBJ,EAAEC,EAAEI,EAAEC,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAER,GAAGI,EAAEJ,GAAG,EAAEO,EAAET,GAAWU,EAAEH,EAAEC,CAAC,EAAEP,EAAEQ,EAAE,EAAEH,EAAEI,EAAER,EAAEQ,QAAQ,KAAK,IAAID,CAAC,EAAEN,IAAG,EAAEQ,EAAEP,IAAG,OAAOM,CAAC,CAAC,SAASE,GAAYV,EAAEC,EAAE,EAAEG,EAAE,CAAC,GAAGJ,IAAIC,GAAG,IAAIG,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAE,CAAC,EAAE,OAAOD,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAED,GAAWc,EAASb,CAAC,EAAEE,EAAEG,CAAC,CAAC,CCApQ,IAAMS,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECA2d,SAASC,GAAOC,EAAE,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,QAAQ,KAAKD,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAE,CAAC,GAAG,EAAE,QAAQ,CAAC,EAAE,IAAIC,EAAE,CAAC,EAAED,EAAE,CAAC,GAAG,GAASA,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAIE,EAAE,EAAE,IAAI,EAAE,OAAO,sBAAsBF,CAAC,EAAEE,EAAE,EAAE,OAAOA,IAAI,EAAE,QAAQ,EAAEA,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKF,EAAE,EAAEE,CAAC,CAAC,IAAID,EAAE,EAAEC,CAAC,CAAC,EAAEF,EAAE,EAAEE,CAAC,CAAC,EAAE,CAAC,OAAOD,CAAC,CCArkC,IAAIE,GAAE,CAAC,EAAE,OAAO,eAAeA,GAAE,aAAa,CAAC,MAAM,EAAI,CAAC,EAAEA,GAAE,QAAQ,UAAU,CAAC,EAAEA,GAAE,UAAU,UAAU,CAAC,EAAE,IAAMC,GAAED,GAAE,WAAWE,GAAEF,GAAE,QAAQG,GAAEH,GAAE,UCAlF,IAAMI,GAAE,EAAE,SAASC,GAAsBC,EAAEC,EAAEC,EAAE,CAAC,IAAMC,EAAE,KAAK,IAAIF,EAAEH,GAAE,CAAC,EAAE,OAAOM,GAAEF,EAAEF,EAAEG,CAAC,EAAEF,EAAEE,CAAC,CAAC,CAAC,IAAMF,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQI,GAAiB,CAACC,EAAEL,GAAE,UAAU,EAAEA,GAAE,QAAQH,EAAEG,GAAE,OAAO,GAAG,EAAE,KAAK,KAAKK,EAAER,CAAC,GAAG,SAASS,GAAiBD,EAAE,EAAER,EAAE,CAAC,OAAOQ,EAAE,GAAGR,GAAG,GAAGQ,EAAE,GAAGR,GAAG,CAAC,CAAC,IAAMU,GAAO,CAAC,CAAC,UAAUF,EAAEL,GAAE,UAAU,QAAQH,EAAEG,GAAE,QAAQ,KAAKC,EAAED,GAAE,KAAK,KAAKE,EAAE,EAAE,GAAGM,EAAE,EAAE,SAASC,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEJ,GAAE,EAAEI,CAAC,EAAE,EAAE,IAAMG,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQV,EAAE,OAAOM,CAAC,EAAQK,EAAEL,EAAEN,EAAQY,EAAE,KAAK,KAAKT,EAAEJ,CAAC,EAAE,IAAUc,EAAEX,GAAiBC,EAAER,EAAEI,CAAC,EAAMe,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMV,EAAES,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEjB,GAAGS,EAAE,KAAK,IAAI,CAACO,EAAED,EAAEf,CAAC,IAAIgB,EAAED,EAAED,EAAEJ,GAAGJ,EAAE,KAAK,IAAIA,EAAEN,CAAC,EAAEc,EAAE,KAAK,IAAIR,EAAEN,CAAC,EAAE,MAAMiB,EAAEX,GAAGG,EAAE,KAAK,IAAI,CAACM,EAAET,CAAC,GAAGQ,GAAGC,EAAED,EAAEJ,GAAGJ,GAAG,OAAOA,GAAG,CAACO,EAAE,QAAQI,EAAEX,CAAC,EAAE,IAAMN,EAAMM,IAAJ,EAAMI,EAAEX,GAAsBkB,EAAEX,EAAEO,EAAE,OAAO,EAAQf,EAAE,KAAK,IAAIE,CAAC,GAAGW,EAAQV,EAAE,KAAK,IAAIQ,EAAEI,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKf,GAAGG,EAAEY,EAAE,iBAAiBN,GAAiBJ,EAAEM,EAAEI,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKZ,EAAE,EAAE,SAASR,EAAE,EAAE,MAAMG,EAAE,GAAG,MAAMC,EAAE,KAAK,cAAcC,EAAE,gBAAgBM,EAAE,aAAaC,EAAE,IAAIC,EAAE,IAAIC,EAAE,aAAaC,EAAE,GAAG,UAAU,CAAC,IAAI,CAACX,EAAEI,GAAE,GAAGJ,CAAC,EAAE,IAAMa,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQT,EAAE,OAAOA,CAAC,EAAQa,EAAcb,GAAYK,IAAT,QAAYL,EAAEK,GAAYC,IAAT,QAAYN,EAAEM,EAAQQ,EAAgBd,GAAYK,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEL,CAAC,EAAE,KAAK,IAAIM,EAAEN,CAAC,EAAEK,EAAEC,EAAMI,EAAEf,EAAEH,EAAQmB,EAAEX,EAAEU,EAAQK,EAAWX,IAAT,OAAWO,EAAEP,EAAEO,CAAC,EAAEF,EAAE,OAAOM,EAAEA,IAAIJ,IAAID,EAAEK,EAAEf,GAAG,IAAMgB,EAAUhB,GAAG,CAACU,EAAE,KAAK,IAAI,CAACV,EAAEJ,CAAC,EAAQqB,EAAWjB,GAAGe,EAAEC,EAAUhB,CAAC,EAAQkB,EAAclB,GAAG,CAAC,IAAMN,EAAEsB,EAAUhB,CAAC,EAAQR,EAAEyB,EAAWjB,CAAC,EAAES,EAAE,KAAK,KAAK,IAAIf,CAAC,GAAGa,EAAEE,EAAE,QAAQA,EAAE,KAAKM,EAAEvB,CAAC,EAAM2B,EAAMC,EAAQC,EAAmBrB,GAAG,CAAIa,EAAcJ,EAAE,OAAO,IAAGU,EAAEnB,EAAEoB,EAAElB,GAAO,CAAC,KAAKO,EAAE,QAAQ,GAAGK,EAAgBL,EAAE,OAAO,EAAE,SAAShB,GAAsBwB,EAAWjB,EAAES,EAAE,OAAO,EAAE,QAAQZ,EAAE,UAAUM,EAAE,aAAaI,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,OAAAc,EAAmB,CAAC,EAASrB,GAAG,CAAC,IAAIN,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAclB,CAAC,EAAEqB,EAAmBrB,CAAC,GAAcmB,IAAT,QAAYnB,EAAEmB,GAAGV,EAAE,iBAAiB,GAAYW,EAAEpB,EAAEmB,CAAC,IAAEV,EAAE,iBAAiB,GAAM,CAACf,GAAGwB,EAAclB,CAAC,EAASS,EAAC,CAAC,EAAQb,GAAE,GAASC,GAAE,IAAI,SAASyB,GAAqBtB,EAAE,CAAC,IAAI,EAAMR,EAAEI,GAAM,EAAEI,EAAE,CAAC,EAAQG,EAAE,CAAC,EAAE,OAAO,EAAE,KAAM,CAAC,EAAE,MAAMX,EAAEK,IAAG,EAAEG,EAAER,CAAC,EAAEW,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAW,IAAT,QAAY,EAAE,mBAAmB,EAAEX,GAAGA,GAAGI,GAAE,IAAMQ,EAAEZ,EAAEI,GAAE,OAAIO,EAAE,SAAN,GAAcA,EAAE,KAAK,EAAE,OAAO,EAAQ,CAAC,UAAUA,EAAE,SAASC,EAAE,IAAI,mBAA0B,GAAgBA,GAAG,GAAG,CAAC,CCA1jD,IAAMmB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAcC,GAAGA,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAcD,GAAGA,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcG,EAAC,EAAE,KAAKH,EAAC,EAAQI,GAAE,IAAI,IAAUC,GAAkBJ,GAAG,YAAYA,CAAC,GAASK,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAASN,GAAG,CAACO,GAAE,QAAS,GAAG,CAACF,GAAE,KAAKL,EAAE,CAAC,EAAEG,GAAE,IAAIC,GAAkBJ,EAAE,CAAC,EAAEC,GAAED,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMQ,GAAE,IAAI,IAAIC,EAAC,EAA2tB,IAAMC,GAAcC,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,SAAS,IAAI,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACF,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAS,CAAC,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAS,EAAQG,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAUH,KAAKC,GAAEE,GAAEH,CAAC,EAAE,KAAcE,GAAEF,CAAC,IAAZ,SAAgBE,GAAEF,CAAC,EAAEC,GAAED,CAAC,EAAE,GAAUE,GAAEF,CAAC,GAA2kF,SAASI,GAAgBC,EAAE,EAAE,CAAC,IAAIC,EAAE,OAAc,OAAOD,GAAlB,SAAuB,IAAWC,EAAE,EAAED,CAAC,KAAb,MAA0BC,IAAT,SAAa,EAAED,CAAC,EAAE,SAAS,iBAAiBA,CAAC,GAAEA,EAAE,EAAEA,CAAC,GAAOA,EAAE,SAAS,iBAAiBA,CAAC,EAAOA,aAAa,UAAUA,EAAE,CAACA,CAAC,GAAU,MAAM,KAAKA,GAAG,CAAC,CAAC,CAAC,CAAo7H,SAASE,GAAsBC,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAACC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAEC,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGJ,CAAC,IAAIC,CAAC,IAAIC,CAAC,IAAIC,CAAC,GAAG,OAAAL,EAAE,IAAIM,CAAC,GAAGN,EAAE,IAAIM,EAAER,EAAE,OAAO,OAAO,CAAC,KAAKI,EAAE,GAAGC,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAEN,CAAC,CAAC,CAAC,EAASC,EAAE,IAAIM,CAAC,CAAC,EAAQC,EAAaT,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAEU,GAAEV,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEI,EAAEH,EAAEC,EAAEG,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQG,EAAEX,EAAE,OAA8C,GAAjCC,GAAGU,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMX,EAAED,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BX,GAAE,UAAU,GAAGW,EAAE,CAAC,GAAK,CAAC,UAAUZ,EAAE,mBAAmBH,CAAC,EAAEI,EAAQH,EAA+BE,GAAE,WAAYH,GAAG,EAAQM,EAA+BH,GAAE,aAAc,YAAY,IAAI,EAAEF,EAAQM,EAAEQ,EAAET,CAAC,EAAE,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAEE,GAAOG,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,IAAGgB,EAAEhB,EAAC,EAAE,QAASO,EAAEC,CAAC,EAAE,MAAMO,GAAUR,EAAEM,KAAV,MAAuBN,IAAT,OAAWA,EAAE,WAAWH,EAAE,CAAC,EAAE,IAAMc,EAAEf,EAAaY,EAAEd,EAAEa,EAA8BZ,GAAE,SAAS,OAAO,CAAC,EAAQiB,EAAEV,EAAaS,CAAC,EAAEV,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEW,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKd,IAAGA,EAAE,UAAUa,EAAEb,EAAE,mBAAmB,YAAY,IAAI,EAAE,MAAgDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaN,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMI,GAAeZ,GAAc,OAAOA,GAAlB,SAA0BoB,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAASzB,EAAE,EAAE,CAAC,KAAKC,EAAE,OAAOC,EAAE,OAAOG,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAMC,EAAEoB,GAAgB1B,CAAC,EAAQO,EAAE,IAAI,QAAcoB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMC,EAAEM,EAAE,IAAIP,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQC,EAAG,GAAGD,EAAE,eAAe,CAAC,IAAMC,EAAE,EAAED,CAAC,EAAe,OAAOC,GAApB,WAAsBM,EAAE,IAAIP,EAAE,OAAOC,CAAC,EAAEO,EAAE,UAAUR,EAAE,MAAM,CAAC,MAASC,IAAGA,EAAED,CAAC,EAAEO,EAAE,OAAOP,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQQ,EAAE,IAAI,qBAAqBmB,EAAqB,CAAC,KAAK1B,EAAE,WAAWC,EAAE,UAAqB,OAAOG,GAAlB,SAAoBA,EAAEmB,GAAEnB,CAAC,CAAC,CAAC,EAAE,OAAAC,EAAE,QAASN,GAAGQ,EAAE,QAAQR,CAAC,CAAE,EAAQ,IAAIQ,EAAE,WAAW,CAAC,CAAC,IAAMoB,GAAE,IAAI,QAAYC,EAAE,SAASC,GAAe9B,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWA,EAAE,UAAU,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMA,EAAE,OAAO,CAAC,CAAC,CAAC,OAAOA,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO/B,EAAE,YAAY,EAAE,cAAcC,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE0B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BE,IAAT,QAAkBA,EAAE,QAASA,GAAG,CAACA,EAAE,CAAC,OAAOF,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO8B,GAAe9B,EAAEC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAAS+B,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,EAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAE,EAAE,CAAC6B,GAAGI,GAAqB,EAAE,IAAMhC,EAAEyB,GAAgB1B,CAAC,EAAE,OAAAC,EAAE,QAASD,GAAG,CAAC,IAAIC,EAAE2B,GAAE,IAAI5B,CAAC,EAAMC,IAAGA,EAAE,IAAI,IAAI2B,GAAE,IAAI5B,EAAEC,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8B4B,GAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAACC,EAAE,QAASD,GAAG,CAAC,IAAMC,EAAE2B,GAAE,IAAI5B,CAAC,EAA8BC,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoC4B,GAAE,UAAU7B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMmC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMpC,EAAE,CAAC,MAAMsC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQ,EAAE,CAAC,OAAOA,EAAO,KAAKtC,EAAE,YAAYA,CAAC,EAAEmC,GAAE,QAASnC,GAAGA,EAAE,CAAC,CAAE,CAAC,EAAEsC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAavC,EAAE,CAAC,OAAAmC,GAAE,IAAInC,CAAC,EAAEoC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOnC,CAAC,EAAE,CAACmC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOxC,EAAE,EAAE,CAAC,OAAmB,OAAOA,GAApB,WAAsBuC,GAAavC,CAAC,EAAEkC,GAAclC,EAAE,CAAC,CAAC,CAA+hK,SAASyC,GAAqBC,EAAE,EAAEC,EAAE,CAACD,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBF,EAAE,EAAEC,EAAE,CAACD,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASH,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAEE,EAAEC,GAAEH,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOI,GAASR,EAAGI,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkBF,EAAE,YAAYI,CAAC,EAAK,CAACC,EAAE,OAAOI,GAAG,CAACR,EAAE,EAAEC,GAAkBF,EAAE,YAAYS,CAAC,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAQI,GAAW,CAACV,EAAE,EAAEC,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyBH,EAAE,EAAEF,GAAqBC,EAAE,EAAEI,CAAC,EAAE,EAAQO,GAAG,CAAC,SAASX,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,IAAI,CAAC,IAAMG,EAAEM,GAAWV,EAAE,aAAa,CAAC,EAAQK,EAAEK,GAAWV,EAAE,WAAWC,CAAC,EAAE,OAAAD,EAAE,iBAAiB,eAAeI,CAAC,EAAEJ,EAAE,iBAAiB,eAAeK,CAAC,EAAQ,IAAI,CAACL,EAAE,oBAAoB,eAAeI,CAAC,EAAEJ,EAAE,oBAAoB,eAAeK,CAAC,CAAC,CAAC,CAAC,EAAQO,GAAG,CAAC,SAASZ,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,IAAI,CAAC,IAAMY,EAAYJ,GAAG,CAACR,EAAE,EAAEF,GAAqBC,EAAE,WAAWS,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcd,GAAG,CAAC,EAAE,EAAEF,GAAqBC,EAAE,aAAaC,CAAC,EAAEa,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAb,EAAE,iBAAiB,cAAce,CAAa,EAAQ,IAAI,CAACf,EAAE,oBAAoB,cAAce,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQG,GAAG,CAAC,OAAOb,GAAG,MAAMQ,GAAG,MAAMC,EAAE,EAAQK,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECA7llB,IAAME,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EASxjB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,CAAC,EAAE,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAAcC,GAAa,QAAQ,EAAQC,EAASF,IAAgBC,GAAa,QAAQD,IAAgBC,GAAa,OACtkBE,EAAc1B,EAAM,OAAO,OAAO,EAAQ2B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,GAAYF,EAAY,EAAKjB,IAAY,KAAMA,EAAU,QAAQ,IAAMoB,GAAapB,IAAY,QAAQA,IAAY,QAAcb,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBc,CAAS,EAAQuB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAC,CAAC,QAAQ,IAAI,EAAE,CAAC,QAAQ,IAAI,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,KAASC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKpB,IAAUmB,GAAYjB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEkB,GAAQ,GAAM,CAACpB,GAAUI,IAAaU,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYjD,EAAoB,EAAEkD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGlB,IAAaM,GAAU,QAAQ,CAAC,IAAMa,EAAalB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBc,EAAMZ,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMa,IAAtLb,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2BY,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe1B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGI,GAAY,CAC9iD,GAAG,CAACJ,EAAS,CAGE,IAAI2B,EAAchB,EAAO,EAAI,EAAEiB,GAAgB,KAAKC,GAAM,KAAKR,GAAQ,GAAM,EAAI,EAASS,GAAOpB,GAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,GAAQ,GAAM,EAAI,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAed,GAAS,IAAIF,EAAc,CAAC+B,EAAMC,IAAQ,CAAC,IAAIC,EAAOD,IAAQ,IAAGC,EAAItB,EAAY,CAAC,GAAMqB,IAAQhC,EAAc,OAAO,IAAGiC,EAAItB,EAAY,CAAC,GAAG,IAAME,GAAK,CAAC,MAAMnB,EAAUqC,EAAM,OAAO,MAAM,OAAO,OAAOpC,EAAWoC,EAAM,OAAO,OAAO,MAAM,EAAE,OAAoBG,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMpB,GAAK,SAAsBuB,GAAaL,EAAM,CAAC,MAAM,CAAC,GAAGA,EAAM,OAAO,MAAM,GAAGlB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,EAAED,EAAM,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,IAAMM,GAAStC,EAAS,GAAKuC,GAAU7B,EAAS,EAAE,GAAG,CAACV,EAAU,QAAQwC,EAAE,EAAEA,EAAErB,GAAYqB,IAAKtB,GAAcA,GAAc,OAAOf,GAAS,IAAIF,EAAc,CAAC+B,EAAMS,IAAa,CAAC,IAAM3B,GAAK,CAAC,MAAMnB,EAAUqC,EAAM,OAAO,MAAM,OAAO,OAAOpC,EAAWoC,EAAM,OAAO,OAAO,OAAO,WAAYM,GAAmB,YAAV,MAAqB,EAAE,OAAoBH,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMrB,GAAK,cAAc,GAAK,SAAsBuB,GAAaL,EAAM,CAAC,IAAIQ,EAAE,IAAIC,EAAW,MAAM,CAAC,GAAGT,EAAM,OAAO,MAAM,MAAMrC,EAAUqC,EAAM,OAAO,MAAM,OAAO,OAAOpC,EAAWoC,EAAM,OAAO,OAAO,OAAO,WAAW,EAAE,GAAGN,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASQ,EAAE,MAAS,EAAER,EAAM,OAAO,QAAQ,CAAC,EAAEQ,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMC,EAAe5B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ6B,GAAYhC,EAAO,IAAI,EAAQiC,GAASjC,EAAO,IAAI,EAAQkC,GAAKlC,EAAO,CAAC,EAAQmC,GAAQnC,EAAO,EAAK,EAAQoC,GAAgBC,GAAiB,EAAQC,GAAQtC,EAAO,IAAI,EAAQuC,EAAavC,EAAO,IAAI,EAEr5D,GAAG,CAACX,EAAS,CAACmD,GAAU,IAAI,CAAC,GAAG,EAAAJ,IAAiB,CAACL,GAAgB,CAAC3D,GAAe,OAAAmE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC1C,GAAY,CAAC,EAAEA,GAAYmC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE3D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAImE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAAClE,EAAY0D,EAAe3D,CAAK,CAAC,EAAE,IAAMqE,EAAY9B,GAAY,IAAI,CAAC,GAAG,CAAC4B,EAAa,QAAQ,OAAO,IAAMG,EAAO,SAAS,OAAUf,IAAU,CAACe,GAAQH,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,GAAY,CAACZ,IAAUe,IAASH,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,CAAG,EAAE,CAACZ,EAAQ,CAAC,EAAEa,GAAU,IAAI,CAACC,EAAY,CAAE,EAAE,CAACd,GAAStD,EAAY0D,EAAe3D,CAAK,CAAC,EAAEoE,GAAU,KAAK,SAAS,iBAAiB,mBAAmBC,CAAW,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAW,CAAE,GAAI,CAACA,CAAW,CAAC,CAAE,CAAY,IAAME,GAAcjD,GAAa,WAAW,YAAkBkD,GAAe/D,EAAU,EAAQgE,GAAa,IAAIhE,EAAU,EAAQiE,GAAeC,GAAMjE,EAAU,EAAE8D,EAAc,EAAQI,GAAa,IAAIlE,EAAgBmE,GAAS,mBAAmBN,EAAa,mBAAmB5D,CAAS,KAAK+D,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoB9D,CAAS,KAAKiE,EAAY,KAAsB,OAAIvD,GAAkW+B,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG0B,GAAe,QAAQzC,GAAQ,gBAAgB9B,EAAYsE,GAAS,OAAU,UAAUtE,EAAYsE,GAAS,OAAU,SAASrE,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIa,GAAU,SAAsBoD,EAAMC,EAAO,GAAG,CAAC,IAAId,GAAQ,MAAM,CAAC,GAAGY,GAAe,IAAIrF,EAAI,IAAIS,IAAY,UAAU+E,GAActB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAKzD,IAAY,SAAS+E,GAActB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWxD,EAAU,SAAS,WAAW,cAAcmB,GAAa,MAAM,SAAS,GAAGhB,EAAM,WAAWW,GAAU,CAACsC,GAAS,OAAO,YAAY,UAAU/B,GAAY,CAAC,CAAC,EAAE,aAAa,IAAI,CAACuC,GAAQ,QAAQ,GAAQI,EAAa,UACp2EA,EAAa,QAAQ,aAAalE,EAAa,EAAE,aAAa,IAAI,CAAC8D,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACjC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAFiyC4C,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAc9B,EAAK,MAAM,CAAC,MAAM+B,GAAY,SAAS,QAAG,CAAC,EAAe/B,EAAK,IAAI,CAAC,MAAMgC,GAAY,SAAS,oBAAoB,CAAC,EAAehC,EAAK,IAAI,CAAC,MAAMiC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAEzkD,CAAyB/F,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBgG,GAAoBhG,GAAO,CAAC,MAAM,CAAC,KAAKiG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECjBh5D,IAAMC,GAAmCC,GAA0BC,EAAO,GAAG,EAAQC,GAAkCF,GAA0BG,CAAQ,EAAQC,EAAgBC,GAAOJ,EAAO,GAAG,EAAQK,GAAeD,GAAOF,CAAQ,EAAQI,GAAYC,EAASC,EAAM,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAsBJ,EAASK,EAAgB,EAAQC,GAAgBT,GAAOU,CAAS,EAAQC,GAAUR,EAASS,EAAI,EAAQC,GAAYV,EAASW,EAAM,EAAQC,GAAgBZ,EAASa,EAAU,EAAQC,GAAkBd,EAASe,EAAY,EAAQC,GAAYhB,EAASiB,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWV,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQW,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWN,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQO,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWnB,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQoB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWjB,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQkB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWhB,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQiB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWT,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQU,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWX,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQY,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWlB,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQmB,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWnB,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQoB,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAO,CAAC,UAAUC,GAAO,QAAQ,WAAW,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAExB,GAASI,CAAK,EAAQqB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,EAAe,OAAyIC,EAAkBC,GAAG9E,GAAkB,GAA1I,CAAagE,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQe,EAAOC,GAAU,EAAE,OAAAC,GAAiB,CAAC,OAAOjC,EAAM,CAAC,EAAsBP,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAjF,EAAiB,EAAE,SAAsBkF,EAAMC,GAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAS,CAAcf,EAAKH,GAAU,CAAC,MAAM,4FAA4F,CAAC,EAAe6C,EAAME,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUW,GAAGD,EAAkB,iBAAiBb,CAAS,EAAE,qBAAqB,SAAS,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAActB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAe0C,EAAMG,GAAmC,CAAC,QAAQnF,GAAU,UAAU,gBAAgB,cAAc,GAAK,wBAAwB,SAAS,mBAAmB,UAAU,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcqC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA60D,mBAAmB,EAAI,CAAC,EAAe9C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mCAAmC,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc1C,EAAKiD,GAAkC,CAAC,sBAAsB,GAAK,QAAQpF,GAAW,SAAsBmC,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,+EAA+E,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,8CAA8C,MAAM,CAAC,OAAO,EAAE,QAAQrC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeqC,EAAKiD,GAAkC,CAAC,sBAAsB,GAAK,QAAQlF,GAAW,SAAsBiC,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,kLAAkL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,mLAAmL,MAAM,CAAC,mBAAmB,EAAE,QAAQrC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAWjF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcwE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc1C,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAgpC,mBAAmB,EAAI,CAAC,EAAe9C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAmqF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAKmD,GAAe,CAAC,kBAAkB,CAAC,WAAW1F,EAAW,EAAE,sBAAsB,GAAK,gBAAgBO,EAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB6B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mDAAmD,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmD,GAAe,CAAC,kBAAkB,CAAC,WAAWrF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBE,EAAW,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB4B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kDAAkD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oJAAoJ,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcA,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAW7E,EAAW,EAAE,sBAAsB,GAAK,gBAAgBL,EAAW,eAAeM,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcoE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BrD,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBX,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,GAAG,KAAK,EAAE,UAAU,CAAC,MAAM,qBAAqBA,GAAmB,OAAO,OAAO,8CAA8C,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,qBAAqBnC,GAAmB,OAAO,OAAO,+CAA+C,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,GAAG,MAAM,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBrD,EAAKyD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,uEAAuE,UAAUJ,EAAc,CAAC,EAAE,UAAU,qBAAqB,SAAS,YAAY,UAAU,wEAAwE,UAAU,uEAAuE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAW3E,EAAW,EAAE,sBAAsB,GAAK,gBAAgBP,EAAW,eAAeQ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAckE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAYM,EAAS,CAAC,SAAS,CAAchD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B1D,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBX,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,GAAG,KAAK,EAAE,UAAU,CAAC,MAAM,qBAAqBA,GAAmB,OAAO,OAAO,8CAA8C,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,qBAAqBnC,GAAmB,OAAO,OAAO,+CAA+C,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,GAAG,MAAM,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1D,EAAKyD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,uEAAuE,UAAUC,EAAe,CAAC,EAAE,UAAU,qBAAqB,SAAS,YAAY,UAAU,wEAAwE,UAAU,uEAAuE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAWzE,EAAW,EAAE,sBAAsB,GAAK,gBAAgBT,EAAW,eAAeU,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcgE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAYM,EAAS,CAAC,SAAS,CAAchD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAeA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6B3D,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,gBAAgBX,GAAmB,OAAO,OAAO,mCAAmC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,OAAO,GAAG,KAAK,EAAE,UAAU,CAAC,MAAM,qBAAqBA,GAAmB,OAAO,OAAO,8CAA8C,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,qBAAqBnC,GAAmB,OAAO,OAAO,+CAA+C,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,GAAG,MAAM,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3D,EAAKyD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,uEAAuE,UAAUE,EAAe,CAAC,EAAE,UAAU,qBAAqB,SAAS,YAAY,UAAU,wEAAwE,UAAU,uEAAuE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK4D,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,IAAI,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5D,EAAK4C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB5C,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,61HAA61H,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9C,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB5C,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,wqGAAwqG,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9C,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB5C,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,kxIAAkxI,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9C,EAAK4C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB5C,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,4lFAA4lF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9C,EAAK4C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB5C,EAAK6D,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,MAAM,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAWzF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBkB,EAAY,eAAeC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc1C,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAkpC,mBAAmB,EAAI,CAAC,EAAe9C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAquE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB/B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKmD,GAAe,CAAC,kBAAkB,CAAC,WAAWvF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBe,EAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mDAAmD,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB/B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kJAAkJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKmD,GAAe,CAAC,kBAAkB,CAAC,WAAWrF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBa,EAAY,eAAeG,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBkB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,kJAAkJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oJAAoJ,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,8BAA8B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,SAAsBpB,EAAK8D,GAAgB,CAAC,kBAAkB,CAAC,WAAWzF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBL,EAAW,eAAeM,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0B,EAAK+D,GAAiB,CAAC,OAAO,OAAO,UAAU,0BAA0B,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,oJAAoJ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,8BAA8B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,SAAsBpB,EAAK8D,GAAgB,CAAC,kBAAkB,CAAC,WAAWvF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBQ,GAAY,eAAeC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBgB,EAAK+D,GAAiB,CAAC,OAAO,OAAO,UAAU,oCAAoC,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU9E,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,0JAA0J,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,8BAA8B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,SAAsBpB,EAAK8D,GAAgB,CAAC,kBAAkB,CAAC,WAAWrF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBM,GAAY,eAAeK,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBY,EAAK+D,GAAiB,CAAC,OAAO,OAAO,UAAU,0BAA0B,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU9E,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,OAAO,UAAU,0IAA0I,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAWzF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBkB,EAAY,eAAeC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc1C,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAgpC,mBAAmB,EAAI,CAAC,EAAeJ,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAS,CAAc1C,EAAK8C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,EAAE,IAAI;AAAA;AAAA;AAAA,EAAkuB,mBAAmB,EAAI,CAAC,EAAe9C,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,EAAE,IAAI;AAAA;AAAA;AAAA,EAAwwB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,qBAAqB,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAKmD,GAAe,CAAC,kBAAkB,CAAC,WAAWvF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBe,EAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmB,EAAWgD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,wBAAqC1C,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mDAAmD,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmD,GAAe,CAAC,kBAAkB,CAAC,WAAWrF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBa,EAAY,eAAeG,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBkB,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oJAAoJ,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcA,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAW7D,EAAW,EAAE,sBAAsB,GAAK,gBAAgBV,EAAY,eAAeW,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcU,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,WAAWnC,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKgE,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gQAAgQ,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAW7E,EAAW,EAAE,sBAAsB,GAAK,gBAAgBM,EAAY,eAAeY,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcS,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,WAAWnC,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,EAAE,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKgE,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gRAAgR,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAW1D,EAAW,EAAE,sBAAsB,GAAK,gBAAgBb,EAAY,eAAec,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,WAAWnC,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKgE,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iQAAiQ,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,2CAA2C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAMQ,EAAgB,CAAC,kBAAkB,CAAC,WAAW3E,EAAW,EAAE,sBAAsB,GAAK,gBAAgBI,EAAY,eAAee,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcM,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,WAAWnC,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKgE,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mWAAmW,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,2CAA2C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc1C,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB/B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iCAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,iCAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mDAAmD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB/B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oJAAoJ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASa,GAA6BjE,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,OAAO,2CAA2C,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,KAAK,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,GAAGnC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,MAAM,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkC,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBjE,EAAKyD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,uEAAuE,UAAUQ,EAAe,CAAC,EAAE,UAAU,qBAAqB,SAAS,YAAY,UAAU,wEAAwE,UAAU,uEAAuE,MAAM,CAAC,OAAO,MAAM,EAAE,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBpB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAMnC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBpB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB/B,EAAKkE,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelE,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAMnC,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBpB,EAAK8D,GAAgB,CAAC,kBAAkB,CAAC,WAAWnE,EAAY,EAAE,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAW,EAAE,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,aAAa,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBI,EAAKsD,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB/B,EAAKmE,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenE,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKoE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqE,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,4RAA4R,ySAAyS,idAAid,0hBAA0hB,whBAAwhB,meAAme,gwBAAgwB,yjBAAyjB,8FAA8F,mYAAmY,qRAAqR,qRAAqR,yQAAyQ,yVAAyV,qUAAqU,ssBAAssB,6KAA6K,kJAAkJ,8PAA8P,kHAAkH,2TAA2T,ybAAyb,0SAA0S,ynBAAynB,ufAAuf,gVAAgV,iVAAiV,2lBAA2lB,qmBAAqmB,sjBAAsjB,qYAAqY,yqBAAyqB,uWAAuW,qTAAqT,8LAA8L,wGAAwG,2PAA2P,8JAA8J,0PAA0P,iKAAiK,0PAA0P,6JAA6J,2PAA2P,2KAA2K,2PAA2P,8LAA8L,+SAA+S,oHAAoH,iHAAiH,uRAAuR,yNAAyN,6LAA6L,yTAAyT,iHAAiH,kHAAkH,+QAA+Q,4XAA4X,yRAAyR,2TAA2T,yeAAye,iTAAiT,yGAAyG,sIAAsI,yGAAyG,syTAAsyT,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,q4CAAq4C,2+EAA2+E,EAajiwHC,GAAgBC,GAAQ9D,GAAU4D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAY,GAAGC,GAAY,GAAGC,GAAsB,GAAGC,GAAU,GAAGC,GAAY,GAAGC,GAAgB,GAAGC,GAAkB,GAAGC,GAAY,GAAGC,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC1mI,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,qBAAuB,4BAA4B,oCAAsC,4JAA0L,6BAA+B,OAAO,4BAA8B,OAAO,qBAAuB,OAAO,sBAAwB,OAAO,kBAAoB,OAAO,qBAAuB,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithFX", "withFX", "RichTextWithFX", "ButtonFonts", "getFonts", "CrxtlJXor_default", "TickerFonts", "Ticker", "TestimonialsCardFonts", "DcEsiXMOm_default", "ContainerWithFX", "Container", "FAQsFonts", "dF8FsQypY_default", "FooterFonts", "WP34n8MOY_default", "NavbarDarkFonts", "k4nurvAOW_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "CursorFonts", "SXwzBqnCx_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "animation7", "transition5", "animation8", "transition6", "animation9", "transition7", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "animation16", "addImageAlt", "image", "alt", "animation17", "transition8", "animation18", "animation19", "transition9", "animation20", "animation21", "transition10", "animation22", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "SXwzBqnCx_default", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithOptimizedAppearEffect", "SVG", "RichText2", "x", "RichTextWithOptimizedAppearEffect", "MotionDivWithFX", "RichTextWithFX", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "CrxtlJXor_default", "resolvedLinks1", "resolvedLinks2", "Ticker", "Image2", "ContainerWithFX", "DcEsiXMOm_default", "dF8FsQypY_default", "resolvedLinks3", "WP34n8MOY_default", "k4nurvAOW_default", "SmoothScroll_Prod_default", "css", "FramerQZT3xtO72", "withCSS", "QZT3xtO72_default", "addFonts", "ButtonFonts", "TickerFonts", "TestimonialsCardFonts", "FAQsFonts", "FooterFonts", "NavbarDarkFonts", "SmoothScrollFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
