{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.18.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/AmB7w4c6ub5E5ruShIkc/AuUPtUjjuKdKeXO5E9Ld/SyLbeszIi.js"],
  "sourcesContent": ["function addUniqueItem(t,e){t.indexOf(e)===-1&&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=>typeof t===\"number\";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=>typeof t===\"object\"&&Boolean(t.createAnimation);const isFunction=t=>typeof t===\"function\";const isString=t=>typeof t===\"string\";const e={ms:t=>t*1e3,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//# sourceMappingURL=index.es.js.map\n", "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 (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-AHXNP\";const variantClassNames={ffKsxcVXC:\"framer-v-18m8rqm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?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=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ffKsxcVXC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-18m8rqm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ffKsxcVXC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nqn12x-container\",layoutDependency:layoutDependency,layoutId:\"ZmY4sWCBi-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:.7,id:\"ZmY4sWCBi\",layoutId:\"ZmY4sWCBi\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"171px\",src:\"https://framerusercontent.com/images/oEUwiqE68cQ9IzbYsShi0VQtmKE.png\",srcSet:\"https://framerusercontent.com/images/oEUwiqE68cQ9IzbYsShi0VQtmKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oEUwiqE68cQ9IzbYsShi0VQtmKE.png 684w\"},className:\"framer-wu7psc\",\"data-framer-name\":\"EagleEye\",layoutDependency:layoutDependency,layoutId:\"sy0uIpH3Q\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8je12w\",\"data-framer-name\":\"boa\",layoutDependency:layoutDependency,layoutId:\"jACdHw43N\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16dt00i\",\"data-framer-name\":\"Boa_Logo-01\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:65,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"OpPSv0Iwo\",svg:'<svg width=\"65\" height=\"65\" viewBox=\"0 0 65 65\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2040_9834)\">\\n<path d=\"M64.4629 0.416016H0V64.8892H64.4629V0.416016Z\" fill=\"#50C7FF\"/>\\n<path d=\"M16.458 27.9872C14.5428 27.9872 12.7811 28.7349 11.5931 30.0561V22.4873H8.5V35.3922C8.5 39.6938 11.6955 42.8074 16.0893 42.8074C20.4831 42.8074 23.6786 39.6528 23.6786 35.3102C23.6786 31.0701 20.6367 27.9872 16.458 27.9872ZM20.4831 35.4024C20.4831 38.1165 18.6191 40.0932 16.0483 40.0932C13.4674 40.0932 11.5931 38.1165 11.5931 35.4024C11.5931 32.6883 13.4776 30.7116 16.0586 30.7116C18.6293 30.7116 20.4831 32.6883 20.4831 35.4024Z\" fill=\"white\"/>\\n<path d=\"M32.2421 27.9873C27.8073 27.9873 24.6016 31.1111 24.6016 35.4025C24.6016 39.6939 27.8175 42.8177 32.2421 42.8177C36.6564 42.8177 39.8621 39.6939 39.8621 35.4025C39.8621 31.1111 36.6564 27.9873 32.2421 27.9873ZM36.6768 35.4025C36.6768 38.1166 34.8026 40.0933 32.2216 40.0933C29.6509 40.0933 27.7868 38.1166 27.7868 35.4025C27.7868 32.6884 29.6509 30.7117 32.2216 30.7117C34.8026 30.7117 36.6768 32.6884 36.6768 35.4025Z\" fill=\"white\"/>\\n<path d=\"M48.3744 27.9873C43.9806 27.9873 40.7852 31.1111 40.7852 35.4025C40.7852 39.6939 43.7144 42.8177 47.7394 42.8177C49.7571 42.8177 51.6519 42.0495 52.8604 40.7386V42.5616H55.9637V35.4025C55.9637 31.1111 52.7785 27.9873 48.3744 27.9873ZM52.8707 35.4025C52.8707 38.1166 50.9964 40.0933 48.4154 40.0933C45.8447 40.0933 43.9806 38.1166 43.9806 35.4025C43.9806 32.6884 45.8447 30.7117 48.4154 30.7117C50.9862 30.7117 52.8707 32.6884 52.8707 35.4025Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2040_9834\">\\n<rect width=\"64.5244\" height=\"64.5244\" fill=\"white\" transform=\"translate(0 0.416016)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"38px\",src:\"https://framerusercontent.com/images/vl3yaDPRTpF5zPxsoWdU6nOXiQ8.png\",srcSet:\"https://framerusercontent.com/images/vl3yaDPRTpF5zPxsoWdU6nOXiQ8.png?scale-down-to=1024 690w,https://framerusercontent.com/images/vl3yaDPRTpF5zPxsoWdU6nOXiQ8.png 1200w\"},className:\"framer-12s6d6d\",\"data-framer-name\":\"WWF\",layoutDependency:layoutDependency,layoutId:\"Wotp1qDDz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"120px\",src:\"https://framerusercontent.com/images/ISUyTyRNLnnuYiD2NqtqE9TbVU.png\",srcSet:\"https://framerusercontent.com/images/ISUyTyRNLnnuYiD2NqtqE9TbVU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ISUyTyRNLnnuYiD2NqtqE9TbVU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ISUyTyRNLnnuYiD2NqtqE9TbVU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ISUyTyRNLnnuYiD2NqtqE9TbVU.png 2560w\"},className:\"framer-1dvmre8\",\"data-framer-name\":\"BCG\",layoutDependency:layoutDependency,layoutId:\"nHnvrjHya\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cb1jbj\",\"data-framer-name\":\"cub\",layoutDependency:layoutDependency,layoutId:\"YS7dwuhdw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xl1nnm\",\"data-framer-name\":\"CUB_Logotype (1) 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:959,intrinsicWidth:2946,layoutDependency:layoutDependency,layoutId:\"EwDD9kS2V\",svg:'<svg width=\"2946\" height=\"959\" viewBox=\"0 0 2946 959\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1892_3178)\">\\n<path d=\"M1687.88 575.215C1688.49 606.002 1683.29 636.627 1672.52 665.478C1663.26 690.051 1648.81 712.339 1630.16 730.826C1612 748.526 1590.18 762.04 1566.24 770.421C1514.41 788.094 1458.18 788.094 1406.35 770.421C1382.41 762.04 1360.6 748.526 1342.43 730.826C1323.78 712.339 1309.33 690.051 1300.07 665.478C1289.34 636.621 1284.16 605.996 1284.8 575.215V10.7373H1097.15V561.29C1096.3 617.757 1106.21 673.868 1126.34 726.632C1144.37 773.584 1172.07 816.224 1207.63 851.792C1242.91 886.348 1285.07 913.099 1331.36 930.31C1380.93 948.698 1433.43 957.88 1486.3 957.406C1538.95 957.919 1591.24 948.734 1640.56 930.31C1686.6 912.98 1728.51 886.238 1763.62 851.792C1799.23 816.126 1827.12 773.525 1845.58 726.632C1866.14 673.969 1876.28 617.817 1875.44 561.29V10.7373H1687.88V575.215Z\" fill=\"#1F2937\"/>\\n<path d=\"M734.005 61.657C660.448 19.9174 577.06 -1.37174 492.497 -0.000177372C426.241 -0.495818 360.518 11.8684 298.971 36.407C241.124 59.4397 188.383 93.6467 143.763 137.073C99.1425 180.499 63.5176 232.293 38.9241 289.495C13.5156 349.604 0.423828 414.199 0.423828 479.458C0.423828 544.717 13.5156 609.312 38.9241 669.421C63.7144 726.361 99.1961 778.019 143.446 821.592C188.24 864.994 241.106 899.193 299.055 922.257C360.541 946.939 426.243 959.419 492.497 959C577.181 960.406 660.694 939.086 734.341 897.259C803.789 856.954 861.417 799.094 901.442 729.484L758.164 629.239C730.167 675.525 691.91 714.759 646.344 743.913C599.984 771.904 546.641 786.185 492.497 785.102C451.718 785.509 411.262 777.84 373.462 762.536C338.193 748.053 306.124 726.759 279.09 699.872C251.967 672.483 230.653 639.898 216.427 604.073C201.038 564.833 193.375 522.989 193.862 480.842C193.425 438.481 201.084 396.427 216.427 356.94C230.637 320.71 251.942 287.683 279.09 259.799C305.986 232.555 338.077 210.99 373.462 196.38C411.268 181.102 451.724 173.461 492.497 173.898C546.72 172.663 600.182 186.829 646.68 214.751C692.11 243.962 730.247 283.189 758.164 329.425L901.442 229.264C861.408 159.661 803.782 101.803 734.341 61.4893\" fill=\"#1F2937\"/>\\n<path d=\"M2813.54 444.687C2896.76 398.213 2912.03 305.266 2912.03 253.759C2912.03 126.586 2820.51 12.499 2643 12.499H2119.89V946.5H2644.09C2685.86 946.926 2727.38 939.968 2766.73 925.948C2801.91 913.664 2834.32 894.565 2862.11 869.744C2888.49 845.614 2909.5 816.203 2923.77 783.424C2939.15 748.454 2946.74 710.554 2946 672.357C2943.15 486.63 2813.54 445.106 2813.54 445.106V444.687ZM2301.25 176.667H2641.16C2669.5 176.667 2696.68 187.926 2716.73 207.969C2736.77 228.011 2748.03 255.195 2748.03 283.539C2748.03 311.883 2736.77 339.067 2716.73 359.109C2696.68 379.152 2669.5 390.411 2641.16 390.411H2301.25V176.667ZM2644.09 782.417H2301.25V547.532H2644.09C2675.24 547.532 2705.11 559.906 2727.14 581.93C2749.16 603.955 2761.53 633.827 2761.53 664.975C2761.53 696.122 2749.16 725.994 2727.14 748.019C2705.11 770.044 2675.24 782.417 2644.09 782.417Z\" fill=\"#1F2937\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1892_3178\">\\n<rect width=\"2946\" height=\"959\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"211px\",src:\"https://framerusercontent.com/images/nHQAnNvpeE4dT5w5I6ibIxYOMJ0.png\",srcSet:\"https://framerusercontent.com/images/nHQAnNvpeE4dT5w5I6ibIxYOMJ0.png?scale-down-to=512 512w,https://framerusercontent.com/images/nHQAnNvpeE4dT5w5I6ibIxYOMJ0.png 600w\"},className:\"framer-1iipxfl\",\"data-framer-name\":\"LYP\",layoutDependency:layoutDependency,layoutId:\"GE5d5hdwM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"120px\",src:\"https://framerusercontent.com/images/m0oplb4Z6T5Hldaf6KkVtyP4r4.png\",srcSet:\"https://framerusercontent.com/images/m0oplb4Z6T5Hldaf6KkVtyP4r4.png?scale-down-to=512 512w,https://framerusercontent.com/images/m0oplb4Z6T5Hldaf6KkVtyP4r4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0oplb4Z6T5Hldaf6KkVtyP4r4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0oplb4Z6T5Hldaf6KkVtyP4r4.png 2560w\"},className:\"framer-19lvpef\",\"data-framer-name\":\"Sanofi\",layoutDependency:layoutDependency,layoutId:\"jZsAJje5N\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sabr3q\",\"data-framer-name\":\"simplefood\",layoutDependency:layoutDependency,layoutId:\"UjMoFnUEX\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pe3vwp\",\"data-framer-name\":\"SimpleFood\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:133,layoutDependency:layoutDependency,layoutId:\"DxHNCOCUU\",svg:'<svg width=\"133\" height=\"32\" viewBox=\"0 0 133 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2040_9848)\">\\n<mask id=\"mask0_2040_9848\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"133\" height=\"32\">\\n<path d=\"M132.147 0.0732422H0.292969V31.2834H132.147V0.0732422Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2040_9848)\">\\n<path d=\"M2.91016 9.96788C3.69586 9.1276 4.49374 8.27518 5.28251 7.41722C7.23153 5.30161 9.19785 3.20254 11.1154 1.05379C12.3508 -0.329758 14.0034 -0.175173 15.1302 1.05379C18.5938 4.8404 22.0649 8.61858 25.5434 12.3883C25.6205 12.4711 25.6916 12.5605 25.786 12.6699C25.6662 12.7339 25.5718 12.7891 25.4743 12.8355C23.1395 13.9183 20.8048 15.0012 18.47 16.084C17.4741 16.5433 16.5321 16.4981 15.6165 15.7925C14.3364 14.8064 13.0238 13.869 11.7265 12.9094C11.1997 12.5197 10.9916 12.0029 11.1296 11.4387C11.2809 10.8214 11.695 10.4571 12.3549 10.4449C13.5822 10.4162 14.6338 10.9407 15.588 11.7346C16.1606 12.2116 16.3585 12.1763 16.7483 11.5237C17.0955 10.9385 17.4467 10.3555 17.7898 9.76693C18.0152 9.37826 17.9868 9.04368 17.6406 8.78862C15.7627 7.40285 13.7425 6.58024 11.4291 7.08155C10.1947 7.34878 9.20189 8.08747 8.33904 9.06909C7.56451 9.95244 6.67526 10.6536 5.59211 11.018C4.47345 11.389 3.52531 11.0213 2.91016 9.96788Z\" fill=\"#00C389\"/>\\n<path d=\"M0.292969 18.6744L2.32322 17.7402C4.08954 16.9209 5.85584 16.102 7.62215 15.2834C8.61902 14.823 9.557 14.8737 10.4726 15.5793C11.7517 16.5665 13.0643 17.5028 14.3616 18.4624C14.9077 18.8654 15.1067 19.4009 14.9392 20.0082C14.7778 20.5857 14.2986 20.9468 13.6601 20.9401C12.4491 20.9258 11.4096 20.4079 10.4686 19.6151C9.93969 19.1735 9.71433 19.2132 9.35192 19.8238C8.98955 20.4344 8.64134 21.0141 8.29416 21.6126C8.08405 21.9737 8.09116 22.3082 8.40483 22.5401C10.5224 24.1191 12.7851 24.9892 15.3635 24.065C16.3066 23.7271 17.0659 23.0713 17.7541 22.2983C18.5896 21.3653 19.5346 20.6012 20.7264 20.2931C21.7415 20.0303 22.5485 20.398 23.1627 21.3531C23.0916 21.4371 23.0226 21.5254 22.9475 21.6071C20.2767 24.5188 17.5897 27.4129 14.9392 30.3467C13.7444 31.6718 12.0653 31.526 10.9924 30.3533C7.50644 26.5395 4.01272 22.7352 0.511221 18.9405C0.443207 18.8665 0.383315 18.7848 0.292969 18.6744Z\" fill=\"#00C389\"/>\\n<path d=\"M50.3477 14.9514C50.3477 12.5575 50.3477 10.1651 50.3477 7.77418C50.3477 7.16578 50.4158 7.09291 50.9732 7.0918C51.6496 7.0918 52.3302 7.0918 53.0144 7.0918C53.5322 7.0918 53.6163 7.19119 53.6163 7.80842C53.6163 11.1629 53.6163 14.5175 53.6163 17.872C53.6163 19.2897 53.6163 20.7072 53.6163 22.1242C53.6163 22.7448 53.529 22.8364 52.9615 22.8375C52.3099 22.8375 51.6586 22.8375 51.0076 22.8375C50.4098 22.8375 50.3477 22.7646 50.3477 22.09V14.9514Z\" fill=\"#00C389\"/>\\n<path d=\"M126.065 16.4847V19.4958C126.199 19.5036 126.323 19.5146 126.447 19.5146H131.488C132.081 19.5146 132.143 19.5842 132.144 20.2047C132.144 20.8982 132.131 21.5916 132.144 22.2839C132.154 22.6671 132.017 22.836 131.666 22.836C128.886 22.836 126.105 22.836 123.324 22.836C122.912 22.836 122.816 22.6008 122.816 22.2044C122.822 17.3681 122.822 12.5314 122.816 7.6943C122.816 7.25261 122.965 7.07373 123.378 7.07924C124.739 7.09471 126.1 7.07924 127.463 7.07924C128.825 7.07924 130.215 7.0892 131.59 7.07924C132.003 7.07373 132.161 7.23605 132.144 7.68987C132.119 8.3822 132.144 9.07564 132.137 9.76904C132.137 10.3035 132.056 10.3929 131.556 10.394C129.876 10.394 128.196 10.394 126.516 10.394H126.068V13.1424C126.18 13.1501 126.302 13.1644 126.425 13.1655C127.787 13.1655 129.149 13.1655 130.51 13.1655C131.037 13.1655 131.152 13.2892 131.153 13.8512C131.153 14.4968 131.153 15.1428 131.153 15.7891C131.153 16.3809 131.064 16.4792 130.528 16.4803C129.065 16.4858 127.587 16.4847 126.065 16.4847Z\" fill=\"#00C389\"/>\\n<path d=\"M109.3 19.5158H111.976C112.656 19.5158 113.336 19.5158 114.016 19.5158C114.506 19.5158 114.608 19.6262 114.61 20.1452C114.61 20.853 114.603 21.5619 114.61 22.2708C114.616 22.6738 114.453 22.8372 114.088 22.8361C111.585 22.831 109.081 22.831 106.577 22.8361C106.214 22.8361 106.051 22.6738 106.051 22.2708C106.056 17.3903 106.056 12.5098 106.051 7.62925C106.051 7.21849 106.226 7.07715 106.586 7.07715C107.296 7.0904 108.007 7.07715 108.717 7.07715C109.218 7.07715 109.297 7.16438 109.297 7.71205C109.297 11.4597 109.297 15.2069 109.297 18.9538L109.3 19.5158Z\" fill=\"#00C389\"/>\\n<path d=\"M90.9555 17.1219V22.1327C90.9555 22.7566 90.8845 22.8328 90.2997 22.8339C89.6197 22.8339 88.9385 22.8339 88.2585 22.8339C87.8999 22.8339 87.7295 22.6782 87.7305 22.2719C87.7346 17.3892 87.7346 12.5068 87.7305 7.62483C87.7305 7.25161 87.8747 7.08043 88.2248 7.08155C89.9507 7.08929 91.6711 7.05286 93.3938 7.09922C95.6131 7.15773 97.5915 9.25349 97.7265 11.6198C97.8778 14.2632 96.2666 16.6007 93.9907 17.0237C93.6626 17.0813 93.3311 17.1119 92.9989 17.1153C92.3361 17.1308 91.6711 17.1219 90.9555 17.1219ZM90.9666 13.8215H91.3504C91.9157 13.8215 92.4814 13.8381 93.0448 13.8138C93.4241 13.7919 93.7837 13.6222 94.0572 13.3357C94.3311 13.0493 94.5012 12.6651 94.5359 12.2536C94.6162 11.4056 94.1643 10.5973 93.3684 10.4802C92.5728 10.3632 91.7708 10.4526 90.9666 10.4526V13.8215Z\" fill=\"#00C389\"/>\\n<path d=\"M36.6718 6.89325C38.2697 6.82701 39.6815 7.4851 41.0013 8.46561C41.3179 8.70303 41.3462 9.00115 41.1657 9.32026C40.8485 9.88265 40.5144 10.4347 40.1637 10.9765C39.8857 11.405 39.6745 11.395 39.2439 11.1576C38.4907 10.7413 37.7133 10.377 36.9428 9.99602C36.8603 9.965 36.774 9.9486 36.6871 9.94746C36.0463 9.88892 35.4587 10.208 35.2657 10.7148C35.073 11.2217 35.2424 11.8566 35.7988 12.2762C36.3062 12.6582 36.8769 12.9387 37.4228 13.2512C38.1852 13.6928 38.9964 14.0572 39.7028 14.5872C41.1577 15.676 41.8794 17.2174 41.5504 19.1453C41.2214 21.0732 40.0672 22.3 38.356 22.7991C36.2485 23.413 34.2538 23.0199 32.4518 21.6629C31.7707 21.1494 31.7819 21.0832 32.1919 20.2926C32.4123 19.8697 32.6315 19.4445 32.8547 19.0228C33.1006 18.5579 33.3624 18.4828 33.7767 18.7699C34.5634 19.3109 35.3724 19.7846 36.3144 19.9072C37.031 20.0011 37.6585 19.7007 37.9063 19.1343C38.1537 18.5678 38.02 17.8093 37.4473 17.3179C37.0027 16.9325 36.4676 16.6697 35.9714 16.355C35.1144 15.8118 34.1726 15.3823 33.4152 14.7076C31.588 13.0778 31.3657 10.4289 32.7939 8.58268C33.672 7.44424 34.9319 6.88994 36.6718 6.89325Z\" fill=\"#00C389\"/>\\n<path d=\"M70.6735 16.8275C71.5446 15.0608 72.3768 13.3791 73.2112 11.6931C73.9361 10.2256 74.6782 8.76914 75.3725 7.28513C75.5878 6.82468 75.9056 6.87548 76.2445 6.90309C76.5837 6.93067 76.5582 7.27077 76.5967 7.51481C77.35 12.3526 78.099 17.1908 78.8443 22.0293C78.9459 22.6863 78.8443 22.8321 78.2475 22.8343C77.5662 22.8343 76.8862 22.8343 76.205 22.8343C75.8597 22.8343 75.682 22.6996 75.6304 22.301C75.3584 20.182 75.067 18.0664 74.7817 15.9486C74.7677 15.8381 74.7501 15.7388 74.7157 15.5069C74.5928 15.741 74.5129 15.8746 74.4498 16.0137C73.4271 18.1617 72.4061 20.3101 71.3863 22.4589C71.2299 22.7901 71.0888 23.0772 70.6633 23.0783C70.2381 23.0794 70.1072 22.7614 69.9527 22.4401L66.872 16.006C66.807 15.8702 66.7379 15.7366 66.614 15.4881C66.4873 16.4157 66.3774 17.214 66.2761 18.0145C66.0923 19.4323 65.9086 20.849 65.7341 22.2689C65.6853 22.662 65.5216 22.8508 65.1369 22.8409C64.4133 22.821 63.6894 22.8409 62.9658 22.8321C62.5403 22.8255 62.4135 22.6554 62.4826 22.2137C63.2397 17.2979 64.0031 12.3839 64.7725 7.47172C64.805 7.26634 64.9604 6.96933 65.1108 6.92628C65.4356 6.83131 65.7583 6.84456 65.9764 7.29506C67.4466 10.3227 68.9438 13.335 70.433 16.3494C70.5009 16.4863 70.5709 16.6232 70.6735 16.8275Z\" fill=\"#00C389\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2040_9848\">\\n<rect width=\"131.854\" height=\"31.2102\" fill=\"white\" transform=\"translate(0.292969 0.0732422)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9eu5rr\",layoutDependency:layoutDependency,layoutId:\"AXzMl9M17\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1em0f1a\",\"data-framer-name\":\"Prolete\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"D7CLd11no\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45 45\"><g transform=\"translate(0.148 0.586)\" id=\"ss10355343451_1\"><path d=\"M 0 44.185 L 0 0 L 44.185 0 L 44.185 44.185 Z\" fill=\"transparent\"></path><g><defs><linearGradient id=\"idss10355343451_3g-1649211548\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(233,41,5)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(170,0,21)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 20.439 24.411 C 19.642 27.842 18.895 31.091 18.127 34.336 C 17.736 35.989 16.653 36.818 15.313 36.541 C 13.846 36.239 13.105 34.991 13.476 33.343 C 14.414 29.185 15.418 25.041 16.305 20.873 C 16.518 19.873 16.946 19.643 17.886 19.652 C 21.968 19.691 26.056 19.703 30.14 19.636 C 33.187 19.588 35.506 18.197 36.783 15.395 C 38.007 12.708 37.628 10.129 35.754 7.843 C 34.247 6.006 32.228 5.219 29.868 5.218 C 21.374 5.214 12.88 5.205 4.385 5.192 C 3.152 5.192 2.314 4.635 1.994 3.482 C 1.693 2.399 2.019 1.413 3.036 0.85 C 3.491 0.598 4.094 0.523 4.631 0.522 C 13.31 0.496 21.99 0.467 30.67 0.497 C 36.718 0.518 41.663 5.326 42.258 11.663 C 42.788 17.315 38.578 23.128 32.888 24.072 C 29.99 24.553 26.974 24.332 24.011 24.408 C 22.86 24.435 21.705 24.411 20.439 24.411 Z\" fill=\"url(#idss10355343451_3g-1649211548)\"></path></g><g><defs><linearGradient id=\"idss10355343451_4g-1649211548\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(233,41,5)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(170,0,21)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 9.05 9.997 L 19.648 9.997 C 23.176 9.997 26.704 9.958 30.23 10.004 C 32.531 10.035 33.856 12.096 32.549 13.716 C 32.014 14.379 30.82 14.812 29.915 14.829 C 24.766 14.927 19.612 14.911 14.461 14.834 C 13.18 14.815 12.635 15.105 12.337 16.467 C 10.508 24.842 8.556 33.19 6.635 41.544 C 6.261 43.174 5.219 43.914 3.754 43.648 C 2.403 43.403 1.636 42.147 2.001 40.53 C 4.234 30.631 6.487 20.736 8.759 10.847 C 8.819 10.584 8.933 10.334 9.05 9.997 Z\" fill=\"url(#idss10355343451_4g-1649211548)\"></path></g></g></svg>',svgContentId:10355343451,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n7hjmn\",\"data-framer-name\":\"talvr\",layoutDependency:layoutDependency,layoutId:\"vn9LiCIDD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15ob9ty\",\"data-framer-name\":\"Talvr\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:121,layoutDependency:layoutDependency,layoutId:\"HlK_GFpRB\",svg:'<svg width=\"121\" height=\"40\" viewBox=\"0 0 121 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2040_9864)\">\\n<mask id=\"mask0_2040_9864\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"29\" height=\"40\">\\n<path d=\"M28.39 0.0410156H0.335938V39.3167H28.39V0.0410156Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_2040_9864)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.277 9.32257V9.90588C28.277 11.4449 26.6294 12.4064 25.3115 11.6373L24.3224 11.0598L20.3685 8.75234L16.4148 6.4438L15.4257 5.86631C14.8138 5.50955 14.0604 5.50955 13.4483 5.86631L12.4598 6.44345L8.50602 8.75161L4.55148 11.0601L3.56312 11.6373C2.24529 12.4068 0.597656 11.4453 0.597656 9.90625V9.32257C0.597656 8.60833 0.974587 7.94865 1.58602 7.59117L4.55148 5.86013L8.50602 3.55158L12.4598 1.24304L13.4483 0.666276C14.0604 0.309158 14.8138 0.309158 15.4257 0.666276L16.4148 1.24377L20.3685 3.55195L24.3224 5.85976L27.2885 7.59117C27.9 7.94865 28.277 8.60833 28.277 9.32257Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.58602 17.9914C2.9042 17.2222 4.55148 18.1837 4.55148 19.7228V32.4052C4.55148 33.9439 2.9042 34.9058 1.58602 34.1366C0.974588 33.7791 0.597656 33.1195 0.597656 32.4052V19.7228C0.597656 19.0085 0.974588 18.3485 1.58602 17.9914Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4597 15.1054V37.022C12.4597 38.5607 10.8124 39.5225 9.49423 38.753C8.88279 38.3959 8.50586 37.7359 8.50586 37.022V15.1054C8.50586 14.3911 8.88279 13.7315 9.49423 13.3744C10.8124 12.6048 12.4597 13.5667 12.4597 15.1054Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.3678 15.1065V37.022C20.3678 37.7363 19.991 38.3959 19.3795 38.7527C18.0613 39.5226 16.4141 38.5607 16.4141 37.022V15.1065C16.4141 13.5679 18.0613 12.606 19.3795 13.3751C19.991 13.7326 20.3678 14.3923 20.3678 15.1065Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.2769 19.723V32.4055C28.2769 33.1197 27.8999 33.7794 27.2885 34.1369C25.9707 34.9064 24.3223 33.9445 24.3223 32.4058V19.7227C24.3223 18.1841 25.97 17.2222 27.2878 17.9913C27.8992 18.3488 28.2769 19.0089 28.2769 19.723Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.58602 17.9914C2.9042 17.2222 4.55148 18.1837 4.55148 19.7228V32.4052C4.55148 33.9439 2.9042 34.9058 1.58602 34.1366C0.974588 33.7791 0.597656 33.1195 0.597656 32.4052V19.7228C0.597656 19.0085 0.974588 18.3485 1.58602 17.9914Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4597 15.1054V37.022C12.4597 38.5607 10.8124 39.5225 9.49423 38.753C8.88279 38.3959 8.50586 37.7359 8.50586 37.022V15.1054C8.50586 14.3911 8.88279 13.7315 9.49423 13.3744C10.8124 12.6048 12.4597 13.5667 12.4597 15.1054Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.3678 15.1065V37.022C20.3678 37.7363 19.991 38.3959 19.3795 38.7527C18.0613 39.5226 16.4141 38.5607 16.4141 37.022V15.1065C16.4141 13.5679 18.0613 12.606 19.3795 13.3751C19.991 13.7326 20.3678 14.3923 20.3678 15.1065Z\" fill=\"#FC44DF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.2769 19.723V32.4055C28.2769 33.1197 27.8999 33.7794 27.2885 34.1369C25.9707 34.9064 24.3223 33.9445 24.3223 32.4058V19.7227C24.3223 18.1841 25.97 17.2222 27.2878 17.9913C27.8992 18.3488 28.2769 19.0089 28.2769 19.723Z\" fill=\"#FC44DF\"/>\\n</g>\\n<path d=\"M52.897 24.6355C50.9519 24.6355 49.8747 23.5582 49.8747 21.6131V14.3415H54.6626V11.4688H49.8447V7.69829H49.2762L43.6504 13.6832V14.3415H46.5531V21.8824C46.5531 25.4434 48.7375 27.6279 52.2686 27.6279H54.7523V24.6355H52.897ZM71.3393 11.4688L70.9503 13.5036C69.484 11.9775 67.4192 11.0797 65.0253 11.0797C60.2074 11.0797 56.6165 14.7006 56.6165 19.5483C56.6165 24.3961 60.2074 28.0468 65.0253 28.0468C67.3893 28.0468 69.4241 27.1491 70.8904 25.6828L71.2196 27.6279H73.8829V11.4688H71.3393ZM65.2946 24.8449C62.2423 24.8449 59.998 22.5707 59.998 19.5483C59.998 16.526 62.2423 14.2517 65.2946 14.2517C68.3469 14.2517 70.5613 16.496 70.5613 19.5483C70.5613 22.6006 68.3469 24.8449 65.2946 24.8449ZM78.6495 27.6279H81.9711V5.69336H78.6495V27.6279ZM97.7284 11.4688L92.9998 23.4684L88.1521 11.4688H84.651L91.4737 27.6279H94.4965L101.14 11.4688H97.7284ZM111.707 11.379C109.492 11.379 107.906 12.157 106.739 13.6832L106.201 11.4688H103.956V27.6279H107.278V19.0396C107.278 16.107 108.625 14.521 111.378 14.521H113.143V11.379H111.707Z\" fill=\"#00234B\"/>\\n<path d=\"M115.316 27.6275H118.937V23.8271H115.316V27.6275Z\" fill=\"#FC44DF\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2040_9864\">\\n<rect width=\"120.633\" height=\"39.2757\" fill=\"white\" transform=\"translate(0.335938 0.0410156)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/V1VMGvoJHmf72bUb2HGlW4k0Ro.png\"},className:\"framer-1yg5lh3\",\"data-framer-name\":\"NSWgov\",layoutDependency:layoutDependency,layoutId:\"puPDYBvuo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/WqLEBRbYAnEBwZaOHLWQRYGW3Q.png\"},className:\"framer-1ulgpgv\",\"data-framer-name\":\"ShelfTrend\",layoutDependency:layoutDependency,layoutId:\"Pry0fcMLm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/zWDZ4guCVoexbgGYTebHV4GAk1U.png\"},className:\"framer-1gvlswv\",\"data-framer-name\":\"cofinet\",layoutDependency:layoutDependency,layoutId:\"EeqV1kn7b\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/5XhpJLAoaw4mT07a9zbwWcQDYw.png\"},className:\"framer-1t69ugp\",\"data-framer-name\":\"hydroscan\",layoutDependency:layoutDependency,layoutId:\"Q3HkGlvHp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/CnNlvurhLoPVVmj93YJcjJO1ouE.png\"},className:\"framer-1km7vgo\",\"data-framer-name\":\"johncockerill\",layoutDependency:layoutDependency,layoutId:\"vn7JRem2Z\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"252px\",src:\"https://framerusercontent.com/images/Jy0y7id8AnKzdt7QKaYBOTscPvg.png\",srcSet:\"https://framerusercontent.com/images/Jy0y7id8AnKzdt7QKaYBOTscPvg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jy0y7id8AnKzdt7QKaYBOTscPvg.png 800w\"},className:\"framer-18ihrtu\",\"data-framer-name\":\"LyntonSurveys\",layoutDependency:layoutDependency,layoutId:\"IJNGhgn43\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d8rfrr\",\"data-framer-name\":\"scg\",layoutDependency:layoutDependency,layoutId:\"VANDPnxa7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gjp4d1\",\"data-framer-name\":\"Logo-scg-brown\",fill:\"black\",intrinsicHeight:114,intrinsicWidth:82,layoutDependency:layoutDependency,layoutId:\"sMWpdcqvC\",svg:'<svg data-name=\"Logo SCG - blanc\" xmlns=\"http://www.w3.org/2000/svg\" width=\"81.999\" height=\"113.693\"><path data-name=\"Logo SCG - blanc\" d=\"M0 56.84C0 25.447 18.354 0 40.991 0S82 25.447 82 56.84s-18.358 56.853-41.008 56.853S0 88.22 0 56.84zm4.215-.04c0 30 16.466 54.315 36.776 54.315 20.327 0 36.793-24.315 36.793-54.315S61.318 2.475 40.991 2.475C20.681 2.475 4.215 26.8 4.215 56.8zm23.491 41.8c-3.967-3.458-5.62-9.44-5.4-14.229a16.657 16.657 0 0 1 5.338-10.958 14.148 14.148 0 0 1 9.22-2.7l-.141 2.313a9.01 9.01 0 0 0-6.081 1.343c-2.174 1.381-5.039 8.122-4.676 11.144s1.021 6.568 3.6 9.229c2.925 3 6.021 5.1 11.415 4.726a16.137 16.137 0 0 0 10.8-5.3c2.8-3.185 5.338-6.468 6.132-12.139.649-4.7.436-11.616-1.691-15.51a48.948 48.948 0 0 0-5.953-8.346 11.155 11.155 0 0 0-1.943-2.114l.235-5.187s1.593 1.666 3.8 4.129c3.532 3.956 6.952 7.488 8.639 12.923 1.422 4.565 1.162 9.814.342 14.291a32.892 32.892 0 0 1-5.385 12.338c-2.058 2.961-5.735 7.14-11.94 8.384a19.049 19.049 0 0 1-16.3-4.341zm8.673-8.5c-2.648-1.467-1.085-5.622 1.068-6.181s3.544.137 3.98 1.157c.35.8.982.8 1.58-.287a5.125 5.125 0 0 0 1.068-4.1 9.391 9.391 0 0 0-3.506-6.045l.623-2.5a11.389 11.389 0 0 1 4.975 9.005c-.111 3.234-1.2 6.293-3.719 8.072a6.559 6.559 0 0 1-3.694 1.58 4.821 4.821 0 0 1-2.375-.701zM62.2 83.68l.243-2.649a4.484 4.484 0 0 0 2.191-.436c1.418-.945 1.678-2.437 2.438-3.78a12.276 12.276 0 0 0 1.783-4.615c.073-1.406-.226-4.292-.3-5.349-.06-1.045-.436-3.844-.508-5.025s-1.106-1.8-2-2.376c-.743-.484-2.524-1.491-3.557-2.064-.846-.473-2.485 1.5-3.4 2.575l-.376.46L56.527 58s1.046-1 1.234-1.2c1.379-1.579 2.733-2.463 3.617-2.313S64.427 55.97 66.263 57c.713.385 1.734 1.219 2.75 1.044.884-.149.982-1.455 1.866-2.076a1.665 1.665 0 0 1 2.5 1.455c-.034.883-.893 1.679-2 3.458-.359.547.073 4.664.209 6.305s.461 3.583 1.132 4.378c.525.647.9.8 1.221.8.585-.013.722 1.231.175 1.368-.372.112-.623.548-.9.858a43.67 43.67 0 0 0-2.588 3.855c-1.157 1.854-1.964 3.893-5.756 5.137a5.4 5.4 0 0 1-1.631.279 2.492 2.492 0 0 1-1.041-.181zm-9.779-4.539c-3.181-3.159-4.663-4.539-6.341-8.246s-3.322-7.251-3.732-12.475c-.632-7.687 1.119-11.492 2.609-15.312 1.559-4.166 4.74-7.5 6.841-9.8a12.155 12.155 0 0 1 7.243-3.732c1.392-.05 4.249.361 5.543 1.455.986.846 1.794 2.052 3 2.177 1.093.1 3.519.2 3.779 2.114.188 1.393-1.1 1.89-2.063 2.238s-2.34 1.182-2.592 2.115c-.235.92-.781 2.774.051 4.254 1.085 1.9 3.2 1.045 4.193 2.574a2.677 2.677 0 0 1-1.341 4.297c-2.127.609-4.9-1.356-5.808-3.557a29.934 29.934 0 0 1-1.072-3.06 14.232 14.232 0 0 1-2.818.125c-1.409-.088-2.938.086-4.181-1.468a2.946 2.946 0 0 1 2.225-4.826c2.08.125 2.912 3.059 3.942 3.32s1.332-.559 2.165-.995 1.17-1.939 1.4-3.793a3.653 3.653 0 0 0-2.3-4.117 7.977 7.977 0 0 0-5.966-.05c-2.191.82-4.057 3.1-5.376 4.764s-3.63 6.89-4.351 13.519c-.372 3.533.051 6.518.209 10.287a26.1 26.1 0 0 0 3 11.5 27.05 27.05 0 0 0 5.184 6.467 9.146 9.146 0 0 0 1.153.946l-.359 2.55a20.972 20.972 0 0 1-4.235-3.271zm-23.28 1.953-1.593-.063.337-1.206v-.013s1.089.138 1.431.138c3.241-.112 4.087-.8 6.03-2.426 2.391-1.99 2.66-4.739 2.451-7.4a17.373 17.373 0 0 0-1.657-5.671c-.26-.535 1.072-.958 1.6-1.194.508-.237 1.96 2.437 2.4 4.527.662 3.134-.094 7.426-1.875 9.64-1.655 2.049-3.735 3.674-8.492 3.674-.205 0-.414 0-.632-.006zm33.3-.063.013-.013v.013zM20.72 79.389c-3.446-1.729-7.055-6.193-8.447-9.005C10.8 67.461 9.4 61.491 9.19 56.044a45.147 45.147 0 0 1 2.024-13A27.986 27.986 0 0 1 19.289 31.5a21.337 21.337 0 0 1 4.975-3.259l.286 2.227a18.756 18.756 0 0 0-4.514 5.049C18.7 37.45 17.47 41.33 16.7 43.594a63.392 63.392 0 0 0-2.063 10.77 45.551 45.551 0 0 0 .26 10.784 38.961 38.961 0 0 0 3.194 8.894 11.27 11.27 0 0 0 2.84 3.307l-.038-.012a9.964 9.964 0 0 0 1.913 1.02l-.606 1.729zm9.326-22.649c-1.678-1.418-1.789-3.4-1.917-4.926a12.847 12.847 0 0 1 .649-4.726v.012a16.533 16.533 0 0 1 2.139-4.166l1.483 1.655A18.259 18.259 0 0 0 31.178 49a14.952 14.952 0 0 0 .214 2.96s2.387-.273 3.31.572.858 2.811 0 3.993a2.9 2.9 0 0 1-2.344.91 3.77 3.77 0 0 1-2.312-.694zm.235-16.169a25.455 25.455 0 0 1-4.65-9.8 18.547 18.547 0 0 1 .576-9.776c1.452-4.142 4.872-6.38 7.61-7.935 2.438-1.369 6.158-1.53 7.439-1.53a10.632 10.632 0 0 1 6.269 1.953 9.018 9.018 0 0 1 4.125 4.851 6.447 6.447 0 0 1-.794 5.472c-1.008 1.306-4.428 2.823-7.05 1.381-4.6-2.549-1.072-6.791 1.866-6.592a4.716 4.716 0 0 1 3.194 1.542s-.124-3.271-2.263-4.527a12.564 12.564 0 0 0-15.77 4.254c-2 2.7-2.4 6.641-2 10.6s3.544 8.072 5.449 9.714a92.566 92.566 0 0 0 8.208 5.87l-1.046 4.03a37.744 37.744 0 0 1-11.163-9.506zm3.536-2.251c.944-2.189 1.665-3.657 1.255-4.938a6.63 6.63 0 0 0-2.8-3.4A7.114 7.114 0 0 0 29.9 29.4l-.107-2.114a14.988 14.988 0 0 1 3.69.7 31.325 31.325 0 0 0 4.988 1.394 6.738 6.738 0 0 0 1.917-.336c.833-.236 1.529-.473 1.879-.2.41.323-1.93 2.338-2.938 3.93-.547.883-2.737 4.4-4.215 6.7-.003.003-1.297-1.104-1.297-1.153z\" style=\"fill:#876d4b\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1py77fy\",\"data-framer-name\":\"wfp\",layoutDependency:layoutDependency,layoutId:\"uR2KR13BP\",style:{backgroundColor:\"rgb(19, 120, 196)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ys3rdy\",\"data-framer-name\":\"Wfp-logo-vertical-white-en\",fill:\"rgba(89, 25, 25, 0)\",intrinsicHeight:86,intrinsicWidth:57,layoutDependency:layoutDependency,layoutId:\"d3JnWAWmY\",svg:'<svg width=\"57\" height=\"86\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.535 79.1h.513c.479 0 .838-.095 1.076-.285.238-.189.357-.464.357-.827 0-.365-.1-.635-.3-.809-.199-.175-.512-.262-.937-.262h-.709V79.1zm3.52-1.167c0 .791-.247 1.396-.742 1.815-.494.419-1.197.629-2.11.629h-.668v2.615H.975V75.64h2.349c.892 0 1.57.191 2.035.575.464.385.696.957.696 1.718zm3.892-.669c.208 0 .38.015.518.045l-.116 1.438a1.783 1.783 0 0 0-.453-.05c-.489 0-.87.126-1.144.377-.273.252-.409.604-.409 1.057v2.861H6.809v-5.623H7.97l.227.945h.075c.174-.314.41-.568.706-.761.297-.193.62-.289.969-.289m2.306 2.907c0 .557.091.978.274 1.263.182.284.48.426.892.426.409 0 .704-.141.883-.424.179-.284.269-.706.269-1.265 0-.557-.09-.974-.271-1.253-.181-.277-.478-.417-.89-.417-.41 0-.705.139-.886.415-.181.276-.271.695-.271 1.255zm3.887 0c0 .915-.241 1.631-.724 2.147-.483.517-1.155.775-2.017.775-.539 0-1.015-.118-1.428-.355a2.367 2.367 0 0 1-.951-1.018c-.221-.443-.331-.959-.331-1.549 0-.919.239-1.633.719-2.143.479-.509 1.153-.764 2.022-.764.54 0 1.016.117 1.428.352.412.235.729.572.95 1.011.222.439.332.954.332 1.544zm1.954-.961c0 .306.069.547.209.725.139.177.351.266.636.266.288 0 .499-.089.633-.266.134-.178.201-.419.201-.725 0-.677-.278-1.016-.834-1.016-.564 0-.845.339-.845 1.016zm-.558 4.577c0 .211.101.377.304.498.203.12.487.181.852.181.55 0 .981-.075 1.293-.227.312-.15.467-.356.467-.618 0-.212-.092-.357-.276-.437-.184-.081-.47-.121-.855-.121h-.795c-.282 0-.517.066-.706.199a.609.609 0 0 0-.284.525zm4.34-6.418v.78l-.881.226c.162.252.242.533.242.846 0 .603-.21 1.073-.631 1.41-.421.337-1.005.506-1.753.506l-.276-.016-.226-.025c-.158.121-.237.255-.237.402 0 .222.281.332.845.332h.955c.617 0 1.087.133 1.411.398.324.264.485.654.485 1.167 0 .657-.273 1.167-.822 1.529-.548.361-1.335.543-2.361.543-.785 0-1.384-.137-1.798-.41-.414-.274-.621-.657-.621-1.15 0-.339.105-.622.317-.849.211-.228.521-.391.93-.489a1.007 1.007 0 0 1-.412-.329.777.777 0 0 1-.176-.485c0-.215.062-.393.186-.535.124-.143.303-.283.538-.42a1.514 1.514 0 0 1-.702-.614 1.875 1.875 0 0 1-.259-.996c0-.614.199-1.087.599-1.423.399-.335.969-.503 1.71-.503.157 0 .344.014.56.043.217.028.355.049.415.062h1.962zm3.638-.105c.208 0 .38.015.518.045l-.116 1.438a1.78 1.78 0 0 0-.452-.05c-.489 0-.871.126-1.144.377-.274.252-.41.604-.41 1.057v2.861h-1.534v-5.623h1.161l.227.945h.075c.175-.314.41-.568.707-.761a1.74 1.74 0 0 1 .968-.289m4.103 3.123-.593.02c-.447.014-.779.094-.996.241-.218.148-.327.373-.327.674 0 .433.248.65.744.65.356 0 .64-.103.853-.308.213-.204.319-.476.319-.814v-.463zm.453 2.605-.297-.764h-.04c-.259.325-.524.55-.797.676-.274.126-.63.189-1.069.189-.54 0-.965-.155-1.275-.463-.31-.309-.465-.747-.465-1.318 0-.596.208-1.037.626-1.32.417-.283 1.047-.44 1.888-.471l.976-.029v-.247c0-.569-.291-.854-.875-.854-.449 0-.977.135-1.584.407l-.508-1.036a4.567 4.567 0 0 1 2.152-.508c.754 0 1.333.164 1.735.493.403.328.604.828.604 1.498v3.747H30.07zm7.197 0h-1.534v-3.284c0-.405-.068-.71-.203-.913-.136-.202-.35-.304-.642-.304-.392 0-.677.144-.855.433-.178.288-.266.763-.266 1.423v2.645h-1.534v-5.623h1.172l.206.72h.085c.151-.259.369-.46.654-.607.285-.145.612-.218.981-.218.841 0 1.412.275 1.71.825h.136c.15-.262.373-.465.666-.608.293-.145.624-.217.993-.217.637 0 1.12.164 1.446.49.327.327.49.852.49 1.572v3.666h-1.538v-3.284c0-.405-.068-.71-.204-.913-.136-.202-.349-.304-.641-.304-.376 0-.657.134-.843.403-.186.267-.279.693-.279 1.277v2.821m9.632 0h-1.534v-3.284c0-.405-.068-.71-.204-.913-.135-.202-.349-.304-.641-.304-.392 0-.677.144-.855.433-.178.288-.266.763-.266 1.423v2.645h-1.534v-5.623h1.171l.207.72h.085c.151-.259.369-.46.654-.607.285-.145.612-.218.981-.218.841 0 1.411.275 1.71.825h.135c.151-.262.373-.465.667-.608.293-.145.624-.217.993-.217.637 0 1.119.164 1.446.49.327.327.49.852.49 1.572v3.666h-1.538v-3.284c0-.405-.068-.71-.205-.913-.135-.202-.349-.304-.641-.304-.375 0-.656.134-.842.403-.186.267-.279.693-.279 1.277v2.821m6.96-4.637c-.325 0-.58.103-.764.309-.184.207-.29.499-.317.878h2.153c-.007-.379-.106-.671-.297-.878-.191-.206-.449-.309-.775-.309zm.217 4.738c-.906 0-1.613-.25-2.123-.749-.51-.5-.764-1.207-.764-2.123 0-.942.235-1.67.706-2.185.471-.515 1.123-.772 1.954-.772.795 0 1.414.226 1.856.678.442.454.664 1.079.664 1.876v.745h-3.626c.017.436.146.776.387 1.021.241.245.58.367 1.016.367.338 0 .659-.035.96-.105.302-.071.617-.183.946-.337v1.186a3.547 3.547 0 0 1-.86.3 5.376 5.376 0 0 1-1.116.098zM8.306 71.654H6.531l-.996-3.862c-.037-.138-.1-.422-.188-.853a9.897 9.897 0 0 1-.154-.867c-.019.181-.07.472-.15.872a19.25 19.25 0 0 1-.187.858l-.99 3.852h-1.77L.22 64.302h1.534l.94 4.012c.164.742.283 1.384.357 1.927.02-.191.066-.487.138-.887.073-.401.14-.712.203-.933l1.072-4.119h1.473l1.072 4.119c.047.184.105.466.176.845.071.379.123.704.161.975.034-.262.088-.588.161-.978.074-.391.14-.706.201-.949l.935-4.012h1.535l-1.872 7.352m3.586-2.821c0 .557.091.978.274 1.263.182.284.48.427.892.427.41 0 .705-.142.883-.425.18-.284.27-.705.27-1.265 0-.557-.091-.974-.272-1.253-.181-.277-.478-.417-.89-.417-.409 0-.704.139-.885.415-.182.276-.272.695-.272 1.255zm3.888 0c0 .915-.242 1.631-.724 2.147-.483.517-1.156.775-2.017.775-.54 0-1.016-.118-1.429-.355a2.365 2.365 0 0 1-.95-1.018c-.222-.442-.332-.959-.332-1.549 0-.919.239-1.633.719-2.143.479-.509 1.154-.764 2.022-.764.54 0 1.016.117 1.428.352.413.235.729.572.951 1.011.221.44.332.954.332 1.544zm4.211-2.907c.208 0 .38.015.518.045l-.116 1.438a1.783 1.783 0 0 0-.453-.05c-.489 0-.87.126-1.143.377-.274.252-.41.604-.41 1.057v2.861h-1.535v-5.623h1.163l.226.946h.075c.174-.315.41-.569.706-.762.297-.193.62-.289.969-.289m1.326 5.728h1.534v-7.825h-1.534zm5.311-1.121c.392 0 .679-.114.862-.343.183-.227.282-.615.3-1.161v-.166c0-.603-.094-1.036-.279-1.298-.187-.261-.49-.392-.909-.392a.9.9 0 0 0-.796.435c-.19.29-.285.712-.285 1.265 0 .554.096.968.286 1.245.192.277.465.415.821.415zm-.538 1.222c-.661 0-1.18-.257-1.557-.77-.377-.512-.565-1.223-.565-2.132 0-.922.191-1.64.575-2.155.384-.514.913-.772 1.587-.772.707 0 1.247.275 1.619.825h.051a6.294 6.294 0 0 1-.117-1.122v-1.8h1.54v7.825h-1.177l-.297-.729h-.066c-.348.554-.879.83-1.593.83zm8.593-.101h-1.534v-7.352h4.215v1.277h-2.681v1.896h2.496v1.272h-2.496v2.907m5.015-2.821c0 .557.092.978.275 1.263.182.284.48.427.892.427.409 0 .703-.142.883-.425.179-.284.268-.705.268-1.265 0-.557-.089-.974-.271-1.253-.181-.277-.477-.417-.89-.417-.409 0-.704.139-.885.415-.181.276-.272.695-.272 1.255zm3.888 0c0 .915-.241 1.631-.724 2.147-.483.517-1.155.775-2.017.775-.539 0-1.016-.118-1.428-.355a2.361 2.361 0 0 1-.951-1.018c-.221-.442-.331-.959-.331-1.549 0-.919.239-1.633.718-2.143.48-.509 1.154-.764 2.022-.764.54 0 1.016.117 1.429.352.412.235.729.572.95 1.011.221.44.332.954.332 1.544zm2.328 0c0 .557.091.978.273 1.263.183.284.481.427.893.427.409 0 .704-.142.883-.425.18-.284.269-.705.269-1.265 0-.557-.091-.974-.271-1.253-.182-.277-.479-.417-.891-.417-.409 0-.704.139-.884.415-.182.276-.272.695-.272 1.255zm3.888 0c0 .915-.242 1.631-.725 2.147-.482.517-1.155.775-2.016.775-.541 0-1.016-.118-1.429-.355a2.367 2.367 0 0 1-.951-1.018c-.221-.442-.332-.959-.332-1.549 0-.919.24-1.633.719-2.143.48-.509 1.155-.764 2.023-.764.54 0 1.015.117 1.428.352.412.235.729.572.951 1.011.22.44.332.954.332 1.544zm3.446 1.7c.392 0 .68-.114.863-.343.183-.227.283-.615.299-1.161v-.166c0-.603-.093-1.036-.279-1.298-.186-.261-.488-.392-.908-.392a.9.9 0 0 0-.797.435c-.19.29-.285.712-.285 1.265 0 .554.096.968.288 1.245.191.277.464.415.819.415zm-.538 1.222c-.66 0-1.179-.257-1.557-.77-.377-.512-.565-1.223-.565-2.132 0-.922.192-1.64.576-2.155.384-.514.912-.772 1.587-.772.707 0 1.247.275 1.619.825h.05a6.276 6.276 0 0 1-.115-1.122v-1.8h1.539v7.825h-1.177l-.297-.729h-.065c-.349.554-.88.83-1.595.83zM35.847 4.482h.548c.512 0 .895-.101 1.149-.303.254-.202.382-.497.382-.884 0-.39-.107-.678-.32-.864-.213-.186-.547-.28-1.002-.28h-.757v2.331zm3.76-1.246c0 .845-.264 1.492-.793 1.939-.528.448-1.278.672-2.253.672h-.714V8.64h-1.665V.787h2.508c.953 0 1.677.205 2.173.615.496.411.744 1.021.744 1.834zM30.071 8.64h-1.638V.787h4.5v1.364h-2.862v2.026h2.664v1.358h-2.664V8.64zm-4.526 0h-1.896l-1.063-4.126c-.04-.146-.107-.45-.201-.91a9.914 9.914 0 0 1-.164-.926c-.022.194-.076.504-.161.932-.086.427-.153.733-.199.915L20.803 8.64h-1.89L16.909.787h1.638l1.005 4.286c.175.791.302 1.477.38 2.057.022-.204.071-.52.148-.947a10.5 10.5 0 0 1 .218-.997L21.442.787h1.573l1.145 4.399c.05.197.112.498.188.902.075.405.132.752.171 1.042.036-.279.094-.628.172-1.045.079-.416.151-.754.216-1.012l.998-4.286h1.638L25.545 8.64zm-4.072 27.312c-3.051 0-5.01.725-5.544.949-.032.014-.058-.031-.033-.055 3.352-3.486 7.278-3.293 8.222-3.293H35.28c.562 0 1.018.537 1.018 1.2 0 .662-.456 1.199-1.018 1.199H21.473zm2.514 3.085c-3.287 0-4.245-1.868-9.222-.635-.034.009-.057-.038-.028-.057 2.775-1.904 5.792-1.731 7.011-1.731H35.28c.562 0 1.018.537 1.018 1.199 0 .663-.456 1.2-1.018 1.2 0 0-8.69.024-11.293.024zm.234 3.037c-3.375 0-3.645-2.49-8.647-3.051-.035-.003-.039-.055-.005-.064 4.11-1.027 5.638.716 8.037.716H35.28c.562 0 1.018.537 1.018 1.199 0 .663-.456 1.2-1.018 1.2H24.221zm-.733-9.182c-2.716 0-4.968 1.184-5.495 1.483-.029.017-.059-.019-.04-.046.441-.648 2.82-3.837 6.911-3.837H35.28c.562 0 1.018.537 1.018 1.2 0 .662-.456 1.2-1.018 1.2H23.488zm14.941-6.625a.741.741 0 0 0-.443-.205.733.733 0 0 0-.363.042c.048-.098.087-.204.103-.329a.861.861 0 0 0-.084-.513c-.336-.736.624-2.208.504-2.275-.116-.063-.662 1.56-1.192 2.217a.922.922 0 0 0-.199.488.913.913 0 0 0 .086.513c.074.133.187.226.318.234a.294.294 0 0 0 .107-.005.322.322 0 0 0-.018.058.452.452 0 0 0 .142.388.71.71 0 0 0 .441.207.776.776 0 0 0 .493-.092c.719-.394 2.21-.782 2.178-.92-.029-.138-1.483.715-2.073.192zm1.1-1.074a.63.63 0 0 0-.407-.199.64.64 0 0 0-.268.042c.014-.045.032-.085.037-.13a.721.721 0 0 0-.102-.463c-.365-.677.587-1.955.464-2.019-.123-.064-.645 1.368-1.176 1.934a.688.688 0 0 0-.196.426.768.768 0 0 0 .099.465.5.5 0 0 0 .339.228.512.512 0 0 0 .179-.021c-.004.008-.011.019-.008.026a.526.526 0 0 0 .139.399.628.628 0 0 0 .404.194.613.613 0 0 0 .433-.117c.619-.446 2.036-.712 2-.855-.035-.139-1.391.611-1.937.09zm.963-.994a.55.55 0 0 0-.389-.103.535.535 0 0 0-.196.05c.01-.029.029-.053.039-.083a.7.7 0 0 0-.024-.43c-.231-.664.793-1.647.693-1.727-.1-.074-.763 1.116-1.309 1.536a.64.64 0 0 0-.231.354.632.632 0 0 0 .021.427.433.433 0 0 0 .265.255.384.384 0 0 0 .27-.026.408.408 0 0 0-.024.17c.013.135.079.25.187.329.102.08.241.12.386.109a.585.585 0 0 0 .367-.175c.491-.497 1.714-.962 1.664-1.082-.052-.119-1.152.765-1.719.396zm1.895-2.134c-.102-.151-.958.787-1.591.877a.67.67 0 0 0-.359.178.704.704 0 0 0-.221.361.382.382 0 0 0 .055.325.331.331 0 0 0 .3.109.66.66 0 0 0 .365-.181.742.742 0 0 0 .215-.356c.191-.643 1.312-1.214 1.236-1.313zm-17.694 1.27c-.026.094-.21.816-.21.816-.052.03-.273-.018-.331-.024-.422-.04-.8-.406-.637-.845.132-.358.403-.396.748-.411.142-.007.399.027.528.116 0 0-.051.165-.098.348zm-.486 2.182-.039.247c-.262-.164-.417-.542-.291-.84.097-.225.337-.285.514-.295a49.8 49.8 0 0 0-.184.888zm-.377 2.697c-.033.185-.284.21-.455.261-.495.148-.965.085-1.117-.508-.166-.635.315-.901.829-1.026.281-.066.54-.01.732.226.049.059.105.112.118.168 0 0-.076.705-.107.879zm-1.562-3.122c.383-.093.779-.237 1.073.141.31.395.208 1.031-.291 1.198-.328.111-.724.207-1.005-.061-.367-.351-.341-1.148.223-1.278zm-.375-2.057c.404-.098.821-.247 1.131.149.323.415.215 1.084-.307 1.259-.346.115-.764.216-1.058-.066-.386-.367-.357-1.204.234-1.342zm-.376 4.445c-.105.37-.409.426-.729.503-.21-.258-.773-.909-.784-.986a.202.202 0 0 1 .012-.09c.026-.077.116-.152.181-.194.192-.125.601-.218.822-.173.396.085.603.569.498.94zm-2.004-1.899c-.29-1.023 1.427-1.47 1.692-.465.273 1.031-1.459 1.469-1.692.465zm-.252-2.043c-.294-1.018 1.43-1.465 1.695-.466.273 1.034-1.462 1.472-1.695.466zm-.242-2.009c-.281-.949 1.338-1.369 1.585-.433.255.962-1.364 1.376-1.585.433zm-.165 3.866c-.08.047-.11.072-.136.072l-.771-.838c.009-.023.248-.196.327-.241.64-.356 1.168.661.58 1.007zm-1.462-1.887c-.381-.84 1.005-1.751 1.425-.845.385.835-1 1.762-1.425.845zm1.165-2.659c.438.778-.882 1.647-1.26.81-.336-.723.838-1.565 1.26-.81zm-1.107-1.815c.194-.172.419-.266.65-.155.371.179.381.734.058.954-.147.102-.396.226-.577.181-.397-.101-.472-.679-.131-.98zm.049-1.669c.161-.108.373-.205.557-.13.334.136.323.621.052.815-.123.088-.346.197-.496.157-.338-.085-.421-.633-.113-.842zm.888-2.378c.198-.108.485-.152.664.048a.468.468 0 0 1-.134.733c-.213.107-.499.146-.667-.051a.48.48 0 0 1 .137-.73zm-.158 1.806c-.16-.595.843-.876 1.005-.271.181.588-.845.88-1.005.271zm1.617 1.04c.233.643-.856 1.007-1.068.372-.218-.643.876-1.01 1.068-.372zm.136-3.133c.208-.084.474-.173.706 0 .289.216.226.701-.105.853-.218.098-.496.164-.69-.008-.247-.221-.26-.705.089-.845zm-.192 5.381c-.294.068-.6.186-.844-.067-.313-.322-.223-.885.199-1.039.273-.103.62-.162.843.066.285.293.254.931-.198 1.04zm.006-3.285c-.189-.637.85-.964 1.05-.345.204.635-.872.972-1.05.345zm1.74 1.169c.244.728-.987 1.117-1.213.399-.228-.733 1.011-1.121 1.213-.399zm.065-1.95c.217-.058.447-.037.612.141.252.271.165.733-.207.802-.176.032-.447.019-.583-.101-.247-.217-.235-.731.178-.842zm1.05 1.528c.396 0 .596.582.365.872-.139.175-.439.186-.643.154-.378-.059-.619-.545-.365-.875.155-.199.42-.151.643-.151zm-1.903 2.397c-.244-.837 1.179-1.212 1.397-.38.22.845-1.21 1.217-1.397.38zm.872 1.071c.388-.04.792-.131 1.031.276.25.43.063 1.028-.441 1.129-.33.069-.732.101-.968-.191-.31-.388-.186-1.162.378-1.214zm1.975-1.865c.479.198.641.765.303 1.081-.181.165-.512.132-.735.087-.446-.087-.738-.758-.346-1.076.2-.163.559-.182.778-.092zm.754 2.019c.302.369.189 1.022-.338 1.055-.276.015-.636-.016-.822-.242-.299-.362-.186-1.039.341-1.058.276-.01.633.019.819.245zm2.04-6.665a.122.122 0 0 0-.135-.05c-.063.021-.105.091-.081.152 1.205 3.236-.333 4.83-.976 7.097-.772-1.842 1.784-3.574.467-6.93a.135.135 0 0 0-.1-.085c-.065-.008-.128.019-.139.106-.034.237-.189 2.097-1.698 3.186a3.001 3.001 0 0 0-.703-1.02c-.139-.627-.548-1.488-1.409-1.743-.129-.324-.389-.79-.888-1.039-.469-.234-1.012-.213-1.616.061-.73.085-1.231.369-1.496.845-.249.449-.205.938-.121 1.27-.614.656-.643 1.629-.627 2.009-.365.876-.16 1.9-.045 2.325-.435 1.19-.01 2.346.16 2.729 0 .103.006.202.011.3-1.428-1.563-4.677-3.497-5.918-4.235a.148.148 0 0 0-.181.021.152.152 0 0 0-.008.217c2.769 2.7 5.238 6.032 7.611 12.946 1.184-1.23 3.322-2.849 6.367-2.849h3.561c-2.263-8.428 1.032-11.444-2.036-15.313zm16.835 4.358c-.651-.17-4.808-.906-9.466 7.663.679-3.191 2.745-7.052 3.312-8.173v-.008a.155.155 0 0 0-.042-.191.135.135 0 0 0-.189.034c-3.079 5.134-4.16 8.091-4.798 11.63h1.929c.328-3.411 4.638-11.449 9.23-10.851h.005c.027.005.05-.016.053-.04a.048.048 0 0 0-.034-.064zm-9.262 28.233-1.042-4.356h-1.774c.281 1.106.682 2.23 1.202 3.215.035.059.098.094.161.083a.163.163 0 0 0 .133-.189c-.121-.922-.265-1.812-.401-2.699.375 1.394.881 2.757 1.564 4.012.018.039.058.058.094.045.05-.011.076-.063.063-.111zm1.793-1.978c-.181-.727-.37-1.621-.533-2.378h-.674c.262.808.616 1.709.931 2.48.032.074.103.111.171.093a.161.161 0 0 0 .105-.195zm.225 2.562-.005-.011c-.218-.608-.519-1.153-.758-1.737a23.043 23.043 0 0 1-.706-1.759 21.001 21.001 0 0 1-.491-1.433h-.651c.184.545.423 1.132.646 1.659.491 1.187 1.058 2.351 1.779 3.392a.102.102 0 0 0 .123.035c.058-.021.084-.088.063-.146zm.974-20.901c-.05-.074-.17-.09-.228-.029a13.347 13.347 0 0 0-2.147 3.068h.704c.351-.826 1.144-2.285 1.653-2.81l.005-.006a.18.18 0 0 0 .013-.223zM31.6 20.729c.651-1.068 1.617-1.887 2.436-2.875a.099.099 0 0 0-.008-.128.083.083 0 0 0-.118-.002 12.49 12.49 0 0 1-.58.571c-.086-.043-.307.042-.53.218-.176.138-.302.292-.347.403-.112-.026-.325.107-.517.352-.157.204-.249.42-.246.552-.121.011-.297.165-.446.409a1.327 1.327 0 0 0-.182.449 1.247 1.247 0 0 0-.309.354c-.134.223-.202.449-.181.579-.032.056-.063.109-.09.165l.016-.133c.192-1.512.47-3.011.892-4.456.426-1.44.935-2.893 1.809-4.06l.005-.005a.166.166 0 0 0-.016-.21.138.138 0 0 0-.205-.003c-.302.321-.556.68-.784 1.049-.1-.053-.31.144-.47.452-.147.279-.199.537-.144.636 0 0-.003.007-.008.005-.105-.046-.299.188-.417.502-.116.295-.137.566-.058.656-.005.005-.005.008-.008.013-.118-.042-.31.226-.428.606-.097.322-.108.601-.037.713.006.004 0 .018-.005.015-.121-.042-.304.234-.412.611-.108.364-.1.686.003.749-.118-.013-.284.264-.37.638-.079.324-.071.604.005.715-.116.035-.244.306-.31.656-.063.343-.031.628.053.718-.108.056-.218.335-.258.68-.039.343.011.625.1.715-.089.101-.175.34-.212.627-.037.273-.014.51.039.643-.097.083-.17.359-.173.691-.008.266.031.491.1.622-.053.132-.09.327-.09.542-.005.279.04.518.11.643-.02.98-.007 2.025.045 3.007h2.118a30.77 30.77 0 0 1 .142-2.356c.15-1.35.373-2.721 1.047-3.874l.005-.008a.115.115 0 0 0-.013-.128c-.039-.034-.095-.034-.131.008-.916 1.063-1.318 2.506-1.554 3.89-.042.271-.076.545-.107.816.057-1.111.16-2.216.414-3.268.292-1.281.874-2.501 1.984-3.184a.098.098 0 0 0 .04-.111c-.014-.051-.066-.08-.111-.067-.071.022-.136.059-.204.088-.074-.09-.344-.024-.622.154-.265.173-.441.385-.423.502 0 .006-.013.014-.013.003-.002-.013-.005-.027-.013-.034-.1-.083-.367.103-.593.419-.228.316-.318.646-.221.731.006.002.003.011-.002.011-.118-.048-.315.22-.439.595-.089.263-.11.505-.078.643 0 .005-.006.01-.006.01-.091.304-.168.609-.238.92.026-.439.065-.88.128-1.315.187-1.255.565-2.482 1.236-3.529zm6.664-3.497a.74.74 0 0 0-.486-.037.8.8 0 0 0-.325.17.924.924 0 0 0-.018-.345.832.832 0 0 0-.253-.45c-.572-.571-.178-2.29-.312-2.311-.131-.019-.084 1.695-.354 2.497a.92.92 0 0 0-.019.529.896.896 0 0 0 .26.452c.113.098.25.143.378.103a.227.227 0 0 0 .097-.042c0 .021 0 .042.003.064.029.14.129.25.265.313a.71.71 0 0 0 .488.037.777.777 0 0 0 .428-.26c.538-.624 1.803-1.515 1.727-1.634-.076-.117-1.145 1.196-1.879.914zm2.446-2.166c-.082-.116-1.094 1.066-1.785.771a.637.637 0 0 0-.452-.043.685.685 0 0 0-.235.133c-.003-.048 0-.09-.011-.133a.706.706 0 0 0-.254-.398c-.578-.505-.124-2.041-.26-2.057-.139-.016-.137 1.512-.436 2.23a.687.687 0 0 0-.037.467.719.719 0 0 0 .255.401.488.488 0 0 0 .394.094.488.488 0 0 0 .16-.083c0 .008-.003.019 0 .027.042.146.141.26.27.327a.64.64 0 0 0 .446.037.634.634 0 0 0 .365-.26c.427-.641 1.661-1.39 1.58-1.513zm.249-1.479c-.089-.093-.816 1.123-1.475.977a.561.561 0 0 0-.399.04.562.562 0 0 0-.168.117c0-.029.008-.058.008-.09a.672.672 0 0 0-.17-.394c-.444-.542.173-1.825.054-1.865-.12-.035-.33 1.316-.697 1.903a.625.625 0 0 0-.095.412.654.654 0 0 0 .168.396c.095.098.21.151.336.143a.368.368 0 0 0 .244-.12c0 .054.01.112.037.168.058.122.16.207.286.242.123.04.27.029.402-.035a.601.601 0 0 0 .283-.292c.288-.641 1.273-1.509 1.186-1.602zm-.436-1.691c-.149-.106-.624 1.077-1.189 1.385a.683.683 0 0 0-.275.295.715.715 0 0 0-.079.414c.014.125.071.232.163.285a.316.316 0 0 0 .315-.003.677.677 0 0 0 .281-.297.747.747 0 0 0 .078-.413c-.042-.669.811-1.599.706-1.666zM30.165 42.735h-5.944a6.256 6.256 0 0 1-1.102-.09c.976 1.451 2.506 2.551 4.057 3.29.239 1.323.538 2.547.645 2.643.11.096 1.632-.343 1.68-.483.044-.141-.622-2.408-.622-2.408.801-1.374 1.047-2.184 1.286-2.952zm14.954 10.169c-1.501.593-3.459.643-5.058.218-3.661-1.14-7.726-3.3-11.628-1.507-3.903-1.793-7.968.367-11.629 1.507-1.598.425-3.556.375-5.057-.218a.039.039 0 0 0-.037.067c2.16 1.671 5.186 2.439 7.91 1.456 2.617-.816 4.829-3.587 7.928-2.405-2.453.959-4.747 2.729-6.519 4.4l1.289 1.057c1.609-1.873 3.42-3.746 5.469-4.885.281-.165.449-.232.646-.242.197.01.365.077.643.242 2.052 1.139 3.863 3.012 5.472 4.885l1.288-1.057c-1.771-1.671-4.065-3.441-6.519-4.4 3.099-1.182 5.312 1.589 7.928 2.405 2.725.983 5.75.215 7.911-1.456.034-.03.005-.082-.037-.067zM20.99 50.38c-3.827-.928-4.873-4.515-8.073-6.071-.034-.019-.07.021-.049.052 1.007 1.659 1.553 4.199 4.458 5.764.024.013.011.051-.016.042-4.167-.802-5.918.313-10.285-1.66-.036-.017-.075.023-.052.058 1.436 2.083 4.842 3.507 9.508 3.115 1.68-.144 2.898-.851 4.509-1.228.039-.011.039-.064 0-.072zm-8.015-2.2c-1.454-1.906-1.039-5.973-4.322-9.696-.027-.029-.074-.005-.066.032.627 2.742.441 5.856 2.157 8.138.016.025-.008.048-.031.033-3.386-2.666-6.865-3.468-8.414-5.625-.024-.03-.071-.014-.066.023.384 2.793 5.748 7.145 10.713 7.153.029 0 .048-.034.029-.058zm-5.084-5.065c-1.558-2.89.305-7.302-1.464-11.588-.018-.045-.086-.034-.086.014-.053 2.341-1.507 5.835-.628 8.474.011.023-.021.037-.034.015-2.239-3.27-4.015-3.954-5.496-6.948-.02-.045-.088-.032-.091.016-.095 2.035.805 3.693 1.821 5.234a17.39 17.39 0 0 0 5.929 4.836c.034.017.065-.019.049-.053zM6.834 25.509c-.003-.048-.066-.064-.089-.021-1.189 2.224-3.307 3.993-3.375 6.93-.003.029-.035.031-.04.005-.385-2.267-2.309-4.807-2.393-8.089 0-.05-.071-.063-.089-.015-1.583 4.267.692 8.314 3.115 11.657.026.034.078.013.078-.033-.099-3.542 2.972-6.185 2.793-10.434zm1.512-5.522c-1.123 1.56-3.651 2.663-4.575 4.913-.013.033-.052.024-.047-.013.367-2.521-.606-5.45.307-8.8.013-.048-.047-.08-.076-.043-1.38 1.698-1.848 3.688-1.924 5.838-.094 2.641.835 4.568 1.294 6.359.01.042.065.039.076-.003.661-2.349 3.981-3.762 5.021-8.213.013-.048-.048-.077-.076-.038zm3.046-5.245c-1.847 1.448-4.669 2.843-5.274 3.851-.011.021-.042.005-.037-.016l.684-3.287c.308-1.395.573-2.732 1.344-3.981.024-.037-.021-.08-.055-.053-3.516 2.785-3.002 6.813-3.157 10.111-.003.034.039.05.063.026 2.071-2.245 5.446-3.553 6.49-6.605.013-.037-.026-.07-.058-.046zm2.617-5.048c-3.107.098-5.39 2.715-6.369 6.047-.006.019.021.035.036.024 4.281-3.138 4.042-4.482 6.359-5.975.042-.027.024-.096-.026-.096zm35.828 38.813c-4.364 1.973-6.117.858-10.285 1.66-.026.009-.039-.029-.016-.042 2.906-1.565 3.452-4.105 4.459-5.764.021-.031-.015-.071-.049-.052-3.197 1.556-4.244 5.143-8.073 6.071-.04.008-.04.061 0 .072 1.611.377 2.829 1.084 4.509 1.228 4.666.392 8.075-1.032 9.508-3.115.024-.035-.016-.075-.053-.058zm4.727-7.445c-1.549 2.157-5.028 2.959-8.414 5.625-.021.015-.047-.008-.029-.033 1.714-2.282 1.528-5.396 2.155-8.138.008-.037-.039-.061-.066-.032-3.28 3.723-2.868 7.79-4.32 9.696a.036.036 0 0 0 .029.058c4.966-.008 10.327-4.36 10.711-7.153.005-.037-.042-.053-.066-.023zm2.207-7.964c-.002-.048-.071-.061-.092-.016-1.48 2.994-3.257 3.678-5.493 6.948-.015.022-.044.008-.036-.015.879-2.639-.573-6.133-.628-8.474 0-.048-.068-.059-.086-.014-1.769 4.286.094 8.698-1.462 11.588-.018.034.013.07.047.053a17.39 17.39 0 0 0 5.929-4.836c1.015-1.541 1.916-3.199 1.821-5.234zm-.756-8.779c-.018-.048-.089-.035-.089.015-.084 3.282-2.008 5.822-2.393 8.089-.006.026-.037.024-.037-.005-.068-2.937-2.189-4.706-3.378-6.93a.045.045 0 0 0-.086.021c-.179 4.249 2.889 6.892 2.789 10.434 0 .046.055.067.082.033 2.419-3.343 4.695-7.39 3.112-11.657zm-1.183-2.437c-.076-2.15-.544-4.14-1.924-5.838-.029-.037-.087-.005-.076.043.913 3.35-.061 6.279.309 8.8.006.037-.036.046-.049.013-.924-2.25-3.452-3.353-4.574-4.913-.027-.039-.087-.01-.077.038 1.039 4.451 4.359 5.864 5.021 8.213.01.042.065.045.076.003.459-1.791 1.388-3.718 1.294-6.359zm-6.024-10.626c-.034-.027-.078.016-.055.053.772 1.249 1.037 2.586 1.344 3.981l.685 3.287c.005.021-.026.037-.037.016-.606-1.008-3.424-2.403-5.274-3.851-.03-.024-.071.009-.059.046 1.045 3.052 4.42 4.36 6.491 6.605.024.024.066.008.063-.026-.155-3.298.36-7.326-3.158-10.111zm-5.954-1.562c-.05 0-.065.069-.027.096 2.318 1.493 2.079 2.837 6.359 5.975.019.011.042-.005.037-.024-.979-3.332-3.262-5.949-6.369-6.047z\" fill=\"#FFF\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r6slhj\",\"data-framer-name\":\"myval\",layoutDependency:layoutDependency,layoutId:\"wVEu0i7dL\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"19px\",src:\"https://framerusercontent.com/images/FZO3QFNmQi4l4DkSZnRfn9xOTKM.png\",srcSet:\"https://framerusercontent.com/images/FZO3QFNmQi4l4DkSZnRfn9xOTKM.png?scale-down-to=1024 746w,https://framerusercontent.com/images/FZO3QFNmQi4l4DkSZnRfn9xOTKM.png 1442w\"},className:\"framer-6zttro\",\"data-framer-name\":\"myval-icon2 2\",layoutDependency:layoutDependency,layoutId:\"AKwFY3YIU\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"120px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"myVal\"})})}),className:\"framer-17li8i6\",\"data-framer-name\":\"myVal\",fonts:[\"GF;Poppins-700\"],layoutDependency:layoutDependency,layoutId:\"jmRQl6yu2\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",viewBox:\"0 0 397.4 146\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v6ggui\",\"data-framer-name\":\"offr\",layoutDependency:layoutDependency,layoutId:\"zgeUAg9jh\",style:{backgroundColor:\"rgb(39, 21, 143)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/AAOyKN48w9g8HbbnptBI5uRaxH0.png\"},className:\"framer-ce8uv\",\"data-framer-name\":\"image 1\",layoutDependency:layoutDependency,layoutId:\"YOa2XGxB5\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"101px\",src:\"https://framerusercontent.com/images/SrmuhyxmztFGHgl51xPtLnnUBLw.png\",srcSet:\"https://framerusercontent.com/images/SrmuhyxmztFGHgl51xPtLnnUBLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/SrmuhyxmztFGHgl51xPtLnnUBLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SrmuhyxmztFGHgl51xPtLnnUBLw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SrmuhyxmztFGHgl51xPtLnnUBLw.png 2732w\"},className:\"framer-1izxe9e\",\"data-framer-name\":\"pupcare\",layoutDependency:layoutDependency,layoutId:\"f0UQxgGee\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:83.5,pixelHeight:40,pixelWidth:167,src:\"https://framerusercontent.com/images/29tAbHW7LFnlH6exwnR88F2tIHY.png\"},className:\"framer-1556i50\",\"data-framer-name\":\"intellego\",layoutDependency:layoutDependency,layoutId:\"jXg_xtHth\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fyi2j1\",\"data-framer-name\":\"crownCasino\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aqgg44ZYg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79 67\"><path d=\"M 54.723 25.592 C 54.737 25.031 54.447 24.507 53.965 24.222 C 53.483 23.938 52.885 23.938 52.403 24.222 C 51.921 24.506 51.631 25.03 51.645 25.591 C 51.666 26.427 52.348 27.095 53.183 27.095 C 54.018 27.095 54.701 26.428 54.723 25.592 Z M 47.998 25.815 C 47.147 25.815 46.448 26.506 46.448 27.368 C 46.448 28.231 47.137 28.922 47.998 28.922 C 48.858 28.922 49.547 28.231 49.547 27.368 C 49.547 26.506 48.858 25.815 47.998 25.815 Z M 48.666 32.698 C 48.666 33.47 49.294 34.099 50.064 34.099 C 50.833 34.099 51.461 33.47 51.461 32.698 C 51.461 31.927 50.833 31.297 50.064 31.297 C 49.284 31.297 48.666 31.927 48.666 32.698 Z M 50.023 29.47 C 50.023 30.277 50.676 30.932 51.482 30.932 C 52.287 30.932 52.94 30.277 52.94 29.47 C 52.94 28.663 52.287 28.008 51.482 28.008 C 50.676 28.008 50.023 28.663 50.023 29.47 Z M 54.702 13.999 C 55.786 13.999 56.657 13.116 56.657 12.04 C 56.657 10.964 55.776 10.08 54.702 10.08 C 53.647 10.115 52.81 10.982 52.81 12.04 C 52.81 13.098 53.647 13.965 54.702 13.999 Z M 49.355 24.587 C 50.246 24.587 50.975 23.856 50.975 22.963 C 50.975 22.069 50.246 21.338 49.355 21.338 C 48.463 21.338 47.734 22.069 47.734 22.963 C 47.734 23.856 48.463 24.587 49.355 24.587 Z M 51.502 19.369 C 52.484 19.369 53.284 18.567 53.284 17.582 C 53.284 16.598 52.484 15.796 51.502 15.796 C 50.519 15.796 49.719 16.598 49.719 17.582 C 49.719 18.567 50.519 19.369 51.502 19.369 Z M 46.225 16.547 C 47.258 16.547 48.099 15.704 48.099 14.669 C 48.099 13.633 47.258 12.791 46.225 12.791 C 45.192 12.791 44.351 13.633 44.351 14.669 C 44.351 15.704 45.192 16.547 46.225 16.547 Z M 57.69 28.577 C 57.705 28.016 57.415 27.492 56.933 27.207 C 56.451 26.922 55.853 26.922 55.371 27.207 C 54.888 27.491 54.598 28.015 54.612 28.576 C 54.633 29.412 55.316 30.079 56.151 30.079 C 56.986 30.08 57.669 29.413 57.69 28.577 Z M 45.445 31.003 C 45.445 31.815 46.093 32.465 46.904 32.465 C 47.704 32.465 48.362 31.805 48.362 31.003 C 48.362 30.195 47.709 29.541 46.904 29.541 C 46.098 29.541 45.445 30.195 45.445 31.003 Z M 44.929 22.557 C 45.871 22.557 46.64 21.785 46.64 20.841 C 46.64 19.897 45.871 19.125 44.929 19.125 C 43.987 19.125 43.217 19.897 43.217 20.841 C 43.217 21.785 43.987 22.557 44.929 22.557 Z M 39.47 22.709 C 38.477 22.709 37.677 23.511 37.677 24.496 C 37.677 25.48 38.487 26.292 39.47 26.292 C 40.452 26.292 41.252 25.49 41.252 24.506 C 41.252 23.521 40.462 22.709 39.47 22.709 Z M 54.095 20.851 C 54.095 21.785 54.854 22.547 55.786 22.547 C 56.718 22.547 57.478 21.785 57.478 20.851 C 57.478 19.917 56.718 19.156 55.786 19.156 C 54.854 19.156 54.095 19.917 54.095 20.851 Z M 30.952 25.805 C 30.101 25.805 29.402 26.495 29.402 27.358 C 29.402 28.221 30.091 28.912 30.952 28.912 C 31.813 28.912 32.501 28.221 32.501 27.358 C 32.501 26.495 31.803 25.805 30.952 25.805 Z M 30.587 30.993 C 30.587 31.8 31.24 32.454 32.046 32.454 C 32.851 32.454 33.504 31.8 33.504 30.993 C 33.504 30.185 32.851 29.531 32.046 29.531 C 31.24 29.531 30.587 30.185 30.587 30.993 Z M 27.488 32.698 C 27.488 33.47 28.116 34.099 28.886 34.099 C 29.655 34.099 30.283 33.47 30.283 32.698 C 30.283 31.927 29.655 31.297 28.886 31.297 C 28.116 31.297 27.488 31.927 27.488 32.698 Z M 39.47 31.196 C 38.588 31.196 37.869 31.916 37.869 32.8 C 37.869 33.683 38.588 34.403 39.47 34.403 C 40.351 34.403 41.07 33.683 41.07 32.8 C 41.08 31.916 40.361 31.196 39.47 31.196 Z M 59.088 26.363 C 60.02 26.363 60.779 25.602 60.779 24.668 C 60.779 23.734 60.02 22.973 59.088 22.973 C 58.156 22.973 57.397 23.734 57.397 24.668 C 57.397 25.612 58.156 26.363 59.088 26.363 Z M 63.301 22.892 C 64.284 22.892 65.084 22.09 65.084 21.105 C 65.084 20.12 64.284 19.318 63.301 19.318 C 62.319 19.318 61.519 20.12 61.519 21.105 C 61.519 22.09 62.319 22.892 63.301 22.892 Z M 55.695 31.916 C 55.695 31.074 55.006 30.383 54.166 30.383 C 53.325 30.383 52.636 31.064 52.636 31.916 C 52.636 32.363 52.829 32.759 53.133 33.033 C 53.021 33.003 52.9 32.992 52.778 32.992 C 52.198 32.992 51.672 33.334 51.436 33.865 C 51.2 34.396 51.297 35.016 51.684 35.449 C 51.644 35.449 51.603 35.439 51.563 35.439 C 51.087 35.44 50.646 35.686 50.395 36.09 C 50.143 36.495 50.118 37.001 50.327 37.429 C 49.922 37.591 49.608 37.936 49.486 38.363 L 49.476 38.363 C 49.657 37.837 49.532 37.255 49.152 36.85 C 49.77 36.708 50.236 36.16 50.236 35.49 C 50.236 34.718 49.608 34.089 48.838 34.089 C 48.068 34.089 47.441 34.718 47.441 35.49 C 47.441 35.845 47.572 36.17 47.795 36.413 C 47.238 36.515 46.792 36.941 46.64 37.479 L 46.63 37.479 C 46.671 37.337 46.701 37.185 46.701 37.033 C 46.701 36.505 46.428 36.048 46.023 35.784 C 46.792 35.743 47.41 35.104 47.41 34.322 C 47.41 33.541 46.762 32.86 45.952 32.86 C 45.141 32.86 44.493 33.51 44.493 34.322 C 44.493 34.84 44.757 35.287 45.152 35.551 C 44.544 35.571 44.037 35.967 43.835 36.505 C 43.835 36.464 43.845 36.434 43.845 36.393 C 43.845 35.571 43.177 34.901 42.356 34.901 C 41.688 34.901 41.121 35.348 40.938 35.957 C 40.881 35.181 40.236 34.58 39.459 34.58 C 38.683 34.58 38.038 35.181 37.981 35.957 C 37.798 35.348 37.231 34.901 36.563 34.901 C 35.742 34.901 35.074 35.571 35.074 36.393 C 35.074 36.434 35.074 36.464 35.084 36.505 C 34.882 35.967 34.365 35.581 33.767 35.551 C 34.162 35.287 34.426 34.84 34.426 34.322 C 34.426 33.515 33.773 32.86 32.967 32.86 C 32.162 32.86 31.509 33.515 31.509 34.322 C 31.509 35.134 32.127 35.743 32.896 35.784 C 32.333 36.145 32.083 36.842 32.289 37.479 C 32.137 36.931 31.691 36.515 31.134 36.413 C 31.357 36.17 31.489 35.845 31.489 35.49 C 31.489 34.718 30.861 34.089 30.091 34.089 C 29.321 34.089 28.693 34.718 28.693 35.49 C 28.693 36.16 29.159 36.708 29.777 36.85 C 29.524 37.114 29.372 37.479 29.372 37.875 C 29.372 38.048 29.402 38.21 29.453 38.363 C 29.331 37.936 29.017 37.591 28.612 37.429 C 28.821 37.001 28.796 36.495 28.545 36.09 C 28.293 35.686 27.852 35.44 27.377 35.439 C 27.336 35.439 27.296 35.439 27.255 35.449 C 27.642 35.016 27.74 34.396 27.503 33.865 C 27.267 33.334 26.741 32.992 26.161 32.992 C 26.04 32.992 25.918 33.013 25.807 33.033 C 26.264 32.603 26.413 31.937 26.183 31.353 C 25.953 30.769 25.39 30.384 24.763 30.383 C 23.923 30.383 23.234 31.064 23.234 31.916 C 23.231 32.392 23.45 32.841 23.825 33.132 C 24.201 33.423 24.69 33.521 25.148 33.398 C 24.708 33.812 24.565 34.452 24.786 35.014 C 25.007 35.576 25.548 35.946 26.151 35.947 C 26.212 35.947 26.262 35.947 26.323 35.936 C 26.121 36.18 25.989 36.485 25.989 36.83 C 25.989 37.388 26.323 37.865 26.789 38.078 C 26.678 38.281 26.607 38.525 26.607 38.779 C 26.607 39.266 26.85 39.703 27.225 39.967 C 27.164 40.129 27.133 40.291 27.133 40.474 C 27.133 40.89 27.306 41.266 27.579 41.54 C 27.488 41.733 27.437 41.946 27.437 42.169 C 27.437 42.992 28.106 43.662 28.926 43.662 C 29.747 43.662 30.415 42.992 30.415 42.169 L 30.415 42.159 C 30.688 42.525 31.114 42.758 31.6 42.758 C 32.38 42.758 33.028 42.149 33.079 41.378 C 33.342 41.794 33.808 42.078 34.335 42.078 C 34.932 42.078 35.449 41.723 35.692 41.205 C 35.955 41.591 36.401 41.845 36.907 41.845 C 37.464 41.845 37.95 41.53 38.204 41.073 C 38.467 41.489 38.923 41.763 39.449 41.763 C 39.976 41.763 40.432 41.489 40.695 41.073 C 40.948 41.53 41.434 41.845 41.992 41.845 C 42.498 41.845 42.944 41.591 43.207 41.205 C 43.44 41.723 43.956 42.078 44.554 42.078 C 45.081 42.078 45.547 41.804 45.81 41.388 C 45.861 42.159 46.509 42.768 47.289 42.768 C 47.775 42.768 48.2 42.535 48.474 42.169 L 48.474 42.18 C 48.474 43.002 49.142 43.672 49.962 43.672 C 50.783 43.672 51.451 43.002 51.451 42.18 C 51.451 41.956 51.401 41.743 51.309 41.55 C 51.583 41.276 51.755 40.9 51.755 40.484 C 51.755 40.302 51.725 40.139 51.664 39.977 C 52.039 39.713 52.282 39.286 52.282 38.789 C 52.282 38.535 52.221 38.302 52.099 38.088 C 52.576 37.865 52.9 37.398 52.9 36.84 C 52.9 36.495 52.778 36.19 52.576 35.947 C 52.636 35.957 52.687 35.957 52.748 35.957 C 53.558 35.957 54.216 35.297 54.216 34.485 C 54.216 34.058 54.034 33.683 53.75 33.419 C 53.872 33.449 54.004 33.47 54.135 33.47 C 55.016 33.449 55.695 32.759 55.695 31.916 Z M 27.468 28.008 C 26.662 28.008 26.009 28.663 26.009 29.47 C 26.009 30.277 26.662 30.932 27.468 30.932 C 28.273 30.932 28.926 30.277 28.926 29.47 C 28.926 28.663 28.273 28.008 27.468 28.008 Z M 39.47 27.145 C 38.538 27.145 37.778 27.907 37.778 28.84 C 37.778 29.774 38.538 30.536 39.47 30.536 C 40.401 30.536 41.161 29.774 41.161 28.84 C 41.164 28.39 40.986 27.957 40.669 27.639 C 40.351 27.32 39.919 27.142 39.47 27.145 Z M 39.47 21.288 C 40.503 21.288 41.343 20.445 41.343 19.41 C 41.343 18.374 40.503 17.532 39.47 17.532 C 38.437 17.532 37.596 18.374 37.596 19.41 C 37.596 20.445 38.437 21.288 39.47 21.288 Z M 41.536 12.943 C 41.536 11.806 40.614 10.872 39.47 10.872 C 38.335 10.872 37.403 11.796 37.403 12.943 C 37.403 14.08 38.325 15.014 39.47 15.014 C 40.614 15.004 41.536 14.08 41.536 12.943 Z M 22.809 27.023 C 22.249 27.009 21.726 27.299 21.442 27.782 C 21.158 28.266 21.158 28.865 21.442 29.348 C 21.726 29.832 22.248 30.123 22.808 30.108 C 23.642 30.087 24.308 29.403 24.308 28.566 C 24.308 27.73 23.643 27.045 22.809 27.023 Z M 25.766 24.049 C 25.207 24.034 24.684 24.325 24.4 24.808 C 24.116 25.291 24.116 25.891 24.399 26.374 C 24.683 26.857 25.206 27.148 25.765 27.134 C 26.6 27.113 27.265 26.429 27.266 25.592 C 27.266 24.755 26.601 24.071 25.766 24.049 Z M 32.724 16.537 C 33.757 16.537 34.598 15.694 34.598 14.659 C 34.598 13.623 33.757 12.781 32.724 12.781 C 31.691 12.781 30.851 13.623 30.851 14.659 C 30.851 15.704 31.691 16.537 32.724 16.537 Z M 30.466 62.462 L 26.88 57.437 C 28.399 56.899 29.645 55.691 29.645 53.539 C 29.645 50.402 27.032 49.286 24.723 49.286 L 17.572 49.286 L 17.572 62.462 L 20.449 62.462 L 20.449 57.793 L 23.73 57.793 L 27.063 62.462 Z M 24.338 55.143 L 20.439 55.143 L 20.439 51.925 L 24.338 51.925 C 25.472 51.925 26.597 52.189 26.597 53.529 C 26.597 54.879 25.472 55.143 24.338 55.143 Z M 15.648 19.318 C 14.666 19.318 13.866 20.12 13.866 21.105 C 13.866 22.09 14.666 22.892 15.648 22.892 C 16.631 22.892 17.431 22.09 17.431 21.105 C 17.431 20.12 16.631 19.318 15.648 19.318 Z M 7.789 51.732 C 10.351 51.732 11.627 53.214 12.053 54.26 L 14.625 52.727 C 13.592 50.737 11.283 49.022 7.789 49.022 C 3.525 49.022 0.294 52.047 0.294 55.874 C 0.294 59.701 3.525 62.726 7.789 62.726 C 11.293 62.726 13.602 61.021 14.625 59.021 L 12.053 57.488 C 11.627 58.534 10.351 60.016 7.789 60.016 C 5.408 60.016 3.423 58.392 3.423 55.864 C 3.423 53.346 5.408 51.732 7.789 51.732 Z M 60.384 57.204 L 58.308 49.468 L 55.361 49.468 L 53.254 57.305 L 51.309 49.286 L 48.312 49.286 L 51.664 62.462 L 54.449 62.462 L 56.799 53.722 L 59.149 62.462 L 61.924 62.462 L 65.276 49.286 L 62.288 49.286 Z M 75.81 49.286 L 75.81 57.031 L 70.269 49.286 L 67.464 49.286 L 67.464 62.462 L 70.31 62.462 L 70.31 54.382 L 76.103 62.462 L 78.666 62.462 L 78.666 49.286 Z M 19.861 26.363 C 20.793 26.363 21.553 25.602 21.553 24.668 C 21.553 23.734 20.793 22.973 19.861 22.973 C 18.93 22.973 18.17 23.734 18.17 24.668 C 18.17 25.612 18.93 26.363 19.861 26.363 Z M 43.42 31.196 C 43.979 31.21 44.502 30.92 44.786 30.436 C 45.07 29.953 45.07 29.354 44.786 28.871 C 44.503 28.387 43.98 28.096 43.421 28.111 C 42.586 28.132 41.92 28.816 41.92 29.653 C 41.92 30.489 42.585 31.174 43.42 31.196 Z M 39.47 7.228 C 40.715 7.228 41.718 6.213 41.718 4.974 C 41.718 3.726 40.715 2.721 39.47 2.721 C 38.224 2.721 37.221 3.736 37.221 4.974 C 37.221 6.213 38.234 7.228 39.47 7.228 Z M 34.517 33.277 C 34.517 34.119 35.206 34.81 36.046 34.81 C 36.887 34.81 37.576 34.119 37.576 33.277 C 37.576 32.434 36.887 31.744 36.046 31.744 C 35.196 31.744 34.517 32.424 34.517 33.277 Z M 42.903 34.81 C 43.744 34.81 44.432 34.119 44.432 33.277 C 44.432 32.434 43.744 31.744 42.903 31.744 C 42.062 31.744 41.374 32.434 41.374 33.277 C 41.374 34.119 42.062 34.81 42.903 34.81 Z M 33.99 29.653 C 33.976 30.213 34.266 30.737 34.748 31.022 C 35.23 31.307 35.828 31.307 36.31 31.023 C 36.792 30.738 37.082 30.214 37.068 29.654 C 37.047 28.817 36.365 28.15 35.53 28.15 C 34.695 28.149 34.012 28.816 33.99 29.653 Z M 44.068 27.237 C 44.959 27.237 45.688 26.506 45.688 25.612 C 45.688 24.719 44.969 23.988 44.068 23.988 C 43.177 23.988 42.447 24.719 42.447 25.612 C 42.447 26.516 43.166 27.237 44.068 27.237 Z M 24.247 13.999 C 25.331 13.999 26.202 13.116 26.202 12.04 C 26.202 10.964 25.321 10.08 24.247 10.08 C 23.192 10.115 22.354 10.982 22.354 12.04 C 22.354 13.098 23.192 13.965 24.247 13.999 Z M 27.974 22.963 C 27.974 23.856 28.703 24.587 29.595 24.587 C 30.486 24.587 31.215 23.866 31.215 22.963 C 31.215 22.069 30.486 21.338 29.595 21.338 C 28.703 21.338 27.974 22.069 27.974 22.963 Z M 25.665 17.582 C 25.665 18.567 26.465 19.369 27.447 19.369 C 28.43 19.369 29.23 18.567 29.23 17.582 C 29.23 16.598 28.43 15.796 27.447 15.796 C 26.465 15.796 25.665 16.588 25.665 17.582 Z M 23.163 22.547 C 24.095 22.547 24.855 21.785 24.855 20.851 C 24.855 19.917 24.095 19.156 23.163 19.156 C 22.231 19.156 21.472 19.917 21.472 20.851 C 21.472 21.785 22.221 22.547 23.163 22.547 Z M 32.309 20.841 C 32.309 21.785 33.079 22.557 34.021 22.557 C 34.963 22.557 35.732 21.785 35.732 20.841 C 35.732 19.897 34.963 19.125 34.021 19.125 C 33.079 19.125 32.309 19.897 32.309 20.841 Z M 33.261 25.612 C 33.261 26.506 33.98 27.237 34.882 27.237 C 35.773 27.237 36.502 26.516 36.502 25.612 C 36.502 24.719 35.773 23.988 34.882 23.988 C 33.99 23.988 33.261 24.719 33.261 25.612 Z M 46.995 55.874 C 46.995 52.047 43.744 49.022 39.48 49.022 C 35.216 49.022 31.965 52.047 31.965 55.874 C 31.965 59.701 35.216 62.726 39.48 62.726 C 43.744 62.736 46.995 59.701 46.995 55.874 Z M 39.48 60.026 C 37.1 60.026 35.094 58.422 35.094 55.894 C 35.094 53.367 37.1 51.732 39.48 51.732 C 41.86 51.732 43.865 53.367 43.865 55.894 C 43.875 58.422 41.86 60.026 39.48 60.026 Z\" fill=\"rgb(14, 9, 9)\"></path></svg>',svgContentId:8877121455,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nn1zp\",\"data-framer-name\":\"sven\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yPkfSjNjO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114 31\"><path d=\"M 0.152 23.853 C 0.152 21.926 1.446 20.994 3.233 20.994 C 7.857 20.994 5.826 28.884 13.038 28.884 C 16.306 28.884 18.712 27.266 18.712 24.099 C 18.712 15.711 0.777 21.233 0.777 8.816 C 0.777 3.778 5.776 0 12.856 0 C 20.568 0 25.192 3.778 25.192 7.393 C 25.189 7.759 25.113 8.121 24.967 8.456 C 24.821 8.792 24.609 9.094 24.343 9.344 C 24.078 9.595 23.765 9.788 23.423 9.912 C 23.081 10.037 22.718 10.09 22.355 10.069 C 18.037 10.069 19.699 2.242 13.231 2.242 C 10.207 2.242 8.051 4.351 8.051 7.021 C 8.051 15.472 25.992 10.069 25.992 22.367 C 25.992 27.216 20.993 31 13.044 31 C 4.964 30.994 0.152 27.266 0.152 23.853 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 48.852 0 L 55.708 0 L 45.42 29.708 L 37.553 29.708 L 27.284 0 L 34.292 0 L 41.554 23.073 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 82.832 21.888 C 82.276 25.545 78.149 31 70.327 31 C 62.061 31 55.708 24.867 55.708 15.252 C 55.689 6.385 62.323 0 70.452 0 C 78.411 0 81.988 4.776 81.988 9.118 C 81.988 11.475 80.738 12.776 78.862 13.455 L 63.93 18.972 C 65.45 23.189 68.576 25.79 72.953 25.79 C 76.836 25.79 79.612 23.748 80.85 21.266 C 81.538 20.399 82.957 20.65 82.832 21.888 Z M 62.824 12.462 C 62.814 13.795 62.938 15.125 63.192 16.433 L 73.435 11.965 C 73.943 11.76 74.373 11.397 74.66 10.929 C 74.949 10.461 75.08 9.912 75.035 9.363 C 75.035 6.85 72.753 2.357 69.177 2.357 C 65.312 2.344 62.849 6.51 62.849 12.462 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 113.848 14.104 L 113.848 31 L 106.899 31 L 106.899 14.288 C 106.899 10.843 106.899 5.96 101.53 5.96 C 96.897 5.96 93.666 10.064 93.666 16.213 L 93.666 31 L 86.716 31 L 86.716 0.844 L 93.666 0.844 L 93.666 6.397 C 94.589 4.457 96.057 2.822 97.896 1.688 C 99.735 0.553 101.865 -0.032 104.032 0.001 C 113.848 -0.011 113.848 9.583 113.848 14.104 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10276698355,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/suP8yT45fuCesQKw3VleZBaBtm8.jpeg\"},className:\"framer-e21vhr\",\"data-framer-name\":\"precedentProduction\",layoutDependency:layoutDependency,layoutId:\"JOR9BNGqn\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AHXNP.framer-k4pktg, .framer-AHXNP .framer-k4pktg { display: block; }\",\".framer-AHXNP.framer-18m8rqm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 109px; justify-content: center; padding: 0px; position: relative; width: 3935px; }\",\".framer-AHXNP .framer-1nqn12x-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-AHXNP .framer-wu7psc { height: 29px; position: relative; width: 171px; }\",\".framer-AHXNP .framer-8je12w { height: 65px; overflow: hidden; position: relative; width: 65px; }\",\".framer-AHXNP .framer-16dt00i, .framer-AHXNP .framer-xl1nnm, .framer-AHXNP .framer-pe3vwp, .framer-AHXNP .framer-15ob9ty { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-AHXNP .framer-12s6d6d { aspect-ratio: 0.6748466617966474 / 1; height: var(--framer-aspect-ratio-supported, 57px); position: relative; width: 38px; }\",\".framer-AHXNP .framer-1dvmre8 { aspect-ratio: 2.368055506243062 / 1; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 120px; }\",\".framer-AHXNP .framer-1cb1jbj { height: 42px; overflow: hidden; position: relative; width: 129px; }\",\".framer-AHXNP .framer-1iipxfl { aspect-ratio: 4.411764917610591 / 1; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 211px; }\",\".framer-AHXNP .framer-19lvpef { aspect-ratio: 3.747252600783596 / 1; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 120px; }\",\".framer-AHXNP .framer-1sabr3q { height: 32px; overflow: hidden; position: relative; width: 133px; }\",\".framer-AHXNP .framer-9eu5rr { height: 45px; overflow: hidden; position: relative; width: 45px; }\",\".framer-AHXNP .framer-1em0f1a { flex: none; height: 45px; left: calc(48.88888888888891% - 45px / 2); position: absolute; top: calc(48.88888888888891% - 45px / 2); width: 45px; }\",\".framer-AHXNP .framer-n7hjmn { height: 40px; overflow: hidden; position: relative; width: 121px; }\",\".framer-AHXNP .framer-1yg5lh3 { aspect-ratio: 0.9239765925624533 / 1; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 55px; }\",\".framer-AHXNP .framer-1ulgpgv { aspect-ratio: 1.8947367275986755 / 1; height: var(--framer-aspect-ratio-supported, 67px); position: relative; width: 126px; }\",\".framer-AHXNP .framer-1gvlswv { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 81px); position: relative; width: 81px; }\",\".framer-AHXNP .framer-1t69ugp { aspect-ratio: 3.9292036113840267 / 1; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 156px; }\",\".framer-AHXNP .framer-1km7vgo { aspect-ratio: 2.595238126071787 / 1; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 115px; }\",\".framer-AHXNP .framer-18ihrtu { aspect-ratio: 7.923076587445818 / 1; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 252px; }\",\".framer-AHXNP .framer-1d8rfrr { 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-AHXNP .framer-1gjp4d1 { aspect-ratio: 0.7192982456140351 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); position: relative; width: 52px; }\",\".framer-AHXNP .framer-1py77fy { align-content: center; align-items: center; aspect-ratio: 0.6666666666666666 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 72px); justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AHXNP .framer-1ys3rdy { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-AHXNP .framer-r6slhj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 59px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 83px; }\",\".framer-AHXNP .framer-6zttro { aspect-ratio: 0.7290192208418337 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 19px; }\",\".framer-AHXNP .framer-17li8i6 { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-AHXNP .framer-v6ggui { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 46px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 103px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AHXNP .framer-ce8uv { aspect-ratio: 2.2388059701492535 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 1px; }\",\".framer-AHXNP .framer-1izxe9e { height: 101px; position: relative; width: 101px; }\",\".framer-AHXNP .framer-1556i50 { aspect-ratio: 4.175 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 118px; }\",\".framer-AHXNP .framer-fyi2j1 { height: 67px; position: relative; width: 79px; }\",\".framer-AHXNP .framer-1nn1zp { height: 31px; position: relative; width: 114px; }\",\".framer-AHXNP .framer-e21vhr { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 81px); overflow: visible; position: relative; width: 81px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AHXNP.framer-18m8rqm, .framer-AHXNP .framer-1d8rfrr, .framer-AHXNP .framer-1py77fy, .framer-AHXNP .framer-r6slhj, .framer-AHXNP .framer-v6ggui { gap: 0px; } .framer-AHXNP.framer-18m8rqm > *, .framer-AHXNP .framer-r6slhj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AHXNP.framer-18m8rqm > :first-child, .framer-AHXNP .framer-r6slhj > :first-child { margin-top: 0px; } .framer-AHXNP.framer-18m8rqm > :last-child, .framer-AHXNP .framer-r6slhj > :last-child { margin-bottom: 0px; } .framer-AHXNP .framer-1d8rfrr > *, .framer-AHXNP .framer-1py77fy > *, .framer-AHXNP .framer-v6ggui > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AHXNP .framer-1d8rfrr > :first-child, .framer-AHXNP .framer-1py77fy > :first-child, .framer-AHXNP .framer-v6ggui > :first-child { margin-left: 0px; } .framer-AHXNP .framer-1d8rfrr > :last-child, .framer-AHXNP .framer-1py77fy > :last-child, .framer-AHXNP .framer-v6ggui > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 109\n * @framerIntrinsicWidth 3935\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSyLbeszIi=withCSS(Component,css,\"framer-AHXNP\");export default FramerSyLbeszIi;FramerSyLbeszIi.displayName=\"logo-carousel\";FramerSyLbeszIi.defaultProps={height:109,width:3935};addFonts(FramerSyLbeszIi,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSyLbeszIi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"3935\",\"framerIntrinsicHeight\":\"109\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SyLbeszIi.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", "h", "u", "d", "f", "l", "g", "glide", "r", "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", "i", "__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", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "Image2", "SVG", "u", "RichText2", "css", "FramerSyLbeszIi", "withCSS", "SyLbeszIi_default", "addFonts", "TickerFonts"]
}
