{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/xnAMbg8OPQXXcr5nzv6P/OEJf4c8awhFVdlCgsEWc/QXfnEaeE8.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:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,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", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,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\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-2mXab\";const variantClassNames={Nk5acN0px:\"framer-v-hybww\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({background,height,id,width,...props})=>{return{...props,xg5wp0ZzY:background??props.xg5wp0ZzY??\"rgba(0, 0, 0, 0)\"};};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,xg5wp0ZzY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Nk5acN0px\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hybww\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Nk5acN0px\",ref:refBinding,style:{backgroundColor:xg5wp0ZzY,borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12iane2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fblUJb0H9-container\",nodeId:\"fblUJb0H9\",rendersWithMotion:true,scopeId:\"QXfnEaeE8\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"fblUJb0H9\",layoutId:\"fblUJb0H9\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvlrip\",\"data-framer-name\":\"Logo placeholder 6\",layoutDependency:layoutDependency,layoutId:\"N4qAK0cCV\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-npnwdd\",\"data-framer-name\":\"mybuyer\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:169,layoutDependency:layoutDependency,layoutId:\"gItSssfKY\",svg:'<svg width=\"169\" height=\"30\" viewBox=\"0 0 169 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M88.7076 19.0421H96.4785C96.7895 19.0498 97.0911 18.9355 97.319 18.7238C97.4337 18.6315 97.5245 18.5129 97.5838 18.3781C97.643 18.2433 97.669 18.0962 97.6594 17.9493C97.661 17.8024 97.6304 17.6569 97.5697 17.5231C97.5091 17.3893 97.4199 17.2704 97.3084 17.1748C97.1973 17.0705 97.0665 16.9895 96.9237 16.9364C96.781 16.8832 96.629 16.8591 96.4768 16.8654H88.7076V19.0421ZM88.7076 14.7866H95.7121C96.023 14.7945 96.3246 14.6802 96.5522 14.4683C96.6599 14.3709 96.746 14.2521 96.805 14.1194C96.8639 13.9866 96.8944 13.843 96.8944 13.6978C96.8944 13.5526 96.8639 13.409 96.805 13.2763C96.746 13.1436 96.6599 13.0247 96.5522 12.9274C96.325 12.7144 96.0234 12.599 95.7121 12.6061H88.7076V14.7866ZM96.699 10.2366C97.581 10.2166 98.4366 10.5378 99.0876 11.1333C99.5619 11.5444 99.8865 12.1012 100.011 12.7166C100.134 13.332 100.051 13.9711 99.7727 14.5338C99.5764 14.9211 99.3009 15.2628 98.9642 15.5368C99.4923 15.7951 99.9425 16.1889 100.268 16.6782C100.59 17.1521 100.761 17.7123 100.758 18.285C100.761 18.7053 100.673 19.1212 100.5 19.5041C100.327 19.887 100.072 20.2278 99.7548 20.503C99.0927 21.1081 98.2216 21.4326 97.325 21.4082H85.6581V10.2353L96.699 10.2366Z\" fill=\"#3A4149\"/>\\n<path d=\"M105.276 10.2353V17.6148C105.275 17.7905 105.312 17.9643 105.384 18.1246C105.456 18.285 105.561 18.4282 105.692 18.5446C105.975 18.7911 106.338 18.9247 106.713 18.9195H112.936C113.31 18.9157 113.671 18.7801 113.955 18.5365C114.086 18.4213 114.191 18.2795 114.262 18.1205C114.334 17.9616 114.371 17.7892 114.371 17.6148V10.2353H117.421V18.1455C117.427 18.5832 117.337 19.0169 117.156 19.4158C116.976 19.8146 116.71 20.1689 116.377 20.4532C115.684 21.0883 114.772 21.4302 113.833 21.4073H105.815C104.876 21.4284 103.965 21.0867 103.272 20.4532C102.941 20.1674 102.676 19.8129 102.495 19.4144C102.315 19.0158 102.224 18.5828 102.228 18.1455V10.2353H105.276Z\" fill=\"#3A4149\"/>\\n<path d=\"M122.908 10.2353L127.643 14.9402L132.381 10.2353H136.882L129.17 17.3625V21.4052H126.121V17.3625L118.406 10.2353H122.908Z\" fill=\"#3A4149\"/>\\n<path d=\"M151.66 10.2353V12.7223H140.912V14.5491H150.226V16.9952H140.912V18.92H151.661V21.4069H137.863V10.2353H151.66Z\" fill=\"#3A4149\"/>\\n<path d=\"M156.177 14.8912L163.802 14.8993C163.958 14.9073 164.114 14.884 164.261 14.8308C164.408 14.7776 164.543 14.6956 164.658 14.5895C164.768 14.4916 164.855 14.3707 164.913 14.2353C164.971 14.1 164.998 13.9536 164.993 13.8065C165.001 13.659 164.975 13.5116 164.917 13.3758C164.859 13.2399 164.771 13.1194 164.658 13.0235C164.546 12.9135 164.412 12.8294 164.264 12.7773C164.116 12.7251 163.958 12.7062 163.802 12.7218H156.177V14.8912ZM164.095 10.2353C165.119 10.2133 166.112 10.587 166.868 11.2788C167.231 11.5898 167.523 11.9764 167.721 12.4116C167.919 12.8468 168.02 13.3201 168.017 13.7984C168.02 14.2394 167.934 14.6766 167.763 15.0831C167.592 15.4897 167.34 15.8572 167.023 16.1632C166.352 16.8185 165.477 17.224 164.544 17.3122L168.181 21.406H164.633L161.274 17.3531H156.177V21.406H153.128V10.2353H164.095Z\" fill=\"#3A4149\"/>\\n<path d=\"M25.8037 7.39776L12.8171 14.8955L0.00425552 7.49777L0 7.49989V22.4997L2.82352 24.13V12.7231L12.9903 18.5927L23.1576 12.7231V24.13L25.9807 22.4997V7.49989L25.8037 7.39776ZM12.9903 3.26014L20.157 7.39776L22.9806 5.76748L12.9903 0L2.82735 5.86748L5.65088 7.49777L12.9903 3.26014ZM12.9903 26.7399L20.3341 22.4997V25.7602L12.9903 30L5.64747 25.7602V22.4997L12.9903 26.7399Z\" fill=\"#3A4149\"/>\\n<path d=\"M57.0684 10.2353V21.4069H54.0184V14.3287L49.468 20.4043H46.8513L42.2979 14.3287V21.4069H39.2501V10.2353H42.4141L48.1548 18.0655L53.8955 10.2353H57.0684Z\" fill=\"#3A4149\"/>\\n<path d=\"M62.5478 10.2353L67.2854 14.9402L72.0227 10.2353H76.5237L68.8102 17.3625V21.4052H65.7607V17.3625L58.0463 10.2353H62.5478Z\" fill=\"#3A4149\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nwsih7\",\"data-framer-name\":\"Logo placeholder 5\",layoutDependency:layoutDependency,layoutId:\"YUm0Jtvn8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1p1uwkn\",\"data-framer-name\":\"projectorium\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:183,layoutDependency:layoutDependency,layoutId:\"bQL5ySpS_\",svg:'<svg width=\"183\" height=\"30\" viewBox=\"0 0 183 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.7548 24.5368V9.97759H34.6389V14.5533L34.3616 13.4441C34.565 12.7415 34.907 12.1037 35.3877 11.5306C35.8869 10.9574 36.4507 10.5045 37.0793 10.1717C37.7264 9.83893 38.392 9.67254 39.076 9.67254C39.3903 9.67254 39.6861 9.70027 39.9635 9.75573C40.2593 9.81119 40.4904 9.8759 40.6567 9.94985L39.908 13.0558C39.6861 12.9634 39.4365 12.8894 39.1592 12.834C38.9004 12.76 38.6416 12.723 38.3827 12.723C37.8836 12.723 37.4029 12.8247 36.9407 13.0281C36.497 13.213 36.0995 13.481 35.7482 13.8323C35.4154 14.1651 35.1474 14.5626 34.944 15.0248C34.7406 15.4685 34.6389 15.9584 34.6389 16.4946V24.5368H31.7548Z\" fill=\"#3A4149\"/>\\n<path d=\"M48.8615 24.8141C47.4379 24.8141 46.1622 24.4906 45.0345 23.8435C43.9252 23.178 43.047 22.2813 42.4 21.1535C41.7529 20.0073 41.4293 18.7039 41.4293 17.2433C41.4293 15.7828 41.7529 14.4886 42.4 13.3609C43.047 12.2146 43.9252 11.318 45.0345 10.6709C46.1622 10.0053 47.4379 9.67254 48.8615 9.67254C50.2666 9.67254 51.5237 10.0053 52.633 10.6709C53.7608 11.318 54.6482 12.2146 55.2953 13.3609C55.9424 14.4886 56.2659 15.7828 56.2659 17.2433C56.2659 18.7039 55.9424 20.0073 55.2953 21.1535C54.6482 22.2813 53.7608 23.178 52.633 23.8435C51.5237 24.4906 50.2666 24.8141 48.8615 24.8141ZM48.8615 22.2073C49.7304 22.2073 50.5069 21.9947 51.191 21.5695C51.875 21.1258 52.4112 20.5342 52.7994 19.7947C53.1877 19.0367 53.3725 18.1862 53.3541 17.2433C53.3725 16.282 53.1877 15.4315 52.7994 14.692C52.4112 13.934 51.875 13.3424 51.191 12.9172C50.5069 12.4919 49.7304 12.2793 48.8615 12.2793C47.9926 12.2793 47.2068 12.5012 46.5043 12.9449C45.8202 13.3701 45.2841 13.9617 44.8958 14.7197C44.5076 15.4593 44.3227 16.3005 44.3412 17.2433C44.3227 18.1862 44.5076 19.0367 44.8958 19.7947C45.2841 20.5342 45.8202 21.1258 46.5043 21.5695C47.2068 21.9947 47.9926 22.2073 48.8615 22.2073Z\" fill=\"#3A4149\"/>\\n<path d=\"M57.6313 30L56.5497 27.8092C57.2707 27.8092 57.8624 27.6798 58.3245 27.4209C58.8052 27.1806 59.1657 26.8108 59.4061 26.3117C59.6464 25.831 59.7666 25.2301 59.7666 24.5091V9.97759H62.623V25.2024C62.623 26.1453 62.4104 26.9772 61.9852 27.6983C61.5784 28.4193 60.9961 28.9832 60.2381 29.3899C59.4985 29.7966 58.6296 30 57.6313 30ZM61.2641 6.76069C60.654 6.76069 60.1826 6.60354 59.8498 6.28925C59.517 5.97495 59.3506 5.53124 59.3506 4.95812C59.3506 4.42197 59.517 3.9875 59.8498 3.65472C60.2011 3.32194 60.6725 3.15554 61.2641 3.15554C61.8742 3.15554 62.3457 3.31269 62.6785 3.62699C63.0112 3.94128 63.1776 4.38499 63.1776 4.95812C63.1776 5.49427 63.002 5.92873 62.6507 6.26151C62.3179 6.5943 61.8557 6.76069 61.2641 6.76069Z\" fill=\"#3A4149\"/>\\n<path d=\"M73.5119 24.8141C72.0143 24.8141 70.6832 24.4998 69.5185 23.8713C68.3722 23.2242 67.4663 22.346 66.8008 21.2367C66.1537 20.1275 65.8301 18.8518 65.8301 17.4097C65.8301 16.2635 66.015 15.2189 66.3848 14.276C66.7545 13.3331 67.263 12.5197 67.91 11.8356C68.5756 11.1331 69.3613 10.5969 70.2672 10.2272C71.1916 9.83893 72.19 9.6448 73.2623 9.6448C74.2052 9.6448 75.0833 9.82968 75.8968 10.1994C76.7103 10.5507 77.4128 11.0406 78.0044 11.6692C78.6145 12.2978 79.0767 13.0466 79.391 13.9155C79.7238 14.766 79.881 15.6996 79.8625 16.7164L79.8347 17.9366H67.9378L67.2999 15.6626H77.3666L76.9506 16.1341V15.4685C76.8952 14.8584 76.6918 14.313 76.3405 13.8323C75.9892 13.3516 75.5455 12.9726 75.0094 12.6953C74.4732 12.418 73.8909 12.2793 73.2623 12.2793C72.2639 12.2793 71.4227 12.4735 70.7387 12.8617C70.0546 13.2315 69.537 13.7861 69.1857 14.5256C68.8344 15.2466 68.6588 16.1433 68.6588 17.2156C68.6588 18.2324 68.8714 19.1199 69.2966 19.8779C69.7218 20.6174 70.3227 21.1905 71.0992 21.5972C71.8757 22.004 72.7724 22.2073 73.7892 22.2073C74.5102 22.2073 75.1758 22.0872 75.7859 21.8468C76.4145 21.6065 77.0893 21.172 77.8103 20.5434L79.2524 22.5679C78.8087 23.0116 78.2633 23.3998 77.6162 23.7326C76.9876 24.0654 76.3128 24.3335 75.5918 24.5368C74.8892 24.7217 74.1959 24.8141 73.5119 24.8141Z\" fill=\"#3A4149\"/>\\n<path d=\"M89.1509 24.8141C87.8013 24.8141 86.5903 24.4814 85.518 23.8158C84.4642 23.1502 83.623 22.2443 82.9944 21.0981C82.3843 19.9518 82.0793 18.6669 82.0793 17.2433C82.0793 15.8198 82.3843 14.5349 82.9944 13.3886C83.623 12.2424 84.4642 11.3364 85.518 10.6709C86.5903 10.0053 87.8013 9.67254 89.1509 9.67254C90.4451 9.67254 91.619 9.94061 92.6729 10.4768C93.7452 10.9944 94.5586 11.7062 95.1133 12.6121L93.5326 14.5533C93.2367 14.1281 92.8577 13.7399 92.3955 13.3886C91.9333 13.0373 91.4434 12.76 90.9258 12.5567C90.4081 12.3533 89.9089 12.2516 89.4282 12.2516C88.5408 12.2516 87.7458 12.4735 87.0433 12.9172C86.3592 13.3424 85.8138 13.934 85.4071 14.692C85.0004 15.45 84.797 16.3005 84.797 17.2433C84.797 18.1862 85.0096 19.0367 85.4348 19.7947C85.8601 20.5342 86.4239 21.1258 87.1265 21.5695C87.829 22.0132 88.6055 22.2351 89.456 22.2351C89.9551 22.2351 90.4358 22.1519 90.898 21.9855C91.3787 21.8191 91.8409 21.5695 92.2846 21.2367C92.7283 20.9039 93.1443 20.4972 93.5326 20.0165L95.1133 21.9578C94.5217 22.7897 93.6712 23.4738 92.5619 24.0099C91.4712 24.5461 90.3341 24.8141 89.1509 24.8141Z\" fill=\"#3A4149\"/>\\n<path d=\"M99.6102 24.5368V6.26151H102.467V24.5368H99.6102ZM96.5874 12.7508V9.97759H105.85V12.7508H96.5874Z\" fill=\"#3A4149\"/>\\n<path d=\"M114.86 24.8141C113.437 24.8141 112.161 24.4906 111.033 23.8435C109.924 23.178 109.046 22.2813 108.399 21.1535C107.751 20.0073 107.428 18.7039 107.428 17.2433C107.428 15.7828 107.751 14.4886 108.399 13.3609C109.046 12.2146 109.924 11.318 111.033 10.6709C112.161 10.0053 113.437 9.67254 114.86 9.67254C116.265 9.67254 117.522 10.0053 118.632 10.6709C119.759 11.318 120.647 12.2146 121.294 13.3609C121.941 14.4886 122.265 15.7828 122.265 17.2433C122.265 18.7039 121.941 20.0073 121.294 21.1535C120.647 22.2813 119.759 23.178 118.632 23.8435C117.522 24.4906 116.265 24.8141 114.86 24.8141ZM114.86 22.2073C115.729 22.2073 116.506 21.9947 117.19 21.5695C117.874 21.1258 118.41 20.5342 118.798 19.7947C119.186 19.0367 119.371 18.1862 119.353 17.2433C119.371 16.282 119.186 15.4315 118.798 14.692C118.41 13.934 117.874 13.3424 117.19 12.9172C116.506 12.4919 115.729 12.2793 114.86 12.2793C113.991 12.2793 113.205 12.5012 112.503 12.9449C111.819 13.3701 111.283 13.9617 110.894 14.7197C110.506 15.4593 110.321 16.3005 110.34 17.2433C110.321 18.1862 110.506 19.0367 110.894 19.7947C111.283 20.5342 111.819 21.1258 112.503 21.5695C113.205 21.9947 113.991 22.2073 114.86 22.2073Z\" fill=\"#3A4149\"/>\\n<path d=\"M125.377 24.5368V9.97759H128.261V14.5533L127.984 13.4441C128.187 12.7415 128.529 12.1037 129.01 11.5306C129.509 10.9574 130.073 10.5045 130.701 10.1717C131.349 9.83893 132.014 9.67254 132.698 9.67254C133.012 9.67254 133.308 9.70027 133.586 9.75573C133.881 9.81119 134.113 9.8759 134.279 9.94985L133.53 13.0558C133.308 12.9634 133.059 12.8894 132.781 12.834C132.523 12.76 132.264 12.723 132.005 12.723C131.506 12.723 131.025 12.8247 130.563 13.0281C130.119 13.213 129.722 13.481 129.37 13.8323C129.038 14.1651 128.77 14.5626 128.566 15.0248C128.363 15.4685 128.261 15.9584 128.261 16.4946V24.5368H125.377Z\" fill=\"#3A4149\"/>\\n<path d=\"M137.033 24.5368V9.97759H139.89V24.5368H137.033ZM138.42 6.76069C137.81 6.76069 137.338 6.60354 137.006 6.28925C136.673 5.97495 136.506 5.53124 136.506 4.95812C136.506 4.42197 136.673 3.9875 137.006 3.65472C137.357 3.32194 137.828 3.15554 138.42 3.15554C139.03 3.15554 139.501 3.31269 139.834 3.62699C140.167 3.94128 140.333 4.38499 140.333 4.95812C140.333 5.49427 140.158 5.92873 139.806 6.26151C139.474 6.5943 139.011 6.76069 138.42 6.76069Z\" fill=\"#3A4149\"/>\\n<path d=\"M149.383 24.8141C148.347 24.8141 147.442 24.5738 146.665 24.0931C145.907 23.6124 145.315 22.9376 144.89 22.0687C144.484 21.1998 144.28 20.1644 144.28 18.9627V9.97759H147.137V18.1862C147.137 19.0367 147.266 19.7762 147.525 20.4048C147.802 21.0149 148.19 21.4863 148.69 21.8191C149.207 22.1519 149.827 22.3183 150.548 22.3183C151.084 22.3183 151.574 22.2351 152.017 22.0687C152.461 21.8838 152.84 21.6342 153.154 21.3199C153.487 21.0056 153.746 20.6266 153.931 20.1829C154.116 19.7392 154.208 19.2585 154.208 18.7409V9.97759H157.065V24.5368H154.208V21.4863L154.707 21.1535C154.485 21.8376 154.106 22.4569 153.57 23.0116C153.053 23.5662 152.433 24.0099 151.712 24.3427C150.991 24.657 150.215 24.8141 149.383 24.8141Z\" fill=\"#3A4149\"/>\\n<path d=\"M161.015 24.5368V9.97759H163.9V13.0836L163.373 13.4163C163.521 12.9357 163.752 12.4735 164.066 12.0297C164.399 11.586 164.796 11.1978 165.258 10.865C165.739 10.5137 166.248 10.2364 166.784 10.0331C167.338 9.82968 167.902 9.728 168.475 9.728C169.307 9.728 170.038 9.86666 170.666 10.144C171.295 10.4213 171.812 10.8373 172.219 11.3919C172.626 11.9465 172.922 12.6398 173.107 13.4718L172.663 13.3609L172.857 12.8894C173.06 12.4642 173.338 12.0667 173.689 11.697C174.059 11.3087 174.475 10.9667 174.937 10.6709C175.399 10.3751 175.889 10.144 176.407 9.97759C176.924 9.81119 177.433 9.728 177.932 9.728C179.023 9.728 179.919 9.94985 180.622 10.3936C181.343 10.8373 181.879 11.5121 182.23 12.418C182.6 13.3239 182.785 14.4517 182.785 15.8013V24.5368H179.901V15.9677C179.901 15.1357 179.79 14.4609 179.568 13.9432C179.365 13.4071 179.05 13.0096 178.625 12.7508C178.2 12.4919 177.655 12.3625 176.989 12.3625C176.471 12.3625 175.981 12.455 175.519 12.6398C175.076 12.8062 174.687 13.0466 174.354 13.3609C174.022 13.6752 173.763 14.0449 173.578 14.4701C173.393 14.8769 173.301 15.3298 173.301 15.829V24.5368H170.417V15.9122C170.417 15.1542 170.306 14.5164 170.084 13.9987C169.862 13.4626 169.538 13.0558 169.113 12.7785C168.688 12.5012 168.17 12.3625 167.56 12.3625C167.043 12.3625 166.562 12.455 166.118 12.6398C165.674 12.8062 165.286 13.0466 164.953 13.3609C164.621 13.6567 164.362 14.0172 164.177 14.4424C163.992 14.8492 163.9 15.2929 163.9 15.7735V24.5368H161.015Z\" fill=\"#3A4149\"/>\\n<path d=\"M10.5208 15.4048V22.2177V22.2177L10.521 21.6008C13.044 21.0141 15.3632 19.7604 17.2361 17.971V15.4048C17.2409 14.9608 17.1576 14.5203 16.991 14.1087C16.8244 13.6971 16.5779 13.3227 16.2656 13.007C15.9534 12.6914 15.5816 12.4408 15.1718 12.2697C14.7621 12.0987 14.3225 12.0107 13.8785 12.0107C13.4344 12.0107 12.9948 12.0987 12.5851 12.2697C12.1753 12.4408 11.8035 12.6914 11.4913 13.007C11.179 13.3227 10.9324 13.6971 10.7659 14.1087C10.5993 14.5203 10.516 14.9608 10.5208 15.4048Z\" fill=\"#3A4149\"/>\\n<path d=\"M1.0154 8.6764C1.54817 7.35506 2.28385 6.12491 3.19587 5.03035C3.29728 4.90466 3.40304 4.77858 3.51267 4.65681C3.5768 4.63536 3.64219 4.6177 3.70844 4.60396C3.7176 4.5964 3.72904 4.59213 3.74094 4.59182H3.74873C3.89908 4.54718 4.05335 4.50646 4.20762 4.46574C4.23189 4.46183 4.26048 4.4536 4.28906 4.44577C4.4351 4.40897 4.5855 4.37647 4.73546 4.34397C4.95081 4.29542 5.16616 4.2547 5.38542 4.21829C5.50288 4.19793 5.62035 4.18187 5.73781 4.16151C5.87994 4.14115 6.02599 4.1251 6.17203 4.10865C6.30633 4.09221 6.4402 4.08007 6.57411 4.0695C6.64302 4.06558 6.71232 4.05736 6.78515 4.05345C7.13441 4.02917 7.48762 4.01664 7.84236 4.01664C7.93202 4.01664 8.02129 4.01664 8.10626 4.02095C8.18457 4.02095 8.25661 4.02486 8.33375 4.02917C8.3758 4.02631 8.41801 4.02764 8.45982 4.03309C8.5166 4.03309 8.57337 4.037 8.63015 4.04131C8.7805 4.04522 8.93046 4.05736 9.08081 4.0695C9.14189 4.07381 9.20258 4.07772 9.26366 4.08594C9.45435 4.102 9.64111 4.12236 9.83218 4.15094C9.94965 4.16699 10.0714 4.18344 10.1893 4.20341C10.2115 4.2036 10.2336 4.20783 10.2543 4.21594C10.3435 4.22807 10.4371 4.24413 10.5283 4.26057C10.8733 4.32126 11.2186 4.3984 11.5554 4.48767C11.6572 4.51233 11.7586 4.54053 11.8561 4.56911C12.4032 4.72326 12.9413 4.9076 13.468 5.12119C13.618 5.18227 13.7644 5.24726 13.9105 5.31696C14.2354 5.45909 14.5522 5.61727 14.8647 5.78681C14.9947 5.85181 15.1204 5.92463 15.2465 5.99785C15.6078 6.20498 15.961 6.42855 16.3036 6.66778C16.4743 6.78955 16.6447 6.91132 16.8126 7.0374C16.9712 7.15917 17.1293 7.28486 17.2824 7.41093L17.2989 7.42699C17.3436 7.45949 17.3839 7.49629 17.4285 7.5327C17.5851 7.6627 17.7375 7.80052 17.8874 7.93873C16.706 7.13791 15.3111 6.71062 13.8838 6.71242C10.8631 6.00764 6.46996 5.92463 1.24441 8.56795C1.16571 8.59927 1.08744 8.63607 1.0154 8.6764Z\" fill=\"#3A4149\"/>\\n<path d=\"M13.8784 27.7593H10.5209L10.5208 22.2177C10.6774 22.2055 10.8415 22.1885 10.9997 22.1685C11.2636 22.1438 11.5275 22.1074 11.7875 22.0628C11.9336 22.0424 12.0757 22.0181 12.2182 21.9895C12.265 21.9794 12.3117 21.9703 12.3584 21.9612C12.4051 21.9521 12.4518 21.943 12.4986 21.9328C12.6732 21.9003 12.8478 21.8596 13.0221 21.8153C13.5846 21.6818 14.1392 21.5164 14.683 21.32C14.8858 21.2472 15.0887 21.17 15.2918 21.0886C15.4027 21.0435 15.5135 20.9956 15.6253 20.9473L15.6834 20.9222C16.2155 20.691 16.7346 20.4307 17.2382 20.1426V20.2076C17.7126 19.9543 18.1568 19.6478 18.562 19.2942L18.5741 19.2859C18.9355 19.0303 19.2848 18.7581 19.6258 18.4739C19.9586 18.1935 20.2797 17.9014 20.5882 17.5929C20.7449 17.4386 20.9015 17.2797 21.0467 17.1176L21.0671 17.0976C21.2135 16.941 21.3514 16.7887 21.4853 16.6277C21.7778 16.2945 22.0499 15.9535 22.3075 15.5964C22.4457 15.4097 22.5757 15.2186 22.7053 15.0236C22.8071 14.8736 22.9011 14.7272 22.9939 14.5729L22.9979 14.5669L23.0017 14.5608C23.0954 14.4146 23.1848 14.2644 23.2699 14.1101C23.4931 13.7162 23.7041 13.3102 23.8964 12.8963L23.9048 12.8781C23.9831 12.7096 24.0614 12.5409 24.1313 12.3681C24.2817 12.0111 24.4199 11.6497 24.5417 11.2843C24.5863 11.1544 24.6266 11.0244 24.6673 10.8928C24.7488 10.6332 24.824 10.3693 24.8905 10.105C24.9152 10.0118 24.9395 9.91434 24.9598 9.82115C25.0045 9.64652 25.0409 9.47581 25.0773 9.30118C25.1141 9.1105 25.1505 8.91942 25.1791 8.72874C25.2155 8.5177 25.248 8.30235 25.2723 8.09131C25.2911 7.95292 25.3043 7.81735 25.3174 7.68169L25.3291 7.56351C25.3373 7.49029 25.3416 7.42138 25.3455 7.34816C25.3517 7.30928 25.3557 7.27004 25.3576 7.23069C25.3651 7.14268 25.369 7.05403 25.3728 6.96647L25.3741 6.93821C25.3903 6.67431 25.3984 6.40638 25.3984 6.13437C26.4547 7.70133 27.1794 9.46778 27.5278 11.3251C27.8761 13.1825 27.8409 15.0915 27.4242 16.9347L27.4203 16.9488L27.4164 16.9629C26.842 19.4632 25.5877 21.7561 23.792 23.5883C21.9964 25.4204 19.7292 26.7206 17.2409 27.3451C16.1416 27.6223 15.0121 27.7614 13.8784 27.7593Z\" fill=\"#3A4149\"/>\\n<path d=\"M0 27.4188V21.1376L0.003916 21.1333L0.0183356 21.1268C0.0392116 21.1132 0.0600996 21.0997 0.0809685 21.0863L0.0983436 21.075C0.173575 21.0267 0.24845 20.9785 0.321499 20.9262C0.569346 20.7696 0.808971 20.6016 1.04429 20.4309C1.63442 20.001 2.1959 19.5332 2.72515 19.0303C2.82656 18.9367 2.9284 18.8393 3.02981 18.7418L3.05535 18.714\" fill=\"#3A4149\"/>\\n<path d=\"M4.60986 16.9518C4.57148 17.0022 4.53254 17.0532 4.4915 17.1024C4.48005 17.1169 4.4686 17.1315 4.45717 17.1461C4.39549 17.2247 4.334 17.3031 4.27224 17.3784C4.17854 17.4925 4.0819 17.6062 3.98718 17.7178C3.96711 17.7414 3.94713 17.7649 3.92729 17.7883C3.8987 17.8198 3.87012 17.8514 3.84151 17.8831C3.72783 18.0087 3.61362 18.135 3.49663 18.2582C3.36272 18.405 3.22486 18.5472 3.07842 18.6889L3.05535 18.714\" fill=\"#3A4149\"/>\\n<path d=\"M6.26932 14.3385C6.2008 14.4849 6.11787 14.6337 6.03291 14.7797C6.00041 14.8408 5.96791 14.9015 5.93111 14.9583C5.85006 15.1129 5.76082 15.2629 5.66333 15.4132C5.56192 15.5836 5.45616 15.7504 5.34653 15.9168C5.3349 15.9366 5.32183 15.9556 5.30742 15.9735C5.21031 16.1278 5.10456 16.2782 4.99884 16.4242C4.97456 16.4595 4.94637 16.4986 4.91779 16.5378C4.83674 16.6517 4.75142 16.7652 4.66607 16.8788L4.65725 16.8903\" fill=\"#3A4149\"/>\\n<path d=\"M6.26932 14.3385L6.27865 14.3216Z\" fill=\"#3A4149\"/>\\n<path d=\"M6.55722 13.7621L6.5521 13.777C6.47105 13.9516 6.38569 14.1262 6.29211 14.2966L6.27865 14.3216\" fill=\"#3A4149\"/>\\n<path d=\"M6.71071 15.6766V20.7038C6.71036 21.1607 6.66404 21.6164 6.57246 22.064C6.26075 23.5767 5.43663 24.9356 4.23925 25.9111C3.04183 26.8867 1.54448 27.4192 0 27.4188\" fill=\"#3A4149\"/>\\n<path d=\"M6.71071 15.6766V15.6766L6.71081 13.8792C6.71081 13.721 6.71473 13.5609 6.72686 13.4042C6.67401 13.5217 6.62101 13.6392 6.56032 13.7566\" fill=\"#3A4149\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.3075 15.5964C24.3098 12.8479 25.3922 9.53489 25.3984 6.13437C24.6013 4.95696 23.6261 3.90742 22.5148 3.02051C22.5273 6.91828 21.8938 10.0083 20.9071 12.4605C20.812 11.9975 20.672 11.5449 20.4891 11.109C19.9468 9.82336 19.0435 8.71998 17.8874 7.93873L17.8822 7.93788L17.865 7.92189C16.6884 7.13083 15.3021 6.71063 13.8838 6.71242C12.944 6.71242 12.0096 6.89619 11.1414 7.25637C10.2733 7.61655 9.48476 8.14447 8.82098 8.80986C7.59219 10.0375 6.85065 11.6693 6.73405 13.4023C6.6812 13.5197 6.62832 13.6372 6.56764 13.7547L6.56455 13.7601L6.55942 13.775L6.54546 13.8036C6.46479 13.9687 6.38421 14.1336 6.29943 14.2946L6.28597 14.3196L6.27516 14.3392C6.20826 14.4737 6.1341 14.6079 6.05995 14.7421L6.04023 14.7778C6.00789 14.8386 5.97554 14.899 5.93895 14.9555C6.1619 14.5652 6.37128 14.1684 6.56455 13.7601C6.52774 13.8087 6.44143 13.9198 6.32397 14.0902C6.16579 14.3216 5.94222 14.6383 5.66618 15.0162L5.53643 15.1904C5.43505 15.3261 5.32838 15.4688 5.21942 15.6211C5.13921 15.7332 5.05241 15.8435 4.96388 15.9559C4.87958 16.063 4.79369 16.1721 4.71042 16.2867L4.60511 16.4165C4.27432 16.8241 3.92338 17.2566 3.5491 17.6712C3.14307 18.1301 2.71668 18.5726 2.31064 18.9868C2.19851 19.0902 2.09235 19.1959 1.9881 19.2997C1.89617 19.3913 1.80566 19.4814 1.71393 19.5671C1.51816 19.7499 1.33649 19.9206 1.16577 20.0827C0.911782 20.3103 0.688024 20.5119 0.506696 20.6753L0.32121 20.8423C0.138751 21.0044 0.0285833 21.109 0.003916 21.1333L0.0117747 21.1325L0.00908653 21.1398V21.1398L0 21.1376L0.000562101 13.8774C0.00122773 10.6454 1.13145 7.51712 3.19587 5.03035C3.29728 4.90466 3.40304 4.77858 3.51267 4.65681L3.51871 4.65323C5.8745 2.00245 9.15673 0.355404 12.6901 0.0511471C16.2252 -0.253259 19.7399 0.809266 22.5148 3.02051C23.6261 3.90742 24.6013 4.95696 25.3984 6.13437C25.3922 9.53489 24.3098 12.8479 22.3075 15.5964ZM3.70844 4.60396C3.69635 4.60646 3.68443 4.60748 3.6724 4.61024ZM10.2988 4.2206C10.2822 4.21782 10.2657 4.21506 10.2491 4.21233L10.2543 4.21594C10.269 4.21793 10.2839 4.21841 10.2988 4.2206ZM9.30813 4.08813C9.28802 4.08613 9.2679 4.08417 9.24778 4.08225L9.26366 4.08594C9.27846 4.08719 9.29338 4.08683 9.30813 4.08813ZM9.11954 4.07059C8.75865 4.03934 8.39702 4.02137 8.03538 4.01665C8.05933 4.01728 8.08288 4.01976 8.10626 4.02095C8.18457 4.02095 8.25661 4.02486 8.33375 4.02917C8.3758 4.02631 8.41801 4.02764 8.45982 4.03309C8.5166 4.03309 8.57337 4.037 8.63015 4.04131C8.7805 4.04522 8.93046 4.05736 9.08081 4.0695L9.09533 4.06888L9.11954 4.07059Z\" fill=\"#3A4149\"/>\\n<path d=\"M2.75563 19.0071C4.00622 17.8235 5.08087 16.457 5.93895 14.9555C5.85434 15.1113 5.76377 15.2616 5.67061 15.4113C5.5692 15.5816 5.46345 15.7484 5.35382 15.9148C5.34219 15.9347 5.32911 15.9537 5.3147 15.9716C5.2176 16.1219 5.11576 16.2719 5.00612 16.4223C4.99091 16.4451 4.97417 16.4681 4.95675 16.492L4.92511 16.5358C4.84406 16.6497 4.75871 16.7633 4.67335 16.8768L4.62374 16.9415C4.58323 16.9945 4.54203 17.0485 4.49872 17.1004C4.42981 17.1936 4.35659 17.2872 4.27946 17.3764C4.2121 17.4584 4.14321 17.5396 4.07461 17.6204L3.93447 17.7864L3.83579 17.8955C3.72637 18.0167 3.61637 18.1386 3.50381 18.2562C3.3699 18.4027 3.23208 18.5448 3.08564 18.6869L3.06266 18.712L3.03705 18.7398L3.01285 18.7631C2.92722 18.8454 2.84127 18.9281 2.75563 19.0071Z\" fill=\"#3A4149\"/>\\n<path d=\"M0.352063 20.9136C1.16706 20.3758 1.93279 19.7732 2.64261 19.1131C2.13975 19.5839 1.60839 20.0233 1.05157 20.4289C0.824021 20.5981 0.591658 20.7595 0.352063 20.9136Z\" fill=\"#3A4149\"/>\\n<path d=\"M7.84236 4.01664C6.45833 4.01464 5.07825 4.20724 3.74873 4.59182L3.73395 4.59152C3.73395 4.59152 3.94108 4.49833 4.31852 4.36403C4.8383 4.17852 5.37193 4.03451 5.91446 3.93333C6.68615 3.78268 7.47076 3.70793 8.25706 3.71016C8.70041 3.70697 9.1436 3.72723 9.58479 3.77085C10.0355 3.81979 10.4943 3.88479 10.945 3.97797C11.3957 4.07116 11.8424 4.19332 12.2763 4.33036C12.4925 4.39383 12.7052 4.46846 12.9137 4.55393C13.1208 4.63224 13.324 4.71603 13.5229 4.80569C13.903 4.96901 14.2732 5.15468 14.6314 5.36169C14.9561 5.53972 15.2706 5.73581 15.5735 5.949C15.8319 6.12422 16.0813 6.31255 16.3205 6.51322C16.5398 6.68393 16.7144 6.85425 16.8644 6.98307C17.1204 7.23483 17.2704 7.39341 17.2951 7.4216C14.6395 5.21454 11.2953 4.01081 7.84236 4.01664Z\" fill=\"#3A4149\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ogeldy\",\"data-framer-name\":\"Logo placeholder 4\",layoutDependency:layoutDependency,layoutId:\"QfKOppRHs\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:51,intrinsicWidth:86,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sLPsZn38YV53QuHShZNzHZVIRcY.svg\"},className:\"framer-zyzfvt\",\"data-framer-name\":\"priboy\",layoutDependency:layoutDependency,layoutId:\"qKFziBBPn\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r16q9v\",\"data-framer-name\":\"Logo placeholder 3\",layoutDependency:layoutDependency,layoutId:\"mq8W3OXyo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ue8m0a\",\"data-framer-name\":\"gzp\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"kc7D7e7nm\",svg:'<svg width=\"112\" height=\"54\" viewBox=\"0 0 112 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M30.0561 10.1273C28.9233 5.22357 26.0913 1.2361 25.7095 0.584961C25.0939 1.49998 22.8406 5.02077 21.6831 8.9276C20.4395 13.2816 20.2548 17.1456 20.6858 20.9511C21.1167 24.7565 22.7298 28.6633 22.7298 28.6633C23.5917 30.7169 24.8846 32.9147 25.7219 33.9946C26.9532 32.4065 29.7852 27.6665 30.6718 21.48C31.1643 18.0423 31.1766 15.031 30.0561 10.1273ZM25.7095 32.773C25.1554 31.7358 24.2935 29.7604 24.2073 26.7087C24.1827 23.7596 25.3771 21.2357 25.7219 20.7067C26.0297 21.2357 27.064 23.4334 27.1871 26.4448C27.261 29.3951 26.2759 31.715 25.7095 32.773ZM29.7236 18.4491C29.6867 20.3195 29.4651 22.2937 29.1696 23.4738C29.2804 21.4397 29.0341 18.5713 28.5539 16.332C28.086 14.094 26.7562 10.3508 25.6849 8.62096C24.6999 10.269 23.4932 13.5051 22.8529 16.3112C22.2249 19.121 22.2003 22.5172 22.2003 23.5361C22.0279 22.6772 21.6092 19.6158 21.7324 16.536C21.8309 13.9962 22.4219 11.388 22.7544 10.1883C24.0103 6.18011 25.4263 3.61709 25.6849 3.21028C25.9558 3.61709 27.7412 6.77016 28.6647 10.0869C29.5882 13.4025 29.7729 16.5763 29.7236 18.4491ZM27.6181 35.1368H32.4818V47.627C29.1203 51.1856 24.3428 53.4115 19.0358 53.4115C8.86508 53.4115 0.615234 45.2289 0.615234 35.1368C0.615234 25.0436 8.86508 16.861 19.0358 16.861V30.6021C16.3884 30.6021 13.7411 31.6038 11.7217 33.6086C11.2415 34.085 10.8229 34.5981 10.4535 35.1368C7.74458 39.1267 8.16324 44.59 11.7217 48.1217C13.7411 50.1252 16.3884 51.127 19.0358 51.127C21.6708 51.127 24.3181 50.1326 26.3252 48.1462C26.3376 48.1364 26.3498 48.1291 26.3622 48.1193C26.3622 48.1185 26.3622 48.1185 26.3622 48.1168C26.3745 48.1092 26.3745 48.1021 26.3868 48.0935C28.4062 46.0876 28.4062 42.8343 26.3868 40.8272C24.3674 38.8212 21.0798 38.8212 19.0605 40.8272C19.0605 40.8348 19.0482 40.8431 19.0358 40.8504V35.1367L27.6181 35.1368ZM43.3667 50.1521C43.3667 51.4312 43.2066 53.4151 40.6208 53.4151H37.5672C34.9937 53.4151 34.8336 51.4312 34.8336 50.1521V38.4048C34.8336 37.1245 34.9937 35.1405 37.5672 35.1405H40.6208C43.2066 35.1405 43.3667 37.1245 43.3667 38.4048V40.9885H39.6727V38.0089C39.6727 37.6962 39.4388 37.4091 39.094 37.4091C38.8847 37.4091 38.5153 37.5386 38.5153 38.0089V50.471C38.5153 50.9401 38.8847 51.0708 39.094 51.0708C39.4388 51.0708 39.6727 50.7837 39.6727 50.471V46.4713H39.1186V44.4605H43.3667V50.1521ZM44.8319 53.4151L46.7528 35.1405H52.54L54.4609 53.4151H50.8531L50.5083 48.5603H48.7722L48.4397 53.4151H44.8319ZM48.9076 46.5495H50.3852L49.7449 37.4164H49.5356L48.9076 46.5495ZM55.8276 51.1184L59.3615 37.4164H56.197V35.1405H63.1417V37.4116L59.6201 51.072H63.3633V53.4151H55.8276V51.1184ZM65.0872 53.4151V35.1405H70.8867C73.4602 35.1405 73.6202 37.1245 73.6202 38.4048V43.9388C73.6202 45.2179 73.4602 47.2018 70.8867 47.2018H68.7811V53.4151H65.0872ZM68.7811 44.921H69.249C69.6554 44.921 69.9386 44.5814 69.9386 44.0072V38.3205C69.9386 37.7451 69.6554 37.4067 69.249 37.4067H68.7811V44.921ZM84.5174 53.4151H80.7249L79.469 46.6533H79.1981V53.4151H75.5165V35.1405H81.3037C83.8894 35.1405 84.0372 37.1245 84.0372 38.4048V44.0695C84.0372 44.5643 84.0126 45.7664 82.7074 46.2881L84.5174 53.4151ZM79.1981 44.3749H79.6783C80.0723 44.3749 80.3555 44.0353 80.3555 43.4612V38.3205C80.3555 37.7463 80.0723 37.4079 79.6783 37.4079H79.1981V44.3749ZM86.4998 50.1521V38.4048C86.4998 37.1245 86.6599 35.1405 89.2457 35.1405H92.287C94.8728 35.1405 95.0329 37.1245 95.0329 38.4048V50.1521C95.0329 51.4312 94.8728 53.4151 92.287 53.4151H89.2457C86.6599 53.4151 86.4998 51.4312 86.4998 50.1521ZM91.3389 50.471V38.0089C91.3389 37.6962 91.105 37.4091 90.7602 37.4091C90.5509 37.4091 90.1815 37.5386 90.1815 38.0089V50.471C90.1815 50.9413 90.5509 51.072 90.7602 51.072C91.105 51.072 91.3389 50.7849 91.3389 50.471ZM106.595 35.1405H111.385V53.4151H107.703V41.9536H107.568L105.672 53.4151H102.729L100.832 41.9536H100.697V53.4151H97.0153V35.1405H101.805L104.194 47.9849L106.595 35.1405Z\" fill=\"#3A4149\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tc1s2r\",\"data-framer-name\":\"Logo placeholder 2\",layoutDependency:layoutDependency,layoutId:\"Qm7bY94Hm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bvkbem\",\"data-framer-name\":\"git\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:148,layoutDependency:layoutDependency,layoutId:\"i8y1m4Vju\",svg:'<svg width=\"148\" height=\"37\" viewBox=\"0 0 148 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M90.2822 28.0982H90.2331C90.2577 28.0982 90.2577 28.1227 90.2822 28.1227H90.3068L90.2822 28.0982ZM90.2822 28.1227C90.0859 28.1227 89.5706 28.2209 89.0307 28.2209C87.3374 28.2209 86.7485 27.4356 86.7485 26.4049V19.5829H90.2086C90.4049 19.5829 90.5522 19.4111 90.5522 19.1657V15.4601C90.5522 15.2638 90.3804 15.0921 90.2086 15.0921H86.7485V10.4786C86.7485 10.3068 86.6258 10.2086 86.4295 10.2086H81.7178C81.5215 10.2086 81.4233 10.3313 81.4233 10.4786V15.2148C81.4233 15.2148 79.043 15.8037 78.8957 15.8282C78.7239 15.8773 78.6258 16.0246 78.6258 16.1963V19.1657C78.6258 19.4111 78.7976 19.5829 78.9939 19.5829H81.3988V26.7485C81.3988 32.0736 85.1043 32.6135 87.6319 32.6135C88.7853 32.6135 90.1841 32.2454 90.4049 32.1227C90.5276 32.0736 90.6012 31.9264 90.6012 31.7792V28.5154C90.6012 28.319 90.4786 28.1718 90.2822 28.1227ZM141.963 23.3375C141.963 19.3865 140.368 18.8712 138.699 19.043C137.399 19.1166 136.344 19.7792 136.344 19.7792V27.4601C136.344 27.4601 137.399 28.1963 138.994 28.2454C141.227 28.2945 141.963 27.4847 141.963 23.3375ZM147.264 22.9939C147.264 30.4786 144.834 32.6135 140.614 32.6135C137.031 32.6135 135.117 30.7976 135.117 30.7976C135.117 30.7976 135.043 31.8037 134.92 31.9264C134.847 32.0491 134.748 32.0982 134.601 32.0982H131.387C131.166 32.0982 130.969 31.9264 130.969 31.7301L131.018 7.50923C131.018 7.31291 131.19 7.14113 131.387 7.14113H136.025C136.221 7.14113 136.393 7.31291 136.393 7.50923V15.7301C136.393 15.7301 138.184 14.5767 140.81 14.5767L140.785 14.5276C143.387 14.5276 147.264 15.5092 147.264 22.9939ZM128.245 15.1166H123.656C123.411 15.1166 123.288 15.2884 123.288 15.5338V27.3865C123.288 27.3865 122.086 28.2209 120.442 28.2209C118.822 28.2209 118.331 27.4847 118.331 25.8405V15.4847C118.331 15.2884 118.16 15.1166 117.963 15.1166H113.301C113.104 15.1166 112.933 15.2884 112.933 15.4847V26.6503C112.933 31.4356 115.607 32.6381 119.288 32.6381C122.331 32.6381 124.785 30.9694 124.785 30.9694C124.785 30.9694 124.908 31.8283 124.957 31.951C125.006 32.0491 125.153 32.1473 125.301 32.1473H128.221C128.466 32.1473 128.589 31.9755 128.589 31.7792L128.638 15.4847C128.663 15.2884 128.466 15.1166 128.245 15.1166ZM76.5644 15.0921H71.9264C71.7301 15.0921 71.5583 15.2884 71.5583 15.5338V31.5338C71.5583 31.9755 71.8528 32.1227 72.2209 32.1227H76.4172C76.8589 32.1227 76.9571 31.9264 76.9571 31.5338V15.4601C76.9325 15.2638 76.7608 15.0921 76.5644 15.0921ZM74.2577 7.70555C72.589 7.70555 71.2393 9.0307 71.2393 10.724C71.2393 12.3927 72.5644 13.7424 74.2577 13.7424C75.9019 13.7424 77.227 12.4172 77.227 10.724C77.227 9.05524 75.9019 7.70555 74.2577 7.70555ZM110.233 7.16567H105.62C105.423 7.16567 105.252 7.33745 105.252 7.53377V16.4417H98.0368V7.53377C98.0368 7.33745 97.8651 7.16567 97.6687 7.16567H93.0307C92.8344 7.16567 92.6626 7.33745 92.6626 7.53377V31.7546C92.6626 31.9509 92.8589 32.1227 93.0307 32.1227H97.6687C97.8651 32.1227 98.0368 31.9509 98.0368 31.7546V21.3988H105.252L105.202 31.7546C105.202 31.9509 105.374 32.1227 105.571 32.1227H110.209C110.405 32.1227 110.577 31.9509 110.577 31.7546V7.53377C110.601 7.33745 110.429 7.16567 110.233 7.16567ZM69.0798 17.8896V30.4049C69.0798 30.4786 69.0552 30.6503 68.9571 30.6749C68.9571 30.6749 66.2331 32.6135 61.7424 32.6135C56.319 32.6135 49.8651 30.9203 49.8651 19.7056C49.8651 8.49083 55.4847 6.18408 60.9816 6.20862C65.7424 6.20862 67.6565 7.28837 67.9509 7.48469C68.0246 7.60739 68.0736 7.68101 68.0736 7.77917L67.1902 11.681C67.1902 11.8773 66.9939 12.1227 66.7485 12.0491C65.9632 11.8037 64.7853 11.3375 62.0123 11.3375C58.7976 11.3375 55.362 12.2454 55.362 19.4847C55.362 26.6994 58.6258 27.5583 60.9816 27.5583C62.9939 27.5583 63.7055 27.3129 63.7055 27.3129V22.3068H60.4908C60.2454 22.3068 60.0736 22.135 60.0736 21.9387V17.9141C60.0736 17.7178 60.2454 17.546 60.4908 17.546H68.6626C68.908 17.5215 69.0798 17.6933 69.0798 17.8896Z\" fill=\"#3A4149\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.6994 0C8.3681 0 0 8.3681 0 18.6994C0 26.9693 5.34969 33.9632 12.7853 36.4417C13.7178 36.589 14.0859 36.0491 14.0859 35.5583C14.0859 35.1166 14.0614 33.6442 14.0614 32.0736C9.37423 32.9325 8.14724 30.9202 7.77914 29.8896C7.55828 29.3497 6.65031 27.681 5.86503 27.2393C5.20245 26.8957 4.26994 26.0123 5.84049 25.9877C7.31288 25.9632 8.3681 27.3374 8.71166 27.9018C10.4049 30.7239 13.0798 29.9386 14.1595 29.4479C14.3313 28.2454 14.8221 27.411 15.362 26.9448C11.2147 26.4785 6.84663 24.8589 6.84663 17.7178C6.84663 15.681 7.58282 13.9877 8.76074 12.6871C8.56442 12.2209 7.92638 10.3067 8.95706 7.73006C8.95706 7.73006 10.5276 7.23927 14.1104 9.64418C15.6074 9.227 17.2025 9.00614 18.773 9.00614C20.3681 9.00614 21.9387 9.227 23.4356 9.64418C27.0184 7.21473 28.5644 7.73006 28.5644 7.73006C29.5951 10.3067 28.9325 12.2209 28.7607 12.6871C29.9632 13.9877 30.6748 15.6564 30.6748 17.7178C30.6748 24.8834 26.3067 26.4785 22.135 26.9448C22.8221 27.5337 23.411 28.638 23.411 30.4049C23.411 32.908 23.3865 34.9202 23.3865 35.5337C23.3865 36.0245 23.7301 36.6135 24.6626 36.4172C32.2699 33.8405 37.3988 26.6994 37.3988 18.6748C37.3988 8.3681 29.0307 0 18.6994 0Z\" fill=\"#3A4149\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h14c8d\",\"data-framer-name\":\"Logo placeholder 1\",layoutDependency:layoutDependency,layoutId:\"GRFbQGHGO\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19c1ygd\",\"data-framer-name\":\"teez\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:94,layoutDependency:layoutDependency,layoutId:\"C_G6mbzjN\",svg:'<svg width=\"94\" height=\"30\" viewBox=\"0 0 94 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M69.7538 24.6567H89.2839L87.5252 29.5323H65.308L66.5116 26.1567L69.7538 24.6567ZM93.6364 6.09685L92.4794 9.47244L74.0573 26.1591V29.5346H65.3103L66.5139 26.1591L84.8871 9.47244V6.09685H93.6364ZM89.011 10.9701H69.6628L71.4192 6.09449H93.6364L92.4794 9.47008L89.0087 10.9701H89.011Z\" fill=\"#3A4149\"/>\\n<path d=\"M63.0665 27.7961C62.4787 28.1386 61.8489 28.4528 61.1701 28.7339C60.4914 28.9843 59.752 29.2039 58.9496 29.3906C58.1775 29.5795 57.3448 29.7189 56.4515 29.811C55.5861 29.9362 54.6927 30 53.7667 30V25.1244C54.7837 25.1244 55.7867 25.0606 56.7757 24.9354C57.7647 24.7795 58.7187 24.5929 59.6447 24.3732C60.5707 24.1228 61.45 23.8276 62.2851 23.4827C63.1178 23.1071 63.8898 22.7173 64.6013 22.311L63.0735 27.7937H63.0665V27.7961ZM55.9383 5.62441C57.9443 5.62441 59.6866 5.91969 61.1678 6.51496C62.6816 7.11024 63.8665 7.93701 64.7295 9C65.5926 10.063 66.1337 11.3457 66.3483 12.8433C66.5956 14.3433 66.4579 15.9969 65.9331 17.811L64.452 17.8583L60.657 17.811C60.9952 16.7173 61.1678 15.7323 61.1678 14.8559C61.1958 13.9512 61.0442 13.1835 60.706 12.5598C60.3677 11.9031 59.8126 11.4047 59.0405 11.0598C58.2685 10.6843 57.2352 10.4976 55.9406 10.4976L55.4765 10.0276V6.13465L55.9406 5.61732V5.62205L55.9383 5.62441ZM45.4327 19.5449V15.6094H65.3337L65.9354 17.8134L65.4713 19.5496H45.4303V19.5449H45.4327ZM55.9383 5.62441L56.4001 6.09449V10.0299L55.9383 10.5C54.6438 10.5 53.5172 10.689 52.5585 11.0622C51.6022 11.4047 50.7671 11.9032 50.0604 12.5622C49.349 13.1858 48.7658 13.9535 48.304 14.8583C47.8398 15.7323 47.455 16.7197 47.1471 17.8134C46.8695 18.9071 46.7459 19.9063 46.7762 20.811C46.8392 21.685 47.1144 22.4504 47.6066 23.1071C48.1314 23.7307 48.8871 24.2339 49.8738 24.6071C50.8907 24.9496 52.19 25.1244 53.7597 25.1244L54.2239 25.5945V29.5299L53.7597 30C51.4436 30 49.4399 29.6717 47.7442 29.015C46.0485 28.3583 44.7026 27.4346 43.7183 26.2488C42.7293 25.0299 42.0995 23.5937 41.8219 21.9354C41.5747 20.2488 41.731 18.3874 42.2861 16.3583C42.7176 14.7331 43.3661 13.2638 44.2291 11.9528C45.0945 10.6417 46.1254 9.51496 47.329 8.57717C48.5326 7.63937 49.8598 6.92362 51.3106 6.42047C52.7917 5.88898 54.3335 5.62205 55.9383 5.62205V5.62677V5.62441Z\" fill=\"#3A4149\"/>\\n<path d=\"M37.6887 27.6543C37.0729 27.9969 36.3942 28.3276 35.6548 28.6394C34.9434 28.9205 34.204 29.1709 33.4342 29.3882C32.6622 29.5772 31.8761 29.7165 31.0737 29.8087C30.2713 29.9339 29.483 29.9976 28.7156 29.9976V25.122C29.5459 25.122 30.3973 25.0583 31.2603 24.9331C32.1537 24.7772 33.0517 24.5906 33.9427 24.3709C34.8361 24.1205 35.6851 23.8252 36.4875 23.4803C37.3179 23.1047 38.0923 22.715 38.8037 22.3087L37.6911 27.652H37.6864L37.6887 27.6543ZM30.2364 5.62441C32.0884 5.62441 33.7071 5.91969 35.0973 6.51496C36.4875 7.11024 37.5954 7.93701 38.4305 9C39.2935 10.0299 39.8626 11.3126 40.1449 12.8433C40.4224 14.3433 40.3921 15.9969 40.0539 17.811H34.7311C34.9457 16.7173 35.0413 15.7323 35.0087 14.8559C35.0087 13.9512 34.8221 13.1835 34.4535 12.5598C34.1153 11.9031 33.6045 11.4047 32.9257 11.0598C32.2773 10.6843 31.3839 10.4976 30.241 10.4976L29.7768 10.0276V6.13465L30.241 5.61732V5.62205L30.2364 5.62441ZM21.1162 19.5449V15.6094H39.1652L40.0446 17.8134L39.6714 19.5496H21.1116L21.1162 19.5449ZM30.2364 5.62441L30.7005 6.09449L30.7472 10.0299L30.2364 10.5C29.1564 10.5 28.2024 10.689 27.3674 11.0622C26.537 11.4047 25.8116 11.9032 25.1911 12.5622C24.5753 13.1858 24.0785 13.9535 23.71 14.8583C23.3391 15.7323 23.0476 16.7197 22.8306 17.8134C22.616 18.9071 22.5391 19.9063 22.602 20.811C22.693 21.685 22.9729 22.4504 23.4324 23.1071C23.8966 23.7307 24.559 24.2339 25.4244 24.6071C26.2897 24.9496 27.3814 25.1244 28.7109 25.1244L29.1727 25.5945V29.5299L28.7109 30C26.614 30 24.7899 29.6858 23.2481 29.0622C21.7064 28.4055 20.4561 27.5008 19.4998 26.3433C18.5738 25.1882 17.9417 23.7992 17.6035 22.1717C17.2653 20.5465 17.2932 18.7488 17.6944 16.7811C18.0047 15.0945 18.5435 13.5803 19.3132 12.2362C20.0853 10.8614 21.0089 9.69213 22.0912 8.72126C23.2038 7.75039 24.4494 7.00157 25.8396 6.47244C27.2297 5.91024 28.6946 5.6315 30.2364 5.6315V5.62441Z\" fill=\"#3A4149\"/>\\n<path d=\"M16.197 27.6543C15.7328 27.9354 15.271 28.2 14.8068 28.4528C14.3426 28.6701 13.8808 28.8591 13.4166 29.015C12.9524 29.1709 12.4766 29.2961 11.9844 29.3929C11.5203 29.485 11.0281 29.5323 10.5033 29.5323L10.0391 29.0622L10.9651 25.1268L11.4293 24.6567C12.0777 24.6567 12.7868 24.4843 13.5589 24.1394C14.3613 23.7969 15.2406 23.3409 16.1993 22.7811V27.6543H16.1946H16.197ZM10.5056 29.5299C9.51665 29.5299 8.6233 29.3551 7.82091 29.0126C7.04885 28.6701 6.37009 28.1858 5.78696 27.5622C5.19917 26.9055 4.75599 26.1402 4.44577 25.2661C4.13554 24.3614 3.9816 23.3764 3.9816 22.311V10.9677H0V6.09213H3.9816L5.37178 0H9.21575V6.09213H16.2063V10.9677H9.21575V22.311C9.21575 22.6535 9.2624 22.9843 9.35337 23.2961C9.477 23.5772 9.63094 23.8134 9.81754 23.9976C10.0041 24.1866 10.2327 24.3402 10.5103 24.4677C10.7879 24.5929 11.0981 24.6567 11.4363 24.6567L10.5103 29.5323H10.5056V29.5299Z\" fill=\"#3A4149\"/>\\n</svg>\\n',withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2mXab.framer-fjuix3, .framer-2mXab .framer-fjuix3 { display: block; }\",\".framer-2mXab.framer-hybww { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2mXab .framer-12iane2-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-2mXab .framer-1xvlrip, .framer-2mXab .framer-nwsih7, .framer-2mXab .framer-1ogeldy, .framer-2mXab .framer-tc1s2r, .framer-2mXab .framer-1h14c8d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2mXab .framer-npnwdd { flex: none; height: 30px; position: relative; width: 169px; }\",\".framer-2mXab .framer-1p1uwkn { flex: none; height: 30px; position: relative; width: 183px; }\",\".framer-2mXab .framer-zyzfvt { flex: none; height: 51px; position: relative; width: 86px; }\",\".framer-2mXab .framer-1r16q9v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-2mXab .framer-ue8m0a { flex: none; height: 47px; position: relative; width: 99px; }\",\".framer-2mXab .framer-1bvkbem { flex: none; height: 30px; position: relative; width: 119px; }\",\".framer-2mXab .framer-19c1ygd { flex: none; height: 24px; position: relative; width: 75px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2mXab.framer-hybww, .framer-2mXab .framer-1xvlrip, .framer-2mXab .framer-nwsih7, .framer-2mXab .framer-1ogeldy, .framer-2mXab .framer-1r16q9v, .framer-2mXab .framer-tc1s2r, .framer-2mXab .framer-1h14c8d { gap: 0px; } .framer-2mXab.framer-hybww > *, .framer-2mXab .framer-1xvlrip > *, .framer-2mXab .framer-nwsih7 > *, .framer-2mXab .framer-1ogeldy > *, .framer-2mXab .framer-1r16q9v > *, .framer-2mXab .framer-tc1s2r > *, .framer-2mXab .framer-1h14c8d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2mXab.framer-hybww > :first-child, .framer-2mXab .framer-1xvlrip > :first-child, .framer-2mXab .framer-nwsih7 > :first-child, .framer-2mXab .framer-1ogeldy > :first-child, .framer-2mXab .framer-1r16q9v > :first-child, .framer-2mXab .framer-tc1s2r > :first-child, .framer-2mXab .framer-1h14c8d > :first-child { margin-left: 0px; } .framer-2mXab.framer-hybww > :last-child, .framer-2mXab .framer-1xvlrip > :last-child, .framer-2mXab .framer-nwsih7 > :last-child, .framer-2mXab .framer-1ogeldy > :last-child, .framer-2mXab .framer-1r16q9v > :last-child, .framer-2mXab .framer-tc1s2r > :last-child, .framer-2mXab .framer-1h14c8d > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xg5wp0ZzY\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQXfnEaeE8=withCSS(Component,css,\"framer-2mXab\");export default FramerQXfnEaeE8;FramerQXfnEaeE8.displayName=\"Trusted by\";FramerQXfnEaeE8.defaultProps={height:80,width:1200};addPropertyControls(FramerQXfnEaeE8,{xg5wp0ZzY:{defaultValue:\"rgba(0, 0, 0, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerQXfnEaeE8,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQXfnEaeE8\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"80\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"xg5wp0ZzY\\\":\\\"background\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QXfnEaeE8.map"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "f", "l", "g", "glide", "r", "h", "u", "d", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "xg5wp0ZzY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "SVG", "Image2", "css", "FramerQXfnEaeE8", "withCSS", "QXfnEaeE8_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts"]
}
