{"version":3,"file":"AIDhBJH3f.BrUyzqGo.mjs","names":["t","e","t","n","o","r","u","a","s","e","i","e","t","r","n","o","n","e","t","t","n","r","a","e","s","o","i","u","p","M","e","t","n","o","i","s","r","a","l","u","W","j","x","V","q","se","re","ae","size","i","t","localizedValues","Image"],"sources":["https:/ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js","https:/ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js","https:/ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js","https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js","https:/framerusercontent.com/modules/QXZw4RGhBvLIgv3UN3VD/XvJTCnCWucQyNm9XhyeL/AIDhBJH3f-0.js","https:/framerusercontent.com/modules/QXZw4RGhBvLIgv3UN3VD/XvJTCnCWucQyNm9XhyeL/AIDhBJH3f.js","https:/framerusercontent.com/modules/rQV4Cv7jCRn6VXd5EQ1W/AAmx5LtsBTsgEOY2wyif/AIDhBJH3f.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,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];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);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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:\"✨\"}),/*#__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,MozMaskImage: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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(19, 19, 22))\"},children:\"Lo que Nuestros Clientes Dicen Sobre Nosotros\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Experiencias aut\\xe9nticas de quienes mejor nos conocen y conf\\xedan en nosotros.\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"4.8\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Cynthia Parker\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Propietaria de Tintorer\\xeda\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"El equipo siempre busca formas de personalizar el software para mejorar nuestros procesos. Es dif\\xedcil pensar en otra empresa que dedique tanto tiempo a mejorar su producto para sus clientes.\"'})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Jim Smith\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Propietario de Tintorer\\xeda\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Si alguien me preguntara: \\xbfQu\\xe9 software deber\\xeda usar? Definitivamente recomendar\\xeda Enlite, por su capacidad de respuesta, que es justo lo que necesita una tintorer\\xeda.\"'})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Amar Williams\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Nuestro negocio no es como la mayor\\xeda de las tintorer\\xedas. Enlite ha sabido escuchar nuestras necesidades y personalizar un sistema eficiente para nuestro uso diario.\"'})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Emma Johnson\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Enlite POS ha optimizado por completo mi sistema de recogida y entrega. Puedo automatizar y personalizar rutas, enviar mensajes autom\\xe1ticos a clientes y optimizar cada entrega seg\\xfan mis necesidades.\"'})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Michael Williams\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Propietario de Lavander\\xeda\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Desde que DARK se integr\\xf3 con nuestras terminales de pago, casi nunca hemos tenido problemas con transacciones incorrectas.\"'})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"William John\"})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"El equipo nos ayud\\xf3 con todas nuestras dudas sobre el sistema. Adem\\xe1s, crearon una factura personalizada seg\\xfan nuestras necesidades. \\xa1El sistema es f\\xe1cil de usar y funciona a la perfecci\\xf3n!\"'})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Soph\\xeda Garc\\xeda\"})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Propietaria de Lavander\\xeda\"})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Me impresion\\xf3 la r\\xe1pida respuesta del equipo y la demo que me permitieron probar. Esto me dio la confianza de evaluar su sistema antes de tomar una decisi\\xf3n.\"'})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Benjam\\xedn Miller\"})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Estamos muy felices con Enlite. Desde el principio, nos ayudaron en el proceso de creaci\\xf3n de nuestra tienda de lavander\\xeda y se aseguraron de que todo funcionara sin problemas.\"'})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Olivia Brown\"})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"\\xa1Gracias por el nuevo informe de clientes con saldo pendiente! Como todos nuestros clientes son de facturaci\\xf3n mensual, antes era dif\\xedcil encontrar su saldo real con el informe convencional.\"'})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Alex Mart\\xednez\"})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Quer\\xedamos unificar nuestro POS, app m\\xf3vil y lockers en una sola plataforma. La integraci\\xf3n de lockers permite a los clientes usar una \\xfanica app y nos ayuda a rastrear los pedidos entre tiendas, lockers y entregas a domicilio.\"'})});\nexport const __FramerMetadata__ = {\"exports\":{\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (99f3353)\nimport*as localizedValues from\"./AIDhBJH3f-0.js\";const valuesByLocaleId={ycSxdz9Hz:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/QXZw4RGhBvLIgv3UN3VD/XvJTCnCWucQyNm9XhyeL/AIDhBJH3f.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"hip3xAlr7\",\"gc0lkdEf_\",\"LScLYjPKI\"];const serializationHash=\"framer-Y3jXA\";const variantClassNames={gc0lkdEf_:\"framer-v-w7ya9x\",hip3xAlr7:\"framer-v-azca8x\",LScLYjPKI:\"framer-v-f5ddmo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"hip3xAlr7\",Phone:\"LScLYjPKI\",Tablet:\"gc0lkdEf_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hip3xAlr7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hip3xAlr7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-azca8x\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"hip3xAlr7\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({gc0lkdEf_:{\"data-framer-name\":\"Tablet\"},LScLYjPKI:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1igclg1\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Eux9b3zQd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(19, 19, 22))\"},children:\"What Our Clients Have to Say About Us\"})}),className:\"framer-o5f9or\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"eE19B_n5K\",style:{\"--extracted-1of0zx5\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Authentic experiences shared by those who know us best and trust us\"})}),className:\"framer-czx0y2\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"VWe0G3Stx\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"5px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pyro8s\",\"data-framer-name\":\"gartner logos\",layoutDependency:layoutDependency,layoutId:\"CotEbKgGi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2cfxjs\",\"data-framer-name\":\"capterra\",layoutDependency:layoutDependency,layoutId:\"WrU74e2oV\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-s0izvq\",\"data-framer-name\":\"capterra logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OvL7IlaS7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 18\"><g transform=\"translate(0 0.28)\"><path d=\"M 0 16.75 L 0 0 L 75.794 0 L 75.794 16.75 Z\" fill=\"transparent\"></path><path d=\"M 0 6.159 L 6.947 6.159 L 11.17 6.159 L 11.17 1.976 Z\" fill=\"rgb(255,157,40)\"></path><path d=\"M 11.17 1.976 L 11.17 16.75 L 16.447 0 Z\" fill=\"rgb(104,197,237)\"></path><path d=\"M 11.17 6.161 L 6.947 6.161 L 11.17 16.75 Z\" fill=\"rgb(4,77,128)\"></path><path d=\"M 0 6.159 L 8.029 8.878 L 6.945 6.161 L 0 6.161 Z\" fill=\"rgb(229,71,71)\"></path><path d=\"M 25.591 12.861 C 25.53 12.922 25.427 12.997 25.285 13.091 C 25.141 13.182 24.956 13.275 24.726 13.366 C 24.497 13.457 24.216 13.538 23.885 13.604 C 23.554 13.67 23.172 13.703 22.745 13.703 C 21.919 13.703 21.206 13.569 20.602 13.306 C 20 13.04 19.503 12.671 19.111 12.196 C 18.719 11.721 18.431 11.16 18.247 10.513 C 18.062 9.866 17.971 9.154 17.971 8.378 C 17.971 7.602 18.07 6.887 18.269 6.227 C 18.469 5.57 18.767 5.001 19.164 4.521 C 19.561 4.041 20.059 3.667 20.655 3.397 C 21.252 3.126 21.954 2.992 22.758 2.992 C 23.154 2.992 23.516 3.028 23.837 3.098 C 24.158 3.169 24.438 3.255 24.678 3.351 C 24.919 3.447 25.116 3.551 25.275 3.657 C 25.431 3.763 25.553 3.854 25.634 3.925 C 25.725 4.006 25.803 4.104 25.871 4.215 C 25.937 4.327 25.97 4.45 25.97 4.582 C 25.97 4.787 25.894 4.989 25.74 5.193 C 25.586 5.398 25.419 5.585 25.234 5.759 C 25.113 5.638 24.974 5.512 24.823 5.385 C 24.668 5.259 24.499 5.145 24.309 5.049 C 24.12 4.953 23.908 4.87 23.668 4.804 C 23.427 4.738 23.16 4.706 22.864 4.706 C 22.343 4.706 21.909 4.809 21.555 5.019 C 21.203 5.229 20.921 5.502 20.706 5.838 C 20.491 6.174 20.339 6.561 20.246 6.993 C 20.155 7.427 20.109 7.867 20.109 8.317 C 20.109 8.797 20.155 9.255 20.246 9.694 C 20.337 10.134 20.496 10.521 20.721 10.857 C 20.946 11.193 21.239 11.463 21.6 11.668 C 21.962 11.873 22.414 11.974 22.955 11.974 C 23.24 11.974 23.503 11.939 23.743 11.868 C 23.983 11.797 24.196 11.711 24.378 11.608 C 24.562 11.506 24.721 11.398 24.86 11.287 C 24.997 11.175 25.113 11.077 25.204 10.996 C 25.265 11.067 25.335 11.155 25.419 11.256 C 25.502 11.36 25.578 11.466 25.649 11.577 C 25.72 11.688 25.78 11.802 25.833 11.913 C 25.884 12.027 25.909 12.128 25.909 12.219 C 25.909 12.353 25.884 12.464 25.833 12.555 C 25.783 12.646 25.699 12.75 25.588 12.861 Z M 33.476 11.688 C 33.476 12.5 33.594 13.088 33.829 13.457 C 33.645 13.528 33.473 13.581 33.314 13.612 C 33.155 13.642 32.988 13.657 32.814 13.657 C 32.445 13.657 32.164 13.586 31.974 13.442 C 31.785 13.298 31.664 13.094 31.613 12.826 C 31.388 13.063 31.09 13.263 30.721 13.427 C 30.352 13.591 29.9 13.672 29.366 13.672 C 29.088 13.672 28.813 13.634 28.535 13.556 C 28.257 13.48 28.007 13.354 27.779 13.179 C 27.554 13.005 27.37 12.773 27.226 12.482 C 27.082 12.191 27.011 11.835 27.011 11.415 C 27.011 10.895 27.137 10.468 27.388 10.142 C 27.64 9.813 27.954 9.555 28.335 9.366 C 28.714 9.176 29.126 9.047 29.566 8.974 C 30.008 8.903 30.413 8.858 30.782 8.835 C 30.905 8.825 31.024 8.82 31.143 8.82 L 31.474 8.82 L 31.474 8.539 C 31.474 8.145 31.368 7.865 31.158 7.698 C 30.948 7.531 30.607 7.448 30.135 7.448 C 29.692 7.448 29.301 7.518 28.957 7.662 C 28.613 7.807 28.277 7.971 27.949 8.155 C 27.805 7.981 27.688 7.789 27.602 7.579 C 27.516 7.369 27.471 7.213 27.471 7.109 C 27.471 6.965 27.549 6.826 27.709 6.695 C 27.868 6.561 28.085 6.442 28.363 6.333 C 28.641 6.225 28.957 6.139 29.318 6.07 C 29.677 6.005 30.056 5.969 30.458 5.969 C 31.012 5.969 31.482 6.025 31.866 6.139 C 32.25 6.252 32.563 6.427 32.803 6.662 C 33.043 6.899 33.215 7.192 33.319 7.546 C 33.423 7.9 33.473 8.315 33.473 8.785 L 33.473 11.678 Z M 31.505 9.902 L 31.29 9.902 C 31.216 9.902 31.146 9.907 31.075 9.917 C 30.817 9.937 30.564 9.967 30.312 10.01 C 30.059 10.051 29.837 10.124 29.642 10.225 C 29.447 10.329 29.288 10.46 29.164 10.624 C 29.04 10.789 28.98 10.998 28.98 11.256 C 28.98 11.544 29.063 11.787 29.225 11.987 C 29.389 12.186 29.667 12.287 30.056 12.287 C 30.251 12.287 30.435 12.262 30.61 12.212 C 30.784 12.161 30.938 12.093 31.072 12.012 C 31.206 11.928 31.31 11.84 31.388 11.741 C 31.464 11.645 31.505 11.554 31.505 11.471 Z M 37.307 6.869 C 37.471 6.674 37.726 6.477 38.075 6.278 C 38.424 6.078 38.864 5.977 39.394 5.977 C 39.773 5.977 40.132 6.04 40.476 6.169 C 40.817 6.298 41.123 6.505 41.388 6.793 C 41.654 7.081 41.866 7.46 42.025 7.933 C 42.184 8.405 42.263 8.984 42.263 9.672 C 42.263 10.473 42.172 11.132 41.987 11.65 C 41.803 12.169 41.565 12.58 41.275 12.881 C 40.984 13.184 40.658 13.397 40.299 13.521 C 39.94 13.644 39.584 13.705 39.225 13.705 C 38.929 13.705 38.669 13.672 38.449 13.604 C 38.229 13.538 38.042 13.462 37.888 13.382 C 37.734 13.301 37.618 13.217 37.534 13.136 C 37.453 13.056 37.4 12.997 37.38 12.967 L 37.38 16.75 L 35.288 16.75 L 35.288 6.192 C 35.338 6.182 35.401 6.171 35.475 6.161 C 35.538 6.151 35.609 6.144 35.692 6.139 C 35.775 6.134 35.874 6.131 35.985 6.131 C 36.326 6.131 36.617 6.187 36.855 6.3 C 37.092 6.414 37.244 6.604 37.304 6.869 Z M 40.077 9.717 C 40.077 9.409 40.052 9.123 40.001 8.855 C 39.95 8.587 39.865 8.357 39.748 8.163 C 39.632 7.968 39.473 7.817 39.273 7.708 C 39.074 7.599 38.831 7.546 38.545 7.546 C 38.116 7.546 37.817 7.63 37.651 7.791 C 37.484 7.956 37.398 8.135 37.398 8.33 L 37.398 11.592 C 37.479 11.676 37.625 11.772 37.835 11.885 C 38.045 11.999 38.288 12.055 38.563 12.055 C 39.084 12.055 39.465 11.85 39.71 11.438 C 39.956 11.029 40.077 10.453 40.077 9.715 Z M 43.878 12.366 C 43.804 12.161 43.759 11.946 43.739 11.719 C 43.718 11.494 43.708 11.266 43.708 11.041 L 43.708 3.899 C 43.779 3.889 43.857 3.879 43.938 3.869 C 44.009 3.859 44.087 3.851 44.168 3.846 C 44.249 3.841 44.333 3.839 44.413 3.839 C 44.578 3.839 44.742 3.854 44.906 3.884 C 45.071 3.915 45.22 3.978 45.354 4.069 C 45.488 4.162 45.594 4.286 45.677 4.445 C 45.76 4.605 45.801 4.812 45.801 5.07 L 45.801 6.161 L 47.957 6.161 L 47.957 7.716 L 45.801 7.716 L 45.801 10.998 C 45.801 11.714 46.094 12.073 46.678 12.073 C 46.822 12.073 46.958 12.05 47.085 12.004 C 47.214 11.959 47.327 11.908 47.431 11.85 C 47.535 11.795 47.623 11.734 47.701 11.673 C 47.777 11.613 47.833 11.565 47.863 11.534 C 48.017 11.759 48.136 11.956 48.217 12.121 C 48.298 12.285 48.341 12.441 48.341 12.586 C 48.341 12.719 48.288 12.853 48.179 12.982 C 48.07 13.111 47.919 13.23 47.724 13.339 C 47.53 13.447 47.292 13.536 47.016 13.601 C 46.738 13.67 46.438 13.703 46.109 13.703 C 45.472 13.703 44.977 13.579 44.623 13.334 C 44.269 13.088 44.019 12.765 43.878 12.363 Z M 53.259 12.166 C 53.517 12.166 53.742 12.138 53.939 12.083 C 54.133 12.027 54.31 11.956 54.464 11.875 C 54.618 11.795 54.752 11.704 54.866 11.605 C 54.98 11.506 55.083 11.418 55.174 11.335 C 55.298 11.489 55.427 11.686 55.561 11.926 C 55.695 12.169 55.761 12.366 55.761 12.52 C 55.761 12.745 55.632 12.952 55.377 13.136 C 55.162 13.301 54.856 13.442 54.462 13.561 C 54.068 13.68 53.603 13.738 53.069 13.738 C 52.587 13.738 52.111 13.677 51.646 13.553 C 51.179 13.43 50.764 13.215 50.401 12.906 C 50.037 12.598 49.741 12.186 49.516 11.668 C 49.291 11.15 49.177 10.496 49.177 9.704 C 49.177 9.058 49.278 8.502 49.478 8.034 C 49.678 7.566 49.946 7.18 50.279 6.871 C 50.613 6.563 50.989 6.338 51.411 6.194 C 51.831 6.05 52.263 5.979 52.705 5.979 C 53.279 5.979 53.767 6.07 54.169 6.25 C 54.568 6.429 54.894 6.672 55.147 6.973 C 55.397 7.276 55.579 7.622 55.693 8.011 C 55.806 8.4 55.862 8.812 55.862 9.242 L 55.862 9.457 C 55.862 9.54 55.859 9.626 55.854 9.72 C 55.849 9.813 55.844 9.902 55.839 9.99 C 55.834 10.079 55.826 10.147 55.816 10.197 L 51.275 10.197 C 51.315 10.761 51.492 11.231 51.801 11.605 C 52.109 11.979 52.599 12.166 53.269 12.166 Z M 53.961 9.042 C 53.961 8.55 53.865 8.15 53.676 7.842 C 53.484 7.534 53.143 7.379 52.647 7.379 C 52.225 7.379 51.887 7.526 51.634 7.819 C 51.381 8.112 51.255 8.519 51.255 9.042 L 53.964 9.042 Z M 59.499 6.912 C 59.559 6.821 59.643 6.717 59.744 6.606 C 59.847 6.495 59.971 6.391 60.12 6.3 C 60.269 6.209 60.434 6.131 60.613 6.07 C 60.792 6.01 60.985 5.979 61.189 5.979 C 61.313 5.979 61.442 5.989 61.581 6.01 C 61.72 6.03 61.849 6.068 61.965 6.123 C 62.084 6.179 62.177 6.255 62.251 6.353 C 62.321 6.449 62.359 6.571 62.359 6.712 C 62.359 6.937 62.304 7.192 62.19 7.483 C 62.076 7.774 61.965 8.021 61.851 8.226 C 61.677 8.082 61.503 7.973 61.328 7.895 C 61.154 7.819 60.949 7.779 60.712 7.779 C 60.393 7.779 60.128 7.872 59.91 8.057 C 59.696 8.241 59.587 8.464 59.587 8.721 L 59.587 13.705 L 57.494 13.705 L 57.494 6.194 C 57.545 6.184 57.608 6.174 57.679 6.164 C 57.74 6.154 57.813 6.146 57.894 6.141 C 57.975 6.136 58.073 6.134 58.187 6.134 C 58.515 6.134 58.801 6.197 59.041 6.323 C 59.281 6.449 59.433 6.647 59.496 6.909 Z M 65.45 6.912 C 65.511 6.821 65.594 6.717 65.695 6.606 C 65.799 6.495 65.923 6.391 66.072 6.3 C 66.221 6.209 66.385 6.131 66.565 6.07 C 66.744 6.01 66.936 5.979 67.141 5.979 C 67.265 5.979 67.394 5.989 67.533 6.01 C 67.672 6.03 67.8 6.068 67.917 6.123 C 68.035 6.179 68.129 6.255 68.202 6.353 C 68.273 6.449 68.311 6.571 68.311 6.712 C 68.311 6.937 68.255 7.192 68.142 7.483 C 68.028 7.774 67.917 8.021 67.803 8.226 C 67.629 8.082 67.454 7.973 67.28 7.895 C 67.105 7.819 66.901 7.779 66.663 7.779 C 66.345 7.779 66.079 7.872 65.862 8.057 C 65.647 8.241 65.539 8.464 65.539 8.721 L 65.539 13.705 L 63.446 13.705 L 63.446 6.194 C 63.497 6.184 63.56 6.174 63.631 6.164 C 63.691 6.154 63.764 6.146 63.845 6.141 C 63.926 6.136 64.025 6.134 64.138 6.134 C 64.467 6.134 64.753 6.197 64.993 6.323 C 65.233 6.449 65.384 6.647 65.448 6.909 Z M 75.44 11.691 C 75.44 12.502 75.559 13.091 75.794 13.46 C 75.61 13.531 75.438 13.584 75.278 13.614 C 75.119 13.644 74.952 13.66 74.778 13.66 C 74.409 13.66 74.129 13.589 73.939 13.445 C 73.75 13.301 73.628 13.096 73.578 12.828 C 73.353 13.066 73.055 13.265 72.686 13.43 C 72.317 13.594 71.864 13.675 71.331 13.675 C 71.053 13.675 70.778 13.637 70.5 13.559 C 70.222 13.483 69.971 13.356 69.746 13.182 C 69.521 13.008 69.337 12.775 69.193 12.484 C 69.049 12.194 68.978 11.837 68.978 11.418 C 68.978 10.897 69.104 10.47 69.355 10.144 C 69.605 9.816 69.921 9.558 70.302 9.368 C 70.681 9.179 71.093 9.05 71.533 8.977 C 71.975 8.906 72.38 8.86 72.749 8.838 C 72.873 8.828 72.991 8.822 73.11 8.822 L 73.441 8.822 L 73.441 8.542 C 73.441 8.148 73.335 7.867 73.125 7.7 C 72.916 7.534 72.574 7.45 72.102 7.45 C 71.66 7.45 71.268 7.521 70.924 7.665 C 70.58 7.809 70.244 7.973 69.916 8.158 C 69.772 7.983 69.655 7.791 69.569 7.582 C 69.484 7.372 69.438 7.215 69.438 7.112 C 69.438 6.968 69.516 6.829 69.676 6.697 C 69.835 6.563 70.052 6.444 70.33 6.336 C 70.608 6.227 70.924 6.141 71.285 6.073 C 71.644 6.007 72.023 5.972 72.425 5.972 C 72.979 5.972 73.449 6.027 73.833 6.141 C 74.217 6.255 74.53 6.429 74.771 6.664 C 75.011 6.902 75.182 7.195 75.286 7.549 C 75.39 7.903 75.44 8.317 75.44 8.787 L 75.44 11.681 Z M 73.469 9.904 L 73.254 9.904 C 73.181 9.904 73.11 9.909 73.039 9.919 C 72.781 9.94 72.529 9.97 72.276 10.013 C 72.023 10.053 71.801 10.127 71.606 10.228 C 71.412 10.331 71.253 10.463 71.129 10.627 C 71.005 10.791 70.944 11.001 70.944 11.259 C 70.944 11.547 71.028 11.789 71.189 11.989 C 71.351 12.189 71.632 12.29 72.021 12.29 C 72.215 12.29 72.4 12.265 72.574 12.214 C 72.749 12.163 72.903 12.095 73.037 12.014 C 73.171 11.931 73.274 11.843 73.353 11.744 C 73.428 11.648 73.469 11.557 73.469 11.474 Z\" fill=\"rgb(4, 77, 128)\"></path></g></svg>',svgContentId:8748407967,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"4.8\"})}),className:\"framer-ii3kbv\",\"data-framer-name\":\"4.8\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"DcFWCa9f6\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wp8wbb\",\"data-framer-name\":\"getapp\",layoutDependency:layoutDependency,layoutId:\"yTlvPgUQb\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-e1egwk\",\"data-framer-name\":\"getapp logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IXOtwxHxJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 78 15\"><g transform=\"translate(0.861 0.833)\"><path d=\"M 0.001 14.088 L 0.001 0.001 L 76.247 0.001 L 76.247 14.088 Z\" fill=\"transparent\"></path><path d=\"M 19.137 5.314 L 13.991 0.126 C 13.813 -0.041 13.546 -0.041 13.381 0.126 L 12.364 1.151 L 16.494 5.314 C 16.659 5.48 16.659 5.762 16.494 5.929 L 12.237 10.22 L 13.253 11.244 C 13.431 11.411 13.698 11.411 13.863 11.244 L 19.125 5.941 C 19.303 5.762 19.303 5.493 19.137 5.314 Z\" fill=\"rgb(0,156,156)\"></path><path d=\"M 10.369 0.51 L 10 0.139 C 9.822 -0.028 9.555 -0.028 9.39 0.139 L 8.374 1.163 L 9.047 1.842 L 10.369 3.174 L 11.69 1.842 Z\" fill=\"rgb(64,227,227)\"></path><path d=\"M 10.254 8.223 L 8.933 9.555 L 8.259 10.234 L 9.276 11.258 C 9.454 11.425 9.721 11.425 9.886 11.258 L 10.254 10.887 L 11.576 9.555 Z\" fill=\"rgb(64,227,227)\"></path><path d=\"M 12.516 5.314 C 12.682 5.493 12.682 5.762 12.516 5.929 L 10.254 8.209 L 11.576 9.541 L 15.16 5.929 C 15.325 5.762 15.325 5.48 15.16 5.314 L 11.703 1.83 L 10.369 3.162 Z\" fill=\"rgb(26,186,184)\"></path><path d=\"M 4.116 5.441 L 7.699 1.829 L 6.378 0.496 L 5.996 0.125 C 5.818 -0.042 5.552 -0.042 5.386 0.125 L 0.124 5.442 C -0.041 5.609 -0.041 5.89 0.124 6.057 L 5.271 11.245 C 5.449 11.411 5.716 11.411 5.881 11.245 L 6.262 10.873 L 7.584 9.541 L 4.127 6.057 C 3.949 5.89 3.949 5.621 4.114 5.442\" fill=\"rgb(135,240,240)\"></path><path d=\"M 8.106 5.442 L 9.681 3.853 L 8.36 2.521 L 7.686 1.842 L 4.128 5.455 C 3.963 5.621 3.963 5.903 4.128 6.069 L 7.572 9.541 L 8.245 8.862 L 9.567 7.53 L 8.106 6.057 C 7.94 5.903 7.94 5.621 8.106 5.442 Z\" fill=\"rgb(64,227,227)\"></path><path d=\"M 8.106 6.058 L 9.567 7.531 L 11.143 5.942 C 11.308 5.776 11.308 5.494 11.143 5.328 L 9.681 3.854 L 8.106 5.443 C 7.953 5.622 7.953 5.891 8.106 6.058 Z\" fill=\"rgb(23,207,207)\"></path><path d=\"M 23.268 4.225 C 23.28 3.635 23.395 3.059 23.611 2.508 C 23.814 2.009 24.119 1.547 24.5 1.176 C 24.92 0.792 25.415 0.497 25.949 0.318 C 26.597 0.1 27.283 -0.002 27.957 0.01 C 28.719 -0.015 29.482 0.1 30.194 0.356 C 30.702 0.548 31.185 0.83 31.591 1.202 C 31.909 1.483 32.151 1.829 32.316 2.214 C 32.443 2.495 32.519 2.79 32.557 3.097 C 32.57 3.213 32.532 3.328 32.443 3.405 C 32.354 3.482 32.252 3.52 32.138 3.52 L 30.88 3.52 C 30.778 3.52 30.689 3.494 30.613 3.43 C 30.549 3.379 30.499 3.315 30.473 3.251 C 30.448 3.213 30.397 3.123 30.308 2.982 C 30.194 2.816 30.054 2.662 29.889 2.547 C 29.66 2.38 29.406 2.239 29.139 2.137 C 28.77 2.009 28.364 1.945 27.97 1.957 C 27.296 1.919 26.623 2.149 26.102 2.585 C 25.631 3.021 25.364 3.635 25.352 4.289 C 25.326 4.686 25.326 5.108 25.326 5.57 C 25.326 6.031 25.326 6.453 25.352 6.851 C 25.377 7.722 25.631 8.349 26.102 8.734 C 26.635 9.143 27.296 9.348 27.957 9.323 C 28.313 9.323 28.669 9.284 29.012 9.195 C 29.317 9.118 29.596 8.977 29.838 8.785 C 30.079 8.593 30.27 8.336 30.384 8.042 C 30.524 7.683 30.588 7.299 30.575 6.915 L 30.575 6.786 L 28.681 6.786 C 28.567 6.786 28.465 6.748 28.389 6.658 C 28.313 6.582 28.262 6.479 28.262 6.364 L 28.262 5.249 C 28.262 5.019 28.453 4.827 28.681 4.827 L 32.265 4.827 C 32.494 4.827 32.684 5.019 32.684 5.249 L 32.684 6.966 C 32.697 7.555 32.595 8.144 32.392 8.695 C 32.201 9.207 31.896 9.669 31.503 10.053 C 31.083 10.45 30.575 10.757 30.028 10.949 C 28.694 11.372 27.258 11.372 25.911 10.949 C 25.377 10.77 24.882 10.476 24.475 10.091 C 24.094 9.707 23.789 9.246 23.598 8.734 C 23.395 8.183 23.28 7.593 23.268 7.004 C 23.268 6.812 23.255 6.582 23.242 6.351 L 23.242 4.878 C 23.242 4.635 23.255 4.43 23.268 4.225 Z\" fill=\"rgb(66, 74, 82)\"></path><path d=\"M 37.474 4.713 C 37.207 4.7 36.953 4.751 36.699 4.841 C 36.496 4.918 36.318 5.033 36.165 5.187 C 36.026 5.315 35.911 5.481 35.835 5.661 C 35.759 5.814 35.708 5.981 35.695 6.147 L 39.203 6.147 C 39.177 5.981 39.139 5.814 39.088 5.661 C 39.025 5.481 38.936 5.328 38.809 5.187 C 38.669 5.033 38.491 4.918 38.3 4.841 C 38.033 4.738 37.754 4.7 37.474 4.713 Z M 33.675 7.057 C 33.675 6.493 33.763 5.942 33.941 5.404 C 34.107 4.905 34.361 4.444 34.704 4.047 C 35.034 3.662 35.454 3.355 35.911 3.15 C 36.407 2.932 36.941 2.817 37.474 2.817 C 38.008 2.804 38.542 2.919 39.037 3.137 C 39.495 3.342 39.914 3.637 40.257 4.008 C 40.588 4.38 40.855 4.802 41.033 5.276 C 41.211 5.763 41.312 6.275 41.299 6.801 L 41.299 7.505 C 41.299 7.736 41.109 7.928 40.88 7.928 L 35.695 7.928 C 35.695 8.146 35.746 8.363 35.835 8.555 C 35.937 8.735 36.064 8.889 36.229 9.004 C 36.407 9.132 36.597 9.222 36.801 9.286 C 37.017 9.35 37.246 9.375 37.474 9.375 C 37.741 9.388 38.021 9.35 38.288 9.273 C 38.466 9.222 38.643 9.132 38.796 9.017 C 38.885 8.953 38.974 8.889 39.076 8.837 C 39.164 8.799 39.266 8.786 39.368 8.786 L 40.613 8.786 C 40.728 8.786 40.842 8.837 40.918 8.914 C 41.007 8.991 41.045 9.093 41.033 9.209 C 40.994 9.414 40.918 9.606 40.791 9.772 C 40.613 10.041 40.384 10.272 40.118 10.451 C 39.774 10.695 39.393 10.887 38.999 11.015 C 38.504 11.181 37.983 11.258 37.474 11.245 C 36.941 11.245 36.407 11.143 35.911 10.938 C 35.454 10.746 35.034 10.451 34.704 10.08 C 34.361 9.683 34.107 9.234 33.941 8.735 C 33.751 8.21 33.662 7.633 33.675 7.057 Z\" fill=\"rgb(66, 74, 82)\"></path><path d=\"M 45.025 8.183 C 45.012 8.465 45.101 8.746 45.279 8.951 C 45.444 9.144 45.762 9.246 46.232 9.246 L 47.172 9.246 C 47.401 9.246 47.592 9.438 47.592 9.669 L 47.592 10.706 C 47.592 10.937 47.401 11.129 47.172 11.129 L 46.016 11.129 C 45.037 11.129 44.3 10.886 43.779 10.412 C 43.258 9.938 43.004 9.208 42.991 8.234 L 42.991 4.865 L 41.962 4.865 C 41.847 4.865 41.746 4.827 41.67 4.737 C 41.593 4.66 41.542 4.558 41.542 4.442 L 41.542 3.405 C 41.542 3.29 41.581 3.187 41.67 3.11 C 41.746 3.033 41.847 2.982 41.962 2.982 L 42.991 2.982 L 42.991 0.434 C 42.991 0.204 43.182 0.012 43.411 0.012 L 44.592 0.012 C 44.821 0.012 45.012 0.204 45.012 0.434 L 45.012 2.983 L 47.02 2.983 C 47.248 2.996 47.414 3.176 47.426 3.406 L 47.426 4.444 C 47.426 4.674 47.236 4.866 47.007 4.866 L 44.999 4.866 L 45.025 8.184 Z\" fill=\"rgb(66, 74, 82)\"></path><path d=\"M 55.229 7.043 L 53.513 2.585 L 51.81 7.043 Z M 54.365 0.164 C 54.504 0.151 54.631 0.202 54.733 0.292 C 54.835 0.407 54.911 0.548 54.962 0.689 L 58.762 10.591 C 58.774 10.629 58.774 10.668 58.774 10.693 C 58.774 10.924 58.584 11.116 58.355 11.116 L 57.237 11.116 C 57.084 11.129 56.919 11.09 56.805 10.988 C 56.728 10.911 56.678 10.821 56.639 10.732 L 55.966 8.99 L 51.06 8.99 L 50.387 10.732 C 50.349 10.834 50.285 10.911 50.222 10.988 C 50.095 11.09 49.942 11.142 49.79 11.116 L 48.671 11.116 C 48.443 11.116 48.252 10.924 48.252 10.693 C 48.252 10.655 48.252 10.616 48.265 10.591 L 52.064 0.689 C 52.115 0.548 52.191 0.407 52.293 0.292 C 52.395 0.202 52.535 0.151 52.662 0.164 Z\" fill=\"rgb(66, 74, 82)\"></path><path d=\"M 65.433 7.491 C 65.458 7.197 65.458 6.902 65.433 6.62 C 65.369 5.941 65.166 5.455 64.81 5.16 C 64.454 4.852 63.997 4.699 63.526 4.712 C 63.056 4.699 62.599 4.852 62.243 5.16 C 61.874 5.493 61.671 5.967 61.646 6.454 C 61.62 6.646 61.607 6.851 61.62 7.043 C 61.62 7.248 61.633 7.44 61.646 7.632 C 61.671 8.119 61.887 8.58 62.243 8.913 C 62.599 9.233 63.056 9.4 63.526 9.387 C 63.997 9.4 64.454 9.233 64.81 8.939 C 65.166 8.644 65.369 8.157 65.433 7.491 Z M 63.997 11.283 C 63.704 11.283 63.412 11.257 63.132 11.193 C 62.904 11.142 62.675 11.065 62.459 10.963 C 62.294 10.873 62.128 10.77 61.976 10.642 C 61.862 10.553 61.747 10.45 61.646 10.335 L 61.646 13.665 C 61.646 13.896 61.455 14.088 61.226 14.088 L 60.057 14.088 C 59.828 14.088 59.638 13.896 59.638 13.665 L 59.638 3.405 C 59.638 3.174 59.828 2.982 60.057 2.982 L 61.239 2.982 C 61.468 2.982 61.658 3.174 61.658 3.405 L 61.658 3.764 C 61.76 3.648 61.862 3.546 61.989 3.456 C 62.141 3.341 62.306 3.239 62.484 3.149 C 62.7 3.046 62.929 2.97 63.158 2.918 C 63.437 2.854 63.73 2.829 64.022 2.829 C 64.505 2.816 64.988 2.931 65.433 3.136 C 65.839 3.328 66.208 3.61 66.5 3.956 C 66.805 4.302 67.034 4.699 67.199 5.134 C 67.364 5.583 67.466 6.044 67.491 6.518 C 67.504 6.671 67.504 6.851 67.504 7.069 C 67.504 7.286 67.504 7.466 67.491 7.619 C 67.466 8.093 67.377 8.567 67.199 9.003 C 67.034 9.438 66.805 9.835 66.5 10.181 C 66.208 10.527 65.839 10.796 65.433 11.001 C 64.962 11.193 64.48 11.296 63.997 11.283 Z\" fill=\"rgb(66, 74, 82)\"></path><path d=\"M 74.215 7.491 C 74.241 7.197 74.241 6.902 74.215 6.62 C 74.152 5.941 73.949 5.455 73.593 5.16 C 73.237 4.852 72.779 4.699 72.309 4.712 C 71.839 4.699 71.381 4.852 71.026 5.16 C 70.657 5.493 70.454 5.967 70.428 6.454 C 70.403 6.646 70.39 6.851 70.403 7.043 C 70.403 7.248 70.416 7.44 70.428 7.632 C 70.454 8.119 70.67 8.58 71.026 8.913 C 71.381 9.233 71.839 9.4 72.309 9.387 C 72.779 9.4 73.237 9.233 73.593 8.939 C 73.949 8.644 74.152 8.157 74.215 7.491 Z M 72.767 11.27 C 72.474 11.27 72.182 11.244 71.902 11.18 C 71.674 11.129 71.445 11.052 71.229 10.95 C 71.051 10.86 70.886 10.758 70.746 10.642 C 70.632 10.553 70.517 10.45 70.416 10.335 L 70.416 13.665 C 70.416 13.781 70.365 13.883 70.289 13.96 C 70.212 14.037 70.111 14.088 69.996 14.088 L 68.814 14.088 C 68.586 14.088 68.395 13.896 68.395 13.665 L 68.395 3.405 C 68.395 3.174 68.586 2.982 68.814 2.982 L 69.996 2.982 C 70.225 2.982 70.416 3.174 70.416 3.405 L 70.416 3.764 C 70.517 3.648 70.632 3.546 70.746 3.456 C 70.899 3.341 71.064 3.239 71.229 3.149 C 71.445 3.046 71.674 2.97 71.902 2.918 C 72.182 2.854 72.474 2.829 72.767 2.829 C 73.25 2.816 73.732 2.931 74.177 3.136 C 74.584 3.328 74.952 3.61 75.245 3.956 C 75.55 4.302 75.779 4.699 75.944 5.134 C 76.109 5.583 76.211 6.044 76.236 6.518 C 76.249 6.671 76.249 6.851 76.249 7.069 C 76.249 7.286 76.249 7.466 76.236 7.619 C 76.211 8.093 76.122 8.567 75.944 9.003 C 75.779 9.438 75.55 9.835 75.245 10.181 C 74.94 10.527 74.584 10.796 74.177 11.001 C 73.732 11.206 73.25 11.308 72.767 11.308\" fill=\"rgb(66, 74, 82)\"></path></g></svg>',svgContentId:11799738294,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"4.8\"})}),className:\"framer-ib9aeb\",\"data-framer-name\":\"4.8\",fonts:[\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"P006lsLUv\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q93q13\",\"data-framer-name\":\"Group 185\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"p8prPV5B1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 70 12\"><g transform=\"translate(0.816 1.043)\"><path d=\"M 5.565 0 L 6.879 3.955 L 11.13 3.955 L 7.691 6.399 L 9.005 10.353 L 5.565 7.909 L 2.126 10.353 L 3.44 6.399 L 0 3.955 L 4.251 3.955 Z\" fill=\"rgb(253,207,114)\"></path><path d=\"M 19.544 0 L 20.931 3.955 L 25.419 3.955 L 21.788 6.399 L 23.175 10.353 L 19.544 7.909 L 15.914 10.353 L 17.3 6.399 L 13.67 3.955 L 18.157 3.955 Z\" fill=\"rgb(253,207,114)\"></path><path d=\"M 33.848 0 L 35.235 3.955 L 39.722 3.955 L 36.092 6.399 L 37.479 10.353 L 33.848 7.909 L 30.218 10.353 L 31.604 6.399 L 27.974 3.955 L 32.461 3.955 Z\" fill=\"rgb(253,207,114)\"></path><path d=\"M 47.827 0 L 49.141 3.955 L 53.393 3.955 L 49.953 6.399 L 51.267 10.353 L 47.827 7.909 L 44.388 10.353 L 45.702 6.399 L 42.262 3.955 L 46.514 3.955 Z\" fill=\"rgb(253,207,114)\"></path><path d=\"M 61.806 0 L 63.193 4.174 L 67.68 4.174 L 64.05 6.754 L 65.437 10.929 L 61.806 8.349 L 58.175 10.929 L 59.562 6.754 L 55.932 4.174 L 60.419 4.174 Z\" fill=\"rgb(253,207,114)\"></path><path d=\"M 62.653 8.95 L 65.437 10.929 L 64.05 6.754 L 67.68 4.174 L 63.193 4.174 L 62.653 2.549 Z\" fill=\"rgb(217,217,217)\"></path></g></svg>',svgContentId:11768607239,withExternalLayout:true,...addPropertyOverrides({gc0lkdEf_:{svgContentId:10437635638},LScLYjPKI:{svgContentId:10437635638}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mmou9a-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aGnyH8ccS-container\",nodeId:\"aGnyH8ccS\",rendersWithMotion:true,scopeId:\"AIDhBJH3f\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.1,fadeContent:true,fadeInset:0,fadeWidth:7,overflow:false},gap:30,height:\"100%\",hoverFactor:.5,id:\"aGnyH8ccS\",layoutId:\"aGnyH8ccS\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16xq3dy\",\"data-border\":true,\"data-framer-name\":\"Card 1\",layoutDependency:layoutDependency,layoutId:\"x_q37LU9c\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xoq57t\",layoutDependency:layoutDependency,layoutId:\"AmpgBuq1J\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/RUQnMptpu0xRcUSENi2SD90kU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RUQnMptpu0xRcUSENi2SD90kU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RUQnMptpu0xRcUSENi2SD90kU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RUQnMptpu0xRcUSENi2SD90kU.jpg 1080w\"},className:\"framer-1rfl921\",layoutDependency:layoutDependency,layoutId:\"uvokgV1hK\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rcddmk\",layoutDependency:layoutDependency,layoutId:\"yjBxiq_y6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Cynthia Parker\"})}),className:\"framer-1uh7zrn\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"y04Z5f1jP\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Dry Cleaner Owner\"})}),className:\"framer-1fk0ejx\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"otDPtPCn2\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"“The team is always looking for ways to customize the software in ways that will benefit our processes. It is hard to think of another company that spends as much time trying to make its product better for its customers.”\"})}),className:\"framer-r30pie\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"wijGLz79K\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e3k6ui\",\"data-border\":true,\"data-framer-name\":\"Card 2\",layoutDependency:layoutDependency,layoutId:\"Dtp8y3K9y\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2oxe4o\",layoutDependency:layoutDependency,layoutId:\"SRBbavwZz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/ZvtqhGSiBICRbbuu9SsAgfb1Ok.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZvtqhGSiBICRbbuu9SsAgfb1Ok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZvtqhGSiBICRbbuu9SsAgfb1Ok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZvtqhGSiBICRbbuu9SsAgfb1Ok.jpg 1080w\"},className:\"framer-1qezkyy\",layoutDependency:layoutDependency,layoutId:\"pfdeKLbrF\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fk9gx\",layoutDependency:layoutDependency,layoutId:\"so8Ek1xTg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Jim Smith\"})}),className:\"framer-1fmsdw5\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"zDy8Z8qir\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Dry Cleaner Owner\"})}),className:\"framer-kz89gz\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"Z7InW3B1j\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"“If someone would ask me: Which software should I use? I would definitely recommend Enlite, because of its responsiveness, which is what a dry cleaner needs.”\"})}),className:\"framer-1heien5\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"AveREPAKK\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s1yypo\",\"data-border\":true,\"data-framer-name\":\"Card 3\",layoutDependency:layoutDependency,layoutId:\"D39EkP3Od\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lmjhg4\",layoutDependency:layoutDependency,layoutId:\"sLoTzSwhK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/Az0hjWsPy6k4IWaBtNabsCSsHzo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Az0hjWsPy6k4IWaBtNabsCSsHzo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Az0hjWsPy6k4IWaBtNabsCSsHzo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Az0hjWsPy6k4IWaBtNabsCSsHzo.jpg 1080w\"},className:\"framer-v0mcu9\",layoutDependency:layoutDependency,layoutId:\"lbCFJbybe\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7a54yc\",layoutDependency:layoutDependency,layoutId:\"cA3uUVLH9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Amar Williams\"})}),className:\"framer-1vcy7a8\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"OrjQgDse5\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Dry Cleaner Owner\"})}),className:\"framer-1c8mhfi\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"OGqTAaZCL\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"“Our business is not like most dry cleaners. Enlite has been able to listen to our needs and customize a system that is efficient for our everyday use.”\"})}),className:\"framer-7vba8i\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"hEiUNZ6AW\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n559tx\",\"data-border\":true,\"data-framer-name\":\"Card 4\",layoutDependency:layoutDependency,layoutId:\"L1SFQfx45\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1unafa8\",layoutDependency:layoutDependency,layoutId:\"ImKVpVsBO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/qNMmVsMVysZOe7eGtP6w5w80s.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qNMmVsMVysZOe7eGtP6w5w80s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qNMmVsMVysZOe7eGtP6w5w80s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qNMmVsMVysZOe7eGtP6w5w80s.jpg 1080w\"},className:\"framer-osa4tk\",layoutDependency:layoutDependency,layoutId:\"KklEp1Cut\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozhlow\",layoutDependency:layoutDependency,layoutId:\"IAEU5IRBw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Emma Johnson\"})}),className:\"framer-1ad2pyu\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"vrcE7NDKy\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Dry Cleaner Owner\"})}),className:\"framer-yxt0lc\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"wVxkCzmCE\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Enlite POS has made my Pickup and Delivery system extremely efficient. I can automate and customize routes, inform customers via automated messaging, and optimize routes per my needs!\"'})}),className:\"framer-1aw9j73\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"hvoXHOAA4\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m4rltf\",\"data-border\":true,\"data-framer-name\":\"Card 5\",layoutDependency:layoutDependency,layoutId:\"TxCS9I7DQ\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6iu1ov\",layoutDependency:layoutDependency,layoutId:\"B_LP5ii9k\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/lYEyRE6ttTrZtBkwhqpSGWsmOg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lYEyRE6ttTrZtBkwhqpSGWsmOg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lYEyRE6ttTrZtBkwhqpSGWsmOg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lYEyRE6ttTrZtBkwhqpSGWsmOg.jpg 1080w\"},className:\"framer-iou2pk\",layoutDependency:layoutDependency,layoutId:\"fptiK991m\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jpz9h7\",layoutDependency:layoutDependency,layoutId:\"fkSdmAWQo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Michael Williams\"})}),className:\"framer-n9bqhn\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"lutgt6K9B\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Laundromat Owner\"})}),className:\"framer-1qanrh3\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"J4r7UEgCt\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"Since DARK has integrated with our credit card units, our company rarely experiences incorrect card transactions\"'})}),className:\"framer-ywo2se\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"zEAM2YPr_\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-39ou8j\",\"data-border\":true,\"data-framer-name\":\"Card 6\",layoutDependency:layoutDependency,layoutId:\"RRbyR2C0P\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5z8dwo\",layoutDependency:layoutDependency,layoutId:\"layZVg343\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/LRSkrZ5tDV93fZjA3EmH76S5ck4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LRSkrZ5tDV93fZjA3EmH76S5ck4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LRSkrZ5tDV93fZjA3EmH76S5ck4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LRSkrZ5tDV93fZjA3EmH76S5ck4.jpg 1080w\"},className:\"framer-1w6w8y1\",layoutDependency:layoutDependency,layoutId:\"rtuJso9eS\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xyw62c\",layoutDependency:layoutDependency,layoutId:\"ccse4pI8x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"William John\"})}),className:\"framer-oqar9n\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"ZC9zLDg8g\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Dry Cleaner Owner\"})}),className:\"framer-fatzxv\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"QkX_Woi2q\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"The agents helped us with any questions or concerns about the system. Also, they created a custom invoice to adhere to our needs. The system is easy to use and is working great!\"'})}),className:\"framer-1qsw0ui\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"wNLd6Bf7i\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jxn1ug\",\"data-border\":true,\"data-framer-name\":\"Card 7\",layoutDependency:layoutDependency,layoutId:\"swWkttqht\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vqpq2c\",layoutDependency:layoutDependency,layoutId:\"sDAqKyelC\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/XuqUMfYZ7f9GLfsHLRvnnxYl4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XuqUMfYZ7f9GLfsHLRvnnxYl4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XuqUMfYZ7f9GLfsHLRvnnxYl4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XuqUMfYZ7f9GLfsHLRvnnxYl4.jpg 1080w\"},className:\"framer-4ml8dz\",layoutDependency:layoutDependency,layoutId:\"hLcXNVj7S\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mo0j2s\",layoutDependency:layoutDependency,layoutId:\"LEEUGxiAn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Sophia Garcia\"})}),className:\"framer-1x27c10\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"vj1foWt_Y\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Laundromat Owner\"})}),className:\"framer-1z66c8\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"xyOaEYoJh\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"I was intrigued by the team’s fast response and demo, where they allowed me to test their POS system. This allowed me to test their system thoroughly before making any commitment.\"'})}),className:\"framer-3yd3k5\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"OCEHuQRMT\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fwxrrb\",\"data-border\":true,\"data-framer-name\":\"Card 8\",layoutDependency:layoutDependency,layoutId:\"Lyfs1_uVw\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gz4zdz\",layoutDependency:layoutDependency,layoutId:\"aiRUxxZC8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/oRVDFdWFlNwecCgVLnk4odjoRUY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oRVDFdWFlNwecCgVLnk4odjoRUY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oRVDFdWFlNwecCgVLnk4odjoRUY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oRVDFdWFlNwecCgVLnk4odjoRUY.jpg 1080w\"},className:\"framer-7shc9a\",layoutDependency:layoutDependency,layoutId:\"gIdoEMGZb\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hizs63\",layoutDependency:layoutDependency,layoutId:\"es4dKLmpi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Benjamin Miller\"})}),className:\"framer-w3x1ja\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"sGS0OviZs\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Dry Cleaner Owner\"})}),className:\"framer-137hv60\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"ADwxCPUez\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"We are very happy with Enlite. Since the beginning, they have helped us a lot in the process of creating the store for our Laundry Business. They did everything they could to make everything go smoothly.\"'})}),className:\"framer-1hxz2ou\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"YM6He1caE\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dvfur5\",\"data-border\":true,\"data-framer-name\":\"Card 9\",layoutDependency:layoutDependency,layoutId:\"ruCv4NbxX\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f79ps3\",layoutDependency:layoutDependency,layoutId:\"dJA8LaizT\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,positionX:\"85.7%\",positionY:\"21.6%\",sizes:\"50px\",src:\"https://framerusercontent.com/images/igrEq48t5LGaX0Qaiih7RQcpgM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/igrEq48t5LGaX0Qaiih7RQcpgM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/igrEq48t5LGaX0Qaiih7RQcpgM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/igrEq48t5LGaX0Qaiih7RQcpgM.jpg 1080w\"},className:\"framer-1od2xit\",layoutDependency:layoutDependency,layoutId:\"xK7OKKtXU\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vwykfi\",layoutDependency:layoutDependency,layoutId:\"WM9kkY7eS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Olivia Brown\"})}),className:\"framer-htyhf8\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"bUr_mhbJw\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Laundromat Owner\"})}),className:\"framer-1qui4y9\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"faPt1zpDa\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"I’m not sure who did it, but THANK YOU for the new outstanding balance-billing customers report! Since every customer at our business is a billing customer, it was difficult to find their true outstanding balance using the conventional report.\"'})}),className:\"framer-15jtqcp\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"cXO0Hwvlv\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-me73y3\",\"data-border\":true,\"data-framer-name\":\"Card 10\",layoutDependency:layoutDependency,layoutId:\"bK8fN333H\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(214, 214, 214, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(244, 244, 244)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.3010936508871964px 0.9032809526615893px -0.8333333333333333px rgba(0, 0, 0, 0.08), 0px 1.1442666516217286px 3.4327999548651857px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 5px 15px -2.5px rgba(0, 0, 0, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16kohas\",layoutDependency:layoutDependency,layoutId:\"fu0j56fby\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"dry cleaner owner\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:1080,pixelWidth:1080,sizes:\"50px\",src:\"https://framerusercontent.com/images/knx81R3v1rrKkgYW8xR2CDlqOzg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/knx81R3v1rrKkgYW8xR2CDlqOzg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/knx81R3v1rrKkgYW8xR2CDlqOzg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/knx81R3v1rrKkgYW8xR2CDlqOzg.jpg 1080w\"},className:\"framer-ie0krf\",layoutDependency:layoutDependency,layoutId:\"sPBh_MNNy\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g4856q\",layoutDependency:layoutDependency,layoutId:\"Am054lppl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Alex Martinez\"})}),className:\"framer-fwu8ta\",fonts:[\"GF;Lato-900\"],layoutDependency:layoutDependency,layoutId:\"Mow8vpthp\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:\"Laundromat Owner\"})}),className:\"framer-1x5h9d3\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"x1Zsn2wsn\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(19, 19, 22))\"},children:'\"We dreamed of unifying our POS, mobile app, and lockers on one platform. Integrating lockers allows customers to use a single app and enables us to track shifts between stores, lockers, and home delivery\"'})}),className:\"framer-k7875v\",fonts:[\"GF;Lato-regular\"],layoutDependency:layoutDependency,layoutId:\"cZuR6LBfd\",style:{\"--extracted-r6o4lv\":\"rgb(19, 19, 22)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y3jXA.framer-1c78ihh, .framer-Y3jXA .framer-1c78ihh { display: block; }\",\".framer-Y3jXA.framer-azca8x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 150px 100px 150px; position: relative; width: 1352px; }\",\".framer-Y3jXA .framer-1igclg1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Y3jXA .framer-o5f9or, .framer-Y3jXA .framer-r30pie, .framer-Y3jXA .framer-1heien5, .framer-Y3jXA .framer-7vba8i, .framer-Y3jXA .framer-1aw9j73, .framer-Y3jXA .framer-ywo2se, .framer-Y3jXA .framer-1qsw0ui, .framer-Y3jXA .framer-3yd3k5, .framer-Y3jXA .framer-1hxz2ou, .framer-Y3jXA .framer-15jtqcp, .framer-Y3jXA .framer-k7875v { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y3jXA .framer-czx0y2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-Y3jXA .framer-1pyro8s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Y3jXA .framer-2cfxjs, .framer-Y3jXA .framer-1wp8wbb { flex: none; height: 20px; overflow: visible; position: relative; width: 111px; }\",\".framer-Y3jXA .framer-s0izvq { flex: none; height: 18px; left: 0px; position: absolute; top: 2px; width: 76px; }\",\".framer-Y3jXA .framer-ii3kbv { flex: none; height: 20px; left: 83px; position: absolute; top: 0px; white-space: pre-wrap; width: 23px; word-break: break-word; word-wrap: break-word; }\",\".framer-Y3jXA .framer-e1egwk { flex: none; height: 15px; left: -1px; position: absolute; top: 4px; width: 78px; }\",\".framer-Y3jXA .framer-ib9aeb { flex: none; height: 20px; left: 82px; position: absolute; top: 0px; white-space: pre-wrap; width: 23px; word-break: break-word; word-wrap: break-word; }\",\".framer-Y3jXA .framer-1q93q13 { flex: none; height: 12px; position: relative; width: 70px; }\",\".framer-Y3jXA .framer-mmou9a-container { flex: none; height: 430px; position: relative; width: 100%; }\",\".framer-Y3jXA .framer-16xq3dy, .framer-Y3jXA .framer-n559tx, .framer-Y3jXA .framer-jxn1ug { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-Y3jXA .framer-1xoq57t, .framer-Y3jXA .framer-2oxe4o, .framer-Y3jXA .framer-lmjhg4, .framer-Y3jXA .framer-1unafa8, .framer-Y3jXA .framer-6iu1ov, .framer-Y3jXA .framer-5z8dwo, .framer-Y3jXA .framer-1vqpq2c, .framer-Y3jXA .framer-gz4zdz, .framer-Y3jXA .framer-1f79ps3, .framer-Y3jXA .framer-16kohas { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y3jXA .framer-1rfl921, .framer-Y3jXA .framer-1qezkyy, .framer-Y3jXA .framer-v0mcu9, .framer-Y3jXA .framer-osa4tk, .framer-Y3jXA .framer-iou2pk, .framer-Y3jXA .framer-1w6w8y1, .framer-Y3jXA .framer-4ml8dz, .framer-Y3jXA .framer-7shc9a, .framer-Y3jXA .framer-1od2xit, .framer-Y3jXA .framer-ie0krf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y3jXA .framer-1rcddmk, .framer-Y3jXA .framer-fk9gx, .framer-Y3jXA .framer-7a54yc, .framer-Y3jXA .framer-ozhlow, .framer-Y3jXA .framer-1jpz9h7, .framer-Y3jXA .framer-1xyw62c, .framer-Y3jXA .framer-1mo0j2s, .framer-Y3jXA .framer-1hizs63, .framer-Y3jXA .framer-1vwykfi, .framer-Y3jXA .framer-g4856q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-Y3jXA .framer-1uh7zrn, .framer-Y3jXA .framer-1fk0ejx, .framer-Y3jXA .framer-1fmsdw5, .framer-Y3jXA .framer-kz89gz, .framer-Y3jXA .framer-1vcy7a8, .framer-Y3jXA .framer-1c8mhfi, .framer-Y3jXA .framer-1ad2pyu, .framer-Y3jXA .framer-yxt0lc, .framer-Y3jXA .framer-n9bqhn, .framer-Y3jXA .framer-1qanrh3, .framer-Y3jXA .framer-oqar9n, .framer-Y3jXA .framer-fatzxv, .framer-Y3jXA .framer-1x27c10, .framer-Y3jXA .framer-1z66c8, .framer-Y3jXA .framer-w3x1ja, .framer-Y3jXA .framer-137hv60, .framer-Y3jXA .framer-htyhf8, .framer-Y3jXA .framer-1qui4y9, .framer-Y3jXA .framer-fwu8ta, .framer-Y3jXA .framer-1x5h9d3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-Y3jXA .framer-e3k6ui, .framer-Y3jXA .framer-1s1yypo, .framer-Y3jXA .framer-1m4rltf, .framer-Y3jXA .framer-39ou8j, .framer-Y3jXA .framer-1fwxrrb, .framer-Y3jXA .framer-dvfur5, .framer-Y3jXA .framer-me73y3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y3jXA.framer-azca8x, .framer-Y3jXA .framer-1igclg1, .framer-Y3jXA .framer-1pyro8s, .framer-Y3jXA .framer-16xq3dy, .framer-Y3jXA .framer-1xoq57t, .framer-Y3jXA .framer-1rcddmk, .framer-Y3jXA .framer-e3k6ui, .framer-Y3jXA .framer-2oxe4o, .framer-Y3jXA .framer-fk9gx, .framer-Y3jXA .framer-1s1yypo, .framer-Y3jXA .framer-lmjhg4, .framer-Y3jXA .framer-7a54yc, .framer-Y3jXA .framer-n559tx, .framer-Y3jXA .framer-1unafa8, .framer-Y3jXA .framer-ozhlow, .framer-Y3jXA .framer-1m4rltf, .framer-Y3jXA .framer-6iu1ov, .framer-Y3jXA .framer-1jpz9h7, .framer-Y3jXA .framer-39ou8j, .framer-Y3jXA .framer-5z8dwo, .framer-Y3jXA .framer-1xyw62c, .framer-Y3jXA .framer-jxn1ug, .framer-Y3jXA .framer-1vqpq2c, .framer-Y3jXA .framer-1mo0j2s, .framer-Y3jXA .framer-1fwxrrb, .framer-Y3jXA .framer-gz4zdz, .framer-Y3jXA .framer-1hizs63, .framer-Y3jXA .framer-dvfur5, .framer-Y3jXA .framer-1f79ps3, .framer-Y3jXA .framer-1vwykfi, .framer-Y3jXA .framer-me73y3, .framer-Y3jXA .framer-16kohas, .framer-Y3jXA .framer-g4856q { gap: 0px; } .framer-Y3jXA.framer-azca8x > *, .framer-Y3jXA .framer-e3k6ui > *, .framer-Y3jXA .framer-1s1yypo > *, .framer-Y3jXA .framer-1m4rltf > *, .framer-Y3jXA .framer-39ou8j > *, .framer-Y3jXA .framer-1fwxrrb > *, .framer-Y3jXA .framer-dvfur5 > *, .framer-Y3jXA .framer-me73y3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Y3jXA.framer-azca8x > :first-child, .framer-Y3jXA .framer-1igclg1 > :first-child, .framer-Y3jXA .framer-16xq3dy > :first-child, .framer-Y3jXA .framer-1rcddmk > :first-child, .framer-Y3jXA .framer-e3k6ui > :first-child, .framer-Y3jXA .framer-fk9gx > :first-child, .framer-Y3jXA .framer-1s1yypo > :first-child, .framer-Y3jXA .framer-7a54yc > :first-child, .framer-Y3jXA .framer-n559tx > :first-child, .framer-Y3jXA .framer-ozhlow > :first-child, .framer-Y3jXA .framer-1m4rltf > :first-child, .framer-Y3jXA .framer-1jpz9h7 > :first-child, .framer-Y3jXA .framer-39ou8j > :first-child, .framer-Y3jXA .framer-1xyw62c > :first-child, .framer-Y3jXA .framer-jxn1ug > :first-child, .framer-Y3jXA .framer-1mo0j2s > :first-child, .framer-Y3jXA .framer-1fwxrrb > :first-child, .framer-Y3jXA .framer-1hizs63 > :first-child, .framer-Y3jXA .framer-dvfur5 > :first-child, .framer-Y3jXA .framer-1vwykfi > :first-child, .framer-Y3jXA .framer-me73y3 > :first-child, .framer-Y3jXA .framer-g4856q > :first-child { margin-top: 0px; } .framer-Y3jXA.framer-azca8x > :last-child, .framer-Y3jXA .framer-1igclg1 > :last-child, .framer-Y3jXA .framer-16xq3dy > :last-child, .framer-Y3jXA .framer-1rcddmk > :last-child, .framer-Y3jXA .framer-e3k6ui > :last-child, .framer-Y3jXA .framer-fk9gx > :last-child, .framer-Y3jXA .framer-1s1yypo > :last-child, .framer-Y3jXA .framer-7a54yc > :last-child, .framer-Y3jXA .framer-n559tx > :last-child, .framer-Y3jXA .framer-ozhlow > :last-child, .framer-Y3jXA .framer-1m4rltf > :last-child, .framer-Y3jXA .framer-1jpz9h7 > :last-child, .framer-Y3jXA .framer-39ou8j > :last-child, .framer-Y3jXA .framer-1xyw62c > :last-child, .framer-Y3jXA .framer-jxn1ug > :last-child, .framer-Y3jXA .framer-1mo0j2s > :last-child, .framer-Y3jXA .framer-1fwxrrb > :last-child, .framer-Y3jXA .framer-1hizs63 > :last-child, .framer-Y3jXA .framer-dvfur5 > :last-child, .framer-Y3jXA .framer-1vwykfi > :last-child, .framer-Y3jXA .framer-me73y3 > :last-child, .framer-Y3jXA .framer-g4856q > :last-child { margin-bottom: 0px; } .framer-Y3jXA .framer-1igclg1 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Y3jXA .framer-1pyro8s > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-Y3jXA .framer-1pyro8s > :first-child, .framer-Y3jXA .framer-1xoq57t > :first-child, .framer-Y3jXA .framer-2oxe4o > :first-child, .framer-Y3jXA .framer-lmjhg4 > :first-child, .framer-Y3jXA .framer-1unafa8 > :first-child, .framer-Y3jXA .framer-6iu1ov > :first-child, .framer-Y3jXA .framer-5z8dwo > :first-child, .framer-Y3jXA .framer-1vqpq2c > :first-child, .framer-Y3jXA .framer-gz4zdz > :first-child, .framer-Y3jXA .framer-1f79ps3 > :first-child, .framer-Y3jXA .framer-16kohas > :first-child { margin-left: 0px; } .framer-Y3jXA .framer-1pyro8s > :last-child, .framer-Y3jXA .framer-1xoq57t > :last-child, .framer-Y3jXA .framer-2oxe4o > :last-child, .framer-Y3jXA .framer-lmjhg4 > :last-child, .framer-Y3jXA .framer-1unafa8 > :last-child, .framer-Y3jXA .framer-6iu1ov > :last-child, .framer-Y3jXA .framer-5z8dwo > :last-child, .framer-Y3jXA .framer-1vqpq2c > :last-child, .framer-Y3jXA .framer-gz4zdz > :last-child, .framer-Y3jXA .framer-1f79ps3 > :last-child, .framer-Y3jXA .framer-16kohas > :last-child { margin-right: 0px; } .framer-Y3jXA .framer-16xq3dy > *, .framer-Y3jXA .framer-n559tx > *, .framer-Y3jXA .framer-jxn1ug > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Y3jXA .framer-1xoq57t > *, .framer-Y3jXA .framer-2oxe4o > *, .framer-Y3jXA .framer-lmjhg4 > *, .framer-Y3jXA .framer-1unafa8 > *, .framer-Y3jXA .framer-6iu1ov > *, .framer-Y3jXA .framer-5z8dwo > *, .framer-Y3jXA .framer-1vqpq2c > *, .framer-Y3jXA .framer-gz4zdz > *, .framer-Y3jXA .framer-1f79ps3 > *, .framer-Y3jXA .framer-16kohas > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Y3jXA .framer-1rcddmk > *, .framer-Y3jXA .framer-fk9gx > *, .framer-Y3jXA .framer-7a54yc > *, .framer-Y3jXA .framer-ozhlow > *, .framer-Y3jXA .framer-1jpz9h7 > *, .framer-Y3jXA .framer-1xyw62c > *, .framer-Y3jXA .framer-1mo0j2s > *, .framer-Y3jXA .framer-1hizs63 > *, .framer-Y3jXA .framer-1vwykfi > *, .framer-Y3jXA .framer-g4856q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-Y3jXA.framer-v-w7ya9x.framer-azca8x { gap: 30px; padding: 150px 60px 150px 60px; width: 810px; }\",\".framer-Y3jXA.framer-v-w7ya9x .framer-czx0y2, .framer-Y3jXA.framer-v-f5ddmo .framer-czx0y2 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y3jXA.framer-v-w7ya9x.framer-azca8x { gap: 0px; } .framer-Y3jXA.framer-v-w7ya9x.framer-azca8x > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Y3jXA.framer-v-w7ya9x.framer-azca8x > :first-child { margin-top: 0px; } .framer-Y3jXA.framer-v-w7ya9x.framer-azca8x > :last-child { margin-bottom: 0px; } }\",\".framer-Y3jXA.framer-v-f5ddmo.framer-azca8x { gap: 30px; justify-content: flex-start; padding: 100px 50px 100px 50px; width: 430px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y3jXA.framer-v-f5ddmo.framer-azca8x { gap: 0px; } .framer-Y3jXA.framer-v-f5ddmo.framer-azca8x > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Y3jXA.framer-v-f5ddmo.framer-azca8x > :first-child { margin-top: 0px; } .framer-Y3jXA.framer-v-f5ddmo.framer-azca8x > :last-child { margin-bottom: 0px; } }\",'.framer-Y3jXA[data-border=\"true\"]::after, .framer-Y3jXA [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 795\n * @framerIntrinsicWidth 1352\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gc0lkdEf_\":{\"layout\":[\"fixed\",\"auto\"]},\"LScLYjPKI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAIDhBJH3f=withCSS(Component,css,\"framer-Y3jXA\");export default FramerAIDhBJH3f;FramerAIDhBJH3f.displayName=\"Customer reviews\";FramerAIDhBJH3f.defaultProps={height:795,width:1352};addPropertyControls(FramerAIDhBJH3f,{variant:{options:[\"hip3xAlr7\",\"gc0lkdEf_\",\"LScLYjPKI\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAIDhBJH3f,[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XewqFGC_p9dw.woff2\",weight:\"900\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAIDhBJH3f\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1352\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gc0lkdEf_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LScLYjPKI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"795\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"63BAME,SAAS,EAAkBkD,EAAEpB,EAAE,CAAC,OAAOA,EAAEoB,GAAG,IAAIpB,GAAG,CAAE,kBANirC,AAAjuB,EAAW,GAAGoB,EAAmtB,EAAE,CAAC,GAAG,GAAG,IAAIA,EAAE,EAAE,GAAGA,EAAE,GAAI,ICAnnC,SAAS,GAAgBA,EAAElB,EAAEC,EAAEG,EAAE,EAAE,CAAC,IAAIG,EAAMF,EAAMF,EAAE,EAAE,EAAqC,CAAlC,EAAEH,GAAGC,EAAED,GAAG,EAAE,EAAE,EAAWK,EAAED,EAAE,EAAE,CAACc,EAAE,EAAE,EAAEjB,EAAEI,EAAEL,EAAEK,QAAQ,KAAK,IAAIE,EAAE,CAACT,GAAG,EAAEK,EAAE,IAAG,OAAOE,CAAE,UAAS,EAAYL,EAAEF,EAAEmB,EAAEhB,EAAE,CAAC,GAAGD,IAAIF,GAAGmB,IAAIhB,EAAE,OAAOiB,EAAE,IAAM,EAAS,GAAG,GAAgBA,EAAE,EAAE,EAAElB,EAAEiB,EAAE,CAAC,MAAO,CAAA,GAAOC,IAAJ,GAAWA,IAAJ,EAAMA,EAAE,EAAW,EAASA,EAAE,CAACpB,EAAEG,EAAE,AAAC,sBAA5S,AAA1I,GAAyD,CAAM,EAAW,CAACiB,EAAElB,EAAEF,OAAO,EAAE,EAAEA,EAAE,EAAEE,GAAGkB,GAAG,EAAEpB,EAAE,EAAEE,IAAIkB,EAAE,EAAElB,GAAGkB,EAAQpB,EAAE,KAAW,GAAE,iBCA2C,AAAjE,IAA2D,CAAM,GAAE,CAAC,KAAK,EAAE,IAAI,GAAG,IAAI,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,cAAc,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,AAAC,ICA0d,SAAS,GAAOA,EAAEoB,EAAE,CAAC,IAAId,EAAE,CAAE,EAAC,IAAI,IAAIJ,KAAKF,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAEE,EAAE,EAAE,EAAE,QAAQA,EAAE,CAAC,IAAII,EAAEJ,GAAGF,EAAEE,IAAI,GAASF,GAAN,aAA6B,OAAO,uBAA3B,WAAiD,CAAC,IAAIG,EAAE,EAAE,IAAID,EAAE,OAAO,sBAAsBF,EAAE,CAACG,EAAED,EAAE,OAAOC,IAAI,EAAE,QAAQD,EAAEC,GAAG,CAAC,GAAG,OAAO,UAAU,qBAAqB,KAAKH,EAAEE,EAAEC,GAAG,GAAGG,EAAEJ,EAAEC,IAAIH,EAAEE,EAAEC,IAAK,QAAOG,CAAE,qCCAp9BN,AAA9GE,EAAE,CAAE,EAAC,OAAO,eAAeA,EAAE,aAAa,CAAC,OAAM,CAAK,EAAC,CAAC,EAAE,QAAQ,UAAU,CAAE,EAAC,EAAE,UAAU,UAAU,CAAE,EAAOF,EAAEE,EAAE,WAAWkB,GAAElB,EAAE,QAAQ,GAAEA,EAAE,YCAxE,SAAS,EAAsBkB,EAAElB,EAAEI,EAAE,CAAC,IAAMC,EAAE,KAAK,IAAIL,EAAE,EAAE,EAAE,CAAC,MAAO,GAAEI,EAAE,EAAEC,EAAE,CAACL,EAAEK,EAAE,AAAC,CAA4H,SAAS,GAAiBP,EAAEoB,EAAEf,EAAE,CAAC,OAAOL,EAAEoB,GAAGf,GAAGe,GAAGpB,EAAEoB,GAAGf,GAAGe,CAAE,CAA2tD,SAAS,GAAqBpB,EAAE,CAAC,IAAIoB,EAAMf,EAAEC,EAAMJ,EAAE,EAAE,EAAE,CAAOC,EAAE,CAACD,EAAE,OAAQ,EAAC,MAAOA,EAAE,MAAMG,EAAE,GAAkF,AAA/E,EAAE,EAAEA,EAAE,CAAC,EAAE,KAAKH,EAAE,KAAKA,EAAE,OAAOA,EAAE,QAAQ,CAAUkB,QAAJ,IAAOlB,EAAE,mBAAmBkB,EAAEf,GAAG,GAAGC,MAAQ,EAAED,EAAEC,EAAkC,OAA5BH,EAAE,SAAN,GAAc,EAAE,KAAKD,EAAE,QAAQ,CAAO,CAAC,UAAUC,EAAE,SAAS,EAAE,IAAI,mBAA0BiB,GAAgB,GAAG,GAAI,CAAC,gCAA5T,AAA1iE,GAA+D,CAAM,EAAE,EAA2F,EAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAE,EAAO,GAAiB,CAACpB,EAAE,EAAE,UAAUoB,EAAE,EAAE,QAAQf,EAAE,EAAE,OAAOe,GAAG,EAAE,KAAK,KAAKpB,EAAEK,EAAE,EAAqE,GAAO,CAAC,CAAC,UAAUL,EAAE,EAAE,UAAU,QAAQK,EAAE,EAAE,QAAQ,KAAKC,EAAE,EAAE,KAAK,KAAKC,EAAE,EAAE,GAAGJ,EAAE,EAAE,SAAS,EAAE,EAAE,UAAUgB,EAAE,EAAE,aAAa,EAAE,GAAG,CAAC,CAAE,IAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAMV,EAAE,CAAC,MAAK,EAAM,kBAAiB,EAAM,QAAQF,EAAE,OAAOJ,CAAE,EAAO,EAAEA,EAAEI,EAAQ,EAAE,KAAK,KAAKP,EAAEM,EAAE,CAAC,IAAU,EAAE,GAAiBN,EAAEK,EAAEC,EAAE,CAAK,EAAE,GAAG,EAAE,EAAE,CAAC,IAAMN,EAAE,EAAE,KAAK,KAAK,EAAE,EAAE,EAAE,CAAC,EAAE,GAAGG,EAAE,KAAK,KAAK,EAAE,EAAEiB,EAAE,GAAG,EAAE,EAAE,EAAE,GAAGpB,EAAE,KAAK,IAAIA,EAAEoB,EAAE,CAAC,EAAE,KAAK,IAAIpB,EAAEoB,EAAE,CAAE,MAAK,EAAE,GAAGjB,EAAE,KAAK,KAAK,EAAEH,EAAE,EAAE,GAAG,EAAE,EAAE,GAAGA,GAAG,MAAO,CAAA,GAAG,CAAC,EAAE,QAAQ,EAAEA,EAAE,CAAC,IAAMoB,EAAMpB,IAAJ,EAAM,EAAE,EAAsB,EAAEA,EAAES,EAAE,QAAQ,CAAOJ,EAAE,KAAK,IAAIe,EAAE,EAAED,EAAQjB,EAAE,KAAK,IAAIC,EAAEM,EAAE,QAAQ,EAAE,EAAiE,OAA/D,EAAE,KAAKJ,GAAGH,EAAE,EAAE,iBAAiB,GAAiBK,EAAEJ,EAAEM,EAAE,QAAQ,CAAQA,CAAE,CAAC,EAAO,GAAM,CAAC,CAAC,KAAKT,EAAE,EAAE,SAASK,EAAE,EAAE,MAAMH,EAAE,GAAG,MAAMI,EAAE,KAAK,cAAcC,EAAE,gBAAgBJ,EAAE,aAAa,EAAE,IAAIgB,EAAE,IAAI,EAAE,aAAaV,EAAE,GAAG,UAAU,EAAE,GAAG,CAAC,EAAE,EAAE,GAAGH,EAAE,CAAC,IAAM,EAAE,CAAC,kBAAiB,EAAM,MAAK,EAAM,QAAQN,EAAE,OAAOA,CAAE,EAAO,EAAc,GAAYmB,QAAJ,IAAOnB,EAAEmB,GAAY,QAAJ,IAAOnB,EAAE,EAAQ,EAAgB,GAAYmB,QAAJ,GAAM,EAAW,QAAJ,IAAO,KAAK,IAAIA,EAAEnB,EAAE,CAAC,KAAK,IAAI,EAAEA,EAAE,CAACmB,EAAE,EAAM,EAAEjB,EAAEG,EAAQ,EAAEL,EAAE,EAAQ,EAAW,QAAJ,GAAM,EAAE,EAAE,EAAE,CAAY,AAAX,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAEA,GAAG,IAAM,EAAU,IAAI,EAAE,KAAK,KAAKA,EAAEM,EAAE,CAAO,EAAW,GAAG,EAAE,EAAUN,EAAE,CAAO,GAAc,GAAG,CAAC,IAAMoB,EAAE,EAAUpB,EAAE,CAAOK,EAAE,EAAWL,EAAE,CAAuB,AAAtB,EAAE,KAAK,KAAK,IAAIoB,EAAE,EAAEX,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAEJ,CAAE,EAAKP,EAAMC,EAAQ,EAAmB,GAAG,CAAC,AAAG,EAAc,EAAE,QAAQ,GAAE,EAAEC,EAAE,EAAE,GAAO,CAAC,KAAK,EAAE,QAAQ,GAAG,EAAgB,EAAE,QAAQ,CAAC,SAAS,EAAsB,EAAWA,EAAE,EAAE,QAAQ,CAAC,QAAQO,EAAE,UAAUJ,EAAE,aAAaM,EAAE,UAAU,CAAE,EAAC,CAAE,EAAuB,MAAtB,GAAmB,EAAE,CAAQ,GAAG,CAAC,IAAIW,GAAE,EAA+K,OAArKrB,GAAYD,QAAJ,KAAO,GAAE,EAAK,GAAcE,EAAE,CAAC,EAAmBA,EAAE,EAAaF,QAAJ,IAAOE,EAAEF,GAAG,EAAE,kBAAiB,EAAY,EAAEE,EAAEF,EAAE,KAAG,kBAAiB,GAAOsB,GAAG,GAAcpB,EAAE,CAAQ,EAAE,CAAC,EAAOM,EAAE,GAAS,EAAE,MCAqnG,SAAS,GAAgBN,EAAEoB,EAAE,CAAC,IAAIlB,EAA6K,cAAtJF,GAAlB,SAAuBoB,IAAWlB,EAAEkB,EAAEpB,MAAkBoB,EAAEpB,GAAG,SAAS,iBAAiBA,EAAE,EAAC,EAAEoB,EAAEpB,IAAQ,EAAE,SAAS,iBAAiBA,EAAE,CAAM,aAAa,UAAUA,EAAE,CAACA,CAAE,GAAS,MAAM,KAAKA,GAAG,CAAE,EAAC,AAAC,CAAm7H,SAAS,GAAsBA,EAAE,CAAC,IAAMoB,EAAE,IAAI,QAAQ,MAAM,CAAClB,EAAE,CAAE,IAAG,CAAC,IAAMC,EAAE,IAAI,IAAU,EAAa,CAACiB,EAAE,EAAED,EAAE,IAAId,EAAE,EAAEC,GAAE,IAAQ,CAAC,IAAMC,KAAKa,EAAE,GAAGD,EAAE,GAAGd,EAAE,GAAGC,IAA4G,MAAxG,GAAE,IAAIC,EAAE,EAAE,EAAE,IAAIA,EAAE,EAAE,OAAO,OAAO,CAAC,KAAKa,EAAE,GAAGD,EAAE,SAASd,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAG,EAACJ,EAAE,CAAC,CAAC,CAAQ,EAAE,IAAIK,EAAE,AAAC,EAAO,EAAa,IAAI,EAAE,IAAIP,EAAE,EAAE,EAAE,IAAIA,EAAE,GAAEA,EAAE,CAAC,CAAQ,EAAE,IAAIA,EAAE,EAAE,MAAM,CAAC,gBAAgB,CAACA,EAAEoB,EAAElB,EAAEC,EAAEgB,IAAI,CAAC,IAAId,EAAEC,EAAE,IAAIC,EAAQ,EAAEP,EAAE,OAAW,EAAEE,GAAG,GAAG,GAAG,EAAE,MAAM,GAAe,CAAC,GAAG,EAAE,CAAC,IAAMA,EAAEF,EAAE,EAAE,GAASQ,EAAM,IAAJ,EAAM,KAAKR,EAAE,GAAO,EAAE,EAAMS,EAAE,EAAQ,EAASU,GAAuB,UAAU,GAAG,EAAE,CAAC,GAAK,CAAC,UAAUC,EAAE,mBAAmBlB,EAAE,CAACiB,EAAQhB,EAAUiB,GAAuB,WAAYlB,GAAG,EAAQI,EAAUc,GAAuB,aAAc,YAAY,KAAK,CAACjB,EAAQI,EAAE,EAAED,EAAE,CAAC,QAAuC,AAA/B,GAAUD,EAAEG,IAAiBD,GAAO,IAAJ,GAAW,IAAJ,GAAcP,EAAE,KAAT,QAAe,EAAE,EAAG,GAAG,EAAEA,EAAE,CAAC,QAASM,EAAEC,EAAE,CAAE,MAAK,GAAUD,EAAEE,IAAiB,WAAW,GAAG,CAAC,CAAC,IAAM,EAAE,EAAaC,EAAEP,EAAE,EAA8B,AAArBC,GAAuB,SAAS,QAAQ,CAAC,CAAO,EAAE,EAAa,EAAE,CAAwD,AAAvD,EAAE,OAAO,OAAO,OAAO,OAAO,CAAE,EAAC,EAAE,CAAC,CAAC,OAAO,QAAS,EAAC,CAAIgB,IAAG,EAAE,UAAU,EAAE,EAAE,mBAAmB,YAAY,KAAK,CAAE,KAAI,CAAC,IAAMnB,EAAE,EAAa,EAAa,EAAE,IAAI,CAAC,CAAC,EAAE,CAAC,OAAO,OAAO,SAASA,EAAE,iBAAkB,CAAC,QAAOO,CAAE,CAAC,CAAC,CAAC,CAAoI,SAAS,GAASP,EAAEoB,EAAE,CAAC,KAAKlB,EAAE,OAAOC,EAAE,OAAOgB,EAAE,MAAM,CAAC,CAAE,EAAC,CAAC,UAAwB,qBAArB,IAA0C,MAAM,IAAI,CAAE,EAAC,IAAMd,EAAE,GAAgBL,EAAE,CAAOM,EAAE,IAAI,QAAc,EAAqB,GAAG,CAAC,EAAE,QAAS,GAAG,CAAC,IAAMJ,EAAE,EAAE,IAAIF,EAAE,OAAO,CAAC,GAAGA,EAAE,mBAAyBE,KAAMF,EAAE,eAAe,CAAC,IAAME,EAAE,EAAEF,EAAE,CAAC,OAAoBE,GAApB,WAAsB,EAAE,IAAIF,EAAE,OAAOE,EAAE,CAAC,EAAE,UAAUF,EAAE,OAAO,AAAC,MAAA,AAAQE,IAAG,EAAEF,EAAE,CAAC,EAAE,OAAOA,EAAE,OAAO,CAAE,EAAE,AAAC,EAAOO,EAAE,IAAI,qBAAqB,EAAqB,CAAC,KAAKL,EAAE,WAAWC,EAAE,iBAA4BgB,GAAlB,SAAoBA,EAAE,GAAEA,EAAG,GAA+B,MAA7B,GAAE,QAAS,GAAG,EAAE,QAAQnB,EAAE,CAAE,CAAO,IAAI,EAAE,YAAY,AAAC,CAA0B,SAAS,GAAeA,EAAEoB,EAAE,CAAC,GAAGA,EAAE,CAAC,GAAK,CAAC,WAAWpB,EAAE,UAAUE,EAAE,CAACkB,EAAE,GAAG,MAAM,CAAC,MAAMpB,EAAE,OAAOE,CAAE,CAAC,QAAOF,aAAa,YAAY,YAAYA,EAAE,EAAE,SAAS,CAAC,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAa,CAAC,UAAS,GAAa,CAAC,OAAOA,EAAE,YAAYoB,EAAE,cAAclB,EAAE,CAAC,CAAC,IAAIC,EAAE,CAAQA,EAAE,EAAE,IAAIH,EAAE,GAAlB,MAAuC,EAAE,QAAS,GAAG,CAAC,EAAE,CAAC,OAAOA,EAAE,YAAYoB,EAAE,IAAI,MAAM,CAAC,MAAO,IAAepB,EAAEE,EAAE,AAAC,CAAC,EAAC,AAAC,EAAE,AAAC,UAAS,GAAUF,EAAE,CAAC,EAAE,QAAQ,GAAa,AAAC,UAAS,IAAsB,CAAC,OAAqB,eAArB,MAAsC,EAAE,IAAI,eAAe,IAAY,UAAS,GAAcA,EAAEoB,EAAE,CAAC,GAAG,IAAsB,CAAC,IAAMlB,EAAE,GAAgBF,EAAE,CAAgH,MAA/G,GAAE,QAAS,GAAG,CAAC,IAAIE,EAAE,EAAE,IAAIF,EAAE,CAAsC,AAAjCE,IAAG,EAAE,IAAI,IAAI,EAAE,IAAIF,EAAEE,EAAE,IAAG,IAAIkB,EAAE,CAA6B,AAArB,GAAuB,QAAQpB,EAAE,AAAC,EAAE,CAAO,IAAI,CAAC,EAAE,QAAS,GAAG,CAAC,IAAME,EAAE,EAAE,IAAIF,EAAE,CAAyC,AAAZ,AAArBE,GAAuB,OAAOkB,EAAE,CAASlB,GAAP,MAA4BA,EAAE,MAAe,GAAP,MAA4B,EAAE,UAAUF,EAAE,AAAE,EAAE,AAAC,CAAC,CAAsB,SAAS,IAA2B,CAAuI,AAAtI,EAAE,IAAI,CAAC,IAAMA,EAAE,CAAC,MAAM,EAAO,WAAW,OAAO,EAAO,WAAY,EAAOoB,EAAE,CAAC,OAAO,EAAO,KAAKpB,EAAE,YAAYA,CAAE,EAAC,EAAE,QAAS,GAAG,EAAEoB,EAAE,CAAE,AAAC,EAAC,EAAO,iBAAiB,SAAS,EAAE,AAAC,UAAS,GAAapB,EAAE,CAAyC,MAAxC,GAAE,IAAIA,EAAE,CAAC,GAAG,IAA2B,CAAO,IAAI,CAAa,AAAZ,EAAE,OAAOA,EAAE,EAAE,EAAE,MAAM,IAAI,MAAO,GAAG,CAAC,UAAS,GAAOA,EAAEoB,EAAE,CAAC,cAA0BpB,GAApB,WAAsB,GAAaA,EAAE,CAAC,GAAcA,EAAEoB,EAAE,AAAC,CAA8hK,SAAS,GAAqBpB,EAAEoB,EAAElB,EAAE,CAAC,EAAE,cAAc,IAAI,YAAYkB,EAAE,CAAC,OAAO,CAAC,cAAclB,CAAE,CAAC,GAAE,AAAC,UAAS,GAAkBF,EAAEoB,EAAElB,EAAE,CAAC,EAAE,cAAc,IAAI,YAAYkB,EAAE,CAAC,OAAO,CAAC,cAAclB,CAAE,CAAC,GAAE,AAAC,yFAAxte,IAAI,IAAMF,SAA/+E,GAAsU,IAAwE,KAA+B,IAAuC,KAA+G,CAA+LU,GAAE,CAAC,GAAG,IAAI,IAAI,GAAI,EAAO,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAO,EAA8D,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAc,GAAGV,EAAE,KAAM,EAAO,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAc,GAAGA,EAAE,IAAK,EAAC,OAAO,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcoB,CAAE,EAAC,KAAK,EAAE,EAAO,GAAE,IAAI,IAAU,GAAkB,IAAI,WAAWpB,IAAU,GAAE,CAAC,IAAI,IAAI,GAAI,EAAC,GAAE,QAAS,GAAG,CAAC,GAAE,QAAS,GAAG,CAAa,AAAZ,GAAE,KAAKA,EAAEoB,EAAE,CAAC,GAAE,IAAI,GAAkBpB,EAAEoB,EAAE,CAAC,GAAEpB,GAAG,AAAC,EAAE,AAAC,EAAE,CAAoEW,GAAE,IAAI,IAAI,IAAkuB,GAAc,GAAG,SAAS,cAAc,MAAM,CAAC,QAAQX,EAAE,CAAC,SAAS,IAAK,EAAC,CAAO,GAAE,CAAC,oBAAoB,WAAyB,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,mBAAmB,CAAC,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,UAAU,CAAC,iBAAiB,IAAI,CAAC,GAAG,CAAC,GAAc,CAAC,QAAQ,CAAC,CAAE,CAAC,EAAC,AAAC,MAAQ,CAAC,OAAO,CAAM,QAAO,CAAK,EAAC,SAAS,MAAY,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAE,CAAC,EAAC,CAAC,QAAU,EAAO,GAAE,CAAE,EAAO,GAAE,CAAE,EAAgB,GAAE,GAAEA,GAAG,KAAc,GAAEA,SAAN,KAAW,GAAEA,GAAG,GAAEA,IAAI,EAAS,GAAEA,IAAs0gB,AAAt5Q,GAAe,UAAqBA,GAAlB,SAA0B,GAAE,GAAsBY,GAAE,CAAO,GAAE,GAAsBC,GAAE,CAAO,GAAE,CAAC,IAAI,EAAE,IAAI,CAAE,EAAkkBC,EAAE,IAAI,QAA45B,EAAE,IAAI,IAAsoLC,GAAG,CAAC,SAAS,KAAWf,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAOoB,EAAE,QAAQlB,EAAE,CAAC,CAAC,cAAcC,EAAE,CAAE,EAAC,GAAG,CAAC,GAAK,CAAC,KAAKgB,EAAE,CAAChB,EAAEE,EAAE,GAAEF,EAAE,CAAC,MAAO,EAAC,CAAC,MAAO,IAASH,EAAG,GAAG,CAAwC,GAAvC,GAAG,CAAC,GAAkBA,EAAE,YAAYG,EAAE,EAAKgB,EAAE,MAAO,CAAA,GAAG,CAAK,AAAJ,GAAG,CAAC,GAAkBnB,EAAE,YAAYoB,EAAE,AAAC,CAAC,EAAEf,EAAE,AAAC,CAAC,EAAO,GAAW,CAACL,EAAEoB,EAAElB,IAAI,GAAG,CAAC,EAAIC,EAAE,aAAuBA,EAAE,cAAZ,WAAyB,GAAG,CAAC,GAAqBH,EAAEoB,EAAEjB,EAAE,CAAE,EAAOa,GAAG,CAAC,SAAS,KAAWhB,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAOoB,EAAE,QAAQlB,EAAE,GAAG,CAAC,IAAMC,EAAE,GAAWH,EAAE,aAAaoB,EAAE,CAAOD,EAAE,GAAWnB,EAAE,WAAWE,EAAE,CAA2E,MAA1E,GAAE,iBAAiB,eAAeC,EAAE,CAAC,EAAE,iBAAiB,eAAegB,EAAE,CAAO,IAAI,CAAyC,AAAxC,EAAE,oBAAoB,eAAehB,EAAE,CAAC,EAAE,oBAAoB,eAAegB,EAAE,AAAC,CAAC,CAAC,EAAOF,GAAG,CAAC,SAAS,KAAWjB,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAOoB,EAAE,QAAQlB,EAAE,GAAG,CAAC,IAAM,EAAY,GAAG,CAA0C,AAAzC,GAAG,CAAC,GAAqBF,EAAE,WAAWoB,EAAE,CAAC,EAAO,oBAAoB,YAAY,EAAY,AAAC,EAAO,EAAc,GAAG,CAA4C,AAA3C,GAAG,CAAC,GAAqBpB,EAAE,aAAaE,EAAE,CAAC,EAAO,iBAAiB,YAAY,EAAY,AAAC,EAAiD,MAAhD,GAAE,iBAAiB,cAAc,EAAc,CAAO,IAAI,CAAoD,AAAnD,EAAE,oBAAoB,cAAc,EAAc,CAAC,EAAO,oBAAoB,YAAY,EAAY,AAAC,CAAC,CAAC,EAAO,GAAG,CAAC,OAAOa,GAAG,MAAMC,GAAG,MAAMC,EAAG,EAAO,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAK,GAAG,CAAC,MAAO,ICS18lB,SAAwB,EAAO,EAAM,CAAY,GAAG,CAAC,QAAM,MAAI,UAAQ,iBAAe,aAAW,eAAa,gBAAc,cAAY,QAAM,cAAY,YAAU,aAAU,gBAAc,cAAY,QAAM,CAAC,EAAW,CAAC,cAAY,YAAS,aAAU,aAAU,aAAU,CAAC,EAAiB,CAAC,aAAU,cAAW,CAAC,EAAoB,GAAa,KAAkB,EAAW,KAAK,EAAa,KAAK,EAAc,KAAK,EAAY,OAAO,EAAQ,IAAsB,EAAS,GAAa,SAAS,GAAG,GAAa,OAC5f,EAAc,EAAM,OAAO,QAAQ,CAAO,GAAY,EAAS,MAAM,EAAc,CAAO,EAAY,GAAY,EAAE,AAAG,KAAY,IAAM,EAAU,QAAQ,IAAM,EAAa,IAAY,QAAQ,IAAY,QAAc,EAAO,GAAe,EAAE,CAAO,EAAY,GAAsB,GAAiB,GAAU,EAAa,EAAO,EAAY,CAA2B,EAAU,EAAO,KAAK,CAAO,EAAY,EAAQ,IAAW,CAAc,GAAW,CAAc,GAAW,AAAC,EAAG,CAAE,EAAC,CAAM,CAAC,EAAK,GAAQ,CAAC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAK,EAAC,CAAiB,GAAe,CAAE,EAAK,GAAc,CAAE,EAA0B,EAAY,EAAM,GAAQ,EAAK,IAAU,EAAY,GAAY,KAAK,MAAM,GAAG,GAAY,CAAC,EAAE,GAAQ,IAAO,GAAU,GAAa,EAAK,SAAQ,EAAY,KAAK,MAAM,EAAK,OAAO,EAAK,SAAS,EAAE,CAAC,EAAE,EAAY,KAAK,IAAI,EAAY,GAAqB,CAAC,GAAQ,GAAiC,IAAM,GAAQ,EAAY,IAAI,CAAC,GAAG,GAAa,EAAU,QAAQ,CAAC,IAAM,EAAa,EAAa,EAAU,QAAQ,YAAY,EAAU,QAAQ,aAAmB,EAAM,EAAY,GAAG,QAAQ,EAAa,EAAY,GAAG,QAAQ,WAAW,EAAY,GAAG,QAAQ,UAAU,EAAQ,EAAI,EAAY,GAAG,QAAQ,EAAa,EAAY,GAAG,QAAQ,WAAW,EAAY,GAAG,QAAQ,YAAY,EAAY,GAAG,QAAQ,UAAU,EAAY,GAAG,QAAQ,aAAa,EAAQ,EAAe,EAAI,EAAM,EAAI,GAAQ,CAAC,OAAO,EAAa,SAAS,CAAe,EAAC,AAAE,CAAC,EAAC,CAAE,EAAC,CAAO,EAAe,EAAS,CAAC,kBAAkB,MAAO,EAAC,CAAE,EAAuC,GAAG,EAAY,CAChkD,IAAI,EAAS,CAGE,IAAI,EAAc,GAAO,EAAK,CAAC,EAAU,KAAK,EAAM,KAAK,GAAQ,CAAQ,GAAO,EAAU,QAAQ,CAAC,CAAC,cAAY,GAAG,CAA0F,CAArF,EAAc,UAAU,EAAY,OAAO,EAAY,SAAS,EAAM,KAAK,GAAQ,CAAE,EAAc,SAAQ,CAAO,EAAC,EAAG,CAAE,EAAC,AAAE,IAAe,EAAS,IAAI,EAAc,CAAC,EAAM,IAAQ,CAAC,IAAI,EAAa,EAAc,EAAc,EAAc,IAAI,EAAsC,AAA/B,IAAQ,IAAG,EAAI,EAAY,IAAO,IAAQ,EAAc,OAAO,IAAG,EAAI,EAAY,IAAI,IAAMC,EAAK,CAAC,MAAM,IAAW,EAAa,EAAM,QAAyD,MAAM,OAAO,OAAO,IAAY,EAAc,EAAM,QAA2D,OAAO,MAAO,EAAC,MAAoB,GAAK,EAAY,CAAC,QAAQ,KAAK,SAAsB,EAAK,KAAK,CAAK,MAAI,MAAMA,EAAK,SAAsB,EAAa,EAAM,CAAC,MAAM,CAAC,IAAI,EAAc,EAAM,QAA2D,MAAM,GAAGA,EAAK,WAAW,EAAE,GAAG,CAAe,EAAC,SAAS,EAAM,MAAM,SAAS,EAAM,MAAM,SAAS,aAAa,MAAA,EAAgB,GAAE,EAAc,EAAM,QAA2D,SAAS,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,AAAE,KAAI,EAAU,IAAI,IAAIC,EAAE,EAAEA,EAAE,EAAYA,IAAK,GAAc,CAAC,GAAG,GAAc,GAAG,EAAS,IAAI,EAAc,CAAC,EAAM,IAAa,CAAC,IAAI,EAAa,EAAc,EAAc,EAAc,EAAc,EAAc,IAAMD,EAAK,CAAC,MAAM,IAAW,EAAa,EAAM,QAAyD,MAAM,OAAO,OAAO,IAAY,EAAc,EAAM,QAA2D,OAAO,OAAO,WAAW,WAAY,EAAC,MAAoB,GAAK,EAAY,CAAC,QAAQ,KAAK,SAAsB,EAAK,KAAK,CAAC,MAAMA,EAAK,eAAc,EAAK,SAAsB,EAAa,EAAM,CAAC,IAAIC,EAAE,IAAI,EAAW,MAAM,CAAC,IAAI,EAAc,EAAM,QAA2D,MAAM,MAAM,IAAW,EAAc,EAAM,QAA2D,MAAM,OAAO,OAAO,IAAY,EAAc,EAAM,QAA2D,OAAO,OAAO,WAAW,EAAE,GAAG,CAAe,EAAC,SAAS,EAAM,MAAM,SAAS,EAAM,MAAM,SAAS,SAASA,MAAAA,EAAY,GAAE,EAAc,EAAM,QAA2D,SAAS,AAAC,EAACA,EAAE,KAAK,EAAW,AAAC,EAACA,EAAE,KAAK,EAAW,AAAE,EAAC,AAAC,EAAG,IAAM,EAAe,EAAK,SAAS,EAAK,SAAS,KAAK,MAAM,EAAK,OAAO,EAAK,SAAS,CAAO,GAAY,EAAO,KAAK,CAAO,GAAS,EAAO,KAAK,CAAO,EAAK,EAAO,EAAE,CAAO,EAAQ,GAAO,EAAM,CAAO,GAAgB,IAAkB,CAAO,GAAQ,EAAO,KAAK,CAAO,EAAa,EAAO,KAAK,CAE9lF,IAAI,EAAS,CAAC,IAAM,EAAS,GAAU,EAAU,CAE7C,AAAG,IAA+B,EAAU,IAAI,CAAI,UAAkB,IAAiB,GAAwM,OAAzL,EAAa,QAAQ,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC,EAAY,EAAE,CAAC,EAAY,EAAe,AAAC,CAAC,EAAC,CAAC,SAAS,KAAK,IAAI,EAAe,CAAC,EAAM,IAAI,WAAW,IAAS,OAAO,QAAS,EAAC,CAAO,IAAI,EAAa,QAAQ,QAAQ,AAAE,EAAC,CAAC,EAAY,EAAe,CAAM,EAAC,CACvX,EAAU,IAAI,CAAK,EAAa,UAAkB,GAAU,EAAa,QAAQ,YAAY,SAAU,EAAa,QAAQ,MAAM,EAAW,GAAU,EAAa,QAAQ,YAAY,WAAW,EAAa,QAAQ,OAAO,CAAG,EAAC,CAAC,CAAS,EAAC,EAG/N,GAAkB,GAAG,CAAC,IAAI,GAAgB,IAAiB,GAA+B,OAKhC,AAAnD,GAAY,UAAU,OAAM,GAAY,QAAQC,GAAG,GAAI,GAAY,QAAQ,IAAM,EAAU,GAAS,UAAU,KAAK,EAAEA,EAAE,GAAS,QAAY,EAAM,GAAW,EAAM,KAAK,AAAG,EAAQ,UAAS,GAAO,GAAa,EAAK,SAAS,EAAM,EAAK,QAAQ,GAAK,EAAE,EAAe,EAAK,QAAQ,CAAC,GAAS,QAAQA,EAAM,GAAgB,EAAO,IAAI,EAAK,QAAQ,AAAE,EAAC,AAAG,CAAW,IAAM,EAAc,EAAa,WAAW,YAAkB,GAAe,GAAU,EAAQ,GAAa,IAAI,GAAU,EAAQ,GAAe,GAAM,GAAU,EAAE,GAAe,CAAO,EAAa,IAAI,GAAgB,GAAU,kBAAkB,EAAc,kBAAkB,GAAU,IAAI,GAAe,sBAAsB,GAAe,sBAAsB,GAAa,mBAAmB,GAAU,IAAI,EAAa,IAAuW,OAA9U,EAAkW,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG,GAAuB,WAAQ,gBAAgB,EAAY,MAAA,GAAmB,aAAa,EAAY,MAAA,GAAmB,UAAU,EAAY,MAAA,GAAmB,SAAS,GAAS,UAAU,SAAS,QAAQ,EAAa,EAAC,IAAI,EAAU,SAAsB,EAAM,EAAO,GAAG,CAAC,IAAI,GAAQ,MAAM,CAAC,GAAG,GAAmB,MAAI,IAAI,IAAY,UAAU,GAAc,EAAe,EAAE,MAAA,GAAyB,KAAK,IAAY,SAAS,GAAc,EAAe,EAAE,MAAA,GAAyB,WAAW,GAAU,SAAS,WAAW,cAAc,EAAa,MAAM,SAAS,GAAG,EAAM,WAAW,EAAS,OAAO,YAAY,UAAU,GAA8B,EAAY,EAAE,CAAC,EAAU,EAAC,aAAa,IAAI,CAAsB,AAArB,EAAQ,SAAQ,EAAQ,EAAa,UACz5D,EAAa,QAAQ,aAAa,EAAc,EAAC,aAAa,IAAI,CAAuB,AAAtB,EAAQ,SAAQ,EAAS,EAAa,UACzG,EAAa,QAAQ,aAAa,EAAI,EAAC,SAAS,CAAC,GAAe,EAAc,CAAC,EAAC,AAAC,EAAC,CAF4wB,EAAM,UAAU,CAAC,MAAM,GAAkB,SAAS,CAAc,EAAK,MAAM,CAAC,MAAM,GAAY,SAAS,GAAI,EAAC,CAAc,EAAK,IAAI,CAAC,MAAM,GAAY,SAAS,oBAAqB,EAAC,CAAc,EAAK,IAAI,CAAC,MAAM,GAAe,SAAS,2DAA4D,EAAC,AAAC,CAAC,EAAC,AAErjC,6CAAkwG,AA7Bt1G,GAAyD,IAAiG,KAAiE,IAAkI,KAAmC,CAAM,GAAqB,IAAU,GAAsB,CAAC,KAAK,IAAS,cAAc,EAAO,KAAK,MAAM,IAAS,aAAa,EAAO,KAAK,IAAI,IAAS,cAAc,EAAO,KAAK,OAAO,IAAS,aAAa,EAAO,IAAK,EAAO,UAAqC,UAAY,YAAoB,UAAU,UAAU,oBAAqB,WA6BrmB,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,WAAU,EAAK,YAAW,CAAK,EAAC,YAAY,CAAC,aAAY,EAAK,UAAS,EAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAE,EAAC,WAAU,CAAK,EAAwB,GAAoB,EAAO,CAAC,MAAM,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAK,EAAY,iBAAkB,CAAC,EAAC,MAAM,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,gBAAe,EAAK,KAAK,CAAE,EAAC,UAAU,CAAC,KAAK,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAS,EAAC,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAC,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAS,EAAC,aAAa,OAAO,yBAAwB,CAAK,EAAC,UAAU,CAAC,KAAK,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAW,EAAC,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAe,EAAC,KAAK,CAAC,YAAY,eAAe,cAAe,EAAC,IAAI,CAAC,aAAa,eAAe,aAAc,EAAC,OAAO,CAAC,aAAa,eAAe,aAAc,CAAC,CAAC,EAAC,aAAa,SAAS,yBAAwB,CAAK,EAAC,IAAI,CAAC,KAAK,EAAY,OAAO,MAAM,KAAM,EAAC,QAAQ,CAAC,MAAM,UAAU,KAAK,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAmB,EAAC,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAC,YAAY,CAAC,IAAI,IAAI,IAAI,GAAI,EAAC,IAAI,CAAE,EAAC,cAAc,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAK,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,cAAa,CAAK,EAAC,WAAW,CAAC,KAAK,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,cAAa,CAAK,CAAC,CAAC,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAK,EAAY,QAAQ,MAAM,OAAO,cAAa,CAAK,EAAC,SAAS,CAAC,KAAK,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,cAAa,EAAM,OAAO,EAAM,CAAC,OAAO,EAAM,eAAc,CAAM,CAAC,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO,EAAM,CAAC,OAAO,EAAM,eAAc,CAAO,CAAC,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO,EAAM,CAAC,OAAO,EAAM,eAAc,CAAO,CAAC,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO,EAAM,CAAC,OAAO,EAAM,eAAc,CAAO,CAAC,CAAC,CAAC,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,gBAAe,EAAK,YAAY,8CAA+C,CAAC,EAAC,CAA+B,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAO,EAAmB,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAsB,EAAO,GAAY,CAAC,SAAS,GAAG,aAAa,EAAG,EAAO,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAS,EAAO,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAS,EAA+C,GAAM,CAAC,EAAI,EAAI,IAAM,KAAK,IAAI,KAAK,IAAI,EAAI,EAAI,CAAC,EAAI,CAAO,GAAc,UAAc,GAAQ,WAAW,MAAM,EAAM,4aC5Bp4G,AADb,GAA2C,IAAkC,IAA4B,CAAa,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,SAAS,sBAAsB,2CAA4C,EAAC,SAAS,+CAAgD,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,0CAA2C,EAAC,SAAS,6EAAoF,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA2C,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,gBAAiB,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,2BAA+B,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kMAAsM,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,2BAA+B,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,0KAA0L,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,yKAAgL,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,0MAAiN,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,2BAA+B,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,+HAAmI,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,iMAAoN,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,eAAsB,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,2BAA+B,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,iKAA2K,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,iBAAqB,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,oLAA2L,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kMAA4M,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,eAAmB,EAAC,AAAC,EAAC,CAAc,GAAiB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,qOAAkP,EAAC,AAAC,EAAC,CACl2Y,GAAqB,CAAC,QAAU,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC,ICA50D,SAAwB,EAAkB,EAAI,EAAO,CAAC,KAAM,GAAO,CAAC,IAAM,EAAO,GAAiB,EAAO,IAAI,GAAG,EAAO,CAAC,IAAM,EAAM,EAAO,GAAK,GAAG,EAAM,OAAO,CAAO,GAAO,EAAO,QAAU,CAAC,kBAA7O,AAAvD,IAAiD,CAAM,GAAiB,CAAC,UAAUC,EAAgB,ICAsvB,SAAS,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,wDAU/pB,AAVjX,GAAyD,KAA+M,IAAkE,IAA4B,CAA0B,IAA8G,KAA4H,CAAM,GAAY,GAAS,EAAO,CAAO,GAAW,CAAC,YAAY,YAAY,WAAY,EAAO,GAAkB,eAAqB,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAkB,EAA8L,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAS,EAAO,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAO,GAAS,EAAO,OAAA,EAAsB,CAAO,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAY,EAAO,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAAS,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,GAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,YAAU,WAAS,UAAQ,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,cAAW,sBAAoB,kBAAgB,iBAAe,aAAU,mBAAgB,cAAW,YAAS,CAAC,EAAgB,CAAC,cAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,oBAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,GAAS,CAAO,GAAsB,CAAE,EAAO,EAAkB,GAAG,GAAkB,GAAG,GAAsB,CAAC,MAAoB,GAAK,EAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,GAAS,SAAQ,EAAM,SAAsB,EAAK,GAAW,CAAC,MAAM,GAAY,SAAsB,EAAM,EAAO,QAAQ,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,GAAG,EAAkB,gBAAgB,EAAU,GAAW,CAAC,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,GAAG,CAAM,EAAC,GAAG,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAS,EAAC,UAAU,CAAC,mBAAmB,OAAQ,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAwB,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,SAAS,sBAAsB,2CAA4C,EAAC,SAAS,uCAAwC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,0CAA2C,EAAC,SAAS,qEAAsE,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAA4B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,OAAO,WAA4B,mBAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qmWAAqmW,aAAa,WAAW,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA2C,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,SAAS,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAA4B,mBAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wkTAAwkT,aAAa,YAAY,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,yCAAyC,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA2C,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,SAAS,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAA4B,mBAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,osCAAosC,aAAa,YAAY,oBAAmB,EAAK,GAAG,GAAqB,CAAC,UAAU,CAAC,aAAa,WAAY,EAAC,UAAU,CAAC,aAAa,WAAY,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,GAA0B,CAAC,SAAsB,EAAK,GAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,GAAG,aAAY,EAAK,UAAU,EAAE,UAAU,EAAE,UAAS,CAAM,EAAC,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,YAAW,EAAK,WAAU,CAAK,EAAC,MAAM,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKC,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uFAAuF,OAAO,gQAAiQ,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,gBAAiB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,+NAAgO,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,wFAAwF,OAAO,mQAAoQ,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,eAAgC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,gKAAiK,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,sQAAuQ,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,0JAA2J,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uFAAuF,OAAO,gQAAiQ,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,2LAA4L,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,wFAAwF,OAAO,mQAAoQ,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,oHAAqH,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,sQAAuQ,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,qLAAsL,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uFAAuF,OAAO,gQAAiQ,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,uLAAwL,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,sQAAuQ,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,iBAAkB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,+MAAgN,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,SAA0B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAM,OAAO,IAAI,wFAAwF,OAAO,mQAAoQ,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,uPAAwP,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAK,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2NAA4N,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,yFAAyF,OAAO,sQAAuQ,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAM,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qBAAqB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,aAAc,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,yCAAyC,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,+MAAgN,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAM,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAO,GAAI,CAAC,kFAAkF,kFAAkF,wRAAwR,8PAA8P,weAAwe,sLAAsL,qRAAqR,iJAAiJ,mHAAmH,0LAA0L,oHAAoH,0LAA0L,+FAA+F,yGAAyG,8SAA8S,miBAAmiB,yfAAyf,0iBAA0iB,wsBAAwsB,waAAwa,2mLAA2mL,2GAA2G,8GAA8G,2aAA2a,wIAAwI,2aAA2a,+bAAgc,EAU/9nF,EAAgB,GAAQ,GAAU,GAAI,eAAe,IAAgB,EAAgB,EAAgB,YAAY,mBAAmB,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAK,EAAC,GAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,UAAU,SAAS,OAAQ,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,CAAC,EAAC,CAAC,GAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,OAAO,OAAO,SAAS,MAAM,SAAS,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,OAAO,OAAO,SAAS,MAAM,SAAS,IAAI,qEAAqE,OAAO,KAAM,EAAC,CAAC,OAAO,OAAO,OAAO,SAAS,MAAM,SAAS,IAAI,yEAAyE,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,EAAY,EAAC,CAAC,8BAA6B,CAAK,EAAC"}