{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/paRP3RbaSgBhVTCfxFbm/Un89CzVBwedysZxjBK3X/t6QzSLyTH.js", "ssg:https://framerusercontent.com/modules/sNfIyZd1gOMqFZQwz7Tn/YJnvt2NhzgzNwh7FcryK/HDNIv_mrB.js", "ssg:https://framerusercontent.com/modules/nYVQSNkKIk3e5KPvii4Q/4ohw0FB6tCizIgLRCIao/twNO8rci5.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (3e30e79)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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 cycleOrder=[\"iJLZ7w9uP\",\"eASJ9Ub7P\",\"G8l2QZnMP\"];const serializationHash=\"framer-3Vku3\";const variantClassNames={eASJ9Ub7P:\"framer-v-1anxg19\",G8l2QZnMP:\"framer-v-1v28xb3\",iJLZ7w9uP:\"framer-v-16ol43d\"};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(React.Fragment);const humanReadableVariantMap={Desktop:\"iJLZ7w9uP\",Mobile:\"G8l2QZnMP\",Tablet:\"eASJ9Ub7P\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"iJLZ7w9uP\"};};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,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iJLZ7w9uP\",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-16ol43d\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"iJLZ7w9uP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eASJ9Ub7P:{\"data-framer-name\":\"Tablet\"},G8l2QZnMP:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-orv00m\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"eJ0t4dTfN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4257b10-52e8-4ce9-938c-28d7c7b1e9f5, rgb(156, 141, 146)))\"},children:[\"+300 entreprises\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\"},children:\" accompagn\\xe9es\"})]})}),className:\"framer-17h3p4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Instrument Sans-700\",\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rrckbkfJg\",style:{\"--extracted-r6o4lv\":\"var(--token-c4257b10-52e8-4ce9-938c-28d7c7b1e9f5, rgb(156, 141, 146))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qg7vkz-container\",\"data-framer-name\":\"Ticker 03\",layoutDependency:layoutDependency,layoutId:\"ekHuMgIWQ-container\",name:\"Ticker 03\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"ekHuMgIWQ\",layoutId:\"ekHuMgIWQ\",name:\"Ticker 03\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c6yczf\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"C5R_P2Po1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jadq2y\",\"data-framer-name\":\"AlecHenry_blanc_\",fill:\"black\",intrinsicHeight:86,intrinsicWidth:580,layoutDependency:layoutDependency,layoutId:\"tRa08A1Gn\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 580.01 86.1\"><defs><style>.cls-2{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-2\" d=\"M342.56 6.25h-11.09c-.39 0-.58.2-.58.59l-.03 23.28c0 .38-.3.68-.67.68h-21.91c-.35.01-.52-.16-.52-.51l-.02-22.52V6.7c0-.29-.15-.44-.44-.44h-11.38c-.25-.01-.37.11-.37.36V67.8c0 .33.16.49.49.49l5.8-.06 5.4.09c.33 0 .5-.16.5-.49l.02-24.8c0-.35.17-.52.52-.52l22.04.07c.37 0 .55.18.55.55l.02 24.91c0 .19.15.35.34.35h11.69c.17 0 .26-.08.26-.25V6.87c0-.41-.21-.62-.62-.62Zm-45.11 1.61s-.09.05-.12.08c.04-.04.08-.06.12-.08Zm.27-.11c-.05.01-.11.01-.15.03.05-.02.1-.02.15-.03Zm-.63.74c0-.05.02-.1.03-.15-.01.05-.03.1-.03.16v-.01Zm.15-.42s-.06.08-.08.13c.02-.05.06-.08.08-.13Zm-.12 58.7c-.02-.05-.03-.11-.04-.17.01.06.03.11.04.17Zm.04.13s.04.1.07.14c-.02-.05-.05-.09-.07-.14Zm.14.28.09.12-.09-.12Zm.19.24s.07.07.11.1c-.04-.03-.08-.06-.11-.1Zm.36.27s-.09-.05-.13-.08c.04.03.09.05.13.08Zm.13.07s.09.04.14.05c-.05-.02-.1-.03-.14-.05Zm.3.1s.1.02.14.02a.59.59 0 0 1-.14-.02Zm.35.05h-.04c.09 0 .18 0 .27-.01-.08.01-.15.02-.23.02ZM191.06 16.06c-.02-1.8-.17-3.3-.46-4.51l.09-4.84c0-.41-.19-.61-.6-.61l-10.14.03c-.33 0-.49.16-.49.49v61.16c.01.32.17.48.49.48l10.86-.06c.35-15.67.43-33.05.25-52.14Zm-1.89-8.2c-.04-.05-.07-.11-.11-.15.05.04.07.1.11.15Zm.16.35c-.01-.06-.02-.13-.05-.19.03.06.03.13.05.19Zm-.95-.78c.06 0 .11.02.17.03-.07-.01-.14-.04-.21-.03h.04Zm.53.17c-.05-.03-.1-.07-.16-.1.06.02.11.06.16.1Zm-7.82 59.21c.04.05.06.11.11.16-.05-.04-.07-.1-.11-.16Zm-.15-.35c.01.06.02.13.04.19-.03-.06-.03-.13-.04-.19Zm.95.79c-.07 0-.13-.03-.19-.04.07.01.13.04.2.04h-.01Zm-.54-.18c.05.04.1.08.16.11-.06-.03-.11-.07-.16-.11ZM153.22 6.8c-.12-.35-.37-.53-.75-.53h-14.15c-.33 0-.54.15-.65.46l-21.39 61.13c-.12.35 0 .51.37.5l2.24-.05c3.21.04 6.5.07 9.87.08.19 0 .34-.04.45-.11.17-.13.23-.29.18-.48l3.42-10.18c.11-.34.35-.51.71-.51l23.71.02c.45 0 .74.21.88.64l3.32 10.02c.11.33.42.56.77.56l12.3-.02s.05 0 .07-.01c.11-.04.17-.16.13-.27L153.22 6.8Zm19.56 59.62c0-.13 0-.25-.05-.38.04.12.06.25.05.38Zm-36.83-21.59c0 .09.01.17.03.26l-.03-.26Zm9.13-23.8c.04-.12.13-.21.24-.25.2-.07.43.04.5.24l8.16 24.11s.02.08.02.12c0 .22-.17.39-.39.39l-16.23.03s-.08 0-.12-.02c-.2-.07-.32-.29-.25-.49l8.07-24.13Zm-7.84 25.83c-.06-.03-.13-.07-.19-.1.06.04.13.07.19.1Zm1.08.27c-.15 0-.29-.02-.44-.04.14.03.29.04.44.04Zm-.59-.08c-.06-.02-.12-.03-.18-.05-.03 0-.05-.02-.07-.03.08.03.16.06.25.08Zm16.06-.39Zm-.42.25c-.08.04-.17.07-.25.1.09-.03.17-.07.25-.1Zm-.45.16Zm1.23-.74Zm.51-.84Zm-.21.44c-.04.07-.09.14-.14.21.05-.07.1-.13.14-.21Zm-17.58.69c-.06-.05-.12-.09-.18-.15l.18.15Zm-.33-.31-.15-.18c.04.06.1.12.15.18Zm-.27-.38c-.04-.06-.07-.13-.11-.2.03.07.07.13.11.2Zm-.19-.41c-.03-.07-.05-.15-.07-.22.02.08.04.15.07.22Zm-.12-.96c0-.05 0-.1.01-.16 0 .05 0 .1-.01.16Zm18.85.18v-.2c0 .03.01.05.01.07 0 .04-.01.08-.01.13Zm-.07.51c.02-.08.04-.16.05-.23-.01.08-.03.16-.05.23Zm17.17 22.21s.06-.01.08-.02c-.03 0-.05.01-.08.02Zm.28-.1c.07-.04.14-.07.19-.12-.06.05-.13.08-.19.12Zm.54-.65c.02-.07.05-.13.05-.21v.07c0 .05-.04.09-.05.14Zm-.2.38c.04-.05.09-.11.12-.17-.03.06-.08.11-.12.17ZM550.9 24.24a101.5 101.5 0 0 0-5.21 7.1.27.27 0 0 0 .01.33l5.4 7.43c.12.16.08.39-.08.5-.06.04-.13.07-.21.07l-3.38-.07c-.37 0-.66-.16-.87-.46l-2.85-3.97c-.25-.35-.51-.35-.77-.01l-3.25 4.28c-.08.11-.19.16-.33.17l-4.04.05c-.21 0-.25-.07-.13-.24l5.48-7.55c.19-.25.19-.6 0-.85l-5.18-7.11c-.05-.07-.04-.16.03-.21.03-.02.06-.03.09-.03l3.99-.07c.14 0 .25.06.34.17l2.96 4.06c.24.33.48.33.72 0l2.41-3.45c.32-.46.84-.73 1.4-.73l6.98.03c.4 0 .67.18.82.55l3.65 9.1c.29.73.57.72.82-.03l3.17-9.37c.05-.17.17-.25.35-.26l3.65-.08c.09 0 .16.07.16.15 0 .02 0 .04-.01.06-3.01 8.29-5.18 14.02-6.51 17.17-1.23 2.94-3.49 4.47-6.78 4.6-.32.01-.48-.14-.48-.46v-3.02c-.01-.25.19-.45.44-.45h.05c1.68.17 2.84-.64 3.47-2.42a.97.97 0 0 0-.02-.73c-1.92-4.52-3.97-9.27-6.16-14.24-.01-.04-.06-.05-.1-.04-.01 0-.03.01-.03.03ZM580 35.99v3.6h-11.77c-.37.01-.59-.17-.66-.52-.24-1.07-.06-2.04.55-2.89 1.83-2.6 3.76-5.3 5.77-8.09.36-.49.23-.74-.38-.73l-5.1.09c-.49.01-.72-.23-.68-.73l.24-2.51c.03-.39.25-.59.64-.59h9.7c.93 0 1.69.75 1.7 1.68 0 .35-.11.69-.31.98l-6.1 8.7c-.46.65-.29.98.51.99l5.89.02ZM472.74 23.05c-5.77.31-9.95 2.84-12.56 7.61-.31.58-.46.54-.44-.12l.17-5.78c.02-.54-.24-.81-.78-.81h-10.08c-.36 0-.54.18-.54.55v43.31c0 .34.17.54.5.6.39.07.74.02 1.05-.15l9.36-.03c.34 0 .51-.17.5-.51-.07-7.25-.06-14.17.02-20.77.02-1.85.33-3.52.92-5.01 1.84-4.66 7.05-6.77 11.74-6.2.46.05.69-.15.69-.62V23.57c0-.37-.18-.55-.55-.53Z\"/><path d=\"m289.22 57.94-9.09-5.28s-.02 0-.03-.01a.558.558 0 0 0-.75.24c-.87 1.71-2.18 2.99-3.91 3.83-8.94 4.36-18.03-.95-18.07-10.88-.04-12.11 15.43-16.5 21.87-6.74.26.4.59.48 1 .23l8.48-5.02c.38-.23.45-.52.21-.89-12.61-19.12-42.91-11.15-42.9 12.4 0 11.35 5.43 18.94 16.28 22.76 5.65 1.59 11.03 1.37 16.14-.65 4.71-2.02 8.34-5.19 10.89-9.51.09-.17.04-.38-.12-.47Zm-11.5 9.18s-.04.08-.05.12c.01-.04.03-.08.05-.12Zm.3-.29Zm-.37.52v.12-.12Zm.03.23s.02.06.04.09c0-.01-.02-.02-.02-.03 0-.02 0-.04-.01-.06Z\" style=\"fill:#fff;stroke-width:0;opacity:.97\"/><path class=\"cls-2\" d=\"M439.78 34.29c-3.03-8.45-9.13-12.26-18.32-11.43-3.96.35-7.21 1.98-9.75 4.88-.94 1.09-1.31.92-1.12-.51.13-.95.18-1.89.13-2.82-.02-.33-.2-.5-.53-.5h-10.12c-.41.01-.61.22-.61.63v43.31c0 .33.27.6.6.6.51 0 .83-.05.97-.16l9.18.03c.33 0 .5-.17.51-.51 0-7.06.01-13.97.01-20.74s.37-12.05 7.22-13.49c6.52-1.38 11.41 2.03 11.44 8.74.05 8.43.06 17.02.04 25.77 0 .19.15.34.34.34l10.66-.06c.2 0 .3-.1.3-.31l-.15-22.02c.47-5.02.21-8.94-.8-11.75Zm-29.37-5.19s-.1-.04-.14-.07c.05.03.1.05.14.07Zm-.92-2.85c0-.09-.04-.16-.07-.24.03.08.06.15.07.24Zm-.1-.35c-.03-.05-.07-.09-.11-.13.04.04.08.08.11.13Zm-.22-.27s-.07-.03-.1-.05c.03.02.07.03.1.05Zm-7.4-.36c-.06 0-.12.02-.18.04.06-.02.11-.03.18-.04Zm-.33.09s-.09.06-.14.09a.42.42 0 0 1 .14-.09Zm-.26.21s-.06.09-.09.14c.03-.05.05-.09.09-.14Zm-.19.35.03-.06c-.03.09-.05.18-.05.28 0-.07 0-.14.03-.22Zm7.85-.46a1.02 1.02 0 0 0-.35-.04c.12 0 .23 0 .34.04Zm.81 3c-.07-.1-.12-.22-.17-.34.04.12.1.23.17.34Zm.06.08c.05.07.11.14.17.21-.06-.06-.12-.13-.17-.21Zm.42.41s-.1-.07-.14-.11c.05.04.09.08.14.11Zm.44.21c.05.02.1.03.15.04-.05-.01-.1-.02-.15-.04Zm.31.06c.05 0 .11 0 .16.01-.06 0-.11 0-.16-.01Zm.48-.01c-.05 0-.1.02-.16.02.05 0 .1-.01.16-.02Zm.17-.05s.09-.03.13-.04c-.02 0-.03.02-.05.02-.03.01-.06.01-.09.02Zm.38-.16s.06-.03.09-.05c-.03.02-.06.03-.09.05Zm111.85-5.09-10.76.03c-.49 0-.8.23-.95.7l-8.95 27.99-1.55.59-10.42-28.66c-.15-.41-.44-.62-.88-.62H478.8s-.08 0-.11.01c-.14.06-.2.22-.14.36l17.81 42.08c.14.34.15.72.03 1.08-1.99 5.52-5.58 8.16-10.75 7.93h-.03c-.39 0-.7.31-.7.7v9.38c0 .39.19.59.58.6 3.9.12 7.06-.37 9.48-1.47 5.83-2.65 10.06-7.54 12.7-14.68 5.47-14.82 10.99-29.94 16.56-45.35.16-.45 0-.67-.47-.67Zm-1.26 1.8-.03-.13c.01.04.03.09.03.13Zm-.05-.22-.06-.09c.02.03.05.06.06.09Zm-.13-.19s-.05-.03-.08-.05c.03.02.06.03.08.05Zm-.21-.13h.01a.538.538 0 0 0-.02-.01Zm-40.96.11Zm-.36.32s-.07.09-.09.14c.02-.05.06-.09.09-.14Zm-.15.46c0 .11.02.22.07.32a.876.876 0 0 1-.07-.32ZM109.9 30.97h-6.15l-.13-.03a.508.508 0 0 1-.36-.63l7.8-26.97c.07-.24.11-.49.1-.74 0-1.44-1.18-2.6-2.63-2.6l-7.27.05c-1.44 0-2.7.95-3.12 2.33l-8.33 27.87c-.1.34-.33.51-.69.51l-5.06.02-8.96-.22c1.53-5.07 2.94-10.07 4.25-14.98.79-2.99 1.06-5.29.79-6.92C79.03 2 71.97-1.65 65.76.85c-1.79.71-3.88 2.38-6.29 5.01-7.57 8.27-15.3 16.46-23.19 24.58-.22.22-.52.36-.83.37-3.49.11-7.6.12-12.31.04-5.3-.09-9.37.74-10.28 6.36-.79 4.83 2.91 7.83 6.11 10.66.22.2.24.55.04.78L0 69.24v1.71c.56 2.13 2.15 4.02 4.51 3.92 2.17-.09 4.28-.1 6.32-.03 1.8.06 3.07-1.04 4.24-2.25 4.57-4.75 9.08-9.53 13.53-14.36.25-.27.51-.28.77-.01 4.12 4.12 8.35 8.29 12.7 12.5 5.71 5.53 14.09 5.28 19.6-.17 1.62-1.6 2.96-4.21 4.02-7.83 1.98-6.75 3.82-12.98 5.53-18.69a.55.55 0 0 1 .53-.39l13.71.03s.06 0 .08.01c.14.04.22.2.18.34L77.7 71.49c-.07.24-.11.49-.1.73 0 1.44 1.17 2.6 2.6 2.6h7.41c1.41 0 2.66-.94 3.06-2.29l8.49-28.26c.14-.47.45-.7.94-.69l7.1.02c1.53 0 2.88-1.02 3.28-2.49l1.89-6.89c.06-.22.09-.44.09-.66 0-1.42-1.14-2.58-2.56-2.59ZM52.42 61.93c-.01.05-.04.1-.08.14-.12.12-.32.12-.44 0L38.13 48.54a.314.314 0 0 1 0-.44l4.16-4.28a.31.31 0 0 1 .22-.09l14.9-.04s.06 0 .09.01c.16.05.26.22.21.39l-5.29 17.85Zm9.17-31.34c-.04.13-.16.22-.3.22l-6.15.02c-.08 0-.15-.03-.21-.08a.314.314 0 0 1-.02-.44l8.99-9.59c.08-.08.2-.11.3-.08.16.05.26.22.22.38l-2.83 9.57Zm10.34 1.45.06-.15-.06.15Zm.14-.28s.05-.09.09-.14c-.03.04-.06.09-.09.14Zm1.46-.78c-.18 0-.36.02-.53.07.17-.05.34-.08.53-.07Zm-.6.09c-.06.02-.11.05-.17.07.06-.03.11-.05.17-.07Zm-.3.14s-.09.06-.13.09c.04-.03.09-.07.13-.09Zm-.26.19-.11.11c.03-.04.07-.08.11-.11Zm-.49.8-.03.14c0-.05.01-.1.03-.14Zm-.05.32v.08-.08Zm-.66 9.36c.01.06.02.13.04.19-.03-.06-.03-.13-.04-.19Zm.15.35c.04.05.06.11.11.16-.04-.04-.07-.1-.11-.16Zm.26.26c.05.04.1.08.16.11-.06-.03-.11-.07-.16-.11Zm.53.18c-.07 0-.12-.03-.19-.04.07.01.13.04.2.04Z\"/><circle class=\"cls-2\" cx=\"531.45\" cy=\"37.34\" r=\"2.49\"/><path class=\"cls-2\" d=\"M225.61 23.35c-13.94-2.74-26.14 4.59-28.47 19.21-.39 1.79-.43 3.9-.11 6.34 1.6 10.61 7.27 17.18 17 19.71 4.08 1.07 8.9 1.04 12.99.32 4.97-.87 9.34-3.6 13.13-8.18.35-.42.28-.77-.19-1.04l-8.04-4.62c-.29-.17-.56-.14-.8.1-4.38 4.31-9.68 5.27-15.9 2.88-3.01-1.16-5.03-3.25-6.07-6.27l-.12-.29c-.11-.27-.01-.41.28-.42l10.99-.27 21.48-.02c.41 0 .65-.2.72-.61 1.96-11.73-4.95-24.49-16.89-26.84Zm12.83 37.64c.02-.05.04-.11.05-.17-.01.06-.03.11-.05.17Zm.08-.33c0-.06 0-.11-.01-.16 0 .06.02.11.01.16Zm-.13-.47s.05.09.07.14c-.02-.05-.05-.1-.07-.14Zm-.14-.2s.03.04.04.06a.91.91 0 0 0-.21-.18c.06.03.12.07.17.12Zm-29.22-17.94c-.07 0-.12-.05-.12-.12v-.03c0-4.94 4.91-8.96 10.99-8.97h.22c6.08-.01 11.02 3.99 11.03 8.93v.03c0 .07-.05.12-.12.12l-22 .04Zm180.19-9.74c-5.5-8.37-14.89-10.94-24.46-8.85-15.33 3.35-21.24 21.02-14.57 34.09 3.02 5.9 7.9 9.51 14.63 10.82 4.53 1.58 9.75 1.53 15.66-.16 4.27-1.55 7.68-4.11 10.25-7.68.23-.32.17-.58-.17-.78l-7.9-4.65c-.39-.23-.74-.18-1.05.14-3.52 3.57-7.89 4.84-13.12 3.8-4.42-.88-7.44-3.45-9.06-7.7.03-.29.15-.44.37-.43 3.73.06 6.83-.09 9.29-.45l23.5.3c.34 0 .53-.17.58-.51.86-6.65-.46-12.63-3.95-17.94Zm-29.47 9.66a.795.795 0 0 1-.44-1.04c2.43-6.15 6.96-8.79 13.59-7.91 4.6.61 7.7 3.73 8.96 8.21.15.54-.05.81-.61.81h-21.2c-.1-.01-.2-.03-.3-.07Zm32.03 7.41s.09-.08.13-.12c-.04.04-.08.08-.13.12Zm-.33.15Zm.7-.75c.02-.1.03-.19.01-.29.01.07.01.15 0 .22 0 .03-.02.05-.02.07Zm-.13.34s.05-.1.07-.16c-.02.05-.04.11-.07.16Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jegrw1\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"Ppegx6i7L\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vcmh5g\",\"data-framer-name\":\"Apili_blanc_\",fill:\"black\",intrinsicHeight:105,intrinsicWidth:300,layoutDependency:layoutDependency,layoutId:\"wg6mpQDYn\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 299.74 104.99\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><circle class=\"cls-1\" cx=\"182.24\" cy=\"16.98\" r=\"16.98\"/><circle class=\"cls-1\" cx=\"281.67\" cy=\"16.98\" r=\"16.98\"/><path class=\"cls-1\" d=\"m127.73 79.8-.07 23.76c0 .43-.22.64-.64.63l-32.04-.57c-.32 0-.48-.17-.49-.48l-1.7-92.76c0-.35.17-.54.52-.57C108.66 8.65 121.3 8 131.23 7.85c32.05-.47 39.95 34.77 27.99 58.05-5.44 10.6-19.99 13.23-30.75 13.17-.49 0-.73.24-.74.73Zm-.28-47.69.48 19.7c.01.26.22.46.48.45h.16c5.03-.12 9.01-4.44 8.88-9.64l-.04-1.8c-.13-5.2-4.31-9.31-9.34-9.19h-.16c-.26 0-.47.22-.46.48ZM55.03 89.3l-17.67.5a.31.31 0 0 0-.3.26l-2.81 13.18c-.03.15-.16.25-.31.25l-33.61.41a.33.33 0 0 1-.33-.31v-.08L23.8 9.64c.04-.14.16-.24.3-.24l41.18-1.06c.15 0 .28.09.32.23l26.96 94.54c.04.17-.06.35-.23.39-.02 0-.05 0-.07.01l-33.62.23a.32.32 0 0 1-.31-.26l-2.97-13.93a.316.316 0 0 0-.33-.25Zm-9.88-53.94-4.58 27.8c-.03.14.03.21.18.2l8.93-.39c.19-.01.27-.11.24-.29l-4.18-27.31c-.19-1.24-.38-1.24-.59 0Zm216.54 37.63-1.09 30.4c0 .19-.16.34-.35.34l-53.78-.11c-.19 0-.35-.16-.35-.35v-.01l2.16-94.68c0-.19.17-.35.36-.34l30.34 1.04c.19 0 .35.17.34.36l-2 62.57c0 .19.15.35.34.36h.01l23.67.06c.19 0 .35.16.35.35v.01Zm-63.07-35.82 1.67 66.54c0 .19-.15.35-.34.36l-31.9.91c-.19 0-.35-.15-.36-.34v-.01l-.17-66.59c0-.19.15-.34.34-.35l30.4-.86c.19 0 .35.15.36.34Zm99.42 0 1.7 66.53c0 .19-.14.34-.33.35l-32.01.94c-.19 0-.34-.14-.35-.33v-.01l-.12-66.63c0-.18.15-.33.33-.34l30.43-.84c.19 0 .34.14.35.33Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14yim0o\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"bm65ATFzM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qz422z\",\"data-framer-name\":\"Be_Lost_blanc_\",fill:\"black\",intrinsicHeight:62,intrinsicWidth:447,layoutDependency:layoutDependency,layoutId:\"Xftw6rkrG\",style:{opacity:.7},svg:'<svg data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 447.04 61.58\"><path d=\"m403.91 2.94 10.45.07 9.69.03 10.68-.1c2.94.06 7.02.23 9.68-.92.3-.13.52-.34.67-.63.31-.61.96-1.07 1.96-1.39l-.79 9.36v9.01c0 .33-.26.6-.59.61a.62.62 0 0 1-.32-.09c-.22-.13-.48-.39-.78-.76-.71-8.93-5.48-13.36-14.32-13.28-3.12.03-4.74 1.23-4.85 3.61-.08 15.36-.1 30.63-.05 45.82.02 4.93 3.69 5.13 7.47 4.96.3-.01.56.09.77.3.14.14.2.31.19.52-.03.31-.18.52-.46.64-.21.09-.47.14-.79.17-7.92-.72-15.73-.71-23.44.04-1.15-.38-1.4-.88-.73-1.51.11-.1.26-.16.41-.15 2.27.13 4.43-.25 6.48-1.13.15-.06.25-.16.31-.3l.1-.26.69-3.57c.05-15.15.01-30.31-.1-45.46 0-1.35-.52-2.37-1.53-3.08-10.47-2.72-16.96 4.02-18.88 13.47-.91.22-1.41-.36-1.5-1.75.87-2.47 1.12-4.7.77-6.69.74-3.12.95-6.33.63-9.63-.03-.29.17-.54.46-.58.12-.01.25.02.35.09.49.33.87.82 1.14 1.49.13.31.37.48.7.52l5.53.57ZM278.77 1.77c3.11.1 6.17.71 9.16 1.82 7.01 2.87 12.17 7.76 15.48 14.65 6.93 15.93.27 32.45-14.95 39.94l-9.17 3c-.23.15-.51.17-.85.05-7.89 1.11-15.12-.46-21.69-4.7-5.3-3.71-8.95-8.66-10.96-14.87-1.34-4.47-1.8-9.01-1.38-13.64l2.03-8.1 1.5-2.85 5.99-7.19 2.6-2.03c3.39-2.21 7.06-3.85 11.01-4.9 3.62-1 7.36-1.39 11.23-1.18Zm-12.14 3.39c-2.52.87-4.72 2.3-6.59 4.29-2.71 3.09-4.41 6.71-5.1 10.85-1.14 6.05-1.04 11.99.3 17.8l.68 2.56c2.17 8.01 7.91 16 16.26 18.09 12.53 2.9 21.56-5.97 23.42-17.72.61-3.5.75-7.05.42-10.64-.13-4.01-.94-7.84-2.45-11.49-2.9-7.41-7.94-12.16-15.11-14.24-4.21-.9-8.15-.73-11.83.5Zm100.4 4.2.22 8.35a.672.672 0 0 1-1.01.6.843.843 0 0 1-.42-.52c-1.33-4.31-4.25-10.86-8.69-13.04-1.99-.97-4.14-1.3-6.45-.98-3.78.21-6.3 2.03-7.56 5.44-1.13 4.55-.12 8.42 3.05 11.63l4.46 3.76c4.84 2.94 8.91 5.63 12.22 8.07 3.04 2.25 5.13 5.13 6.27 8.65.55 2.65.57 5.14.06 7.49-2.18 8.42-9.7 12.25-17.92 12.72-5.41.32-10.5-.8-15.27-3.35-1.29-.69-1.43-1.53-1.29-2.9l-.8-13.46c.15-.25.27-.37.38-.35.26.04.5.14.71.29.18.12.32.32.41.6.93 2.7 2.26 5.39 3.99 8.08.14.45.49.99 1.04 1.61 2.79 4.89 6.78 7.38 11.97 7.49 4.98-.27 7.98-2.41 9.01-6.43.8-5.46-.53-9.86-3.98-13.21l-5.16-4.24c-3.33-2.17-6.65-4.38-9.97-6.65-2.48-1.69-4.36-3.81-5.64-6.35-3.24-6.38-1.29-13.28 4.44-17.54 7.65-4.11 15.97-4.45 24.96-1.03.57.22.87.63.88 1.24l.09 4.03ZM35.54 5.55c1.58 1.25 2.84 2.72 3.77 4.43.97 2.63 1.06 5.47.26 8.5-1.73 4.2-4.69 7.15-8.88 8.86-1.3.53-1.25.89.14 1.09 2.82.41 5.53 1.4 8.14 2.99 11.22 8.11 7.66 22.48-4.02 27.59-3.3 1.34-5.87 1.96-7.71 1.85-7.92-.47-15.82-.58-23.71-.31-1.19.32-2.26.27-3.21-.16a.472.472 0 0 1-.3-.38.436.436 0 0 1 .02-.3c.13-.29.36-.44.68-.44 3.21 0 6.68-.27 6.7-4.49.09-15.56.08-31.11-.01-46.66-.01-1.73-.82-2.88-2.42-3.47L.56 3.96a.3.3 0 0 1-.21-.17l-.23-.6C0 2.89.1 2.75.43 2.76l3.33.09c5.13.31 11.45.2 18.98-.33 4.35-.3 8.62.71 12.8 3.03ZM16.49 19.82l-.03 7.88c0 .23.17.43.4.45 5.47.55 10.75-.49 13.23-6.02 1.77-3.97 1.8-8.25.08-12.86-2.09-4.19-6.48-5.37-10.91-4.61-2.13.37-2.71 2.53-2.74 4.37-.09 4.92-.1 8.52-.03 10.79Zm.02 21.79v8.32c-.27 3.17-.43 7.35 2.56 8.26 1.93.59 4.14.73 6.63.42 4.65-.19 7.88-2.34 9.69-6.44 1.12-3.63 1.22-7.5.29-11.63-1.41-5.29-4.78-8.56-10.11-9.79l-8.46-.17c-.37-.01-.55.16-.55.53l-.05 10.5ZM77.99 2.82l10.67.02h10.23l11.27.08c.68 1.76.85 3.85.51 6.28l.26 6.19c.02.37-.15.58-.52.64-.31.05-.66-.03-1.06-.25-.12-5.79-5.27-10.11-10.88-10.43-4.65-.26-11.64-1.14-11.46 4.67l.03 8.57v10.14c-.01.35.17.53.52.52l12.2-.18c4.05-.59 6.1-2.73 6.16-6.41 0-.29.24-.52.52-.51h.04l.33.04c.3.03.53.28.53.59l-.18 11.96.26 4.83c-.4.31-.86.31-1.39-.02.09-4-1.95-6.48-6.12-7.45l-12.33-.47c-.37-.01-.56.17-.56.54l.04 5.09v10.82c-.16 2.75-1.17 9.19 2.86 9.82 2.81.43 6.34.42 10.61-.04 6.27-1.23 10.22-5.07 11.86-11.5.08-.31.28-.44.6-.39l.57.1c.29.05.42.22.37.51l-.76 4.81-.36 8.04a.88.88 0 0 1-.46.77c-.41.25-1 .42-1.78.52l-11.6-.14-10.37-.04-18.24-.14 6.87-2.55c.32-.11.49-.34.51-.69l.4-6.44-.1-11.09.02-8.23V19.19l-.07-8.77c.18-1.51.09-2.92-.28-4.22-.09-.34-.29-.61-.58-.8-1.61-1.06-3.52-1.49-5.71-1.28a.518.518 0 0 1-.56-.45v-.03l-.02-.27c-.03-.44.18-.66.63-.65l6.52.1Zm105.04.19 11.68-.12 3.69-.17c.41-.01.61.18.6.59v.44c0 .27-.14.39-.4.38-.93-.03-1.87.01-2.82.13-3.33.43-3.78 2.37-3.79 5.47-.02 14.93-.03 29.87-.03 44.8 0 1.58.75 2.67 2.26 3.28l11.34.22c7.81-1.04 12.71-5.34 14.68-12.91.1-.37.4-.65.78-.71l.26-.05c.27-.05.39.06.36.33l-.66 6.86-.35 8.14c-.01.36-.2.55-.55.58l-3.89.3h-10.23l-12.79.16c-5.21-.29-10.68-.29-16.43 0-.34.02-.67-.14-.99-.47a.675.675 0 0 1 .05-.52c.16-.3.41-.45.74-.45 5.04-.01 6.87-1.09 6.38-6.62l.03-12.3V19.31l-.01-8.85c.39-6.01-1.98-6.14-6.86-6.48-.29-.03-.41-.18-.36-.47l.05-.27c.07-.37.3-.55.69-.54l6.57.31Z\" style=\"fill:#fff;stroke-width:0\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u4b53b\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"Hjq7lT975\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ru1gi\",\"data-framer-name\":\"Inved_blanc_\",fill:\"black\",intrinsicHeight:206,intrinsicWidth:876,layoutDependency:layoutDependency,layoutId:\"V5pjZacMw\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 876.17 205.51\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><rect class=\"cls-1\" width=\"96\" height=\"57.5\" rx=\".32\" ry=\".32\"/><path class=\"cls-1\" d=\"M207.26 57.13c0 .2-.17.37-.37.37h-92c-.2 0-.37-.17-.37-.37V.37c0-.2.17-.37.37-.37h92c.2 0 .37.17.37.37v56.76Zm-5-51.47c0-.23-.18-.41-.41-.41h-81.92c-.23 0-.41.18-.41.41v46.18c0 .23.18.41.41.41h81.92c.23 0 .41-.18.41-.41V5.66ZM362.4 53.35c-1.12 4.17-3.84 7.03-8.17 8.58-4.69 1.69-11.01 1.09-14.95-2.36-6.57-5.77-6.4-17.35 1.3-22.58 1.41-.95 3.03-1.39 4.86-1.31 2.75.12 5.31.13 7.68.03 1.53-.06 2.93.4 4.2 1.39 5.21 4.03 6.91 9.45 5.08 16.25ZM799.79 87.5c.48.63.72.55.72-.24V36.5c0-.5.25-.75.75-.75h23c.33 0 .5.17.5.5v136c0 .28-.22.5-.5.5h-21.58c-.39 0-.61-.2-.66-.59l-1.35-11.42c-.08-.67-.32-.73-.71-.18-9.72 13.44-26.1 16.26-41.77 13.2-29.04-5.66-41.49-30.77-37.98-58.84 2.74-21.97 16.33-36.9 38.99-40.7 8.49-1.43 16.65-.73 24.46 2.1 7.03 2.53 12.4 6.26 16.13 11.18Zm-25.09 64.88c15.22-1.87 26.01-15.98 24.1-31.51-1.91-15.54-15.79-26.61-31.01-24.75-15.22 1.87-26.01 15.98-24.1 31.51 1.91 15.54 15.79 26.61 31.01 24.75Zm-143.87-18.85c2.45 11.67 11.41 17.77 22.78 19.33 10.19 1.39 23.32-1.24 31.26-8.3.29-.25.57-.25.85.02l14.73 14.39c.17.17.18.44.02.61-8.79 9.93-24.37 14.72-37.76 15.51-26.37 1.56-49.92-10.93-55.58-38.34-1.8-8.74-1.85-18.94.37-27.32 7.27-27.37 30.51-38.75 57.61-36.06 7.91.78 14.9 3.02 20.97 6.73 13.04 7.95 19.52 22.49 20.29 37.36.26 5.05.22 10.05-.11 15.02-.02.35-.21.52-.56.52h-74.44c-.24 0-.44.2-.44.44v.09ZM683 112.67c-2.62-14.92-15.85-19.72-29.37-18.03-11.26 1.4-18.7 7.33-22.33 17.8-.08.22.04.46.26.54.05.02.09.02.14.02h51.03c.22 0 .31-.11.27-.33Zm-475.73 18.19c0 .22-.17.39-.39.39H114.9c-.22 0-.39-.17-.39-.39V74.38c0-.22.17-.39.39-.39h91.98c.22 0 .39.17.39.39v56.48Zm-5.01-51.44c0-.23-.19-.42-.42-.42h-81.9c-.23 0-.42.19-.42.42v46.16c0 .23.19.42.42.42h81.9c.23 0 .42-.19.42-.42V79.42ZM95.76 205.17c0 .19-.15.34-.34.34H.34c-.19 0-.34-.15-.34-.34V74.59c0-.19.15-.34.34-.34h95.08c.19 0 .34.15.34.34v130.58Zm-5-125.57c0-.19-.16-.35-.35-.35H5.61c-.19 0-.35.16-.35.35v120.3c0 .19.16.35.35.35h84.8c.19 0 .35-.16.35-.35V79.6Zm318.83 8.39c.02.2.2.34.4.31.09-.01.17-.05.23-.11 11.6-12.31 28.05-16.97 44.19-11.83 14.1 4.5 23.09 16.59 26.44 30.8 1.05 4.42 1.54 10.31 1.48 17.66-.12 15.49-.13 31.3-.02 47.41 0 .28-.22.51-.5.52h-23.27c-.15 0-.28-.13-.28-.28 0-17.33 0-33.9-.02-49.72-.02-15.49-8.53-27.66-25.44-26.32-10.42.82-18.5 8.69-21.26 18.6-.77 2.75-1.14 6.31-1.11 10.66.12 16.16.13 31.6.04 46.33 0 .4-.34.73-.74.73h-22.47c-.41 0-.75-.34-.75-.75V76.5c0-.41.34-.75.75-.75h20.3c.38 0 .59.19.64.56l1.39 11.68Z\"/><rect class=\"cls-1\" x=\"336.75\" y=\"75.5\" width=\"24.26\" height=\"97.24\" rx=\".38\" ry=\".38\"/><path class=\"cls-1\" d=\"M545.64 146.85c.27.75.55.75.82 0 3.61-9.87 7.16-19.64 10.66-29.31 5.01-13.82 10.98-27.72 16.63-41.43.1-.24.28-.36.54-.36h25.74c.18 0 .24.08.17.25l-40.85 96.47c-.15.35-.41.53-.8.53h-24.92c-.39 0-.75-.24-.91-.6l-40.93-96.22c-.07-.16 0-.34.17-.41.04-.02.08-.02.12-.02h25.45c.32 0 .54.15.66.44 5.71 13.64 11.83 27.71 16.87 41.64 3.67 10.15 7.2 19.83 10.58 29.02Z\"/><rect class=\"cls-1\" x=\"848.2\" y=\"146.17\" width=\"27.86\" height=\"28.06\" rx=\"12.66\" ry=\"12.66\" transform=\"rotate(-89.6 862.132 160.197)\"/><path class=\"cls-1\" d=\"M207.26 205.13c0 .2-.17.37-.37.37h-92c-.2 0-.37-.17-.37-.37v-56.76c0-.2.17-.37.37-.37h92c.2 0 .37.17.37.37v56.76Zm-5-51.47c0-.23-.18-.41-.41-.41h-81.92c-.23 0-.41.18-.41.41v46.18c0 .23.18.41.41.41h81.92c.23 0 .41-.18.41-.41v-46.18Z\"/><ellipse class=\"cls-1\" cx=\"658.87\" cy=\"176.05\" rx=\".27\" ry=\"3.58\" transform=\"rotate(-89.8 658.869 176.05)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u3e7w2\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"U3BSoy1Nw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g113i\",\"data-framer-name\":\"Mentor_show_blanc_\",fill:\"black\",intrinsicHeight:117,intrinsicWidth:985,layoutDependency:layoutDependency,layoutId:\"T_chlhmKV\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 984.76 117.22\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M62.68 74.63c.33.33 1.19-.12 2.57-1.35.28-.25.42-.18.42.19l.05 16.8c0 .31-.11.36-.33.15-.13-.12-.15-.25-.08-.38.26-.46.18-.83-.24-1.12-.43-.29-.65-.7-.68-1.24 0-.14-.08-.21-.21-.21s-.2.05-.21.16c-.03.31-.06.31-.09 0-.17-1.71-.65-2.36-1.45-1.95l-1.69-3.52c-.06-.14-.22-.19-.36-.13-.06.03-.11.08-.14.14l-10.85 23.28a.32.32 0 0 1-.54.06L28.84 80.26c-.34-.43-.51-.37-.51.18v36.26c0 .35-.17.52-.52.52H.52c-.35 0-.52-.17-.52-.52V.5C0 .09.13.04.39.36l62.29 74.27Z\"/><path class=\"cls-1\" d=\"M62.43 85.68c.8-.41 1.28.24 1.45 1.95.03.31.06.31.09 0 .01-.11.08-.17.21-.16.13 0 .2.07.21.21.03.54.25.95.68 1.24.42.29.5.66.24 1.12-.07.13-.05.26.08.38.22.21.33.16.33-.15l-.05-16.8c0-.37-.14-.44-.42-.19-1.38 1.23-2.24 1.68-2.57 1.35L124.98.27c.35-.41.52-.35.52.19v116.03c0 .4-.32.73-.73.73H93.54c-.33 0-.5-.17-.5-.5V80.43c0-.53-.17-.6-.51-.19l-20.48 24.74c-.25.3-.45.27-.62-.08l-9-19.22Zm110.28 10.04h-8.42c-.19 0-.35-.16-.35-.35l-.02-71.24c0-.19.14-.36.34-.36.12 0 .24.05.3.15l33.71 47.89a.35.35 0 0 0 .57 0l34.18-47.85c.11-.16.33-.2.49-.09.1.07.16.18.15.29l-.02 71.22c0 .19-.16.35-.35.35l-8.58-.02c-.19 0-.35-.16-.35-.35l.04-44.08c0-.19-.15-.35-.35-.35a.35.35 0 0 0-.29.15l-25.02 35.54a.35.35 0 0 1-.57 0l-24.51-34.31a.353.353 0 0 0-.49-.09c-.1.07-.16.18-.15.29l.04 42.86c0 .19-.16.35-.35.35Zm216.23-70h8.8c.17 0 .3.13.3.3l.02 71.6c0 .17-.13.3-.29.31a.31.31 0 0 1-.22-.09l-50.83-51.01a.3.3 0 0 0-.42-.02c-.06.06-.1.14-.1.23l.19 48.37c0 .17-.13.3-.3.3h-8.86c-.17 0-.3-.12-.3-.29V23.88c0-.17.13-.3.29-.31.09 0 .17.03.23.1l50.87 52.37c.11.12.3.13.42.02.06-.06.1-.14.1-.23l-.2-49.81c0-.17.13-.3.3-.3ZM559.29 60.8c0 19.84-16.08 35.92-35.92 35.92s-35.92-16.08-35.92-35.92c0-19.84 16.08-35.92 35.92-35.92 19.84 0 35.92 16.08 35.92 35.92Zm-34.82 27c14.46-.56 25.73-13.12 25.15-28.06-.57-14.94-12.77-26.6-27.23-26.04-14.46.56-25.73 13.12-25.15 28.06.57 14.94 12.77 26.6 27.23 26.04Zm354.82-27c0 19.84-16.08 35.92-35.92 35.92-19.84 0-35.92-16.08-35.92-35.92 0-19.84 16.08-35.92 35.92-35.92 19.84 0 35.92 16.08 35.92 35.92Zm-34.82 27c14.46-.56 25.73-13.12 25.15-28.06-.57-14.94-12.77-26.6-27.23-26.04-14.46.56-25.73 13.12-25.15 28.06.57 14.94 12.77 26.6 27.23 26.04Zm-571.2-22.73v21.3c0 .19.16.35.35.35h36.96c.19 0 .35.16.35.35v8.3c0 .19-.16.35-.35.35h-46.31c-.19 0-.35-.16-.35-.35v-69.3c0-.19.16-.35.35-.35h44.91c.19 0 .35.16.35.35l-.01 8.3c0 .19-.16.35-.35.35h-35.56c-.19 0-.35.16-.35.35v20.3c0 .19.16.35.35.35h31.68c.19 0 .35.16.35.35l.02 8.3c0 .19-.16.35-.35.35h-31.7c-.19 0-.35.16-.35.35Zm168.34-30.35h-17.4c-.24 0-.44-.2-.44-.44l.07-8.11c0-.24.2-.44.44-.44l45.67-.02c.24 0 .44.2.44.44v8.13c0 .24-.2.44-.44.44h-17.98c-.24 0-.44.2-.44.44v60.11c0 .24-.2.44-.44.44h-8.6a.429.429 0 0 1-.44-.43V35.16c0-.24-.2-.44-.44-.44Zm153.66 35.76v25.06c0 .09-.08.17-.17.17h-9.04c-.09.01-.13-.03-.13-.12V26.27c.01-.37.19-.55.56-.55h21.05c.48 0 .95.08 1.41.23.4.13 1 .25 1.8.34 15.13 1.79 22.5 16.47 16.98 30.48-1.85 4.69-4.96 8.1-9.32 10.21a.62.62 0 0 0-.28.83c0 .02.02.03.03.05l17.23 27.64s.02.11-.02.14c-.02.01-.04.02-.06.02-2.43.08-5.96.09-10.59.04-.13 0-.23-.05-.3-.16l-15.98-25.3a1.13 1.13 0 0 0-.94-.52h-11.47c-.51 0-.76.25-.76.76Zm-.01-35.45v25.42c0 .17.13.3.3.3h11.6c6.98 0 12.64-5.74 12.64-12.83v-.36c0-7.09-5.66-12.83-12.64-12.83h-11.6c-.17 0-.3.13-.3.3Zm79.18-8.88c.08-.05.16-.11.24-.17.15-.11.31-.18.49-.19 8.71-.58 16.87 1.14 24.5 5.16.11.05.16.18.1.29l-3.51 7.01c-.09.18-.23.22-.4.11-3.8-2.21-7.98-3.7-12.54-4.48-3.13-.54-6.27-.26-9.43.84-5.45 1.9-8.05 8.04-4.94 12.94 2.8 4.4 10.81 7.28 15.59 8.96 9.06 3.16 15.9 8.7 16.1 19.07.17 9.01-3.86 15.33-12.1 18.96-2.28 1.01-4.77 1.64-7.46 1.91-5.43.54-11.02-.19-16.79-2.18-3.78-1.3-6.94-2.84-9.49-4.62-.18-.13-.21-.28-.1-.47l3.91-6.82c.09-.16.21-.19.36-.08 4.47 3.17 9.4 5.21 14.8 6.14 3.15.54 6.33.18 9.53-1.07 6.47-2.53 8.79-7.16 6.96-13.87-1.13-4.15-6.72-7.1-10.56-8.66-7.85-3.21-19.14-6.76-21.27-16.37-2.4-10.83 3.58-19.54 14.42-22.29.22-.06.44-.05.67.02.31.1.65.04.92-.15Zm61.83 38.96v30.21c0 .22-.17.39-.39.39h-8.56a.37.37 0 0 1-.39-.38V26.1c0-.22.17-.39.39-.39l8.56.02c.22 0 .39.17.39.39v29.21c0 .22.17.39.39.39h36.16c.22 0 .39-.17.39-.39V26.11a.37.37 0 0 1 .38-.39h8.55c.22 0 .39.17.39.39v69.21c0 .22-.17.39-.39.39h-8.55a.37.37 0 0 1-.39-.38s.01-30.22.01-30.22c0-.22-.17-.39-.39-.39h-36.16c-.22 0-.39.17-.39.39Zm220.72 9.63c.28.73.55.72.81-.02l16.8-48.71c.06-.18.23-.3.41-.3l9.65.02c.09 0 .12.04.09.13-9.55 25.18-18.52 48.89-26.93 71.12-.09.23-.16.46-.22.7-.23 1-.53 1.02-.9.07l-15.73-40.26c-.17-.45-.36-.45-.55 0-5.21 12.27-10.99 25.85-17.33 40.75-.05.13-.13.23-.23.32-.15.13-.26.1-.33-.08l-27.51-72.1c-.17-.44-.02-.66.45-.66h9.64c.42 0 .7.2.84.59l17.71 49.86c.17.49.35.49.53.01l11.64-30.67c.14-.36.14-.72 0-1.07l-7.18-18.49c-.05-.15 0-.22.15-.22l8.77-.02c.21 0 .36.1.44.3l18.98 48.73Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nvnlsq\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"JOiPHXLpT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-funynn\",\"data-framer-name\":\"Crypto_Recherche_blanc_\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:327,layoutDependency:layoutDependency,layoutId:\"ngOZzAVQX\",style:{opacity:.7},svg:'<svg data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 327.18 71.98\"><path d=\"M25.59 32.01c.64 0 .74-.23.29-.68L8.41 13.86c-.26-.26-.26-.52-.01-.78l4.62-4.65c.29-.29.59-.29.88 0 5.91 5.83 11.66 11.58 17.26 17.25.13.13.28.21.45.23.21.03.41-.12.44-.33v-.05l-.02-24.51c0-.65.33-.97.98-.98L39.04 0c.67 0 1 .32 1 .99v69.74c0 .83-.41 1.25-1.24 1.25h-5.77c-.54-.01-.98-.45-.99-1V46.83c0-.85-.3-.97-.9-.37L14.18 63.39c-.77.77-1.54.77-2.31 0l-3.22-3.21c-.77-.77-.77-1.53 0-2.29l17.22-17.21c.15-.15.16-.4 0-.55a.363.363 0 0 0-.28-.12H1.05c-.55 0-1-.46-1.01-1.01L0 33.01c0-.69.33-1.03 1.02-1.02l24.57.02Zm41.48-5.83c1.81-.3 3.87-1.34 3.93-3.37 0-.32.26-.57.58-.57h5.99c.42 0 .62.21.61.63-.19 4.99-2.58 8.17-7.18 9.54-5.51 1.64-13.81 1.44-18.57-2.01-3.15-2.29-4.91-5.86-5.26-10.73-.72-9.71 2-17.99 13.14-18.82 8.07-.61 17.07.78 17.71 10.64.04.53-.2.79-.73.79l-5.79-.02c-.39 0-.61-.19-.68-.57-.7-3.97-6.37-4.27-9.59-3.96-6.16.59-6.95 6.33-6.38 11.28.8 6.93 6.47 8.14 12.22 7.17Zm164.17-6.38c-.01 7.47-6.08 13.51-13.54 13.5H213c-7.47-.02-13.51-6.08-13.5-13.55s0-5.42 0-5.42c.01-7.47 6.08-13.51 13.54-13.5h4.7c7.47.02 13.51 6.08 13.5 13.55s0 5.42 0 5.42Zm-7.71-4.73a7.362 7.362 0 0 0-7.32-7.38h-1.68c-4.06-.02-7.36 3.26-7.38 7.32v4c-.03 4.06 3.25 7.36 7.31 7.38h1.68c4.06.02 7.36-3.26 7.38-7.32v-4Zm-98.12-4.87 5.84-8.62c.06-.09.16-.14.27-.14l8.18-.04c.18 0 .33.14.34.32 0 .07-.02.14-.06.2l-11.11 16.34a.3.3 0 0 0-.06.18l.03 13.93c0 .18-.15.33-.33.33h-6.81a.349.349 0 0 1-.33-.34l.03-14.05a.3.3 0 0 0-.06-.18L110.3 1.92a.326.326 0 0 1 .08-.46.36.36 0 0 1 .2-.06l8.25.05c.11 0 .21.06.27.15l5.77 8.59c.1.15.31.19.46.09.03-.02.06-.05.08-.08Zm24.43 13.81.11 8.25c0 .23-.19.42-.42.42l-6.72.02c-.24 0-.44-.2-.44-.44V2c0-.38.19-.57.58-.58 5.17 0 10.44.02 15.83.07 5.23.05 10.16 2.24 10.98 8.06 1.5 10.78-4.36 14.05-13.49 13.86-2-.04-3.96-.03-5.88.02-.37 0-.56.2-.55.58Zm0-15.39.04 7.7c0 .2.16.36.36.36l8.04-.04c2.23-.01 4.03-1.55 4.02-3.44v-1.58c0-1.89-1.83-3.41-4.06-3.4l-8.04.04c-.2 0-.36.16-.36.36Zm-48.9 13.79c2.45 3.26 5.04 6.64 7.77 10.15.01.02 0 .04-.01.05h-.02c-2.95.08-5.88.1-8.8.06-.2 0-.36-.08-.49-.24l-7.22-9.59c-.29-.38-.67-.57-1.14-.57h-1.67c-.44-.02-.66.2-.66.64l.04 9.57c0 .13-.07.2-.2.2h-7.03c-.15 0-.23-.08-.23-.23V2.01c0-.34.18-.51.52-.52 7.07-.18 12.82-.12 17.27.17 6.95.45 10.17 4.3 9.68 11.55-.33 4.84-2.83 7.66-7.52 8.46-.51.09-.6.33-.29.74ZM88.7 8.56v6.6c0 .18.15.33.33.33h8.12c2.25 0 4.07-1.53 4.07-3.42v-.42c0-1.89-1.82-3.42-4.07-3.42h-8.12c-.18 0-.33.15-.33.33Zm99.82-.01v23.83c0 .18-.13.32-.31.32l-6.87-.03c-.18 0-.32-.14-.32-.32l.05-23.79c0-.18-.14-.32-.32-.32h-8.67c-.18 0-.32-.15-.32-.33l-.02-6.15c0-.18.14-.32.32-.32h25.42c.18 0 .32.14.32.32s-.04 6.15-.04 6.15c0 .18-.14.32-.32.32h-8.6c-.18 0-.32.14-.32.32Zm-73.26 48.41c.5 4.22 3.17 6.56 7.35 6.95 2.57.24 8.39.17 8.72-3.38.07-.72.46-1.04 1.17-.96 1.72.19 3.37.2 4.96.03.81-.09 1.18.27 1.11 1.08-.8 9.9-10.26 10.86-18.08 9.99-7.18-.79-11.39-4.47-12.64-11.02-1.63-8.62.2-19.32 10.68-20.95 8.3-1.29 19.28-.3 19.83 10.44.03.45-.19.67-.64.68l-5.77.02c-.35 0-.58-.17-.67-.51-.59-2.19-2.26-3.49-5.03-3.88-9.03-1.28-12.01 2.88-10.99 11.51Zm133 6.81c2.43.4 9.31.57 9.63-3.05.07-.79.51-1.16 1.3-1.09 1.72.14 3.37.13 4.95-.02.81-.08 1.18.28 1.11 1.09-.79 9.18-8.64 10.53-16.37 10.14-12.96-.66-16.44-10.11-14.31-21.79 1.02-5.64 4.82-9.39 10.5-10.33 8.16-1.34 19.17-.38 19.95 10.13.05.64-.25.96-.9.97h-5.36c-.58 0-.93-.28-1.04-.85-.75-3.71-6.39-3.95-9.63-3.64-6.22.6-6.83 6.73-6.18 11.66.48 3.69 2.6 6.17 6.35 6.78ZM55.48 60.41v9.63c0 .16-.07.24-.24.24l-7.16-.02c-.16 0-.24-.08-.24-.23V39.51c0-.37.2-.55.57-.54 3.75.08 7.91.08 12.49 0 9.1-.17 15.96 2.05 14.41 12.98-.57 4.05-3.03 6.5-7.36 7.35-.25.05-.42.3-.37.55.01.07.05.14.09.2l7.67 10.02c.04.06.03.15-.03.19-.02.02-.05.02-.08.03l-8.7-.03c-.15 0-.26-.06-.35-.17l-7.39-9.78c-.23-.31-.54-.47-.93-.48l-1.74-.04c-.43-.01-.65.19-.64.62Zm-.01-14.35v6.76c0 .18.14.32.32.32h7.68c2.4 0 4.34-1.35 4.34-3.01v-1.38c0-1.66-1.94-3.01-4.34-3.01h-7.68c-.18 0-.32.14-.32.32Zm31.06.02v4.81c-.01.19.14.34.33.34h15.53c.19 0 .34.15.34.34l-.02 6.07c0 .19-.15.34-.34.34h-15.5c-.19 0-.34.14-.34.33v4.84c-.01.19.14.34.33.34h17.66c.19 0 .34.15.34.34v6.11c0 .19-.14.34-.33.34l-25.24-.02c-.19 0-.34-.15-.34-.34V39.35c0-.19.15-.34.34-.34h24.78c.19 0 .34.15.34.34l.03 6.05c0 .19-.15.34-.34.34H86.87c-.19 0-.34.15-.34.34ZM149 58.33l.05 11.59c0 .19-.16.35-.35.35h-6.8a.34.34 0 0 1-.35-.34V39.37a.37.37 0 0 1 .36-.35h6.78c.19 0 .35.15.35.34L149 50.88c0 .19.16.35.35.35h12.93c.19 0 .35-.16.35-.35V39.37a.37.37 0 0 1 .36-.35l6.93-.02c.19 0 .35.16.35.35v30.56c0 .19-.16.35-.35.35l-6.95.03c-.19 0-.35-.16-.35-.35l.03-11.62c0-.19-.16-.35-.35-.35h-12.95c-.19 0-.35.17-.35.36Zm33.37 5.16h17.81c.19.01.34.16.34.35v6.1c-.01.19-.16.34-.35.34h-25.29a.352.352 0 0 1-.34-.35V39.35c0-.19.15-.34.34-.34h24.75c.19 0 .34.15.34.34l.04 6.05c0 .19-.15.34-.34.34H182.4c-.19 0-.34.15-.34.34v4.81c.01.19.16.34.35.34h15.55c.19 0 .34.15.34.34v6.07c-.01.19-.16.34-.35.34h-15.52c-.19 0-.34.14-.34.33s-.06 4.84-.06 4.84c0 .19.15.34.34.34Zm41.17-3.52 7.78 10.14c.03.05.02.12-.03.15-.02.01-.04.02-.06.02h-8.68a.559.559 0 0 1-.45-.23c-2.46-3.24-4.77-6.3-6.92-9.18-.81-1.09-1.94-1.42-3.37-1.01-.31.09-.46.29-.46.6.01 3.18.02 6.36.02 9.53 0 .17-.13.3-.3.3l-6.99-.04c-.15 0-.22-.07-.22-.22v-30.7c0-.16.13-.29.3-.3 5.3-.06 10.45-.06 15.46 0 8.93.12 13.54 4.94 11.45 13.99-.83 3.58-3.84 5.74-7.29 6.34a.38.38 0 0 0-.32.43c.01.06.04.12.08.18Zm-12.19-13.76v6.46c0 .26.21.47.47.47h7.67c2.36 0 4.28-1.41 4.28-3.16V48.9c0-1.75-1.92-3.16-4.28-3.16h-7.67a.47.47 0 0 0-.47.47Zm64.64 5.03h13.11a.33.33 0 0 0 .32-.33V39.33c-.01-.18.13-.32.31-.32l6.76-.02c.18 0 .32.14.32.32v30.66c0 .18-.14.32-.32.32l-6.78-.02c-.18 0-.32-.14-.32-.32l.04-11.66c0-.18-.14-.32-.32-.32h-13.1c-.18 0-.32.15-.32.33v11.66c0 .18-.14.32-.32.32h-6.78a.33.33 0 0 1-.32-.33V39.34c0-.18.15-.32.33-.32l6.78-.02c.18 0 .32.14.32.32l-.03 11.6c0 .18.14.32.32.32Zm32.76-5.17v4.83c0 .18.14.33.32.33h15.54c.18 0 .33.15.33.33l-.04 6.09c0 .18-.15.33-.33.33h-15.49c-.18 0-.33.14-.33.32v4.86c0 .18.14.33.32.33h17.78c.18 0 .33.15.33.33l-.02 6.12c0 .18-.15.33-.33.33h-25.21c-.18 0-.33-.15-.33-.33v-30.6c.01-.18.16-.33.34-.33h24.65c.18-.01.33.14.33.32s.05 6.08.05 6.08c0 .18-.15.33-.33.33h-17.25c-.18 0-.33.15-.33.33Z\" style=\"fill:#fff;stroke-width:0\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hny3r5\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"xkXw2pJ8w\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19vhn76\",\"data-framer-name\":\"Mindeo_blanc_\",fill:\"black\",intrinsicHeight:166,intrinsicWidth:749,layoutDependency:layoutDependency,layoutId:\"Q_zG6sbFy\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 749.45 166.29\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M464.05 63.76V.86c0-.39.19-.58.58-.58h32.49c.2 0 .37.18.37.38v162.37c0 .63-.32.94-.94.94l-31.55.04c-.25 0-.46-.21-.46-.47v-6.28c0-.65-.26-.78-.77-.38-8.35 6.57-18.17 9.64-29.46 9.2-16.81-.65-30.04-7.78-39.68-21.39-5.01-7.07-8.16-15.36-9.46-24.87-2.72-19.86 3.41-40.88 19.71-53.75 16.3-12.88 41.13-14.55 58.59-2.02.39.28.58.18.58-.29Zm-22.23 72.45c13.22.28 24.18-10.84 24.48-24.83.29-13.99-10.19-25.56-23.41-25.84-13.22-.28-24.18 10.84-24.48 24.83-.29 13.99 10.19 25.56 23.41 25.84ZM103.86 68.96c17.57-20.97 34.98-41.76 52.24-62.38 3.69-4.4 8.89-7.01 14.58-6.28 7.75.99 12.71 5.25 14.87 12.79 1.64 5.74-.44 11.09-4.24 15.6a16589.55 16589.55 0 0 0-60.99 72.86c-5.02 6.02-10.47 9.36-18.74 7.34-2.69-.65-5.76-2.5-9.21-5.54-3.21-2.84-6.41-5.56-9.61-8.15a.564.564 0 0 0-.78.08 9628.43 9628.43 0 0 0-50.37 60.19c-2.96 3.56-5.44 5.81-7.44 6.75-5.55 2.61-12.53 2.16-17.39-1.57-5.61-4.32-7.74-10.13-6.38-17.42.78-4.16 4.09-7.63 7.02-11.13 18.92-22.59 37.61-44.89 56.06-66.92 4.82-5.75 7.41-9.26 14.02-10.23 4.87-.71 9.25.53 13.15 3.72 3.96 3.25 8.07 6.7 12.32 10.37.32.27.62.25.89-.08Z\"/><ellipse class=\"cls-1\" cx=\"226.24\" cy=\"18.53\" rx=\"18.12\" ry=\"18.53\" transform=\"rotate(-.2 226.288 17.584)\"/><path class=\"cls-1\" d=\"M186.02 37.64v126c0 .17-.15.31-.32.31l-32.85.05c-.17 0-.31-.14-.31-.31V76.91c0-.07.02-.14.07-.2l32.86-39.27c.11-.13.3-.15.44-.04.07.06.11.15.11.24Zm361.34 84.41c-.11.29-.13.58-.04.87 1.59 5.1 4.51 9.25 8.78 12.45 6.4 4.81 14.26 5.83 22.16 4.88 7.77-.93 14.4-4.37 19.91-10.34a.39.39 0 0 1 .54-.02l.01.01 17.71 17.7c.23.22.24.59.03.83-9.66 10.81-22.33 16.7-38.02 17.68-10.72.67-20.34-.58-28.86-3.76-18.15-6.76-31.27-21.67-34.63-40.74-5.67-32.09 14.27-60.71 46.07-65.51 15.99-2.42 32.86.71 45.19 11.23 15.94 13.6 20.81 33.62 16.82 54.04-.05.24-.26.42-.51.42l-74.99.14c-.07 0-.14.05-.17.12Zm44.07-28.64c-4.02-9.61-13.93-13.79-23.82-12.34-10.21 1.49-17.01 7.22-20.4 17.18-.12.33.06.69.38.8.07.02.14.04.22.04l44.71-.26c.44 0 .61-.21.5-.64-.41-1.63-.94-3.22-1.59-4.78Zm126.02-32.77c17.48 8.07 29.81 24.07 31.65 43.26.97 10.07-.06 19.02-3.09 26.86-8.16 21.11-28.18 34.51-50.65 35.44-14.94.62-28.95-2.75-40.42-11.74-12.02-9.43-18.97-21.37-20.86-35.84-2.61-19.97 4.3-38.28 19.76-50.6 11.09-8.85 24.3-13.07 39.61-12.66 8.89.23 16.89 1.99 24 5.28Zm-14.94 73c17.78-8.05 17.52-38.87-1.23-46.1-9.46-3.64-21.01-1.87-27.92 6.24-5.12 6.01-6.35 13.92-5.38 21.6 2.16 17 19.49 25.07 34.53 18.26Zm-401.9-68.23c13.68-11.61 36.85-13.65 51.99-2.8 8.08 5.79 13.39 13.4 15.93 22.82 1.06 3.95 1.57 9.51 1.52 16.68-.13 18.95-.15 39.31-.06 61.08 0 .51-.25.77-.76.77l-32.14.05c-.36 0-.54-.18-.54-.55-.07-18.15-.06-36.84.03-56.07.03-5.11-.45-8.92-1.43-11.43-4.04-10.3-15.67-13.63-25.29-9.3-7.59 3.42-9.96 10.36-9.94 18.53.04 19.63.04 39 .01 58.11 0 .38-.31.68-.69.69l-32.65.03c-.13 0-.24-.11-.24-.24l-.03-105.73c0-.12.09-.22.21-.22H299c.65 0 .97.31.96.96l-.07 6.28c0 .64.23.75.72.34Z\"/><rect class=\"cls-1\" x=\"209.48\" y=\"57.82\" width=\"33.54\" height=\"106.16\" rx=\".41\" ry=\".41\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c9bz1t\",\"data-framer-name\":\"8\",layoutDependency:layoutDependency,layoutId:\"K5OsOL4U9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c4r79\",\"data-framer-name\":\"Polygone_formation_blanc_\",fill:\"black\",intrinsicHeight:347,intrinsicWidth:772,layoutDependency:layoutDependency,layoutId:\"ZjnOvBf_G\",svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 772 346.92\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><rect class=\"cls-1\" x=\"3.5\" y=\"33.24\" width=\"145.92\" height=\"18.28\" rx=\"8.91\" ry=\"8.91\" transform=\"rotate(-31.3 76.459 42.381)\"/><rect class=\"cls-1\" x=\"221.28\" y=\"-30.64\" width=\"18.32\" height=\"146.04\" rx=\"9.06\" ry=\"9.06\" transform=\"rotate(-58.7 230.445 42.383)\"/><rect class=\"cls-1\" x=\"455.15\" y=\"89.88\" width=\"9.08\" height=\"63.08\" rx=\"4.06\" ry=\"4.06\"/><path class=\"cls-1\" d=\"M721.1 130.23c-.32 0-.44.15-.37.46 1.75 7.67 6.42 12.62 13.99 14.85 3.12.92 4.25 2.84 3.39 5.77-.02.06-.04.12-.06.17-.9 2.81-2.88 3.83-5.93 3.06-13.06-3.31-21.47-15.02-21.08-28.75.49-17.39 16.05-30.45 33.42-26.62 12.74 2.81 20.69 14.14 21.56 26.99.18 2.67-1.08 4.01-3.77 4.04-13.94.14-27.66.15-41.15.03Zm24.46-20.7c-10.21-4.49-20.3.88-24.22 10.97a.422.422 0 0 0 .39.57l32.94.04c.35 0 .64-.29.64-.64a.57.57 0 0 0-.04-.22c-1.86-5.12-5.1-8.69-9.71-10.72Zm-106.76-1.61a.317.317 0 0 0-.35.29c0 .09.02.17.07.24 8.94 11.11 8.27 25.96-1.32 36.28-7.86 8.46-20.84 10.62-31.04 5.86-18.73-8.75-21.14-34.18-4.93-46.49 4.8-3.64 10.44-5.33 16.73-5.31 7.47.03 15.12.04 22.97.05 5.3 0 5.65 7.91.74 8.94-.93.19-1.88.24-2.87.14Zm-3.25 18c0-9.91-8.03-17.94-17.94-17.94-9.91 0-17.94 8.03-17.94 17.94 0 9.91 8.03 17.94 17.94 17.94 9.91 0 17.94-8.03 17.94-17.94ZM0 230.03V108.67c.55-5.56 3.14-8.71 7.78-9.45 2.73-.43 5.01.07 6.85 1.5 3.24 2.51 3.84 5.41 3.84 9.11V231.5c0 2.99-1.13 5.4-3.38 7.23-2.54 2.05-5.38 2.56-8.53 1.51-4.44-1.48-6.63-4.88-6.56-10.21ZM187.94 128.9c.25-.05.43-.27.43-.53.09-5.49.05-10.98-.11-16.45-.16-5.67.54-11.05 6.84-12.59 6.23-1.53 11.08 2.97 11.08 9.16v60.79c0 21.73-11.95 40.47-31.42 49.34-4.8 2.19-9.54 3.54-14.23 4.07-15.17 1.71-29.25-1.49-41.31-11.37-.43-.35-.88-.54-1.35-.57-.4-.03-.74.27-.77.67v.04c-.09 6.12-.09 12.67.01 19.64.03 2.07-.33 3.84-1.08 5.29-2.48 4.78-8.95 5.83-13.11 2.55-2.37-1.87-3.54-4.47-3.53-7.78.09-16.59.08-35.07-.02-55.46-.04-7.84.5-14.04 1.63-18.61 2.77-11.25 8.58-20.62 17.41-28.12 9.82-8.35 21.66-12.43 35.52-12.24 12.21.16 22.99 4.08 32.34 11.77.49.41 1.05.54 1.67.4Zm.23 41.02c0-19.54-15.84-35.38-35.38-35.38-19.54 0-35.38 15.84-35.38 35.38s15.84 35.38 35.38 35.38 35.38-15.84 35.38-35.38Z\"/><rect class=\"cls-1\" x=\"288.34\" y=\"98.98\" width=\"18.24\" height=\"141.88\" rx=\"8.99\" ry=\"8.99\"/><path class=\"cls-1\" d=\"M343.59 147.36c.2 3.59.22 7.02.07 10.31-.28 5.92-9.02 5.8-9.09-.18-.12-10.8-.13-21.71-.02-32.73.05-5.76 1.97-11.02 5.76-15.77 11.43-14.36 34.34-13.64 44.39 2.44 6.6 10.57 5.25 24.28-3.29 33.15-5.89 6.11-13.19 8.91-21.88 8.38-5.64-.34-10.68-2.35-15.11-6.02-.6-.49-.88-.35-.83.42Zm36.02-21.44c0-9.91-8.04-17.95-17.95-17.95s-17.95 8.04-17.95 17.95 8.04 17.95 17.95 17.95 17.95-8.04 17.95-17.95Z\"/><path class=\"cls-1\" d=\"M441.54 108.43c13.83 16.23 3.77 42.02-17.41 44.38-6.41.71-12.14-.43-17.17-3.44-19.98-11.93-17.13-41.77 5.16-49.29 2.69-.91 6.02-1.34 10-1.29 7.39.08 14.7.11 21.95.08 4.92-.02 5.47 6.23 1.86 8.49-1.3.82-2.78.53-4.22.65-.14 0-.24.13-.23.27 0 .05.03.1.06.15Zm-2.89 17.49c0-9.91-8.03-17.94-17.94-17.94-9.91 0-17.94 8.03-17.94 17.94 0 9.91 8.03 17.94 17.94 17.94 9.91 0 17.94-8.03 17.94-17.94Zm76.66 21.33c0-.25-.21-.45-.45-.45-.1 0-.21.04-.29.11-11.14 9.27-27.68 7.83-37.21-2.66-2.71-2.98-4.69-6.42-5.94-10.32-1.99-6.22-1.14-14.12-1.21-20.86-.06-6.46 8.97-6.9 9.05-.48.05 4.32.07 8.45.06 12.39-.02 11.3 8.82 19.93 20.04 18.82 6.86-.69 13.12-5.86 15.14-12.58.6-1.98.87-4.32.82-7.02-.14-7.32-.13-14.17.04-20.55.08-3.12 1.67-4.84 4.72-4.78 2.99.06 4.48 1.71 4.46 4.94a2960 2960 0 0 0 .04 42.08c.05 5.92-.39 10.43-1.31 13.52-3.23 10.78-12.9 17.97-24.13 18.79-6.45.47-12.55-1.34-18.29-5.43-2.44-1.74-2.86-3.88-1.26-6.41.01-.02.04-.07.09-.15 1.6-2.53 3.63-2.95 6.1-1.26 7.37 5.07 14.38 5.5 21.02 1.3 4.36-2.76 7.85-7.5 8.29-12.69.18-2.07.25-4.18.22-6.31Zm59.7-.34c-4.15 3.13-7.94 5.22-13.29 5.84-10.27 1.19-18.64-2.03-25.09-9.66-3.97-4.7-5.99-10.34-6.04-16.92-.11-13.42 9.16-24.66 22.19-26.89 17.53-3 32.09 9.5 32.09 27.24 0 11.89.01 23.68.03 35.37 0 6.69-9.06 7.15-9.13.44-.05-4.88-.04-9.89.03-15.02.01-.67-.25-.8-.79-.4Zm.72-20.99c0-9.94-8.05-17.99-17.99-17.99-9.94 0-17.99 8.05-17.99 17.99s8.05 17.99 17.99 17.99 17.99-8.05 17.99-17.99Zm105.82-17.67c-6.43-.98-11.88.81-16.36 5.37-1.77 1.8-3.14 4.16-4.12 7.09-.57 1.69-.85 4.35-.84 7.98.02 6.37 0 12.99-.09 19.86-.03 2.87-1.51 4.3-4.44 4.31-.06 0-.12 0-.18-.01-2.92-.09-4.4-1.58-4.44-4.46-.09-6.94-.13-13.94-.1-21 .03-7.55 2.17-13.83 6.41-18.85 6.19-7.33 14.22-10.52 24.08-9.55 2.88.28 5.53 1.02 7.96 2.22 7.33 3.63 12.25 9.17 14.75 16.63 1.03 3.07 1.49 7.76 1.38 14.05-.11 5.78-.12 11.2-.04 16.25.05 3.12-1.47 4.71-4.55 4.77h-.18c-2.91.02-4.4-1.42-4.45-4.31-.13-6.85-.12-13.18.02-19 .11-4.54-.39-8.08-1.52-10.63-1.24-2.8-3.01-5.14-5.31-7.02-2.51-2.04-5.17-3.27-7.98-3.7ZM772 133.16v45.9c-.48-15.31-.48-30.61 0-45.9Zm-432.97 56.73c.17-3.45-.36-7.32.56-10.5 2.58-9 11.45-7.93 18.76-6.21.39.09.59.33.6.73l.29 9.46a.591.591 0 0 1-.87.53c-2.49-1.38-5.21-2.09-8.18-2.13-.61 0-.92.29-.93.9l-.11 6.99c0 .57.27.85.84.84l8.27-.2c.18 0 .32.13.33.31v.02l-.06 8.88c0 .23-.12.35-.35.35l-8.31.04c-.36 0-.66.29-.66.65l.03 38.64c0 .28-.23.5-.51.51l-8.87.1c-.52 0-.78-.25-.78-.77l-.05-38.62c0-.35-.18-.53-.54-.54l-4.28-.02c-.65 0-.97-.32-.97-.97v-7.46c.01-.67.34-1 1.01-1h4.22c.3 0 .54-.23.56-.53Zm261.25 10.69.1 38.47c0 .39-.31.7-.7.7h-.01l-8.62-.07a.7.7 0 0 1-.69-.7v-38.59c0-.39-.31-.7-.7-.7h-.02l-6.42.22a.696.696 0 0 1-.73-.67v-.01l-.18-8.14c0-.39.3-.7.69-.71h.03l6.62.22c.39.01.71-.29.72-.68v-.01l.02-15.62c0-.39.31-.7.7-.7h.01l8.53.14a.7.7 0 0 1 .69.7l-.06 15.3c0 .39.31.7.7.7l8.03.02c.38 0 .69.31.7.69l.08 8.02c0 .39-.3.7-.69.71h-8.1a.71.71 0 0 0-.7.71Z\"/><circle class=\"cls-1\" cx=\"618.16\" cy=\"178.62\" r=\"4.92\"/><path class=\"cls-1\" d=\"M385.84 241.04c-14.24-.27-25.55-12.09-25.28-26.39.27-14.3 12.04-25.67 26.27-25.4 14.24.27 25.55 12.09 25.28 26.39-.27 14.3-12.04 25.67-26.27 25.4Zm.61-9.85c8.51-.07 15.35-7.26 15.27-16.05-.08-8.79-7.04-15.86-15.55-15.78-8.51.07-15.35 7.26-15.27 16.05.08 8.79 7.04 15.86 15.55 15.78Zm40.73-38.49c1.06-.86 2.21-1.86 3.48-2.35 4.47-1.77 8.79-1.26 12.94 1.51.29.19.37.57.2.86l-4.21 7.03c-.37.62-1.17.84-1.82.5-6.55-3.49-10.48 4.46-10.82 9.78-.62 9.51-.79 19.07-.5 28.7.02.51-.39.94-.9.96h-8.79c-.28 0-.51-.23-.51-.51l-.09-48.34c0-.23.19-.42.42-.42l8.94-.02c.32 0 .59.23.65.54l.29 1.49c.09.49.33.58.72.27Zm30.98.72c.01.29.26.51.54.5.12 0 .23-.05.32-.13 8.03-6.84 20.57-6.03 26.54 2.92.22.33.66.43 1 .21.07-.04.12-.1.17-.16 3.59-4.44 9.31-7.32 15-7.43 12.37-.26 17.69 9.36 17.78 20.51.08 9.95.11 19.7.1 29.24 0 .34-.27.61-.61.61l-8.97.02c-.42 0-.76-.34-.77-.76-.07-9.79-.1-19.69-.09-29.7 0-4.71-1.03-8.5-5.88-9.74-5.22-1.32-10.38 1.91-12.58 6.58-1.04 2.2-1.58 4.55-1.63 7.06-.17 8.79-.21 17.39-.11 25.8a.8.8 0 0 1-.78.81h-8.63a.792.792 0 0 1-.81-.8v-.01c.05-8.64.03-17.32-.05-26.04-.02-2.28-.07-5.71-.74-7.86-2.17-7.01-9.41-7.26-14.38-3.32-4.04 3.2-5.22 8.06-5.27 12.94-.08 8.51-.11 16.63-.08 24.36 0 .41-.34.75-.75.75h-8.8a.933.933 0 0 1-.92-.93l.23-47.96c0-.29.24-.53.53-.53h.01l8.86.06c.35 0 .64.29.66.64l.11 2.36Zm222.07 21.71c0 14.27-11.56 25.83-25.83 25.83-14.27 0-25.83-11.56-25.83-25.83 0-14.27 11.56-25.83 25.83-25.83 14.27 0 25.83 11.56 25.83 25.83Zm-25.89 16.06c8.52.01 15.44-7.1 15.46-15.89.02-8.79-6.88-15.93-15.4-15.95-8.52-.01-15.44 7.1-15.46 15.89-.02 8.79 6.88 15.93 15.4 15.95Zm42.11-37.26c-.04.26.14.49.4.53.13.02.26-.02.36-.1 6.39-4.93 13.01-6.33 19.87-4.2 11.32 3.52 12.95 14.39 12.93 24.51-.02 7.63-.05 15.75-.1 24.35 0 .37-.3.67-.68.68l-8.53.14c-.51 0-.93-.41-.94-.92v-.01c0-9.18 0-18.21-.01-27.09-.01-4.3-.49-9.31-4.65-11.69-4.52-2.57-10.64-.76-14.01 2.7-2.8 2.87-4.24 6.39-4.33 10.56-.17 8.8-.21 17.34-.11 25.61 0 .51-.25.77-.76.77h-8.68a.89.89 0 0 1-.88-.89v-47.82c0-.35.29-.64.64-.64h8.59c.65 0 1.17.51 1.17 1.16v.15l-.27 2.2Zm-129.71.71-.04-3.3c0-.6.29-.9.88-.9l8.18-.07c.54 0 .81.27.81.81l-.02 47.73c0 .52-.26.78-.79.78h-8.27c-.78 0-1.07-.38-.88-1.14.19-.72.25-1.41.19-2.07-.09-.93-.5-1.11-1.24-.54-8.43 6.55-20.48 6.78-29.29.43-12.44-8.96-14.49-26.82-4.56-38.26 8.82-10.16 24.21-11.96 34.52-3.23.13.11.33.09.44-.04.05-.06.07-.13.07-.2Zm-14.38 36.6c8.63-.53 15.19-8.13 14.65-16.98-.54-8.85-7.98-15.59-16.61-15.06-8.63.53-15.19 8.13-14.65 16.98.54 8.85 7.98 15.59 16.61 15.06Zm199.33-.74c2.44-.95 3.55-2.74 3.32-5.36-.17-1.96-1.9-3.5-3.53-4.41-2.66-1.51-5.28-2.99-7.86-4.46-6.01-3.41-8.87-9.56-7.52-16.23.57-2.81 2.09-5.27 4.57-7.38 8.02-6.79 18.11-2.38 24.45 4.03.46.46.46 1.2 0 1.66l-5.3 5.38c-.55.56-1.09.54-1.62-.05-2.89-3.28-9.46-7.48-12.35-2.01-.96 1.81-.51 3.4 1.34 4.77 2.43 1.8 5.13 3.48 8.12 5.03 3.28 1.71 7.26 4.97 8.59 8.54 3.92 10.55-3.37 20.99-14.73 20.86-6.45-.07-11.64-2.65-15.56-7.74-.41-.53-.39-1.04.06-1.54l5.22-5.79c.53-.59 1.03-.57 1.52.05 2.93 3.76 6.78 6.39 11.28 4.65Z\"/><rect class=\"cls-1\" x=\"613.23\" y=\"190.47\" width=\"10.02\" height=\"49.24\" rx=\".67\" ry=\".67\"/><path class=\"cls-1\" d=\"M772 248.17v98.75h-.6l.6-98.75Z\"/><rect class=\"cls-1\" x=\"67.32\" y=\"224.48\" width=\"18.3\" height=\"145.94\" rx=\"9.05\" ry=\"9.05\" transform=\"rotate(-58.7 76.469 297.453)\"/><rect class=\"cls-1\" x=\"157.4\" y=\"288.32\" width=\"146.04\" height=\"18.28\" rx=\"9.05\" ry=\"9.05\" transform=\"rotate(-31.3 230.42 297.459)\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y2ao2e\",\"data-framer-name\":\"9\",layoutDependency:layoutDependency,layoutId:\"ThRqtCnqT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ytf1z7\",\"data-framer-name\":\"Crypto_formation_blanc_\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:177,layoutDependency:layoutDependency,layoutId:\"jv_5EVlTC\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 176.54 39.81\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M17.65 25.04 7.55 35.22c-.13.12-.33.12-.46 0l-2.35-2.34a.33.33 0 0 1-.01-.46L14.8 22.37c.13-.13.12-.34 0-.47a.334.334 0 0 0-.23-.09H.33c-.18 0-.33-.16-.33-.34l.03-3.17c0-.18.15-.33.33-.33l14.26.04c.18 0 .33-.14.33-.33a.35.35 0 0 0-.1-.24L4.75 7.4a.332.332 0 0 1 0-.47l2.44-2.34c.13-.12.33-.12.46 0l10.03 10.16a.332.332 0 0 0 .57-.24L18.03.34c0-.18.14-.32.32-.33l3.44-.02c.18 0 .33.15.33.33v39.15c0 .18-.15.33-.33.33l-3.43-.02c-.18 0-.33-.15-.33-.33l.18-14.18c0-.18-.14-.33-.33-.33-.09 0-.17.03-.23.09Zm21.13-10.73c.74-.21 1.21-.72 1.35-1.47a.7.7 0 0 1 .69-.56h2.96c.38.01.56.2.53.59-.47 6.26-8.27 6.23-12.49 4.98-3.55-1.04-4.96-4.2-5.08-7.7C26.46 1.84 31.37-.92 39.01.53c3.19.61 4.92 2.5 5.18 5.67.02.29-.12.44-.41.45l-3.21.02c-.23 0-.43-.14-.49-.36l-.21-.74a1.06 1.06 0 0 0-.54-.65c-2.02-1.03-4-1.21-5.93-.54-2.36.82-2.53 3.85-2.36 6 .33 4.07 4.21 4.93 7.74 3.93Zm92.24-3.3a7.508 7.508 0 0 1-7.6 7.42l-2.84-.03a7.508 7.508 0 0 1-7.42-7.6l.04-3.08A7.508 7.508 0 0 1 120.8.3l2.84.03c4.15.05 7.47 3.45 7.42 7.6l-.04 3.08Zm-4.22-2.63a4.31 4.31 0 0 0-4.28-4.34h-.76a4.302 4.302 0 0 0-4.34 4.27s-.01 2.04-.01 2.04a4.31 4.31 0 0 0 4.28 4.34h.76c2.38.02 4.32-1.89 4.34-4.27s.01-2.04.01-2.04ZM57.7 12.6l3.9 5.06c.26.34.18.51-.25.5l-4-.07c-.43 0-.77-.19-1.01-.55-1.02-1.55-2.1-2.96-3.24-4.23-1.74-1.95-2.58-1.61-2.53 1l.08 3.53c0 .19-.09.29-.28.29l-3.52-.03c-.17 0-.31-.14-.31-.31V1.05c0-.35.18-.53.54-.54 2.99-.05 5.9-.01 8.75.12 4.8.23 6.8 2.69 6 7.4-.37 2.18-1.63 3.43-3.8 3.75-.57.09-.68.36-.33.82Zm-7.12-7.94.02 3.58c0 .17.15.31.32.31l4.16-.03c1.51 0 2.74-.86 2.73-1.9v-.46c0-1.04-1.24-1.87-2.75-1.86l-4.16.03c-.18 0-.32.14-.32.32v.01Zm20.94.7L74.69.69c.06-.09.17-.15.28-.15l4.18-.08c.19 0 .35.15.35.35 0 .07-.02.14-.06.2l-6.09 8.98a.36.36 0 0 0-.06.2l.02 7.6c0 .19-.16.35-.35.35h-.01l-3.56-.08c-.19 0-.34-.16-.34-.35l.06-7.72a.36.36 0 0 0-.06-.2l-6.03-8.75a.353.353 0 0 1 .09-.49.36.36 0 0 1 .2-.06l4.2.03c.12 0 .22.06.29.15l3.14 4.69a.353.353 0 0 0 .58 0Zm13.64 8.15.06 4.35c0 .14-.11.25-.25.25l-3.72-.04c-.21 0-.31-.11-.31-.32l.02-16.7c0-.4.2-.59.6-.58 5.75.18 16.91-1.91 14.69 8.31-1.03 4.74-6.62 4.15-10.36 4.01-.49-.01-.74.23-.73.72Zm0-8.76.02 4.06c0 .23.19.42.42.42h.01l4.15-.03c1.3-.01 2.35-.84 2.35-1.86v-1.2c0-1.02-1.07-1.85-2.37-1.84h-.02l-4.15.03c-.23 0-.41.19-.41.42Zm17.31-.47L98 4.35a.34.34 0 0 1-.34-.32v-.01L97.59.85c0-.18.14-.33.32-.34h13.99c.18.01.33.16.33.34l-.05 3.21c0 .18-.15.32-.33.32l-4.56-.1a.34.34 0 0 0-.34.32v.01l.07 13.12c0 .18-.14.32-.32.33l-3.58.08a.34.34 0 0 1-.34-.32v-.01l.02-13.19a.34.34 0 0 0-.32-.34h-.01ZM61.05 31.9a7.69 7.69 0 0 1-7.73 7.67h-2.56a7.706 7.706 0 0 1-7.67-7.74v-2.8a7.706 7.706 0 0 1 7.74-7.67h2.56c4.25.02 7.69 3.48 7.67 7.74v2.8Zm-4.27-2.38a4.29 4.29 0 0 0-4.22-4.36h-.82a4.275 4.275 0 0 0-4.36 4.21l-.03 2a4.29 4.29 0 0 0 4.22 4.36h.82c2.37.05 4.32-1.84 4.36-4.21l.03-2Zm101.71 2.56a7.511 7.511 0 0 1-7.55 7.49h-2.68a7.526 7.526 0 0 1-7.49-7.56v-3.16c.03-4.15 3.4-7.51 7.56-7.49h2.68c4.15.02 7.51 3.4 7.49 7.56v3.16Zm-4.24-2.82c0-2.25-1.83-4.08-4.08-4.08h-1.06c-2.25 0-4.08 1.83-4.08 4.08v2.42c0 2.25 1.83 4.08 4.08 4.08h1.06c2.25 0 4.08-1.83 4.08-4.08v-2.42ZM31.89 25.89v2.4c.01.19.17.35.36.35l8.15-.1c.19 0 .35.15.36.34v.01l.04 3.07c0 .19-.15.35-.34.36h-.01l-8.24-.03c-.19 0-.35.16-.35.35v.01l.12 6.27c0 .19-.15.34-.34.35l-3.5.03c-.19 0-.35-.16-.35-.35v-17c0-.19.16-.35.35-.35l13.36.06c.19 0 .34.16.34.35l-.04 3.19c0 .19-.16.34-.35.34h-9.21c-.19 0-.35.16-.35.35Zm42.4 7.17c-.16.03-.26.18-.23.34 0 .04.03.09.05.12l4.25 5.49c.06.08.05.19-.03.25a.21.21 0 0 1-.11.04h-4.41c-.22 0-.39-.09-.52-.26l-3.4-4.45c-1.66-2.17-2.55-1.89-2.68.84-.05 1.11-.02 2.3.09 3.56.02.21-.08.32-.29.31l-3.71-.05c-.13 0-.19-.07-.19-.2V22.28c0-.37.2-.57.57-.59 2.91-.12 5.85-.1 8.83.06 4.16.21 6.18 2.27 6.05 6.18-.09 2.93-1.52 4.64-4.27 5.13Zm-7.11-7.22.06 3.6c0 .13.12.24.25.24l4.65-.07c1.19-.02 2.15-.77 2.14-1.68v-.01l-.02-.8c-.02-.91-.99-1.63-2.18-1.61l-4.65.07c-.14 0-.25.11-.25.25v.01Zm29.45 5.26-3.72 7.14a2.14 2.14 0 0 1-2.88.91c-.39-.2-.71-.52-.91-.91l-3.35-6.45c-.68-1.31-1.02-1.23-1.01.25l.03 7c0 .17-.08.26-.25.26l-3.73-.02c-.14 0-.21-.07-.21-.22l.02-16.69c0-.45.36-.81.81-.81h.03l2.74.09c.39.01.68.19.86.54l5.72 10.95c.06.12.21.16.33.1.04-.02.08-.06.1-.1l5.82-11c.16-.3.47-.49.81-.5l3.01-.07c.36 0 .54.17.54.53l-.02 16.91c0 .16-.13.29-.29.29h-.01l-3.57-.02c-.19 0-.28-.09-.27-.28l.07-7.74c.01-.99-.21-1.04-.67-.16Zm10.94 5.84-.67 2.09c-.04.13-.16.22-.3.22l-3.86.05c-.18 0-.32-.13-.33-.31 0-.04 0-.08.02-.12l6.71-17.09c.05-.12.17-.2.3-.2l3.94.09c.13 0 .24.08.29.2l6.67 16.98a.32.32 0 0 1-.18.42c-.04.02-.08.02-.12.02h-3.76a.32.32 0 0 1-.29-.19l-.94-2.19a.32.32 0 0 0-.29-.19h-6.89c-.14 0-.26.09-.3.22Zm1.85-4.35c-.07.18.03.38.21.45.04.01.08.02.12.02l3.37-.05c.19 0 .35-.16.35-.35 0-.04 0-.09-.03-.13l-1.74-4.29a.36.36 0 0 0-.45-.21c-.1.04-.18.12-.21.22l-1.62 4.34Zm13.78-7.04-4.58-.02c-.19 0-.34-.15-.34-.34v-3.22c0-.19.16-.34.35-.34h14.07c.19.01.34.16.34.35l-.03 3.22c0 .19-.15.34-.34.34h-4.72c-.19 0-.34.15-.34.34l.06 13.08c0 .19-.15.34-.34.34h-3.5c-.19 0-.34-.16-.34-.35l.05-13.06c0-.19-.15-.34-.34-.34Z\"/><rect class=\"cls-1\" x=\"134.52\" y=\"21.59\" width=\"4.08\" height=\"17.7\" rx=\".28\" ry=\".28\"/><path class=\"cls-1\" d=\"M172.52 31.28v-9.33c0-.25.12-.38.37-.38h3.17c.32 0 .48.16.48.49V38.8c0 .33-.17.5-.51.5h-2.92c-.44 0-.79-.19-1.04-.55l-6.79-9.55c-.33-.46-.49-.41-.48.16l.08 9.59c0 .19-.15.34-.33.34h-3.51c-.23 0-.34-.11-.34-.34l.02-16.88a.602.602 0 0 1 .72-.59c.89.19 1.74.22 2.54.1.47-.07.85.09 1.13.48l6.72 9.45c.47.65.7.58.7-.23Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cstrh8\",\"data-framer-name\":\"10\",layoutDependency:layoutDependency,layoutId:\"rtbCT94Cd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gcj15\",\"data-framer-name\":\"Startup_ch_blanc_\",fill:\"black\",intrinsicHeight:306,intrinsicWidth:1621,layoutDependency:layoutDependency,layoutId:\"qKcPUur_v\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1620.97 306.34\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M407.38 74.89c-.03-.51-.18-.55-.44-.11-3.91 6.56-10.54 10.21-18.32 10.25-22.68.13-27.55-24.29-22.01-41.49 2.76-8.56 9.67-15.44 18.79-17.06 8.27-1.46 16.14.19 21.07 7.36.68.99 1.02.88 1.02-.32V.27c0-.14.11-.25.25-.25h8.69c.13 0 .19.06.19.19V83.6c0 .11-.05.17-.16.17h-8.83c-.14 0-.21-.08-.2-.22.13-2.82.12-5.71-.05-8.66Zm-20.21-40.76c-13.07 3.33-15.18 20.1-12.13 31.08 1.69 6.07 6.45 11.18 12.93 12.01 4.76.61 8.73-.28 11.92-2.65 8.33-6.19 7.87-15.09 7.66-24.53-.25-11.13-9.43-18.7-20.38-15.91Zm87.3 1.63c0 1.14.29 1.22.87.24 2.22-3.69 5.37-6.43 9.45-8.2 7.58-3.31 17.88-2.22 24.1 3.51 7.64 7.03 9.09 18.15 7.94 28.36-1.49 13.21-8.91 24.04-22.87 25.28-7.74.68-14.62-1.83-18.73-8.41-.51-.81-.77-.74-.77.22v6.77c.01.16-.07.24-.23.24h-8.74c-.17 0-.26-.09-.26-.26V.28c0-.14.11-.25.25-.25l8.74-.03c.16 0 .24.08.24.25v35.51Zm9.9 40.48c6.43 2.3 12.08 1.31 16.97-2.98 5.62-4.93 6.83-14.38 6.58-21.29-.26-7.43-3.93-16.12-11.74-17.77-8.65-1.82-15.12.95-19.41 8.32-3.13 5.36-2.59 12.91-2.41 18.86.19 6.46 4.03 12.72 10.01 14.86ZM18.23 54.51v29c0 .17-.09.25-.26.25H9c-.15 0-.23-.08-.23-.23V5.23c0-.4.2-.6.6-.6 7.41-.01 14.86.01 22.35.08 12.1.11 22.61 5.51 25 18.22 1.77 9.38-1.07 19.15-8.82 25.04-3.87 2.93-8.11 4.71-12.7 5.33-4.65.63-10.08.81-16.28.55-.46-.02-.69.2-.69.66Zm-.04-41.24.06 31.78c0 .15.12.27.27.27l12.86-.03c8.93-.02 16.16-6.72 16.14-14.96v-2.46c-.02-8.25-7.27-14.92-16.2-14.9L18.46 13c-.15 0-.27.12-.27.27Zm48.29 26.25c4.14-7.43 10.71-11.81 19.71-13.14 5.25-.78 10.3-.4 15.13 1.13 14.54 4.6 18.51 20.94 16.39 34.31-1.93 12.15-10.49 21.4-22.9 22.91-10.3 1.26-20.66-1.49-26.79-10.22-6.57-9.38-7.12-24.95-1.54-34.99Zm42.47 14.58c-.42-13.12-7.89-22.63-22.12-20.08-12.14 2.18-15.77 14.32-14.66 25.42C73.44 72.2 83.21 79.8 95.9 76.77c10.56-2.53 13.36-12.73 13.05-22.67Zm109.81 4.2c.02 9.17 4.86 17.43 14.32 18.76 7.97 1.12 15.01-.82 21.12-5.82a.289.289 0 0 1 .47.23l-.02 7.85c0 .21-.08.37-.25.48-9.28 6.43-26.61 7.68-35.59.09-4.02-3.39-6.68-7.6-7.99-12.62-3.86-14.89-.6-31.89 13.94-38.97 6.96-3.39 17.3-3.17 24.07 1.63 8.83 6.26 9.89 17.48 9.66 27.33 0 .34-.18.51-.52.51h-38.68c-.35 0-.53.18-.53.53Zm.93-8.18 29.64-.2c.12 0 .22-.1.22-.22v-.35c-.07-8.78-6.83-15.85-15.11-15.79h-.1c-8.28.06-14.94 7.22-14.88 16v.34c.01.12.11.22.23.22Zm95.54 8.37c.15 9.07 4.58 16.93 13.96 18.52 7.75 1.32 14.96-.6 21.62-5.77.29-.23.44-.15.43.22l-.14 7.88c0 .19-.09.34-.25.45-5.09 3.47-11.32 5.23-18.7 5.26-12.23.05-20.33-5.26-24.3-15.95-1.95-5.26-2.55-11.37-1.78-18.34.88-8.04 4.98-15.98 11.62-20.49 4.83-3.29 10.42-4.66 16.75-4.11 11.24.96 18.14 8.67 19.81 19.53.56 3.67.8 7.52.73 11.55 0 .35-.19.53-.54.53h-38.51c-.48 0-.71.24-.7.72Zm.93-8.37 29.54-.2c.13 0 .23-.1.23-.23s-.01-.32-.01-.32c-.06-8.76-6.72-15.83-14.89-15.77h-.44c-8.16.06-14.73 7.21-14.67 15.97v.32c.01.13.11.23.24.23Zm-34.66-12.2c3.69-8.81 9.87-13.26 19.69-11.06.2.05.3.17.3.38v9c-.01.09-.09.16-.17.16-.02 0-.05 0-.07-.02-4.99-2.63-9.5-2.37-13.55.76-5.23 4.05-6.71 11.48-6.69 17.93.02 8.83.04 18.3.06 28.41 0 .18-.14.32-.32.32h-8.55c-.23 0-.34-.1-.34-.32V27.57c0-.18.15-.32.33-.32h8.58c.17 0 .3.13.3.3l-.03 10.28c0 .8.15.83.46.09Zm-116.62.97c-.03-.41-.1-.42-.22-.03l-13.64 44.28c-.11.37-.46.63-.85.63h-7.97c-.37 0-.61-.18-.72-.54l-16.99-55.84c-.03-.1.03-.21.13-.23h.05l9.21.1c.16 0 .26.08.31.24 3.77 13.73 7.51 27.48 11.24 41.24.49 1.83.88 3.73 1.16 5.7.01.07.05.1.12.09l.27-.02a.29.29 0 0 0 .25-.28c-.03-1.49.18-2.93.61-4.34 4.31-14 8.63-28.05 12.96-42.15.1-.31.31-.47.63-.47l7.47-.04c.26 0 .49.17.55.42 3.79 13.95 7.6 27.92 11.44 41.9.31 1.14.59 2.75.84 4.83.01.09.05.16.1.23s.13.09.24.08c.06 0 .09-.04.1-.1.22-1.57.54-3.13.95-4.67 3.65-13.71 7.45-27.85 11.41-42.43.05-.18.21-.3.39-.3l8.51-.03c.11 0 .2.09.2.2v.05l-16.82 55.94c-.08.26-.32.43-.59.43h-8.67a.472.472 0 0 1-.43-.34c-3.49-12.48-7.24-25.51-11.27-39.08a23.04 23.04 0 0 1-.96-5.46Zm384.76 35.54 17.26-47.12c.02-.06.06-.09.13-.09l9.32-.11c.17 0 .23.08.16.23-8.61 21.4-16.9 42.24-24.88 62.51-4.85 12.35-11.28 23.37-26.55 19.84-.11-.03-.17-.1-.17-.21l-.04-7.47c0-.34.16-.46.48-.36 6.81 2.13 11.69.05 14.64-6.24 1.65-3.52 3.25-7.31 4.8-11.36.12-.33.12-.65-.01-.98l-21.85-55.72c-.03-.08 0-.16.08-.2.02 0 .04-.01.06-.01l9.87.13c.15 0 .25.08.3.22l16.34 46.94c.02.05.04.05.06 0Zm1070.65 152.04c-2.77-23.43-5.29-45.83-7.56-67.19-.82-7.67-1.91-13.88-3.27-18.63-6.48-22.53-24.27-40.13-47.44-45.44-6.82-1.56-14.82-1.3-21.87-.71-22.15 1.83-44.26 3.65-66.35 5.45-4.72.39-9.02 1.09-12.89 2.1-4.55 1.19-8.98 2.66-13.28 4.42-21.11 8.17-34.8 28.29-36.89 50.32-.49 5.15-.24 11.76.75 19.84 2.68 21.83 5.11 43.13 7.28 63.9.89 8.45 1.99 14.95 3.32 19.5 6.86 23.47 26.35 41.69 50.9 45.88 3.47.59 7.13.4 10.67.4 2.67 0 5.39-.12 8.16-.35 23.73-1.95 47.45-3.92 71.17-5.93.79-.07 2.47-.38 5.04-.94 19.22-4.5 34.59-12.53 44.73-30.03 7.73-13.47 9.34-27.24 7.53-42.59Zm-197.5-25.1h-.02c.06 0 .12-.02.17-.04-.05.02-.1.04-.15.04Zm71.15 83.67h.1c.06 0 .12.01.18.02-.09 0-.19-.02-.29-.01Zm9.9-27.82c-6.66-2.38-12.64-5.69-17.94-9.94-15.39-12.34-24.27-28.29-26.63-47.86-2.01-16.7 3.36-34.82 15-47.13 8.87-9.43 19.74-14.98 32.62-16.65 2.61-.34 6.25-.4 10.91-.19 4.02.19 7.61.66 10.78 1.41 8.79 2.1 16.48 5.68 23.08 10.73 17.58 13.45 27.08 31.34 28.49 53.68.16 2.51.05 5.03-.32 7.54-3.22 39.1-39.58 61.41-75.99 48.41ZM32.97 167.55c.23 4.34 4 7.19 7.86 8.39 4.54 1.41 9.04 2.88 13.68 3.89 6.03 1.31 11.81 2.57 17.34 3.76 16.69 3.61 35.27 11.76 38.36 30.95.84 5.22.87 10.19.1 14.9-2.78 16.86-14.36 26.95-30.35 31.21-9.35 2.49-18.78 3.69-28.3 3.6-3.56-.03-7.05-.45-10.64-.62-7.24-.34-16.91-1.66-29.01-3.96-3.22-.61-7.18-.91-7.2-5.32-.03-7.93-.04-15.41-.02-22.44 0-3.89 3.14-6.25 6.85-4.72 15.74 6.48 32.11 11.85 48.52 10.92 5.69-.32 14.84-2.29 16.88-8.52 2.2-6.68-3.78-10.83-9.36-12.55-5.14-1.58-10.32-2.96-15.55-3.91-8.39-1.53-16.94-3.83-25.67-6.9-13.28-4.67-23.75-12.25-26.05-27-.37-2.37-.49-5.7-.36-9.97.72-22.82 18.34-33.42 38.7-36.25 3.34-.47 6.67-.99 10.04-.96 5.94.05 11.92-.23 17.76.38 10.12 1.05 20.3 2.86 30.54 5.43 3.39.85 3.04 3.29 3.05 6.6 0 6.51 0 12.7-.02 18.57-.02 4.98-3.96 5.18-7.57 3.83a459.2 459.2 0 0 0-10.22-3.69c-13.2-4.59-26.49-6.07-39.87-4.45-3.97.48-9.76 4-9.49 8.83Zm979.53 59.22c.05-5.26-5.84-8.48-10.36-9.85-4.66-1.42-9.33-2.68-14.08-3.55-9.67-1.77-18.98-4.29-27.91-7.56-11.73-4.29-21.73-11.52-24.37-24.31-.9-4.35-1.11-9.35-.64-15 1.64-19.57 17.29-29.78 35.12-32.92 4.49-.79 9.22-1.54 13.76-1.53 6.33 0 12.92-.18 19.33.56 8.09.94 17.31 2.57 27.67 4.9 3.1.7 4.54 2.9 4.51 5.98-.06 6.85-.08 12.93-.05 18.24.03 4.17-2.76 7.01-7.03 5.42-6.12-2.29-11.5-4.11-16.13-5.48-12.15-3.59-23.96-4.54-35.41-2.86-4.03.59-8.69 3.63-9.09 8.13-.4 4.49 3.89 7.59 7.83 8.92 7.61 2.56 15.26 4.55 23.3 6.04 9.58 1.76 19.42 4.41 28.02 8.87 12.02 6.22 18.44 16.91 18.85 30.18.62 20.28-11.14 33.93-30.07 39.55-4.53 1.35-10.17 2.38-16.9 3.09-6.15.65-11.24.82-15.29.51-2.08-.16-4.13-.27-6.16-.32-1.63-.04-3.27-.19-4.91-.44-2.26-.34-4.53-.39-6.79-.67-7.04-.87-14.03-2.02-20.97-3.43-2.51-.51-5.05-1.72-5.05-4.6 0-6.99 0-14.61-.02-22.85 0-4.29 3.43-5.89 7.13-4.45 17.25 6.7 37.69 14.31 56.01 9.44 4.74-1.25 9.64-4.74 9.7-10.01Zm141.59-67.85c-12.46 2.92-22.89 11-27.46 22.95-4.64 12.1-4.46 26.18 2.35 37.41 4.67 7.71 12.49 13.14 21.16 15.85 5.08 1.59 10.6 2.69 15.97 2.59 4.34-.09 8.66.22 12.97-.21 8.02-.81 15.44-2.27 22.27-4.38 4.2-1.3 6.01 2.62 5.97 6.22-.06 4.98-.04 9.84.06 14.59.06 3-1.3 5.62-4.55 6.31-9.19 1.95-18.23 3.08-27.1 3.37-3.23.11-6.28.62-9.48.64-7.39.05-15.01-.44-22.86-1.47-16.15-2.14-31.7-8.02-43.3-19.3-16.05-15.6-18.64-38.95-14.79-60.23 2.32-12.82 7.77-23.48 16.35-31.98 12.53-12.41 32.15-18.12 49.2-19.03 6.59-.35 13.31-.38 20.18-.11 11.28.45 21.93 1.91 31.96 4.37 2.95.73 4.4 2.61 4.35 5.64-.08 4.94-.08 9.81.01 14.6.03 1.51-.35 2.94-1.12 4.27-1.42 2.45-4.59 1.92-6.83 1.26-10.11-3.01-19.62-4.73-28.53-5.16-5.03-.24-10.63.36-16.78 1.8Zm-892.27 79.47-12.24 21.39a4.669 4.669 0 0 1-4.02 2.35c-8.35.07-16.75.07-25.2 0-3.27-.03-6.08-.77-6.44-4.41-.11-1.03.11-2.02.65-2.96 22.47-39.41 44.9-78.72 67.29-117.95a4.143 4.143 0 0 1 3.56-2.07l19.59-.03c1.3 0 2.5.69 3.15 1.82 22.75 39.77 45.12 78.97 67.12 117.61 2.2 3.86.61 7.99-4.17 8.02-7.87.05-15.85.04-23.93-.04-2.8-.03-5.12.36-6.83-2.69-3.75-6.66-7.62-13.47-11.6-20.42-.31-.54-.89-.88-1.51-.88h-64.77c-.31.01-.56.11-.65.27Zm14.95-26.07c-.17.29-.07.65.22.82.09.05.19.08.3.08h35.68a.602.602 0 0 0 .52-.9l-17.84-30.69a.595.595 0 0 0-.82-.22c-.09.05-.17.13-.22.22l-17.84 30.69Zm-120.9-52.05c-.39-.27-.82-.34-1.29-.21-.41.11-.82.17-1.24.17-11.28 0-22.82-.02-34.62-.03-2.88 0-4.36-1.49-4.43-4.44-.17-7.31-.17-12.97 0-16.99.12-2.69 1.53-4.04 4.23-4.04H230.9c1.98 0 3.59 1.61 3.59 3.59v17.93c.01 2.2-1.77 3.99-3.97 3.99h-.01l-37.26-.03c-.55 0-.99.43-1 .98v.01c.01 32.53.02 64.41.02 95.64 0 3.49-1.76 5.26-5.28 5.29-8.56.07-17.1.06-25.63 0-2.74-.02-4.94-2.33-4.94-5.06v-95.74c0-.42-.21-.81-.55-1.05Zm338.88 45.26c7.05 3.53 12.57 8.67 16.56 15.42 6.58 11.13 13.04 21.99 19.39 32.59 2.22 3.7 1.55 8.59-3.78 8.6-9.35.03-18.53.04-27.52.05-2.29 0-4.48.12-6-2.02a76.27 76.27 0 0 1-3.12-4.7c-6.82-11.15-13.97-22.74-21.44-34.77-3.01-4.85-6.72-6.59-12.48-6.48-9.79.18-19.14.15-28.05-.08-.59-.02-1.07.44-1.09 1.03v.03c-.05 14.01-.05 27.9-.01 41.67 0 3.69-2.5 5.27-5.91 5.28-9.37.03-18.1.03-26.18 0-2.42 0-4.38-1.97-4.38-4.39V138.72c0-2.68 1.34-4.02 4.02-4.02 29.96.02 59 .04 87.11.07 3.63 0 8.73 1.07 15.3 3.2 7.35 2.38 13.14 6.22 17.37 11.51 7.28 9.08 7.64 20.15 5.01 31.23-1.67 7.06-5.38 13.01-11.29 17.1-2.86 1.97-4.81 3.18-5.85 3.62a151.3 151.3 0 0 0-7.65 3.46c-.18.09-.26.3-.17.48.03.07.09.13.16.16Zm-67.57-43.02.04 23.38c0 .45.37.82.82.82l35.62-.07c9.76-.02 17.67-5.3 17.66-11.79v-1.5c-.01-6.49-7.93-11.75-17.7-11.73l-35.62.07c-.45 0-.82.37-.82.82Zm151.59-1.52c0-.44-.35-.79-.79-.79-12.5.05-24.93.06-37.28.04-2.72 0-4.56-2.34-4.63-4.98-.14-4.96-.16-9.96-.06-14.99.06-2.59 1.22-5.53 4.14-5.53h112.41c3.43 0 4.19 2.89 4.22 6.13.03 4.39.02 9.27-.03 14.64-.04 4.24-3.12 4.73-6.68 4.74-11.27.01-22.82-.01-34.65-.08-.82 0-1.23.41-1.22 1.22.02 30.95.03 62.88.02 95.77 0 3.33-1.67 4.99-5.01 5-8.52.03-16.94.03-25.27-.01-3.45-.01-5.18-1.67-5.18-4.98 0-32.31 0-64.37.01-96.17Zm155.52 76.91c20.02.91 27.18-14.95 27.2-32.21.03-24.14.04-46.47.02-67 0-2.19 1.77-3.96 3.96-3.97l27.22.02c2.87 0 4.3 1.44 4.29 4.32-.11 23.21-.08 46.18.09 68.92.06 8.38-.49 14.93-1.64 19.65-4.99 20.37-21.23 31.25-41.34 34.87-12.14 2.19-24.37 2.21-36.68.08-6.93-1.2-13.35-3.32-19.27-6.35-11.89-6.09-19.45-15.95-22.69-29.56-1.07-4.5-1.59-11-1.54-19.51.13-23.15.16-45.82.07-68.01-.01-2.96 1.48-4.44 4.49-4.44 9.16.01 18.35.03 27.57.05 1.88 0 3.4 1.53 3.41 3.41.03 21.33.03 42.85 0 64.54 0 2.04.1 4.02.32 5.95.27 2.45.25 4.86.74 7.32 2.8 14.02 10.72 21.33 23.77 21.92Zm116.77-23.88c-.01 13.54 0 27.88.03 43.02.01 3.35-2.2 5.08-5.31 5.09-9.3.05-17.86.05-25.69 0-2.7-.02-4.96-2.42-4.96-5.11 0-38.91 0-77.83.01-116.74 0-3.67 1.46-5.52 4.39-5.53 17.99-.09 35.57-.06 52.75.11 3.93.03 8.45.42 13.56 1.16 16.18 2.35 32.13 8.13 36.98 25.02 2.09 7.29 2.3 15.16.61 23.61-3.62 18.15-18.63 26-35.66 28.04-3.95.47-8.18.98-12.2 1.03-5.94.07-12.15.08-18.62.02-1.67-.02-3.08-.61-4.71-.78-.59-.06-1.11.37-1.17.95v.11Zm.04-51.05-.12 22.26c0 .71.57 1.29 1.28 1.3h.01l16.04.08c9.04.05 16.39-5.13 16.43-11.57v-1.52c.04-6.44-7.26-11.7-16.29-11.75l-16.05-.08a1.3 1.3 0 0 0-1.3 1.28Zm463.68 50.79-51.01-.02c-.53 0-.8.27-.79.8.01 13.56.02 27.97.01 43.23 0 3.5-2.97 4.34-6.07 4.37-8.19.09-16.33.07-24.4-.04a5.054 5.054 0 0 1-4.98-5.05V139.22c.01-2.48 2.02-4.49 4.49-4.49h27.19c2.09 0 3.78 1.7 3.77 3.78v47.5c-.01.41.32.74.73.74l51.04-.02c.5 0 .9-.41.9-.91-.05-15.75-.07-30.8-.05-45.14.01-3.21 1.11-6 4.8-5.98 9.17.05 18.09.06 26.74.03 2.12-.01 3.84 1.7 3.85 3.82.03 39.6.02 79.04-.01 118.34 0 3.47-1.78 5.22-5.33 5.25-10.45.09-19.11.06-25.98-.11-2.7-.07-4.09-3.5-4.09-5.78.02-12.5.03-26.38.04-41.63 0-.57-.29-.86-.86-.86Z\"/><path class=\"cls-1\" d=\"M1575.27 197.27c-1.89-17.92-12.49-35.18-26.68-45.99-9-6.85-18.78-10.77-29.34-11.75-4.91-.45-10.26.14-15.01 1.18-4.1.89-8.37 2.52-12.82 4.9-13.71 7.86-22.46 19.14-26.25 33.84-8.29 32.11 15.28 67.38 46.46 75.44 9.51 2.46 18.91 2.02 28.22-1.33 15.27-5.49 26.07-15.92 32.4-31.29 2.99-7.26 3.99-15.59 3.02-25Zm-74.65-31.64h-.04.04Zm.09-.06s-.02.03-.03.04h-.02a.12.12 0 0 0 .05-.05Zm45.84 38.78c-8.9 6.73-17.84 13.46-26.83 20.17-6.19 4.62-13.42 9.57-19.77 2.32-2.09-2.4-2.84-6.59-3.24-9.81-1.47-11.86-2.95-24.03-4.45-36.51-.76-6.27 1.93-12.31 8.62-13.44 2.79-.15 5.66.39 8.61 1.62 11.69 4.9 23.37 9.82 35.03 14.76 6.6 2.8 10.88 9.93 6.32 16.48-1.59 1.97-3.02 3.44-4.29 4.41Z\"/><circle class=\"cls-1\" cx=\"1067.61\" cy=\"250.27\" r=\"13.87\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4lc5te\",\"data-framer-name\":\"11\",layoutDependency:layoutDependency,layoutId:\"iDwNr1PaE\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ti7z11\",\"data-framer-name\":\"Swissborg_blanc_\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:204,layoutDependency:layoutDependency,layoutId:\"FzOeRXswi\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 203.66 36.26\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"m20.89 6.32.02 9.25c0 .59-.25.72-.75.41l-.32-.2c-.51-.32-.77-.78-.77-1.38l.02-11.37c0-1.65 1.34-2.98 2.99-2.97.52 0 1.02.14 1.47.39l7.58 4.34c.35.21.52.51.51.92l-.15 3.42c-.02.38.18.74.51.92l3.14 1.73c.35.19.57.56.57.97v9.13c.01.51-.21.9-.66 1.16l-2.98 1.75c-.57.34-.78.83-.61 1.48.61 2.28.25 3.43-1.98 4.69-1.93 1.1-3.94 2.25-6.02 3.44-1.41.8-3.2.31-4-1.1-.25-.44-.38-.94-.38-1.45l.02-12.23c0-.39-.17-.69-.51-.88L6.45 11.88a3.063 3.063 0 0 0-4.17 1.16c-.26.45-.39.96-.39 1.48l-.03 6.54c0 .4.14.73.45.98.71.59 1.52 1.04 2.43 1.35.25.09.51.08.76-.02 1.73-.64 3.07-1.6 4.02-2.88.43-.56 1.23-.67 1.79-.25.15.12.28.27.37.44.71 1.39.29 2.22-1.26 2.47-1.45.25-2.8.84-4.07 1.78-.27.2-.4.47-.39.81l.08 2.61c.01.37.21.7.53.88l6.38 3.6c.28.16.62.21.94.13.63-.15.98-.44 1.05-.87.1-.62-.12-1.08-.67-1.39l-6.42-3.61a.738.738 0 0 1-.28-1.01c.02-.03.04-.07.06-.1l.22-.28c.14-.19.4-.24.61-.12l5.84 3.22c.4.22.6.1.59-.35l-.07-9.07c0-.66.28-.82.85-.49l.28.17c.45.26.72.74.72 1.26v11.71a2.8 2.8 0 0 1-2.81 2.78c-.47 0-.94-.12-1.35-.35l-7.72-4.32c-.35-.19-.56-.56-.55-.96l.03-3.46c0-.46-.25-.89-.66-1.11L.62 22.99c-.36-.2-.59-.57-.59-.98L0 12.75c0-.4.17-.7.52-.89L3.81 10c.33-.18.5-.46.49-.85-.05-3.03-.76-3.8 2.23-5.46 2.06-1.15 4.05-2.26 5.96-3.33 1.35-.76 3.07-.28 3.83 1.07.24.42.36.9.36 1.38l-.03 12.28c0 .44.19.77.57.98l12.19 6.88a3.144 3.144 0 0 0 4.7-2.74l-.02-6.52c0-.44-.25-.84-.64-1.04l-2.32-1.21a.997.997 0 0 0-.89-.03c-1.66.72-2.97 1.68-3.94 2.89a1.355 1.355 0 0 1-2.15-.04c-.54-.73-.58-1.39-.13-1.97.21-.27.7-.48 1.47-.63 1.38-.26 2.64-.8 3.79-1.62.3-.21.48-.51.54-.88.17-1.07.1-2.1-.22-3.09-.09-.26-.28-.48-.52-.62l-6.52-3.61c-.46-.25-.87-.19-1.24.18-.17.18-.31.39-.4.63-.21.53 0 1.14.5 1.42l6.71 3.76c.34.19.38.43.12.72l-.41.45c-.2.22-.52.28-.78.13l-5.59-3.15c-.39-.21-.58-.1-.58.34ZM6.74 8.44l8.4-4.91c.14-.09.18-.27.1-.41l-.12-.21c-.55-.95-1.75-1.28-2.68-.74L6.88 5.42c-.93.54-1.23 1.75-.67 2.7l.12.21c.08.14.27.19.41.11Zm7.59 6.06c.16.09.37.04.46-.12.03-.05.04-.11.05-.17l.02-7.95a.35.35 0 0 0-.33-.35c-.06 0-.12.01-.18.05L7.36 9.93c-.16.09-.22.3-.13.46.03.05.07.1.13.13l6.97 3.98Zm7.08 5.84a.33.33 0 0 0-.49.29l-.04 7.89a.333.333 0 0 0 .49.29l7.09-3.91a.327.327 0 0 0 0-.57l-7.05-3.99Zm7.78 5.93-8.61 5.01c-.15.09-.2.29-.11.44l.11.19c.56.96 1.85 1.26 2.87.66l5.45-3.17c1.03-.6 1.4-1.86.84-2.83l-.11-.19a.324.324 0 0 0-.44-.11Z\"/><circle class=\"cls-1\" cx=\"94.47\" cy=\"6.3\" r=\"2.55\"/><path class=\"cls-1\" d=\"M57.07 20.5c-1.72-1.07-4.17-1.74-6.09-2.32-11.42-3.43-4.66-16.15 5.27-13.52 3.01.8 4.94 2.76 5.79 5.88.09.32-.1.66-.42.75-.05.01-.11.02-.16.02l-3.07.02c-.43 0-.77-.18-1-.54-1.39-2.17-3.3-2.7-5.75-1.59-.85.38-1.39 1.02-1.63 1.92-.18.67.1 1.37.68 1.74 2.94 1.88 6.39 2.11 9.2 3.94 3.8 2.48 4.13 7.38.71 10.36-4.3 3.75-11.62 3.17-14.73-1.74-.64-1.02-.96-2.15-.97-3.39 0-.29.15-.47.44-.52 1.25-.21 2.43-.16 3.53.14.31.08.53.27.65.57 1.15 2.81 3.34 3.67 6.57 2.58 1.74-.59 2.85-3.15.98-4.3Zm91.31-4c6.62 4.77 2.66 12.85-4.69 13-3.36.07-6.66.08-9.91.02-.63-.01-.95-.33-.95-.96l.02-23.3c0-.48.24-.72.73-.71 2.69.05 5.6.05 8.72-.01 2.06-.03 3.85.42 5.36 1.36 3.74 2.32 4.23 7.2.7 10.02-.16.12-.18.35-.05.51.02.03.04.05.07.07Zm-10.71-7.38v5.06c0 .21.17.38.38.39h4.84c1.68.02 3.05-1.17 3.06-2.63v-.54c0-1.46-1.36-2.65-3.04-2.66h-4.84c-.22-.02-.39.15-.4.37v.01Zm0 9.61.02 6.24c0 .25.21.46.46.46h5.14c2.05-.02 3.72-1.54 3.71-3.41v-.38c0-1.87-1.68-3.39-3.73-3.38h-5.14c-.25.01-.46.22-.46.47Zm-55.02 2.82 2.95-9.71c.13-.44.43-.66.89-.67l3.2-.03c.47 0 .63.21.48.66L84.7 28.78c-.11.34-.34.55-.69.63-.85.19-1.77.22-2.78.1-.49-.06-.9-.41-1.05-.89l-2.72-8.83c-.25-.83-.51-.83-.77 0l-2.77 8.84c-.13.41-.4.66-.81.77-.99.27-1.98.27-2.99-.02a.873.873 0 0 1-.62-.6l-5.49-16.72c-.19-.59.02-.89.65-.9l2.84-.05c.53 0 .87.24 1.02.74l2.96 9.64c.28.91.57.91.86 0l3.07-9.55c.1-.31.3-.52.59-.64.61-.26 1.25-.3 1.93-.11.34.09.62.35.73.69l3.15 9.66c.29.89.57.89.84 0Z\"/><rect class=\"cls-1\" x=\"92.16\" y=\"11.18\" width=\"4.58\" height=\"18.36\" rx=\".62\" ry=\".62\"/><path class=\"cls-1\" d=\"M105.11 15.51c-.98 1.01-.8 1.73.53 2.18 1.67.56 3.24 1.11 4.7 1.64 5.04 1.84 4.32 8.24-.3 9.71-3.8 1.21-6.97.45-9.52-2.27-.33-.35-.33-.7 0-1.05 1.53-1.65 2.95-1.87 4.28-.68 1.21 1.07 3.23 1.21 4.16-.32.4-.65.2-1.51-.46-1.91-.13-.08-.27-.13-.41-.17-1.81-.43-3.54-1.01-5.18-1.73-5.37-2.35-2.83-8.78 1.87-9.69 3.05-.59 5.54.14 7.47 2.19.65.69.57 1.28-.25 1.75l-.88.5c-.79.46-1.78.42-2.53-.1-1.41-.98-2.57-1-3.48-.05Zm16.14 1.99c1.6.59 3.25 1.17 4.96 1.72 5.4 1.75 4.52 8.65-.4 9.94-3.64.96-6.6.25-8.89-2.13-.65-.67-.57-1.26.22-1.77l1.23-.77c.75-.48 1.45-.41 2.09.21 1.42 1.37 2.9 1.48 4.43.31.56-.42.67-1.22.25-1.78-.17-.23-.41-.39-.68-.46-1.71-.47-3.39-1.04-5.06-1.72-4.56-1.87-4.31-7.06-.28-9.14 2.92-1.51 7.55-1.13 9.51 1.96.25.39.2.73-.15 1.03-.63.55-1.32.92-2.06 1.13-.35.1-.72.03-1.01-.17-1.36-.95-4.48-1.79-4.73.72-.04.4.19.78.57.92Zm50.7 2.8c0 5.05-4.09 9.14-9.14 9.14s-9.14-4.09-9.14-9.14 4.09-9.14 9.14-9.14 9.14 4.09 9.14 9.14Zm-4.73-.82c0-2.24-1.81-4.05-4.05-4.05h-.74c-2.24 0-4.05 1.81-4.05 4.05v1.68c0 2.24 1.81 4.05 4.05 4.05h.74c2.24 0 4.05-1.81 4.05-4.05v-1.68Zm11.77-6.91c1.33-1.05 2.82-1.58 4.47-1.57.59 0 .88.31.87.9l-.08 3.38c0 .35-.29.63-.64.63h-.08c-3.41-.46-4.79 1.75-4.68 4.73.11 2.8.11 5.43 0 7.88-.03.71-.4 1.06-1.11 1.05l-2.34-.04c-.68-.01-1.22-.56-1.22-1.24V12c0-.35.16-.58.49-.7 1.61-.59 2.77-.23 3.5 1.1.21.37.48.43.81.17Zm18.93 15.14c-8.85 4.98-16.36-7.97-9.11-14.5 3.04-2.73 6.43-2.95 10.16-.65.24.15.55.08.7-.16 0-.02.02-.03.03-.05.55-1.13 1.66-1.52 3.33-1.15.42.09.63.36.63.79-.01 5.57-.01 11.09 0 16.56 0 3.16-1.62 5.44-4.87 6.83-3.91 1.68-7.43.94-10.54-2.23-.54-.55-.47-1.01.2-1.39l1.54-.87c.63-.35 1.26-.33 1.87.07 1.51.99 3.21 1.17 5.11.54 1.02-.34 1.64-1.03 1.87-2.08l.19-.89c.23-1.09-.14-1.37-1.11-.82Zm1.34-7.79c0-2.46-1.99-4.45-4.45-4.45s-4.45 1.99-4.45 4.45 1.99 4.45 4.45 4.45 4.45-1.99 4.45-4.45Z\"/></svg>',withExternalLayout:true})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lz79mk-container\",\"data-framer-name\":\"Ticker 02\",layoutDependency:layoutDependency,layoutId:\"QAXhd7Erw-container\",name:\"Ticker 02\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"QAXhd7Erw\",layoutId:\"QAXhd7Erw\",name:\"Ticker 02\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3i4dy\",\"data-framer-name\":\"22\",layoutDependency:layoutDependency,layoutId:\"xr5G6whMG\",style:{opacity:.7},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19gn5fw\",\"data-framer-name\":\"Swiss_Serenity_blanc\",fill:\"black\",intrinsicHeight:1360,intrinsicWidth:2293,layoutDependency:layoutDependency,layoutId:\"uWJ0M0pyy\",svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 2293.27 1359.54\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M787.16 0h749.49a97.39 97.39 0 0 1-6.02 10.7c-.03.05-.05.1-.06.15 0 .05 0 .09.04.13.08.09.09.19.02.3-.89 1.51-1.78 3.01-2.66 4.5-77.87 132.23-172.32 292.81-283.35 481.76-17.26 29.38-34.36 58.48-51.29 87.3-3.57 6.09-7.18 12.23-10.82 18.42l-280.87 477.87c-.21.36-.6.59-1.03.59H720.85c-.65 0-.97-.32-.97-.97V911.26c0-.29-.23-.53-.52-.53H579.22c-.36 0-.65.29-.65.65l.01 169.53c0 .54-.27.81-.81.81H411.4a.51.51 0 0 0-.52.52v140.19c0 .85.35 1.02 1.04.53.03-.02.07-.03.11-.03 55.54.09 110.64.11 165.31.06.82 0 1.23.41 1.23 1.23v134.81c0 .28-.22.5-.5.5H.35c-.35 0-.44-.15-.26-.46L787.16 0Z\"/><path class=\"cls-1\" d=\"M1536.65 0h.36L1618 139.01c-.07.14-.15.24-.24.3-.11.07-.22.08-.33.01a.285.285 0 0 1-.14-.25c0-.25-.04-.25-.11-.01-.11.38 0 .66.32.83.41.21.5.51.29.91-.07.13-.17.24-.3.32-.21.13-.41.1-.59-.07l-.31-.32c-.47-.46-.82-.39-1.05.22-.49 1.29-1.17 1.86-2.04 1.71-.34-.06-.37.02-.1.23.09.08.14.19.15.34 0 .33-.15.54-.46.64-.35.11-.48.36-.4.75.09.41-.08.61-.51.58-.82-.06-1.3.31-1.43 1.11-.06.35-.27.55-.62.6-.99.14-1.41.68-1.27 1.62.03.21-.06.31-.27.32-.35 0-.62.16-.81.46-.05.06-.07.13-.07.21 0 .07.03.12.06.17.18.26.11.4-.2.42-.07 0-.13.03-.19.07-.23.17-.35.11-.35-.18 0-.36-.14-.67-.43-.93-.27-.23-.39-.17-.35.19.16 1.48-.4 2.4-1.69 2.77-.25.07-.37.24-.36.49l.06 1.83c0 .12-.05.19-.17.21l-.25.03s-.07-.02-.08-.09l-.04-3.3s.03-.03.05-.02c0 0 .01 0 .02.01.05.25-.02.44-.22.59a.36.36 0 0 1-.41.02.303.303 0 0 1-.16-.22c-.07-.27-.08-.29-.04-.05.01.09.02.18.02.27 0 .21-.12.33-.33.36-.37.05-.72.16-1.07.33-.56.27-.54.48.06.63l.35.09c.42.1.47.29.14.58-.15.13-.31.16-.48.1-.49-.19-.75-.02-.8.5-.06.65-.35 1.15-.88 1.5-.33.22-.52.53-.57.94-.11 1.07-.74 1.63-1.87 1.67-.64.02-.73.24-.28.65.03.03.08.04.13.03.51-.09.67.1.48.56 0 .03-.03.06-.06.07-.33.16-.63.12-.89-.11-.14-.13-.3-.2-.48-.22-.23-.03-.29.06-.19.27.04.08.09.15.16.2.33.29.34.58.04.89l-1.71 1.78a.83.83 0 0 0-.24.76c.02.15.06.29.13.42.35.64.16.96-.55.95-.15 0-.22.08-.2.23.07.54-.14.89-.61 1.04-.36.11-.56.35-.59.72-.03.33-.21.49-.55.46a.76.76 0 0 0-.53.18c-.27.22-.43.5-.48.85-.11.65-.42 1.17-.93 1.57-.88.69-1.46 1.55-1.74 2.59-.06.23-.19.42-.38.56-.57.4-.83.91-.79 1.54.01.27-.09.48-.3.65-.38.29-.63.67-.74 1.14-.07.27-.22.48-.46.62l-1.01.62c-.28.17-.48.4-.61.71-.25.6-.75.97-1.5 1.11-.43.08-.59-.08-.49-.49.03-.09-.03-.17-.16-.24-.38-.18-.63-.07-.75.33-.09.29-.28.49-.59.59-.61.21-.6.39.03.54.07.01.15.03.24.06a.468.468 0 0 1 .22.75c-.13.16-.31.25-.52.26-.17.01-.32.09-.43.21-.57.64-1.05 1.32-1.42 2.05-.09.17-.17.17-.26 0-.04-.08-.13-.04-.28.13-.08.1-.12.21-.11.34.19 2.35-.33 4.53-1.54 6.54-.36.6-.57.55-.62-.15-.01-.19-.12-.24-.31-.17-.25.1-.43.27-.56.51l-2.82 5.3c-.17.32-.28.66-.31 1.02-.07.76-.53 1.3-1.4 1.63-.31.12-.54.33-.68.64-.31.68-.83 1.14-1.58 1.37-.35.11-.38.27-.1.5.07.05.12.13.15.22.14.35.03.54-.34.59-.55.08-1.06.31-1.53.7-.35.28-.3.42.15.41.21 0 .41.09.59.26.27.27.23.46-.14.58-.29.09-.58.1-.89.05-.55-.11-.87.12-.96.67l-.58 3.57s.02.09.06.1h.04c.21-.07.36 0 .47.19.17.33.08.49-.29.49h-1.23c-.3 0-.58.18-.7.45-.23.51-.28 1.02-.13 1.53.09.32.03.66-.16.93-.25.35-.28.68-.09.99.5.81.31 1.86-.43 2.34-.14.09-.3.16-.46.2-.36.09-.48.33-.36.72.1.33 0 .69-.25.93-.95.91-1.71 1.97-2.27 3.18-.03.07-.09.11-.16.13-.07.01-.12-.05-.15-.19 0-.03-.02-.06-.06-.06-.03 0-.06.02-.06.05l-.81 2.26c-.04.11-.12.16-.24.13-.11-.03-.16-.09-.14-.18.12-.43.02-.49-.29-.16-.67.69-1.27 1.59-1.82 2.71-.14.27-.18.58-.12.88.1.56-.06 1.02-.49 1.37-.29.25-.52.2-.71-.13-.12-.21-.2-.43-.23-.65-.09-.57-.21-.58-.35-.01-.09.33-.05.64.1.93a.9.9 0 0 1-.06.91l-1.66 2.38c-.25.36-.57.44-.96.24a1.49 1.49 0 0 0-.45-.15c-.26-.04-.31.04-.14.24.07.09.15.16.23.22.41.31.39.58-.06.83l-.92.5c-.5.27-.49.52.03.76.09.04.18.07.27.09.42.09.41.23-.04.42l-2.32.98s-.06.05-.04.09c0 .02.03.04.05.05.15.04.22.13.21.27 0 .11.02.11.07.02s.14-.14.25-.17c.09-.02.17 0 .25.04.13.08.22.18.28.29.23.42.1.63-.37.64h-.67a.534.534 0 0 0-.49.73c.34.83.33 1.69-.04 2.57-.16.38-.38.42-.67.13l-.3-.29c-.27-.27-.48-.23-.61.14-.11.33-.16.68-.15 1.04.01.43-.14.8-.45 1.11-.28.27-.55.26-.8-.04a.412.412 0 0 0-.72.24l-.24 4.75c-.01.28-.16.41-.44.39-.89-.05-1.31.37-1.26 1.26.01.23-.04.45-.15.66-.13.23-.31.39-.55.5-.29.13-.44.36-.44.69v4.71c0 .4-.15.74-.45 1.01-.77.71-1.4 1.56-1.9 2.54-.27.53-.65.95-1.14 1.25-.25.15-.35.37-.3.65.02.15.07.29.16.42.05.08.04.15-.03.2a.36.36 0 0 1-.24.06c-.25-.05-.36.05-.35.3.01.23-.05.44-.18.63-1.81 2.62-3.43 5.21-4.84 7.77-3.57 6.43-7.44 12.96-11.62 19.58-.11.17-.23.32-.38.45-.14.12-.18.26-.12.43.12.32.07.61-.14.88-.65.81-1.25 1.61-1.8 2.41-.74 1.06-1.44 2.18-2.11 3.36-.51.9-1.12 1.83-1.81 2.78-.59.81-1.1 1.69-1.53 2.64-.18.38-.45.73-.82 1.04-.49.42-.85.97-1.04 1.58-.2.67-.48 1.31-.84 1.9a269.87 269.87 0 0 1-6.87 10.65c-.21.3-.31.63-.32 1 0 .3-.12.59-.33.88-1.81 2.46-3.56 5.16-5.27 8.09-.23.37-.61.94-1.16 1.69-.39.53-.73 1.11-1.03 1.74-.41.86-.87 1.63-1.4 2.31a6.48 6.48 0 0 0-1.1 2.09c-.19.64-.47 1.25-.86 1.83a202.94 202.94 0 0 0-4.87 7.61c-.18.29-.29.6-.34.93-.11.68-.48 1.05-1.13 1.11-.32.03-.53.2-.64.5l-.92 2.62a.56.56 0 0 1-.17.24c-.51.46-.73 1.02-.65 1.69 0 .09-.03.16-.1.21-.1.06-.2.08-.3.07-.29-.06-.48.05-.56.34-.37 1.27-1.01 2.42-1.94 3.47-.19.23-.32.48-.38.77-.11.56-.25 1.11-.42 1.66-.16.53-.4 1.03-.73 1.48a51.448 51.448 0 0 0-3.98 6.61c-1.21 2.39-2.48 4.58-3.83 6.57-3.24 4.81-5.91 9.15-8.02 13.04-.32.58-.49 1.2-.51 1.86 0 .08-.04.14-.11.17-.09.05-.19.06-.28.04-.33-.08-.56.04-.69.36-.8 2.01-1.82 3.8-3.07 5.37-.2.25-.33.54-.38.86-.11.69-.36 1.31-.75 1.86-.44.63-.82 1.3-1.14 2.02-1.07 2.37-2.34 4.41-3.83 6.14-.14.16-.18.34-.12.54.04.13.02.26-.06.37-4.24 6.55-8.24 13.1-12 19.63-.1.16-.22.29-.36.4-.16.12-.32.22-.48.29-.22.11-.23.23-.04.37.08.07.12.15.13.24 0 .15-.02.29-.08.43-.41.93-.97 1.78-1.68 2.55-.26.29-.44.62-.53 1-.19.81-.56 1.51-1.09 2.09-.69.75-1.26 1.58-1.7 2.48-.16.33-.41.56-.76.67-.36.13-.44.35-.25.68.21.36.13.64-.23.84-.64.37-1.03.92-1.17 1.65-.09.48-.35.9-.73 1.2-.45.36-.66.79-.62 1.3.01.15-.03.31-.13.43l-3.58 4.81c-.09.12-.21.21-.35.26-.18.07-.28.19-.31.38-.1.82-.53 1.42-1.29 1.81-.05.03-.07.07-.06.12.01.09.03.19.05.28.03.14 0 .27-.07.4-.95 1.66-1.91 3.36-2.86 5.11-.03.06-.02.12.03.17.02.03.04.05.05.08.05.13.04.25-.03.36a94.874 94.874 0 0 0-4.68 7.31c-.1.17-.14.37-.11.57.06.41-.13.67-.58.8-.43.76-.8 1.57-1.11 2.44-.11.32-.3.59-.56.81-1.03.89-1.29 2.16-2.08 3.13-.83 1.05-1.69 2.15-2.56 3.3-.86 1.13-1.57 2.34-2.14 3.65-.75 1.73-1.67 3.28-2.78 4.67-.24.29-.34.67-.28 1.04.03.24.01.47-.06.7-.07.23-.22.41-.43.53-.24.14-.38.34-.42.61-.19 1.26-1.73 3.21-2.55 4.2-.51.62-.82 1.33-.94 2.13-.05.35-.21.65-.48.89-.81.72-1.25 1.65-1.32 2.78-.02.34-.12.66-.29.96-1.18 2.05-1.76 4.42-2.89 6.32-.7 1.17-1.4 2.3-2.1 3.38-.06.09-.14.16-.25.19-.19.05-.28.17-.27.37.01.11.05.21.11.3.12.18.1.35-.06.51-.77.74-1.25 1.63-1.45 2.66-.19 1.03-.56 2.12-1.11 3.27-1.77 3.75-3.48 7.62-5.14 11.61-1.77 4.25-3.33 9.57-4.68 15.96-.07.34-.23.64-.47.9-.22.24-.27.52-.16.83.12.33.06.7-.16.97-.53.66-.72 1.42-.59 2.27.04.23-.04.39-.25.49-.81.41-1.11 1.09-.88 2.04.09.34.07.68-.04 1.01-.29.82-.58 1.65-.89 2.5-.29.78-.51 1.63-.66 2.56-.36 2.2-.84 4.37-1.44 6.52-.08.29-.03.56.14.81s.13.48-.11.7c-.22.2-.32.45-.31.75.05.89-.23 1.76-.82 2.61-.19.27-.27.58-.22.91.09.53.13 1.06.12 1.58 0 .23.05.91.16 2.05.06.66-.02 1.32-.25 1.98-.05.15-.15.19-.3.13a.214.214 0 0 1-.15-.19c-.02-.37-.1-.38-.23-.04-.17.45-.15.89.06 1.33.16.33.13.63-.1.92-.41.51-.52 1.09-.33 1.74.09.29.1.58.02.88-1 3.82-1.87 7.63-2.61 11.44-.04.21-.06.92-.07 2.13 0 1.03-.3 1.8-.89 2.29-.04.03-.04.09-.01.12l.02.02c.15.07.26.18.31.33.12.31.06.59-.18.83-.49.51-.75 1.09-.77 1.74-.06 1.79-.09 3.62-.1 5.48 0 .24.12.4.35.48l1.2.37c.38.12.45.34.2.65s-.54.4-.88.27c-.01 0-.02 0-.02-.02s0-.02.02-.02c1.19-.18 2.38.04 3.56.65h-188.64c3.64-6.19 7.25-12.33 10.82-18.42 16.93-28.82 34.03-57.92 51.29-87.3 111.03-188.95 205.48-349.53 283.35-481.76.88-1.49 1.77-2.99 2.66-4.5.07-.11.06-.21-.02-.3-.03-.04-.05-.08-.04-.13 0-.05.03-.1.06-.15a97.39 97.39 0 0 0 6.02-10.7Z\"/><path class=\"cls-1\" d=\"m1618 139.01 70.93 121.74c-.13.28-.36.55-.68.82-.19.16-.18.17.03.04.05-.03.09-.03.14 0 .14.08.19.21.15.38-.03.14-.06.27-.07.39-.03.35-.21.45-.52.3-.79-.38-1.42-.19-1.88.56-.18.3-.44.5-.77.61-.86.27-1.66.67-2.4 1.2-.29.21-.39.48-.3.82.05.21.17.38.35.51.36.26.32.36-.12.29-.45-.06-.84-.23-1.19-.5-.28-.22-.5-.17-.67.14-.53.96-1.37 1.71-2.51 2.25-.37.17-.65.45-.84.82-.17.34-.45.43-.83.26-.23-.1-.37-.03-.42.21l-.09.38c-.07.27-.23.37-.49.31-.31-.07-.49.04-.56.33-.09.38-.3.67-.63.88-.75.45-1.41 1.05-1.99 1.8-.09.11-.22.18-.36.19-.1 0-.2 0-.3-.02-.31-.05-.44.08-.39.39.01.09 0 .18-.02.27-.05.18-.21.31-.39.34-1.87.37-2.57 1.58-2.12 3.62.09.41-.03.71-.36.9-.48.28-.65.15-.52-.38.17-.66 0-1.25-.5-1.76-.27-.27-.43-.22-.47.16-.13 1.04-.5 2.01-1.12 2.92-.13.19-.14.39-.05.58.19.41.42.44.71.09.11-.14.23-.28.36-.41.1-.11.15-.09.14.06 0 .05-.02.09-.05.12-.65.93-1.32 1.89-2.01 2.89-.07.1-.16.15-.28.16h-.37c-.3-.01-.38-.15-.23-.42.07-.12.17-.21.31-.26.2-.07.26-.21.19-.41-.1-.27-.29-.41-.57-.41-.39 0-.51.19-.37.55.1.25.05.48-.16.69-.05.05-.08.04-.09-.04 0-.09-.05-.16-.13-.23-.23-.18-.4-.14-.52.12-.11.21-.15.44-.14.68.02.28-.11.44-.39.48-.95.15-1.5.71-1.63 1.7-.04.33-.16.36-.36.09-.07-.11-.19-.1-.36.03-.22.17-.33.39-.33.67 0 .1 0 .2-.01.3 0 .27-.07.28-.18.04-.05-.09-.14-.13-.29-.12-.21.01-.33.12-.37.33-.03.21 0 .4.13.57.19.29.21.58.05.88-.82 1.53-2.04 2.55-3.65 3.07-.4.13-.55.39-.44.8.07.25 0 .46-.21.63-.03.02-.06.02-.08-.01-.06-.14-.16-.2-.3-.19-.28.01-.42.16-.41.43 0 .17.09.32.26.45.03.01.05.02.08.02.09-.01.17-.05.23-.11.23-.21.37-.17.42.13l.17.95c.05.32-.01.61-.2.88l-4.26 5.88a.295.295 0 0 0 .17.46c.29.11.35.29.2.55-.31.53-.71.95-1.2 1.25-.13.08-.16.19-.09.32.05.09.13.14.24.14.3.01.3.04 0 .09-.69.1-1.1.53-1.25 1.3-.05.26-.18.3-.37.12a.35.35 0 0 0-.14-.06c-.09 0-.18.02-.26.09-.03.03-.06.06-.08.1-.12.23-.06.37.17.43.03.01.07.01.1 0 .25-.06.37.04.36.29 0 .11-.06.18-.17.21-.17.05-.2.01-.08-.12.11-.12.11-.22-.02-.29a.412.412 0 0 0-.44-.01c-2.5 1.25-4.56 3.79-6.17 7.6-.24.57-.65 1.05-1.17 1.38-.46.3-.8.65-1.03 1.06-.95 1.68-2.01 3.38-3.18 5.1-.13.19-.3.31-.51.38-.48.15-.62.46-.41.93.12.27.04.45-.25.54-.35.11-.57.36-.66.73-.09.35-.29.61-.62.77-.87.42-1.35 1.14-1.42 2.16-.02.29-.16.37-.42.25-.09-.05-.18-.1-.27-.17-.6-.44-.78-.3-.55.41.03.1.08.19.13.28.17.27.13.63-.11.86-.87.85-1.34 1.86-1.39 3.05 0 .11-.06.16-.17.14-.11-.02-.19 0-.26.06-.65.56-1.13 1.15-1.43 1.78-.29.63-.73 1.12-1.3 1.48-.03.02-.04.05-.03.08l.09.26c.07.22.02.47-.14.64-.81.88-1.53 1.83-2.18 2.86-.26.41-.57.77-.93 1.1-.47.43-.94.89-1.41 1.38-.01.02 0 .04.01.05h.03c.11-.05.23-.06.34-.05.22.02.38.2.38.42 0 .46-.2.75-.58.88-.29.1-.51.33-.59.62-.13.45-.18.88-.15 1.31.02.29-.08.54-.3.73l-1.99 1.77c-.28.25-.42.57-.41.94 0 .89-.3 1.69-.91 2.41-.28.33-.43.71-.46 1.14-.06.95-.5 1.57-1.33 1.86-.33.11-.54.33-.65.66-.35 1.05-.9 1.89-1.66 2.5-.24.19-.29.43-.14.7l.16.31c.17.31.09.53-.25.64l-.88.3a1.2 1.2 0 0 0-.72.64c-.64 1.31-1.3 2.6-1.97 3.87-.46.86-1.31 1.49-1.44 2.55-.04.28-.15.53-.33.74l-1.43 1.67c-.2.23-.28.5-.24.81l.18 1.48c.05.41-.13.59-.54.54-.7-.1-1.25.21-1.66.93-.75 1.32-1.42 2.66-2.03 4.02-.11.25-.28.44-.53.56-.44.21-.61.58-.52 1.11.11.66-.3 1.3-.94 1.47-.86.23-1.28.77-1.27 1.6 0 .31-.09.58-.28.81-.65.79-1.17 1.6-1.54 2.41-.43.93-.88 1.76-1.37 2.49-1.27 1.91-2.25 3.9-2.93 5.98-.1.29-.29.5-.57.61-.86.34-1.53.92-2 1.73-.21.37-.35.78-.42 1.24-.08.54-.28 1.01-.61 1.41a18.45 18.45 0 0 0-2.51 3.95c-.73 1.57-1.76 2.91-3.09 4.01-.11.09-.12.19-.05.3.02.03.05.05.08.06.28.11.32.3.12.57-.85 1.15-1.62 2.21-2.33 3.19-.29.41-.38.87-.25 1.37.06.23-.03.48-.22.62-1 .75-1.74 1.73-2.21 2.96-.1.25-.28.4-.55.43-.11.02-.22.06-.32.12-.2.13-.22.29-.06.47.06.07.1.15.11.24.03.18 0 .35-.09.5-.88 1.57-1.89 2.72-3.03 3.45-.28.18-.41.44-.38.78.04.58-.24 1.33-.62 1.78-.83.97-.79 2.02-1.46 3.09-.8 1.28-1.59 2.45-2.36 3.52-.19.25-.22.53-.09.82.15.36.05.65-.31.88-.29.97-.61 1.94-.94 2.9-.31.89-.04 1.59-.45 2.44-.21.43-.26.41-.15-.06.07-.27-.12-.48-.56-.61-.48-.14-.99.09-1.21.54-.41.86-.81 1.77-1.2 2.72-.42 1.03-1 1.96-1.74 2.8-.65.73-1.21 1.54-1.69 2.43-.47.87-.98 1.71-1.53 2.53-2.75 4.13-5.4 8.37-7.95 12.72-.13.21-.31.36-.55.45-1.1.41-1.58 1.27-1.43 2.6.03.3-.03.58-.18.83l-2.4 3.89c-.25.41-.44.85-.55 1.32-.15.62-.49 1.14-1 1.56a2.2 2.2 0 0 0-.6.76c-.44.95-1.01 1.74-1.72 2.37-.26.23-.35.52-.27.85.11.49-.04.85-.46 1.07-.39.2-.57.52-.55.95.02.54-.15 1-.52 1.39-.21.22-.29.48-.22.77.07.33.28.52.61.58.14.03.15.07.03.14-.07.04-.08.12-.04.24.02.07-.01.11-.09.12-1.47.16-2.1.79-1.88 1.88.05.24-.04.31-.26.2-.17-.09-.31-.06-.43.07-.18.18-.3.4-.36.65-.23.91-.41 1.79-.52 2.66-.07.48-.33.65-.8.51a.5.5 0 0 0-.34.02c-.25.09-.42.27-.49.53a2.57 2.57 0 0 1-1.26 1.65.56.56 0 0 0-.21.78c.04.07.09.13.16.18.22.17.42.37.6.6.19.24.14.31-.15.22a.585.585 0 0 1-.24-.14c-.22-.2-.38-.16-.48.12l-.15.43c-.09.24-.03.44.16.61.09.08.19.15.29.21.45.27.41.42-.11.47-.2.01-.38.1-.55.27-.87.85-.98 1.67-.33 2.46.1.13.08.24-.05.33-.35.24-.49.56-.43.96.05.31-.08.48-.4.5-.13.01-.26.04-.39.08-.21.07-.34.21-.4.41-.05.16-.01.32.1.47.19.25.15.29-.12.11a.671.671 0 0 0-.23-.1c-.38-.11-.52.03-.43.41.02.09.06.16.11.23.17.2.12.28-.13.23-.49-.09-.73.14-.72.69-.63 1.09-1.04 2.21-1.22 3.36-.05.29.12.57.4.68.38.15.4.45.05.92-.14.18-.41.22-.59.07a.39.39 0 0 1-.15-.23c-.06-.29-.23-.43-.52-.43-.33 0-.55.15-.65.46-.35 1.05-.66 2.08-.93 3.09-.07.26-.21.46-.43.61-.37.27-.41.58-.12.94.15.19.12.32-.11.39-.7.22-.99.73-.87 1.52.05.35.01.69-.12 1.02-.55 1.32-1.13 2.59-1.76 3.81-.49.96-.24 2.35-.98 3.03-.23.21-.34.47-.34.78v.44c.02.35-.12.63-.41.84-.33.24-.44.57-.33.98.11.4-.02.71-.37.93-.29.18-.39.43-.28.76.12.34.15.69.1 1.05-.15 1.09-.55 1.93-1.2 2.51-.15.13-.17.29-.08.46.4.78.3 1.56-.29 2.33-.22.28-.35.6-.39.95l-.69 5.48c-.03.26 0 .51.09.76.13.34.01.62-.34.83-.35.2-.38.44-.09.71.47.46.45.92-.04 1.38-.2.18-.21.37-.03.56.29.31.34.65.15 1-.56 1.02-.55 2.16.02 3.42.11.24.1.47-.05.7-.15.23-.21.48-.18.75.13 1.06.22 2.18.27 3.36.01.19-.01.37-.08.54-.07.18-.16.34-.28.49-.3.36-.26.67.13.94.53.37.55.78.04 1.25-.19.17-.19.35-.01.54l.24.24c.29.29.33.61.1.96-.33.5-.39 1.04-.16 1.62.17.43.25.89.24 1.39-.01.38-.13.71-.36.99-.34.39-.29.72.16.99.15.09.24.21.27.37.06.29.05.56-.04.81-.14.43-.17.87-.1 1.32.03.21-.05.28-.25.23-.16-.05-.3.02-.42.19-.19.26-.13.62.13.81.05.04.11.07.17.08.38.11.47.36.26.73-.33.6-.16.89.49.86.13 0 .24.04.33.14.25.31.36.68.33 1.11-.05.59-.07 1.16-.04 1.72.01.35.18.6.51.73.19.07.3.21.31.42.01.27-.11.44-.37.52-.18.06-.3.18-.36.37-.09.29.02.45.31.5.31.05.62.15.92.3.21.11.38.26.51.45.27.43.28.87.04 1.32-.14.25-.14.51.01.77.12.22.28.4.49.54.15.09.19.28.1.43-.03.05-.07.09-.12.11l-.27.15c-.37.2-.44.47-.2.82.15.21.34.39.56.53.41.27.37.43-.12.46-.51.04-.86-.15-1.05-.56-.39-.83-.79-.83-1.22-.02-.32.62-.22.96.29 1.02.57.07.61.26.12.55-.29.17-.44.43-.47.77-.03.49.18.65.64.47.35-.13.59-.38.72-.75.07-.19.18-.22.33-.08.09.08.13.18.13.31 0 .16-.06.29-.19.39-.49.41-.91.88-1.25 1.42-.12.19-.09.37.08.52.09.07.19.11.31.1a.49.49 0 0 0 .46-.51c-.02-.33.13-.51.46-.55.29-.04.39.08.28.35l-.38.93c-.17.42-.06.74.33.96.09.05.13.15.1.28-.07.33.05.57.37.7.59.25.8.69.62 1.33-.09.33.02.56.35.69.25.09.48-.04.67-.39.08-.14.12-.29.11-.45-.03-1.08-.28-1.57-.75-1.47-.27.06-.33-.03-.2-.27.33-.56.78-1.03 1.36-1.4.15-.1.28-.09.4.04 1.06 1.09 1.25 2.17.58 3.24-.09.15-.09.29 0 .43.51.8 1.13 1.28 1.88 1.45.46.1.6.37.43.81l-.37.92c-.12.31-.09.61.1.89.63.95 1.49 1.44 2.56 1.47.45.01.51.16.16.45-.15.13-.25.28-.3.46-.19.63.04.91.69.84.31-.03.61.02.89.14.31.13.32.3.05.5-.39.28-.47.61-.25 1 .09.15.27.2.42.12a.3.3 0 0 0 .12-.13c.09-.17.22-.28.39-.33.35-.1.56.03.63.39.07.36.29.57.67.63.53.09.54.23.03.4-.19.07-.3.19-.33.36-.07.36.08.59.43.68l1.16.32c.33.09.46.3.39.64-.09.51 0 1.01.27 1.48.2.34.33.31.39-.08.02-.13.07-.24.14-.33.24-.3.43-.27.57.08.36.87 1 1.58 1.91 2.15.31.19.46.47.46.84v1.31c0 .43.22.64.65.62.47-.03.95-.04 1.43-.03.1 0 .16.05.17.15.02.09 0 .18-.07.26-.09.12-.08.21.05.28 1.01.57 2.09.86 3.24.85h.01c-2.35-.33-4.16-.04-5.42.87h-168.66c-1.18-.6-2.37-.82-3.56-.64-.01 0-.02 0-.02.02s0 .02.02.02c.34.13.63.04.88-.27s.18-.53-.2-.65l-1.2-.37c-.23-.08-.35-.24-.35-.48 0-1.86.04-3.69.1-5.48.02-.65.28-1.23.77-1.74.24-.24.3-.52.18-.83a.56.56 0 0 0-.31-.33c-.04-.02-.05-.07-.03-.11 0-.01.01-.02.02-.03.59-.49.88-1.26.89-2.29 0-1.21.03-1.92.07-2.13.74-3.81 1.61-7.62 2.61-11.44.08-.3.07-.59-.02-.88-.19-.65-.08-1.23.33-1.74.23-.29.26-.59.1-.92-.21-.44-.23-.88-.06-1.33.13-.34.21-.33.23.04 0 .09.06.16.15.19.15.06.25.02.3-.13.23-.66.31-1.32.25-1.98-.11-1.14-.16-1.82-.16-2.05 0-.52-.03-1.05-.12-1.58-.05-.33.03-.64.22-.91.59-.85.87-1.72.82-2.61-.01-.3.09-.55.31-.75.24-.22.28-.45.11-.7a.937.937 0 0 1-.14-.81c.6-2.15 1.08-4.32 1.44-6.52.15-.93.37-1.78.66-2.56.31-.85.6-1.68.89-2.5.11-.33.13-.67.04-1.01-.23-.95.07-1.63.88-2.04.21-.1.29-.26.25-.49-.13-.85.06-1.61.59-2.27.22-.27.28-.64.16-.97-.11-.31-.06-.59.16-.83.24-.26.4-.56.47-.9 1.35-6.39 2.91-11.71 4.68-15.96 1.66-3.99 3.37-7.86 5.14-11.61.55-1.15.92-2.24 1.11-3.27.2-1.03.68-1.92 1.45-2.66.16-.16.18-.33.06-.51a.642.642 0 0 1-.11-.3c-.01-.2.08-.32.27-.37.11-.03.19-.1.25-.19.7-1.08 1.4-2.21 2.1-3.38 1.13-1.9 1.71-4.27 2.89-6.32.17-.3.27-.62.29-.96.07-1.13.51-2.06 1.32-2.78.27-.24.43-.54.48-.89.12-.8.43-1.51.94-2.13.82-.99 2.36-2.94 2.55-4.2.04-.27.18-.47.42-.61.21-.12.36-.3.43-.53.07-.23.09-.46.06-.7-.06-.37.04-.75.28-1.04 1.11-1.39 2.03-2.94 2.78-4.67.57-1.31 1.28-2.52 2.14-3.65.87-1.15 1.73-2.25 2.56-3.3.79-.97 1.05-2.24 2.08-3.13.26-.22.45-.49.56-.81.31-.87.68-1.68 1.11-2.44.45-.13.64-.39.58-.8-.03-.2.01-.4.11-.57 1.47-2.54 3.03-4.98 4.68-7.31.07-.11.08-.23.03-.36-.01-.03-.03-.05-.05-.08-.05-.05-.06-.11-.03-.17.95-1.75 1.91-3.45 2.86-5.11.07-.13.1-.26.07-.4-.02-.09-.04-.19-.05-.28 0-.05.01-.09.06-.12.76-.39 1.19-.99 1.29-1.81.03-.19.13-.31.31-.38.14-.05.26-.14.35-.26l3.58-4.81c.1-.12.14-.28.13-.43-.04-.51.17-.94.62-1.3.38-.3.64-.72.73-1.2.14-.73.53-1.28 1.17-1.65.36-.2.44-.48.23-.84-.19-.33-.11-.55.25-.68.35-.11.6-.34.76-.67.44-.9 1.01-1.73 1.7-2.48.53-.58.9-1.28 1.09-2.09.09-.38.27-.71.53-1 .71-.77 1.27-1.62 1.68-2.55.06-.14.09-.28.08-.43 0-.09-.05-.17-.13-.24-.19-.14-.18-.26.04-.37.16-.07.32-.17.48-.29.14-.11.26-.24.36-.4 3.76-6.53 7.76-13.08 12-19.63.08-.11.1-.24.06-.37-.06-.2-.02-.38.12-.54 1.49-1.73 2.76-3.77 3.83-6.14.32-.72.7-1.39 1.14-2.02.39-.55.64-1.17.75-1.86.05-.32.18-.61.38-.86 1.25-1.57 2.27-3.36 3.07-5.37.13-.32.36-.44.69-.36.09.02.19 0 .28-.04.07-.03.1-.09.11-.17.02-.66.19-1.28.51-1.86 2.11-3.89 4.78-8.23 8.02-13.04 1.35-1.99 2.62-4.18 3.83-6.57 1.21-2.38 2.53-4.58 3.98-6.61.33-.45.57-.95.73-1.48.17-.55.31-1.1.42-1.66.06-.29.19-.54.38-.77.93-1.05 1.57-2.2 1.94-3.47.08-.29.27-.4.56-.34.1.01.2-.01.3-.07.07-.05.11-.12.1-.21-.08-.67.14-1.23.65-1.69a.56.56 0 0 0 .17-.24l.92-2.62c.11-.3.32-.47.64-.5.65-.06 1.02-.43 1.13-1.11.05-.33.16-.64.34-.93 1.55-2.55 3.18-5.09 4.87-7.61.39-.58.67-1.19.86-1.83.22-.73.59-1.43 1.1-2.09.53-.68.99-1.45 1.4-2.31.3-.63.64-1.21 1.03-1.74.55-.75.93-1.32 1.16-1.69 1.71-2.93 3.46-5.63 5.27-8.09.21-.29.32-.58.33-.88 0-.37.11-.7.32-1 2.35-3.46 4.64-7.01 6.87-10.65.36-.59.64-1.23.84-1.9.19-.61.55-1.16 1.04-1.58.37-.31.64-.66.82-1.04.43-.95.94-1.83 1.53-2.64.69-.95 1.3-1.88 1.81-2.78.67-1.18 1.37-2.3 2.11-3.36.55-.8 1.15-1.6 1.8-2.41.21-.27.26-.56.14-.88-.06-.17-.02-.31.12-.43.15-.13.27-.28.38-.45 4.18-6.62 8.05-13.15 11.62-19.58 1.41-2.56 3.03-5.15 4.84-7.77.13-.19.19-.4.18-.63-.01-.25.1-.35.35-.3.08.01.16 0 .24-.06.07-.05.08-.12.03-.2a.942.942 0 0 1-.16-.42c-.05-.28.05-.5.3-.65.49-.3.87-.72 1.14-1.25.5-.98 1.13-1.83 1.9-2.54.3-.27.45-.61.45-1.01v-4.71c0-.33.15-.56.44-.69.24-.11.42-.27.55-.5.11-.21.16-.43.15-.66-.05-.89.37-1.31 1.26-1.26.28.02.43-.11.44-.39l.24-4.75c.02-.23.21-.4.44-.38.11 0 .21.06.28.14.25.3.52.31.8.04.31-.31.46-.68.45-1.11-.01-.36.04-.71.15-1.04.13-.37.34-.41.61-.14l.3.29c.29.29.51.25.67-.13.37-.88.38-1.74.04-2.57a.53.53 0 0 1 .49-.73h.67c.47 0 .6-.22.37-.64a.772.772 0 0 0-.28-.29.315.315 0 0 0-.25-.04c-.11.03-.2.08-.25.17-.05.09-.08.09-.07-.02 0-.14-.06-.23-.21-.27-.04-.02-.06-.06-.05-.1 0-.02.02-.04.04-.04l2.32-.98c.45-.19.46-.33.04-.42-.09-.02-.18-.05-.27-.09-.52-.24-.53-.49-.03-.76l.92-.5c.45-.25.47-.52.06-.83-.08-.06-.16-.13-.23-.22-.17-.2-.12-.28.14-.24.17.03.32.08.45.15.39.2.71.12.96-.24l1.66-2.38a.9.9 0 0 0 .06-.91c-.15-.29-.19-.6-.1-.93.14-.57.26-.56.35.01.03.22.11.44.23.65.19.33.42.38.71.13.43-.35.59-.81.49-1.37-.06-.3-.02-.61.12-.88.55-1.12 1.15-2.02 1.82-2.71.31-.33.41-.27.29.16-.02.09.03.15.14.18.12.03.2-.02.24-.13l.81-2.26s.03-.06.06-.05c.03 0 .06.03.06.06.03.14.08.2.15.19.07-.02.13-.06.16-.13a10.44 10.44 0 0 1 2.27-3.18c.26-.24.35-.6.25-.93-.12-.39 0-.63.36-.72.86-.2 1.35-1.12 1.11-2.04a1.73 1.73 0 0 0-.22-.5c-.19-.31-.16-.64.09-.99.19-.27.25-.61.16-.93-.15-.51-.1-1.02.13-1.53.12-.27.4-.45.7-.45h1.23c.37 0 .46-.16.29-.49-.11-.2-.26-.26-.47-.19-.03.02-.08 0-.09-.04v-.05l.58-3.57c.09-.55.41-.78.96-.67.31.05.6.04.89-.05.37-.12.41-.31.14-.58-.18-.17-.38-.26-.59-.26-.45 0-.5-.13-.15-.41.47-.39.98-.62 1.53-.7.37-.05.48-.24.34-.59a.435.435 0 0 0-.15-.22c-.28-.23-.25-.39.1-.5.75-.23 1.27-.69 1.58-1.37.14-.31.37-.52.68-.64.87-.33 1.33-.87 1.4-1.63.03-.36.14-.7.31-1.02l2.82-5.3c.13-.24.31-.41.56-.51.19-.07.3-.02.31.17.05.7.26.75.62.15 1.21-2.01 1.73-4.19 1.54-6.54 0-.13.03-.24.11-.34.15-.17.24-.21.28-.13.09.18.17.18.26 0 .37-.73.85-1.41 1.42-2.05.11-.12.26-.2.43-.21.21-.01.39-.1.52-.26.17-.2.14-.5-.06-.66a.507.507 0 0 0-.16-.09c-.09-.03-.17-.05-.24-.06-.63-.15-.64-.33-.03-.54.31-.1.5-.3.59-.59.12-.4.37-.51.75-.33.13.07.19.15.16.24-.1.41.06.57.49.49.75-.14 1.25-.51 1.5-1.11.13-.31.33-.54.61-.71l1.01-.62c.24-.14.39-.35.46-.62.11-.47.36-.85.74-1.14.21-.17.31-.38.3-.65-.04-.63.22-1.14.79-1.54.19-.14.32-.33.38-.56.28-1.04.86-1.9 1.74-2.59.51-.4.82-.92.93-1.57.05-.35.21-.63.48-.85a.76.76 0 0 1 .53-.18c.34.03.52-.13.55-.46.03-.37.23-.61.59-.72.47-.15.68-.5.61-1.04-.02-.15.05-.23.2-.23.71 0 .9-.31.55-.95a1.21 1.21 0 0 1-.13-.42.83.83 0 0 1 .24-.76l1.71-1.78c.3-.31.29-.6-.04-.89a.526.526 0 0 1-.16-.2c-.1-.21-.04-.3.19-.27.18.02.34.09.48.22.26.23.56.27.89.11.03-.01.05-.04.06-.07.19-.46.03-.65-.48-.56-.05.01-.1 0-.13-.03-.45-.41-.36-.63.28-.65 1.13-.04 1.76-.6 1.87-1.67.05-.41.24-.72.57-.94.53-.35.82-.85.88-1.5.05-.52.31-.69.8-.5.17.06.33.03.48-.1.33-.29.28-.48-.14-.58l-.35-.09c-.6-.15-.62-.36-.06-.63.35-.17.7-.28 1.07-.33.21-.03.32-.15.33-.36 0-.09 0-.18-.02-.27-.04-.24-.03-.22.04.05.02.1.07.17.16.22.15.08.28.07.41-.02.2-.15.27-.34.22-.59-.01-.02-.04-.02-.06 0 0 0-.01.01-.01.02l.04 3.3c0 .07.03.1.08.09l.25-.03c.12-.02.18-.09.17-.21l-.06-1.83c0-.25.11-.42.36-.49 1.29-.37 1.85-1.29 1.69-2.77-.04-.36.08-.42.35-.19.29.26.44.57.43.93 0 .29.12.35.35.18.06-.04.12-.06.19-.07.31-.02.38-.16.2-.42a.428.428 0 0 1-.06-.17c0-.08.02-.15.07-.21.19-.3.46-.45.81-.46.21 0 .3-.11.27-.32-.14-.94.28-1.48 1.27-1.62.35-.05.56-.25.62-.6.13-.8.61-1.17 1.43-1.11.43.03.6-.17.51-.58-.08-.39.05-.64.4-.75.31-.1.46-.31.46-.64 0-.15-.06-.26-.15-.34-.27-.21-.24-.29.1-.23.87.15 1.55-.42 2.04-1.71.23-.61.58-.68 1.05-.22l.31.32c.18.17.38.2.59.07.13-.08.23-.19.3-.32.21-.4.12-.7-.29-.91-.32-.17-.43-.45-.32-.83.07-.24.1-.24.11.01 0 .11.05.19.14.25.11.07.22.06.33-.01.09-.06.17-.16.24-.3Z\"/><path class=\"cls-1\" d=\"m1688.93 260.75 199.06 341.7c.3.52.15.78-.45.78l-347.73.02c1.26-.91 3.07-1.2 5.42-.87h-.01c-1.15 0-2.23-.28-3.24-.85-.13-.07-.14-.16-.05-.28.07-.08.09-.17.07-.26-.01-.1-.07-.15-.17-.15-.48 0-.96 0-1.43.03-.43.02-.65-.19-.65-.62v-1.31c0-.37-.15-.65-.46-.84-.91-.57-1.55-1.28-1.91-2.15-.14-.35-.33-.38-.57-.08-.07.09-.12.2-.14.33-.06.39-.19.42-.39.08-.27-.47-.36-.97-.27-1.48.07-.34-.06-.55-.39-.64l-1.16-.32c-.35-.09-.5-.32-.43-.68.03-.17.14-.29.33-.36.51-.17.5-.31-.03-.4-.38-.06-.6-.27-.67-.63-.07-.36-.28-.49-.63-.39-.17.05-.3.16-.39.33a.3.3 0 0 1-.4.14.348.348 0 0 1-.14-.13c-.22-.39-.14-.72.25-1 .27-.2.26-.37-.05-.5-.28-.12-.58-.17-.89-.14-.65.07-.88-.21-.69-.84.05-.18.15-.33.3-.46.35-.29.29-.44-.16-.45-1.07-.03-1.93-.52-2.56-1.47a.917.917 0 0 1-.1-.89l.37-.92c.17-.44.03-.71-.43-.81-.75-.17-1.37-.65-1.88-1.45-.09-.14-.09-.28 0-.43.67-1.07.48-2.15-.58-3.24-.12-.13-.25-.14-.4-.04-.58.37-1.03.84-1.36 1.4-.13.24-.07.33.2.27.47-.1.72.39.75 1.47 0 .16-.03.31-.11.45-.19.35-.42.48-.67.39-.33-.13-.44-.36-.35-.69.18-.64-.03-1.08-.62-1.33-.32-.13-.44-.37-.37-.7.03-.13 0-.23-.1-.28-.39-.22-.5-.54-.33-.96l.38-.93c.11-.27.01-.39-.28-.35-.33.04-.48.22-.46.55.01.27-.19.5-.46.51a.48.48 0 0 1-.31-.1c-.17-.15-.2-.33-.08-.52.34-.54.76-1.01 1.25-1.42.13-.1.19-.23.19-.39 0-.13-.04-.23-.13-.31-.15-.14-.26-.11-.33.08-.13.37-.37.62-.72.75-.46.18-.67.02-.64-.47.03-.34.18-.6.47-.77.49-.29.45-.48-.12-.55-.51-.06-.61-.4-.29-1.02.43-.81.83-.81 1.22.02.19.41.54.6 1.05.56.49-.03.53-.19.12-.46-.22-.14-.41-.32-.56-.53-.24-.35-.17-.62.2-.82l.27-.15c.15-.08.21-.27.13-.42a.426.426 0 0 0-.11-.12c-.21-.14-.37-.32-.49-.54a.736.736 0 0 1-.01-.77c.24-.45.23-.89-.04-1.32-.13-.19-.3-.34-.51-.45-.3-.15-.61-.25-.92-.3-.29-.05-.4-.21-.31-.5.06-.19.18-.31.36-.37.26-.08.38-.25.37-.52a.441.441 0 0 0-.31-.42c-.33-.13-.5-.38-.51-.73-.03-.56-.01-1.13.04-1.72.03-.43-.08-.8-.33-1.11-.09-.1-.2-.15-.33-.14-.65.03-.82-.26-.49-.86.21-.37.12-.62-.26-.73a.577.577 0 0 1-.39-.71c.02-.06.05-.12.09-.18.12-.17.26-.24.42-.19.2.05.28-.02.25-.23-.07-.45-.04-.89.1-1.32.09-.25.1-.52.04-.81a.532.532 0 0 0-.27-.37c-.45-.27-.5-.6-.16-.99.23-.28.35-.61.36-.99 0-.5-.07-.96-.24-1.39-.23-.58-.17-1.12.16-1.62.23-.35.19-.67-.1-.96l-.24-.24c-.18-.19-.18-.37.01-.54.51-.47.49-.88-.04-1.25-.39-.27-.43-.58-.13-.94.12-.15.21-.31.28-.49.07-.17.09-.35.08-.54-.05-1.18-.14-2.3-.27-3.36-.03-.27.03-.52.18-.75a.68.68 0 0 0 .05-.7c-.57-1.26-.58-2.4-.02-3.42.19-.35.14-.69-.15-1-.18-.19-.17-.38.03-.56.49-.46.51-.92.04-1.38-.29-.27-.26-.51.09-.71.35-.21.47-.49.34-.83-.09-.25-.12-.5-.09-.76l.69-5.48c.04-.35.17-.67.39-.95.59-.77.69-1.55.29-2.33-.09-.17-.07-.33.08-.46.65-.58 1.05-1.42 1.2-2.51.05-.36.02-.71-.1-1.05-.11-.33-.01-.58.28-.76.35-.22.48-.53.37-.93-.11-.41 0-.74.33-.98a.95.95 0 0 0 .42-.84v-.44c-.01-.31.1-.57.33-.78.74-.68.49-2.07.98-3.03.63-1.22 1.21-2.49 1.76-3.81.13-.33.17-.67.12-1.02-.12-.79.17-1.3.87-1.52.23-.07.26-.2.11-.39-.29-.36-.25-.67.12-.94.22-.15.36-.35.43-.61.27-1.01.58-2.04.93-3.09.1-.31.32-.47.65-.46.29 0 .46.14.52.43.05.23.28.36.51.31.09-.02.18-.08.23-.15.35-.47.33-.77-.05-.92a.623.623 0 0 1-.4-.68c.18-1.15.59-2.27 1.22-3.36-.01-.55.23-.78.72-.69.25.05.3-.03.13-.23a.614.614 0 0 1-.11-.23c-.09-.38.05-.52.43-.41.08.02.16.05.23.1.27.18.31.14.12-.11-.11-.15-.15-.31-.1-.47.06-.2.19-.34.4-.41.13-.04.26-.07.39-.08.32-.02.45-.19.4-.5-.06-.4.08-.72.43-.96.13-.09.15-.2.05-.33-.65-.79-.54-1.61.33-2.46.17-.17.35-.26.55-.27.52-.05.56-.2.11-.47-.1-.06-.2-.13-.29-.21-.19-.17-.25-.37-.16-.61l.15-.43c.1-.28.26-.32.48-.12.07.07.15.11.24.14.29.09.34.02.15-.22-.18-.23-.38-.43-.6-.6a.587.587 0 0 1-.12-.81c.05-.06.11-.11.18-.15a2.57 2.57 0 0 0 1.26-1.65c.07-.26.24-.44.49-.53a.5.5 0 0 1 .34-.02c.47.14.73-.03.8-.51.11-.87.29-1.75.52-2.66.06-.25.18-.47.36-.65.12-.13.26-.16.43-.07.22.11.31.04.26-.2-.22-1.09.41-1.72 1.88-1.88.08 0 .11-.05.09-.12-.04-.12-.03-.2.04-.24.12-.07.11-.11-.03-.14-.33-.06-.54-.25-.61-.58-.07-.29 0-.55.22-.77.37-.39.54-.85.52-1.39-.02-.43.16-.75.55-.95.42-.22.57-.58.46-1.07-.08-.33.01-.62.27-.85.71-.63 1.28-1.42 1.72-2.37.14-.29.34-.55.6-.76.51-.42.85-.94 1-1.56.11-.47.3-.91.55-1.32l2.4-3.89c.15-.25.21-.53.18-.83-.15-1.33.33-2.19 1.43-2.6.24-.09.42-.24.55-.45 2.55-4.35 5.2-8.59 7.95-12.72.55-.82 1.06-1.66 1.53-2.53.48-.89 1.04-1.7 1.69-2.43.74-.84 1.32-1.77 1.74-2.8.39-.95.79-1.86 1.2-2.72.22-.45.73-.68 1.21-.54.44.13.63.34.56.61-.11.47-.06.49.15.06.41-.85.14-1.55.45-2.44.33-.96.65-1.93.94-2.9.36-.23.46-.52.31-.88-.13-.29-.1-.57.09-.82.77-1.07 1.56-2.24 2.36-3.52.67-1.07.63-2.12 1.46-3.09.38-.45.66-1.2.62-1.78-.03-.34.1-.6.38-.78 1.14-.73 2.15-1.88 3.03-3.45.09-.15.12-.32.09-.5a.442.442 0 0 0-.11-.24c-.16-.18-.14-.34.06-.47.1-.06.21-.1.32-.12.27-.03.45-.18.55-.43.47-1.23 1.21-2.21 2.21-2.96.19-.14.28-.39.22-.62-.13-.5-.04-.96.25-1.37.71-.98 1.48-2.04 2.33-3.19.2-.27.16-.46-.12-.57a.156.156 0 0 1-.08-.06c-.07-.11-.06-.21.05-.3 1.33-1.1 2.36-2.44 3.09-4.01.66-1.41 1.5-2.73 2.51-3.95.33-.4.53-.87.61-1.41.07-.46.21-.87.42-1.24.47-.81 1.14-1.39 2-1.73a.96.96 0 0 0 .57-.61c.68-2.08 1.66-4.07 2.93-5.98.49-.73.94-1.56 1.37-2.49.37-.81.89-1.62 1.54-2.41.19-.23.29-.5.28-.81-.01-.83.41-1.37 1.27-1.6a1.3 1.3 0 0 0 .94-1.47c-.09-.53.08-.9.52-1.11.25-.12.42-.31.53-.56.61-1.36 1.28-2.7 2.03-4.02.41-.72.96-1.03 1.66-.93.41.05.59-.13.54-.54l-.18-1.48c-.04-.31.04-.58.24-.81l1.43-1.67c.18-.21.29-.46.33-.74.13-1.06.98-1.69 1.44-2.55.67-1.27 1.33-2.56 1.97-3.87.15-.31.39-.53.72-.64l.88-.3c.34-.11.42-.33.25-.64l-.16-.31c-.15-.27-.1-.51.14-.7.76-.61 1.31-1.45 1.66-2.5.11-.33.32-.55.65-.66.83-.29 1.27-.91 1.33-1.86.03-.43.18-.81.46-1.14.61-.72.92-1.52.91-2.41 0-.37.13-.69.41-.94l1.99-1.77c.22-.19.32-.44.3-.73-.03-.43.02-.86.15-1.31.08-.29.3-.52.59-.62.38-.13.57-.42.58-.88 0-.22-.16-.4-.38-.42-.11-.01-.23 0-.34.05-.02 0-.04-.01-.05-.03v-.03c.47-.49.94-.95 1.41-1.38.36-.33.67-.69.93-1.1.65-1.03 1.37-1.98 2.18-2.86.16-.17.21-.42.14-.64l-.09-.26s0-.06.03-.08c.57-.36 1.01-.85 1.3-1.48.3-.63.78-1.22 1.43-1.78.07-.06.15-.08.26-.06.11.02.17-.03.17-.14.05-1.19.52-2.2 1.39-3.05.24-.23.28-.59.11-.86-.05-.09-.1-.18-.13-.28-.23-.71-.05-.85.55-.41.09.07.18.12.27.17.26.12.4.04.42-.25.07-1.02.55-1.74 1.42-2.16.33-.16.53-.42.62-.77.09-.37.31-.62.66-.73.29-.09.37-.27.25-.54-.21-.47-.07-.78.41-.93.21-.07.38-.19.51-.38 1.17-1.72 2.23-3.42 3.18-5.1.23-.41.57-.76 1.03-1.06.52-.33.93-.81 1.17-1.38 1.61-3.81 3.67-6.35 6.17-7.6.15-.08.29-.08.44.01.13.07.13.17.02.29-.12.13-.09.17.08.12.11-.03.16-.1.17-.21.01-.25-.11-.35-.36-.29a.17.17 0 0 1-.1 0c-.23-.06-.29-.2-.17-.43.02-.04.05-.07.08-.1.08-.07.17-.1.26-.09.05 0 .1.03.14.06.19.18.32.14.37-.12.15-.77.56-1.2 1.25-1.3.3-.05.3-.08 0-.09-.11 0-.19-.05-.24-.14-.07-.13-.04-.24.09-.32.49-.3.89-.72 1.2-1.25.15-.26.09-.44-.2-.55a.295.295 0 0 1-.17-.46l4.26-5.88c.19-.27.25-.56.2-.88l-.17-.95c-.05-.3-.19-.34-.42-.13-.06.06-.14.1-.23.11-.03 0-.05 0-.08-.02-.17-.13-.26-.28-.26-.45 0-.27.13-.42.41-.43.14-.01.24.05.3.19.02.03.05.04.08.03.21-.17.28-.38.21-.63-.11-.41.04-.67.44-.8 1.61-.52 2.83-1.54 3.65-3.07.16-.3.14-.59-.05-.88a.763.763 0 0 1-.13-.57c.04-.21.16-.32.37-.33.15-.01.24.03.29.12.11.24.17.23.18-.04 0-.1.01-.2.01-.3 0-.28.11-.5.33-.67.17-.13.29-.14.36-.03.2.27.32.24.36-.09.13-.99.68-1.55 1.63-1.7.28-.04.41-.2.39-.48-.01-.24.03-.47.14-.68.12-.26.29-.3.52-.12.08.07.12.14.13.23 0 .08.04.09.09.04.21-.21.26-.44.16-.69-.14-.36-.02-.54.37-.55.28 0 .47.14.57.41.07.2.01.34-.19.41-.14.05-.24.14-.31.26-.15.27-.07.41.23.42h.37c.12 0 .21-.06.28-.16.69-1 1.36-1.96 2.01-2.89.03-.03.04-.07.05-.12 0-.15-.04-.17-.14-.06-.13.13-.25.27-.36.41-.29.35-.52.32-.71-.09a.556.556 0 0 1 .05-.58c.62-.91.99-1.88 1.12-2.92.04-.38.2-.43.47-.16.5.51.67 1.1.5 1.76-.13.53.04.66.52.38.33-.19.45-.49.36-.9-.45-2.04.25-3.25 2.12-3.62.18-.03.34-.16.39-.34a.62.62 0 0 0 .02-.27c-.05-.31.08-.44.39-.39.1.02.2.03.3.02.14 0 .27-.08.36-.19.58-.75 1.24-1.35 1.99-1.8.33-.21.54-.5.63-.88.07-.29.25-.4.56-.33.26.06.42-.04.49-.31l.09-.38c.05-.24.19-.31.42-.21.38.17.66.08.83-.26.19-.37.47-.65.84-.82 1.14-.54 1.98-1.29 2.51-2.25.17-.31.39-.36.67-.14.35.27.74.44 1.19.5.44.07.48-.03.12-.29-.18-.13-.3-.3-.35-.51-.09-.34.01-.61.3-.82.74-.53 1.54-.93 2.4-1.2.33-.11.59-.31.77-.61.46-.75 1.09-.94 1.88-.56.31.15.49.05.52-.3.01-.12.04-.25.07-.39.04-.17-.01-.3-.15-.38a.17.17 0 0 0-.14 0c-.21.13-.22.12-.03-.04.32-.27.55-.54.68-.82Z\"/><rect class=\"cls-1\" x=\"1605.15\" y=\"745.45\" width=\"57.62\" height=\"56.36\" rx=\"24.47\" ry=\"24.47\"/><path class=\"cls-1\" d=\"M1255.66 849.81c22.95 9.48 49.42 18.09 62.98 40.51 8.45 13.95 9.69 32.46 5.97 48.19-5.48 23.23-22.58 40.43-44.66 48.55-32.91 12.09-70.42 5.98-100.63-11.73a5.44 5.44 0 0 1-1.73-1.65 1.47 1.47 0 0 1-.26-.91l2.05-45.73a.56.56 0 0 1 .59-.53c.08 0 .15.02.22.06 14.08 7.21 28.76 12.51 44.03 15.9 6.63 1.47 13.16 2.23 19.58 2.28 8.49.06 18.92-2.56 24.67-8.97 5.57-6.19 3.78-14.84-1.91-20.35-5.44-5.27-13.37-8.89-20.48-11.88-27.38-11.54-58.82-23.19-66.66-55.84-10.77-44.79 20.98-77.62 63.89-82.41 10.72-1.19 22.71-.82 35.98 1.11 15.43 2.25 29.51 7.02 42.22 14.31.79.45 1.17 1.16 1.12 2.13-.75 15.16-1.55 30.56-2.39 46.19a.415.415 0 0 1-.61.34c-20.16-10.47-44.4-17.65-67.2-16.35-6.94.39-16.95 4.04-18.96 11.61-3.53 13.29 12.48 21.16 22.19 25.17Zm518.8 88.8c-1.15-5.8-11.58-9.41-16.54-10.97-8.93-2.81-17.23-5.68-24.9-8.61-22.37-8.55-38.83-23.81-39.07-49.52-.35-36.48 33.36-54.05 65.63-54.97 21.03-.6 42.53 3.41 61.69 11.62.78.33 1.13.93 1.04 1.8-1.36 13.32-2.82 27.49-4.37 42.52-.07.63-.39.82-.97.58-12.71-5.15-26.16-8.59-40.34-10.3-4.63-.56-27.64-2.8-27.86 5.21-.16 5.63 6.99 8.54 11.35 10 26.62 8.92 60.62 15.72 66.45 48.4 1.48 8.26 1.26 16.27-.67 24.04-6.2 25-28.9 39.36-53.59 43.25-27.49 4.33-53.16-.1-77.03-13.31a1.93 1.93 0 0 1-1.01-1.8l2.07-44.53c0-.15.13-.27.28-.26.04 0 .07 0 .1.02 14.69 6.6 29.59 11.09 44.71 13.48 6.14.97 12.27 1.28 18.39.93 3.41-.19 15.77-1.88 14.64-7.58Zm70.33 38.31 2.01-44.38c.03-.65.33-.84.92-.57 11.04 4.99 22.7 8.86 34.98 11.61 10.26 2.3 19.85 3.17 28.76 2.6 3.25-.21 15.95-2.57 13.2-8.46-2.3-4.94-9.29-7.82-14.38-9.46-10-3.21-18.56-6.15-25.67-8.82-16.38-6.14-31.59-16.41-37.21-32.82-3.07-8.94-3.74-18.16-2.01-27.65 5.55-30.59 38.12-44.06 65.85-44.45 19.63-.28 38.26 2.96 55.91 9.73 1.77.69 3.55 1.48 5.34 2.39.29.15.42.4.39.73l-4.42 43.17c-.06.58-.36.76-.89.54-11.72-4.76-24.18-8.07-37.38-9.94-9.21-1.3-17.06-1.45-23.57-.44-1.59.25-3.15.77-4.68 1.56-5.11 2.66-2.18 8.06 1.32 10.25 2.65 1.66 5.59 3 8.81 4.02 8.01 2.53 15.9 5.09 23.67 7.68 25.32 8.44 43.71 24.54 42.17 53.65-1.34 25.42-18.71 43.55-42.38 50.72-11.87 3.59-24.01 5.16-36.42 4.72-19.17-.68-37.07-5.77-53.72-15.28-.39-.23-.62-.65-.6-1.1Zm-431.68-53.64c.29 1.39.56 1.39.83-.01l19.75-105.04c.06-.31.33-.53.64-.53l61.37.02c.21 0 .39.15.43.35l21.37 105.53c.24 1.19.48 1.19.71 0l20.78-105.58c.03-.18.19-.31.38-.31h50.96c.67.02.91.34.73.98-15.17 54.7-30.52 110.11-46.05 166.22a53.55 53.55 0 0 1-1.55 4.84c-.07.16-.22.26-.39.26h-49.71c-.35 0-.57-.17-.66-.51l-27.38-111.99c-.32-1.32-.63-1.32-.94 0l-25.56 111.95c-.07.32-.35.55-.68.55h-50.02c-.28 0-.53-.18-.61-.45l-52.5-171.34c-.1-.33.02-.5.37-.5h55.25c.34 0 .55.17.62.51l21.86 105.05Zm272.26 59.61c-15.93 9.98-33.93 13.12-52.03 7.86-22.32-6.48-27.32-27.79-27.32-48.34 0-41.18-.01-82.56-.01-124.15 0-.3.24-.54.53-.54h53.86c.38 0 .68.29.68.67 0 39.03.02 79.71.03 122.06 0 3.47 1.65 8.07 5.62 8.46 5.17.51 11.38-1.22 15.81-3.42.29-.14.65-.03.79.26.04.07.06.15.06.22l2.46 35.98c.03.41-.13.72-.48.94Z\"/><rect class=\"cls-1\" x=\"1836.04\" y=\"1014.56\" width=\"53.16\" height=\"54.56\" rx=\"22.91\" ry=\"22.91\" transform=\"rotate(-89.9 1862.62 1041.84)\"/><path class=\"cls-1\" d=\"M1098.89 1128.65c9.41 3.89 17.96 8.69 25.65 14.41 14.28 10.61 21.84 25.09 22.69 43.43 1.68 36.49-22.07 62.94-56.43 70.96-29.97 7-61.99.87-88.61-15-1.33-.79-1.19-2.22-1.12-3.56.74-13.42 1.38-27.12 1.92-41.1 0-.31.15-.4.44-.26 19.02 9.33 41.37 17 62.64 17.36 10.23.17 27.71-4.61 29.45-17.02 1.99-14.15-14.08-21.98-24.76-26.52-28.78-12.24-61.74-23.68-68.46-59.18-6.58-34.78 12.65-62.17 45.14-73.06 11.83-3.97 25.09-5.44 39.76-4.42 19.73 1.38 38.34 5.77 55.26 15.37 1.23.7.86 1.77.8 2.93-.67 14.17-1.38 28.03-2.15 41.6-.02.3-.27.52-.57.51a.36.36 0 0 1-.2-.06c-15.68-7.74-31.97-12.69-48.88-14.84-8.93-1.14-16.54-.95-22.81.56-6.32 1.53-13.27 5.52-14.57 12.03-1.7 8.53 2.44 14.81 9.2 19.42 3.87 2.65 7.93 4.87 12.19 6.67 7.28 3.07 15.09 6.33 23.42 9.77Zm893.7-.39c0 22.31-.02 44.82-.05 67.51 0 10.09 2.37 17.72 14.1 17.5 8.52-.16 17.42-2.36 26.09-5.03.43-.13.66.02.69.47l3.19 39.39c.04.56-.26 1.08-.76 1.33-11.01 5.45-23.5 8.91-37.48 10.4-21.53 2.28-42.51-2.36-52.19-23.54-3.55-7.75-5.35-16.43-5.42-26.04-.19-27.67-.21-54.96-.07-81.86 0-.45-.37-.82-.82-.82l-25.54-.02c-.22 0-.39-.17-.39-.38l.02-38.93c0-.36.29-.66.65-.66l25.49.14c.67 0 1.21-.54 1.22-1.21v-29.03c0-.29.19-.54.47-.61l50.28-12.56c.23-.06.45.08.51.31 0 .03.01.07.01.1v42.19c-.01.38.29.68.67.68l40.64.04c.5 0 .91.41.91.92l.02 37.99c0 .67-.34 1.01-1.02 1.01h-40.52c-.47 0-.7.24-.7.71Zm-598.12-18.38c14.64-20.99 39.59-30.88 64.24-22.6.64.22 1.06.84 1.02 1.52l-2.51 43.14c-.03.41-.23.54-.61.4-10.09-3.6-20.99-4.91-31.33-1.87-7.61 2.23-14.59 5.88-20.92 10.94-.21.17-.34.43-.34.7v114.08c0 .5-.4.9-.9.9h-50.51c-.46 0-.83-.37-.83-.83v-168.01c0-.38.19-.57.57-.57l28.28-.1c.51 0 .97.28 1.21.72l11.55 21.52c.33.61.69.63 1.08.06Zm-171.91 76.24c.53 4.19 1.95 7.99 4.27 11.42 9.01 13.31 25.45 17.66 41.27 16.99 15.01-.65 29.79-4.56 44.32-11.73.16-.08.36 0 .44.16.02.03.03.07.03.1l5.4 41.19c.07.49-.18.97-.61 1.21-6.73 3.76-13.85 6.78-21.35 9.07-41.37 12.62-98.03 6.65-118.76-37.93-3.37-7.25-5.7-15.09-6.97-23.52-6.28-41.55 7.95-88.2 50.55-103.82 14.05-5.15 30.71-6.03 45.57-3.62 17.22 2.79 33.08 11.22 42.75 25.29 15.35 22.35 14.7 47.73 10.46 73.52a1.34 1.34 0 0 1-1.32 1.12h-95.55a.48.48 0 0 0-.5.49v.06Zm48.94-30.52c1.51-16.52-6.02-30.1-24.38-29.05-16.71.96-25.62 15.52-25.66 31.25 0 .36.3.65.66.65h.02l48.02-1.58c.7-.02 1.28-.57 1.34-1.27Zm245.84 30.57c1.96 15.8 17.73 25.64 32.39 27.7 18.77 2.65 40.17-2.3 57.27-11.07.27-.14.6-.02.74.25.03.05.04.11.05.17l5.34 41.06c.06.46-.16.91-.56 1.15a70.952 70.952 0 0 1-7.75 3.96c-23.08 10.11-47.2 13.21-72.36 9.31-27.81-4.32-51.44-19.82-61.93-46.48-6.42-16.31-7.6-34.56-5.65-52.15 3.87-34.9 24.08-64.46 59.01-73.17 13.82-3.45 29.51-3.36 43.44-.12 11.06 2.57 22.16 8.2 30.25 16.21 14.63 14.47 20.5 35.5 19.88 55.75-.25 8.41-1.18 17.11-2.77 26.09-.08.42-.45.73-.89.73h-95.92c-.3 0-.54.24-.54.54v.07Zm49.01-30.43c1.51-13.42-3.49-26.83-18.48-28.95-19.52-2.76-31.55 12.93-31.51 30.98 0 .38.32.69.7.68h.02l48.06-1.59c.62-.02 1.14-.49 1.21-1.12Zm119.25-54.46c.08.04.18.03.26-.02 21.81-13.75 45.24-19.09 70.29-16.01 16.81 2.07 31.65 10.06 38.34 25.84 3.36 7.94 5.05 17.34 5.08 28.2.1 39.25.12 78.31.07 117.2 0 .34-.28.61-.61.61l-50.44-.02c-.54 0-.97-.43-.97-.96v-108.26c0-9.65-4.22-19.2-14.59-21.06-11.63-2.09-23.25 1.55-33.29 7.54-.56.34-.91.94-.91 1.6v120.61c0 .3-.24.54-.53.54h-50.93a.822.822 0 0 1-.81-.82l.03-167.81c0-.44.36-.8.8-.81l27.73-.07c.75 0 1.45.38 1.85 1.01 2.47 3.83 5.05 7.8 7.74 11.91.22.34.52.6.89.78Zm226.24 149.76c-14.39 8.62-30.56 11.43-46.58 7.6-25.08-6-28.99-27.83-28.98-49.87.01-40.06.03-80.24.06-120.54 0-.31.25-.56.56-.56l50.45-.06c.57 0 .85.28.85.85.01 40.38.01 80.25-.01 119.62 0 5.1 1.9 10.76 7.94 10.97 4.43.15 8.76-.63 13-2.36 1.02-.41 1.57-.07 1.65 1.03l2.13 31.27c.06.83-.36 1.62-1.07 2.05Zm225.41-49.06 28.42-113.89c.07-.28.32-.47.61-.47l55.86-.03a.534.534 0 0 1 .5.71c-21.95 60.59-44.01 121.51-66.2 182.76-2.89 7.96-6.07 14.82-9.55 20.57-13.73 22.7-33.92 32.94-59.44 33.62-16.39.44-33.66-5.6-47.46-14.01a.87.87 0 0 1-.38-1l12.24-40.75c.23-.77.69-.96 1.39-.56 6.54 3.69 13.45 6.65 20.72 8.88 13.77 4.21 29.57.91 35.54-13.53.32-.78.39-1.36.09-2.15-22.26-57.56-44.63-115.29-67.11-173.2-.07-.17-.11-.36-.12-.55-.03-.39.26-.72.65-.75h.05l55.59-.03c.52 0 .98.34 1.14.83l36.28 113.59c.44 1.37.83 1.36 1.18-.04Z\"/><rect class=\"cls-1\" x=\"2239.49\" y=\"1206.5\" width=\"52.98\" height=\"54.52\" rx=\"22.85\" ry=\"22.85\" transform=\"rotate(-89.6 2265.979 1233.76)\"/><path class=\"cls-1\" d=\"m817.95 1223.53-79.82 135.81a.34.34 0 0 1-.3.17l-17.6.03c-.19 0-.35-.16-.35-.35v-135.82c0-.19.16-.35.35-.35l97.42-.02c.19 0 .35.16.35.35 0 .06-.02.13-.05.18Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-173pypo\",\"data-framer-name\":\"21\",layoutDependency:layoutDependency,layoutId:\"ytwIz82lz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dmijhd\",\"data-framer-name\":\"CNRS_blanc_\",fill:\"black\",intrinsicHeight:225,intrinsicWidth:225,layoutDependency:layoutDependency,layoutId:\"es5t6Ebkx\",style:{opacity:.7},svg:'<svg data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 225 225\"><path d=\"M192.4 35.82c-21-15.79-45.14-28.76-71.15-33.79-2.58-.5-7.97-1.18-16.18-2.03h-7.51c-21.85 1.48-41.01 9.14-57.5 22.97C24.4 36.09 9.16 53.11 3.12 72.65 1.06 79.32.94 84.54 0 90.65v7.72c.85 10.81 2.49 22.06 4.92 33.73 5.4 25.97 18.6 47.9 38.16 66.55 15.97 15.21 34.42 24 55.36 26.35h16.19c40.38-4.66 74.86-33.76 94.71-67.9 8.49-14.6 13.71-30.3 15.66-47.11V92.26c-2.83-23.41-13.7-42.23-32.6-56.44ZM47.31 127.69c8.28.03 12.03-7.18 12.37-14.43.02-.41.24-.63.66-.64 2.69-.11 5.15-.08 7.36.07 1.78.12 2.67.99 2.68 2.6.01 2.45-.5 5.08-1.54 7.88-4.22 11.38-14.75 15.2-26.07 13.66-23.59-3.19-23.63-36.76-19.9-53.67 3.26-14.8 13.65-22.96 29.73-20.48 10.86 1.68 17.19 10.65 17.82 21.15v.16c0 .07-.01.13-.02.2 0 .09-.01.19-.03.28l-.06.26c-.02.09-.05.17-.08.26-.03.08-.07.16-.11.24-.04.08-.08.16-.12.23-.05.07-.1.14-.16.21-.05.07-.11.14-.17.2-.06.06-.12.12-.19.18s-.13.12-.2.17c-.07.05-.15.09-.22.14-.08.05-.15.09-.23.13-.08.04-.17.07-.25.09-.08.03-.17.06-.25.08-.09.02-.18.03-.28.04-.07 0-.13.03-.19.03h-.15l-7.4.02c-.39 0-.6-.19-.62-.58-.44-8.16-4.57-14.73-13.09-14.51C33 72 31.45 88.87 31.42 98.76c-.04 10.76.94 28.89 15.9 28.93Zm74.78-36.44c-.15 15.51-.25 29.96-.3 43.35 0 1.78-.9 2.74-2.67 2.89-1.89.15-3.88.23-5.98.23-.83 0-1.24-.41-1.24-1.24.05-16.82.05-33.95 0-51.39-.01-4.49-1.55-8.01-4.62-10.56-6.33-5.27-16.14-3.01-19.48 4.51-.72 1.63-1.08 3.52-1.07 5.69.03 17.2.04 34.26.03 51.17 0 .79-.4 1.18-1.19 1.18h-6.33c-1.55 0-2.33-.78-2.33-2.33-.02-22.7-.03-45.33-.02-67.9 0-2.08 1.07-3.1 3.21-3.05 2.09.05 4.09.03 5.98-.04.47-.02.7.21.69.68l-.04 2.58c0 .53.2.63.62.3 9.08-7.19 20.8-5.87 28.66 1.77 6.12 5.95 6.16 12.77 6.08 22.16Zm35.3-19c-9.52-3.23-17.51 3.01-17.48 12.68.05 17.02.06 34.1.02 51.23 0 .63-.32.95-.96.95l-6.61-.05c-1.46-.01-2.19-.75-2.19-2.2V65.57c-.01-.92.66-1.71 1.57-1.86 2.15-.35 4.68-.44 7.57-.25.47.03.7.28.69.75l-.06 2.33c-.02.61.22.73.71.36 5.67-4.29 12.07-5.7 19.2-4.21 2.5.51 3.35 3.08 1.7 5.09a65.49 65.49 0 0 0-3.18 4.15c-.25.35-.57.46-.98.32Zm27.36 64.17c-9.91 1.37-17.59-1.55-23.06-8.74-.77-1.03-.74-2.02.1-2.99l3.27-3.74c.69-.8 1.37-.79 2.04.04 5.6 6.98 14.31 8.82 22.15 4.18 5.64-3.34 5.7-13.28.85-17.23-2.15-1.75-4.8-3.18-7.96-4.31-11.47-4.11-21.59-9.93-20.02-24.18.75-6.83 4.44-11.91 11.08-15.25 8.3-4.18 20.8-3.14 27.12 4.81.77.98.77 1.96-.02 2.94l-2.83 3.52c-.78.97-1.59 1-2.44.1-2.64-2.82-6.11-4.24-10.42-4.25-7.8-.03-13.04 4.29-11.88 12.47.47 3.28 2.47 5.74 6 7.39 11.91 5.55 24.97 8.59 25.11 24.97.1 11.15-8.54 18.81-19.09 20.27Z\" style=\"fill:#fff;stroke-width:0\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13t76k0\",\"data-framer-name\":\"20\",layoutDependency:layoutDependency,layoutId:\"MTl8WKuk9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mxtbex\",\"data-framer-name\":\"Microsoft_blanc_\",fill:\"black\",intrinsicHeight:115,intrinsicWidth:538,layoutDependency:layoutDependency,layoutId:\"ynhp46FYs\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 537.81 114.8\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><rect class=\"cls-1\" x=\".12\" y=\".04\" width=\"54.86\" height=\"54.84\" rx=\".82\" ry=\".82\"/><path class=\"cls-1\" d=\"m64.63.05 4.13.02L107.63 0l6.51.12c.43.21.65.49.65.83.11 17.75.12 35.42 0 53 0 .45-.36.81-.81.81l-45.05.15c-2.75 0-5.37-.04-7.85-.15a.884.884 0 0 1-.85-.89L60.17.95a.8.8 0 0 1 .76-.79l3.69-.11Zm440.65 17.83 3.45.56c.34.05.6.23.78.52.36.57.48 1.34.37 2.3l-.02 6.86c0 .47-.22.63-.67.47-11.17-3.89-12.97 4.87-12.06 13.44.03.35.23.53.59.54h15.59c.67 0 1.01-.35 1.02-1.02l.05-9.73c.39-.49.82-.83 1.29-1.03l10.18-2.84.12 5.01.13 9.04c0 .35.18.52.53.52l10.22-.04c.39.08.67.17.84.28l.04 9.62-11.33-.11c-.39 0-.57.19-.54.58l.12 1.75.02 7.72-.03 12.96c.07 7.39 3.87 9.66 11.38 6.8l.32 1.69c.23 2.94.18 5.42-.15 7.45-.07.43-.36.63-.86.6-3.97 1.26-7.94 1.55-11.91.88-3.24-.55-5.81-2.03-7.71-4.45-1-1.37-1.74-3.01-2.21-4.9l-.58-7.56v-23.3a.395.395 0 0 0-.39-.38l-16.22.15c-.41 0-.61.21-.61.62l.03 11.41v7.56l.06 12.98c-.18 1.97-.31 4.02-.39 6.14-.03.75-.71 1.03-2.04.84l-8.59-.13a.6.6 0 0 1-.58-.52c-.16-1.15-.24-2.29-.24-3.44-.03-11.69-.05-23.36-.07-35.02 0-.35-.18-.53-.54-.52l-6.87.11a.847.847 0 0 1-.86-.83v-.01l-.05-8.32c0-.43.21-.64.64-.64l7.07.07c.38 0 .56-.19.55-.57-.3-8.22-.1-14.53 6.59-20.57l3.03-1.77c3.45-1.39 6.95-1.97 10.51-1.76Zm-263.46 3.54c.99.21 2.06.67 3.22 1.36 2.71 2.09 3.4 4.93 2.09 8.54-1.09 1.91-2.88 3.14-5.37 3.69-3.07.31-5.53-.87-7.39-3.54-1.57-4.05-.55-7.17 3.05-9.36 1.21-.56 2.68-.79 4.4-.69ZM170.4 33.27l3.65 9.49 11.79 30.42c.28.74.57.74.87 0l12.52-30.56 8.64-20.12c5.15.66 10.31.75 15.5.27l.33 9.41.08 9.02-.02 12.97.1 37.17c0 .24-.19.43-.43.43l-11.6-.06-.31-10.23-.02-3.51.27-37.92c.01-1.69-.29-1.75-.92-.18l-16.99 42.92-3.2 8.15c-.22.54-.74.9-1.33.91h-6.1c-.63 0-1.19-.38-1.43-.97l-20.91-51.62c-.39-.97-.59-.94-.59.11l.02 24.44-.04 10.15.15 11.29c-.09 1.85-.2 3.78-.33 5.77-.02.27-.09.46-.21.57-.17.13-.4.18-.69.15l-8.67-.11c-.86-.01-1.29-.45-1.29-1.31l-.04-16.37v-6.24l.04-43.92c0-.39.31-.7.69-.71l16.02-.26c.31 0 .51.13.62.42l3.83 10.02Zm113.45 8.11 8.89 2.19c.36.09.54.31.54.68l-.05 9.97c0 .33-.26.59-.59.59-.12 0-.24-.04-.34-.1-3.01-2.03-6.72-3.4-10.35-3.45-8.07-.11-13.11 4.07-15.13 12.56-.59 3.79-.29 7.28.91 10.47.9 2.92 2.75 5.25 5.56 6.98 3.58 1.98 7.5 2.51 11.75 1.58 2.87-.74 5.3-1.85 7.31-3.33.2-.14.47-.1.62.09.05.07.08.16.08.25l.23 9.08c.02.77-.45 1.47-1.16 1.74-20.22 7.8-39.44-3.04-37.46-25.72.35-4.02 1.47-7.78 3.36-11.27 3.45-6.38 8.91-10.35 16.4-11.91l9.43-.4Zm125.95.06 7.24 1.54c.36.07.54.3.54.67l-.03 9.84c0 .6-.26.76-.79.47-4.88-2.64-11.97-5.38-16.87-1.07-1.51 1.93-1.32 4.05.55 6.37.86 1.07 3.4 2.34 7.62 3.83 2.41.85 4.96 2.38 7.67 4.6 2.11 1.73 3.35 3.39 3.72 5 2.12 9.15-1.05 15.45-9.5 18.92a36.521 36.521 0 0 1-11 1.51l-8.97-1.63-2.17-.71c-.33-.11-.5-.34-.5-.69l-.07-5.69.12-4.86c.01-.44.21-.55.59-.34.18.1.38.28.61.55 3.44 2.28 7.27 3.59 11.5 3.92 2.57.36 4.87-.14 6.89-1.5 2.04-1.37 1.64-4.89.09-6.45-1.72-1.73-3.03-2.73-3.92-3-4.71-1.46-8.91-3.69-12.61-6.69-7.21-9.78-1.99-21.77 9.57-24.09 3.21-.69 6.45-.86 9.72-.5Zm42.24-.11c9.32.46 16.73 3.77 21.02 12.33 2.43 4.86 3.31 10.53 2.64 17.01-1.96 18.73-18.12 25.44-34.98 21.21-3.31-1.09-6.11-2.77-8.42-5.04l-2.7-3.05c-1.88-2.82-3.2-5.96-3.96-9.43l-.48-9.72c.26-3.51 1.17-6.98 2.73-10.41 3.12-6.02 7.96-9.99 14.52-11.9l9.63-1Zm-5.12 10.41c-3.05.69-5.19 2.07-6.44 4.12-1.07 1.39-1.8 2.68-2.19 3.88-3.15 11.48 0 25.92 15.54 23.24 4.43-.75 7.46-3.68 9.1-8.79.83-3.54 1.01-7.31.54-11.32-1.72-8.98-7.24-12.69-16.55-11.13Zm-88.45-10.39 9.41 1.79 3.41 1.77c2.38 1.61 4.49 3.61 6.32 6 4.16 7.05 5.31 14.85 3.45 23.39-1.76 7.37-5.89 12.8-12.39 16.27-15.71 6.2-33.57 1.54-37.17-16.93l-.18-10.57c1.27-9.17 5.87-15.71 13.81-19.62l2.79-.86c3.27-.92 6.79-1.33 10.55-1.24ZM345.9 56.61c-1.27 2.19-1.99 4.17-2.16 5.94-1.3 10.52.96 21.8 14.44 20.7 5.31-.46 8.82-3.31 10.51-8.56.45-1.1.65-2.09.62-2.96.55-4.05.47-7.61-.24-10.68-1.05-4.51-3.61-7.51-7.68-9.01-7.14-1.7-12.3-.18-15.49 4.57Zm-19.98-14.92c1.4-.04 2.76.15 4.07.58.35.11.52.35.52.72l.02 10.06c0 .43-.21.58-.62.47l-2.86-.76c-2.55-1.01-5.01-.87-7.36.4-4.25 2.3-6.21 6.06-5.89 11.27l-.08 26.88c0 .54-.27.8-.81.79l-10.4-.25c-.41 0-.61-.21-.61-.62l-.08-25.54.02-14.76-.03-8.08c.71-.38 1.8-.49 3.25-.34h7.72c.61 0 1.1.51 1.1 1.12 0 .05 0 .1-.01.15-.23 1.61-.26 3.21-.09 4.8.06.57.22.59.47.08.98-2 2.42-3.61 4.33-4.84 2.17-1.41 4.62-2.12 7.34-2.13Zm-83.5.87 3.96-.05.12 10.84v38.04c-.01.29-.24.52-.53.52h-10.81c-.23 0-.41-.18-.41-.41l-.06-48.91 7.73-.03ZM9.85 114.8l-9.01-.04c-.34 0-.51-.17-.51-.5l-.14-8.03V93.26L0 88.29l.14-15.48L.1 66l.17-5.35c.01-.38.21-.57.6-.57L54.35 60c.36 0 .66.3.66.67l.05 53.74c0 .19-.16.35-.35.35l-44.86.04Z\"/><rect class=\"cls-1\" x=\"60.14\" y=\"60.08\" width=\"54.7\" height=\"54.7\" rx=\".71\" ry=\".71\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bjf5in\",\"data-framer-name\":\"19\",layoutDependency:layoutDependency,layoutId:\"uD15OjvPY\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yfl49b\",\"data-framer-name\":\"EPFL_blanc_\",fill:\"black\",intrinsicHeight:210,intrinsicWidth:721,layoutDependency:layoutDependency,layoutId:\"z3HillG6j\",style:{opacity:.7},svg:'<svg id=\"Calque_2\" data-name=\"Calque 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 720.68 209.54\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><g id=\"Calque_1-2\" data-name=\"Calque 1\"><path class=\"cls-1\" d=\"M45.62 85.4H142c.23 0 .41.18.41.41v37.98c0 .23-.18.41-.41.41H45.62c-.23 0-.41.18-.41.41v45.71c0 .23.18.41.41.41h105.44c.23.01.41.19.41.42v37.98c0 .23-.19.41-.42.41H.41a.42.42 0 0 1-.41-.42v-84.65c0-.23.18-.41.41-.41h44.26c.23 0 .41-.18.41-.41V85.94c0-.23-.18-.41-.41-.41H.41c-.23 0-.41-.18-.41-.41V.47C0 .25.19.06.42.06h150.64c.23 0 .41.19.41.42v37.98c0 .23-.18.41-.41.41H45.62c-.23 0-.41.18-.41.41v45.71c0 .23.18.41.41.41Zm189.59 39.38v84.27c-.01.27-.22.48-.49.48h-44.23c-.19 0-.35-.16-.35-.35V.71c0-.45.23-.68.68-.68 27.28.09 55.69.08 85.24-.03 7.92-.03 14.72.18 20.41.64 11.11.9 21.93 4.4 32.47 10.49 9.95 5.75 17.06 13.53 21.31 23.33 11.71 27.02 6.49 60.9-19.32 77.56-13.71 8.86-28.69 12.12-44.69 12.15-15.79.03-32.6.04-50.43.01-.4 0-.6.2-.6.6Zm67.33-79.65c-9.78-6-21.79-6.19-33.26-6.21-11.42-.03-22.71-.04-33.87-.04-.39 0-.58.19-.58.58l-.03 45.32c0 .41.2.61.61.61h34.74c16.14-.01 42.15-1.42 41.61-24.01-.17-6.87-3.47-12.72-9.22-16.25Zm127.33 40.4h-44.68c-.22 0-.4-.18-.4-.4V.47c0-.22.18-.4.4-.4h151.09c.22 0 .4.18.4.4v38.01c0 .22-.18.4-.4.4H430.8c-.22 0-.4.18-.4.4l.01 45.71c0 .22.18.4.4.4h96.41c.22 0 .4.18.4.4l.01 38c0 .22-.18.4-.4.4h-96.57c-.22 0-.4-.18-.4-.4l.01-37.86c0-.22-.18-.4-.4-.4Zm290.81 85.61v38c0 .22-.18.4-.4.4H569.33a.417.417 0 0 1-.4-.41V.47c0-.22.18-.4.4-.4H614c.22 0 .4.18.4.4v169.87c0 .22.18.4.4.4h105.48c.22 0 .4.18.4.4Z\"/><rect class=\"cls-1\" x=\"384.79\" y=\"124.06\" width=\"45.2\" height=\"85.48\" rx=\".54\" ry=\".54\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14a29jk\",\"data-framer-name\":\"18\",layoutDependency:layoutDependency,layoutId:\"kEcEhheov\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c0a61\",\"data-framer-name\":\"Michelin_blanc_\",fill:\"black\",intrinsicHeight:586,intrinsicWidth:1339,layoutDependency:layoutDependency,layoutId:\"coDPTCMcv\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1338.84 586.38\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"m677.4 381.88-55.63-.21c-3.36-.86-6.91-2.15-10.66-3.87-33.13-15.21-52.18-46.45-53.14-82.47-.71-26.68 10.64-50.58 31.06-67.98.71-.61.6-.84-.33-.71-9.64 1.37-19.25 3.25-28.09 7.75-14.52 7.4-25.14 17.7-31.86 30.91-14.98 29.46-12.34 61.89 5.41 89.49 4.18 6.49 11.03 13.21 16.82 17.85 3.27 2.62 8.09 5.7 14.45 9.23l-26.6.02c-.27 0-.53-.05-.78-.15-.22-.09-.39-.1-.51 0-13.35-11.37-21.87-24.53-27.92-41.06-10.38-28.39-8.41-56.42 5.9-84.09 3.05-5.91 7.21-11.68 12.47-17.31.13-.13.12-.34-.01-.47a.31.31 0 0 0-.18-.09c-17.79-3.06-36.52-4.68-56.19-4.86-.33 0-.6.13-.79.4-3.9 5.41-9.06 9.37-15.48 11.89-.29.11-.57.08-.83-.09a.857.857 0 0 1-.25-1.19c.02-.02.03-.05.05-.07 3.47-4.34 6.13-7.92 5.76-13.92-.15-2.38-1.86-3.26-4.12-2.58-4.79 1.44-10.12 3.72-14.93 3.66-2.59-.03-2.79-.74-.6-2.12 9.85-6.22 19.2-13.13 26.4-21.6 10.57-12.43 19.05-30.4 17.05-46.64-2.18-17.73-10.69-32.84-25.54-45.35-3.02-2.54-6.4-4.61-10.13-6.22-2.12-.91-2.14-1.88-.07-2.9l.97-.48c.32-.16.46-.42.41-.77-.13-.94-.31-1.89-.54-2.84-9.15-36.84-34.84-68.49-74.34-72.36-3.57-.35-7.3-.55-11.17-.6-.64 0-1.21-.21-1.7-.61a.903.903 0 0 1 .15-1.49l2.25-1.17a1.521 1.521 0 0 0 .34-2.45c-2.06-1.95-4.42-3.3-7.07-4.03-11.89-3.29-22.88-2.12-32.96 3.5-5.14 2.86-8.97 6.69-11.48 11.5-.98 1.87-.43 2.62 1.65 2.24 1.75-.33 4.6-.82 6.28 0 .5.25.71.85.46 1.35-.08.17-.22.32-.38.42-3.31 1.95-6.55 3.99-9.7 6.12-17.38 11.72-29.6 29.12-35.37 49.35-3.52 12.35-4.62 26.2-3.3 41.55.24 2.85 1.88 4.21 4.92 3.95 2.37-.19 4.69-.48 6.96-.85.24-.04.48.12.52.36v.17c-.07.34-.23.63-.48.87-2.78 2.58-5.48 5.04-8.1 7.39-16.41 14.71-19.86 37.31-14.88 58.18 4.4 18.47 14.74 31.3 31.02 38.47 4.92 2.17 11.21 3.99 18.88 5.44 16.9 3.21 33.58 4.54 50.03 3.99.38-.01.69.28.7.66v.09c-.01.13-.05.24-.12.35-.41.61-.98.99-1.72 1.12-7.85 1.38-16.39 2.56-25.64 3.54-2.09.22-3.63 1.11-4.63 2.67-3.58 5.59 8.31 10.94 11.81 12.19.45.16.78.42 1 .79.41.7.18 1.6-.52 2.01-.16.09-.34.16-.52.19-3.66.57-7.23.64-10.7.21-6.6-.81-13.03-1.59-19.3-2.34-4.5-.55-8.9.16-13.2 2.11-11.85 5.39-22.79 11.85-32.8 19.36-28.29 21.24-45.42 49.51-51.39 84.8l-15.73-.04c3.34-24.39 12.06-46.22 26.16-65.47.4-.55.27-.75-.4-.61-34.7 7.48-60.75 32.87-76.03 64.58-.24.48-.67.85-.96 1.32l-19.25.07a.66.66 0 0 1-.55-.27l-.19-.24c9.87-23.94 24.12-43.67 42.76-59.2 19.06-15.88 41.95-24.87 68.68-26.97a1.9 1.9 0 0 0 1.24-.56c13.49-12.96 29.66-23.67 46.47-31.6.13-.06.18-.22.12-.35a.254.254 0 0 0-.13-.12c-27.41-11.68-42.18-35.03-45.24-63.82-2.15-20.26 2.14-38.16 12.89-53.71.3-.44.43-.98.36-1.51-5.27-41.6 6.37-80.18 37.86-107.36.32-.27.54-.64.64-1.05 2.34-9.58 7.9-17.58 16.69-24C322.45 1.98 337.1-1.53 353.82.64c9.71 1.27 17.53 4.73 23.46 10.38 2.6 2.47 7.53 2.14 10.9 2.96 41.5 10.11 68.36 42.78 78.57 83.61.26 1.01 1.02 2.55 1.85 3.2 13.06 10.25 22.62 23 28.68 38.26 7.19 18.11 7.24 36.05.14 53.81-3.2 8-7.25 15.35-12.16 22.04-.15.21-.1.49.1.64.08.05.17.09.26.09 19.18.69 38.1 3.05 56.75 7.08.52.11 1.01.03 1.46-.25 7.85-4.85 16.75-8.98 25.47-11.1 5.44-1.33 11.24-2.38 17.39-3.17 9.61-1.23 19.25-.67 29.1.92 1.41.23 2.76.15 4.04-.22 7.15-2.09 14.31-3.35 21.48-3.78 1.22-.07 2.4-.44 3.54-1.11 7.13-4.17 14.96-7.31 23.49-9.42.5-.12.95-.42 1.25-.84 3.81-5.18 8.33-9.93 13.58-14.26 6.24-5.13 12.05-9.44 17.44-12.92 5.71-3.68 12.58-5.68 19.24-7.34.68-.17 1.29-.55 1.74-1.09 3.51-4.22 7.42-7.96 11.74-11.21 8.48-6.4 17.81-13.16 27.61-17.01 19.3-7.57 40.75-6.04 59.28 3.1.31.15.54.08.69-.23 3-6.08 6.77-11.69 11.31-16.84 6.69-7.59 14.04-15 22.05-22.25a97.93 97.93 0 0 1 13.29-10.12c13.09-8.29 26.3-16.79 39.63-25.48 4.35-2.83 8.03-4.5 11.04-5 9.93-1.66 19.28 4.73 23.06 13.82 2.33 5.63 2.55 11.53.64 17.71-.08.25.06.51.3.59.08.03.17.03.26 0 13.17-3.09 26.95-6.41 41.34-9.96 6.09-1.5 10.61-2.12 13.58-1.87 8.79.74 15.4 5.01 19.85 12.8.19.35.48.59.87.71 9.11 2.95 15.39 8.43 18.86 16.43 3.91 9.05 2.32 16.66-4.77 22.81-2.46 2.14-7.06 3.52-8.69 6.34-2.82 4.9-8.55 7.88-13.57 10.73-.91.51-1.62 1.27-2.13 2.26-4.51 8.8-12.55 16.36-20.4 22.43-12.3 9.51-24.68 17.25-37.14 23.23-18.87 9.05-37.71 18.08-56.25 23.4-9.13 2.63-18.07 3.89-26.8 3.78-.38 0-.6.18-.65.56-1.53 10.44-5.18 20.38-10.97 29.83-8.19 13.35-20.04 21.08-33.34 28.44-.72.4-1.29 1-1.64 1.74-6.16 12.81-15.31 23.23-27.44 31.26-12.37 8.19-25.05 15.22-39.33 18.03-.84.17-1.52.59-2.05 1.26-7.79 9.89-19.74 17.06-31.74 21.57-.75.28-1.39.81-1.8 1.5-1.82 3.01-3.82 5.9-6.29 8.4-9.53 9.64-21.06 16.64-34.59 21Zm125.67-164.27c.18-.43.68-.65 1.12-.49 6.14 2.21 13.26 3.92 19.15.31 6.31-3.87 13.05-7.96 20.23-12.27.47-.28.69-.85.54-1.37-.91-3.25-.89-5.91.08-8 .14-.31.37-.53.7-.66 2.24-.88 4.41 1.33 5.93 2.74 2.05 1.9 4.69 2.76 7.38 3.29 9.43 1.87 18.84 1.56 28.23-.91 19.44-5.12 40.28-15.08 59.57-24.61 11.5-5.69 23.09-13.25 34.78-22.68 4.25-3.43 9.85-8.49 12.3-13.41.17-.35.2-.7.07-1.07-.31-.91-.85-1.67-1.63-2.29-5.92-4.72-12.99-2.01-17.89 2.52-11.05 10.2-23.06 18.01-37.39 22.6-1.11.36-2.32-.03-3.01-.96-.5-.67-.78-1.38-.83-2.11-.13-1.65.59-2.74 2.15-3.27 11.13-3.82 20.57-9.04 28.32-15.66 2.99-2.55 5.99-5.05 8.99-7.5 7.58-6.18 17.66-6.6 24.98.42.25.24.64.28.93.09 3.59-2.3 7.26-4.58 11.02-6.83 4.39-2.63-.6-8.06-3.39-9.53-5.28-2.76-13.97 1.02-18.62 3.73-5.66 3.3-11.12 6.89-17.17 9.69a181.124 181.124 0 0 1-34.36 11.9c-1.64.39-2.94-.11-3.91-1.49-.19-.27-.31-.57-.34-.9-.25-2.14.67-3.47 2.76-3.98 11.75-2.89 22.96-6.8 33.62-11.72 13.18-6.09 35.56-26.26 48.1-6.22.33.53.77.64 1.31.31l5.17-3.16c1.14-.69 1.61-2.1 1.12-3.34-2.98-7.45-9.17-10.26-16.63-8.03-25.48 7.65-49.9 14.89-73.26 21.72-1.5.44-2.74.06-3.73-1.15-.23-.27-.38-.58-.46-.93-.48-2.15.34-3.55 2.45-4.18l72.14-21.45c.45-.13.71-.6.57-1.05v-.01c-1.77-5.7-6.41-7.54-11.79-6.25-31.39 7.59-61.27 14.7-89.64 21.35-7.2 1.69-13.91 3.77-20.13 6.26-.33.13-.7-.04-.83-.37a.66.66 0 0 1-.03-.34c.12-.66.44-1.17.97-1.53 4.83-3.31 9.91-6.04 15.26-8.18 3.21-1.28 6.08-2.85 8.61-4.72 7.55-5.58 25-19.47 20.02-29.35-1.47-2.9-4.34-5.24-7.64-3.16-17.29 10.9-32.93 20.97-46.91 30.2-2.59 1.71-6.33 4.86-11.2 9.43-12.41 11.67-23.19 22.68-30.03 38.52-.26.61-.67 1.08-1.24 1.41-6.48 3.84-12.96 7.55-19.45 11.14-4.13 2.29-7.04 5.24-9.97 8.91a1.08 1.08 0 0 1-1.92-.59c-.3-3.99 3.07-10.52 4.98-13.74 1.39-2.34 3.54-4.13 5.78-5.7a.4.4 0 0 0 .1-.56.428.428 0 0 0-.18-.15c-12.41-5.14-24.86-5.93-37.35-2.36-8.86 2.54-16.55 8.3-24.17 13.7-11.53 8.18-18.45 18.51-22.23 31.91-1.63 5.82-2.09 11.86-1.38 18.13 2.57 22.61 14.44 41.79 34.64 52.22 17.79 9.19 35.35 9.2 52.68.03 5.61-2.97 11.02-6.25 16.23-9.83 11.08-7.62 17.57-20.42 20.48-33.52.08-.35.06-.7-.07-1.05a.29.29 0 0 0-.37-.18c-.03 0-.06.02-.08.04-6.3 4.71-13.32 8.47-21.07 11.3-4.42 1.61-8.92 2.25-13.12-.16-4.18-2.39-7.49-5.6-9.94-9.64-.25-.41-.29-.83-.1-1.26Zm-92.94-35.09c-12.44 8.52-23.67 17.09-30.84 30.63-8.03 15.19-9.26 31.11-3.69 47.78 5.46 16.33 15 29.12 28.61 38.38 16.17 11 38.01 15.18 56.61 7.44 8.85-3.68 17.6-8.77 26.25-15.27a57.4 57.4 0 0 0 7.31-6.56c.65-.69.5-.98-.44-.87-8.85 1.04-17.16.57-24.93-1.41-33.65-8.58-56.19-35.44-60.77-69.68-1.37-10.23-.32-20.31 3.15-30.24a.415.415 0 0 0-.24-.53.427.427 0 0 0-.25-.01c-.27.07-.53.18-.77.34Zm-50.65 34.82c-25.98 12.05-37.46 35.39-35.08 62.98 1.33 15.38 10.38 32.14 21.17 42.56 23.01 22.22 55.9 20.44 82.19 3.46.8-.52.73-.85-.21-1-47.96-7.68-82.56-60.65-67.45-107.45.21-.66 0-.84-.62-.55Zm-38.23 10.53c-23.65 6.97-40.89 27.11-46.04 50.65-2.64 12.04-1.64 26.22 1.97 38.29 5.35 17.95 15.71 31.82 31.07 41.61 15.47 9.87 32.09 12.95 49.88 9.25 10.89-2.26 21.67-5.73 30.86-11.9.57-.37.51-.55-.17-.54-17.16.35-32.52-4.38-46.09-14.18-11.87-8.57-20.48-20.42-26.91-33.78-12.34-25.64-9.22-55.86 5.83-78.86.35-.54.22-.72-.4-.54Z\"/><path class=\"cls-1\" d=\"M426.91 82.7c7.45 12.36 13.34 28.56 6.74 42.54-1.65 3.49-4.33 5.75-8.04 6.79-4.03 1.13-7.65 1.59-10.85 1.38-8.09-.54-14.58-9.15-17.62-16.32-3.79-8.92-6.54-21.09-4.8-31.01 2.51-14.27 17.28-19.42 28.57-10.4 2.28 1.82 4.28 4.16 6 7.02Zm-20.42 15.94.82.89c.17.18.38.33.61.44 3.43 1.6 6.47-.58 6.74-4.11.31-4.14-1.5-6.93-5.42-8.37-.37-.14-.42-.35-.15-.63 4.29-4.61 10.27-4.14 14.44.35.09.09.18.1.27.02.05-.05.06-.1.02-.15-4.69-6.75-12.17-11.1-20.14-6.14-5.04 3.14-6.69 9.25-6.57 14.96.21 11.11 3.25 20.3 9.1 27.57 3.89 4.83 8.41 6.48 14.18 5.24 2.71-.57 6.6-1.32 8.17-3.77 2.93-4.55 4.03-9.66 3.29-15.33 0-.02-.01-.03-.03-.03h-.25c-.11.02-.17.08-.18.19-.11 3.4-.89 6.57-2.36 9.5-3.46 6.93-11.11 6.45-15.75 1.22-5.05-5.69-7.57-12.88-7.56-21.55 0-.76.26-.86.77-.3Zm-34.82 2.43c4.95 11 7.18 22.06 3.8 33.92-2.98 10.47-10.37 12.55-19.98 14.27-12.1 2.16-21.42-12.11-24.55-21.76-4.87-15.02-6.27-39.99 14.93-43.6 12.67-2.15 20.9 6.27 25.8 17.17Zm-27.26 10.4c.82.57 1.2 1.13 2.22 1.48 3.56 1.2 6.07-1.59 6.19-4.89.14-3.59-1.46-6.1-4.79-7.55a.563.563 0 0 1-.3-.73c.02-.05.05-.09.08-.13 5.03-6.19 13.18-4.11 17.56 1.65.01.01.03.01.04 0l.28-.22s.05-.06.02-.11c-3.47-5.81-8.19-8.77-14.15-8.9-15.78-.34-19.43 13.09-17.8 25.9 1.12 8.86 5.53 19.12 13.01 24.43 5.26 3.74 11.11 1.67 16.82-.11 5.25-1.63 7.75-8.25 8.01-13.13.02-.42-.03-.43-.15-.03-2.43 7.99-10.35 11.96-17.51 6.31-7.08-5.58-10.1-14.71-10.08-23.69 0-.19.16-.35.36-.34.07 0 .14.02.19.06Zm102.94 42.28a.28.28 0 0 0-.38-.12c-.03.02-.06.04-.08.06-4.2 4.65-9.29 9.09-12.22 14.65-1.57 2.98-3.24 5.87-5 8.67-9.44 15.05-29.93 21.83-46.56 15.98-3.83-1.35-7.84-3.12-12.04-5.32-2.94-1.54-6.23-2.37-9.55-2.25-4.33.17-8.48.03-12.46-.4a3.404 3.404 0 0 1-3.02-3.75c.01-.12.03-.25.06-.37l.13-.57c.33-1.5 1.72-2.53 3.25-2.4 11.83.97 23.91.34 36.24-1.87 20.83-3.74 42.3-10.85 57.34-26.51.22-.23.26-.48.12-.77a1.65 1.65 0 0 0-.49-.62c-.27-.22-.43-.5-.46-.85-.09-.73.25-1.19 1.02-1.38 5.48-1.34 7.85 4.62 6.62 8.85-.16.54-.72.85-1.26.7a1.01 1.01 0 0 1-.61-.5l-.65-1.23Zm-66.33 30.01c-.18.02-.36.06-.53.11-.37.13-.38.28-.03.47 9.03 4.6 18.55 5 28.55 1.19 7.61-2.9 13.35-7.85 17.23-14.85.24-.43.14-.54-.3-.33-14.5 7.09-29.47 11.56-44.92 13.41Z\"/><path class=\"cls-1\" d=\"M348.78 175.35c-3.66 2.26-6.39 5.79-6.14 10.27.04.69-.41 1.31-1.07 1.49-1.14.32-2.17-.29-2.39-1.46-1.21-6.44 2.53-12.06 8.65-14.25.93-.33 1.94.15 2.28 1.07.11.32.14.66.06.99-.17.79-.64 1.42-1.39 1.89ZM127.52 381.4l.19.24c.14.18.32.27.55.27l19.25-.07 51.23.18 15.73.04c107.24.05 214.36.06 321.37.03.85 0 1.41-.12 1.7-.36.12-.09.29-.08.51 0 .25.1.51.15.78.15l26.6-.02 56.22.14c.06 0 .09-.03.1-.08l.02-.26 55.63.21h660.7c.66-.01.88.3.65.92l-11.17 30.32c-.17.45-.59.75-1.07.75H63.31a.67.67 0 0 1-.63-.9l11.19-30.44c.14-.4.52-.66.95-.66h51.78c.17 0 .33-.04.48-.13.17-.09.31-.21.44-.34Zm300.19 204.98c-28.29.16-71.38-11.16-70.24-46.72 1.43-44.42 43.6-72.11 82.49-81.23 28.62-6.71 57.19-6.96 85.7-.74a.6.6 0 0 1 .46.7c0 .04-.02.08-.04.11l-18.33 43.95a.27.27 0 0 1-.34.14.254.254 0 0 1-.13-.12c-5.57-11.32-17.7-12.46-28.75-12.09-15.72.54-33.95 6.35-44.16 18.96-4.77 5.9-8.78 14.02-6.94 21.49 2.83 11.42 16.82 15.93 27.61 16.23 12.81.35 25.81-2.25 38.58-4.64.25-.05.49.11.54.36.02.09 0 .18-.02.26l-14.28 37.02c-.26.66-.84 1.15-1.54 1.27-17.93 3.28-34.8 4.96-50.61 5.05ZM89.54 494.2c.1-1.34-.08-1.38-.54-.12l-32.65 88.48c-.2.55-.73.91-1.31.91H.35a.34.34 0 0 1-.35-.34c0-.04 0-.08.02-.12l46.5-126.24c.15-.41.54-.68.97-.68 22.52.09 45.16.07 67.91-.04 4.44-.02 7.7.42 9.77 1.32 11.44 4.96 9.68 20.58 8.91 30.27-.93 11.87-1.89 23.48-2.86 34.83-.09 1.15.18 1.24.81.28l43.35-65.76c.35-.54.96-.87 1.6-.86h85.69c.25.01.45.22.45.46 0 .05 0 .1-.03.15l-46.47 126.24c-.11.3-.39.49-.7.49h-55.31a.49.49 0 0 1-.5-.5c0-.06.01-.12.03-.17l32.1-87.27s.01-.08 0-.11a.526.526 0 0 0-.16-.2c-.06-.06-.11-.05-.16.02-19.45 28.95-39.04 58.05-58.77 87.31-.39.58-1.05.93-1.75.93H83.31c-.49-.01-.71-.25-.67-.74l6.91-88.54Zm161.66 88.54 46.5-126.24c.08-.21.28-.36.51-.36l60.78-.02c.3 0 .55.24.55.55 0 .07-.01.13-.03.19l-46.5 126.24c-.08.21-.28.36-.51.36l-60.78.02c-.3 0-.55-.24-.55-.55 0-.07.01-.13.03-.19Zm378.96-81.21 16.73-45.03c.08-.21.28-.36.51-.36l57.73-.02c.3 0 .55.24.55.55 0 .07-.01.13-.03.19l-46.56 126.25c-.08.21-.28.36-.51.36h-57.82c-.3 0-.55-.25-.54-.56 0-.06.01-.12.03-.18l15.4-41.5c.1-.29-.04-.6-.33-.71a.628.628 0 0 0-.19-.03l-29.66-.03c-.23 0-.43.15-.51.36l-15.68 42.28c-.08.21-.28.36-.51.36l-57.73.02c-.3 0-.55-.24-.55-.55 0-.07.01-.13.03-.19l46.36-126.24c.08-.21.28-.36.51-.36l57.93-.02c.3 0 .55.24.55.55 0 .07-.01.13-.03.19l-16.29 44.33c-.1.29.04.6.33.71.06.02.13.03.19.03l29.58-.04c.23 0 .43-.15.51-.36Zm135.13 47.55 70.64.03c.22 0 .4.18.4.4 0 .05 0 .09-.03.14l-12.34 33.56a.4.4 0 0 1-.38.26H694.12c-.22 0-.4-.18-.4-.4 0-.05 0-.09.03-.14l46.6-126.54a.4.4 0 0 1 .38-.26h127.99c.22 0 .4.18.4.4 0 .05 0 .09-.03.14l-12.1 32.69a.4.4 0 0 1-.38.26h-69.83a.4.4 0 0 0-.38.26l-4.73 13.09c-.08.21.03.44.23.51.05.02.1.03.15.03l65.88.02c.22 0 .4.18.4.4 0 .05 0 .09-.03.14l-11.28 30.67a.4.4 0 0 1-.38.26H770.2a.379.379 0 0 0-.38.25l-4.9 13.29c-.08.21.03.44.23.51.04.02.09.02.14.03Zm226.4-7.39-15.26 41.45c-.07.2-.26.33-.47.33H856.27a.495.495 0 0 1-.47-.67l46.59-126.34c.07-.2.26-.33.47-.33h59.15a.51.51 0 0 1 .47.68l-30.71 83.54a.501.501 0 0 0 .47.67h58.98a.495.495 0 0 1 .47.67Zm8.07 40.98 46.48-126.16c.08-.23.3-.39.55-.39h60.7c.33-.01.59.25.59.58 0 .07-.01.14-.03.2l-46.49 126.16c-.08.23-.3.39-.55.39h-60.69a.57.57 0 0 1-.59-.58c0-.07.01-.14.03-.2Zm181.28-87.48c-.15.03-.24.12-.29.25-10.77 29.16-21.55 58.38-32.35 87.65-.08.22-.3.37-.53.37l-51.46.02a.29.29 0 0 1-.29-.29c0-.03 0-.07.02-.1l46.46-126.31c.14-.4.52-.66.94-.66 22.81.03 45.76.02 68.84-.05 13.37-.03 19.44 9.89 18.85 22.22-1.14 23.51-2.21 44.55-3.22 63.12 0 .09.04.15.13.19.13.06.29 0 .35-.14l31.11-84.54c.17-.46.61-.77 1.1-.77h50.47c.22-.01.39.16.39.38 0 .05 0 .09-.02.14l-46.46 126.12c-.15.41-.55.69-.99.69h-86.14c-.39 0-.57-.19-.56-.58l3.82-87.56c0-.08-.06-.14-.14-.14h-.03Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gyu503\",\"data-framer-name\":\"17\",layoutDependency:layoutDependency,layoutId:\"h3ZjaXP4J\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x850xv\",\"data-framer-name\":\"Airbus_blanc_\",fill:\"black\",intrinsicHeight:62,intrinsicWidth:333,layoutDependency:layoutDependency,layoutId:\"Wu5_MDjnO\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 333.46 61.97\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M283.73 15.34C284.96 5.65 294.43.89 303.18.2c10.12-.79 19.61.81 28.46 4.78.4.19.6.65.44 1.07l-4.16 10.91c-.14.37-.39.47-.74.3-7.77-3.72-15.86-5.1-24.27-4.13-1.87.21-4.6 1.49-4.84 3.65-.25 2.27.85 3.79 3.29 4.54 4.24 1.31 8.51 2.43 12.81 3.37 11.9 2.59 21.82 9.33 18.72 23.28-3.06 13.74-19.57 14.71-30.73 13.61-7.37-.72-14.21-2.54-20.54-5.46a.846.846 0 0 1-.44-1.05l4.12-11.72c.07-.21.21-.26.41-.17 9.27 4.58 18.56 6.33 27.87 5.24 4.6-.54 7.27-5.96 2.39-8.48-1.91-.99-3.9-1.71-5.95-2.17-4.49-1-8.7-2.07-12.63-3.2-9.56-2.73-14.99-8.71-13.66-19.23ZM251 48.26c9.06-1.04 10.43-8.41 10.38-16.24-.07-9.88-.06-20.01.01-30.4 0-.18.15-.32.32-.32h14.03c.24.01.43.2.43.44.01 11.47.01 22.44-.01 32.91-.03 11.73-5.22 22.48-17.18 25.96-7.39 2.16-17.06 1.85-23.99-1.62-9.11-4.56-12.98-14.17-13.02-24.05-.04-10.78-.03-21.78.02-33.01 0-.43.22-.65.65-.65h13.45c.47 0 .71.23.7.7-.04 11.43-.03 22.55.04 33.36.05 8.83 5.32 13.94 14.17 12.92ZM39.4 38.43l5.75 11.8c.08.17 0 .38-.17.47-.05.02-.1.03-.15.03H21.25c-.14 0-.26.08-.32.2l-4.69 9.57c-.06.12-.18.2-.32.2H.35a.37.37 0 0 1-.35-.36c0-.06.01-.11.04-.16L29.93 1.46c.06-.12.18-.19.31-.19h12.45c.13 0 .25.07.31.19l29.93 58.72c.09.17.02.38-.15.47-.05.03-.1.04-.16.04H56.65a.332.332 0 0 1-.32-.18L36.52 20.6a.35.35 0 0 0-.62 0l-8.44 17.03a.35.35 0 0 0 .15.47c.05.03.1.04.16.04l11.32.1c.13 0 .25.07.31.19Z\"/><rect class=\"cls-1\" x=\"76.12\" y=\"1.3\" width=\"14.46\" height=\"59.4\" rx=\".44\" ry=\".44\"/><path class=\"cls-1\" d=\"M140.44 39.17c-.23.06-.38.3-.31.54.01.04.03.08.05.12l12.94 20.49c.07.11.04.25-.07.32-.04.02-.08.04-.13.04l-15.45.02c-.44 0-.78-.19-1.02-.56l-19.12-30.55c-.27-.43-.15-.65.36-.66 3.19-.05 6.7-.03 10.53.06 6.36.15 11.99-1.36 10.84-9.07-.66-4.44-4.49-5.86-8.53-5.79-5.38.1-10.47.11-15.27.03-.25 0-.46.2-.46.45v45.45c0 .42-.2.63-.63.63h-13.53c-.24 0-.36-.11-.36-.35V1.87c0-.37.18-.55.55-.55 10.07-.05 20.44-.06 31.11-.03 13.18.03 22.17 7.68 21.6 21.29-.37 8.87-4.74 14.4-13.1 16.59Zm66.69-9.07c6.29 2.99 9.17 8.16 8.64 15.52-.72 10.05-10.1 14.97-19.42 15.03-11.73.07-23.63.08-35.68.02-.18 0-.33-.15-.33-.34V1.8c.01-.26.22-.47.49-.48 11.47-.07 23.09-.07 34.84-.02 11.36.06 19.25 7.75 17.32 19.65-.58 3.57-2.85 6.49-5.9 8.51-.37.24-.35.45.04.64Zm-32.15-15.83v9.62c0 .22.17.39.39.39H194c2.93 0 5.3-2.31 5.3-5.17v-.06c0-2.86-2.37-5.17-5.3-5.17h-18.63c-.22 0-.39.17-.39.39Zm-.01 22.52.02 10.8c0 .33.27.6.6.6l19.13-.03c3.32 0 6.01-2.64 6-5.89v-.24c0-3.25-2.7-5.88-6.02-5.87l-19.13.03c-.33 0-.6.27-.6.6Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-131ll6h\",\"data-framer-name\":\"16\",layoutDependency:layoutDependency,layoutId:\"rhbS1sWjz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6uo8uk\",\"data-framer-name\":\"$66Fichier_1\",fill:\"black\",intrinsicHeight:171,intrinsicWidth:1324,layoutDependency:layoutDependency,layoutId:\"f3l0r3h8T\",style:{opacity:.7},svg:'<svg id=\"Calque_2\" data-name=\"Calque 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1323.84 171.26\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><g id=\"Calque_1-2\" data-name=\"Calque 1\"><rect class=\"cls-1\" x=\"959.82\" y=\".04\" width=\"63.24\" height=\"20.42\" rx=\"9.87\" ry=\"9.87\" transform=\"rotate(-.1 991.207 12.324)\"/><rect class=\"cls-1\" x=\"1034.09\" y=\".06\" width=\"63.72\" height=\"20.3\" rx=\"9.83\" ry=\"9.83\"/><path class=\"cls-1\" d=\"M911.93 98.48c.26 23.47-8.38 44.96-28.21 58.21-13.88 9.28-29.53 14.02-46.94 14.22-17.69.2-33.26.32-46.71.35-14.06.03-28.69-3.93-41.46-10.13-9.66-4.69-17.67-12.64-24.32-21.17a31.458 31.458 0 0 1-4.46-7.87c-6.03-15.32-9.89-30-5.08-46.43 3.14-10.7 7.01-20.42 14.46-28.6 13.42-14.74 30.07-23.34 50.41-24.22 20.48-.88 42.67-1.79 63.89-.67 13.21.71 25.1 4.6 36.26 11.13 19.03 11.13 31.92 33.05 32.16 55.18Zm-47.29-30.05c-6.52-4.89-13.29-7.66-20.31-8.31-6.33-.59-13.44-1.07-21.33-1.45-4.49-.21-9.39-.19-14.69.07-9.54.46-19.04-.25-29.12 1.6-15.57 2.85-27.1 12.88-30.79 28.11-2.96 12.21-2.11 24.47 4.26 35.24 8.77 14.85 22.54 18.49 38.83 18.72 16.71.24 32.49.55 50.03-.83 17.38-1.37 29.85-11.06 35.12-27.25 4.76-14.65 1.31-35.92-12-45.9Zm-609.23 96.03c0 1.76-1.42 3.19-3.18 3.2l-23.74.04c-2.74 0-4.97-2.1-4.98-4.71s-.22-124.48-.22-124.48c0-2.61 2.22-4.72 4.96-4.73l23.74-.04c1.76 0 3.19 1.42 3.2 3.18l.22 127.54ZM.29 96.07c.34-31.04 27.13-54.53 56.02-59.63 3.86-.68 10.5-1.09 19.93-1.22 31.93-.44 64.34-.85 97.25-1.23 3.15-.03 4.71 1.5 4.67 4.6-.1 7.3-.12 14.78-.06 22.45 0 .32-.26.58-.58.59-32.57.19-63.32.24-92.24.16-16.14-.05-27.22.25-38.85 9.36-14.09 11.03-15.73 25.58-12.34 42.26 2.62 12.84 16.66 21.86 28.61 24.76 5.91 1.43 12.16 2.15 18.73 2.16 32.41.04 64.4.04 95.98-.01.39 0 .6.19.61.58.27 8.13.26 16-.03 23.62a2.895 2.895 0 0 1-2.9 2.8c-21.69.09-42.97.21-63.86.38-14.49.12-27.48-.72-41.5-1.28-5.81-.23-10.97-.8-15.5-1.71-18.83-3.76-38.94-15.79-47.52-33.67-3.06-6.37-5.17-12.74-6.32-19.13-.37-2.03-.47-4.68-.32-7.96.12-2.53.19-5.15.22-7.88Zm615.73 20.2c-.35.45-.38.77-.08.98 23.82 16.25 47.35 32.43 70.59 48.54.15.1.19.31.08.46-.04.06-.1.1-.16.13-1.93.67-3.94 1.16-6.03 1.18-10.39.05-21.22.05-32.51 0-3.39-.01-6.32-.99-8.81-2.92-10.71-8.33-21.04-15.82-30.99-22.49-17.53-11.73-34.54-24.55-51.58-36.82-3.46-2.49-5.54-5.02-4.94-9.51.36-2.72 1.91-4.08 4.65-4.08 22.55.03 44.3-.01 65.25-.14 4.32-.03 8.26-.06 11.83-.09 5.7-.05 9.19-1.16 11.83-6.11 3.24-6.07 3.83-12.17-.6-18.15-3.92-5.28-8.28-5.1-14.02-5.1-35.33-.01-68.69 0-100.1.05-1 0-1.5.5-1.5 1.5v102.81c.01.43-.2.64-.63.64l-29.57-.04c-.24 0-.43-.19-.43-.43V35.19c-.01-.32.15-.51.47-.58 2.08-.41 4.73-.62 7.95-.63 38.71-.1 77.05-.05 115.02.14 4.13.02 8.36.09 12.71.21 17.61.51 36.15 8.69 42.4 26.19 4.27 11.96 4.48 21.91-.33 33.65-4.69 11.44-15.19 16.76-27.1 19.18-10.47 2.13-21.35 2.99-32.66 2.57-.28 0-.56.12-.74.35Zm563.41-52.36v103.07c.01.27-.2.48-.47.48l-28.68.17c-.35 0-.64-.28-.65-.63-.16-4.2-.52-8.49-.6-12.41-.66-35.97-.71-72.19-.16-108.65.06-3.85.24-7.31.53-10.4.09-.97.63-1.46 1.61-1.47 36.48-.17 72.34-.16 107.58.04 35.6.21 64.97 21.29 65.14 59.45.11 24.65.14 49.15.09 73.48 0 .19-.15.34-.34.34h-29.31c-.39 0-.62-.2-.69-.58-.37-1.86-.55-3.67-.54-5.43.01-20.44 0-41.25-.06-62.44-.03-9.36-2.11-20.39-9.32-26.76-6.27-5.53-14.67-9.97-22.98-9.99-25.8-.06-52.28-.05-79.44.02-1.14 0-1.71.57-1.71 1.71Zm-787.7-2.23v105.23c0 .31-.15.47-.46.47h-29.06a.482.482 0 0 1-.46-.4c-.37-2.35-.75-4.7-.74-7.07.09-32.75.03-65.58-.2-98.48 0-.33-.28-.6-.61-.6l-70.26.04c-2.59 0-3.88-1.29-3.89-3.88l-.03-21.82c0-.49.25-.73.74-.73h178.95c.34-.01.61.26.61.59l.02 25.27c0 .26-.21.47-.46.47l-73.38.13c-.51 0-.77.26-.77.78Zm587.55 78.65 129.12.03c.25 0 .45.2.45.45v25.87c-.01.25-.21.45-.46.45l-159.28-.02c-.25 0-.45-.2-.45-.45V34.89c.01-.25.21-.45.46-.45h159.13c.25 0 .45.2.45.45v26.37c-.01.25-.21.45-.46.45h-128.5c-.25.01-.45.21-.45.46l.08 24.69c0 .25.2.45.45.45h113.09c.25.01.45.21.45.46v24.61c.01.25-.19.45-.44.45H979.53c-.25.01-.45.21-.45.46l-.25 26.59c0 .25.2.45.45.45Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pwz1z\",\"data-framer-name\":\"15\",layoutDependency:layoutDependency,layoutId:\"IkOHSMfcP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vim1jr\",\"data-framer-name\":\"$2560px_Rolex_blanc_\",fill:\"black\",intrinsicHeight:1159,intrinsicWidth:2089,layoutDependency:layoutDependency,layoutId:\"w1Mhq08SV\",style:{opacity:.7},svg:'<svg data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 2088.97 1159.1\"><path d=\"M1074.4 60.17c-.43.09-.69.19-.79.31-5.78 6.81-13.72 11.56-22.5 12.92-.5.08-.72.37-.67.87l4.88 43.81c-.2.38-.29.67-.27.86 11.43 110.93 22.84 221.57 34.22 331.93.11 1.07.29 1.08.54.03l70.77-300.51c.06-.24 0-.44-.18-.6l-.31-.27c.48.03.78-.2.89-.68 3.22-13.77 6.31-26.94 9.28-39.49a.686.686 0 0 0-.46-.82c-7.63-2.44-12.82-6.57-18.2-12.38-1.19-1.77-2.33-3.7-3.42-5.78-5.05-9.65-5.82-19.42-2.31-29.32 6.33-17.83 24.33-27.67 42.7-23.88 14.87 3.08 26.33 15.43 28.66 30.63 1.52 9.91-.86 19.21-7.13 27.91-.16.22-.19.45-.08.68-.09.09-.19.14-.3.16-.22.05-.41.15-.56.32-7.76 8.73-17.27 13.15-28.52 13.25-.51 0-.78.27-.81.78l-19.38 349.33c-.01.29.07.32.25.09 1.21-1.53 2.09-3.19 2.62-4.96l103.49-222.38 15.17-31.75c.08-.16.01-.35-.15-.44-4.91-2.54-9.22-5.97-12.91-10.28-7.66-10.76-9.74-21.87-6.25-33.32 6.41-21.03 28.85-32.12 49.36-23.78 10.24 4.16 18.32 13.05 21.36 23.58 3.3 11.45 1.38 22.33-5.76 32.66-.27.39-.22.64-.3 1.1-.35.01-.58.1-.71.25-9.49 10.94-21.52 15.2-36.09 12.79-.33-.05-.54.08-.63.4l-11.87 40.01-8.16 28.09c-.19 1-.48 2.02-.85 3.06-.36 1.01-.69 2.01-.98 3.01-27.64 93.72-55.24 187.46-82.79 281.22-2.51 8.53-6.67 16.31-12.48 23.32-5.37 6.48-11.72 12.36-19.04 17.64-15.55 10.59-32.6 18.25-51.15 22.98-31.27 7.97-62.85 9.39-94.75 4.26-25.35-4.07-50.33-12.84-71.53-27.54-.25-.17-.47-.2-.68-.09-.02-.42-.14-.71-.37-.87-14.07-10.07-24.99-23.23-29.93-40.01-28.16-95.63-56.36-191.24-84.59-286.84l-8.61-28.66v-.29c.03-.26.01-.52-.06-.77l-11.46-38.76c-.11-.37-.35-.51-.72-.44-15.25 3.01-27.82-1.37-37.69-13.16-1.63-2.28-2.74-4-3.34-5.15-8.5-16.2-4.59-36.26 10.38-47.34 23.6-17.47 57.2-1.88 58.93 27.44.51 8.73-1.91 16.87-7.28 24.42-.16.23-.23.55-.21.97l-.38.15c-.22.09-.41.22-.57.4-3.14 3.55-6.73 6.44-10.76 8.66-.49.27-.62.67-.38 1.18 4.73 10.12 9.43 20.2 14.1 30.25.11.23.34.29.68.16-.11.12-.18.27-.21.46-.02.14 0 .29.08.46 34.59 74.17 69.28 148.4 104.07 222.69.62 1.81 1.4 3.47 2.34 4.97.41.65.59.59.55-.18l-19.44-349.41a.374.374 0 0 0-.37-.36c-11.57-.2-21.13-4.63-28.7-13.29-.1-.12-.4-.27-.9-.46.21-.17.22-.4.01-.68-11.59-15.48-9.68-36.46 4.23-49.5 19.65-18.41 52.03-9.99 60.15 15.41 3.87 12.14 2.02 23.43-5.55 33.86-.1.15-.18.35-.25.62-.07.1-.15.18-.24.24-.32.23-.49.35-.52.38-4.85 5.65-10.83 9.57-17.95 11.78-.35.11-.56.47-.47.83l9.83 40.61 70.26 300.31c.1.43.27.45.5.08.27-.41.43-.87.48-1.37 11.32-110.03 22.65-220.05 33.99-330.08 0-.12-.01-.24-.06-.35-.05-.11-.1-.23-.15-.34l4.83-44.28a.32.32 0 0 0-.27-.35c-9-1.47-16.54-5.67-22.62-12.58-.17-.19-.36-.34-.58-.47l-.6-.33c.29-.19.31-.44.07-.75-21.58-28.18 5.07-67.4 39.13-57.98 25.25 6.99 34.51 36.33 19.97 57.33-.41.59-.6 1.06-.57 1.41ZM954.57 589.72c11.81 4.41 23.64 7.53 35.49 9.38 36.86 5.76 73.7 5.66 110.52-.29 11.09-1.79 22.26-4.74 33.51-8.84 7.13-2.56 13.55-6.16 19.26-10.79 2.15-1.74 3.78-3.55 4.9-5.43 10.31-17.29-20.17-28.98-31.61-32.47-12.13-3.69-24.77-6.35-37.94-7.98-33.69-4.16-66.75-3.62-99.18 1.62-16.77 2.71-34.16 7.21-48.3 15.6-10.62 6.3-17.99 17.46-6.71 27.76 5.46 4.99 12.15 8.8 20.06 11.44ZM826.85 993.89c-.82 4.05-1.63 8.06-2.42 12.02-4.38 21.9-12.32 42.3-23.83 61.2-25.41 41.7-65.4 71.23-112.33 85.07a392.07 392.07 0 0 1-12.71 2.84c-27.21 5.64-54.37 5.43-81.47-.63-3.07-.68-6.14-1.38-9.23-2.1-33.39-9.55-62.03-26.47-85.9-50.74-29.15-29.64-46.82-65.47-53.03-107.5-.35-4.53-.66-9.16-.93-13.87-1.46-25.79 2.2-50.5 10.99-74.14 17.71-47.67 53.7-86.33 99.74-107.67 101.2-46.9 220.6 2.39 260.48 105.8 10.82 28.05 14.37 57.96 10.64 89.72ZM585.22 832.96c-10.31 6.34-19.02 14.42-26.12 24.25-15.53 21.48-25.84 45.38-30.93 71.69-3.7 19.11-4.82 38.37-3.36 57.8.11 1.49.35 3 .7 4.55.05 2.24.49 6.14 1.34 11.69 4.48 29.49 15.01 55.85 31.86 79.35 14.16 19.73 36.49 34.3 61.12 38.08 20.02 3.07 41.53.86 59.53-8.46 15.86-8.21 28.02-19.4 38.02-34.38 17.33-25.97 27.35-54.83 30.07-86.57 2.31-22.1 1.13-44.03-3.54-65.79-5.39-25.14-15.65-48.08-30.77-68.81-6.91-9.47-15.58-17.38-26.03-23.73-1.37-1.05-3.5-2.33-6.41-3.82-20.15-10.34-42.5-12.75-64.38-8.58-11.13 2.12-21.49 6.36-31.1 12.73Zm-225.17 74.8c-.98 2.74-1.96 5.44-2.95 8.1-7.29 19.66-19.64 34.96-37.05 45.91-9.93 6.24-20.36 10.3-31.31 12.18-1.99.34-2.02.78-.07 1.31 16.13 4.41 30.59 10.66 42.11 23.2.24.27.57.36.99.29l-.15.24c-.08.11-.06.27.04.37 13.88 14.28 22.18 33.4 28.75 52.25 8 22.95 15.76 45.45 23.29 67.52.16.46.58.77 1.06.77l38.96.15c.2 0 .36.16.36.36l.05 25.79c0 .31-.25.57-.56.57h-45.24c-.15 0-.3.03-.44.1-.09.05-.18.09-.27.11l-68.47-.3c-.32 0-.58-.23-.64-.53-5.38-27.45-11.05-54.06-19.19-80.41a232.343 232.343 0 0 0-18.92-44.39c-7.42-13.39-16.9-23.72-28.45-30.99-4.57-2.61-10.28-4.95-17.14-7.04-16.91-5.14-30.88-7.19-48.07-7.23a8145.6 8145.6 0 0 1-42.7-.22c-.37 0-.59.17-.64.54l-.27 1.65-.1 15.62c.17-.05.26.25.27.91l-.11 27.05.05 98.07c0 .2.17.37.37.37l49.49.15c.48 0 .72.24.72.73l.04 25.39c0 .3-.24.55-.54.55l-50.26.02-82.86.18c-.79-.06-1.66-.15-2.59-.27-.92-.12-1.83-.17-2.74-.15-14.31.24-29.05.29-44.22.15-.36 0-.65-.29-.65-.65v-25.47c0-.38.19-.57.56-.57h48.75c.61 0 .91-.3.91-.91l.07-253.6c.15-8.57.16-17.22.04-25.94 0-.49-.17-.7-.49-.63l.41-.66c.23-.37.34-.76.34-1.19l-.14-16.02c0-.74-.37-1.11-1.12-1.11l-47.97-.05c-.31 0-.57-.25-.57-.56l.04-25.57c0-.24.2-.44.44-.44 91.59-.01 182.31-.01 272.18.01 32.64 0 62.97 19.25 78.6 48.17 9.59 17.75 12.7 37.01 9.35 57.77-.46 2.84-.91 5.62-1.35 8.35Zm-226.79-68.74-.03 26.47.09 83.35c0 .23.11.34.34.34 26.07-.06 52.46-.07 79.17-.03 12.25.02 22.41-1.48 33.23-5.99 17.11-7.11 29.05-19.13 35.82-36.04 4.98-14.11 5.34-28.13 1.08-42.06-3.07-10.02-8.48-18.69-16.25-26.01-13.04-12.73-31.83-19.14-49.71-19.17-27.55-.05-55.28-.06-83.18-.03-.36 0-.54.19-.54.54l-.02 18.63Zm877 .51c-.06 13.17-.07 21.89-.03 26.16 0 .38.18.54.53.48-.3.44-.45.86-.45 1.25.04 83.84.03 167.86-.02 252.06 0 .47.39.85.86.85 33.31-.05 66.6-.02 99.87.08 9.96.03 16.55-.2 19.77-.69 24.15-3.67 43.69-20.84 49.36-45.25.92-3.98 1.42-9.51 1.51-16.6.15-12.27.21-26.34.18-42.22 0-1.84.03-3.78.09-5.82 0-.31.17-.47.48-.47h25.19c.33.01.59.28.6.61l.5 137.06-42.81.11-155.74-.02h-82.42l-50.73.02c-.41 0-.75-.34-.75-.75l-.03-25.38c0-.37.18-.55.54-.55l49.63-.05c.56 0 1.02-.42 1.07-.97.09-1.01.14-2.01.14-3.02.09-69.05.08-140.06-.01-213.05-.01-11.06.05-21.45.2-31.16.01-.79-.05-1.8-.2-3.01-.11-1.01-.17-2.01-.16-3.02.14-11.88.18-20.61.11-26.18 0-.23-.16-.41-.47-.54.31-.27.49-.86.55-1.77.35-5.05.35-10.09.02-15.13-.09-1.25-.75-1.87-2-1.88l-48.8-.09c-.35 0-.64-.29-.64-.64v-25.4c.01-.42.22-.63.64-.63h184c.43.01.78.35.78.78l-.04 25.32c0 .33-.26.59-.58.59h-50.1c-.4 0-.73.32-.73.72l.09 18.19Zm605.23 75.98-25.83-.02c-.58 0-1.05-.47-1.05-1.05-.03-11.5-.08-22.92-.15-34.25-.09-15.83-5.33-29.39-15.74-40.66-8.83-9.18-19.15-15.01-30.98-17.48-4.39-.92-10.63-1.37-18.71-1.34-41.97.13-83.73.14-125.29.05-.29 0-.44.15-.44.45l-.03 18.34.35 27.08-.2 79.93c0 .5.39.9.89.91h.01c12.97.03 26.32.02 40.07-.02 21.07-.06 39.59-12.34 43.71-33.33 1.55-7.86.72-17.32.95-25.81 0-.25.14-.38.39-.38l23.02.29c.33 0 .59.28.59.61l.31 146.94-24.03.07c-.2 0-.37-.17-.37-.37-.06-6.02-.06-12.1-.01-18.24.12-13.51-4.57-24.77-14.08-33.79-.16-.15-.35-.27-.56-.34-.11-.03-.21-.07-.3-.12.03-.07.06-.15.09-.24.06-.15.03-.28-.1-.39-8.55-6.95-18.46-10.43-29.73-10.44-13.1-.02-26.45-.08-40.05-.19a.76.76 0 0 0-.76.76l-.09 19.72c0 .21.08.39.25.54.08.07.15.14.2.23-.09.05-.18.13-.26.26-.05.1-.08.22-.09.37-.32 8.05-.34 16.1-.05 24.15v102.13c0 .52.26.78.79.78 40.99-.03 82.79 0 125.39.06 8.01.01 14.22-.47 18.63-1.46 27.87-6.23 46.29-30.18 46.39-58.73.05-13.66.11-26.94.19-39.85 0-.4.2-.6.6-.6l25.8.13c.16 0 .28.13.28.28l.02 126.87-42.89.29c.02-.19-.08-.29-.29-.29-46.43-.04-91.63-.06-135.61-.06-7.54 0-15.81.29-23.55.01-5.09-.19-10.15.01-15.34.11-.19 0-.34.1-.45.3-.29-.22-.55-.33-.8-.33-22.23-.13-50.99-.41-82.07.22-2.57-.05-4.96-.52-7.58-.47-14.35.25-28.36.28-42.03.07-.39 0-.58-.2-.58-.59l-.02-25.46c0-.31.25-.56.56-.56l48.69-.06c.64 0 1.15-.51 1.15-1.14l-.28-253.1-.12-26.71c.26-.53.39-.92.4-1.15.15-5.75.13-11.31-.08-16.68-.03-.67-.37-1-1.04-1l-48.76-.02a.56.56 0 0 1-.56-.56l.04-25.57c0-.41.21-.61.61-.61h350.14c.24 0 .43.19.43.43l.01 121.08Zm203.99-75.59c6.52 8.53 13.05 16.78 19.6 24.77.43.52.91.88 1.46 1.09l-.23.14c-.13.09-.15.19-.06.31l43.61 54.26c.26.32.52.32.79.01l45.86-54.59 21.32-25.96c4.81-3.2 3.37-11.57.63-15.14-2.34-3.07-5.94-4.61-10.81-4.63-10.3-.05-20.03-.04-29.2.01-.52 0-.94-.42-.94-.94l-.01-24.56c0-.22.11-.33.33-.33h141.53c.49 0 .74.25.74.74l-.06 24.67c0 .27-.22.49-.49.49h-.01c-7.13-.22-14.99-.21-23.6.04-10.48.29-20.41 3.08-28.6 10.17-3.3 2.85-6.44 6.01-9.43 9.48-4.78 5.27-9.52 10.71-14.23 16.32-24.69 29.48-49.35 58.9-74 88.26-.15.18-.16.44-.01.62l17.98 22.32c.09.11.22.19.36.23.11.03.23.08.38.16-.19.19-.2.39-.04.59l98.61 122.61c2.73 3.4 6.56 7.72 11.49 12.97 10.33 11 19.51 16.75 34.97 17.38 6.64.27 13.52.33 20.65.19.6-.01.9.28.9.88v24.39a.44.44 0 0 1-.43.43l-57.75.34h-91.45l-42.07-.33a.47.47 0 0 1-.47-.47v-24.58c-.01-.35.16-.52.51-.53l21.16-.18c5.74.28 9.94.26 12.61-.06 9.67-1.16 14.25-12.08 8.1-19.75-27.49-34.29-53.8-67.09-78.94-98.4a.273.273 0 0 0-.39-.04c-.01 0-.02.02-.03.03-26.99 32.25-54.34 64.92-82.05 98.01-7.45 8.89-1.15 20.36 10.06 20.33 3.97 0 7.73-.05 11.29-.14l24.63.15c.33 0 .49.17.49.5v24.54c.01.31-.25.57-.56.57l-46.34.04h-40.52c-.27-.01-.52.04-.76.13-.15.06-.32.09-.49.1a.743.743 0 0 0-.2-.23c-.03-.01-.05-.02-.08-.02h-62.16c-.73.01-1.32-.59-1.32-1.32l.05-23.83c0-.36.18-.54.53-.54 7.69.02 15.23-.01 22.62-.09 14.44-.15 25.91-3.98 36.18-14.9 6.65-7.06 12.39-13.46 17.23-19.2 24.37-28.9 48.53-57.71 72.5-86.43.07-.09.11-.19.12-.3.03-.55.11-.6.22-.16l18.38-21.85c.21-.24.21-.6.01-.86-34.76-43.3-69.57-86.64-104.43-130.01-1.76-2.19-4.23-4.84-7.4-7.96-.16-.2-.29-.39-.38-.58-.13-.25-.24-.44-.35-.55-3.97-4.3-7.84-7.86-11.6-10.69-9.41-7.07-22.2-8.48-34-7.88a.57.57 0 0 1-.6-.54v-24.89c0-.24.2-.43.44-.43h176.99c.48 0 .87.39.87.87s-.08 24.45-.08 24.45c0 .26-.21.47-.48.47h-28.89c-5.26.01-9.06 1.88-11.39 5.59-2.07 3.29-2.46 6.78-1.16 10.47.59 1.66 1.35 2.91 2.29 3.76ZM133.13 978.06l-.1 15.62.1-15.62Z\" style=\"fill:#fff;stroke-width:0\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bo5njt\",\"data-framer-name\":\"14\",layoutDependency:layoutDependency,layoutId:\"O04qttn47\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zorn91\",\"data-framer-name\":\"$1280px_Logo_Chocolat_Cailler_blanc_\",fill:\"black\",intrinsicHeight:599,intrinsicWidth:1280,layoutDependency:layoutDependency,layoutId:\"zNhEhYOqA\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1280 598.7\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><path class=\"cls-1\" d=\"M433.12 0h13.39c5.69.31 11.35.8 16.98 1.47 29.75 3.57 57.28 16.7 72.79 42.94 4.74 8.02 7.53 16.31 8.36 24.88 1.38 14.14-.95 28.69-6.13 41.62-17.43 43.49-60.21 69.89-105.73 76.08-9.92 1.35-20.42 1.3-31.51-.14-29.23-3.8-62.62-20.88-62.64-55.06-.02-18.26 11.98-34.49 27.74-42.51 11.67-5.94 23.8-7.17 36.4-3.7.12.03.2.16.16.28-.01.04-.03.08-.06.11-9.03 8.91-14.72 26.14-13.57 38.55 2 21.62 17.74 39.38 39.72 41.91 6.35.73 13.1.1 20.27-1.88 26.6-7.34 45.07-26.35 50.48-53.63 2.67-13.46 1.3-26.47-4.13-39.03-5.26-12.18-16.53-22.76-27.85-29.94C429 17.36 379.82 20.1 337.34 35.82c-28.67 10.61-55.06 26.09-79.6 44.51-28.74 21.58-55.89 46.79-81.45 75.62-26.79 30.23-49.16 61.45-67.1 93.66-16.37 29.4-29.62 61.68-35 94.71-3.85 23.63-2.69 45.94 3.5 66.95 14.85 50.48 56.71 74.17 108.53 73.33 30.03-.49 55.06-11.79 78.97-29.15 2.67-1.93 5.39-2.47 7.58.34 2.03 2.61 1.01 5.12-.94 7.26-21.62 23.67-45.67 41.98-72.14 54.94-38.1 18.65-82.78 27.53-123.96 15.31C25.78 518.48 3.4 467.89.6 419.49a439.2 439.2 0 0 0-.6-8.81v-13.53c2.83-59.5 24.95-116.45 59.86-164.3 9.33-12.78 18.42-23.47 29.69-36.49 51.94-60 111.13-112.24 180.66-147.44 18.94-9.58 39.13-18.4 60.57-26.47C363.82 10.01 397.77 1.79 433.12 0Z\"/><path class=\"cls-1\" d=\"M1280 254.19v1.79c-11.44 15.95-23.24 30.86-38.2 43.73-9.26 7.96-21.52 14.31-33.7 15.27-13.8 1.09-27.3.71-41.05-.34-6.45-.49-11.52-.28-15.2.64-10.47 2.61-17.55 11.63-22.94 20.85A8509.084 8509.084 0 0 0 1069 440.22c-.17.29-.42.44-.76.44h-51a.31.31 0 0 1-.31-.33c0-.05.02-.11.04-.15 14.16-23.89 28.02-47.89 41.58-71.99.51-.9.38-1-.39-.31-26.89 24.31-57.95 45.93-90.27 61.15-23.91 11.25-50.42 19.26-76.39 18.04-24.07-1.12-37.16-18.26-41.52-40.36-2.03-10.32-2.05-19.89-.06-28.71.11-.48-.02-.55-.38-.21-20.38 19.51-42.96 36.19-67.75 50.04-10.51 5.87-20.97 10.33-31.36 13.4-18 5.3-39.85 4.57-44.03-18.48-2.55-14.04 1.26-30.68 6.67-43.76.37-.91.22-1.01-.47-.32-19.96 20.15-41.94 37.18-65.95 51.09-15.47 8.97-33.58 16.27-51.43 16.38-12.3.07-20.39-5.38-22.94-17.69-.9-4.36-1.21-8.77-.94-13.23.85-13.67 4.22-27.08 10.11-40.23.2-.45.13-.49-.2-.14-13.93 14.53-30.2 28.16-48.8 40.89-16.99 11.62-35.04 21.96-54.37 27.68-8.05 2.38-15.62 3.27-22.71 2.66-12.66-1.08-17.27-12.52-17.76-23.76-.59-13.53 1.63-26.85 6.66-39.96.21-.56.11-.63-.31-.2-13.71 13.77-30.59 26.02-49.31 37.97-12.87 8.22-25.61 14.79-38.21 19.7-9.44 3.69-22.26 7.01-31.88 4.25-15.45-4.43-18.17-22.96-16.68-37.32.07-.59-.11-.67-.52-.24-9.05 9.5-19.48 17.89-31.28 25.17-16.16 9.98-35.14 17.02-53.76 13.26-27.21-5.51-26.22-35.1-20.92-55.56 6.61-25.53 18.92-46.26 36.27-66.21 17.5-20.12 38.75-37.76 62.64-49.35 16.37-7.94 37.39-13.69 54.72-9.65 7.89 1.85 13.58 6.36 18.96 12.62.31.36.56.33.76-.1l5.7-11.96c.17-.34.44-.51.81-.51l46.23-.17a.267.267 0 0 1 .24.39c-20.03 37.33-39.13 73.49-57.29 108.46-2.43 4.67-4.37 8.96-5.83 12.87-2.11 5.64-9.27 28.15 2.25 28.9 2.01.13 3.93-.03 5.74-.46 7.17-1.71 14.6-4.8 22.28-9.26 23.27-13.52 43.17-31.1 59.7-52.75 5.25-6.87 9.87-14.55 14.05-22.25 12.11-22.3 23.67-44.02 34.68-65.15.17-.33.5-.53.87-.53h48.37c.23 0 .42.19.42.42 0 .06-.02.13-.05.19-17.89 34.45-36.39 68.66-53.19 103.63-4.43 9.22-7.77 18.58-10.01 28.09-1.16 4.9-3.41 16.08 4.02 16.86 9.4.99 19.05-2.46 27.31-6.95 10.35-5.64 20.07-12.5 29.17-20.57 24.62-21.84 45.52-47.42 62.69-76.73 14.89-25.41 33.36-57.31 55.42-95.72 43.56-75.85 116.76-132 200.69-155.18 14.78-4.08 28.45-6.51 41.01-7.29 13.49-.84 27.41.19 41.76 3.08 18.12 3.66 36.47 11.46 48.02 25.87 13.08 16.33 13.65 40.12 5.9 58.37-3.63 8.53-9.16 16.93-16.59 25.19-17.76 19.75-41.52 35.4-66.11 46.4-12.51 5.6-23.95 9.15-34.3 10.65-3.17.45-6.4.53-9.7.22-.76-.07-.8-.29-.13-.64 39.29-20.55 84.66-48.36 86.33-97.85.19-5.75-1.06-11.46-3.77-17.11-11.13-23.24-36.55-34.35-60.96-36.15-36.55-2.7-70.84 10.38-99.21 33.53-35.84 29.25-60.68 69.35-81.69 110.5-3.2 6.27-6.43 12.29-9.69 18.06-26 46.04-52.33 91.99-75.5 139.47-2.76 5.65-4.67 10.35-5.72 14.1-1.96 6.9-2.53 15.92-.25 23.07.98 3.08 3.23 4.47 6.76 4.18 3.74-.31 7.21-1.05 10.41-2.22 9.57-3.49 19.56-8.64 29.97-15.46 25.41-16.64 48.46-38.35 65.25-63.65 2.83-4.26 6.17-9.9 10.02-16.93 30.6-55.85 61.59-111.49 92.97-166.93.17-.29.42-.44.75-.44h47.48c.15 0 .27.12.27.27 0 .05-.01.09-.03.13-37.95 70.1-76.73 141.4-116.34 213.89-2.91 5.33-5.06 9.9-6.44 13.69-1.86 5.13-11.12 34.72-1.31 35.91 10.09 1.22 22.87-4.45 31.99-9.58 25.71-14.46 48.45-35.64 66.78-58.77 14.27-18.01 31.52-33.41 51-47.51 14.06-10.17 28.4-18.26 43.03-24.27 11.81-4.85 23.29-7.6 34.44-8.23 16.63-.93 36.84 3.73 37.29 24.44.6 27.77-23.39 48.89-45.29 62.45-27.19 16.84-56.37 28.02-87.53 33.54-.41.07-.64.31-.71.72-.85 5.16-.56 9.93.85 14.32 5.31 16.56 19.43 20.2 35.41 18.93 58.81-4.67 112.03-43.13 145.06-89.81 5.88-8.31 11.7-17.48 17.47-27.51a1569.98 1569.98 0 0 0 19.11-34.25c.15-.28.39-.42.71-.42h46.26c.18 0 .32.15.31.33 0 .05-.02.11-.04.15-6.54 11.18-12.93 22.28-19.17 33.31a82.44 82.44 0 0 0-3.05 5.94c-.9 1.93-.66 2.08.73.47 9.73-11.32 20.84-20.57 33.35-27.76 6.82-3.93 16.74-8.08 24.77-6.97 1.77.24 3.66.67 5.67 1.3 7.71 2.39 14.92 3.33 21.65 2.82 18.49-1.43 35.74-7.99 51.73-19.68Zm-351.29 60.53c-12.11 16.85-21.25 34.3-26.77 54.09-.04.14.04.28.18.32.03 0 .06.01.09 0 29.29-2.51 57.98-24.75 76-46.94 7-8.62 13.37-18.73 16.17-29.41 1.41-5.36 1.59-12.78-4.24-15.42-6.41-2.9-15.71.11-21.74 3.13-15.73 7.88-28.96 19.29-39.69 34.22Zm-610.48-28.58c-28.96 17.16-51.55 45.48-63.46 76.42-3.63 9.44-8.25 26.4-1.59 35.37 7.42 10 26.23 3.83 35.69-.57 9.07-4.21 17.42-9.99 25.06-17.34 18.61-17.9 30.46-38.82 40.04-62.73 3.68-9.18 5.88-21.73 2.66-31.3-2.07-6.17-6.32-9.09-12.77-8.78-8.57.42-17.78 4.28-25.63 8.93Z\"/><ellipse class=\"cls-1\" cx=\"575\" cy=\"180.85\" rx=\"33.52\" ry=\"25.55\" transform=\"rotate(-44.4 574.993 180.853)\"/><path class=\"cls-1\" d=\"M1190.9 424.98c0 9.49-7.7 17.19-17.19 17.19-9.49 0-17.19-7.7-17.19-17.19s7.7-17.19 17.19-17.19 17.19 7.7 17.19 17.19Zm-2.19-.01c0-8.29-6.72-15.01-15.01-15.01s-15.01 6.72-15.01 15.01 6.72 15.01 15.01 15.01 15.01-6.72 15.01-15.01Z\"/><path class=\"cls-1\" d=\"m1175.04 426.45 5.46 7.51c.19.27.12.41-.21.42l-1.97.03c-.31 0-.56-.12-.73-.38l-4.87-7.03c-1.09-1.58-1.64-1.41-1.64.51v6.53c0 .2-.17.37-.37.37h-1.69c-.22-.02-.39-.19-.39-.4v-18.74c.01-.33.18-.5.51-.49 4.16.06 9.71-.46 10.09 5.3.19 2.86-1.13 4.74-3.96 5.65-.41.13-.48.37-.23.72Zm-3.98-9.1.02 6.42c0 .17.13.3.3.3h1.41c2.35-.02 4.24-1.46 4.24-3.24v-.58c0-1.78-1.91-3.22-4.25-3.21h-1.41a.31.31 0 0 0-.3.31ZM441.22 585.14c-7.39 3.33-14.52 6.53-21.41 9.6-9.11 4.07-18.71 6.1-27.62.64-4.57-2.81-12.67-8.57-24.31-17.28-12.01-8.99-22.96-16.18-32.85-21.57-9.7-5.28-20.11-9.61-30.52-14.07-4.15-1.78-10.02-6.58-2.83-10.14 4.79-2.37 10.13-4.4 16.02-6.09 11.65-3.34 22.92-6.1 33.81-8.29 37.16-7.47 75.16-12.29 114-14.48 29.67-1.67 58.35-3.26 86.97-3.7 50.37-.76 99.74.61 148.11 4.11 96.47 6.96 185.41 12.33 276.39 11.81 37.68-.21 76.54-1.7 113.87-6.98 20.47-2.9 40.92-8.47 60.07-15.88 5.68-2.19 13.28-5.38 17.76-9.57 1.13-1.05 1.36-.88.69.51-5.4 11.37-16.51 20.3-27.44 26.47-20.97 11.83-44.26 17.48-68.74 20.59-15.16 1.93-29.97 3.33-44.43 4.2-51.31 3.1-103.32 3.86-154.5 4.43-6.35.07-12.85.11-19.5.1-39.19-.03-80.91-.13-125.18-.3-43.63-.18-85.69.77-128.09 4.66-23.06 2.11-46.15 5.48-68.52 11.05-21.31 5.31-42.11 11.53-62.41 18.66-11.26 3.95-21.04 7.79-29.34 11.52Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tm4n0t\",\"data-framer-name\":\"13\",layoutDependency:layoutDependency,layoutId:\"ysBV1aKHs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5dnole\",\"data-framer-name\":\"chopard_logo_blanc_\",fill:\"black\",intrinsicHeight:295,intrinsicWidth:951,layoutDependency:layoutDependency,layoutId:\"hzMRkcYIE\",style:{opacity:.7},svg:'<svg data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 950.77 295.03\"><path d=\"M310.91 210.77c-3.11 2.36-6.11 4.89-9.44 7-14.21 9.04-26.75 15.77-37.62 20.18-3.66 1.48-9.69 1.71-13.04-.77-7.07-5.25-4.57-13.64-.22-19.57 13.82-18.85 27.17-37.18 40.06-54.98a9.58 9.58 0 0 0 1.8-4.56c.14-1.14-.58-2.2-1.68-2.49-1.39-.37-2.8-.37-4.21 0-8.09 2.08-15.63 6.7-22.89 11.08-3.73 2.25-7.48 4.83-11.25 7.74-5.67 4.37-11.18 8.57-16.51 12.6-2.71 2.04-5.52 4.84-7.61 7.54a8787.15 8787.15 0 0 0-31.66 41.25c-.39.51-1 .81-1.64.81h-22.5c-.28.01-.5-.21-.51-.48 0-.12.04-.23.12-.33l41.94-50.35c.81-.99.65-1.2-.5-.64-7.55 3.64-15.38 7-23.49 10.08-1.53.58-2.88 1.76-3.99 2.92-14.12 14.65-31 27.04-49.37 35.35-13.97 6.31-28.95 8.14-44.92 5.5-7.07-1.17-13.56-4.38-19.48-9.64-8.61-7.65-12.56-20.05-12.09-31.54.19-4.79 1.45-11.4 3.78-19.82 2.27-8.27 5.15-16.32 8.62-24.16 3.25-7.34 7-13.65 11.24-18.92.53-.67.38-.91-.45-.74-5.76 1.2-12.11 1.34-19.06.41-7.56-1.01-13.84-2.21-18.83-3.59-18.8-5.21-36.35-17.63-42.99-36.42C-1.52 82.8-.7 71.31 4.99 59.76c5.73-11.63 13.5-21.03 23.33-28.21 9.66-7.05 21.39-12.99 35.18-17.8C96.88 2.11 131.91-2.14 168.58 1c3.27.29 6.42.74 9.44 1.36.88.18 1.52.67 1.92 1.48.08.17.14.28.17.35.16.33.03.72-.3.88-.11.05-.22.07-.34.07-19.03-1.27-35.77-1.09-50.24.56-14.55 1.66-27.63 3.79-39.24 6.4-7.29 1.64-14.95 3.89-23 6.74-9.83 3.48-19.63 8.67-28.15 14.2-5.37 3.48-10.03 7.41-13.99 11.8-7.84 8.67-12.38 19-13.61 31-.69 6.79.53 13.68 3.66 20.69 5 11.2 17.82 21.29 29.28 25.51 9.89 3.63 22.25 4.38 33.29 4.68 2.84.08 5.83-.09 8.98-.5 2.47-.33 3.92-3.36 5.21-5.23.83-1.21 1.75-2.4 2.75-3.55 11.02-12.72 21.9-24.7 34.63-35.46 9.56-8.09 19.81-15.2 29.75-22.62 5.15-3.84 10.37-7.45 15.67-10.84 12.07-7.73 21.71-13.3 28.9-16.72 12.74-6.07 22.4-10.21 28.99-12.43 13.97-4.7 28.33-9.32 43.29-9.35 8.61-.02 14.62 3.32 18.04 10.02 3.85 7.56-3.53 19.95-7.99 25.97-8.41 11.37-18.29 21.55-30.47 30.66-10.65 7.96-20.3 14.5-28.95 19.63-7.39 4.38-16.53 8.7-27.4 12.96-23.9 9.36-49.18 17.37-74.94 21.66-3.23.54-6.54.96-9.91 1.26-1.49.13-2.61.77-3.52 1.95-5.13 6.66-9.01 12.36-11.65 17.1-8.39 15.07-17.02 30.34-22.25 46.63-2.23 6.96-3.04 13.59-2.43 19.88.76 7.79 8.67 11.75 15.66 12.48 5.13.54 10.12.32 15.17-.91 8.45-2.07 17.44-5.05 26.97-8.94 18.3-7.48 35.03-18.8 46.53-34.73 7.04-9.75 12.98-22.65 13.34-34.97.13-4.25-.05-8.28-4.37-10.44-6.27-3.13-15.83-2.15-21.88-.17-11.19 3.65-21.43 9.05-30.54 16.43-11.75 9.51-22.4 21.19-32.32 33.14-.89 1.07-1.62.98-2.21-.28-.16-.33.02-1.01.54-2.04 4.6-9.03 10.16-17.49 17.26-24.99 14.81-15.65 34.41-27.2 55.93-31.2 8.82-1.64 16.32.26 22.5 5.69 13.03 11.46 5.46 33.6-1.03 46.26-.2.39-.08.54.35.46 1.51-.28 2.99-.73 4.46-1.34 9.49-3.94 18.92-8.95 28.27-15.03 1.67-1.09 3.19-2.45 4.55-4.08 17.12-20.53 33.9-40.6 50.33-60.21 11.54-13.78 24.23-27.06 37.03-39.29 5.49-5.26 11.35-10.27 17.57-15.02 6.32-4.83 13.19-9.26 20.52-11.36 4.71-1.35 9.82 1.51 10.7 6.26.45 2.41.05 5.45-1.19 9.13-3.16 9.33-7.82 18.36-13.99 27.1-10.14 14.37-21.92 27.37-35.91 38.3-12.49 9.75-24.2 16.77-37.99 24.35-5.08 2.8-10.25 5.28-15.45 7.96-2.46 1.27-4.53 2.85-6.2 4.74-1.75 1.97-3.44 4.01-5.07 6.11-1.86 2.41-1.6 2.67.79.78 7.77-6.15 17.31-10.79 28.62-13.93 7.75-2.15 18.81-2.15 24.17 4.51 4.27 5.29 2.03 13.2-1.7 18.3-13.29 18.19-26.11 36.13-38.44 53.84-1.13 1.63-1.59 3.2-1.38 4.72.06.41.3.64.71.7 1.91.27 3.84-.22 5.79-1.46 10.21-6.53 17.74-11.6 22.59-15.21 4.68-3.48 9.66-7.54 14.95-12.18 3.25-2.85 6.52-6.25 9.83-10.22 3.67-4.4 8.06-9.08 13.19-14.04 9.1-8.8 17.83-16.64 28.81-22.37 10.04-5.24 22.59-9.45 33.53-6.96 7.7 1.76 11.74 6.41 14.1 13.56.86 2.59 1.07 5.23.62 7.94-1.39 8.53-3.95 15.77-7.67 21.7-.51.81-.35.98.48.49 12.28-7.2 24.84-14.78 37.67-22.74 1.65-1.02 4.45-3.1 8.4-6.24 2.75-2.19 5.37-4.43 7.84-6.72 8.18-7.58 16.78-14.99 23.75-23.54 7.35-9.02 14.75-18.26 22.21-27.72.44-.56 1.12-.89 1.84-.88l17.31.27c.39 0 .69.33.69.71 0 .15-.05.29-.15.41L472 168.73c-1.35 1.73-1.15 1.94.62.64 5.74-4.22 11.57-8.8 17.91-12.3 4.44-2.45 9.31-4.64 14.61-6.58 6.85-2.51 12.42-.99 16.71 4.55 2.21 2.85 2.34 6.6.29 9.57a11680.57 11680.57 0 0 1-39.16 56.4c-.95 1.37-1.34 2.89-1.17 4.58.13 1.23.81 1.85 2.04 1.88 2.47.07 5.01-.51 7.64-1.73 12.15-5.63 23.25-12.45 33.3-20.46 1.93-1.53 3.74-3.48 5.45-5.83 12.76-17.57 28.47-32.67 46.99-43.55 5.29-3.11 10.69-5.55 16.19-7.31 6.13-1.95 11.87-2.45 17.24-1.5 6.33 1.13 12.01 4.74 17.06 10.85 1.73 2.1 2.37 4.95 1.83 7.61-.3 1.53-.01 1.65.86.36l10.14-15c.18-.27.43-.4.75-.4l15.88.04c.25 0 .45.2.45.45 0 .1-.03.19-.09.26-18.21 24.58-35.48 47.89-51.81 69.92-1.45 1.96-1.82 4.04-1.1 6.23.11.32.38.56.71.63 3.23.69 6.28.27 9.15-1.25 12.35-6.56 22.62-15.87 32.77-25.65 13.69-13.18 25.97-27.69 35.46-44.5 1.04-1.86 2.44-3.7 3.67-5.49.33-.48.2-.69-.38-.63-1.06.11-2.05-.07-2.98-.53-.48-.23-.85-.64-1.04-1.13-3.65-9.41 3.23-18.02 10.91-23.12 5.94-3.94 11.05 2.1 10.88 7.89-.13 4.47-1.57 8.62-4.32 12.44-.39.54-.25.78.42.73 4.65-.38 9.29-.76 13.91-.2 5.6.67 10.78 5.59 9.22 11.45-.45 1.66-1.49 3.69-3.14 6.09a3342.08 3342.08 0 0 0-38.91 58.16c-.82 1.26-1.08 2.7-.79 4.33.11.61.65 1.06 1.27 1.05 4.84-.03 9.5-1.15 13.98-3.35 19.29-9.47 36.52-22.63 48.92-39.53 4.25-5.81 9.45-11.58 15.6-17.33 10.19-9.54 24.35-16.83 37.16-20.96 6.53-2.11 12.67-2.08 18.41.09 9.31 3.52 12.78 9.75 12.36 19.48-.02.46.11.51.38.14 5.21-6.96 10.48-14.4 15.63-21.12 10.86-14.13 21.72-28.26 32.59-42.38 18.19-23.63 36.36-47.23 54.51-70.8.35-.45.88-.71 1.45-.71l17.99-.04c.19 0 .35.16.35.35 0 .07-.02.15-.07.2-46.48 60.82-93.27 120.85-140.53 183.66-2.15 2.85-3.94 7.96-1.62 11.09.2.28.47.45.81.51 2.85.55 5.5.19 7.93-1.08 5.45-2.85 11.02-6.03 15.9-9.95 13.61-10.92 25.67-23.2 36.2-36.84.6-.79 1.37-1.31 2.32-1.57a.51.51 0 0 1 .59.73c-3.09 5.86-6.8 11.48-11.12 16.85-12.92 16.04-26.8 30.52-45.15 38.6-3.08 1.35-6.75 2.44-11 3.26-4.76.92-9.05-.19-12.88-3.34-4.09-3.35-3.98-10.95-1.68-15.22.39-.71.26-.82-.39-.34-8.59 6.41-18.02 12.69-28.53 16.22-5.59 1.88-11.83 3.68-17.62 2.28-7.44-1.78-12.54-6.74-13.57-14.46-.53-4.01-.34-8.27 1.24-12.14.42-1.04.19-1.21-.68-.51-11.13 8.9-23.37 16.07-36.72 21.52-6.75 2.76-13.61 3.79-20.59 3.08-5.7-.57-9-3.41-9.89-8.5-1.38-7.86 2.59-12.39 6.68-18.09 12.1-16.89 23.92-33.46 35.45-49.71.89-1.26 1.34-2.8 1.35-4.62 0-.44-.17-.8-.52-1.08-2.27-1.85-4.91-2.25-7.92-1.2-.37.13-.65.36-.84.71-7.31 13.08-15.57 25.63-25.97 36.36-7.85 8.09-16.94 16.36-27.27 24.82-8.21 6.72-16.87 12.62-25.99 17.7-4.7 2.62-9.69 4.31-14.97 5.06-9.67 1.39-19.86-5.34-14.52-16.21.39-.78.21-.94-.53-.49-1.54.93-2.95 2.09-4.53 2.93-10.05 5.32-20.01 9.51-29.86 12.57-3.95 1.22-8.01 1.71-12.19 1.48-10.63-.6-19.66-9.03-17.24-20.27.19-.84-.08-1.02-.79-.54-3.61 2.43-7.04 5.08-10.71 7.38-7.81 4.9-17.61 9.3-29.41 13.2-7.55 2.49-13.55 1.32-18.17-5.19-4.22-5.96.86-16.15 4.51-21.22 10.99-15.27 21.83-30.4 32.52-45.37.35-.49.61-1.03.78-1.62.44-1.56-.13-2.16-1.71-1.79-2.6.59-5.26 1.89-7.99 3.88-7.38 5.39-15.46 10.37-22.29 16.12a1353.8 1353.8 0 0 1-16.74 13.86c-6.27 5.09-11.73 10.15-16.89 16.62-21.68 27.23-43.75 54.92-66.2 83.07-.55.69-1.39 1.1-2.27 1.1l-17.53-.02c-.29 0-.53-.24-.53-.53 0-.12.04-.23.12-.33 32.44-40.58 64.56-80.94 96.37-121.07.11-.15.15-.31.1-.49a.158.158 0 0 0-.19-.12c-.02 0-.04.01-.06.03-12.52 8.71-26.25 16.71-41.2 24.01a63.607 63.607 0 0 1-8.77 3.5c-1.22.39-2.29 1.07-3.22 2.04-8.54 8.99-18.22 16.87-29.11 23.24-10.17 5.94-20.95 10.75-32.62 11.79-6.94.62-16.68-2.36-20.01-9.34-2.86-5.99-3.37-11.54-1.52-16.67.2-.56.06-.66-.41-.3Zm-101.3-117c26.18-14.49 51.39-35.82 67.76-61.4 2.07-3.23 8.31-12.77-.44-12.96-3.34-.07-6.5.4-9.48 1.42-13.68 4.67-26.38 10.19-38.09 16.54-15.45 8.39-25.51 14.1-30.19 17.15-7.1 4.61-14.64 9.78-22.63 15.49A308.462 308.462 0 0 0 121.07 121c-.07.08-.06.2.03.27.03.02.07.04.1.04 3.64.3 7.18.08 10.62-.67 19.85-4.28 39.65-10.32 59.4-18.11 5.99-2.37 12.12-5.29 18.39-8.76Zm79.24 22.13c-4.5 5.89-8.32 11.15-11.46 15.8-.81 1.21-.55 1.53.79.96 3.99-1.68 7.72-3.84 11.21-6.47 10.67-8.03 21.77-16.6 31.57-26.43 9.07-9.11 17.26-18.35 24.55-27.72 4.44-5.71 8.24-11.72 12.13-17.6 1.75-2.63 3.09-5.55 4.04-8.75a1.49 1.49 0 0 0-1.01-1.85c-.08-.02-.15-.04-.23-.05-.42-.06-.85.02-1.29.23-6.1 2.9-11.03 7.36-16.04 11.5a92.889 92.889 0 0 0-8.11 7.57c-7.08 7.43-14.24 14.85-21.49 22.27-9.2 9.41-16.7 20.13-24.66 30.54Zm498.32 49.93c-7.16 5.97-14.02 12.66-20.3 19.67-7.21 8.06-13.28 17.33-18.21 27.8-2.49 5.3-3.83 15.09 4.37 16.16 6.65.87 12.18-2.2 17.52-5.67 10.31-6.69 18.1-12.67 23.37-17.92 8.34-8.33 14.93-16.49 19.77-24.46 3.57-5.89 5.57-12.94 6.01-21.16.49-9.38-10.62-7.38-15.75-5.06-5.85 2.63-11.44 6.18-16.78 10.64Zm-202.65 2.18c-6.66 5.41-12.25 10.25-16.76 14.5-4.38 4.13-8.31 8.78-11.97 13.42-3.09 3.89-22.86 31.77-8.34 32.87 6.92.52 13.68-2.92 19.99-6.16 11.66-5.99 22.96-13.27 32.18-22.78 6.91-7.13 13.68-14.15 18.42-22.9 2.75-5.07 7.33-20.37-2.89-21.52-12.39-1.39-21.37 5.04-30.63 12.57ZM379.4 197.35c-1.86-1.14-2.37-3.91-2.03-5.84 1.73-9.89 9.38-15.26 19.66-16.51 1.88-.23 2.82-1.44 3.51-3.06 1.78-4.12 4.5-13.45-1.48-14.81-14.68-3.34-28.82 8.31-39.22 17.09-3.86 3.26-7.53 6.83-11.02 10.71-5.77 6.43-10.97 12.79-15.6 19.09-3.62 4.92-6.33 9.28-8.13 13.07-1.35 2.85-1.49 6.13-.43 9.82 1.05 3.64 4.54 4.19 7.8 3.85 9.96-1.06 18.41-5.29 26.31-11.6 6.57-5.26 13.12-11.1 19.64-17.52.84-.83 1.59-1.67 2.26-2.53.24-.32.21-.61-.08-.88-.37-.33-.76-.62-1.19-.88Z\" style=\"fill:#fff;stroke-width:0\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uhra6a\",\"data-framer-name\":\"12\",layoutDependency:layoutDependency,layoutId:\"V0UzYO1ko\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fx8qea\",\"data-framer-name\":\"Logitech_logo_blanc\",fill:\"black\",intrinsicHeight:310,intrinsicWidth:1023,layoutDependency:layoutDependency,layoutId:\"u4WyU9pbx\",style:{opacity:.7},svg:'<svg id=\"Calque_1\" data-name=\"Calque 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1022.98 310.19\"><defs><style>.cls-1{fill:#fff;stroke-width:0}</style></defs><circle class=\"cls-1\" cx=\"426.79\" cy=\"24.99\" r=\"24.99\"/><path class=\"cls-1\" d=\"M915.06 82.49c11.61-12.73 27.63-18.92 44.88-19.04 28.09-.2 49.6 14.37 58.91 41 2.71 7.75 4.07 16.71 4.09 26.88.05 29.61.06 58.93 0 87.96 0 .15-.12.27-.27.27h-36.94c-.37 0-.55-.18-.55-.55-.01-24.76-.03-49.5-.04-74.23 0-13.09.21-21.31-5.71-30.74-6.31-10.05-17.87-14.16-29.61-13.61-22.07 1.04-35.25 15.46-35.27 37.29-.03 27.55-.03 54.7 0 81.47 0 .21-.17.38-.37.38h-37.03c-.22 0-.39-.18-.39-.4V4.49c0-.26.21-.47.46-.47h36.93c.25 0 .38.14.38.4v77.87c.01.51.18.58.52.2Z\"/><rect class=\"cls-1\" y=\"4.55\" width=\"37.78\" height=\"214.88\" rx=\".37\" ry=\".37\"/><path class=\"cls-1\" d=\"M520.69 67.99h19.96c.24.01.43.2.43.44l-.03 33.06c0 .24-.19.43-.43.43h-19.93c-.24 0-.43.19-.43.43v116.66c0 .24-.19.43-.43.43h-36.95c-.24 0-.43-.19-.43-.43V102.35c0-.24-.19-.43-.43-.43h-19.41c-.24 0-.43-.18-.43-.42V68.46c0-.24.19-.43.43-.43h19.4c.24-.01.43-.2.43-.44V21.94c.01-.24.2-.43.44-.43l36.95-.02c.24 0 .43.19.43.43v45.64c0 .24.19.43.43.43ZM54.94 163.56c-10.24-43.01 13.23-85.3 56.57-96.9 36.24-9.69 75.87 3.8 94.43 37.29 19.49 35.18 10.77 81.6-23.48 105.06-27.44 18.8-65.13 19.69-93.21 2.14-17-10.62-29.64-27.96-34.31-47.59Zm123.14-20.03c0-24.1-19.54-43.64-43.64-43.64S90.8 119.43 90.8 143.53s19.54 43.64 43.64 43.64 43.64-19.54 43.64-43.64Zm202.95-41.47a.31.31 0 0 0-.2.39c.01.04.03.07.05.1 9.02 11.77 12.27 27.46 11.93 42.02-.48 20.58-7.03 37.94-19.64 52.07-30.63 34.31-87.32 36.33-120.66 4.03-31.78-30.79-30.93-84.53 1.35-115 21.39-20.19 53.01-27.14 80.93-18.44 1.72.53 3.4.8 5.04.79 17.53-.03 34.43-.02 50.71.04.32 0 .48.16.48.48v29.62c0 .33-.15.54-.46.64l-9.53 3.26Zm-26.3 41.47c0-24.1-19.54-43.64-43.64-43.64s-43.64 19.54-43.64 43.64 19.54 43.64 43.64 43.64 43.64-19.54 43.64-43.64Zm231.8 15.3c-.47 0-.64.23-.5.68 5.44 17.45 16.87 27.55 34.28 30.31 18.39 2.92 36.9-7.14 49.51-19.68.27-.27.53-.27.79 0l24.48 24.48c.26.25.27.66.02.93-21.12 22.7-52.98 31.42-83.41 27.05-40.71-5.85-66.06-37.96-65.72-78.73.32-39.12 25.56-72.36 64.77-79.12 26.82-4.62 54.22 2.46 72.22 23.32 12.46 14.44 19.2 33.95 20.34 53.05.31 5.27.41 11.05.29 17.33 0 .21-.17.38-.37.38h-116.7Zm77.33-31.11c-4.16-23.53-26.4-34.55-48.47-30.05-15.51 3.16-26.68 14.63-30.48 30.06-.05.21.08.42.28.47.03 0 .06.01.09.01h78.17c.33 0 .47-.16.41-.49Zm57.81-13.64c22.69-57.95 102.41-67.7 140.99-20.79.14.17.12.41-.03.56l-25.93 25.63a.41.41 0 0 1-.58 0l-.02-.02c-10.92-12.54-26.07-20.66-42.76-19.11-16.53 1.53-30.56 11.89-36.26 27.55-8.43 23.12 2.65 49.8 27.15 57.3 19.32 5.92 38.93-2.1 51.69-17.12.31-.37.64-.39.98-.05l25.77 25.45c.14.13.15.34.03.49-13.75 17.21-35.4 27.59-56.76 29.48-16.91 1.5-32.72-1.57-47.42-9.21-36.65-19.05-51.52-62.69-36.85-100.16Z\"/><rect class=\"cls-1\" x=\"407.98\" y=\"68.02\" width=\"37.8\" height=\"151.42\" rx=\".39\" ry=\".39\"/><path class=\"cls-1\" d=\"M392.51 230.28c.41 53.25-47.3 87.47-97.77 78.48-38.89-6.92-65.88-38.82-65.78-78.52 0-.17.13-.3.29-.3h37.47c.24 0 .44.2.45.44.44 22.3 16.1 40.07 38.12 42.97 26.28 3.48 48.53-16.82 49.03-42.99 0-.23.19-.42.42-.42h37.43c.19 0 .34.15.34.34Z\"/></svg>',withExternalLayout:true})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3Vku3.framer-126h6gp, .framer-3Vku3 .framer-126h6gp { display: block; }\",\".framer-3Vku3.framer-16ol43d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 1440px; }\",\".framer-3Vku3 .framer-orv00m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-3Vku3 .framer-17h3p4 { flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3Vku3 .framer-1qg7vkz-container, .framer-3Vku3 .framer-1lz79mk-container { flex: none; height: 32px; position: relative; width: 100%; }\",\".framer-3Vku3 .framer-c6yczf, .framer-3Vku3 .framer-jegrw1, .framer-3Vku3 .framer-14yim0o, .framer-3Vku3 .framer-1u4b53b, .framer-3Vku3 .framer-1u3e7w2, .framer-3Vku3 .framer-1nvnlsq, .framer-3Vku3 .framer-1hny3r5, .framer-3Vku3 .framer-y2ao2e, .framer-3Vku3 .framer-1cstrh8, .framer-3Vku3 .framer-4lc5te, .framer-3Vku3 .framer-c3i4dy, .framer-3Vku3 .framer-173pypo, .framer-3Vku3 .framer-13t76k0, .framer-3Vku3 .framer-14a29jk, .framer-3Vku3 .framer-gyu503, .framer-3Vku3 .framer-131ll6h, .framer-3Vku3 .framer-1bo5njt, .framer-3Vku3 .framer-tm4n0t, .framer-3Vku3 .framer-1uhra6a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3Vku3 .framer-1jadq2y { aspect-ratio: 6.744186046511628 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 135px; }\",\".framer-3Vku3 .framer-vcmh5g { aspect-ratio: 2.857142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 57px; }\",\".framer-3Vku3 .framer-qz422z { aspect-ratio: 7.209677419354839 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 108px; }\",\".framer-3Vku3 .framer-ru1gi { aspect-ratio: 4.252427184466019 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 85px; }\",\".framer-3Vku3 .framer-1g113i { aspect-ratio: 8.418803418803419 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 168px; }\",\".framer-3Vku3 .framer-funynn { aspect-ratio: 4.541666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 91px; }\",\".framer-3Vku3 .framer-19vhn76 { aspect-ratio: 4.5120481927710845 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 90px; }\",\".framer-3Vku3 .framer-1c9bz1t, .framer-3Vku3 .framer-1bjf5in { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3Vku3 .framer-1c4r79 { aspect-ratio: 2.2247838616714697 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 67px; }\",\".framer-3Vku3 .framer-ytf1z7 { aspect-ratio: 4.425 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 89px; }\",\".framer-3Vku3 .framer-gcj15 { aspect-ratio: 5.2973856209150325 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 106px; }\",\".framer-3Vku3 .framer-ti7z11 { aspect-ratio: 5.666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 113px; }\",\".framer-3Vku3 .framer-19gn5fw { aspect-ratio: 1.6860294117647059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 40px; }\",\".framer-3Vku3 .framer-1dmijhd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-3Vku3 .framer-1mxtbex { aspect-ratio: 4.678260869565217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 70px; }\",\".framer-3Vku3 .framer-yfl49b { aspect-ratio: 3.433333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 52px; }\",\".framer-3Vku3 .framer-1c0a61 { aspect-ratio: 2.2849829351535837 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 55px; }\",\".framer-3Vku3 .framer-1x850xv { aspect-ratio: 5.370967741935484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); position: relative; width: 70px; }\",\".framer-3Vku3 .framer-6uo8uk { aspect-ratio: 7.742690058479532 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); position: relative; width: 101px; }\",\".framer-3Vku3 .framer-17pwz1z { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3Vku3 .framer-1vim1jr { aspect-ratio: 1.802415875754961 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 54px; }\",\".framer-3Vku3 .framer-zorn91 { aspect-ratio: 2.1368948247078463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 51px; }\",\".framer-3Vku3 .framer-5dnole { aspect-ratio: 3.223728813559322 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 90px; }\",\".framer-3Vku3 .framer-1fx8qea { aspect-ratio: 3.3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 79px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3Vku3.framer-16ol43d, .framer-3Vku3 .framer-orv00m, .framer-3Vku3 .framer-c6yczf, .framer-3Vku3 .framer-jegrw1, .framer-3Vku3 .framer-14yim0o, .framer-3Vku3 .framer-1u4b53b, .framer-3Vku3 .framer-1u3e7w2, .framer-3Vku3 .framer-1nvnlsq, .framer-3Vku3 .framer-1hny3r5, .framer-3Vku3 .framer-1c9bz1t, .framer-3Vku3 .framer-y2ao2e, .framer-3Vku3 .framer-1cstrh8, .framer-3Vku3 .framer-4lc5te, .framer-3Vku3 .framer-c3i4dy, .framer-3Vku3 .framer-173pypo, .framer-3Vku3 .framer-13t76k0, .framer-3Vku3 .framer-1bjf5in, .framer-3Vku3 .framer-14a29jk, .framer-3Vku3 .framer-gyu503, .framer-3Vku3 .framer-131ll6h, .framer-3Vku3 .framer-17pwz1z, .framer-3Vku3 .framer-1bo5njt, .framer-3Vku3 .framer-tm4n0t, .framer-3Vku3 .framer-1uhra6a { gap: 0px; } .framer-3Vku3.framer-16ol43d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3Vku3.framer-16ol43d > :first-child, .framer-3Vku3 .framer-orv00m > :first-child { margin-top: 0px; } .framer-3Vku3.framer-16ol43d > :last-child, .framer-3Vku3 .framer-orv00m > :last-child { margin-bottom: 0px; } .framer-3Vku3 .framer-orv00m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3Vku3 .framer-c6yczf > *, .framer-3Vku3 .framer-jegrw1 > *, .framer-3Vku3 .framer-14yim0o > *, .framer-3Vku3 .framer-1u4b53b > *, .framer-3Vku3 .framer-1u3e7w2 > *, .framer-3Vku3 .framer-1nvnlsq > *, .framer-3Vku3 .framer-1hny3r5 > *, .framer-3Vku3 .framer-1c9bz1t > *, .framer-3Vku3 .framer-y2ao2e > *, .framer-3Vku3 .framer-1cstrh8 > *, .framer-3Vku3 .framer-4lc5te > *, .framer-3Vku3 .framer-c3i4dy > *, .framer-3Vku3 .framer-173pypo > *, .framer-3Vku3 .framer-13t76k0 > *, .framer-3Vku3 .framer-1bjf5in > *, .framer-3Vku3 .framer-14a29jk > *, .framer-3Vku3 .framer-gyu503 > *, .framer-3Vku3 .framer-131ll6h > *, .framer-3Vku3 .framer-17pwz1z > *, .framer-3Vku3 .framer-1bo5njt > *, .framer-3Vku3 .framer-tm4n0t > *, .framer-3Vku3 .framer-1uhra6a > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3Vku3 .framer-c6yczf > :first-child, .framer-3Vku3 .framer-jegrw1 > :first-child, .framer-3Vku3 .framer-14yim0o > :first-child, .framer-3Vku3 .framer-1u4b53b > :first-child, .framer-3Vku3 .framer-1u3e7w2 > :first-child, .framer-3Vku3 .framer-1nvnlsq > :first-child, .framer-3Vku3 .framer-1hny3r5 > :first-child, .framer-3Vku3 .framer-1c9bz1t > :first-child, .framer-3Vku3 .framer-y2ao2e > :first-child, .framer-3Vku3 .framer-1cstrh8 > :first-child, .framer-3Vku3 .framer-4lc5te > :first-child, .framer-3Vku3 .framer-c3i4dy > :first-child, .framer-3Vku3 .framer-173pypo > :first-child, .framer-3Vku3 .framer-13t76k0 > :first-child, .framer-3Vku3 .framer-1bjf5in > :first-child, .framer-3Vku3 .framer-14a29jk > :first-child, .framer-3Vku3 .framer-gyu503 > :first-child, .framer-3Vku3 .framer-131ll6h > :first-child, .framer-3Vku3 .framer-17pwz1z > :first-child, .framer-3Vku3 .framer-1bo5njt > :first-child, .framer-3Vku3 .framer-tm4n0t > :first-child, .framer-3Vku3 .framer-1uhra6a > :first-child { margin-left: 0px; } .framer-3Vku3 .framer-c6yczf > :last-child, .framer-3Vku3 .framer-jegrw1 > :last-child, .framer-3Vku3 .framer-14yim0o > :last-child, .framer-3Vku3 .framer-1u4b53b > :last-child, .framer-3Vku3 .framer-1u3e7w2 > :last-child, .framer-3Vku3 .framer-1nvnlsq > :last-child, .framer-3Vku3 .framer-1hny3r5 > :last-child, .framer-3Vku3 .framer-1c9bz1t > :last-child, .framer-3Vku3 .framer-y2ao2e > :last-child, .framer-3Vku3 .framer-1cstrh8 > :last-child, .framer-3Vku3 .framer-4lc5te > :last-child, .framer-3Vku3 .framer-c3i4dy > :last-child, .framer-3Vku3 .framer-173pypo > :last-child, .framer-3Vku3 .framer-13t76k0 > :last-child, .framer-3Vku3 .framer-1bjf5in > :last-child, .framer-3Vku3 .framer-14a29jk > :last-child, .framer-3Vku3 .framer-gyu503 > :last-child, .framer-3Vku3 .framer-131ll6h > :last-child, .framer-3Vku3 .framer-17pwz1z > :last-child, .framer-3Vku3 .framer-1bo5njt > :last-child, .framer-3Vku3 .framer-tm4n0t > :last-child, .framer-3Vku3 .framer-1uhra6a > :last-child { margin-right: 0px; } }\",\".framer-3Vku3.framer-v-1anxg19.framer-16ol43d { padding: 64px 0px 128px 0px; width: 768px; }\",\".framer-3Vku3.framer-v-1v28xb3.framer-16ol43d { padding: 36px 0px 96px 0px; width: 375px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 352\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eASJ9Ub7P\":{\"layout\":[\"fixed\",\"auto\"]},\"G8l2QZnMP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framert6QzSLyTH=withCSS(Component,css,\"framer-3Vku3\");export default Framert6QzSLyTH;Framert6QzSLyTH.displayName=\"Sections/Logo cloud\";Framert6QzSLyTH.defaultProps={height:352,width:1440};addPropertyControls(Framert6QzSLyTH,{variant:{options:[\"iJLZ7w9uP\",\"eASJ9Ub7P\",\"G8l2QZnMP\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framert6QzSLyTH,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert6QzSLyTH\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eASJ9Ub7P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G8l2QZnMP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"352\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./t6QzSLyTH.map", "import{fontStore as t}from\"framer\";t.loadWebFontsFromSelectors([\"GF;Instrument Sans-500\",\"GF;Instrument Sans-700\",\"GF;Instrument Sans-700italic\",\"GF;Instrument Sans-500italic\"]);export const fonts=[{family:\"Instrument Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\",weight:\"700\"},{family:\"Instrument Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kywN2u7YUwU.woff2\",weight:\"500\"}];export const css=['.framer-LxHR9 .framer-styles-preset-xjvmls:not(.rich-text-wrapper), .framer-LxHR9 .framer-styles-preset-xjvmls.rich-text-wrapper h3 { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 44px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-6d3c0e6b-f09e-4f17-baa3-5c150131e0f7, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-LxHR9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as t}from\"framer\";t.loadWebFontsFromSelectors([\"GF;Instrument Sans-500\",\"GF;Instrument Sans-700\",\"GF;Instrument Sans-700italic\",\"GF;Instrument Sans-500italic\"]);export const fonts=[{family:\"Instrument Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\",weight:\"700\"},{family:\"Instrument Sans\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENut22kywN2u7YUwU.woff2\",weight:\"500\"}];export const css=['.framer-CD5td .framer-styles-preset-fxmy5i:not(.rich-text-wrapper), .framer-CD5td .framer-styles-preset-fxmy5i.rich-text-wrapper h6 { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-6d3c0e6b-f09e-4f17-baa3-5c150131e0f7, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-CD5td\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "gYAAigB,IAAMA,GAAWC,GAAGA,EAA6sB,IAAMC,GAAE,CAAC,GAAGC,GAAG,IAAIA,EAAE,EAAEA,GAAGA,EAAE,GAAG,EAM/vC,SAASC,GAAkBD,EAAED,EAAE,CAAC,OAAOA,EAAEC,GAAG,IAAID,GAAG,CAAC,CCNG,IAAMG,GAAW,CAACC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAGD,GAAG,EAAEE,EAAE,EAAED,IAAID,EAAE,EAAEC,GAAGD,EAAQE,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgBJ,EAAEC,EAAEI,EAAEC,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAER,GAAGI,EAAEJ,GAAG,EAAEO,EAAET,GAAWU,EAAEH,EAAEC,CAAC,EAAEP,EAAEQ,EAAE,EAAEH,EAAEI,EAAER,EAAEQ,QAAQ,KAAK,IAAID,CAAC,EAAEN,IAAG,EAAEQ,EAAEP,IAAG,OAAOM,CAAC,CAAC,SAASE,GAAYV,EAAEC,EAAEC,EAAEE,EAAE,CAAC,GAAGJ,IAAIC,GAAGC,IAAIE,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAEE,CAAC,EAAE,OAAOH,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAED,GAAWc,EAASb,CAAC,EAAEE,EAAEG,CAAC,CAAC,CCApQ,IAAMS,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECA2d,SAASC,GAAO,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQC,KAAK,EAAE,OAAO,UAAU,eAAe,KAAK,EAAEA,CAAC,GAAG,EAAE,QAAQA,CAAC,EAAE,IAAI,EAAEA,CAAC,EAAE,EAAEA,CAAC,GAAG,GAAS,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAIC,EAAE,EAAE,IAAID,EAAE,OAAO,sBAAsB,CAAC,EAAEC,EAAED,EAAE,OAAOC,IAAI,EAAE,QAAQD,EAAEC,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAK,EAAED,EAAEC,CAAC,CAAC,IAAI,EAAED,EAAEC,CAAC,CAAC,EAAE,EAAED,EAAEC,CAAC,CAAC,GAAG,OAAO,CAAC,CCArkC,IAAIC,EAAE,CAAC,EAAE,OAAO,eAAeA,EAAE,aAAa,CAAC,MAAM,EAAI,CAAC,EAAEA,EAAE,QAAQ,UAAU,CAAC,EAAEA,EAAE,UAAU,UAAU,CAAC,EAAE,IAAMC,GAAED,EAAE,WAAWE,GAAEF,EAAE,QAAQG,GAAEH,EAAE,UCAlF,IAAMI,GAAE,EAAE,SAASC,GAAsBC,EAAEC,EAAE,EAAE,CAAC,IAAM,EAAE,KAAK,IAAIA,EAAEH,GAAE,CAAC,EAAE,OAAOI,GAAE,EAAEF,EAAE,CAAC,EAAEC,EAAE,CAAC,CAAC,CAAC,IAAMA,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQE,GAAiB,CAAC,EAAEF,GAAE,UAAU,EAAEA,GAAE,QAAQH,EAAEG,GAAE,OAAO,GAAG,EAAE,KAAK,KAAK,EAAEH,CAAC,GAAG,SAASM,GAAiB,EAAE,EAAEN,EAAE,CAAC,OAAO,EAAE,GAAGA,GAAG,GAAG,EAAE,GAAGA,GAAG,CAAC,CAAC,IAAMO,GAAO,CAAC,CAAC,UAAU,EAAEJ,GAAE,UAAU,QAAQH,EAAEG,GAAE,QAAQ,KAAK,EAAEA,GAAE,KAAK,KAAK,EAAE,EAAE,GAAGK,EAAE,EAAE,SAASC,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEG,GAAE,EAAEH,CAAC,EAAE,EAAE,IAAM,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQ,EAAE,OAAOD,CAAC,EAAQK,EAAEL,EAAE,EAAQ,EAAE,KAAK,KAAK,EAAE,CAAC,EAAE,IAAUM,EAAET,GAAiB,EAAEL,EAAE,CAAC,EAAMe,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMF,EAAE,EAAE,KAAK,KAAK,EAAEE,EAAEA,CAAC,EAAEC,EAAEb,GAAGM,EAAE,KAAK,IAAI,CAACM,EAAE,EAAEZ,CAAC,IAAIY,EAAE,EAAED,EAAEJ,GAAGG,EAAE,KAAK,IAAIA,EAAEV,CAAC,EAAEW,EAAE,KAAK,IAAID,EAAEV,CAAC,QAAQa,EAAEH,GAAGJ,EAAE,KAAK,IAAI,CAAC,EAAEI,CAAC,GAAGC,GAAG,EAAEA,EAAEJ,GAAGG,GAAG,OAAOA,GAAG,CAAC,EAAE,QAAQG,EAAEH,CAAC,EAAE,IAAMV,EAAMU,IAAJ,EAAMH,EAAER,GAAsBc,EAAEH,EAAE,EAAE,OAAO,EAAQZ,EAAE,KAAK,IAAIE,CAAC,GAAGQ,EAAQ,EAAE,KAAK,IAAIF,EAAE,EAAE,OAAO,GAAGG,EAAE,SAAE,KAAKX,GAAG,EAAE,EAAE,iBAAiBM,GAAiB,EAAEE,EAAE,EAAE,OAAO,EAAS,CAAC,CAAC,EAAQQ,GAAM,CAAC,CAAC,KAAK,EAAE,EAAE,SAAShB,EAAE,EAAE,MAAMG,EAAE,GAAG,MAAMc,EAAE,KAAK,cAAcC,EAAE,gBAAgBV,EAAE,aAAaC,EAAE,IAAIC,EAAE,IAAIC,EAAE,aAAaQ,EAAE,GAAG,UAAUN,CAAC,IAAI,CAACI,EAAEL,GAAE,GAAGK,CAAC,EAAE,IAAMG,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQ,EAAE,OAAO,CAAC,EAAQC,EAAcT,GAAYF,IAAT,QAAYE,EAAEF,GAAYC,IAAT,QAAYC,EAAED,EAAQW,EAAgBV,GAAYF,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEE,CAAC,EAAE,KAAK,IAAID,EAAEC,CAAC,EAAEF,EAAEC,EAAMG,EAAEX,EAAEH,EAAQe,EAAE,EAAED,EAAQS,EAAWd,IAAT,OAAWM,EAAEN,EAAEM,CAAC,EAAEK,EAAE,OAAOG,EAAEA,IAAIR,IAAID,EAAES,EAAE,GAAG,IAAMC,EAAUZ,GAAG,CAACE,EAAE,KAAK,IAAI,CAACF,EAAEK,CAAC,EAAQQ,EAAWb,GAAGW,EAAEC,EAAUZ,CAAC,EAAQc,EAAcd,GAAG,CAAC,IAAMV,EAAEsB,EAAUZ,CAAC,EAAQZ,EAAEyB,EAAWb,CAAC,EAAEQ,EAAE,KAAK,KAAK,IAAIlB,CAAC,GAAGiB,EAAEC,EAAE,QAAQA,EAAE,KAAKG,EAAEvB,CAAC,EAAM2B,EAAMC,EAAQC,EAAmBjB,GAAG,CAAIS,EAAcD,EAAE,OAAO,IAAGO,EAAEf,EAAEgB,EAAErB,GAAO,CAAC,KAAKa,EAAE,QAAQ,GAAGE,EAAgBF,EAAE,OAAO,EAAE,SAASnB,GAAsBwB,EAAWb,EAAEQ,EAAE,OAAO,EAAE,QAAQF,EAAE,UAAUV,EAAE,aAAaW,EAAE,UAAUN,CAAC,CAAC,EAAE,EAAE,OAAAgB,EAAmB,CAAC,EAASjB,GAAG,CAAC,IAAIV,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAcd,CAAC,EAAEiB,EAAmBjB,CAAC,GAAce,IAAT,QAAYf,EAAEe,GAAGP,EAAE,iBAAiB,GAAYQ,EAAEhB,EAAEe,CAAC,IAAEP,EAAE,iBAAiB,GAAM,CAAClB,GAAGwB,EAAcd,CAAC,EAASQ,EAAC,CAAC,EAAQH,GAAE,GAASC,GAAE,IAAI,SAASY,GAAqB,EAAE,CAAC,IAAI,EAAM9B,EAAEiB,GAAMd,EAAE,EAAE,CAAC,EAAQK,EAAE,CAACL,EAAE,OAAO,EAAE,KAAM,CAACA,EAAE,MAAMH,EAAEkB,IAAGf,EAAE,EAAEH,CAAC,EAAEQ,EAAE,KAAKL,EAAE,KAAKA,EAAE,OAAOA,EAAE,OAAO,EAAW,IAAT,QAAYA,EAAE,mBAAmB,EAAEH,GAAGA,GAAGiB,GAAE,IAAMR,EAAET,EAAEiB,GAAE,OAAIT,EAAE,SAAN,GAAcA,EAAE,KAAKL,EAAE,OAAO,EAAQ,CAAC,UAAUK,EAAE,SAASC,EAAE,IAAI,mBAA0B,GAAgBA,GAAG,GAAG,CAAC,CCA1jD,IAAMsB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAc,GAAG,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAc,GAAG,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcE,EAAC,EAAE,KAAKF,EAAC,EAAQG,GAAE,IAAI,IAAUC,GAAkB,GAAG,YAAY,IAAUC,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAAS,GAAG,CAACC,GAAE,QAAS,GAAG,CAACF,GAAE,KAAK,EAAE,CAAC,EAAEF,GAAE,IAAIC,GAAkB,EAAE,CAAC,EAAEH,GAAE,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMO,GAAE,IAAI,IAAIC,EAAC,EAA2tB,IAAMC,GAAc,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQ,EAAE,CAAC,SAAS,IAAI,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACD,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAS,EAAQE,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAU,KAAKF,GAAEE,GAAE,CAAC,EAAE,KAAcD,GAAE,CAAC,IAAZ,SAAgBA,GAAE,CAAC,EAAED,GAAE,CAAC,EAAE,GAAUC,GAAE,CAAC,GAA2kF,SAASE,GAAgB,EAAE,EAAE,CAAC,IAAIC,EAAE,OAAc,OAAO,GAAlB,SAAuB,IAAWA,EAAE,EAAE,CAAC,KAAb,MAA0BA,IAAT,SAAa,EAAE,CAAC,EAAE,SAAS,iBAAiB,CAAC,GAAE,EAAE,EAAE,CAAC,GAAO,EAAE,SAAS,iBAAiB,CAAC,EAAO,aAAa,UAAU,EAAE,CAAC,CAAC,GAAU,MAAM,KAAK,GAAG,CAAC,CAAC,CAAC,CAAo7H,SAASC,GAAsB,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAACC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAEC,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGJ,KAAKC,KAAKC,KAAKC,IAAI,OAAAL,EAAE,IAAIM,CAAC,GAAGN,EAAE,IAAIM,EAAE,EAAE,OAAO,OAAO,CAAC,KAAKJ,EAAE,GAAGC,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAEN,CAAC,CAAC,CAAC,EAASC,EAAE,IAAIM,CAAC,CAAC,EAAQC,EAAaC,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAEC,GAAED,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEN,EAAEH,EAAEC,EAAEG,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQI,EAAEF,EAAE,OAA8C,GAAjCT,GAAGW,GAAG,GAAGF,EAAE,MAAMG,EAAc,EAAO,CAAC,IAAM,EAAEH,EAAEE,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKF,EAAE,CAAC,EAAMK,EAAE,EAAMC,EAAE,EAAQC,EAA8BZ,GAAE,UAAU,GAAGY,EAAE,CAAC,GAAK,CAAC,UAAUb,EAAE,mBAAmBH,CAAC,EAAEI,EAAQH,EAA+BE,GAAE,WAAYH,GAAG,EAAQM,EAA+BH,GAAE,aAAc,YAAY,IAAI,EAAEF,EAAQM,EAAES,EAAEV,CAAC,EAAE,QAAQS,GAAUV,EAAEQ,KAAV,MAAuBR,IAAT,OAAWA,EAAEE,GAAOI,IAAJ,GAAWA,IAAJ,GAAcF,EAAE,CAAC,IAAV,QAAeK,EAAEG,GAAGR,GAAGO,EAAEP,CAAC,EAAE,QAASH,EAAEC,CAAC,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAE,WAAWH,EAAE,CAAC,EAAE,IAAMe,EAAEhB,EAAaa,EAAE,EAAED,EAA8Bb,GAAE,SAAS,OAAO,CAAC,EAAQkB,EAAEX,EAAaU,CAAC,EAAEX,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEY,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKf,IAAGA,EAAE,UAAUc,EAAEd,EAAE,mBAAmB,YAAY,IAAI,QAAkDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaN,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMK,GAAe,GAAc,OAAO,GAAlB,SAA0BQ,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAAS,EAAE,EAAE,CAAC,KAAKzB,EAAE,OAAOC,EAAE,OAAOG,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAMC,EAAEqB,GAAgB,CAAC,EAAQpB,EAAE,IAAI,QAAcqB,EAAqBlB,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMT,EAAEM,EAAE,IAAIG,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQT,EAAG,GAAGS,EAAE,eAAe,CAAC,IAAMT,EAAE,EAAES,CAAC,EAAe,OAAOT,GAApB,WAAsBM,EAAE,IAAIG,EAAE,OAAOT,CAAC,EAAEO,EAAE,UAAUE,EAAE,MAAM,OAAUT,IAAGA,EAAES,CAAC,EAAEH,EAAE,OAAOG,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQF,EAAE,IAAI,qBAAqBoB,EAAqB,CAAC,KAAK3B,EAAE,WAAWC,EAAE,UAAqB,OAAOG,GAAlB,SAAoBA,EAAEoB,GAAEpB,CAAC,CAAC,CAAC,EAAE,OAAAC,EAAE,QAASI,GAAGF,EAAE,QAAQE,CAAC,CAAE,EAAQ,IAAIF,EAAE,WAAW,CAAC,CAAC,IAAMqB,GAAE,IAAI,QAAYC,EAAE,SAASC,GAAe,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWrB,EAAE,UAAUT,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMS,EAAE,OAAOT,CAAC,EAAE,OAAO,aAAa,YAAY,YAAY,EAAE,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,YAAY,OAAO,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO,EAAE,YAAY,EAAE,cAAc/B,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE2B,GAAE,IAAI,CAAC,KAAjB,MAA8B3B,IAAT,QAAkBA,EAAE,QAASA,GAAG,CAACA,EAAE,CAAC,OAAO,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO6B,GAAe,EAAE9B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAASgC,GAAU,EAAE,CAAC,EAAE,QAAQD,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,EAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAc,EAAE,EAAE,CAACL,GAAGI,GAAqB,EAAE,IAAMjC,EAAE0B,GAAgB,CAAC,EAAE,OAAA1B,EAAE,QAASS,GAAG,CAAC,IAAIT,EAAE4B,GAAE,IAAInB,CAAC,EAAMT,IAAGA,EAAE,IAAI,IAAI4B,GAAE,IAAInB,EAAET,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8B6B,GAAE,QAAQpB,CAAC,CAAC,CAAE,EAAQ,IAAI,CAACT,EAAE,QAASS,GAAG,CAAC,IAAMT,EAAE4B,GAAE,IAAInB,CAAC,EAA8BT,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoC6B,GAAE,UAAUpB,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAM0B,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAM,EAAE,CAAC,MAAME,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQ,EAAE,CAAC,OAAOA,EAAO,KAAK,EAAE,YAAY,CAAC,EAAEH,GAAE,QAAS1B,GAAGA,EAAE,CAAC,CAAE,CAAC,EAAE6B,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAa,EAAE,CAAC,OAAAJ,GAAE,IAAI,CAAC,EAAEC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAO,CAAC,EAAE,CAACA,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAO,EAAE,EAAE,CAAC,OAAmB,OAAO,GAApB,WAAsBD,GAAa,CAAC,EAAEL,GAAc,EAAE,CAAC,CAAC,CAA+hK,SAASO,GAAqB,EAAE,EAAEC,EAAE,CAAC,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcA,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkB,EAAE,EAAED,EAAE,CAAC,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcA,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAAS,GAAG,EAAQ,EAAE,OAAQ,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,QAAQF,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAEE,EAAEC,GAAEH,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOI,GAAS,EAAGJ,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkB,EAAE,YAAYE,CAAC,EAAK,CAACC,EAAE,OAAOI,GAAG,CAACR,EAAE,EAAEC,GAAkB,EAAE,YAAYO,CAAC,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAQI,GAAW,CAAC,EAAE,EAAET,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyBH,EAAE,EAAED,GAAqB,EAAE,EAAEI,CAAC,EAAE,EAAQO,GAAG,CAAC,SAAS,GAAG,EAAQ,EAAE,MAAO,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,QAAQV,CAAC,IAAI,CAAC,IAAMG,EAAEM,GAAW,EAAE,aAAa,CAAC,EAAQL,EAAEK,GAAW,EAAE,WAAWT,CAAC,EAAE,SAAE,iBAAiB,eAAeG,CAAC,EAAE,EAAE,iBAAiB,eAAeC,CAAC,EAAQ,IAAI,CAAC,EAAE,oBAAoB,eAAeD,CAAC,EAAE,EAAE,oBAAoB,eAAeC,CAAC,CAAC,CAAC,CAAC,EAAQO,GAAG,CAAC,SAAS,GAAG,EAAQ,EAAE,MAAO,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,QAAQX,CAAC,IAAI,CAAC,IAAMY,EAAYJ,GAAG,CAACR,EAAE,EAAED,GAAqB,EAAE,WAAWS,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcd,GAAG,CAAC,EAAE,EAAED,GAAqB,EAAE,aAAaC,CAAC,EAAEa,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,SAAE,iBAAiB,cAAcE,CAAa,EAAQ,IAAI,CAAC,EAAE,oBAAoB,cAAcA,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQG,GAAG,CAAC,OAAOb,GAAG,MAAMQ,GAAG,MAAMC,EAAE,EAAQK,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECA5klB,IAAME,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,EAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,EAAI3B,EAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMxB,EAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGtB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,EAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMzC,GAAW0C,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOzC,GAAYgD,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,EAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,CAAS,EAEzCrC,IAA+BwD,GAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,GAAgB,CAAC/D,GAAe,OAAAuE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,EAAe/D,CAAK,CAAC,EACtX6C,GAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,GAAO3E,GAAaiE,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMY,GAAczD,EAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,qBAAgCnE,MAAcsE,yBAAqCF,yBAAqCC,sBAAgCrE,MAAcwE,OAAkC,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,EAAa,UACz5DA,EAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,GAAoBvG,EAAO,CAAC,MAAM,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC5Bh+F,IAAMC,GAAYC,GAASC,CAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,EAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzC,CAAQ,EAAE0C,GAAgB,CAAC,WAAA/C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8C,EAAiBlB,GAAuBH,EAAMtB,CAAQ,EAAQ4C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBrC,EAAKsC,GAAY,CAAC,GAAGjB,GAA4CY,EAAgB,SAAsBjC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGG,EAAgB,UAAUc,GAAGxD,GAAkB,GAAGoD,EAAsB,iBAAiBf,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBM,EAAiB,SAAS,YAAY,IAAIf,GAA6BgB,EAAK,MAAM,CAAC,GAAGZ,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEsC,EAAYG,CAAc,EAAE,SAAsBc,EAAMtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKyC,GAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,GAAS,CAAC,SAAsBqC,EAAMtC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,mBAAgCF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,KAAK,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,yBAAyB,4BAA4B,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAK0C,GAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,YAAY,iBAAiB4B,EAAiB,SAAS,sBAAsB,KAAK,YAAY,SAAsB9B,EAAKnB,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,ulUAAulU,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,shDAAshD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,i+IAAi+I,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,eAAe,mBAAmB,eAAe,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,wkHAAwkH,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,izJAAizJ,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,mnMAAmnM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,4kGAA4kG,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,4BAA4B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,IAAI,q/RAAq/R,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,siLAAsiL,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,eAAe,mBAAmB,oBAAoB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,i1YAAi1Y,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,k2LAAk2L,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAK0C,GAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,YAAY,iBAAiB4B,EAAiB,SAAS,sBAAsB,KAAK,YAAY,SAAsB9B,EAAKnB,EAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,KAAK,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,IAAI,gusCAAgusC,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,iiFAAiiF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,suJAAsuJ,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,6oDAA6oD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,uyaAAuya,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,okFAAokF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,+3HAA+3H,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,KAAK,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,+uTAA+uT,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,uCAAuC,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,qsOAAqsO,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,giSAAgiS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK2C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBb,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,IAAI,wnGAAwnG,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,yRAAyR,oTAAoT,sLAAsL,kJAAkJ,uyBAAuyB,2KAA2K,yKAAyK,0KAA0K,wKAAwK,0KAA0K,yKAAyK,2KAA2K,+RAA+R,0KAA0K,6JAA6J,0KAA0K,0KAA0K,2KAA2K,0JAA0J,0KAA0K,yKAAyK,0KAA0K,0KAA0K,0KAA0K,uQAAuQ,0KAA0K,0KAA0K,yKAAyK,4JAA4J,uiIAAuiI,+FAA+F,6FAA6F,EAQj90LC,GAAgBC,GAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,kBAAkB,OAAO,SAAS,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,OAAO,SAAS,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTh1BwE,GAAE,0BAA0B,CAAC,yBAAyB,yBAAyB,+BAA+B,8BAA8B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,kIAAkI,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,kIAAkI,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,qiCAAqiC,EAAeC,GAAU,eCAl+DC,GAAE,0BAA0B,CAAC,yBAAyB,yBAAyB,+BAA+B,8BAA8B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,kIAAkI,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,MAAM,SAAS,IAAI,kIAAkI,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,qiCAAqiC,EAAeC,GAAU",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "d", "l", "g", "glide", "r", "a", "u", "f", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "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", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "SVG", "css", "Framert6QzSLyTH", "withCSS", "t6QzSLyTH_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
