{
  "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://ga.jspm.io/npm:style-value-types@5.0.0/dist/es/index.mjs", "ssg:https://ga.jspm.io/npm:framesync@6.0.1/dist/es/index.mjs", "ssg:https://ga.jspm.io/npm:popmotion@11.0.3/dist/es/index.mjs", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/PH5dKwV7X6kCySScDT2G/Ticker.js", "ssg:https://framerusercontent.com/modules/n3gloULqFoFry3WkK55y/BpMLnaD2YgabLBbkia7j/THpLozDff.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", "const clamp=(t,s)=>e=>Math.max(Math.min(e,s),t);const sanitize=t=>t%1?Number(t.toFixed(5)):t;const t=/(-)?([\\d]*\\.?[\\d])+/g;const s=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))/gi;const e=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))$/i;function isString(t){return\"string\"===typeof t}const r={test:t=>\"number\"===typeof t,parse:parseFloat,transform:t=>t};const n=Object.assign(Object.assign({},r),{transform:clamp(0,1)});const a=Object.assign(Object.assign({},r),{default:1});const createUnitType=t=>({test:s=>isString(s)&&s.endsWith(t)&&1===s.split(\" \").length,parse:parseFloat,transform:s=>`${s}${t}`});const o=createUnitType(\"deg\");const c=createUnitType(\"%\");const l=createUnitType(\"px\");const i=createUnitType(\"vh\");const p=createUnitType(\"vw\");const u=Object.assign(Object.assign({},c),{parse:t=>c.parse(t)/100,transform:t=>c.transform(100*t)});const isColorString=(t,s)=>r=>Boolean(isString(r)&&e.test(r)&&r.startsWith(t)||s&&Object.prototype.hasOwnProperty.call(r,s));const splitColor=(s,e,r)=>n=>{if(!isString(n))return n;const[a,o,c,l]=n.match(t);return{[s]:parseFloat(a),[e]:parseFloat(o),[r]:parseFloat(c),alpha:void 0!==l?parseFloat(l):1}};const f={test:isColorString(\"hsl\",\"hue\"),parse:splitColor(\"hue\",\"saturation\",\"lightness\"),transform:({hue:t,saturation:s,lightness:e,alpha:r=1})=>\"hsla(\"+Math.round(t)+\", \"+c.transform(sanitize(s))+\", \"+c.transform(sanitize(e))+\", \"+sanitize(n.transform(r))+\")\"};const m=clamp(0,255);const g=Object.assign(Object.assign({},r),{transform:t=>Math.round(m(t))});const h={test:isColorString(\"rgb\",\"red\"),parse:splitColor(\"red\",\"green\",\"blue\"),transform:({red:t,green:s,blue:e,alpha:r=1})=>\"rgba(\"+g.transform(t)+\", \"+g.transform(s)+\", \"+g.transform(e)+\", \"+sanitize(n.transform(r))+\")\"};function parseHex(t){let s=\"\";let e=\"\";let r=\"\";let n=\"\";if(t.length>5){s=t.substr(1,2);e=t.substr(3,2);r=t.substr(5,2);n=t.substr(7,2)}else{s=t.substr(1,1);e=t.substr(2,1);r=t.substr(3,1);n=t.substr(4,1);s+=s;e+=e;r+=r;n+=n}return{red:parseInt(s,16),green:parseInt(e,16),blue:parseInt(r,16),alpha:n?parseInt(n,16)/255:1}}const b={test:isColorString(\"#\"),parse:parseHex,transform:h.transform};const d={test:t=>h.test(t)||b.test(t)||f.test(t),parse:t=>h.test(t)?h.parse(t):f.test(t)?f.parse(t):b.parse(t),transform:t=>isString(t)?t:t.hasOwnProperty(\"red\")?h.transform(t):f.transform(t)};const v=\"${c}\";const y=\"${n}\";function test(e){var r,n,a,o;return isNaN(e)&&isString(e)&&(null!==(n=null===(r=e.match(t))||void 0===r?void 0:r.length)&&void 0!==n?n:0)+(null!==(o=null===(a=e.match(s))||void 0===a?void 0:a.length)&&void 0!==o?o:0)>0}function analyse(e){\"number\"===typeof e&&(e=`${e}`);const n=[];let a=0;const o=e.match(s);if(o){a=o.length;e=e.replace(s,v);n.push(...o.map(d.parse))}const c=e.match(t);if(c){e=e.replace(t,y);n.push(...c.map(r.parse))}return{values:n,numColors:a,tokenised:e}}function parse(t){return analyse(t).values}function createTransformer(t){const{values:s,numColors:e,tokenised:r}=analyse(t);const n=s.length;return t=>{let s=r;for(let r=0;r<n;r++)s=s.replace(r<e?v:y,r<e?d.transform(t[r]):sanitize(t[r]));return s}}const convertNumbersToZero=t=>\"number\"===typeof t?0:t;function getAnimatableNone(t){const s=parse(t);const e=createTransformer(t);return e(s.map(convertNumbersToZero))}const O={test:test,parse:parse,createTransformer:createTransformer,getAnimatableNone:getAnimatableNone};const j=new Set([\"brightness\",\"contrast\",\"saturate\",\"opacity\"]);function applyDefaultFilter(s){let[e,r]=s.slice(0,-1).split(\"(\");if(\"drop-shadow\"===e)return s;const[n]=r.match(t)||[];if(!n)return s;const a=r.replace(n,\"\");let o=j.has(e)?1:0;n!==r&&(o*=100);return e+\"(\"+o+a+\")\"}const F=/([a-z-]*)\\(.*?\\)/g;const N=Object.assign(Object.assign({},O),{getAnimatableNone:t=>{const s=t.match(F);return s?s.map(applyDefaultFilter).join(\" \"):t}});export{n as alpha,d as color,O as complex,o as degrees,N as filter,b as hex,f as hsla,r as number,c as percent,u as progressPercentage,l as px,g as rgbUnit,h as rgba,a as scale,i as vh,p as vw};\n\n//# sourceMappingURL=index.mjs.map", "const e=1/60*1e3;const t=\"undefined\"!==typeof performance?()=>performance.now():()=>Date.now();const n=\"undefined\"!==typeof window?e=>window.requestAnimationFrame(e):n=>setTimeout((()=>n(t())),e);function createRenderStep(e){let t=[];let n=[];let s=0;let r=false;let c=false;const o=new WeakSet;const a={schedule:(e,c=false,a=false)=>{const l=a&&r;const f=l?t:n;c&&o.add(e);if(-1===f.indexOf(e)){f.push(e);l&&r&&(s=t.length)}return e},cancel:e=>{const t=n.indexOf(e);-1!==t&&n.splice(t,1);o.delete(e)},process:l=>{if(r)c=true;else{r=true;[t,n]=[n,t];n.length=0;s=t.length;if(s)for(let n=0;n<s;n++){const s=t[n];s(l);if(o.has(s)){a.schedule(s);e()}}r=false;if(c){c=false;a.process(l)}}}};return a}const s=40;let r=true;let c=false;let o=false;const a={delta:0,timestamp:0};const l=[\"read\",\"update\",\"preRender\",\"render\",\"postRender\"];const f=l.reduce(((e,t)=>{e[t]=createRenderStep((()=>c=true));return e}),{});const u=l.reduce(((e,t)=>{const n=f[t];e[t]=(e,t=false,s=false)=>{c||startLoop();return n.schedule(e,t,s)};return e}),{});const d=l.reduce(((e,t)=>{e[t]=f[t].cancel;return e}),{});const i=l.reduce(((e,t)=>{e[t]=()=>f[t].process(a);return e}),{});const processStep=e=>f[e].process(a);const processFrame=t=>{c=false;a.delta=r?e:Math.max(Math.min(t-a.timestamp,s),1);a.timestamp=t;o=true;l.forEach(processStep);o=false;if(c){r=false;n(processFrame)}};const startLoop=()=>{c=true;r=true;o||n(processFrame)};const getFrameData=()=>a;export{d as cancelSync,u as default,i as flushSync,getFrameData};\n\n//# sourceMappingURL=index.mjs.map", "import{__rest as t}from\"tslib\";import{warning as e,invariant as n}from\"hey-listen\";import{hex as o,rgba as s,hsla as r,color as i,complex as u}from\"style-value-types\";import l,{cancelSync as p,getFrameData as f}from\"framesync\";const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const d=.001;const h=.01;const m=10;const y=.05;const g=1;function findSpring({duration:t=800,bounce:n=.25,velocity:o=0,mass:s=1}){let r;let i;e(t<=1e3*m,\"Spring duration must be 10 seconds or less\");let u=1-n;u=clamp(y,g,u);t=clamp(h,m,t/1e3);if(u<1){r=e=>{const n=e*u;const s=n*t;const r=n-o;const i=calcAngularFreq(e,u);const l=Math.exp(-s);return d-r/i*l};i=e=>{const n=e*u;const s=n*t;const i=s*o+o;const l=Math.pow(u,2)*Math.pow(e,2)*t;const p=Math.exp(-s);const f=calcAngularFreq(Math.pow(e,2),u);const h=-r(e)+d>0?-1:1;return h*((i-l)*p)/f}}else{r=e=>{const n=Math.exp(-e*t);const s=(e-o)*t+1;return n*s-d};i=e=>{const n=Math.exp(-e*t);const s=t*t*(o-e);return n*s}}const l=5/t;const p=approximateRoot(r,i,l);t*=1e3;if(isNaN(p))return{stiffness:100,damping:10,duration:t};{const e=Math.pow(p,2)*s;return{stiffness:e,damping:2*u*Math.sqrt(s*e),duration:t}}}const v=12;function approximateRoot(t,e,n){let o=n;for(let n=1;n<v;n++)o-=t(o)/e(o);return o}function calcAngularFreq(t,e){return t*Math.sqrt(1-e*e)}const M=[\"duration\",\"bounce\"];const x=[\"stiffness\",\"damping\",\"mass\"];function isSpringType(t,e){return e.some((e=>void 0!==t[e]))}function getSpringOptions(t){let e=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:false},t);if(!isSpringType(t,x)&&isSpringType(t,M)){const n=findSpring(t);e=Object.assign(Object.assign(Object.assign({},e),n),{velocity:0,mass:1});e.isResolvedFromDuration=true}return e}function spring(e){var{from:n=0,to:o=1,restSpeed:s=2,restDelta:r}=e,i=t(e,[\"from\",\"to\",\"restSpeed\",\"restDelta\"]);const u={done:false,value:n};let{stiffness:l,damping:p,mass:f,velocity:d,duration:h,isResolvedFromDuration:m}=getSpringOptions(i);let y=zero;let g=zero;function createSpring(){const t=d?-d/1e3:0;const e=o-n;const s=p/(2*Math.sqrt(l*f));const i=Math.sqrt(l/f)/1e3;void 0===r&&(r=Math.min(Math.abs(o-n)/100,.4));if(s<1){const n=calcAngularFreq(i,s);y=r=>{const u=Math.exp(-s*i*r);return o-u*((t+s*i*e)/n*Math.sin(n*r)+e*Math.cos(n*r))};g=o=>{const r=Math.exp(-s*i*o);return s*i*r*(Math.sin(n*o)*(t+s*i*e)/n+e*Math.cos(n*o))-r*(Math.cos(n*o)*(t+s*i*e)-n*e*Math.sin(n*o))}}else if(1===s)y=n=>o-Math.exp(-i*n)*(e+(t+i*e)*n);else{const n=i*Math.sqrt(s*s-1);y=r=>{const u=Math.exp(-s*i*r);const l=Math.min(n*r,300);return o-u*((t+s*i*e)*Math.sinh(l)+n*e*Math.cosh(l))/n}}}createSpring();return{next:t=>{const e=y(t);if(m)u.done=t>=h;else{const n=1e3*g(t);const i=Math.abs(n)<=s;const l=Math.abs(o-e)<=r;u.done=i&&l}u.value=u.done?o:e;return u},flipTarget:()=>{d=-d;[n,o]=[o,n];createSpring()}}}spring.needsInterpolation=(t,e)=>\"string\"===typeof t||\"string\"===typeof e;const zero=t=>0;const progress=(t,e,n)=>{const o=e-t;return 0===o?1:(n-t)/o};const mix=(t,e,n)=>-n*t+n*e+t;function hueToRgb(t,e,n){n<0&&(n+=1);n>1&&(n-=1);return n<1/6?t+6*(e-t)*n:n<.5?e:n<2/3?t+(e-t)*(2/3-n)*6:t}function hslaToRgba({hue:t,saturation:e,lightness:n,alpha:o}){t/=360;e/=100;n/=100;let s=0;let r=0;let i=0;if(e){const o=n<.5?n*(1+e):n+e-n*e;const u=2*n-o;s=hueToRgb(u,o,t+1/3);r=hueToRgb(u,o,t);i=hueToRgb(u,o,t-1/3)}else s=r=i=n;return{red:Math.round(255*s),green:Math.round(255*r),blue:Math.round(255*i),alpha:o}}const mixLinearColor=(t,e,n)=>{const o=t*t;const s=e*e;return Math.sqrt(Math.max(0,n*(s-o)+o))};const S=[o,s,r];const getColorType=t=>S.find((e=>e.test(t)));const notAnimatable=t=>`'${t}' is not an animatable color. Use the equivalent color code instead.`;const mixColor=(t,e)=>{let o=getColorType(t);let i=getColorType(e);n(!!o,notAnimatable(t));n(!!i,notAnimatable(e));let u=o.parse(t);let l=i.parse(e);if(o===r){u=hslaToRgba(u);o=s}if(i===r){l=hslaToRgba(l);i=s}const p=Object.assign({},u);return t=>{for(const e in p)\"alpha\"!==e&&(p[e]=mixLinearColor(u[e],l[e],t));p.alpha=mix(u.alpha,l.alpha,t);return o.transform(p)}};const O={x:0,y:0,z:0};const isNum=t=>\"number\"===typeof t;const combineFunctions=(t,e)=>n=>e(t(n));const pipe=(...t)=>t.reduce(combineFunctions);function getMixer(t,e){return isNum(t)?n=>mix(t,e,n):i.test(t)?mixColor(t,e):mixComplex(t,e)}const mixArray=(t,e)=>{const n=[...t];const o=n.length;const s=t.map(((t,n)=>getMixer(t,e[n])));return t=>{for(let e=0;e<o;e++)n[e]=s[e](t);return n}};const mixObject=(t,e)=>{const n=Object.assign(Object.assign({},t),e);const o={};for(const s in n)void 0!==t[s]&&void 0!==e[s]&&(o[s]=getMixer(t[s],e[s]));return t=>{for(const e in o)n[e]=o[e](t);return n}};function analyse(t){const e=u.parse(t);const n=e.length;let o=0;let s=0;let r=0;for(let t=0;t<n;t++)o||\"number\"===typeof e[t]?o++:void 0!==e[t].hue?r++:s++;return{parsed:e,numNumbers:o,numRGB:s,numHSL:r}}const mixComplex=(t,n)=>{const o=u.createTransformer(n);const s=analyse(t);const r=analyse(n);const i=s.numHSL===r.numHSL&&s.numRGB===r.numRGB&&s.numNumbers>=r.numNumbers;if(i)return pipe(mixArray(s.parsed,r.parsed),o);e(true,`Complex values '${t}' and '${n}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`);return e=>`${e>0?n:t}`};const mixNumber=(t,e)=>n=>mix(t,e,n);function detectMixerFactory(t){return\"number\"===typeof t?mixNumber:\"string\"===typeof t?i.test(t)?mixColor:mixComplex:Array.isArray(t)?mixArray:\"object\"===typeof t?mixObject:void 0}function createMixers(t,e,n){const o=[];const s=n||detectMixerFactory(t[0]);const r=t.length-1;for(let n=0;n<r;n++){let r=s(t[n],t[n+1]);if(e){const t=Array.isArray(e)?e[n]:e;r=pipe(t,r)}o.push(r)}return o}function fastInterpolate([t,e],[n]){return o=>n(progress(t,e,o))}function slowInterpolate(t,e){const n=t.length;const o=n-1;return s=>{let r=0;let i=false;if(s<=t[0])i=true;else if(s>=t[o]){r=o-1;i=true}if(!i){let e=1;for(;e<n;e++)if(t[e]>s||e===o)break;r=e-1}const u=progress(t[r],t[r+1],s);return e[r](u)}}function interpolate(t,e,{clamp:o=true,ease:s,mixer:r}={}){const i=t.length;n(i===e.length,\"Both input and output ranges must be the same length\");n(!s||!Array.isArray(s)||s.length===i-1,\"Array of easing functions must be of length `input.length - 1`, as it applies to the transitions **between** the defined values.\");if(t[0]>t[i-1]){t=[].concat(t);e=[].concat(e);t.reverse();e.reverse()}const u=createMixers(e,s,r);const l=2===i?fastInterpolate(t,u):slowInterpolate(t,u);return o?e=>l(clamp(t[0],t[i-1],e)):l}const reverseEasing=t=>e=>1-t(1-e);const mirrorEasing=t=>e=>e<=.5?t(2*e)/2:(2-t(2*(1-e)))/2;const createExpoIn=t=>e=>Math.pow(e,t);const createBackIn=t=>e=>e*e*((t+1)*e-t);const createAnticipate=t=>{const e=createBackIn(t);return t=>(t*=2)<1?.5*e(t):.5*(2-Math.pow(2,-10*(t-1)))};const T=1.525;const w=4/11;const A=8/11;const R=.9;const linear=t=>t;const F=createExpoIn(2);const D=reverseEasing(F);const j=mirrorEasing(F);const circIn=t=>1-Math.sin(Math.acos(t));const q=reverseEasing(circIn);const I=mirrorEasing(q);const P=createBackIn(T);const k=reverseEasing(P);const E=mirrorEasing(P);const B=createAnticipate(T);const C=4356/361;const N=35442/1805;const U=16061/1805;const bounceOut=t=>{if(1===t||0===t)return t;const e=t*t;return t<w?7.5625*e:t<A?9.075*e-9.9*t+3.4:t<R?C*e-N*t+U:10.8*t*t-20.52*t+10.72};const z=reverseEasing(bounceOut);const bounceInOut=t=>t<.5?.5*(1-bounceOut(1-2*t)):.5*bounceOut(2*t-1)+.5;function defaultEasing(t,e){return t.map((()=>e||j)).splice(0,t.length-1)}function defaultOffset(t){const e=t.length;return t.map(((t,n)=>0!==n?n/(e-1):0))}function convertOffsetToTimes(t,e){return t.map((t=>t*e))}function keyframes({from:t=0,to:e=1,ease:n,offset:o,duration:s=300}){const r={done:false,value:t};const i=Array.isArray(e)?e:[t,e];const u=convertOffsetToTimes(o&&o.length===i.length?o:defaultOffset(i),s);function createInterpolator(){return interpolate(u,i,{ease:Array.isArray(n)?n:defaultEasing(i,n)})}let l=createInterpolator();return{next:t=>{r.value=l(t);r.done=t>=s;return r},flipTarget:()=>{i.reverse();l=createInterpolator()}}}function decay({velocity:t=0,from:e=0,power:n=.8,timeConstant:o=350,restDelta:s=.5,modifyTarget:r}){const i={done:false,value:e};let u=n*t;const l=e+u;const p=void 0===r?l:r(l);p!==l&&(u=p-e);return{next:t=>{const e=-u*Math.exp(-t/o);i.done=!(e>s||e<-s);i.value=i.done?p:p+e;return i},flipTarget:()=>{}}}const $={keyframes:keyframes,spring:spring,decay:decay};function detectAnimationFromOptions(t){if(Array.isArray(t.to))return keyframes;if($[t.type])return $[t.type];const e=new Set(Object.keys(t));return e.has(\"ease\")||e.has(\"duration\")&&!e.has(\"dampingRatio\")?keyframes:e.has(\"dampingRatio\")||e.has(\"stiffness\")||e.has(\"mass\")||e.has(\"damping\")||e.has(\"restSpeed\")||e.has(\"restDelta\")?spring:keyframes}function loopElapsed(t,e,n=0){return t-e-n}function reverseElapsed(t,e,n=0,o=true){return o?loopElapsed(e+-t,e,n):e-(t-e)+n}function hasRepeatDelayElapsed(t,e,n,o){return o?t>=e+n:t<=-n}const framesync=t=>{const passTimestamp=({delta:e})=>t(e);return{start:()=>l.update(passTimestamp,true),stop:()=>p.update(passTimestamp)}};function animate(e){var n,o;var{from:s,autoplay:r=true,driver:i=framesync,elapsed:u=0,repeat:l=0,repeatType:p=\"loop\",repeatDelay:f=0,onPlay:d,onStop:h,onComplete:m,onRepeat:y,onUpdate:g}=e,v=t(e,[\"from\",\"autoplay\",\"driver\",\"elapsed\",\"repeat\",\"repeatType\",\"repeatDelay\",\"onPlay\",\"onStop\",\"onComplete\",\"onRepeat\",\"onUpdate\"]);let{to:M}=v;let x;let S=0;let O=v.duration;let T;let w=false;let A=true;let R;const F=detectAnimationFromOptions(v);if(null===(o=(n=F).needsInterpolation)||void 0===o?void 0:o.call(n,s,M)){R=interpolate([0,100],[s,M],{clamp:false});s=0;M=100}const D=F(Object.assign(Object.assign({},v),{from:s,to:M}));function repeat(){S++;if(\"reverse\"===p){A=S%2===0;u=reverseElapsed(u,O,f,A)}else{u=loopElapsed(u,O,f);\"mirror\"===p&&D.flipTarget()}w=false;y&&y()}function complete(){x.stop();m&&m()}function update(t){A||(t=-t);u+=t;if(!w){const t=D.next(Math.max(0,u));T=t.value;R&&(T=R(T));w=A?t.done:u<=0}null===g||void 0===g?void 0:g(T);if(w){0===S&&(null!==O&&void 0!==O?O:O=u);S<l?hasRepeatDelayElapsed(u,O,f,A)&&repeat():complete()}}function play(){null===d||void 0===d?void 0:d();x=i(update);x.start()}r&&play();return{stop:()=>{null===h||void 0===h?void 0:h();x.stop()}}}function velocityPerSecond(t,e){return e?t*(1e3/e):0}function inertia({from:t=0,velocity:e=0,min:n,max:o,power:s=.8,timeConstant:r=750,bounceStiffness:i=500,bounceDamping:u=10,restDelta:l=1,modifyTarget:p,driver:d,onUpdate:h,onComplete:m,onStop:y}){let g;function isOutOfBounds(t){return void 0!==n&&t<n||void 0!==o&&t>o}function boundaryNearest(t){return void 0===n?o:void 0===o||Math.abs(n-t)<Math.abs(o-t)?n:o}function startAnimation(t){null===g||void 0===g?void 0:g.stop();g=animate(Object.assign(Object.assign({},t),{driver:d,onUpdate:e=>{var n;null===h||void 0===h?void 0:h(e);null===(n=t.onUpdate)||void 0===n?void 0:n.call(t,e)},onComplete:m,onStop:y}))}function startSpring(t){startAnimation(Object.assign({type:\"spring\",stiffness:i,damping:u,restDelta:l},t))}if(isOutOfBounds(t))startSpring({from:t,velocity:e,to:boundaryNearest(t)});else{let o=s*e+t;\"undefined\"!==typeof p&&(o=p(o));const i=boundaryNearest(o);const u=i===n?-1:1;let d;let h;const checkBoundary=t=>{d=h;h=t;e=velocityPerSecond(t-d,f().delta);(1===u&&t>i||-1===u&&t<i)&&startSpring({from:t,to:i,velocity:e})};startAnimation({type:\"decay\",from:t,velocity:e,timeConstant:r,power:s,restDelta:l,modifyTarget:p,onUpdate:isOutOfBounds(o)?checkBoundary:void 0})}return{stop:()=>null===g||void 0===g?void 0:g.stop()}}const radiansToDegrees=t=>180*t/Math.PI;const angle=(t,e=O)=>radiansToDegrees(Math.atan2(e.y-t.y,e.x-t.x));const applyOffset=(t,e)=>{let n=true;if(void 0===e){e=t;n=false}return o=>{if(n)return o-t+e;t=o;n=true;return e}};const identity=t=>t;const createAttractor=(t=identity)=>(e,n,o)=>{const s=n-o;const r=-(0-e+1)*(0-t(Math.abs(s)));return s<=0?n+r:n-r};const G=createAttractor();const H=createAttractor(Math.sqrt);const degreesToRadians=t=>t*Math.PI/180;const isPoint=t=>t.hasOwnProperty(\"x\")&&t.hasOwnProperty(\"y\");const isPoint3D=t=>isPoint(t)&&t.hasOwnProperty(\"z\");const distance1D=(t,e)=>Math.abs(t-e);function distance(t,e){if(isNum(t)&&isNum(e))return distance1D(t,e);if(isPoint(t)&&isPoint(e)){const n=distance1D(t.x,e.x);const o=distance1D(t.y,e.y);const s=isPoint3D(t)&&isPoint3D(e)?distance1D(t.z,e.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2)+Math.pow(s,2))}}const pointFromVector=(t,e,n)=>{e=degreesToRadians(e);return{x:n*Math.cos(e)+t.x,y:n*Math.sin(e)+t.y}};const toDecimal=(t,e=2)=>{e=Math.pow(10,e);return Math.round(t*e)/e};const smoothFrame=(t,e,n,o=0)=>toDecimal(t+n*(e-t)/Math.max(o,n));const smooth=(t=50)=>{let e=0;let n=0;return o=>{const s=f().timestamp;const r=s!==n?s-n:0;const i=r?smoothFrame(e,o,r,t):e;n=s;e=i;return i}};const snap=t=>{if(\"number\"===typeof t)return e=>Math.round(e/t)*t;{let e=0;const n=t.length;return o=>{let s=Math.abs(t[0]-o);for(e=1;e<n;e++){const r=t[e];const i=Math.abs(r-o);if(0===i)return r;if(i>s)return t[e-1];if(e===n-1)return r;s=i}}}};function velocityPerFrame(t,e){return t/(1e3/e)}const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};const a=(t,e)=>1-3*e+3*t;const b=(t,e)=>3*e-6*t;const c=t=>3*t;const calcBezier=(t,e,n)=>((a(e,n)*t+b(e,n))*t+c(e))*t;const getSlope=(t,e,n)=>3*a(e,n)*t*t+2*b(e,n)*t+c(e);const L=1e-7;const X=10;function binarySubdivide(t,e,n,o,s){let r;let i;let u=0;do{i=e+(n-e)/2;r=calcBezier(i,o,s)-t;r>0?n=i:e=i}while(Math.abs(r)>L&&++u<X);return i}const J=8;const K=.001;function newtonRaphsonIterate(t,e,n,o){for(let s=0;s<J;++s){const s=getSlope(e,n,o);if(0===s)return e;const r=calcBezier(e,n,o)-t;e-=r/s}return e}const Q=11;const V=1/(Q-1);function cubicBezier(t,e,n,o){if(t===e&&n===o)return linear;const s=new Float32Array(Q);for(let e=0;e<Q;++e)s[e]=calcBezier(e*V,t,n);function getTForX(e){let o=0;let r=1;const i=Q-1;for(;r!==i&&s[r]<=e;++r)o+=V;--r;const u=(e-s[r])/(s[r+1]-s[r]);const l=o+u*V;const p=getSlope(l,t,n);return p>=K?newtonRaphsonIterate(e,l,t,n):0===p?l:binarySubdivide(e,o,o+V,t,n)}return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>n=>{n=\"end\"===e?Math.min(n,.999):Math.max(n,.001);const o=n*t;const s=\"end\"===e?Math.floor(o):Math.ceil(o);return clamp(0,1,s/t)};export{angle,animate,B as anticipate,applyOffset,G as attract,H as attractExpo,P as backIn,E as backInOut,k as backOut,z as bounceIn,bounceInOut,bounceOut,circIn,I as circInOut,q as circOut,clamp,createAnticipate,createAttractor,createBackIn,createExpoIn,cubicBezier,decay,degreesToRadians,distance,F as easeIn,j as easeInOut,D as easeOut,inertia,interpolate,isPoint,isPoint3D,keyframes,linear,mirrorEasing,mix,mixColor,mixComplex,pipe,pointFromVector,progress,radiansToDegrees,reverseEasing,smooth,smoothFrame,snap,spring,steps,toDecimal,velocityPerFrame,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.mjs.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ const{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;const numChildren=Children.count(slots);const hasChildren=numChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";/* 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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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});}},[]);/* 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){useLayoutEffect(()=>{measure();},[]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const transformRef=useRef(null);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(isCanvas||!transformRef.current||!animateToValue||isReducedMotion){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;/* Direction */ if(direction===\"left\"){transformRef.current.style.transform=`translateX(-${xOrY.current}px)`;}if(direction===\"right\"){transformRef.current.style.transform=`translateX(${xOrY.current}px)`;}if(direction===\"top\"){transformRef.current.style.transform=`translateY(-${xOrY.current}px)`;}if(direction===\"bottom\"){transformRef.current.style.transform=`translateY(${xOrY.current}px)`;}});/* 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(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&-animateToValue,left:direction===\"right\"&&-animateToValue,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",willChange:\"transform\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,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:.5,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);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cd03546)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,SVG,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/PH5dKwV7X6kCySScDT2G/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"VW1DhpPWm\",\"fIk44xkOI\"];const variantClassNames={fIk44xkOI:\"framer-v-15u78km\",VW1DhpPWm:\"framer-v-unbhgr\"};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 transitions={default:{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 humanReadableVariantMap={Dark:\"fIk44xkOI\",Light:\"VW1DhpPWm\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"VW1DhpPWm\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"VW1DhpPWm\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"fIk44xkOI\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"fIk44xkOI\")return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-dfe79\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-unbhgr\",className),\"data-framer-name\":\"Light\",layoutDependency:layoutDependency,layoutId:\"VW1DhpPWm\",ref:ref,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"inset 0px 0px 0px 1px rgba(0, 0, 0, 0.05999999865889549), 0px 2px 4px 0px rgba(0, 0, 0, 0.03999999910593033)\",...style},variants:{fIk44xkOI:{backgroundColor:\"rgb(18, 18, 18)\"}},...addPropertyOverrides({fIk44xkOI:{\"data-framer-name\":\"Dark\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1sp51vn-container\",layoutDependency:layoutDependency,layoutId:\"bwbHfogVZ-container\",children:/*#__PURE__*/ _jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:.5,id:\"bwbHfogVZ\",layoutId:\"bwbHfogVZ\",padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-g85ypu\",\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"QQmm88d_B\",children:[/*#__PURE__*/ _jsx(SVG,{className:\"framer-2rfzfk\",\"data-framer-name\":\"Ila_Logo_ENGLISH_white\",fill:\"black\",intrinsicHeight:1225,intrinsicWidth:1225,layoutDependency:layoutDependency,layoutId:\"gH2GkbRg2\",svg:'<svg version=\"1.1\" id=\"svg2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0\" y=\"0\" viewBox=\"0 0 1225 1225\" style=\"enable-background:new 0 0 1225 1225\" xml:space=\"preserve\"><style>.st0{clip-path:url(#SVGID_00000025436565221154002630000012907378832467928219_)}</style><g id=\"g8\" transform=\"matrix(1.33333 0 0 -1.33333 0 1122.52)\"><g id=\"g10\"><defs><path id=\"SVGID_1_\" d=\"M-330.08-178.74h1587.4V943.78h-1587.4z\"/></defs><clipPath id=\"SVGID_00000090286345302011623500000000260658613500369552_\"><use xlink:href=\"#SVGID_1_\" style=\"overflow:visible\"/></clipPath><g id=\"g12\" style=\"clip-path:url(#SVGID_00000090286345302011623500000000260658613500369552_)\"><g id=\"g18\" transform=\"translate(880.09 379.539)\"><path id=\"path20\" d=\"M-131.66-38.43c-18.57 0-35.6-13.16-37.15-41.79-1.55-37.15-27.09-55.73-54.18-55.73-37.15 0-54.18 27.86-54.18 53.4 0 30.96 17.8 58.82 62.69 58.82h12.38c68.88 0 110.68 35.6 110.68 95.2 0 58.82-39.47 95.97-106.03 95.97H-383.2c-56.5 0-95.97-37.15-95.97-95.97v-182.65c0-16.25-7.74-24.77-20.9-24.77h-7.74c-13.16 0-20.9 8.51-20.9 24.77v400.13c0 23.22-17.03 40.24-40.25 40.24s-40.24-17.03-40.24-40.24v-407.1c0-29.41 7.74-51.86 21.67-67.33 15.48-17.03 39.47-27.09 69.66-27.09h27.09c30.18 0 54.95 11.61 70.43 29.41 13.93 16.25 21.67 37.92 21.67 65.01V65.28c0 16.25 6.19 25.54 23.22 25.54h178.78c14.71 0 21.67-6.19 21.67-18.58 0-13.16-6.97-19.35-22.45-19.35h-14.71c-102.16 0-149.37-62.69-149.37-135.44 0-67.33 44.89-130.02 124.61-130.02 28.92 0 54.37 11.67 71.21 30.49 3.45-20.67 18.05-31.26 35.6-31.26 19.35 0 35.6 13.93 35.6 41.02v93.65c.01 27.08-18.56 40.24-37.14 40.24m-567.3-202.77c-24.77 0-42.57-17.03-42.57-41.02 0-23.99 17.8-41.02 42.57-41.02s42.57 17.03 42.57 41.02c-.01 23.99-17.81 41.02-42.57 41.02m-40.25 68.88v307.26c0 23.22 17.03 40.25 40.24 40.25 23.22 0 40.25-17.03 40.25-40.25v-307.26c0-23.22-17.03-40.24-40.25-40.24-23.21-.01-40.24 17.02-40.24 40.24\" style=\"fill:#fff\"/></g></g></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-154ocm5\",\"data-framer-name\":\"rabobank_logo_vector_1_white\",fill:\"black\",intrinsicHeight:453,intrinsicWidth:2500,layoutDependency:layoutDependency,layoutId:\"NxPcXFgSF\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 2500 453\" style=\"enable-background:new 0 0 2500 453\" xml:space=\"preserve\"><path d=\"M1479.29 292.29c-10.62 67.75-45.63 103.26-87.65 103.26-26.6 0-41.93-18.66-37.41-47.61l14.69-91.99c5.73-34.08 26.05-60.73 62.48-60.73 40.32-.01 58.7 27.38 47.89 97.07m-143.9 135.08c5.68 0 19.3 23.92 63.55 23.92 94.26 0 148.15-68.21 162.93-156.14 18.66-108.48-34.08-157.8-100.54-157.8-31.27 0-54.59 2.82-71.63 11.82L1415.33 0h-78.19l-77.77 445.89h58.93s8.59-18.38 17.64-18.38h-.55v-.14zm832.99-190.18c11.96-67.56-13.07-100.49-86.27-100.49-54.49 0-76.02 24.06-96.38 44.47l1.99-37.55-72.51.46-5.59 55.65-41.93 246.2h79.39l25.58-159.84c9.05-55.05 47.15-97.12 82.85-97.12 39.76 0 39.3 22.72 33.02 57.36l-34.59 199.6h78.74l35.7-208.74zm330.94-99.8h-92.55l-106.31 112.68-1.52-.32L2341.57.23h-77.22l-77.86 445.66h78.32l7.99-44.66 15.93-97.58c41.38 0 64.66 4.53 82.8 86.78l12.52 55.46h79.99s-19.9-84.33-32.93-117.26c-13.72-34.64-28.54-57.54-60.41-63.78l128.62-127.46zM224.76 246.66c57.27-12.52 87.05-58.84 95.04-88.95 20.41-82.85-16.39-147.55-122.06-146.4L76.7 11.18.68 445.89h78.88l31.22-174.61c72.74-1.99 81.65 15.7 95.27 100.49l12.52 74.12h81.79c-9.65-44.94-15.84-87.24-23.78-121.23-8.59-35.84-21.8-63.78-55.83-77.08l4.01-.92zm15.84-103.5c-6.79 38.61-36.71 65.72-73.57 65.72h-46.51l24.01-137.3 42.3-.09c50.21 0 60 33.02 53.77 71.67m356.66 82.12c11.31-65.9-23.88-88.58-94.81-88.58-88.58 0-127.14 42.03-127.14 42.03l27.2 45.95s28.63-33.57 85.76-33.57c31.82 0 32.51 16.26 29.46 33.57l-6.23 39.16c-114.12-2.82-172.54 21.66-185.61 96.52-10.67 61.33 35.33 90.93 86.91 90.93 26.65 0 48.21-4.06 74.26-26.69 5.13 14.69 14.27 22.54 24.43 24.15 16.44 3.42 44.84-.46 53.34-6.7-.65-9.1 0-32.28 9.65-86.78l22.78-129.99zm-93.61 80.08c-12.65 89.64-24.57 98.6-67.8 98.6-29.56 0-40.46-20.23-35.47-46.74 6.89-36.16 34.18-51.86 103.27-51.86m1345.29-80.08c11.36-65.9-23.88-88.58-94.86-88.58-88.53 0-127.14 42.03-127.14 42.03l27.29 45.95s28.59-33.57 85.62-33.57c31.91 0 32.56 16.26 29.56 33.57l-6.23 39.16c-114.16-2.82-172.54 21.66-185.65 96.52-10.81 61.33 35.19 90.93 86.82 90.93 26.65 0 48.26-4.06 74.4-26.69 4.99 14.69 14.13 22.54 24.34 24.15 16.44 3.42 44.84-.46 53.29-6.7-.55-9.1 0-32.28 9.65-86.78l22.91-129.99zm-93.66 80.08c-12.56 89.64-24.52 98.6-67.8 98.6-29.51 0-40.46-20.23-35.51-46.74 6.93-36.16 34.22-51.86 103.31-51.86M755.71 451.29c94.26 0 148.15-68.21 162.84-156.14 18.7-108.48-33.99-157.8-100.49-157.8-31.22 0-53.76 2.82-71.35 11.82L772.29 0h-78.51l-77.82 445.89h59.07s8.5-18.38 17.04-18.38c5.73-.14 19.35 23.78 63.64 23.78m32.93-256.08c40.32 0 57.4 27.25 47.89 97.07-9.7 71.35-45.63 103.36-88.21 103.36-26.65 0-41.98-18.75-36.9-47.71l14.73-91.9c5.63-34.13 26.05-60.73 61.88-60.73h.6l.01-.09zm162.98 124.14c12.15-113.52 63.32-183.76 185.01-183.76 90.29 0 120.21 68.95 108.07 143.07-19.4 118.5-65.53 174.34-181.36 174.34-74.96 0-119.48-61.15-111.72-133.65m210.63-35.19c5.82-31.4 11.96-92.36-42.07-92.36-36.3 0-70.2 24.62-85.44 110.88-9.28 52.79.88 95.09 42.95 95.09 30.76-.05 68.31-25.4 84.56-113.61\" style=\"fill:#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-g1owg1\",\"data-framer-name\":\"Philips_logo_new_white\",fill:\"black\",intrinsicHeight:92,intrinsicWidth:550,layoutDependency:layoutDependency,layoutId:\"fuvXZcQYu\",svg:'<svg version=\"1.1\" id=\"svg2759\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0\" y=\"0\" viewBox=\"0 0 550 92\" style=\"enable-background:new 0 0 550 92\" xml:space=\"preserve\"><style>.st0{clip-path:url(#SVGID_00000053524168064291557080000005241669645661151165_)}</style><g id=\"layer1\" transform=\"translate(-127.26 -383.69)\"><g transform=\"matrix(1.25 0 0 -1.25 -154.36 849.47)\" id=\"g2851\"><defs><path id=\"SVGID_1_\" d=\"M-216.68-167.97h1315.45v930.12H-216.68z\"/></defs><clipPath id=\"SVGID_00000137841862338711970780000000811704110525525156_\"><use xlink:href=\"#SVGID_1_\" style=\"overflow:visible\"/></clipPath><g id=\"g2853\" style=\"clip-path:url(#SVGID_00000137841862338711970780000000811704110525525156_)\"><path id=\"path2859\" d=\"M381.02 370.61h-21.48v-27.97h-22.36v27.97H315.7v-70.37h21.48v27.68h22.36v-27.68h21.48v70.37zm74.72-56.23v56.23h-21.48v-70.37h38.84l3.23 14.14h-20.59zm-37.36 56.23H396.9v-70.37h21.48v70.37zm87.08 0h-21.47v-70.37h21.47v70.37zm105.9-17.96c0 3.83 3.83 5.6 10 5.6 6.77 0 14.13-1.48 19.13-3.55l-1.76 15.32c-5.6 1.18-10.6 2.06-19.71 2.06-17.36 0-29.13-6.85-29.13-21.2 0-24.73 33.55-19.73 33.55-31.21 0-4.41-3.25-6.76-11.19-6.76-7.05 0-17.95 2.35-24.42 5.59l2.36-16.2c6.47-2.36 15.29-3.53 22.36-3.53 17.94 0 32.65 5.89 32.65 23.56 0 23.54-33.84 19.13-33.84 30.32m-60.59-35.63c19.99 0 32.65 10.31 32.65 28.27 0 19.72-13.53 26.79-35.6 26.79-8.53 0-18.83-.59-26.18-1.47v-70.37h21.48v16.78h7.65zm11.47 27.97c0-9.12-4.41-15.31-15.6-15.31h-3.52v29.08c1.25.07 2.42.07 3.52.07 10.59 0 15.6-5 15.6-13.84m-287.72-27.97c20 0 32.65 10.31 32.65 28.27 0 19.72-13.53 26.79-35.59 26.79-8.54 0-18.83-.59-26.19-1.47v-70.37h21.48v16.78h7.65zM286 344.99c0-9.12-4.42-15.31-15.6-15.31h-3.53v29.08c1.25.07 2.43.07 3.53.07 10.59 0 15.6-5 15.6-13.84\" style=\"fill:#fff\"/></g></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1s51t8o\",\"data-framer-name\":\"gsk_logos_idxHE8jfkV_white\",fill:\"black\",intrinsicHeight:103,intrinsicWidth:342,layoutDependency:layoutDependency,layoutId:\"bnPLGsU__\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 341.8 103\" style=\"enable-background:new 0 0 341.8 103\" xml:space=\"preserve\"><path d=\"M94.9 41.3h-34v6.4c0 7.5 6 13.7 13.5 13.7h8.3v16.5c0 2.2-1.8 3.9-3.9 3.9H27.2c-3.3 0-5.9-2.7-5.9-5.9V27.2c0-3.3 2.6-5.9 5.9-5.9h55.4V0h-57c-4 0-7.9.9-11.5 2.7-5 2.4-9 6.5-11.4 11.4C.9 17.7 0 21.6 0 25.6v51.8c0 4 .9 7.9 2.7 11.5 2.4 5 6.5 9 11.4 11.4 3.6 1.8 7.5 2.7 11.5 2.7h43c8 0 14.5-6.5 14.5-14.5v-5.8c0-.5.4-1 .9-1h.1c11.5-.3 18.9-5.9 18.9-15.6V41.3h-8.1zm23.6-1.3c0 13.2 11 21.4 26 21.4h50.3c3-.2 5.7 2.1 5.9 5.1v9.4c.2 3-2.1 5.7-5.1 5.9H124V103h71.4c14.1.4 25.8-10.8 26.2-24.9V67.4c.4-14.1-10.8-25.8-24.9-26.2h-51.5c-3 .2-5.7-2.1-5.9-5.1V25.2c-.2-2 1.3-3.8 3.3-3.9H213V0h-59.7c-7.9 0-14.4 6.4-14.5 14.3v5.9c0 .5-.4 1-.9 1h-.1c-10.2.4-19.3 6.1-19.3 18.8zm120.3 32.9V103H260V55.8c0-2.1 1.6-2.5 2.8-1.3l50 48.5h29l-53-51.5 53-51.5h-29l-50 48.5c-1.2 1.2-2.8.8-2.8-1.3V0h-21.2v30.3c0 10.9 7.1 17.4 19.7 20.9.5.2.5.7 0 .8-12.6 3.4-19.7 10-19.7 20.9z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-if4414\",\"data-framer-name\":\"Standard_Bank_Logo_white\",fill:\"black\",intrinsicHeight:186,intrinsicWidth:893,layoutDependency:layoutDependency,layoutId:\"cYYEsDdSq\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 892.91 185.67\" style=\"enable-background:new 0 0 892.91 185.67\" xml:space=\"preserve\"><path d=\"M537.06 619.68c-1.2 1.44-5.15 5.76-11.51 5.76-6.48 0-10.43-5.16-10.43-17.62 0-13.07 4.31-17.86 11.03-17.86 5.4 0 9.35 3 10.91 4.19v25.53zm-101.24 2.88c-1.08.84-4.67 4.43-10.07 4.43-3.96 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm-55.63-2.88c-1.2 1.44-5.15 5.76-11.51 5.76-6.47 0-10.43-5.16-10.43-17.62 0-13.07 4.32-17.86 11.03-17.86 5.39 0 9.35 3 10.9 4.19v25.53h.01zm-124.56 2.88c-1.08.84-4.67 4.43-10.07 4.43-3.96 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm427.74 0c-1.07.84-4.67 4.43-10.07 4.43-3.95 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm-55.31-9.95c0 5.87-2.4 9.47-5.99 11.27-3.35 1.56-7.31 1.68-13.78 1.68h-5.51v-25.05h7.67c7.07 0 9.59.36 12.11 1.68 3.47 1.79 5.5 5.15 5.5 10.42zm-.95-34.76c0 9.11-4.32 12.47-18.22 12.47h-6.11v-23.49h7.67c7.19 0 9.82.36 12.47 1.92 2.75 1.67 4.19 5.15 4.19 9.1zm-75.55 58.38v-84.39l-14.5 2.16v30.93c-3.96-3.24-8.39-6.95-16.06-6.95-13.43 0-21.1 11.15-21.1 30.21 0 18.58 8.75 29.25 21.82 29.25 9.35 0 15.22-6.71 16.3-8.03l.96 6.83 12.58-.01zm-53.55-45.31v-12.95c-12.23.12-18.82 8.51-20.86 10.67l-1.08-9.47h-12.46v57.06h14.5v-37.52c2.29-2.16 7.68-7.67 19.9-7.79zm-48.28 45.31v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.74-2.4 8.39 0 9.47 3 9.47 9.59v3c-12.95.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-55.03 0v-84.39L380.19 554v30.93c-3.95-3.24-8.39-6.95-16.06-6.95-13.43 0-21.1 11.15-21.1 30.21 0 18.58 8.75 29.25 21.81 29.25 9.35 0 15.23-6.71 16.31-8.03l.96 6.83 12.59-.01zm-62.88 0v-37.16c0-9.23-.48-21.1-16.18-21.1-8.27 0-16.06 5.87-19.65 8.75l-1.08-7.55h-12.46v57.06h14.5v-41.11c2.27-1.44 7.91-5.15 13.18-5.15 6.47 0 7.19 4.55 7.19 11.75v34.52h14.5zm-62.29 0v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.74-2.4 8.39 0 9.47 3 9.47 9.59v3c-12.95.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-48.83-2.88-3-8.27c-.84.24-4.92 1.8-9.47 1.8-5.99 0-6.35-3.84-6.35-8.51v-29.49h15.7l1.44-9.71h-17.14v-18.1l-12.46 2.16-2.04 15.94-9.59 1.8v7.91h9.59v27.57c0 7.79.24 13.91 4.43 17.62 2.4 2.16 6.12 3.48 11.51 3.48 9.58-.01 16.05-3.6 17.38-4.2zm-43.75-21.1c0-13.66-8.51-18.46-20.38-22.29-10.67-3.36-17.26-5.28-17.26-12.35 0-7.67 6.47-10.91 13.78-10.91 8.87 0 16.3 2.64 18.1 3.24l3.36-10.07c-2.64-1.32-12.11-4.67-22.42-4.67-17.14 0-27.69 8.75-27.69 23.49 0 22.65 24.34 21.1 33.8 28.29 2.52 1.92 3.72 4.2 3.72 7.43 0 6.71-5.87 11.51-15.1 11.51-10.07 0-17.14-3.96-18.34-4.56l-5.04 9.83c.6.6 9.71 6.11 24.22 6.11 18.7 0 29.25-9.35 29.25-25.05zm647.43 24.02-23.98-29.85 22.42-27.21h-15.34l-20.5 25.41v-52.74l-14.5 2.16v82.23h14.5v-26.85l20.73 26.85h16.67zm-64.89 0v-37.16c0-9.23-.48-21.1-16.18-21.1-8.27 0-16.06 5.87-19.66 8.75l-1.08-7.55H710.1v57.06h14.51v-41.11c2.28-1.44 7.91-5.15 13.18-5.15 6.47 0 7.19 4.55 7.19 11.75v34.52l14.51-.01zm-62.21-.06v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.75-2.4 8.39 0 9.46 3 9.46 9.59v3c-12.94.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-53.75-21.69c0-12.11-6.59-18.22-18.46-19.42 11.03-1.8 16.66-8.27 16.66-18.94 0-19.66-17.02-19.9-31.64-19.9h-22.18v79.95h19.66c14.03 0 18.22-.48 23.01-2.4 8.27-3.23 12.95-9.82 12.95-19.29zm-689.42-28.93L5.8 688.98l-3.69-1.67c-26.34-12.72-45.29-33.94-48.47-63.57-.87-8.13-.41-23.01.47-38.15zM73.19 623.1c-2.37 22.14-13 39.21-28.72 51.83l-21.65-42.34c-1.71-3.35-4.42-5.56-4.42-5.56 6.75 2.12 14.73 7.31 27.69 7.31 12.39 0 22.91-7.34 27.1-11.24zm-99.33-76.62c11.09-1.56 24.7-2.87 39.49-2.87 23.9 0 44.71 3.42 56.51 5.73l.65 6.74c-6.87 3.75-15.98 8.03-29 7.35-16.9-.89-26.21-9.59-40.32-10.33-5.2-.27-10.21.37-14.92 1.77l-12.74-8.34.33-.06v.01zM39.8 695.74.1 617.75c4.29-2.83 9.27-4.48 14.78-4.48 11.23 0 19.3 7.54 31.2 7.54 7.16 0 19.73-5.51 27.43-11.77l-.19-9.82c-.37-9.91-1.08-20.89-1.83-30.8-6.97 3.86-16.33 8.61-29.99 7.89-16.9-.88-26.62-10.3-40.73-11.04-8.89-.46-17.77 1.34-24.97 5.44l-.06-7.75c0-1.19-.49-2.37-1.51-3.13l-15.51-11.69a2.08 2.08 0 0 0-1.15-.35c-1.07 0-1.94.87-1.94 1.94v19.43c0 1.28.64 2.38 1.6 3.09l6.29 4.67 64.05 125.1c-4.62 2.08-9.39 3.92-14.25 5.52-37.64-12.38-69.62-39.3-74.25-82.24-1.94-18.11 1.89-63.34 3.51-80.83.39-4.2 2.94-7.72 6.97-8.57 11.03-2.3 35.31-6.9 63.77-6.9s52.74 4.6 63.77 6.9c4.03.84 6.59 4.37 6.97 8.57 1.62 17.5 5.45 62.73 3.5 80.83-3.48 32.38-22.51 55.65-47.8 70.44h.04z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#fff\" transform=\"translate(64.992 -525.434)\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:54.5,intrinsicWidth:150,pixelHeight:109,pixelWidth:300,src:new URL(\"assets/OmoKBI66S1vJqH5qm7n2vkfvA.svg\",\"https://framerusercontent.com/modules/n3gloULqFoFry3WkK55y/BpMLnaD2YgabLBbkia7j/THpLozDff.js\").href},className:\"framer-vl35so\",\"data-framer-name\":\"London_Stock_Exchange_white\",layoutDependency:layoutDependency,layoutId:\"P5PtsQq7C\"}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-857730\",\"data-framer-name\":\"$01_BPI_Logo_Official_white\",fill:\"black\",intrinsicHeight:302,intrinsicWidth:649,layoutDependency:layoutDependency,layoutId:\"uheg1I5QF\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 649 302\" style=\"enable-background:new 0 0 649 302\" xml:space=\"preserve\"><path d=\"M244 241.6V73.1h63.2c25.4 0 44.2 3.5 56.4 10.6 12.1 7.1 18.2 18 18.2 32.9 0 9.9-3 18-9 24.3s-15 10.8-27 13.6c13.9 2.5 24.1 7.1 30.8 13.9 6.7 6.7 10.1 15.8 10.1 27.1 0 15.4-5.5 26.9-16.4 34.6s-27.4 11.5-49.5 11.5H244zm45.2-100.2h18.1c10 0 17.4-1.5 22-4.6s7-7.9 7-14.5c0-6.2-2.4-10.9-7.3-14.1-4.9-3.1-12.1-4.7-21.7-4.7h-18.1v37.9zm0 69.6h18.1c11.3 0 19.5-1.6 24.6-4.9 5-3.2 7.5-8.5 7.5-15.8 0-6.8-2.6-11.8-7.8-15-5.2-3.2-13.3-4.9-24.3-4.9h-18.1V211zM407 241.6V73.1h77.2c22 0 38.7 4.5 50 13.7 11.3 9.1 17 22.5 17 40.1 0 17.3-5.6 30.8-16.8 40.4s-26.8 14.5-46.8 14.5h-33.7v59.9H407v-.1zm46.8-92.9h20.8c10 0 17.3-1.8 22.1-5.5s7.1-9.3 7.1-17c0-7.5-2.3-13-7-16.5s-12.1-5.2-22.2-5.2h-20.8v44.2zm117.4 92.9V73.1h46.6v168.5h-46.6z\" style=\"fill:#fff\"/><path d=\"M24.8 215.4c1.5 3.9 4.6 7.6 9.3 11.3 6.9 5.4 58.9 40 74.6 50.4l3.5 2.3 2.9-1.9c2.7-1.8 65.9-44.7 73.6-50.8 4.7-3.7 7.7-7.4 9.3-11.3 2.4-6.3 1.5-11.2.8-14.8v-.2c-.3-1.7-10.6-64-16.2-93.6-22.7-3.6-45.9-5.5-69.6-5.5h-1.6v161.4c-31.7-20.8-62.5-40.9-67.6-44.9-3.1-2.4-5-4.6-5.8-6.6-1.3-3.2-.8-6-.2-8.8.4-1.9 11.5-68.7 16.9-97.1-4.9.6-8.6 1.3-13.4 2.1-5.6 29.7-16.9 91.3-17.2 93.1-.8 3.7-1.7 8.6.7 14.9zm41.3-84.9h5.6v4.8h4.9v-5.1h5.9v5.1h4.7v-4.9h5.6V143H66.1v-12.5zm4.4 14.7h17.9l6.2 49.7H64.3l6.2-49.7zm-9.6 52h37v12.5h-10v-3.2H70.8v3.2h-10v-12.5h.1zm14.4-24.9h8.5v-3.1h-8.5v3.1zm8.4-12.9h-8.5v3.1h8.5v-3.1zm-8.5 22.7h8.5V179h-8.5v3.1zM69.7 81.5c-3.5.4-5.9.8-9.1 1.8-.5 2.8-1.5 8.3-2.4 12.6 17.6-2.5 35.6-3.9 53.9-3.9 17.2 0 34.1 1.3 50.8 3.5-.9-4.2-1.8-9.4-2.3-12.2-2.2-.9-5.1-1.5-8.8-1.7 11.7-2.8 18.8-11 18.8-18.9 0-10.4-8.2-18.7-28.5-20.8-7.2-5.6-17.2-8-25.8-8.7 2.1-1.5 3.6-4.1 3.6-7 0-4.7-4.7-8.4-9.2-8.4s-9.2 3.8-9.2 8.4c0 2.9 1.4 5.5 3.6 7-8.7.7-18.6 3.1-25.8 8.7-20.2 2-28.5 10.3-28.5 20.8 0 7.9 7.2 16.1 18.9 18.8zm76.7-33.2s15.4 1.4 15.2 14.8c-.1 10.6-11.6 16.4-26.2 14.6 20.1-8.2 15.8-23.7 11-29.4zm-31-7.9c12.9 1.2 22.9 9.2 22.9 19.1 0 10-10.3 18.2-23.5 19.1 2.7-3.6 4.5-10.9 4.5-19.5.1-7.9-1.5-14.8-3.9-18.7zm-9.4 0c-2.3 3.8-3.9 10.7-3.9 18.7 0 8.6 1.9 15.9 4.5 19.5-13.2-1-23.5-9.1-23.5-19.1 0-9.9 10-17.9 22.9-19.1zm-30.9 7.9c-4.8 5.7-9.1 21.2 11 29.3C71.5 79.4 60 73.7 59.9 63c-.2-13.3 15.2-14.7 15.2-14.7zm76.1 172c.2-.6.3-1.2.5-1.8 1-.2 2-.3 3-.5 1.9-1.2 1.7-5.1 3.6-6.2.9-.5 1.3.2 1.7.7.6-1.3.4-3.2 1-4.7 1.6-3.8 5-5.9 3.7-12.4-.1-.1-.2-.2-.2-.3-.6.9-.8 1.5-1.5 2.2-4.9-.3-3.1-11.3.2-12.3 2.4 6.5 12.7 8.4 13.3-.2.1-1.7-1.3-4.1-3-6.8.7-2.7 1.8-4.9 2.8-6.3.6-.8-2.8.7-4.4 3.7.7-2.9 1.9-5.3 2.9-6.8.6-.8-2.4.5-4.1 3.2.7-2.9 1.9-5.2 2.9-6.7.6-.9-3.1.8-4.6 4.2-.5-1.7-.9-3.4-.8-5.1.1-4.1 1.3-12.2 2.9-18.8.4-1.9 1.4-5.4 4.1-6.9-2.1-.5-5.7 1.4-5.6 5.5-.6-6-5.1-8-7.4-8.4 7.4 6.5 1.3 21.4 1.4 28.4.1 8.8 10.6 18 9 21.1-2.4 4.6-6.9-4.2-8.2-7-1.4-2.8-6.2-7.2-9.7-10.6 2.1-1.5 4.4-5.2 4.5-9.2.3.4.7.8 1 1.2h.5c-.5-3.7 1-7.5-.2-10.9h1.7c-.5-16.3-12.3-12.9-18-11.5l-.3.9c.8 0 1.5.1 2.3.1v.1l-1.8.6c-.3 1.1 0 3.7 1.4 5 .5-1.2.6-1.7 1.7-2.2 1.4.7 2.3 3.1 1.4 5.3-1 .4-2 .2-2.4-1h-.1c-.6 2.4-.4 4.9 1.4 6.5.1-2 .8-2.9 2.5-2.8-.5 4.9-3.8 3.8-7.1 5.1-6.1 2.4-7.8 11.6-13.3 13.1.5 2.2 2.6 4 4.2 4.8-.8 1.5-4.2 6.2-5.7 6.4-.6-.8-1.1-1.6-2.1-1.9-1 .3-1.9.5-2.9.8-.1.3-.3.7-.5 1 .4.1.8.2 1.3.3 0 .6-.1 1.2-.1 1.8.8.2 1.9.2 2.6.6 0 .2.1.3.1.5-.9-.2-1.8-.6-2.8-.3-.6.4-1.9 2.8-1.6 3.8v.3c.3-.3.5-.5.8-.7.6.2.6.3.7 1l.6.3c.7-.7 1.5-1.4 2.2-2.1h.1c.1.1.1.3.2.4-.7.7-1.3 1.4-2 2.1-.1 1.2-.3 2.5-.1 4.1.5-.4.9-.9 1.4-1.3 1.8 1.7 2.9-.5 3.9-2.2.6.6 1.3.7 2.1.7 0 .4.1.9.1 1.3h.1c2.9-2.8-.8-5.2 2.6-8.6 1.6 1 2.8.7 4.4 0 .3-.4.5-.8.8-1.2-.9-.3-1.4-.7-1.8-1.6 0-.6 0-.7.2-1 .7-1.5 3.2-1.3 4.6-.8 3.7 1.5 5.9 4.8 8.6 7.5-.2 3.4-.6 7.8.1 10.9.8 3.1 3 4.5 2.2 8.4 1.4-.1 2.1-.8 2.6-1.9.5 0 1.1.1 1.6.1-1.4 2.6-3.9 7.6-6.7 8.3-2.5.7-3.5-2.4-5.9-1.6l-1 1c-1.1.6-1.4-.2-2.1 1.2v.4c.4 0 .8.1 1.3.1.1.5.2 1.1.3 1.6.7-.7 1.3-1.5 2-2.2 0 .1.1.2.1.3-1 .9-1.7 2.3-2.4 3.6-.1.9 0 1.6.1 2.5.1.1.1.1.2.1.2-.4.5-.8.7-1.2h.5l.6.9h.5c.2-1.2.5-2.5.7-3.7l.3-.3c0 .1.1.1.1.1-.7 2-1 4.1-.5 6.3.1.1.3.3.5.4.1-.3.2-.7.3-1 .5-.5.8-.6 1.8-.6.1-1.6-.4-3 .7-4-.7 1.6-.5 4-.1 5.9.3.5.5.7.8.9m-1.9-80.5v-2c1.4-.1 3.2-.2 4.1.4-1.3.6-2.7 1.1-4.1 1.6zm2.7 60.3v-.1c-1.4-1.1-6.2-7-4.7-10.4.6-1.9 2.4-1.4 3.4-.5.1-1 .2-2.1.2-3.1-.9-1.4-3.2-2.1-2.3-4.6-6.1-4.9-5.7 3.4-10.9 3.3.2 1.9 1.1 3.3 2.8 3.4 0 3.9 1.5 6.6 3.2 8.2 0 .1.1.3.1.4-2.3.3-5.2.7-6.9-.7-2-1.7-2.5-4.2-6-4v.1l.6.9c.1.5-.2.7-.3 1.3v.2c.7.2 1.3.4 2 .6h.2v.6c-1.9-.4-3.9-.3-4.6 1.8v.2h1.2c.3.6.6 1.1.7 2.1l2.1-2.4h.1c-.4 2.2-2.2 2.8-2.4 5.5v.1c.4 0 .9-.4 1.4-.7.4.4.8.8 1.1 1.2.5-.5.7-1.8.9-2.7h.5c-.3 1.6-1.2 3.6-.6 5.2.2.2.4.5.6.7.2-.5.3-1 .5-1.5.7-.5 1.2.5 2.4 0 1.4-.6 1.4-2.5 3.4-2.5.5.6.8.9.8 2.2 1.3-.4 1.7-1.7 2.9-2.1 3.9-1.3 4.8.6 7.6-2.7zm-10.1-52c2.6-.3 3.5-3.2 6.2-3.3v-.2c-.7-.1-1.2-.3-2-.1-1.3.3-7.3 3.6-4.9-1.5-1.9.8-2.6 5.4.7 5.1zm-18.4 13.1v.1c.6.8 2.1.6 3.2.6.4-.6.8-1.3 1.3-1.9h.2c1.3 1.7 2.7 3.4 4 5.1h.2c1.3-1.2 2.2-2.9 3.2-4.5-.4-2.5-3.3-3.6-4-6-.9-2.7 1.8-6.5-1.6-8.4 0 1.4-.6 1.7-.7 2.5.1.8.2 1.6.2 2.4v.3h-.1c-.5-.6-.4-1.5-.8-2.4-.4-.9-2.5-2-3.4-2.2v.2c.3 1 .1 1.8.2 2.6.5.8 1 1.7 1.5 2.5v.6h-.3c-.5-.6-1.1-1.3-1.6-1.9-.8-.4-2.4 0-3.2.3.3.4.7.8 1 1.2.8 1.3 4.6 5.7.7 8.9zm23.3-33.5c1.1-.9 2.7-1.3 4-1.4-.3-.2-.6-.6-.6-1.1 0-.7.7-1.3 1.4-1.3s1.4.6 1.4 1.3c0 .5-.2.9-.6 1.1 1.4.1 2.9.5 4 1.4 3.2.3 4.5 1.6 4.5 3.2 0 1.4-1.3 2.8-3.5 3.1-.1.5-.1 1.1-.2 1.4-1.3-.4-3.7-.6-5.7-.6-1.9 0-4.6.3-5.7.6 0-.3-.1-.9-.2-1.4-2.2-.3-3.5-1.7-3.5-3.1.3-1.6 1.5-2.9 4.7-3.2zm12.9 3.3c0-1.8-2.2-2-2.2-2 .7.8 1.3 2.9-1.6 4 2.1.2 3.8-.6 3.8-2zm-3.6-.6c0-1.4-1.6-2.5-3.6-2.6.4.5.6 1.5.6 2.6 0 1.2-.3 2.2-.7 2.7 2-.2 3.7-1.3 3.7-2.7zm-5 2.7c-.4-.5-.7-1.5-.7-2.7 0-1.1.2-2.1.6-2.6-2 .2-3.6 1.3-3.6 2.6 0 1.4 1.6 2.5 3.7 2.7zm-3.5-.1c-3-1.1-2.3-3.3-1.6-4.1 0 0-2.3.2-2.2 2 0 1.6 1.7 2.4 3.8 2.1z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#fff\"/></svg>',withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-bzl4an-container\",layoutDependency:layoutDependency,layoutId:\"Tucwd3N4Q-container\",children:/*#__PURE__*/ _jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:.5,id:\"Tucwd3N4Q\",layoutId:\"Tucwd3N4Q\",padding:24,paddingBottom:24,paddingLeft:24,paddingPerSide:false,paddingRight:24,paddingTop:24,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-egqko\",\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"fPvgY2GO_\",children:[/*#__PURE__*/ _jsx(SVG,{className:\"framer-bjxxtm\",\"data-framer-name\":\"Ila_Logo_ENGLISH_Green_375C\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TPfVreoFj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><g transform=\"translate(-21.556 -6.654)\" id=\"ss12437501_1\"><g id=\"ss12437501_2\"><g id=\"ss12437501_3\"><path d=\"M 0 73.307 L 103.667 73.307 L 103.667 0 L 0 0 Z\" fill=\"transparent\"></path><g transform=\"translate(30.605 15.35)\" id=\"ss12437501_5\"><path d=\"M 39.828 24.008 C 38.615 24.008 37.503 24.867 37.402 26.737 C 37.301 29.163 35.633 30.376 33.864 30.376 C 31.438 30.376 30.325 28.557 30.325 26.889 C 30.325 24.867 31.488 23.048 34.42 23.048 L 35.228 23.048 C 39.726 23.048 42.456 20.723 42.456 16.831 C 42.456 12.989 39.878 10.563 35.532 10.563 L 23.401 10.563 C 19.711 10.563 17.134 12.989 17.134 16.831 L 17.134 28.759 C 17.134 29.82 16.628 30.376 15.769 30.376 L 15.263 30.376 C 14.404 30.376 13.898 29.821 13.898 28.759 L 13.898 2.628 C 13.898 1.112 12.786 0 11.27 0 C 9.753 0 8.642 1.112 8.642 2.628 L 8.642 29.214 C 8.642 31.135 9.147 32.601 10.057 33.611 C 11.068 34.723 12.635 35.38 14.606 35.38 L 16.375 35.38 C 18.346 35.38 19.964 34.622 20.975 33.46 C 21.885 32.398 22.39 30.983 22.39 29.214 L 22.39 17.235 C 22.39 16.174 22.794 15.567 23.907 15.567 L 35.582 15.567 C 36.543 15.567 36.997 15.971 36.997 16.78 C 36.997 17.64 36.542 18.044 35.531 18.044 L 34.57 18.044 C 27.899 18.044 24.816 22.138 24.816 26.889 C 24.816 31.286 27.747 35.38 32.953 35.38 C 34.842 35.38 36.504 34.618 37.604 33.389 C 37.829 34.739 38.783 35.43 39.929 35.43 C 41.192 35.43 42.254 34.521 42.254 32.752 L 42.254 26.636 C 42.254 24.867 41.042 24.008 39.828 24.008 M 2.78 37.25 C 1.162 37.25 0 38.362 0 39.929 C 0 41.495 1.162 42.608 2.78 42.608 C 4.398 42.608 5.56 41.495 5.56 39.929 C 5.559 38.362 4.397 37.25 2.78 37.25 M 0.152 32.752 L 0.152 12.686 C 0.152 11.169 1.264 10.057 2.779 10.057 C 4.296 10.057 5.408 11.169 5.408 12.686 L 5.408 32.752 C 5.408 34.268 4.296 35.38 2.779 35.38 C 1.264 35.38 0.152 34.268 0.152 32.752\" fill=\"rgb(32,27,33)\"></path></g></g></g></g></svg>',svgContentId:12437501,withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-14ea3k8\",\"data-framer-name\":\"rabobank_logo_vector_1\",fill:\"black\",intrinsicHeight:453,intrinsicWidth:2500,layoutDependency:layoutDependency,layoutId:\"dZbIvsHOZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 2500 453\" style=\"enable-background:new 0 0 2500 453\" xml:space=\"preserve\"><path d=\"M1479.29 292.29c-10.62 67.75-45.63 103.26-87.65 103.26-26.6 0-41.93-18.66-37.41-47.61l14.69-91.99c5.73-34.08 26.05-60.73 62.48-60.73 40.32-.01 58.7 27.38 47.89 97.07m-143.9 135.08c5.68 0 19.3 23.92 63.55 23.92 94.26 0 148.15-68.21 162.93-156.14 18.66-108.48-34.08-157.8-100.54-157.8-31.27 0-54.59 2.82-71.63 11.82L1415.33 0h-78.19l-77.77 445.89h58.93s8.59-18.38 17.64-18.38h-.55v-.14zm832.99-190.18c11.96-67.56-13.07-100.49-86.27-100.49-54.49 0-76.02 24.06-96.38 44.47l1.99-37.55-72.51.46-5.59 55.65-41.93 246.2h79.39l25.58-159.84c9.05-55.05 47.15-97.12 82.85-97.12 39.76 0 39.3 22.72 33.02 57.36l-34.59 199.6h78.74l35.7-208.74zm330.94-99.8h-92.55l-106.31 112.68-1.52-.32L2341.57.23h-77.22l-77.86 445.66h78.32l7.99-44.66 15.93-97.58c41.38 0 64.66 4.53 82.8 86.78l12.52 55.46h79.99s-19.9-84.33-32.93-117.26c-13.72-34.64-28.54-57.54-60.41-63.78l128.62-127.46zM224.76 246.66c57.27-12.52 87.05-58.84 95.04-88.95 20.41-82.85-16.39-147.55-122.06-146.4L76.7 11.18.68 445.89h78.88l31.22-174.61c72.74-1.99 81.65 15.7 95.27 100.49l12.52 74.12h81.79c-9.65-44.94-15.84-87.24-23.78-121.23-8.59-35.84-21.8-63.78-55.83-77.08l4.01-.92zm15.84-103.5c-6.79 38.61-36.71 65.72-73.57 65.72h-46.51l24.01-137.3 42.3-.09c50.21 0 60 33.02 53.77 71.67m356.66 82.12c11.31-65.9-23.88-88.58-94.81-88.58-88.58 0-127.14 42.03-127.14 42.03l27.2 45.95s28.63-33.57 85.76-33.57c31.82 0 32.51 16.26 29.46 33.57l-6.23 39.16c-114.12-2.82-172.54 21.66-185.61 96.52-10.67 61.33 35.33 90.93 86.91 90.93 26.65 0 48.21-4.06 74.26-26.69 5.13 14.69 14.27 22.54 24.43 24.15 16.44 3.42 44.84-.46 53.34-6.7-.65-9.1 0-32.28 9.65-86.78l22.78-129.99zm-93.61 80.08c-12.65 89.64-24.57 98.6-67.8 98.6-29.56 0-40.46-20.23-35.47-46.74 6.89-36.16 34.18-51.86 103.27-51.86m1345.29-80.08c11.36-65.9-23.88-88.58-94.86-88.58-88.53 0-127.14 42.03-127.14 42.03l27.29 45.95s28.59-33.57 85.62-33.57c31.91 0 32.56 16.26 29.56 33.57l-6.23 39.16c-114.16-2.82-172.54 21.66-185.65 96.52-10.81 61.33 35.19 90.93 86.82 90.93 26.65 0 48.26-4.06 74.4-26.69 4.99 14.69 14.13 22.54 24.34 24.15 16.44 3.42 44.84-.46 53.29-6.7-.55-9.1 0-32.28 9.65-86.78l22.91-129.99zm-93.66 80.08c-12.56 89.64-24.52 98.6-67.8 98.6-29.51 0-40.46-20.23-35.51-46.74 6.93-36.16 34.22-51.86 103.31-51.86M755.71 451.29c94.26 0 148.15-68.21 162.84-156.14 18.7-108.48-33.99-157.8-100.49-157.8-31.22 0-53.76 2.82-71.35 11.82L772.29 0h-78.51l-77.82 445.89h59.07s8.5-18.38 17.04-18.38c5.73-.14 19.35 23.78 63.64 23.78m32.93-256.08c40.32 0 57.4 27.25 47.89 97.07-9.7 71.35-45.63 103.36-88.21 103.36-26.65 0-41.98-18.75-36.9-47.71l14.73-91.9c5.63-34.13 26.05-60.73 61.88-60.73h.6l.01-.09zm162.98 124.14c12.15-113.52 63.32-183.76 185.01-183.76 90.29 0 120.21 68.95 108.07 143.07-19.4 118.5-65.53 174.34-181.36 174.34-74.96 0-119.48-61.15-111.72-133.65m210.63-35.19c5.82-31.4 11.96-92.36-42.07-92.36-36.3 0-70.2 24.62-85.44 110.88-9.28 52.79.88 95.09 42.95 95.09 30.76-.05 68.31-25.4 84.56-113.61\" style=\"fill:#201b21\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-17eqmcc\",\"data-framer-name\":\"Philips_logo_new\",fill:\"black\",intrinsicHeight:92,intrinsicWidth:550,layoutDependency:layoutDependency,layoutId:\"vbeoZ9B9t\",svg:'<svg version=\"1.1\" id=\"svg2759\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0\" y=\"0\" viewBox=\"0 0 550 92\" style=\"enable-background:new 0 0 550 92\" xml:space=\"preserve\"><style>.st0{clip-path:url(#SVGID_00000164477730698358247920000009656420216119900324_)}</style><g id=\"layer1\" transform=\"translate(-127.26 -383.69)\"><g transform=\"matrix(1.25 0 0 -1.25 -154.36 849.47)\" id=\"g2851\"><defs><path id=\"SVGID_1_\" d=\"M-85.14-74.96H967.22v744.1H-85.14z\"/></defs><clipPath id=\"SVGID_00000003805774075873391920000000358549629357646731_\"><use xlink:href=\"#SVGID_1_\" style=\"overflow:visible\"/></clipPath><g id=\"g2853\" style=\"clip-path:url(#SVGID_00000003805774075873391920000000358549629357646731_)\"><path id=\"path2859\" d=\"M381.02 370.61h-21.48v-27.97h-22.36v27.97H315.7v-70.37h21.48v27.68h22.36v-27.68h21.48v70.37zm74.72-56.23v56.23h-21.48v-70.37h38.84l3.23 14.14h-20.59zm-37.36 56.23H396.9v-70.37h21.48v70.37zm87.08 0h-21.47v-70.37h21.47v70.37zm105.9-17.96c0 3.83 3.83 5.6 10 5.6 6.77 0 14.13-1.48 19.13-3.55l-1.76 15.32c-5.6 1.18-10.6 2.06-19.71 2.06-17.36 0-29.13-6.85-29.13-21.2 0-24.73 33.55-19.73 33.55-31.21 0-4.41-3.25-6.76-11.19-6.76-7.05 0-17.95 2.35-24.42 5.59l2.36-16.2c6.47-2.36 15.29-3.53 22.36-3.53 17.94 0 32.65 5.89 32.65 23.56 0 23.54-33.84 19.13-33.84 30.32m-60.59-35.63c19.99 0 32.65 10.31 32.65 28.27 0 19.72-13.53 26.79-35.6 26.79-8.53 0-18.83-.59-26.18-1.47v-70.37h21.48v16.78h7.65zm11.47 27.97c0-9.12-4.41-15.31-15.6-15.31h-3.52v29.08c1.25.07 2.42.07 3.52.07 10.59 0 15.6-5 15.6-13.84m-287.72-27.97c20 0 32.65 10.31 32.65 28.27 0 19.72-13.53 26.79-35.59 26.79-8.54 0-18.83-.59-26.19-1.47v-70.37h21.48v16.78h7.65zM286 344.99c0-9.12-4.42-15.31-15.6-15.31h-3.53v29.08c1.25.07 2.43.07 3.53.07 10.59 0 15.6-5 15.6-13.84\" style=\"fill:#201b21\"/></g></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1ignxho\",\"data-framer-name\":\"gsk_logos_idxHE8jfkV\",fill:\"black\",intrinsicHeight:103,intrinsicWidth:342,layoutDependency:layoutDependency,layoutId:\"HdvQdpYQw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 341.8 103\" style=\"enable-background:new 0 0 341.8 103\" xml:space=\"preserve\"><path d=\"M94.9 41.3h-34v6.4c0 7.5 6 13.7 13.5 13.7h8.3v16.5c0 2.2-1.8 3.9-3.9 3.9H27.2c-3.3 0-5.9-2.7-5.9-5.9V27.2c0-3.3 2.6-5.9 5.9-5.9h55.4V0h-57c-4 0-7.9.9-11.5 2.7-5 2.4-9 6.5-11.4 11.4C.9 17.7 0 21.6 0 25.6v51.8c0 4 .9 7.9 2.7 11.5 2.4 5 6.5 9 11.4 11.4 3.6 1.8 7.5 2.7 11.5 2.7h43c8 0 14.5-6.5 14.5-14.5v-5.8c0-.5.4-1 .9-1h.1c11.5-.3 18.9-5.9 18.9-15.6V41.3h-8.1zm23.6-1.3c0 13.2 11 21.4 26 21.4h50.3c3-.2 5.7 2.1 5.9 5.1v9.4c.2 3-2.1 5.7-5.1 5.9H124V103h71.4c14.1.4 25.8-10.8 26.2-24.9V67.4c.4-14.1-10.8-25.8-24.9-26.2h-51.5c-3 .2-5.7-2.1-5.9-5.1V25.2c-.2-2 1.3-3.8 3.3-3.9H213V0h-59.7c-7.9 0-14.4 6.4-14.5 14.3v5.9c0 .5-.4 1-.9 1h-.1c-10.2.4-19.3 6.1-19.3 18.8zm120.3 32.9V103H260V55.8c0-2.1 1.6-2.5 2.8-1.3l50 48.5h29l-53-51.5 53-51.5h-29l-50 48.5c-1.2 1.2-2.8.8-2.8-1.3V0h-21.2v30.3c0 10.9 7.1 17.4 19.7 20.9.5.2.5.7 0 .8-12.6 3.4-19.7 10-19.7 20.9z\" style=\"fill:#201b21\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1986n37\",\"data-framer-name\":\"Standard_Bank_Logo\",fill:\"black\",intrinsicHeight:186,intrinsicWidth:893,layoutDependency:layoutDependency,layoutId:\"TiCvliMJf\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 892.91 185.67\" style=\"enable-background:new 0 0 892.91 185.67\" xml:space=\"preserve\"><path d=\"M537.06 619.68c-1.2 1.44-5.15 5.76-11.51 5.76-6.48 0-10.43-5.16-10.43-17.62 0-13.07 4.31-17.86 11.03-17.86 5.4 0 9.35 3 10.91 4.19v25.53zm-101.24 2.88c-1.08.84-4.67 4.43-10.07 4.43-3.96 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm-55.63-2.88c-1.2 1.44-5.15 5.76-11.51 5.76-6.47 0-10.43-5.16-10.43-17.62 0-13.07 4.32-17.86 11.03-17.86 5.39 0 9.35 3 10.9 4.19v25.53h.01zm-124.56 2.88c-1.08.84-4.67 4.43-10.07 4.43-3.96 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm427.74 0c-1.07.84-4.67 4.43-10.07 4.43-3.95 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm-55.31-9.95c0 5.87-2.4 9.47-5.99 11.27-3.35 1.56-7.31 1.68-13.78 1.68h-5.51v-25.05h7.67c7.07 0 9.59.36 12.11 1.68 3.47 1.79 5.5 5.15 5.5 10.42zm-.95-34.76c0 9.11-4.32 12.47-18.22 12.47h-6.11v-23.49h7.67c7.19 0 9.82.36 12.47 1.92 2.75 1.67 4.19 5.15 4.19 9.1zm-75.55 58.38v-84.39l-14.5 2.16v30.93c-3.96-3.24-8.39-6.95-16.06-6.95-13.43 0-21.1 11.15-21.1 30.21 0 18.58 8.75 29.25 21.82 29.25 9.35 0 15.22-6.71 16.3-8.03l.96 6.83 12.58-.01zm-53.55-45.31v-12.95c-12.23.12-18.82 8.51-20.86 10.67l-1.08-9.47h-12.46v57.06h14.5v-37.52c2.29-2.16 7.68-7.67 19.9-7.79zm-48.28 45.31v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.74-2.4 8.39 0 9.47 3 9.47 9.59v3c-12.95.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-55.03 0v-84.39L380.19 554v30.93c-3.95-3.24-8.39-6.95-16.06-6.95-13.43 0-21.1 11.15-21.1 30.21 0 18.58 8.75 29.25 21.81 29.25 9.35 0 15.23-6.71 16.31-8.03l.96 6.83 12.59-.01zm-62.88 0v-37.16c0-9.23-.48-21.1-16.18-21.1-8.27 0-16.06 5.87-19.65 8.75l-1.08-7.55h-12.46v57.06h14.5v-41.11c2.27-1.44 7.91-5.15 13.18-5.15 6.47 0 7.19 4.55 7.19 11.75v34.52h14.5zm-62.29 0v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.74-2.4 8.39 0 9.47 3 9.47 9.59v3c-12.95.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-48.83-2.88-3-8.27c-.84.24-4.92 1.8-9.47 1.8-5.99 0-6.35-3.84-6.35-8.51v-29.49h15.7l1.44-9.71h-17.14v-18.1l-12.46 2.16-2.04 15.94-9.59 1.8v7.91h9.59v27.57c0 7.79.24 13.91 4.43 17.62 2.4 2.16 6.12 3.48 11.51 3.48 9.58-.01 16.05-3.6 17.38-4.2zm-43.75-21.1c0-13.66-8.51-18.46-20.38-22.29-10.67-3.36-17.26-5.28-17.26-12.35 0-7.67 6.47-10.91 13.78-10.91 8.87 0 16.3 2.64 18.1 3.24l3.36-10.07c-2.64-1.32-12.11-4.67-22.42-4.67-17.14 0-27.69 8.75-27.69 23.49 0 22.65 24.34 21.1 33.8 28.29 2.52 1.92 3.72 4.2 3.72 7.43 0 6.71-5.87 11.51-15.1 11.51-10.07 0-17.14-3.96-18.34-4.56l-5.04 9.83c.6.6 9.71 6.11 24.22 6.11 18.7 0 29.25-9.35 29.25-25.05zm647.43 24.02-23.98-29.85 22.42-27.21h-15.34l-20.5 25.41v-52.74l-14.5 2.16v82.23h14.5v-26.85l20.73 26.85h16.67zm-64.89 0v-37.16c0-9.23-.48-21.1-16.18-21.1-8.27 0-16.06 5.87-19.66 8.75l-1.08-7.55H710.1v57.06h14.51v-41.11c2.28-1.44 7.91-5.15 13.18-5.15 6.47 0 7.19 4.55 7.19 11.75v34.52l14.51-.01zm-62.21-.06v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.75-2.4 8.39 0 9.46 3 9.46 9.59v3c-12.94.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-53.75-21.69c0-12.11-6.59-18.22-18.46-19.42 11.03-1.8 16.66-8.27 16.66-18.94 0-19.66-17.02-19.9-31.64-19.9h-22.18v79.95h19.66c14.03 0 18.22-.48 23.01-2.4 8.27-3.23 12.95-9.82 12.95-19.29zm-689.42-28.93L5.8 688.98l-3.69-1.67c-26.34-12.72-45.29-33.94-48.47-63.57-.87-8.13-.41-23.01.47-38.15zM73.19 623.1c-2.37 22.14-13 39.21-28.72 51.83l-21.65-42.34c-1.71-3.35-4.42-5.56-4.42-5.56 6.75 2.12 14.73 7.31 27.69 7.31 12.39 0 22.91-7.34 27.1-11.24zm-99.33-76.62c11.09-1.56 24.7-2.87 39.49-2.87 23.9 0 44.71 3.42 56.51 5.73l.65 6.74c-6.87 3.75-15.98 8.03-29 7.35-16.9-.89-26.21-9.59-40.32-10.33-5.2-.27-10.21.37-14.92 1.77l-12.74-8.34.33-.06v.01zM39.8 695.74.1 617.75c4.29-2.83 9.27-4.48 14.78-4.48 11.23 0 19.3 7.54 31.2 7.54 7.16 0 19.73-5.51 27.43-11.77l-.19-9.82c-.37-9.91-1.08-20.89-1.83-30.8-6.97 3.86-16.33 8.61-29.99 7.89-16.9-.88-26.62-10.3-40.73-11.04-8.89-.46-17.77 1.34-24.97 5.44l-.06-7.75c0-1.19-.49-2.37-1.51-3.13l-15.51-11.69a2.08 2.08 0 0 0-1.15-.35c-1.07 0-1.94.87-1.94 1.94v19.43c0 1.28.64 2.38 1.6 3.09l6.29 4.67 64.05 125.1c-4.62 2.08-9.39 3.92-14.25 5.52-37.64-12.38-69.62-39.3-74.25-82.24-1.94-18.11 1.89-63.34 3.51-80.83.39-4.2 2.94-7.72 6.97-8.57 11.03-2.3 35.31-6.9 63.77-6.9s52.74 4.6 63.77 6.9c4.03.84 6.59 4.37 6.97 8.57 1.62 17.5 5.45 62.73 3.5 80.83-3.48 32.38-22.51 55.65-47.8 70.44h.04z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#201b21\" transform=\"translate(64.992 -525.434)\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-181qo29\",\"data-framer-name\":\"Manpower_Inc_Logo_black\",fill:\"black\",intrinsicHeight:465,intrinsicWidth:539,layoutDependency:layoutDependency,layoutId:\"FaDK9hc9e\",svg:'<svg version=\"1.1\" id=\"svg3498\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0\" y=\"0\" viewBox=\"0 0 538.58 464.88\" style=\"enable-background:new 0 0 538.58 464.88\" xml:space=\"preserve\"><style>.st1{fill:#201b21}</style><g id=\"g3506\" transform=\"matrix(1.25 0 0 -1.25 -9.016 709.78)\"><g transform=\"translate(-1592.845 -198.268) scale(5.65086)\" id=\"g3512\"><defs><path id=\"SVGID_1_\" d=\"M272.48 59.09h94.35v87.15h-94.35V59.09z\"/></defs><clipPath id=\"SVGID_00000101099752282678847110000015686440842500619431_\"><use xlink:href=\"#SVGID_1_\" style=\"overflow:visible\"/></clipPath><g id=\"g3514\" style=\"clip-path:url(#SVGID_00000101099752282678847110000015686440842500619431_)\"><g id=\"g3520\" transform=\"translate(345.714 112.776)\"><path id=\"path3522\" class=\"st1\" d=\"M0 0a3.604 3.604 0 0 0-4.62-2.15C-6.48-1.47-7.45.6-6.77 2.46l6.35 17.46c.68 1.87 2.75 2.83 4.61 2.15s2.83-2.75 2.15-4.61L0 0z\"/></g><g id=\"g3524\" transform=\"translate(296.845 101.478)\"><path id=\"path3526\" class=\"st1\" d=\"M0 0a3.596 3.596 0 1 0-6.76 2.46L.5 22.42a3.596 3.596 0 0 0 4.61 2.15 3.604 3.604 0 0 0 2.15-4.62L0 0z\"/></g><g id=\"g3528\" transform=\"translate(308.032 101.478)\"><path id=\"path3530\" class=\"st1\" d=\"M0 0a3.596 3.596 0 1 0-6.76 2.46L.5 22.42a3.604 3.604 0 0 0 6.77-2.47L0 0z\"/></g><g id=\"g3532\" transform=\"translate(319.214 101.478)\"><path id=\"path3534\" class=\"st1\" d=\"M0 0a3.596 3.596 0 0 0-4.61-2.15 3.61 3.61 0 0 0-2.16 4.61L.5 22.42a3.596 3.596 0 0 0 4.61 2.15 3.604 3.604 0 0 0 2.15-4.62L0 0z\"/></g><g id=\"g3536\" transform=\"translate(330.392 101.478)\"><path id=\"path3538\" class=\"st1\" d=\"M0 0a3.596 3.596 0 0 0-4.61-2.15 3.61 3.61 0 0 0-2.16 4.61L3.7 31.22a3.596 3.596 0 1 0 6.76-2.46L0 0z\"/></g><g id=\"g3540\" transform=\"translate(283.655 84.595)\"><path id=\"path3542\" class=\"st1\" d=\"M0 0h2.04l3.54-9.43L9.13 0h2.04v-11.22H9.76v9.33h-.03l-3.5-9.33H4.95l-3.5 9.33h-.04v-9.33H0V0z\"/></g><g id=\"g3544\" transform=\"translate(301.913 77.569)\"><path id=\"path3546\" class=\"st1\" d=\"M0 0c-.52-.38-1.52-.39-2.42-.55-.88-.16-1.63-.47-1.63-1.46 0-.88.75-1.19 1.57-1.19C-.72-3.2 0-2.1 0-1.37V0zm2.17-4.16c-.24-.14-.53-.22-.96-.22C.52-4.38.08-4 .08-3.13-.66-4-1.65-4.39-2.78-4.39c-1.48 0-2.69.66-2.69 2.28C-5.47-.27-4.1.12-2.72.39-1.24.67.01.58.01 1.59c0 1.16-.96 1.35-1.81 1.35-1.13 0-1.96-.35-2.03-1.54h-1.34c.08 2.01 1.63 2.72 3.44 2.72 1.46 0 3.05-.33 3.05-2.23v-4.18c0-.63 0-.91.43-.91.12 0 .25.01.42.07v-1.03z\"/></g><g id=\"g3548\" transform=\"translate(305.292 81.5)\"><path id=\"path3550\" class=\"st1\" d=\"M0 0h1.26v-1.29h.03C1.86-.28 2.77.19 3.93.19c2.14 0 2.8-1.23 2.8-2.97v-5.34H5.39v5.5c0 .99-.63 1.64-1.65 1.64-1.62 0-2.4-1.09-2.4-2.55v-4.59H0V0z\"/></g><g id=\"g3552\" transform=\"translate(317.532 80.509)\"><path id=\"path3554\" class=\"st1\" d=\"M0 0c-1.79 0-2.48-1.54-2.48-3.06 0-1.6.72-3.08 2.56-3.08C1.9-6.14 2.51-4.59 2.51-3c0 1.52-.78 3-2.51 3m-3.77.99h1.33v-1.1h.03C-1.97.78-.93 1.18.18 1.18c2.5 0 3.74-1.98 3.74-4.27 0-2.3-1.23-4.23-3.71-4.23-.83 0-2.03.31-2.62 1.27h-.03v-4.19h-1.33V.99z\"/></g><g id=\"g3556\" transform=\"translate(326.442 74.364)\"><path id=\"path3558\" class=\"st1\" d=\"M0 0c1.4 0 2.53 1.1 2.53 3.06C2.53 5.04 1.4 6.15 0 6.15s-2.53-1.1-2.53-3.08C-2.53 1.1-1.4 0 0 0m0 7.32c2.58 0 3.95-1.87 3.95-4.26C3.95.69 2.58-1.18 0-1.18S-3.94.69-3.94 3.06c0 2.39 1.36 4.26 3.94 4.26\"/></g><g id=\"g3560\" transform=\"translate(339.594 73.374)\"><path id=\"path3562\" class=\"st1\" d=\"M0 0h-1.41l-1.65 6.46h-.04L-4.73 0h-1.45l-2.61 8.12h1.48l1.84-6.65h.03l1.63 6.65h1.46l1.7-6.65h.03L1.2 8.12h1.38L0 0z\"/></g><g id=\"g3564\" transform=\"translate(348.63 78.214)\"><path id=\"path3566\" class=\"st1\" d=\"M0 0c-.06 1.27-1.02 2.3-2.34 2.3-1.4 0-2.23-1.05-2.33-2.3H0zm1.29-2.26C.93-4.05-.36-5.03-2.18-5.03c-2.59 0-3.82 1.79-3.9 4.27 0 2.43 1.6 4.23 3.82 4.23C.62 3.47 1.5.78 1.42-1.18h-6.08c-.05-1.42.76-2.67 2.53-2.67 1.1 0 1.87.53 2.11 1.59h1.31z\"/></g><g id=\"g3568\" transform=\"translate(351.38 81.5)\"><path id=\"path3570\" class=\"st1\" d=\"M0 0h1.26v-1.72h.03C1.93-.41 2.83.23 4.27.18v-1.41c-2.15 0-2.94-1.23-2.94-3.29v-3.61H0V0z\"/></g><g id=\"g3572\" transform=\"translate(357.381 83.435)\"><path id=\"path3574\" class=\"st1\" d=\"M0 0h.24c.2 0 .39.01.39.24 0 .2-.17.23-.32.23h-.3V0zm-.23.65h.57C.69.65.85.51.85.23c0-.26-.17-.38-.39-.4l.42-.65H.64l-.4.63H0v-.63h-.23V.65zm.49-1.81c.58 0 1.03.46 1.03 1.08C1.29.52.84.99.26.99-.32.99-.77.52-.77-.08c0-.62.45-1.08 1.03-1.08m0 2.34c.69 0 1.26-.54 1.26-1.25C1.52-.8.95-1.34.26-1.34S-1-.8-1-.08c0 .71.58 1.26 1.26 1.26\"/></g></g></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:54.5,intrinsicWidth:150,pixelHeight:109,pixelWidth:300,src:new URL(\"assets/bjH3juEa1FlDxnMdHxYEzH9O4P8.svg\",\"https://framerusercontent.com/modules/n3gloULqFoFry3WkK55y/BpMLnaD2YgabLBbkia7j/THpLozDff.js\").href},className:\"framer-uxowcn\",\"data-framer-name\":\"London_Stock_Exchange_New\",layoutDependency:layoutDependency,layoutId:\"gTVo5tQIq\"}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-m77sxj\",\"data-framer-name\":\"$01_BPI_Logo_Official\",fill:\"black\",intrinsicHeight:302,intrinsicWidth:649,layoutDependency:layoutDependency,layoutId:\"wIqJfkUNg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 649 302\" style=\"enable-background:new 0 0 649 302\" xml:space=\"preserve\"><path d=\"M244 241.6V73.1h63.2c25.4 0 44.2 3.5 56.4 10.6 12.1 7.1 18.2 18 18.2 32.9 0 9.9-3 18-9 24.3s-15 10.8-27 13.6c13.9 2.5 24.1 7.1 30.8 13.9 6.7 6.7 10.1 15.8 10.1 27.1 0 15.4-5.5 26.9-16.4 34.6s-27.4 11.5-49.5 11.5H244zm45.2-100.2h18.1c10 0 17.4-1.5 22-4.6s7-7.9 7-14.5c0-6.2-2.4-10.9-7.3-14.1-4.9-3.1-12.1-4.7-21.7-4.7h-18.1v37.9zm0 69.6h18.1c11.3 0 19.5-1.6 24.6-4.9 5-3.2 7.5-8.5 7.5-15.8 0-6.8-2.6-11.8-7.8-15-5.2-3.2-13.3-4.9-24.3-4.9h-18.1V211zM407 241.6V73.1h77.2c22 0 38.7 4.5 50 13.7 11.3 9.1 17 22.5 17 40.1 0 17.3-5.6 30.8-16.8 40.4s-26.8 14.5-46.8 14.5h-33.7v59.9H407v-.1zm46.8-92.9h20.8c10 0 17.3-1.8 22.1-5.5s7.1-9.3 7.1-17c0-7.5-2.3-13-7-16.5s-12.1-5.2-22.2-5.2h-20.8v44.2zm117.4 92.9V73.1h46.6v168.5h-46.6z\" style=\"fill:#201b21\"/><path d=\"M24.8 215.4c1.5 3.9 4.6 7.6 9.3 11.3 6.9 5.4 58.9 40 74.6 50.4l3.5 2.3 2.9-1.9c2.7-1.8 65.9-44.7 73.6-50.8 4.7-3.7 7.7-7.4 9.3-11.3 2.4-6.3 1.5-11.2.8-14.8v-.2c-.3-1.7-10.6-64-16.2-93.6-22.7-3.6-45.9-5.5-69.6-5.5h-1.6v161.4c-31.7-20.8-62.5-40.9-67.6-44.9-3.1-2.4-5-4.6-5.8-6.6-1.3-3.2-.8-6-.2-8.8.4-1.9 11.5-68.7 16.9-97.1-4.9.6-8.6 1.3-13.4 2.1-5.6 29.7-16.9 91.3-17.2 93.1-.8 3.7-1.7 8.6.7 14.9zm41.3-84.9h5.6v4.8h4.9v-5.1h5.9v5.1h4.7v-4.9h5.6V143H66.1v-12.5zm4.4 14.7h17.9l6.2 49.7H64.3l6.2-49.7zm-9.6 52h37v12.5h-10v-3.2H70.8v3.2h-10v-12.5h.1zm14.4-24.9h8.5v-3.1h-8.5v3.1zm8.4-12.9h-8.5v3.1h8.5v-3.1zm-8.5 22.7h8.5V179h-8.5v3.1zM69.7 81.5c-3.5.4-5.9.8-9.1 1.8-.5 2.8-1.5 8.3-2.4 12.6 17.6-2.5 35.6-3.9 53.9-3.9 17.2 0 34.1 1.3 50.8 3.5-.9-4.2-1.8-9.4-2.3-12.2-2.2-.9-5.1-1.5-8.8-1.7 11.7-2.8 18.8-11 18.8-18.9 0-10.4-8.2-18.7-28.5-20.8-7.2-5.6-17.2-8-25.8-8.7 2.1-1.5 3.6-4.1 3.6-7 0-4.7-4.7-8.4-9.2-8.4s-9.2 3.8-9.2 8.4c0 2.9 1.4 5.5 3.6 7-8.7.7-18.6 3.1-25.8 8.7-20.2 2-28.5 10.3-28.5 20.8 0 7.9 7.2 16.1 18.9 18.8zm76.7-33.2s15.4 1.4 15.2 14.8c-.1 10.6-11.6 16.4-26.2 14.6 20.1-8.2 15.8-23.7 11-29.4zm-31-7.9c12.9 1.2 22.9 9.2 22.9 19.1 0 10-10.3 18.2-23.5 19.1 2.7-3.6 4.5-10.9 4.5-19.5.1-7.9-1.5-14.8-3.9-18.7zm-9.4 0c-2.3 3.8-3.9 10.7-3.9 18.7 0 8.6 1.9 15.9 4.5 19.5-13.2-1-23.5-9.1-23.5-19.1 0-9.9 10-17.9 22.9-19.1zm-30.9 7.9c-4.8 5.7-9.1 21.2 11 29.3C71.5 79.4 60 73.7 59.9 63c-.2-13.3 15.2-14.7 15.2-14.7zm76.1 172c.2-.6.3-1.2.5-1.8 1-.2 2-.3 3-.5 1.9-1.2 1.7-5.1 3.6-6.2.9-.5 1.3.2 1.7.7.6-1.3.4-3.2 1-4.7 1.6-3.8 5-5.9 3.7-12.4-.1-.1-.2-.2-.2-.3-.6.9-.8 1.5-1.5 2.2-4.9-.3-3.1-11.3.2-12.3 2.4 6.5 12.7 8.4 13.3-.2.1-1.7-1.3-4.1-3-6.8.7-2.7 1.8-4.9 2.8-6.3.6-.8-2.8.7-4.4 3.7.7-2.9 1.9-5.3 2.9-6.8.6-.8-2.4.5-4.1 3.2.7-2.9 1.9-5.2 2.9-6.7.6-.9-3.1.8-4.6 4.2-.5-1.7-.9-3.4-.8-5.1.1-4.1 1.3-12.2 2.9-18.8.4-1.9 1.4-5.4 4.1-6.9-2.1-.5-5.7 1.4-5.6 5.5-.6-6-5.1-8-7.4-8.4 7.4 6.5 1.3 21.4 1.4 28.4.1 8.8 10.6 18 9 21.1-2.4 4.6-6.9-4.2-8.2-7-1.4-2.8-6.2-7.2-9.7-10.6 2.1-1.5 4.4-5.2 4.5-9.2.3.4.7.8 1 1.2h.5c-.5-3.7 1-7.5-.2-10.9h1.7c-.5-16.3-12.3-12.9-18-11.5l-.3.9c.8 0 1.5.1 2.3.1v.1l-1.8.6c-.3 1.1 0 3.7 1.4 5 .5-1.2.6-1.7 1.7-2.2 1.4.7 2.3 3.1 1.4 5.3-1 .4-2 .2-2.4-1h-.1c-.6 2.4-.4 4.9 1.4 6.5.1-2 .8-2.9 2.5-2.8-.5 4.9-3.8 3.8-7.1 5.1-6.1 2.4-7.8 11.6-13.3 13.1.5 2.2 2.6 4 4.2 4.8-.8 1.5-4.2 6.2-5.7 6.4-.6-.8-1.1-1.6-2.1-1.9-1 .3-1.9.5-2.9.8-.1.3-.3.7-.5 1 .4.1.8.2 1.3.3 0 .6-.1 1.2-.1 1.8.8.2 1.9.2 2.6.6 0 .2.1.3.1.5-.9-.2-1.8-.6-2.8-.3-.6.4-1.9 2.8-1.6 3.8v.3c.3-.3.5-.5.8-.7.6.2.6.3.7 1l.6.3c.7-.7 1.5-1.4 2.2-2.1h.1c.1.1.1.3.2.4-.7.7-1.3 1.4-2 2.1-.1 1.2-.3 2.5-.1 4.1.5-.4.9-.9 1.4-1.3 1.8 1.7 2.9-.5 3.9-2.2.6.6 1.3.7 2.1.7 0 .4.1.9.1 1.3h.1c2.9-2.8-.8-5.2 2.6-8.6 1.6 1 2.8.7 4.4 0 .3-.4.5-.8.8-1.2-.9-.3-1.4-.7-1.8-1.6 0-.6 0-.7.2-1 .7-1.5 3.2-1.3 4.6-.8 3.7 1.5 5.9 4.8 8.6 7.5-.2 3.4-.6 7.8.1 10.9.8 3.1 3 4.5 2.2 8.4 1.4-.1 2.1-.8 2.6-1.9.5 0 1.1.1 1.6.1-1.4 2.6-3.9 7.6-6.7 8.3-2.5.7-3.5-2.4-5.9-1.6l-1 1c-1.1.6-1.4-.2-2.1 1.2v.4c.4 0 .8.1 1.3.1.1.5.2 1.1.3 1.6.7-.7 1.3-1.5 2-2.2 0 .1.1.2.1.3-1 .9-1.7 2.3-2.4 3.6-.1.9 0 1.6.1 2.5.1.1.1.1.2.1.2-.4.5-.8.7-1.2h.5l.6.9h.5c.2-1.2.5-2.5.7-3.7l.3-.3c0 .1.1.1.1.1-.7 2-1 4.1-.5 6.3.1.1.3.3.5.4.1-.3.2-.7.3-1 .5-.5.8-.6 1.8-.6.1-1.6-.4-3 .7-4-.7 1.6-.5 4-.1 5.9.3.5.5.7.8.9m-1.9-80.5v-2c1.4-.1 3.2-.2 4.1.4-1.3.6-2.7 1.1-4.1 1.6zm2.7 60.3v-.1c-1.4-1.1-6.2-7-4.7-10.4.6-1.9 2.4-1.4 3.4-.5.1-1 .2-2.1.2-3.1-.9-1.4-3.2-2.1-2.3-4.6-6.1-4.9-5.7 3.4-10.9 3.3.2 1.9 1.1 3.3 2.8 3.4 0 3.9 1.5 6.6 3.2 8.2 0 .1.1.3.1.4-2.3.3-5.2.7-6.9-.7-2-1.7-2.5-4.2-6-4v.1l.6.9c.1.5-.2.7-.3 1.3v.2c.7.2 1.3.4 2 .6h.2v.6c-1.9-.4-3.9-.3-4.6 1.8v.2h1.2c.3.6.6 1.1.7 2.1l2.1-2.4h.1c-.4 2.2-2.2 2.8-2.4 5.5v.1c.4 0 .9-.4 1.4-.7.4.4.8.8 1.1 1.2.5-.5.7-1.8.9-2.7h.5c-.3 1.6-1.2 3.6-.6 5.2.2.2.4.5.6.7.2-.5.3-1 .5-1.5.7-.5 1.2.5 2.4 0 1.4-.6 1.4-2.5 3.4-2.5.5.6.8.9.8 2.2 1.3-.4 1.7-1.7 2.9-2.1 3.9-1.3 4.8.6 7.6-2.7zm-10.1-52c2.6-.3 3.5-3.2 6.2-3.3v-.2c-.7-.1-1.2-.3-2-.1-1.3.3-7.3 3.6-4.9-1.5-1.9.8-2.6 5.4.7 5.1zm-18.4 13.1v.1c.6.8 2.1.6 3.2.6.4-.6.8-1.3 1.3-1.9h.2c1.3 1.7 2.7 3.4 4 5.1h.2c1.3-1.2 2.2-2.9 3.2-4.5-.4-2.5-3.3-3.6-4-6-.9-2.7 1.8-6.5-1.6-8.4 0 1.4-.6 1.7-.7 2.5.1.8.2 1.6.2 2.4v.3h-.1c-.5-.6-.4-1.5-.8-2.4-.4-.9-2.5-2-3.4-2.2v.2c.3 1 .1 1.8.2 2.6.5.8 1 1.7 1.5 2.5v.6h-.3c-.5-.6-1.1-1.3-1.6-1.9-.8-.4-2.4 0-3.2.3.3.4.7.8 1 1.2.8 1.3 4.6 5.7.7 8.9zm23.3-33.5c1.1-.9 2.7-1.3 4-1.4-.3-.2-.6-.6-.6-1.1 0-.7.7-1.3 1.4-1.3s1.4.6 1.4 1.3c0 .5-.2.9-.6 1.1 1.4.1 2.9.5 4 1.4 3.2.3 4.5 1.6 4.5 3.2 0 1.4-1.3 2.8-3.5 3.1-.1.5-.1 1.1-.2 1.4-1.3-.4-3.7-.6-5.7-.6-1.9 0-4.6.3-5.7.6 0-.3-.1-.9-.2-1.4-2.2-.3-3.5-1.7-3.5-3.1.3-1.6 1.5-2.9 4.7-3.2zm12.9 3.3c0-1.8-2.2-2-2.2-2 .7.8 1.3 2.9-1.6 4 2.1.2 3.8-.6 3.8-2zm-3.6-.6c0-1.4-1.6-2.5-3.6-2.6.4.5.6 1.5.6 2.6 0 1.2-.3 2.2-.7 2.7 2-.2 3.7-1.3 3.7-2.7zm-5 2.7c-.4-.5-.7-1.5-.7-2.7 0-1.1.2-2.1.6-2.6-2 .2-3.6 1.3-3.6 2.6 0 1.4 1.6 2.5 3.7 2.7zm-3.5-.1c-3-1.1-2.3-3.3-1.6-4.1 0 0-2.3.2-2.2 2 0 1.6 1.7 2.4 3.8 2.1z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#201b21\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-egqko\",\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"fPvgY2GO_\",children:[/*#__PURE__*/ _jsx(SVG,{className:\"framer-bjxxtm\",\"data-framer-name\":\"Ila_Logo_ENGLISH_Green_375C\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TPfVreoFj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><g transform=\"translate(-21.556 -6.654)\" id=\"ss12437501_1\"><g id=\"ss12437501_2\"><g id=\"ss12437501_3\"><path d=\"M 0 73.307 L 103.667 73.307 L 103.667 0 L 0 0 Z\" fill=\"transparent\"></path><g transform=\"translate(30.605 15.35)\" id=\"ss12437501_5\"><path d=\"M 39.828 24.008 C 38.615 24.008 37.503 24.867 37.402 26.737 C 37.301 29.163 35.633 30.376 33.864 30.376 C 31.438 30.376 30.325 28.557 30.325 26.889 C 30.325 24.867 31.488 23.048 34.42 23.048 L 35.228 23.048 C 39.726 23.048 42.456 20.723 42.456 16.831 C 42.456 12.989 39.878 10.563 35.532 10.563 L 23.401 10.563 C 19.711 10.563 17.134 12.989 17.134 16.831 L 17.134 28.759 C 17.134 29.82 16.628 30.376 15.769 30.376 L 15.263 30.376 C 14.404 30.376 13.898 29.821 13.898 28.759 L 13.898 2.628 C 13.898 1.112 12.786 0 11.27 0 C 9.753 0 8.642 1.112 8.642 2.628 L 8.642 29.214 C 8.642 31.135 9.147 32.601 10.057 33.611 C 11.068 34.723 12.635 35.38 14.606 35.38 L 16.375 35.38 C 18.346 35.38 19.964 34.622 20.975 33.46 C 21.885 32.398 22.39 30.983 22.39 29.214 L 22.39 17.235 C 22.39 16.174 22.794 15.567 23.907 15.567 L 35.582 15.567 C 36.543 15.567 36.997 15.971 36.997 16.78 C 36.997 17.64 36.542 18.044 35.531 18.044 L 34.57 18.044 C 27.899 18.044 24.816 22.138 24.816 26.889 C 24.816 31.286 27.747 35.38 32.953 35.38 C 34.842 35.38 36.504 34.618 37.604 33.389 C 37.829 34.739 38.783 35.43 39.929 35.43 C 41.192 35.43 42.254 34.521 42.254 32.752 L 42.254 26.636 C 42.254 24.867 41.042 24.008 39.828 24.008 M 2.78 37.25 C 1.162 37.25 0 38.362 0 39.929 C 0 41.495 1.162 42.608 2.78 42.608 C 4.398 42.608 5.56 41.495 5.56 39.929 C 5.559 38.362 4.397 37.25 2.78 37.25 M 0.152 32.752 L 0.152 12.686 C 0.152 11.169 1.264 10.057 2.779 10.057 C 4.296 10.057 5.408 11.169 5.408 12.686 L 5.408 32.752 C 5.408 34.268 4.296 35.38 2.779 35.38 C 1.264 35.38 0.152 34.268 0.152 32.752\" fill=\"rgb(32,27,33)\"></path></g></g></g></g></svg>',svgContentId:12437501,withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-14ea3k8\",\"data-framer-name\":\"rabobank_logo_vector_1\",fill:\"black\",intrinsicHeight:453,intrinsicWidth:2500,layoutDependency:layoutDependency,layoutId:\"dZbIvsHOZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 2500 453\" style=\"enable-background:new 0 0 2500 453\" xml:space=\"preserve\"><path d=\"M1479.29 292.29c-10.62 67.75-45.63 103.26-87.65 103.26-26.6 0-41.93-18.66-37.41-47.61l14.69-91.99c5.73-34.08 26.05-60.73 62.48-60.73 40.32-.01 58.7 27.38 47.89 97.07m-143.9 135.08c5.68 0 19.3 23.92 63.55 23.92 94.26 0 148.15-68.21 162.93-156.14 18.66-108.48-34.08-157.8-100.54-157.8-31.27 0-54.59 2.82-71.63 11.82L1415.33 0h-78.19l-77.77 445.89h58.93s8.59-18.38 17.64-18.38h-.55v-.14zm832.99-190.18c11.96-67.56-13.07-100.49-86.27-100.49-54.49 0-76.02 24.06-96.38 44.47l1.99-37.55-72.51.46-5.59 55.65-41.93 246.2h79.39l25.58-159.84c9.05-55.05 47.15-97.12 82.85-97.12 39.76 0 39.3 22.72 33.02 57.36l-34.59 199.6h78.74l35.7-208.74zm330.94-99.8h-92.55l-106.31 112.68-1.52-.32L2341.57.23h-77.22l-77.86 445.66h78.32l7.99-44.66 15.93-97.58c41.38 0 64.66 4.53 82.8 86.78l12.52 55.46h79.99s-19.9-84.33-32.93-117.26c-13.72-34.64-28.54-57.54-60.41-63.78l128.62-127.46zM224.76 246.66c57.27-12.52 87.05-58.84 95.04-88.95 20.41-82.85-16.39-147.55-122.06-146.4L76.7 11.18.68 445.89h78.88l31.22-174.61c72.74-1.99 81.65 15.7 95.27 100.49l12.52 74.12h81.79c-9.65-44.94-15.84-87.24-23.78-121.23-8.59-35.84-21.8-63.78-55.83-77.08l4.01-.92zm15.84-103.5c-6.79 38.61-36.71 65.72-73.57 65.72h-46.51l24.01-137.3 42.3-.09c50.21 0 60 33.02 53.77 71.67m356.66 82.12c11.31-65.9-23.88-88.58-94.81-88.58-88.58 0-127.14 42.03-127.14 42.03l27.2 45.95s28.63-33.57 85.76-33.57c31.82 0 32.51 16.26 29.46 33.57l-6.23 39.16c-114.12-2.82-172.54 21.66-185.61 96.52-10.67 61.33 35.33 90.93 86.91 90.93 26.65 0 48.21-4.06 74.26-26.69 5.13 14.69 14.27 22.54 24.43 24.15 16.44 3.42 44.84-.46 53.34-6.7-.65-9.1 0-32.28 9.65-86.78l22.78-129.99zm-93.61 80.08c-12.65 89.64-24.57 98.6-67.8 98.6-29.56 0-40.46-20.23-35.47-46.74 6.89-36.16 34.18-51.86 103.27-51.86m1345.29-80.08c11.36-65.9-23.88-88.58-94.86-88.58-88.53 0-127.14 42.03-127.14 42.03l27.29 45.95s28.59-33.57 85.62-33.57c31.91 0 32.56 16.26 29.56 33.57l-6.23 39.16c-114.16-2.82-172.54 21.66-185.65 96.52-10.81 61.33 35.19 90.93 86.82 90.93 26.65 0 48.26-4.06 74.4-26.69 4.99 14.69 14.13 22.54 24.34 24.15 16.44 3.42 44.84-.46 53.29-6.7-.55-9.1 0-32.28 9.65-86.78l22.91-129.99zm-93.66 80.08c-12.56 89.64-24.52 98.6-67.8 98.6-29.51 0-40.46-20.23-35.51-46.74 6.93-36.16 34.22-51.86 103.31-51.86M755.71 451.29c94.26 0 148.15-68.21 162.84-156.14 18.7-108.48-33.99-157.8-100.49-157.8-31.22 0-53.76 2.82-71.35 11.82L772.29 0h-78.51l-77.82 445.89h59.07s8.5-18.38 17.04-18.38c5.73-.14 19.35 23.78 63.64 23.78m32.93-256.08c40.32 0 57.4 27.25 47.89 97.07-9.7 71.35-45.63 103.36-88.21 103.36-26.65 0-41.98-18.75-36.9-47.71l14.73-91.9c5.63-34.13 26.05-60.73 61.88-60.73h.6l.01-.09zm162.98 124.14c12.15-113.52 63.32-183.76 185.01-183.76 90.29 0 120.21 68.95 108.07 143.07-19.4 118.5-65.53 174.34-181.36 174.34-74.96 0-119.48-61.15-111.72-133.65m210.63-35.19c5.82-31.4 11.96-92.36-42.07-92.36-36.3 0-70.2 24.62-85.44 110.88-9.28 52.79.88 95.09 42.95 95.09 30.76-.05 68.31-25.4 84.56-113.61\" style=\"fill:#201b21\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-17eqmcc\",\"data-framer-name\":\"Philips_logo_new\",fill:\"black\",intrinsicHeight:92,intrinsicWidth:550,layoutDependency:layoutDependency,layoutId:\"vbeoZ9B9t\",svg:'<svg version=\"1.1\" id=\"svg2759\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0\" y=\"0\" viewBox=\"0 0 550 92\" style=\"enable-background:new 0 0 550 92\" xml:space=\"preserve\"><style>.st0{clip-path:url(#SVGID_00000164477730698358247920000009656420216119900324_)}</style><g id=\"layer1\" transform=\"translate(-127.26 -383.69)\"><g transform=\"matrix(1.25 0 0 -1.25 -154.36 849.47)\" id=\"g2851\"><defs><path id=\"SVGID_1_\" d=\"M-85.14-74.96H967.22v744.1H-85.14z\"/></defs><clipPath id=\"SVGID_00000003805774075873391920000000358549629357646731_\"><use xlink:href=\"#SVGID_1_\" style=\"overflow:visible\"/></clipPath><g id=\"g2853\" style=\"clip-path:url(#SVGID_00000003805774075873391920000000358549629357646731_)\"><path id=\"path2859\" d=\"M381.02 370.61h-21.48v-27.97h-22.36v27.97H315.7v-70.37h21.48v27.68h22.36v-27.68h21.48v70.37zm74.72-56.23v56.23h-21.48v-70.37h38.84l3.23 14.14h-20.59zm-37.36 56.23H396.9v-70.37h21.48v70.37zm87.08 0h-21.47v-70.37h21.47v70.37zm105.9-17.96c0 3.83 3.83 5.6 10 5.6 6.77 0 14.13-1.48 19.13-3.55l-1.76 15.32c-5.6 1.18-10.6 2.06-19.71 2.06-17.36 0-29.13-6.85-29.13-21.2 0-24.73 33.55-19.73 33.55-31.21 0-4.41-3.25-6.76-11.19-6.76-7.05 0-17.95 2.35-24.42 5.59l2.36-16.2c6.47-2.36 15.29-3.53 22.36-3.53 17.94 0 32.65 5.89 32.65 23.56 0 23.54-33.84 19.13-33.84 30.32m-60.59-35.63c19.99 0 32.65 10.31 32.65 28.27 0 19.72-13.53 26.79-35.6 26.79-8.53 0-18.83-.59-26.18-1.47v-70.37h21.48v16.78h7.65zm11.47 27.97c0-9.12-4.41-15.31-15.6-15.31h-3.52v29.08c1.25.07 2.42.07 3.52.07 10.59 0 15.6-5 15.6-13.84m-287.72-27.97c20 0 32.65 10.31 32.65 28.27 0 19.72-13.53 26.79-35.59 26.79-8.54 0-18.83-.59-26.19-1.47v-70.37h21.48v16.78h7.65zM286 344.99c0-9.12-4.42-15.31-15.6-15.31h-3.53v29.08c1.25.07 2.43.07 3.53.07 10.59 0 15.6-5 15.6-13.84\" style=\"fill:#201b21\"/></g></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1ignxho\",\"data-framer-name\":\"gsk_logos_idxHE8jfkV\",fill:\"black\",intrinsicHeight:103,intrinsicWidth:342,layoutDependency:layoutDependency,layoutId:\"HdvQdpYQw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 341.8 103\" style=\"enable-background:new 0 0 341.8 103\" xml:space=\"preserve\"><path d=\"M94.9 41.3h-34v6.4c0 7.5 6 13.7 13.5 13.7h8.3v16.5c0 2.2-1.8 3.9-3.9 3.9H27.2c-3.3 0-5.9-2.7-5.9-5.9V27.2c0-3.3 2.6-5.9 5.9-5.9h55.4V0h-57c-4 0-7.9.9-11.5 2.7-5 2.4-9 6.5-11.4 11.4C.9 17.7 0 21.6 0 25.6v51.8c0 4 .9 7.9 2.7 11.5 2.4 5 6.5 9 11.4 11.4 3.6 1.8 7.5 2.7 11.5 2.7h43c8 0 14.5-6.5 14.5-14.5v-5.8c0-.5.4-1 .9-1h.1c11.5-.3 18.9-5.9 18.9-15.6V41.3h-8.1zm23.6-1.3c0 13.2 11 21.4 26 21.4h50.3c3-.2 5.7 2.1 5.9 5.1v9.4c.2 3-2.1 5.7-5.1 5.9H124V103h71.4c14.1.4 25.8-10.8 26.2-24.9V67.4c.4-14.1-10.8-25.8-24.9-26.2h-51.5c-3 .2-5.7-2.1-5.9-5.1V25.2c-.2-2 1.3-3.8 3.3-3.9H213V0h-59.7c-7.9 0-14.4 6.4-14.5 14.3v5.9c0 .5-.4 1-.9 1h-.1c-10.2.4-19.3 6.1-19.3 18.8zm120.3 32.9V103H260V55.8c0-2.1 1.6-2.5 2.8-1.3l50 48.5h29l-53-51.5 53-51.5h-29l-50 48.5c-1.2 1.2-2.8.8-2.8-1.3V0h-21.2v30.3c0 10.9 7.1 17.4 19.7 20.9.5.2.5.7 0 .8-12.6 3.4-19.7 10-19.7 20.9z\" style=\"fill:#201b21\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1986n37\",\"data-framer-name\":\"Standard_Bank_Logo\",fill:\"black\",intrinsicHeight:186,intrinsicWidth:893,layoutDependency:layoutDependency,layoutId:\"TiCvliMJf\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 892.91 185.67\" style=\"enable-background:new 0 0 892.91 185.67\" xml:space=\"preserve\"><path d=\"M537.06 619.68c-1.2 1.44-5.15 5.76-11.51 5.76-6.48 0-10.43-5.16-10.43-17.62 0-13.07 4.31-17.86 11.03-17.86 5.4 0 9.35 3 10.91 4.19v25.53zm-101.24 2.88c-1.08.84-4.67 4.43-10.07 4.43-3.96 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm-55.63-2.88c-1.2 1.44-5.15 5.76-11.51 5.76-6.47 0-10.43-5.16-10.43-17.62 0-13.07 4.32-17.86 11.03-17.86 5.39 0 9.35 3 10.9 4.19v25.53h.01zm-124.56 2.88c-1.08.84-4.67 4.43-10.07 4.43-3.96 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm427.74 0c-1.07.84-4.67 4.43-10.07 4.43-3.95 0-7.67-1.68-7.67-7.91 0-7.67 5.51-9.59 17.74-10.43v13.91zm-55.31-9.95c0 5.87-2.4 9.47-5.99 11.27-3.35 1.56-7.31 1.68-13.78 1.68h-5.51v-25.05h7.67c7.07 0 9.59.36 12.11 1.68 3.47 1.79 5.5 5.15 5.5 10.42zm-.95-34.76c0 9.11-4.32 12.47-18.22 12.47h-6.11v-23.49h7.67c7.19 0 9.82.36 12.47 1.92 2.75 1.67 4.19 5.15 4.19 9.1zm-75.55 58.38v-84.39l-14.5 2.16v30.93c-3.96-3.24-8.39-6.95-16.06-6.95-13.43 0-21.1 11.15-21.1 30.21 0 18.58 8.75 29.25 21.82 29.25 9.35 0 15.22-6.71 16.3-8.03l.96 6.83 12.58-.01zm-53.55-45.31v-12.95c-12.23.12-18.82 8.51-20.86 10.67l-1.08-9.47h-12.46v57.06h14.5v-37.52c2.29-2.16 7.68-7.67 19.9-7.79zm-48.28 45.31v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.74-2.4 8.39 0 9.47 3 9.47 9.59v3c-12.95.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-55.03 0v-84.39L380.19 554v30.93c-3.95-3.24-8.39-6.95-16.06-6.95-13.43 0-21.1 11.15-21.1 30.21 0 18.58 8.75 29.25 21.81 29.25 9.35 0 15.23-6.71 16.31-8.03l.96 6.83 12.59-.01zm-62.88 0v-37.16c0-9.23-.48-21.1-16.18-21.1-8.27 0-16.06 5.87-19.65 8.75l-1.08-7.55h-12.46v57.06h14.5v-41.11c2.27-1.44 7.91-5.15 13.18-5.15 6.47 0 7.19 4.55 7.19 11.75v34.52h14.5zm-62.29 0v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.74-2.4 8.39 0 9.47 3 9.47 9.59v3c-12.95.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-48.83-2.88-3-8.27c-.84.24-4.92 1.8-9.47 1.8-5.99 0-6.35-3.84-6.35-8.51v-29.49h15.7l1.44-9.71h-17.14v-18.1l-12.46 2.16-2.04 15.94-9.59 1.8v7.91h9.59v27.57c0 7.79.24 13.91 4.43 17.62 2.4 2.16 6.12 3.48 11.51 3.48 9.58-.01 16.05-3.6 17.38-4.2zm-43.75-21.1c0-13.66-8.51-18.46-20.38-22.29-10.67-3.36-17.26-5.28-17.26-12.35 0-7.67 6.47-10.91 13.78-10.91 8.87 0 16.3 2.64 18.1 3.24l3.36-10.07c-2.64-1.32-12.11-4.67-22.42-4.67-17.14 0-27.69 8.75-27.69 23.49 0 22.65 24.34 21.1 33.8 28.29 2.52 1.92 3.72 4.2 3.72 7.43 0 6.71-5.87 11.51-15.1 11.51-10.07 0-17.14-3.96-18.34-4.56l-5.04 9.83c.6.6 9.71 6.11 24.22 6.11 18.7 0 29.25-9.35 29.25-25.05zm647.43 24.02-23.98-29.85 22.42-27.21h-15.34l-20.5 25.41v-52.74l-14.5 2.16v82.23h14.5v-26.85l20.73 26.85h16.67zm-64.89 0v-37.16c0-9.23-.48-21.1-16.18-21.1-8.27 0-16.06 5.87-19.66 8.75l-1.08-7.55H710.1v57.06h14.51v-41.11c2.28-1.44 7.91-5.15 13.18-5.15 6.47 0 7.19 4.55 7.19 11.75v34.52l14.51-.01zm-62.21-.06v-35.72c0-12.59-.36-22.54-18.46-22.54-10.79 0-21.09 4.56-22.17 5.04l2.52 8.27c1.32-.36 8.39-2.4 14.75-2.4 8.39 0 9.46 3 9.46 9.59v3c-12.94.72-31.64.36-31.64 18.22 0 12.11 6.95 17.74 15.82 17.74 8.99 0 15.22-6.23 16.54-7.67l1.08 6.47h12.1zm-53.75-21.69c0-12.11-6.59-18.22-18.46-19.42 11.03-1.8 16.66-8.27 16.66-18.94 0-19.66-17.02-19.9-31.64-19.9h-22.18v79.95h19.66c14.03 0 18.22-.48 23.01-2.4 8.27-3.23 12.95-9.82 12.95-19.29zm-689.42-28.93L5.8 688.98l-3.69-1.67c-26.34-12.72-45.29-33.94-48.47-63.57-.87-8.13-.41-23.01.47-38.15zM73.19 623.1c-2.37 22.14-13 39.21-28.72 51.83l-21.65-42.34c-1.71-3.35-4.42-5.56-4.42-5.56 6.75 2.12 14.73 7.31 27.69 7.31 12.39 0 22.91-7.34 27.1-11.24zm-99.33-76.62c11.09-1.56 24.7-2.87 39.49-2.87 23.9 0 44.71 3.42 56.51 5.73l.65 6.74c-6.87 3.75-15.98 8.03-29 7.35-16.9-.89-26.21-9.59-40.32-10.33-5.2-.27-10.21.37-14.92 1.77l-12.74-8.34.33-.06v.01zM39.8 695.74.1 617.75c4.29-2.83 9.27-4.48 14.78-4.48 11.23 0 19.3 7.54 31.2 7.54 7.16 0 19.73-5.51 27.43-11.77l-.19-9.82c-.37-9.91-1.08-20.89-1.83-30.8-6.97 3.86-16.33 8.61-29.99 7.89-16.9-.88-26.62-10.3-40.73-11.04-8.89-.46-17.77 1.34-24.97 5.44l-.06-7.75c0-1.19-.49-2.37-1.51-3.13l-15.51-11.69a2.08 2.08 0 0 0-1.15-.35c-1.07 0-1.94.87-1.94 1.94v19.43c0 1.28.64 2.38 1.6 3.09l6.29 4.67 64.05 125.1c-4.62 2.08-9.39 3.92-14.25 5.52-37.64-12.38-69.62-39.3-74.25-82.24-1.94-18.11 1.89-63.34 3.51-80.83.39-4.2 2.94-7.72 6.97-8.57 11.03-2.3 35.31-6.9 63.77-6.9s52.74 4.6 63.77 6.9c4.03.84 6.59 4.37 6.97 8.57 1.62 17.5 5.45 62.73 3.5 80.83-3.48 32.38-22.51 55.65-47.8 70.44h.04z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#201b21\" transform=\"translate(64.992 -525.434)\"/></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-181qo29\",\"data-framer-name\":\"Manpower_Inc_Logo_black\",fill:\"black\",intrinsicHeight:465,intrinsicWidth:539,layoutDependency:layoutDependency,layoutId:\"FaDK9hc9e\",svg:'<svg version=\"1.1\" id=\"svg3498\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0\" y=\"0\" viewBox=\"0 0 538.58 464.88\" style=\"enable-background:new 0 0 538.58 464.88\" xml:space=\"preserve\"><style>.st1{fill:#201b21}</style><g id=\"g3506\" transform=\"matrix(1.25 0 0 -1.25 -9.016 709.78)\"><g transform=\"translate(-1592.845 -198.268) scale(5.65086)\" id=\"g3512\"><defs><path id=\"SVGID_1_\" d=\"M272.48 59.09h94.35v87.15h-94.35V59.09z\"/></defs><clipPath id=\"SVGID_00000101099752282678847110000015686440842500619431_\"><use xlink:href=\"#SVGID_1_\" style=\"overflow:visible\"/></clipPath><g id=\"g3514\" style=\"clip-path:url(#SVGID_00000101099752282678847110000015686440842500619431_)\"><g id=\"g3520\" transform=\"translate(345.714 112.776)\"><path id=\"path3522\" class=\"st1\" d=\"M0 0a3.604 3.604 0 0 0-4.62-2.15C-6.48-1.47-7.45.6-6.77 2.46l6.35 17.46c.68 1.87 2.75 2.83 4.61 2.15s2.83-2.75 2.15-4.61L0 0z\"/></g><g id=\"g3524\" transform=\"translate(296.845 101.478)\"><path id=\"path3526\" class=\"st1\" d=\"M0 0a3.596 3.596 0 1 0-6.76 2.46L.5 22.42a3.596 3.596 0 0 0 4.61 2.15 3.604 3.604 0 0 0 2.15-4.62L0 0z\"/></g><g id=\"g3528\" transform=\"translate(308.032 101.478)\"><path id=\"path3530\" class=\"st1\" d=\"M0 0a3.596 3.596 0 1 0-6.76 2.46L.5 22.42a3.604 3.604 0 0 0 6.77-2.47L0 0z\"/></g><g id=\"g3532\" transform=\"translate(319.214 101.478)\"><path id=\"path3534\" class=\"st1\" d=\"M0 0a3.596 3.596 0 0 0-4.61-2.15 3.61 3.61 0 0 0-2.16 4.61L.5 22.42a3.596 3.596 0 0 0 4.61 2.15 3.604 3.604 0 0 0 2.15-4.62L0 0z\"/></g><g id=\"g3536\" transform=\"translate(330.392 101.478)\"><path id=\"path3538\" class=\"st1\" d=\"M0 0a3.596 3.596 0 0 0-4.61-2.15 3.61 3.61 0 0 0-2.16 4.61L3.7 31.22a3.596 3.596 0 1 0 6.76-2.46L0 0z\"/></g><g id=\"g3540\" transform=\"translate(283.655 84.595)\"><path id=\"path3542\" class=\"st1\" d=\"M0 0h2.04l3.54-9.43L9.13 0h2.04v-11.22H9.76v9.33h-.03l-3.5-9.33H4.95l-3.5 9.33h-.04v-9.33H0V0z\"/></g><g id=\"g3544\" transform=\"translate(301.913 77.569)\"><path id=\"path3546\" class=\"st1\" d=\"M0 0c-.52-.38-1.52-.39-2.42-.55-.88-.16-1.63-.47-1.63-1.46 0-.88.75-1.19 1.57-1.19C-.72-3.2 0-2.1 0-1.37V0zm2.17-4.16c-.24-.14-.53-.22-.96-.22C.52-4.38.08-4 .08-3.13-.66-4-1.65-4.39-2.78-4.39c-1.48 0-2.69.66-2.69 2.28C-5.47-.27-4.1.12-2.72.39-1.24.67.01.58.01 1.59c0 1.16-.96 1.35-1.81 1.35-1.13 0-1.96-.35-2.03-1.54h-1.34c.08 2.01 1.63 2.72 3.44 2.72 1.46 0 3.05-.33 3.05-2.23v-4.18c0-.63 0-.91.43-.91.12 0 .25.01.42.07v-1.03z\"/></g><g id=\"g3548\" transform=\"translate(305.292 81.5)\"><path id=\"path3550\" class=\"st1\" d=\"M0 0h1.26v-1.29h.03C1.86-.28 2.77.19 3.93.19c2.14 0 2.8-1.23 2.8-2.97v-5.34H5.39v5.5c0 .99-.63 1.64-1.65 1.64-1.62 0-2.4-1.09-2.4-2.55v-4.59H0V0z\"/></g><g id=\"g3552\" transform=\"translate(317.532 80.509)\"><path id=\"path3554\" class=\"st1\" d=\"M0 0c-1.79 0-2.48-1.54-2.48-3.06 0-1.6.72-3.08 2.56-3.08C1.9-6.14 2.51-4.59 2.51-3c0 1.52-.78 3-2.51 3m-3.77.99h1.33v-1.1h.03C-1.97.78-.93 1.18.18 1.18c2.5 0 3.74-1.98 3.74-4.27 0-2.3-1.23-4.23-3.71-4.23-.83 0-2.03.31-2.62 1.27h-.03v-4.19h-1.33V.99z\"/></g><g id=\"g3556\" transform=\"translate(326.442 74.364)\"><path id=\"path3558\" class=\"st1\" d=\"M0 0c1.4 0 2.53 1.1 2.53 3.06C2.53 5.04 1.4 6.15 0 6.15s-2.53-1.1-2.53-3.08C-2.53 1.1-1.4 0 0 0m0 7.32c2.58 0 3.95-1.87 3.95-4.26C3.95.69 2.58-1.18 0-1.18S-3.94.69-3.94 3.06c0 2.39 1.36 4.26 3.94 4.26\"/></g><g id=\"g3560\" transform=\"translate(339.594 73.374)\"><path id=\"path3562\" class=\"st1\" d=\"M0 0h-1.41l-1.65 6.46h-.04L-4.73 0h-1.45l-2.61 8.12h1.48l1.84-6.65h.03l1.63 6.65h1.46l1.7-6.65h.03L1.2 8.12h1.38L0 0z\"/></g><g id=\"g3564\" transform=\"translate(348.63 78.214)\"><path id=\"path3566\" class=\"st1\" d=\"M0 0c-.06 1.27-1.02 2.3-2.34 2.3-1.4 0-2.23-1.05-2.33-2.3H0zm1.29-2.26C.93-4.05-.36-5.03-2.18-5.03c-2.59 0-3.82 1.79-3.9 4.27 0 2.43 1.6 4.23 3.82 4.23C.62 3.47 1.5.78 1.42-1.18h-6.08c-.05-1.42.76-2.67 2.53-2.67 1.1 0 1.87.53 2.11 1.59h1.31z\"/></g><g id=\"g3568\" transform=\"translate(351.38 81.5)\"><path id=\"path3570\" class=\"st1\" d=\"M0 0h1.26v-1.72h.03C1.93-.41 2.83.23 4.27.18v-1.41c-2.15 0-2.94-1.23-2.94-3.29v-3.61H0V0z\"/></g><g id=\"g3572\" transform=\"translate(357.381 83.435)\"><path id=\"path3574\" class=\"st1\" d=\"M0 0h.24c.2 0 .39.01.39.24 0 .2-.17.23-.32.23h-.3V0zm-.23.65h.57C.69.65.85.51.85.23c0-.26-.17-.38-.39-.4l.42-.65H.64l-.4.63H0v-.63h-.23V.65zm.49-1.81c.58 0 1.03.46 1.03 1.08C1.29.52.84.99.26.99-.32.99-.77.52-.77-.08c0-.62.45-1.08 1.03-1.08m0 2.34c.69 0 1.26-.54 1.26-1.25C1.52-.8.95-1.34.26-1.34S-1-.8-1-.08c0 .71.58 1.26 1.26 1.26\"/></g></g></g></g></svg>',withExternalLayout:true}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:54.5,intrinsicWidth:150,pixelHeight:109,pixelWidth:300,src:new URL(\"assets/bjH3juEa1FlDxnMdHxYEzH9O4P8.svg\",\"https://framerusercontent.com/modules/n3gloULqFoFry3WkK55y/BpMLnaD2YgabLBbkia7j/THpLozDff.js\").href},className:\"framer-uxowcn\",\"data-framer-name\":\"London_Stock_Exchange_New\",layoutDependency:layoutDependency,layoutId:\"gTVo5tQIq\"}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-m77sxj\",\"data-framer-name\":\"$01_BPI_Logo_Official\",fill:\"black\",intrinsicHeight:302,intrinsicWidth:649,layoutDependency:layoutDependency,layoutId:\"wIqJfkUNg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 649 302\" style=\"enable-background:new 0 0 649 302\" xml:space=\"preserve\"><path d=\"M244 241.6V73.1h63.2c25.4 0 44.2 3.5 56.4 10.6 12.1 7.1 18.2 18 18.2 32.9 0 9.9-3 18-9 24.3s-15 10.8-27 13.6c13.9 2.5 24.1 7.1 30.8 13.9 6.7 6.7 10.1 15.8 10.1 27.1 0 15.4-5.5 26.9-16.4 34.6s-27.4 11.5-49.5 11.5H244zm45.2-100.2h18.1c10 0 17.4-1.5 22-4.6s7-7.9 7-14.5c0-6.2-2.4-10.9-7.3-14.1-4.9-3.1-12.1-4.7-21.7-4.7h-18.1v37.9zm0 69.6h18.1c11.3 0 19.5-1.6 24.6-4.9 5-3.2 7.5-8.5 7.5-15.8 0-6.8-2.6-11.8-7.8-15-5.2-3.2-13.3-4.9-24.3-4.9h-18.1V211zM407 241.6V73.1h77.2c22 0 38.7 4.5 50 13.7 11.3 9.1 17 22.5 17 40.1 0 17.3-5.6 30.8-16.8 40.4s-26.8 14.5-46.8 14.5h-33.7v59.9H407v-.1zm46.8-92.9h20.8c10 0 17.3-1.8 22.1-5.5s7.1-9.3 7.1-17c0-7.5-2.3-13-7-16.5s-12.1-5.2-22.2-5.2h-20.8v44.2zm117.4 92.9V73.1h46.6v168.5h-46.6z\" style=\"fill:#201b21\"/><path d=\"M24.8 215.4c1.5 3.9 4.6 7.6 9.3 11.3 6.9 5.4 58.9 40 74.6 50.4l3.5 2.3 2.9-1.9c2.7-1.8 65.9-44.7 73.6-50.8 4.7-3.7 7.7-7.4 9.3-11.3 2.4-6.3 1.5-11.2.8-14.8v-.2c-.3-1.7-10.6-64-16.2-93.6-22.7-3.6-45.9-5.5-69.6-5.5h-1.6v161.4c-31.7-20.8-62.5-40.9-67.6-44.9-3.1-2.4-5-4.6-5.8-6.6-1.3-3.2-.8-6-.2-8.8.4-1.9 11.5-68.7 16.9-97.1-4.9.6-8.6 1.3-13.4 2.1-5.6 29.7-16.9 91.3-17.2 93.1-.8 3.7-1.7 8.6.7 14.9zm41.3-84.9h5.6v4.8h4.9v-5.1h5.9v5.1h4.7v-4.9h5.6V143H66.1v-12.5zm4.4 14.7h17.9l6.2 49.7H64.3l6.2-49.7zm-9.6 52h37v12.5h-10v-3.2H70.8v3.2h-10v-12.5h.1zm14.4-24.9h8.5v-3.1h-8.5v3.1zm8.4-12.9h-8.5v3.1h8.5v-3.1zm-8.5 22.7h8.5V179h-8.5v3.1zM69.7 81.5c-3.5.4-5.9.8-9.1 1.8-.5 2.8-1.5 8.3-2.4 12.6 17.6-2.5 35.6-3.9 53.9-3.9 17.2 0 34.1 1.3 50.8 3.5-.9-4.2-1.8-9.4-2.3-12.2-2.2-.9-5.1-1.5-8.8-1.7 11.7-2.8 18.8-11 18.8-18.9 0-10.4-8.2-18.7-28.5-20.8-7.2-5.6-17.2-8-25.8-8.7 2.1-1.5 3.6-4.1 3.6-7 0-4.7-4.7-8.4-9.2-8.4s-9.2 3.8-9.2 8.4c0 2.9 1.4 5.5 3.6 7-8.7.7-18.6 3.1-25.8 8.7-20.2 2-28.5 10.3-28.5 20.8 0 7.9 7.2 16.1 18.9 18.8zm76.7-33.2s15.4 1.4 15.2 14.8c-.1 10.6-11.6 16.4-26.2 14.6 20.1-8.2 15.8-23.7 11-29.4zm-31-7.9c12.9 1.2 22.9 9.2 22.9 19.1 0 10-10.3 18.2-23.5 19.1 2.7-3.6 4.5-10.9 4.5-19.5.1-7.9-1.5-14.8-3.9-18.7zm-9.4 0c-2.3 3.8-3.9 10.7-3.9 18.7 0 8.6 1.9 15.9 4.5 19.5-13.2-1-23.5-9.1-23.5-19.1 0-9.9 10-17.9 22.9-19.1zm-30.9 7.9c-4.8 5.7-9.1 21.2 11 29.3C71.5 79.4 60 73.7 59.9 63c-.2-13.3 15.2-14.7 15.2-14.7zm76.1 172c.2-.6.3-1.2.5-1.8 1-.2 2-.3 3-.5 1.9-1.2 1.7-5.1 3.6-6.2.9-.5 1.3.2 1.7.7.6-1.3.4-3.2 1-4.7 1.6-3.8 5-5.9 3.7-12.4-.1-.1-.2-.2-.2-.3-.6.9-.8 1.5-1.5 2.2-4.9-.3-3.1-11.3.2-12.3 2.4 6.5 12.7 8.4 13.3-.2.1-1.7-1.3-4.1-3-6.8.7-2.7 1.8-4.9 2.8-6.3.6-.8-2.8.7-4.4 3.7.7-2.9 1.9-5.3 2.9-6.8.6-.8-2.4.5-4.1 3.2.7-2.9 1.9-5.2 2.9-6.7.6-.9-3.1.8-4.6 4.2-.5-1.7-.9-3.4-.8-5.1.1-4.1 1.3-12.2 2.9-18.8.4-1.9 1.4-5.4 4.1-6.9-2.1-.5-5.7 1.4-5.6 5.5-.6-6-5.1-8-7.4-8.4 7.4 6.5 1.3 21.4 1.4 28.4.1 8.8 10.6 18 9 21.1-2.4 4.6-6.9-4.2-8.2-7-1.4-2.8-6.2-7.2-9.7-10.6 2.1-1.5 4.4-5.2 4.5-9.2.3.4.7.8 1 1.2h.5c-.5-3.7 1-7.5-.2-10.9h1.7c-.5-16.3-12.3-12.9-18-11.5l-.3.9c.8 0 1.5.1 2.3.1v.1l-1.8.6c-.3 1.1 0 3.7 1.4 5 .5-1.2.6-1.7 1.7-2.2 1.4.7 2.3 3.1 1.4 5.3-1 .4-2 .2-2.4-1h-.1c-.6 2.4-.4 4.9 1.4 6.5.1-2 .8-2.9 2.5-2.8-.5 4.9-3.8 3.8-7.1 5.1-6.1 2.4-7.8 11.6-13.3 13.1.5 2.2 2.6 4 4.2 4.8-.8 1.5-4.2 6.2-5.7 6.4-.6-.8-1.1-1.6-2.1-1.9-1 .3-1.9.5-2.9.8-.1.3-.3.7-.5 1 .4.1.8.2 1.3.3 0 .6-.1 1.2-.1 1.8.8.2 1.9.2 2.6.6 0 .2.1.3.1.5-.9-.2-1.8-.6-2.8-.3-.6.4-1.9 2.8-1.6 3.8v.3c.3-.3.5-.5.8-.7.6.2.6.3.7 1l.6.3c.7-.7 1.5-1.4 2.2-2.1h.1c.1.1.1.3.2.4-.7.7-1.3 1.4-2 2.1-.1 1.2-.3 2.5-.1 4.1.5-.4.9-.9 1.4-1.3 1.8 1.7 2.9-.5 3.9-2.2.6.6 1.3.7 2.1.7 0 .4.1.9.1 1.3h.1c2.9-2.8-.8-5.2 2.6-8.6 1.6 1 2.8.7 4.4 0 .3-.4.5-.8.8-1.2-.9-.3-1.4-.7-1.8-1.6 0-.6 0-.7.2-1 .7-1.5 3.2-1.3 4.6-.8 3.7 1.5 5.9 4.8 8.6 7.5-.2 3.4-.6 7.8.1 10.9.8 3.1 3 4.5 2.2 8.4 1.4-.1 2.1-.8 2.6-1.9.5 0 1.1.1 1.6.1-1.4 2.6-3.9 7.6-6.7 8.3-2.5.7-3.5-2.4-5.9-1.6l-1 1c-1.1.6-1.4-.2-2.1 1.2v.4c.4 0 .8.1 1.3.1.1.5.2 1.1.3 1.6.7-.7 1.3-1.5 2-2.2 0 .1.1.2.1.3-1 .9-1.7 2.3-2.4 3.6-.1.9 0 1.6.1 2.5.1.1.1.1.2.1.2-.4.5-.8.7-1.2h.5l.6.9h.5c.2-1.2.5-2.5.7-3.7l.3-.3c0 .1.1.1.1.1-.7 2-1 4.1-.5 6.3.1.1.3.3.5.4.1-.3.2-.7.3-1 .5-.5.8-.6 1.8-.6.1-1.6-.4-3 .7-4-.7 1.6-.5 4-.1 5.9.3.5.5.7.8.9m-1.9-80.5v-2c1.4-.1 3.2-.2 4.1.4-1.3.6-2.7 1.1-4.1 1.6zm2.7 60.3v-.1c-1.4-1.1-6.2-7-4.7-10.4.6-1.9 2.4-1.4 3.4-.5.1-1 .2-2.1.2-3.1-.9-1.4-3.2-2.1-2.3-4.6-6.1-4.9-5.7 3.4-10.9 3.3.2 1.9 1.1 3.3 2.8 3.4 0 3.9 1.5 6.6 3.2 8.2 0 .1.1.3.1.4-2.3.3-5.2.7-6.9-.7-2-1.7-2.5-4.2-6-4v.1l.6.9c.1.5-.2.7-.3 1.3v.2c.7.2 1.3.4 2 .6h.2v.6c-1.9-.4-3.9-.3-4.6 1.8v.2h1.2c.3.6.6 1.1.7 2.1l2.1-2.4h.1c-.4 2.2-2.2 2.8-2.4 5.5v.1c.4 0 .9-.4 1.4-.7.4.4.8.8 1.1 1.2.5-.5.7-1.8.9-2.7h.5c-.3 1.6-1.2 3.6-.6 5.2.2.2.4.5.6.7.2-.5.3-1 .5-1.5.7-.5 1.2.5 2.4 0 1.4-.6 1.4-2.5 3.4-2.5.5.6.8.9.8 2.2 1.3-.4 1.7-1.7 2.9-2.1 3.9-1.3 4.8.6 7.6-2.7zm-10.1-52c2.6-.3 3.5-3.2 6.2-3.3v-.2c-.7-.1-1.2-.3-2-.1-1.3.3-7.3 3.6-4.9-1.5-1.9.8-2.6 5.4.7 5.1zm-18.4 13.1v.1c.6.8 2.1.6 3.2.6.4-.6.8-1.3 1.3-1.9h.2c1.3 1.7 2.7 3.4 4 5.1h.2c1.3-1.2 2.2-2.9 3.2-4.5-.4-2.5-3.3-3.6-4-6-.9-2.7 1.8-6.5-1.6-8.4 0 1.4-.6 1.7-.7 2.5.1.8.2 1.6.2 2.4v.3h-.1c-.5-.6-.4-1.5-.8-2.4-.4-.9-2.5-2-3.4-2.2v.2c.3 1 .1 1.8.2 2.6.5.8 1 1.7 1.5 2.5v.6h-.3c-.5-.6-1.1-1.3-1.6-1.9-.8-.4-2.4 0-3.2.3.3.4.7.8 1 1.2.8 1.3 4.6 5.7.7 8.9zm23.3-33.5c1.1-.9 2.7-1.3 4-1.4-.3-.2-.6-.6-.6-1.1 0-.7.7-1.3 1.4-1.3s1.4.6 1.4 1.3c0 .5-.2.9-.6 1.1 1.4.1 2.9.5 4 1.4 3.2.3 4.5 1.6 4.5 3.2 0 1.4-1.3 2.8-3.5 3.1-.1.5-.1 1.1-.2 1.4-1.3-.4-3.7-.6-5.7-.6-1.9 0-4.6.3-5.7.6 0-.3-.1-.9-.2-1.4-2.2-.3-3.5-1.7-3.5-3.1.3-1.6 1.5-2.9 4.7-3.2zm12.9 3.3c0-1.8-2.2-2-2.2-2 .7.8 1.3 2.9-1.6 4 2.1.2 3.8-.6 3.8-2zm-3.6-.6c0-1.4-1.6-2.5-3.6-2.6.4.5.6 1.5.6 2.6 0 1.2-.3 2.2-.7 2.7 2-.2 3.7-1.3 3.7-2.7zm-5 2.7c-.4-.5-.7-1.5-.7-2.7 0-1.1.2-2.1.6-2.6-2 .2-3.6 1.3-3.6 2.6 0 1.4 1.6 2.5 3.7 2.7zm-3.5-.1c-3-1.1-2.3-3.3-1.6-4.1 0 0-2.3.2-2.2 2 0 1.6 1.7 2.4 3.8 2.1z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#201b21\"/></svg>',withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})})});});const css=['.framer-dfe79 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dfe79 .framer-1r7p7n8 { display: block; }\",\".framer-dfe79 .framer-unbhgr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dfe79 .framer-1sp51vn-container, .framer-dfe79 .framer-bzl4an-container { flex: none; height: 89px; position: relative; width: 1155px; }\",\".framer-dfe79 .framer-g85ypu, .framer-dfe79 .framer-egqko { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: 106px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-dfe79 .framer-2rfzfk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-dfe79 .framer-154ocm5, .framer-dfe79 .framer-14ea3k8 { aspect-ratio: 5.518763796909492 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 132px; }\",\".framer-dfe79 .framer-g1owg1 { aspect-ratio: 5.978260869565218 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 132px; }\",\".framer-dfe79 .framer-1s51t8o { aspect-ratio: 3.320388349514563 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 83px; }\",\".framer-dfe79 .framer-if4414, .framer-dfe79 .framer-1986n37 { aspect-ratio: 4.801075268817204 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 150px; }\",\".framer-dfe79 .framer-vl35so, .framer-dfe79 .framer-uxowcn { aspect-ratio: 2.7522935779816513 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 130px; }\",\".framer-dfe79 .framer-857730, .framer-dfe79 .framer-m77sxj { aspect-ratio: 2.1490066225165565 / 1; flex: none; height: 42px; position: relative; width: var(--framer-aspect-ratio-supported, 90px); }\",\".framer-dfe79 .framer-bjxxtm { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-dfe79 .framer-17eqmcc { aspect-ratio: 5.978260869565218 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 130px; }\",\".framer-dfe79 .framer-1ignxho { aspect-ratio: 3.320388349514563 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 70px; }\",\".framer-dfe79 .framer-181qo29 { aspect-ratio: 1.1591397849462366 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 65px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dfe79 .framer-unbhgr, .framer-dfe79 .framer-g85ypu, .framer-dfe79 .framer-egqko { gap: 0px; } .framer-dfe79 .framer-unbhgr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-dfe79 .framer-unbhgr > :first-child { margin-top: 0px; } .framer-dfe79 .framer-unbhgr > :last-child { margin-bottom: 0px; } .framer-dfe79 .framer-g85ypu > *, .framer-dfe79 .framer-egqko > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-dfe79 .framer-g85ypu > :first-child, .framer-dfe79 .framer-egqko > :first-child { margin-left: 0px; } .framer-dfe79 .framer-g85ypu > :last-child, .framer-dfe79 .framer-egqko > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 113\n * @framerIntrinsicWidth 1155\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"fIk44xkOI\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables false\n */ const FramerTHpLozDff=withCSS(Component,css,\"framer-dfe79\");export default FramerTHpLozDff;FramerTHpLozDff.displayName=\"CLIENTS Mobiquity\";FramerTHpLozDff.defaultProps={height:113,width:1155};addPropertyControls(FramerTHpLozDff,{variant:{options:[\"VW1DhpPWm\",\"fIk44xkOI\"],optionTitles:[\"Light\",\"Dark\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTHpLozDff,[...TickerFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTHpLozDff\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"113\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fIk44xkOI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"false\",\"framerIntrinsicWidth\":\"1155\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./THpLozDff.map"],
  "mappings": "gUAAigB,IAAMA,GAAW,GAAG,EAA6sB,IAAMC,GAAE,CAAC,GAAG,GAAG,IAAI,EAAE,EAAE,GAAG,EAAE,GAAG,EAM/vC,SAASC,GAAkB,EAAE,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,GAAG,CAAC,CCNG,IAAMC,GAAW,CAAC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAG,GAAG,EAAEC,EAAE,EAAED,IAAI,EAAE,EAAEA,GAAG,EAAQC,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgB,EAAEH,EAAEI,EAAE,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAEP,GAAGI,EAAEJ,GAAG,EAAEM,EAAEP,GAAWQ,EAAE,EAAEF,CAAC,EAAE,EAAEC,EAAE,EAAEF,EAAEG,EAAEP,EAAEO,QAAQ,KAAK,IAAID,CAAC,EAAEL,IAAG,EAAEO,EAAEN,IAAG,OAAOK,CAAC,CAAC,SAASE,GAAYT,EAAE,EAAEE,EAAEE,EAAE,CAAC,GAAGJ,IAAI,GAAGE,IAAIE,EAAE,OAAOM,GAAE,IAAMC,EAASC,GAAGT,GAAgBS,EAAE,EAAE,EAAEZ,EAAEE,CAAC,EAAE,OAAOU,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAEb,GAAWY,EAASC,CAAC,EAAE,EAAER,CAAC,CAAC,CCApQ,IAAMS,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECA2d,SAASC,GAAOC,EAAEC,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,QAAQC,KAAKH,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAEG,CAAC,GAAGF,EAAE,QAAQE,CAAC,EAAE,IAAID,EAAEC,CAAC,EAAEH,EAAEG,CAAC,GAAG,GAASH,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAII,EAAE,EAAE,IAAID,EAAE,OAAO,sBAAsBH,CAAC,EAAEI,EAAED,EAAE,OAAOC,IAAIH,EAAE,QAAQE,EAAEC,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKJ,EAAEG,EAAEC,CAAC,CAAC,IAAIF,EAAEC,EAAEC,CAAC,CAAC,EAAEJ,EAAEG,EAAEC,CAAC,CAAC,GAAG,OAAOF,CAAC,CCArkC,IAAIG,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,GAAsB,EAAEC,EAAEC,EAAE,CAAC,IAAMC,EAAE,KAAK,IAAIF,EAAEF,GAAE,CAAC,EAAE,OAAOK,GAAEF,EAAE,EAAEC,CAAC,EAAEF,EAAEE,CAAC,CAAC,CAAC,IAAMF,EAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQI,GAAiB,CAACC,EAAEL,EAAE,UAAUM,EAAEN,EAAE,QAAQF,EAAEE,EAAE,OAAOM,GAAG,EAAE,KAAK,KAAKD,EAAEP,CAAC,GAAG,SAASS,GAAiBF,EAAEC,EAAER,EAAE,CAAC,OAAOO,EAAEC,GAAGR,GAAGQ,GAAGD,EAAEC,GAAGR,GAAGQ,CAAC,CAAC,IAAME,GAAO,CAAC,CAAC,UAAUH,EAAEL,EAAE,UAAU,QAAQF,EAAEE,EAAE,QAAQ,KAAKC,EAAED,EAAE,KAAK,KAAKE,EAAE,EAAE,GAAGO,EAAE,EAAE,SAASC,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEL,GAAE,EAAEK,CAAC,EAAE,EAAE,IAAMG,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQX,EAAE,OAAOO,CAAC,EAAQK,EAAEL,EAAEP,EAAQa,EAAE,KAAK,KAAKV,EAAEJ,CAAC,EAAE,IAAUe,EAAEZ,GAAiBC,EAAEP,EAAEG,CAAC,EAAMgB,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMX,EAAEU,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEX,GAAGG,EAAE,KAAK,IAAI,CAACO,EAAED,EAAET,CAAC,IAAIU,EAAED,EAAED,EAAEJ,GAAGL,EAAE,KAAK,IAAIA,EAAEC,CAAC,EAAEQ,EAAE,KAAK,IAAIT,EAAEC,CAAC,QAAQW,EAAEZ,GAAGI,EAAE,KAAK,IAAI,CAACM,EAAEV,CAAC,GAAGS,GAAGC,EAAED,EAAEJ,GAAGL,GAAG,OAAOA,GAAG,CAACQ,EAAE,QAAQI,EAAEZ,CAAC,EAAE,IAAMC,EAAMD,IAAJ,EAAMK,EAAEX,GAAsBkB,EAAEZ,EAAEQ,EAAE,OAAO,EAAQf,EAAE,KAAK,IAAIQ,CAAC,GAAGK,EAAQX,EAAE,KAAK,IAAIS,EAAEI,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKf,GAAGE,EAAEa,EAAE,iBAAiBN,GAAiBL,EAAEO,EAAEI,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKb,EAAE,EAAE,SAASP,EAAE,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,KAAK,cAAc,EAAE,gBAAgBW,EAAE,aAAaC,EAAE,IAAIC,EAAE,IAAIC,EAAE,aAAaC,EAAE,GAAG,UAAUC,CAAC,IAAI,CAAC,EAAET,GAAE,GAAG,CAAC,EAAE,IAAMU,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQV,EAAE,OAAOA,CAAC,EAAQc,EAAcd,GAAYM,IAAT,QAAYN,EAAEM,GAAYC,IAAT,QAAYP,EAAEO,EAAQQ,EAAgBf,GAAYM,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEN,CAAC,EAAE,KAAK,IAAIO,EAAEP,CAAC,EAAEM,EAAEC,EAAMI,EAAE,EAAElB,EAAQmB,EAAEZ,EAAEW,EAAQK,EAAWX,IAAT,OAAWO,EAAEP,EAAEO,CAAC,EAAEF,EAAE,OAAOM,EAAEA,IAAIJ,IAAID,EAAEK,EAAEhB,GAAG,IAAMiB,EAAUjB,GAAG,CAACW,EAAE,KAAK,IAAI,CAACX,EAAE,CAAC,EAAQkB,EAAWlB,GAAGgB,EAAEC,EAAUjB,CAAC,EAAQmB,EAAcnB,GAAG,CAAC,IAAMC,EAAEgB,EAAUjB,CAAC,EAAQP,EAAEyB,EAAWlB,CAAC,EAAEU,EAAE,KAAK,KAAK,IAAIT,CAAC,GAAGO,EAAEE,EAAE,QAAQA,EAAE,KAAKM,EAAEvB,CAAC,EAAM2B,EAAM,EAAQC,EAAmBrB,GAAG,CAAIc,EAAcJ,EAAE,OAAO,IAAGU,EAAEpB,EAAE,EAAEG,GAAO,CAAC,KAAKO,EAAE,QAAQ,GAAGK,EAAgBL,EAAE,OAAO,EAAE,SAAShB,GAAsBwB,EAAWlB,EAAEU,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAUN,EAAE,aAAaI,EAAE,UAAUC,CAAC,CAAC,EAAE,EAAE,OAAAY,EAAmB,CAAC,EAASrB,GAAG,CAAC,IAAIC,EAAE,GAAuE,MAA9D,CAAC,GAAYmB,IAAT,SAAYnB,EAAE,GAAKkB,EAAcnB,CAAC,EAAEqB,EAAmBrB,CAAC,GAAcoB,IAAT,QAAYpB,EAAEoB,GAAGV,EAAE,iBAAiB,GAAY,EAAEV,EAAEoB,CAAC,IAAEV,EAAE,iBAAiB,GAAM,CAACT,GAAGkB,EAAcnB,CAAC,EAASU,EAAC,CAAC,EAAQd,GAAE,GAASC,GAAE,IAAI,SAASyB,GAAqBtB,EAAE,CAAC,IAAIC,EAAMR,EAAEG,GAAMD,EAAEK,EAAE,CAAC,EAAQI,EAAE,CAACT,EAAE,OAAO,EAAE,KAAM,CAACA,EAAE,MAAMF,EAAEI,IAAGF,EAAEK,EAAEP,CAAC,EAAEW,EAAE,KAAKT,EAAE,KAAKA,EAAE,OAAOA,EAAE,OAAO,EAAWM,IAAT,QAAYN,EAAE,mBAAmBM,EAAER,GAAGA,GAAGG,GAAE,IAAMS,EAAEZ,EAAEG,GAAE,OAAIQ,EAAE,SAAN,GAAcA,EAAE,KAAKT,EAAE,OAAO,EAAQ,CAAC,UAAUS,EAAE,SAASC,EAAE,IAAI,mBAA0BJ,GAAgBI,GAAG,GAAG,CAAC,CCA1jD,IAAMkB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAcC,GAAGA,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAcD,GAAGA,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcG,EAAC,EAAE,KAAKH,EAAC,EAAQI,GAAE,IAAI,IAAUC,GAAkBJ,GAAG,YAAYA,IAAUK,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAASN,GAAG,CAACO,GAAE,QAASC,GAAG,CAACH,GAAE,KAAKL,EAAEQ,CAAC,EAAEL,GAAE,IAAIC,GAAkBJ,EAAEQ,CAAC,EAAEP,GAAED,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMS,GAAE,IAAI,IAAIC,EAAC,EAA2tB,IAAMC,GAAcC,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,SAAS,IAAI,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACF,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAS,EAAQG,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAUH,KAAKC,GAAEE,GAAEH,CAAC,EAAE,KAAcE,GAAEF,CAAC,IAAZ,SAAgBE,GAAEF,CAAC,EAAEC,GAAED,CAAC,EAAE,GAAUE,GAAEF,CAAC,GAA2kF,SAASI,GAAgBC,EAAEC,EAAE,CAAC,IAAI,EAAE,OAAc,OAAOD,GAAlB,SAAuBC,IAAW,EAAEA,EAAED,CAAC,KAAb,MAA0B,IAAT,SAAaC,EAAED,CAAC,EAAE,SAAS,iBAAiBA,CAAC,GAAEA,EAAEC,EAAED,CAAC,GAAOA,EAAE,SAAS,iBAAiBA,CAAC,EAAOA,aAAa,UAAUA,EAAE,CAACA,CAAC,GAAU,MAAM,KAAKA,GAAG,CAAC,CAAC,CAAC,CAAo7H,SAASE,GAAsBC,EAAE,CAAC,IAAMC,EAAE,IAAI,QAAQ,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACF,EAAE,EAAEG,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGN,KAAKG,KAAKC,KAAKC,IAAI,OAAAJ,EAAE,IAAIK,CAAC,GAAGL,EAAE,IAAIK,EAAEP,EAAE,OAAO,OAAO,CAAC,KAAKC,EAAE,GAAGG,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAASJ,EAAE,IAAIK,CAAC,CAAC,EAAQC,EAAaR,IAAIC,EAAE,IAAID,CAAC,GAAGC,EAAE,IAAID,EAAES,GAAET,CAAC,CAAC,EAASC,EAAE,IAAID,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEC,EAAES,EAAER,EAAEE,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQI,EAAEX,EAAE,OAA8C,GAAjCU,GAAGC,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMF,EAAEV,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BZ,GAAE,UAAU,GAAGY,EAAE,CAAC,GAAK,CAAC,UAAUf,EAAE,mBAAmBS,CAAC,EAAEN,EAAQF,EAA+BD,GAAE,WAAYS,GAAG,EAAQJ,EAA+BL,GAAE,aAAc,YAAY,IAAI,EAAEC,EAAQK,EAAES,EAAEV,CAAC,EAAE,QAAQS,GAAUV,EAAEQ,KAAV,MAAuBR,IAAT,OAAWA,EAAEE,GAAOI,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,GAAGgB,EAAEhB,CAAC,EAAE,QAASM,EAAEC,CAAC,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAE,WAAWL,EAAE,CAAC,EAAE,IAAMiB,EAAEf,EAAaY,EAAEL,EAAEI,EAA8BZ,GAAE,SAAS,OAAO,CAAC,EAAQiB,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,EAAaL,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOI,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMK,GAAeZ,GAAc,OAAOA,GAAlB,SAA0BoB,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAASzB,EAAEC,EAAE,CAAC,KAAK,EAAE,OAAOC,EAAE,OAAOE,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAM,EAAEsB,GAAgB1B,CAAC,EAAQM,EAAE,IAAI,QAAcqB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEJ,EAAE,IAAIN,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQU,EAAG,GAAGV,EAAE,eAAe,CAAC,IAAMU,EAAET,EAAED,CAAC,EAAe,OAAOU,GAApB,WAAsBJ,EAAE,IAAIN,EAAE,OAAOU,CAAC,EAAEH,EAAE,UAAUP,EAAE,MAAM,OAAUU,IAAGA,EAAEV,CAAC,EAAEM,EAAE,OAAON,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQO,EAAE,IAAI,qBAAqBoB,EAAqB,CAAC,KAAK,EAAE,WAAWzB,EAAE,UAAqB,OAAOE,GAAlB,SAAoBA,EAAEoB,GAAEpB,CAAC,CAAC,CAAC,EAAE,SAAE,QAASJ,GAAGO,EAAE,QAAQP,CAAC,CAAE,EAAQ,IAAIO,EAAE,WAAW,CAAC,CAAC,IAAMqB,GAAE,IAAI,QAAYC,EAAE,SAASC,GAAe9B,EAAEC,EAAE,CAAC,GAAGA,EAAE,CAAC,GAAK,CAAC,WAAWD,EAAE,UAAUU,CAAC,EAAET,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMD,EAAE,OAAOU,CAAC,EAAE,OAAOV,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO/B,EAAE,YAAYC,EAAE,cAAc,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE0B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BE,IAAT,QAAkBA,EAAE,QAASA,GAAG,CAACA,EAAE,CAAC,OAAOF,EAAE,YAAYC,EAAE,IAAI,MAAM,CAAC,OAAO6B,GAAe9B,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAASgC,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,EAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAEC,EAAE,CAAC4B,GAAGI,GAAqB,EAAE,IAAM,EAAEP,GAAgB1B,CAAC,EAAE,SAAE,QAASA,GAAG,CAAC,IAAIU,EAAEkB,GAAE,IAAI5B,CAAC,EAAMU,IAAGA,EAAE,IAAI,IAAIkB,GAAE,IAAI5B,EAAEU,CAAC,GAAEA,EAAE,IAAIT,CAAC,EAA8B4B,GAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAAC,EAAE,QAASA,GAAG,CAAC,IAAMU,EAAEkB,GAAE,IAAI5B,CAAC,EAA8BU,GAAE,OAAOT,CAAC,EAA+BS,GAAE,MAAoCmB,GAAE,UAAU7B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMmC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMpC,EAAE,CAAC,MAAMsC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQrC,EAAE,CAAC,OAAOqC,EAAO,KAAKtC,EAAE,YAAYA,CAAC,EAAEmC,GAAE,QAASnC,GAAGA,EAAEC,CAAC,CAAE,CAAC,EAAEqC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAavC,EAAE,CAAC,OAAAmC,GAAE,IAAInC,CAAC,EAAEoC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOnC,CAAC,EAAE,CAACmC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOxC,EAAEC,EAAE,CAAC,OAAmB,OAAOD,GAApB,WAAsBuC,GAAavC,CAAC,EAAEkC,GAAclC,EAAEC,CAAC,CAAC,CAA+hK,SAASwC,GAAqBC,EAAEC,EAAE,EAAE,CAACD,EAAE,cAAc,IAAI,YAAYC,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBF,EAAEC,EAAE,EAAE,CAACD,EAAE,cAAc,IAAI,YAAYC,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASH,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAOC,EAAE,QAAQ,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAE,EAAEE,GAAEF,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOG,GAASP,EAAG,GAAG,CAAwC,GAAvCC,EAAE,EAAEC,GAAkBF,EAAE,YAAY,CAAC,EAAK,CAACK,EAAE,OAAOJ,GAAG,CAAC,EAAE,EAAEC,GAAkBF,EAAE,YAAYC,CAAC,CAAC,CAAC,EAAG,CAAC,CAAC,CAAC,EAAQO,GAAW,CAACR,EAAEC,EAAE,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyB,EAAE,EAAEL,GAAqBC,EAAEC,EAAEG,CAAC,EAAE,EAAQK,GAAG,CAAC,SAAST,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAOC,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMG,EAAEI,GAAWR,EAAE,aAAaC,CAAC,EAAQI,EAAEG,GAAWR,EAAE,WAAW,CAAC,EAAE,OAAAA,EAAE,iBAAiB,eAAeI,CAAC,EAAEJ,EAAE,iBAAiB,eAAeK,CAAC,EAAQ,IAAI,CAACL,EAAE,oBAAoB,eAAeI,CAAC,EAAEJ,EAAE,oBAAoB,eAAeK,CAAC,CAAC,CAAC,CAAC,EAAQK,GAAG,CAAC,SAASV,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAOC,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMU,EAAYV,GAAG,CAAC,EAAE,EAAEF,GAAqBC,EAAE,WAAWC,CAAC,EAAEW,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcC,GAAG,CAACb,EAAE,EAAEF,GAAqBC,EAAE,aAAac,CAAC,EAAEF,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAX,EAAE,iBAAiB,cAAca,CAAa,EAAQ,IAAI,CAACb,EAAE,oBAAoB,cAAca,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQI,GAAG,CAAC,OAAOZ,GAAG,MAAMM,GAAG,MAAMC,EAAE,EAAQM,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECA58lB,IAAME,GAAM,CAAC,EAAEC,IAAIC,GAAG,KAAK,IAAI,KAAK,IAAIA,EAAED,CAAC,EAAE,CAAC,EAAQE,GAAS,GAAG,EAAE,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC,EAAE,EAAQC,GAAE,uBAA6BH,GAAE,gHAAsHC,GAAE,oGAAoG,SAASG,GAAS,EAAE,CAAC,OAAiB,OAAO,GAAlB,QAAmB,CAAC,IAAMC,GAAE,CAAC,KAAK,GAAc,OAAO,GAAlB,SAAoB,MAAM,WAAW,UAAU,GAAG,CAAC,EAAQC,GAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAED,EAAC,EAAE,CAAC,UAAUN,GAAM,EAAE,CAAC,CAAC,CAAC,EAAQQ,GAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEF,EAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAQG,GAAe,IAAI,CAAC,KAAKR,GAAGI,GAASJ,CAAC,GAAGA,EAAE,SAAS,CAAC,GAAOA,EAAE,MAAM,GAAG,EAAE,SAAjB,EAAwB,MAAM,WAAW,UAAUA,GAAG,GAAGA,IAAI,GAAG,GAASS,GAAED,GAAe,KAAK,EAAQE,GAAEF,GAAe,GAAG,EAAQG,GAAEH,GAAe,IAAI,EAAQI,GAAEJ,GAAe,IAAI,EAAQK,GAAEL,GAAe,IAAI,EAAQM,GAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEJ,EAAC,EAAE,CAAC,MAAM,GAAGA,GAAE,MAAM,CAAC,EAAE,IAAI,UAAU,GAAGA,GAAE,UAAU,IAAI,CAAC,CAAC,CAAC,EAAQK,GAAc,CAAC,EAAEf,IAAIK,GAAG,GAAQD,GAASC,CAAC,GAAGJ,GAAE,KAAKI,CAAC,GAAGA,EAAE,WAAW,CAAC,GAAGL,GAAG,OAAO,UAAU,eAAe,KAAKK,EAAEL,CAAC,GAASgB,GAAW,CAAChB,EAAE,EAAEK,IAAIC,GAAG,CAAC,GAAG,CAACF,GAASE,CAAC,EAAE,OAAOA,EAAE,GAAK,CAAC,EAAEG,EAAEC,EAAEC,CAAC,EAAEL,EAAE,MAAMH,EAAC,EAAE,MAAM,CAAC,CAACH,CAAC,EAAE,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,WAAWS,CAAC,EAAE,CAACJ,CAAC,EAAE,WAAWK,CAAC,EAAE,MAAeC,IAAT,OAAW,WAAWA,CAAC,EAAE,CAAC,CAAC,EAAQM,GAAE,CAAC,KAAKF,GAAc,MAAM,KAAK,EAAE,MAAMC,GAAW,MAAM,aAAa,WAAW,EAAE,UAAU,CAAC,CAAC,IAAI,EAAE,WAAWhB,EAAE,UAAUC,EAAE,MAAM,EAAE,CAAC,IAAI,QAAQ,KAAK,MAAM,CAAC,EAAE,KAAKS,GAAE,UAAUR,GAASF,CAAC,CAAC,EAAE,KAAKU,GAAE,UAAUR,GAASD,CAAC,CAAC,EAAE,KAAKC,GAASI,GAAE,UAAU,CAAC,CAAC,EAAE,GAAG,EAAQY,GAAEnB,GAAM,EAAE,GAAG,EAAQoB,GAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEd,EAAC,EAAE,CAAC,UAAU,GAAG,KAAK,MAAMa,GAAE,CAAC,CAAC,CAAC,CAAC,EAAQE,EAAE,CAAC,KAAKL,GAAc,MAAM,KAAK,EAAE,MAAMC,GAAW,MAAM,QAAQ,MAAM,EAAE,UAAU,CAAC,CAAC,IAAI,EAAE,MAAMhB,EAAE,KAAKC,EAAE,MAAM,EAAE,CAAC,IAAI,QAAQkB,GAAE,UAAU,CAAC,EAAE,KAAKA,GAAE,UAAUnB,CAAC,EAAE,KAAKmB,GAAE,UAAUlB,CAAC,EAAE,KAAKC,GAASI,GAAE,UAAU,CAAC,CAAC,EAAE,GAAG,EAAE,SAASe,GAAS,EAAE,CAAC,IAAIrB,EAAE,GAAOC,EAAE,GAAO,EAAE,GAAOK,EAAE,GAAG,OAAG,EAAE,OAAO,GAAGN,EAAE,EAAE,OAAO,EAAE,CAAC,EAAEC,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,CAAC,EAAEK,EAAE,EAAE,OAAO,EAAE,CAAC,IAAON,EAAE,EAAE,OAAO,EAAE,CAAC,EAAEC,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,CAAC,EAAEK,EAAE,EAAE,OAAO,EAAE,CAAC,EAAEN,GAAGA,EAAEC,GAAGA,EAAE,GAAG,EAAEK,GAAGA,GAAQ,CAAC,IAAI,SAASN,EAAE,EAAE,EAAE,MAAM,SAASC,EAAE,EAAE,EAAE,KAAK,SAAS,EAAE,EAAE,EAAE,MAAMK,EAAE,SAASA,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,IAAMgB,GAAE,CAAC,KAAKP,GAAc,GAAG,EAAE,MAAMM,GAAS,UAAUD,EAAE,SAAS,EAAQG,GAAE,CAAC,KAAK,GAAGH,EAAE,KAAK,CAAC,GAAGE,GAAE,KAAK,CAAC,GAAGL,GAAE,KAAK,CAAC,EAAE,MAAM,GAAGG,EAAE,KAAK,CAAC,EAAEA,EAAE,MAAM,CAAC,EAAEH,GAAE,KAAK,CAAC,EAAEA,GAAE,MAAM,CAAC,EAAEK,GAAE,MAAM,CAAC,EAAE,UAAU,GAAGlB,GAAS,CAAC,EAAE,EAAE,EAAE,eAAe,KAAK,EAAEgB,EAAE,UAAU,CAAC,EAAEH,GAAE,UAAU,CAAC,CAAC,EAAQO,GAAE,OAAaC,GAAE,OAAO,SAASC,GAAKzB,EAAE,CAAC,IAAII,EAAE,EAAEE,EAAEE,EAAE,OAAO,MAAMR,CAAC,GAAGG,GAASH,CAAC,KAAY,GAAUI,EAAEJ,EAAE,MAAME,EAAC,KAAnB,MAAgCE,IAAT,OAAW,OAAOA,EAAE,UAArD,MAAuE,IAAT,OAAW,EAAE,KAAYI,GAAUF,EAAEN,EAAE,MAAMD,EAAC,KAAnB,MAAgCO,IAAT,OAAW,OAAOA,EAAE,UAArD,MAAuEE,IAAT,OAAWA,EAAE,GAAG,CAAC,CAAC,SAASkB,GAAQ1B,EAAE,CAAY,OAAOA,GAAlB,WAAsBA,EAAE,GAAGA,KAAK,IAAMK,EAAE,CAAC,EAAMC,EAAE,EAAQE,EAAER,EAAE,MAAMD,EAAC,EAAKS,IAAGF,EAAEE,EAAE,OAAOR,EAAEA,EAAE,QAAQD,GAAEwB,EAAC,EAAElB,EAAE,KAAK,GAAGG,EAAE,IAAIc,GAAE,KAAK,CAAC,GAAE,IAAMb,EAAET,EAAE,MAAME,EAAC,EAAE,OAAGO,IAAGT,EAAEA,EAAE,QAAQE,GAAEsB,EAAC,EAAEnB,EAAE,KAAK,GAAGI,EAAE,IAAIL,GAAE,KAAK,CAAC,GAAQ,CAAC,OAAOC,EAAE,UAAUC,EAAE,UAAUN,CAAC,CAAC,CAAC,SAAS2B,GAAM,EAAE,CAAC,OAAOD,GAAQ,CAAC,EAAE,MAAM,CAAC,SAASE,GAAkB,EAAE,CAAC,GAAK,CAAC,OAAO7B,EAAE,UAAUC,EAAE,UAAU,CAAC,EAAE0B,GAAQ,CAAC,EAAQrB,EAAEN,EAAE,OAAO,OAAOG,GAAG,CAAC,IAAIH,EAAE,EAAE,QAAQK,EAAE,EAAEA,EAAEC,EAAED,IAAIL,EAAEA,EAAE,QAAQK,EAAEJ,EAAEuB,GAAEC,GAAEpB,EAAEJ,EAAEsB,GAAE,UAAUpB,EAAEE,CAAC,CAAC,EAAEH,GAASC,EAAEE,CAAC,CAAC,CAAC,EAAE,OAAOL,CAAC,CAAC,CAAC,IAAM8B,GAAqB,GAAc,OAAO,GAAlB,SAAoB,EAAE,EAAE,SAASC,GAAkB,EAAE,CAAC,IAAM/B,EAAE4B,GAAM,CAAC,EAA+B,OAArBC,GAAkB,CAAC,EAAW7B,EAAE,IAAI8B,EAAoB,CAAC,CAAC,CAAC,IAAME,GAAE,CAAC,KAAKN,GAAK,MAAME,GAAM,kBAAkBC,GAAkB,kBAAkBE,EAAiB,EAAQE,GAAE,IAAI,IAAI,CAAC,aAAa,WAAW,WAAW,SAAS,CAAC,EAAE,SAASC,GAAmBlC,EAAE,CAAC,GAAG,CAAC,EAAEK,CAAC,EAAEL,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,GAAG,EAAE,GAAmB,IAAhB,cAAkB,OAAOA,EAAE,GAAK,CAACM,CAAC,EAAED,EAAE,MAAMF,EAAC,GAAG,CAAC,EAAE,GAAG,CAACG,EAAE,OAAON,EAAE,IAAM,EAAEK,EAAE,QAAQC,EAAE,EAAE,EAAMG,EAAEwB,GAAE,IAAI,CAAC,EAAE,EAAE,EAAE,OAAA3B,IAAID,IAAII,GAAG,KAAY,EAAE,IAAIA,EAAE,EAAE,GAAG,CAAC,IAAM0B,GAAE,oBAA0BC,GAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEJ,EAAC,EAAE,CAAC,kBAAkB,GAAG,CAAC,IAAMhC,EAAE,EAAE,MAAMmC,EAAC,EAAE,OAAOnC,EAAEA,EAAE,IAAIkC,EAAkB,EAAE,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,ECA9zH,IAAMG,GAAE,mBAAeC,GAAgB,OAAO,YAArB,IAAiC,IAAI,YAAY,IAAI,EAAE,IAAI,KAAK,IAAI,EAAQC,GAAgB,OAAOC,EAArB,IAA4BH,GAAGG,EAAO,sBAAsBH,CAAC,EAAEE,GAAG,WAAY,IAAIA,EAAED,GAAE,CAAC,EAAGD,EAAC,EAAE,SAASI,GAAiBJ,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAM,EAAE,CAAC,EAAMI,EAAE,EAAMC,EAAE,GAAUC,EAAE,GAAY,EAAE,IAAI,QAAcC,EAAE,CAAC,SAAS,CAACR,EAAE,EAAE,GAAMQ,EAAE,KAAQ,CAAC,IAAMC,EAAED,GAAGF,EAAQI,EAAED,EAAER,EAAE,EAAE,UAAG,EAAE,IAAID,CAAC,EAAUU,EAAE,QAAQV,CAAC,IAAhB,KAAmBU,EAAE,KAAKV,CAAC,EAAES,GAAGH,IAAID,EAAEJ,EAAE,SAAeD,CAAC,EAAE,OAAOA,GAAG,CAAC,IAAMC,EAAE,EAAE,QAAQD,CAAC,EAAOC,IAAL,IAAQ,EAAE,OAAOA,EAAE,CAAC,EAAE,EAAE,OAAOD,CAAC,CAAC,EAAE,QAAQS,GAAG,CAAC,GAAGH,EAAEC,EAAE,OAAS,CAA0C,GAAzCD,EAAE,GAAK,CAACL,EAAE,CAAC,EAAE,CAAC,EAAEA,CAAC,EAAE,EAAE,OAAO,EAAEI,EAAEJ,EAAE,OAAUI,EAAE,QAAQH,EAAE,EAAEA,EAAEG,EAAEH,IAAI,CAAC,IAAMG,EAAEJ,EAAEC,CAAC,EAAEG,EAAEI,CAAC,EAAK,EAAE,IAAIJ,CAAC,IAAGG,EAAE,SAASH,CAAC,EAAEL,EAAE,GAAGM,EAAE,GAASC,IAAGA,EAAE,GAAMC,EAAE,QAAQC,CAAC,GAAG,CAAC,EAAE,OAAOD,CAAC,CAAC,IAAMH,GAAE,GAAOC,GAAE,GAASC,GAAE,GAAUI,GAAE,GAAYH,GAAE,CAAC,MAAM,EAAE,UAAU,CAAC,EAAQC,GAAE,CAAC,OAAO,SAAS,YAAY,SAAS,YAAY,EAAQC,GAAED,GAAE,OAAQ,CAACT,EAAEC,KAAKD,EAAEC,CAAC,EAAEG,GAAkB,IAAIG,GAAE,EAAK,EAASP,GAAI,CAAC,CAAC,EAAQY,GAAEH,GAAE,OAAQ,CAACT,EAAEC,IAAI,CAAC,IAAM,EAAES,GAAET,CAAC,EAAE,OAAAD,EAAEC,CAAC,EAAE,CAACD,EAAEC,EAAE,GAAM,EAAE,MAASM,IAAGM,GAAU,EAAS,EAAE,SAASb,EAAEC,EAAE,CAAC,GAAUD,CAAC,EAAG,CAAC,CAAC,EAAQc,GAAEL,GAAE,OAAQ,CAACT,EAAEC,KAAKD,EAAEC,CAAC,EAAES,GAAET,CAAC,EAAE,OAAcD,GAAI,CAAC,CAAC,EAAQe,GAAEN,GAAE,OAAQ,CAACT,EAAEC,KAAKD,EAAEC,CAAC,EAAE,IAAIS,GAAET,CAAC,EAAE,QAAQO,EAAC,EAASR,GAAI,CAAC,CAAC,EAAQgB,GAAYhB,GAAGU,GAAEV,CAAC,EAAE,QAAQQ,EAAC,EAAQS,GAAa,GAAG,CAACV,GAAE,GAAMC,GAAE,MAAMF,GAAEN,GAAE,KAAK,IAAI,KAAK,IAAI,EAAEQ,GAAE,UAAUH,EAAC,EAAE,CAAC,EAAEG,GAAE,UAAU,EAAEG,GAAE,GAAKF,GAAE,QAAQO,EAAW,EAAEL,GAAE,GAASJ,KAAGD,GAAE,GAAMJ,GAAEe,EAAY,EAAE,EAAQJ,GAAU,IAAI,CAACN,GAAE,GAAKD,GAAE,GAAKK,IAAGT,GAAEe,EAAY,CAAC,ECA/pC,IAAMC,GAAM,CAAC,EAAE,EAAE,IAAI,KAAK,IAAI,KAAK,IAAI,EAAE,CAAC,EAAE,CAAC,EAAQC,GAAE,KAAWC,GAAE,IAAUC,GAAE,GAASC,GAAE,IAAUC,GAAE,EAAE,SAASC,GAAW,CAAC,SAAS,EAAE,IAAI,OAAOC,EAAE,IAAI,SAASC,EAAE,EAAE,KAAKC,EAAE,CAAC,EAAE,CAAC,IAAIC,EAAMC,EAAEC,GAAE,GAAG,IAAIT,GAAE,4CAA4C,EAAE,IAAIU,EAAE,EAAEN,EAAEM,EAAEb,GAAMI,GAAEC,GAAEQ,CAAC,EAAE,EAAEb,GAAME,GAAEC,GAAE,EAAE,GAAG,EAAKU,EAAE,GAAGH,EAAEI,GAAG,CAAC,IAAMP,EAAEO,EAAED,EAAQJ,EAAEF,EAAE,EAAQG,EAAEH,EAAEC,EAAQG,EAAEI,GAAgBD,EAAED,CAAC,EAAQG,EAAE,KAAK,IAAI,CAACP,CAAC,EAAE,OAAOR,GAAES,EAAEC,EAAEK,CAAC,EAAEL,EAAEG,GAAG,CAAa,IAAML,EAAVK,EAAED,EAAY,EAAQF,EAAEF,EAAED,EAAEA,EAAQQ,EAAE,KAAK,IAAIH,EAAE,CAAC,EAAE,KAAK,IAAIC,EAAE,CAAC,EAAE,EAAQG,EAAE,KAAK,IAAI,CAACR,CAAC,EAAQS,EAAEH,GAAgB,KAAK,IAAID,EAAE,CAAC,EAAED,CAAC,EAAyB,OAAf,CAACH,EAAEI,CAAC,EAAEb,GAAE,EAAE,GAAG,KAAaU,EAAEK,GAAGC,GAAGC,CAAC,IAAOR,EAAEI,GAAG,CAAC,IAAMP,EAAE,KAAK,IAAI,CAACO,EAAE,CAAC,EAAQL,GAAGK,EAAEN,GAAG,EAAE,EAAE,OAAOD,EAAEE,EAAER,EAAC,EAAEU,EAAEG,GAAG,CAAC,IAAMP,EAAE,KAAK,IAAI,CAACO,EAAE,CAAC,EAAQL,EAAE,EAAE,GAAGD,EAAEM,GAAG,OAAOP,EAAEE,CAAC,GAAE,IAAMO,EAAE,EAAE,EAAQC,EAAEE,GAAgBT,EAAEC,EAAEK,CAAC,EAAS,GAAP,GAAG,IAAO,MAAMC,CAAC,EAAE,MAAM,CAAC,UAAU,IAAI,QAAQ,GAAG,SAAS,CAAC,EAAE,CAAC,IAAMH,EAAE,KAAK,IAAIG,EAAE,CAAC,EAAER,EAAE,MAAM,CAAC,UAAUK,EAAE,QAAQ,EAAED,EAAE,KAAK,KAAKJ,EAAEK,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,IAAMM,GAAE,GAAG,SAASD,GAAgB,EAAE,EAAE,EAAE,CAAC,IAAIX,EAAE,EAAE,QAAQD,EAAE,EAAEA,EAAEa,GAAEb,IAAIC,GAAG,EAAEA,CAAC,EAAE,EAAEA,CAAC,EAAE,OAAOA,CAAC,CAAC,SAASO,GAAgB,EAAE,EAAE,CAAC,OAAO,EAAE,KAAK,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,IAAMM,GAAE,CAAC,WAAW,QAAQ,EAAQC,GAAE,CAAC,YAAY,UAAU,MAAM,EAAE,SAASC,GAAa,EAAE,EAAE,CAAC,OAAO,EAAE,KAAMT,GAAY,EAAEA,CAAC,IAAZ,MAAc,CAAC,CAAC,SAASU,GAAiB,EAAE,CAAC,IAAI,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,UAAU,IAAI,QAAQ,GAAG,KAAK,EAAE,uBAAuB,EAAK,EAAE,CAAC,EAAE,GAAG,CAACD,GAAa,EAAED,EAAC,GAAGC,GAAa,EAAEF,EAAC,EAAE,CAAC,IAAM,EAAEf,GAAW,CAAC,EAAE,EAAE,OAAO,OAAO,OAAO,OAAO,OAAO,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,uBAAuB,GAAK,OAAO,CAAC,CAAC,SAASmB,GAAOX,EAAE,CAAC,GAAG,CAAC,KAAKP,EAAE,EAAE,GAAGC,EAAE,EAAE,UAAUC,EAAE,EAAE,UAAUC,CAAC,EAAEI,EAAEH,EAAEe,GAAEZ,EAAE,CAAC,OAAO,KAAK,YAAY,WAAW,CAAC,EAAE,IAAMD,EAAE,CAAC,KAAK,GAAM,MAAMN,CAAC,EAAK,CAAC,UAAUS,EAAE,QAAQC,EAAE,KAAKC,EAAE,SAASjB,EAAE,SAASC,EAAE,uBAAuBC,CAAC,EAAEqB,GAAiBb,CAAC,EAAMP,EAAEuB,GAAStB,EAAEsB,GAAK,SAASC,GAAc,CAAC,IAAMhB,EAAEX,EAAE,CAACA,EAAE,IAAI,EAAQa,EAAEN,EAAED,EAAQE,EAAEQ,GAAG,EAAE,KAAK,KAAKD,EAAEE,CAAC,GAASP,EAAE,KAAK,KAAKK,EAAEE,CAAC,EAAE,IAAmD,GAAtCR,IAAT,SAAaA,EAAE,KAAK,IAAI,KAAK,IAAIF,EAAED,CAAC,EAAE,IAAI,EAAE,GAAME,EAAE,EAAE,CAAC,IAAMF,EAAEQ,GAAgBJ,EAAEF,CAAC,EAAEL,EAAEM,GAAG,CAAC,IAAMG,EAAE,KAAK,IAAI,CAACJ,EAAEE,EAAED,CAAC,EAAE,OAAOF,EAAEK,IAAID,EAAEH,EAAEE,EAAEG,GAAGP,EAAE,KAAK,IAAIA,EAAEG,CAAC,EAAEI,EAAE,KAAK,IAAIP,EAAEG,CAAC,EAAE,EAAEL,EAAEG,GAAG,CAAC,IAAME,EAAE,KAAK,IAAI,CAACD,EAAEE,EAAEH,CAAC,EAAE,OAAOC,EAAEE,EAAED,GAAG,KAAK,IAAIH,EAAEC,CAAC,GAAGI,EAAEH,EAAEE,EAAEG,GAAGP,EAAEO,EAAE,KAAK,IAAIP,EAAEC,CAAC,GAAGE,GAAG,KAAK,IAAIH,EAAEC,CAAC,GAAGI,EAAEH,EAAEE,EAAEG,GAAGP,EAAEO,EAAE,KAAK,IAAIP,EAAEC,CAAC,EAAE,UAAcC,IAAJ,EAAML,EAAEG,GAAGC,EAAE,KAAK,IAAI,CAACG,EAAEJ,CAAC,GAAGO,GAAGF,EAAED,EAAEG,GAAGP,OAAO,CAAC,IAAMA,EAAEI,EAAE,KAAK,KAAKF,EAAEA,EAAE,CAAC,EAAEL,EAAEM,GAAG,CAAC,IAAMG,EAAE,KAAK,IAAI,CAACJ,EAAEE,EAAED,CAAC,EAAQM,EAAE,KAAK,IAAIT,EAAEG,EAAE,GAAG,EAAE,OAAOF,EAAEK,IAAID,EAAEH,EAAEE,EAAEG,GAAG,KAAK,KAAKE,CAAC,EAAET,EAAEO,EAAE,KAAK,KAAKE,CAAC,GAAGT,CAAC,EAAE,CAAC,OAAAqB,EAAa,EAAQ,CAAC,KAAKhB,GAAG,CAAC,IAAME,EAAEV,EAAEQ,CAAC,EAAE,GAAGT,EAAEU,EAAE,KAAKD,GAAGV,MAAM,CAAC,IAAMK,EAAE,IAAIF,EAAEO,CAAC,EAAQD,EAAE,KAAK,IAAIJ,CAAC,GAAGE,EAAQO,EAAE,KAAK,IAAIR,EAAEM,CAAC,GAAGJ,EAAEG,EAAE,KAAKF,GAAGK,EAAE,OAAAH,EAAE,MAAMA,EAAE,KAAKL,EAAEM,EAASD,CAAC,EAAE,WAAW,IAAI,CAACZ,EAAE,CAACA,EAAE,CAACM,EAAEC,CAAC,EAAE,CAACA,EAAED,CAAC,EAAEqB,EAAa,CAAC,CAAC,CAAC,CAACH,GAAO,mBAAmB,CAAC,EAAE,IAAe,OAAO,GAAlB,UAAgC,OAAO,GAAlB,SAAoB,IAAME,GAAK,GAAG,EAAijH,IAAME,GAAc,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAa,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,EAAQC,GAAa,GAAG,GAAG,KAAK,IAAI,EAAE,CAAC,EAAQC,GAAa,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,GAASC,GAAiB,GAAG,CAAC,IAAM,EAAED,GAAa,CAAC,EAAE,OAAOE,IAAIA,GAAG,GAAG,EAAE,GAAG,EAAEA,CAAC,EAAE,IAAI,EAAE,KAAK,IAAI,EAAE,KAAKA,EAAE,EAAE,EAAE,EAAQC,GAAE,MAAYC,GAAE,EAAE,GAASC,GAAE,EAAE,GAASC,GAAE,GAAqB,IAAMC,GAAEC,GAAa,CAAC,EAAQC,GAAEC,GAAcH,EAAC,EAAQI,GAAEC,GAAaL,EAAC,EAAQM,GAAO,GAAG,EAAE,KAAK,IAAI,KAAK,KAAK,CAAC,CAAC,EAAQC,GAAEJ,GAAcG,EAAM,EAAQE,GAAEH,GAAaE,EAAC,EAAQE,GAAEC,GAAaC,EAAC,EAAQC,GAAET,GAAcM,EAAC,EAAQI,GAAER,GAAaI,EAAC,EAAQK,GAAEC,GAAiBJ,EAAC,EAAQK,GAAE,KAAK,IAAUC,GAAE,MAAM,KAAWC,GAAE,MAAM,KAAWC,GAAU,GAAG,CAAC,GAAO,IAAJ,GAAW,IAAJ,EAAM,OAAO,EAAE,IAAM,EAAE,EAAE,EAAE,OAAO,EAAEC,GAAE,OAAO,EAAE,EAAEC,GAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAEC,GAAEN,GAAE,EAAEC,GAAE,EAAEC,GAAE,KAAK,EAAE,EAAE,MAAM,EAAE,KAAK,EAAQK,GAAEpB,GAAcgB,EAAS,EAAo2I,IAAMK,GAAS,GAAG,EAAQC,GAAgB,CAAC,EAAED,KAAW,CAAC,EAAE,EAAEE,IAAI,CAAC,IAAMC,EAAE,EAAED,EAAQE,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,KAAK,IAAID,CAAC,CAAC,GAAG,OAAOA,GAAG,EAAE,EAAEC,EAAE,EAAEA,CAAC,EAAQC,GAAEJ,GAAgB,EAAQK,GAAEL,GAAgB,KAAK,IAAI,EAAknC,IAAMM,GAAK,CAAC,EAAE,EAAE,IAAI,CAAC,IAAMC,EAAE,EAAE,EAAE,QAAQ,EAAE,GAAGA,EAAEA,GAAGA,EAAE,CAAC,EAA4f,IAAMC,GAAE,GAASC,GAAE,GAAGD,GAAE,GCSr6a,SAARE,EAAwBC,EAAM,CAAa,GAAK,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,MAA+BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,EAAYF,EAAY,EAAQG,EAAalB,IAAY,QAAQA,IAAY,QAAmCmB,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKjB,IAC/8BgB,GAAYd,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEe,GAAQ,GAAM,CAACjB,GAAUI,GAAaO,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGf,GAAaE,EAAU,QAAQ,CAAC,IAAMc,EAAaf,EAAaC,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQH,EAAaG,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQH,EAAaG,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM3C,EAAIkC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAyC,GAAGlB,EAAY,CAC7yB,GAAG,CAACJ,EAAS,CAACuB,GAAgB,IAAI,CAACL,GAAQ,CAAE,EAAE,CAAC,CAAC,EAGjC,IAAIM,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,IAAYC,GAAOpB,EAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAGV,GAAeX,GAAS,IAAI1B,EAAM,CAACmD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,EAAKC,EAAK,IAAIC,EAAQL,IAAQ,IAAGK,EAAK1B,EAAY,CAAC,GAAMqB,IAAQpD,EAAM,OAAO,IAAGyD,EAAK1B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMd,GAAWiC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOhC,GAAYiC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,EAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,GAAGrB,GAAK,WAAW,CAAC,CAAC,GAAGsB,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACjC,EAAU,QAAQsC,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGZ,GAAS,IAAI1B,EAAM,CAACmD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,EAAKC,EAAKC,EAAK,OAAqBE,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBE,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIT,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,MAAMjC,GAAWkC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOjC,GAAYkC,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,OAAO,OAAO,WAAW,CAAC,CAAC,GAAGC,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,EAAEK,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAE,EAAI,IAAMC,GAAe7B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ8B,EAAalC,EAAO,IAAI,EAAQmC,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,EAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAASC,GAAUzC,CAAS,EAAQ0C,GAAgBC,GAAiB,EAAEC,GAAkBC,GAAG,CAAC,GAAGnD,GAAU,CAACyC,EAAa,SAAS,CAACD,IAAgBQ,GAAiB,OAKt5DN,GAAY,UAAU,OAAMA,GAAY,QAAQS,GAAGA,EAAEA,EAAET,GAAY,QAAqE,IAAIU,GAAjDT,GAAS,UAAU,KAAK,EAAEQ,EAAER,GAAS,UAA6B1D,EAAM,KAAQ4D,GAAQ,UAASO,GAAOlE,GAAa0D,EAAK,SAASQ,EAAMR,EAAK,QAAQS,GAAK,EAAEb,GAAeI,EAAK,OAAO,EAAED,GAAS,QAAQQ,EAAML,KAAmC3D,IAAY,SAAQsD,EAAa,QAAQ,MAAM,UAAU,eAAeG,EAAK,cAAiBzD,IAAY,UAASsD,EAAa,QAAQ,MAAM,UAAU,cAAcG,EAAK,cAAiBzD,IAAY,QAAOsD,EAAa,QAAQ,MAAM,UAAU,eAAeG,EAAK,cAAiBzD,IAAY,WAAUsD,EAAa,QAAQ,MAAM,UAAU,cAAcG,EAAK,cAAc,CAAC,EAAc,IAAMU,GAAcjD,EAAa,WAAW,YAAkBkD,GAAe7D,EAAU,EAAQ8D,GAAa,IAAI9D,EAAU,EAAQ+D,GAAeC,GAAM/D,EAAU,EAAE4D,EAAc,EAAQI,GAAa,IAAIhE,EAAgBiE,GAAS,mBAAmBN,qBAAgC1D,MAAc6D,yBAAqCF,yBAAqCC,sBAAgC5D,MAAc+D,OAAmC,OAAIvD,EAAuW+B,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG0B,GAAe,QAAQ5C,GAAQ,gBAAgBzB,EAAYoE,GAAS,OAAU,aAAapE,EAAYoE,GAAS,OAAU,UAAUpE,EAAYoE,GAAS,OAAU,SAASnE,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIO,EAAU,SAAuBwD,EAAM,KAAK,CAAC,MAAM,CAAC,GAAGD,GAAe,IAAInF,EAAI,IAAIS,IAAY,UAAU,CAACqD,GAAe,KAAKrD,IAAY,SAAS,CAACqD,GAAe,WAAWpD,EAAU,SAAS,WAAW,cAAciB,EAAa,MAAM,SAAS,WAAW,YAAY,GAAGd,CAAK,EAAE,IAAIkD,EAAa,aAAa,IAAII,GAAQ,QAAQ,GAAK,aAAa,IAAIA,GAAQ,QAAQ,GAAM,SAAS,CAAC/B,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAA/9B+C,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAe5B,EAAK,MAAM,CAAC,MAAM6B,GAAY,SAAS,QAAG,CAAC,EAAgB7B,EAAK,IAAI,CAAC,MAAM8B,GAAY,SAAS,oBAAoB,CAAC,EAAgB9B,EAAK,IAAI,CAAC,MAAM+B,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAAorB,CAA2B3F,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,EAA0B4F,GAAoB5F,EAAO,CAAC,MAAM,CAAC,KAAK6F,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,gBAAiB,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,aAAc,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,OAAO5F,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK4F,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO5F,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK4F,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO5F,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK4F,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO5F,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK4F,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMP,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBE,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,EAAiDR,GAAM,CAACW,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EClB9iK,IAAMC,GAAYC,GAASC,CAAM,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,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,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,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,OAAqBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,KAAK,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAASC,EAAI,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAKD,EAASN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAW,OAAOA,EAASD,EAAM,WAAW,MAAME,IAAM,OAAOA,EAAI,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMnB,IAAWA,EAAS,KAAK,GAAG,EAAEmB,EAAM,iBAAuBI,GAA8BC,GAAW,SAASL,EAAME,EAAI,CAAC,GAAK,CAAC,aAAAI,CAAY,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3B,EAAQ,GAAG4B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAzB,EAAW,SAAAV,CAAQ,EAAEoC,GAAgB,CAAC,WAAAxC,GAAW,eAAe,YAAY,YAAAO,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwC,EAAiBf,GAAuBH,EAAMnB,CAAQ,EAAQsC,EAAY,IAAQP,IAAc,YAA6CQ,EAAa,IAAQR,IAAc,YAA6CS,EAAsBC,GAAM,EAAE,OAAqB5B,EAAK6B,GAAY,CAAC,GAAGb,GAA4CW,EAAgB,SAAuB3B,EAAK8B,EAAO,IAAI,CAAC,QAAQzC,EAAQ,QAAQF,EAAS,aAAa,IAAIkC,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUU,GAAG,eAAeZ,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBnB,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAuBmC,EAAMF,EAAO,IAAI,CAAC,GAAGb,EAAU,UAAUc,GAAG,gBAAgBhB,CAAS,EAAE,mBAAmB,QAAQ,iBAAiBS,EAAiB,SAAS,YAAY,IAAIhB,EAAI,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,+GAA+G,GAAGM,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,iBAAiB,CAAC,EAAE,GAAG7B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEiC,EAAYE,CAAc,EAAE,SAAS,CAACK,EAAY,GAAiBzB,EAAK8B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBN,EAAiB,SAAS,sBAAsB,SAAuBxB,EAAKlB,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAekD,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBN,EAAiB,SAAS,YAAY,SAAS,CAAexB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,KAAK,QAAQ,gBAAgB,KAAK,eAAe,KAAK,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,q6DAAq6D,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,+BAA+B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,4+FAA4+F,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,kxDAAkxD,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,0/BAA0/B,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,uoJAAuoJ,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKkC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,IAAI,IAAI,uCAAuC,8FAA8F,EAAE,IAAI,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,iBAAiBV,EAAiB,SAAS,WAAW,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,8BAA8B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,kuLAAkuL,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEE,EAAa,GAAiB1B,EAAK8B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,SAAuBxB,EAAKlB,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAekD,EAAMF,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,SAAS,iBAAiBN,EAAiB,SAAS,YAAY,SAAS,CAAexB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,8BAA8B,OAAO,WAAW,iBAAiBT,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,s7DAAs7D,aAAa,SAAS,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,++FAA++F,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,gxDAAgxD,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,6/BAA6/B,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,0oJAA0oJ,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,y2IAAy2I,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKkC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,iBAAiBV,EAAiB,SAAS,WAAW,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,wuLAAwuL,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAgBQ,EAAMF,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,SAAS,iBAAiBN,EAAiB,SAAS,YAAY,SAAS,CAAexB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,8BAA8B,OAAO,WAAW,iBAAiBT,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,s7DAAs7D,aAAa,SAAS,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,++FAA++F,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,gxDAAgxD,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,6/BAA6/B,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,0oJAA0oJ,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,y2IAAy2I,mBAAmB,EAAI,CAAC,EAAgBxB,EAAKkC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,iBAAiBV,EAAiB,SAAS,WAAW,CAAC,EAAgBxB,EAAKiC,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,wuLAAwuL,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,gWAAgW,mJAAmJ,+SAA+S,yJAAyJ,0MAA0M,0KAA0K,0KAA0K,yMAAyM,4NAA4N,wMAAwM,8FAA8F,2KAA2K,0KAA0K,2KAA2K,kxBAAkxB,EAMp36EC,GAAgBC,GAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAGxD,EAAW,CAAC",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "clamp", "s", "e", "sanitize", "t", "isString", "r", "n", "a", "createUnitType", "o", "c", "l", "i", "p", "u", "isColorString", "splitColor", "f", "m", "g", "h", "parseHex", "b", "d", "v", "y", "test", "analyse", "parse", "createTransformer", "convertNumbersToZero", "getAnimatableNone", "O", "j", "applyDefaultFilter", "F", "N", "e", "t", "n", "window", "createRenderStep", "s", "r", "c", "a", "l", "f", "o", "u", "startLoop", "d", "i", "processStep", "processFrame", "clamp", "d", "h", "m", "y", "g", "findSpring", "n", "o", "s", "r", "i", "t", "u", "e", "calcAngularFreq", "l", "p", "f", "approximateRoot", "v", "M", "x", "isSpringType", "getSpringOptions", "spring", "__rest", "zero", "createSpring", "reverseEasing", "mirrorEasing", "createExpoIn", "createBackIn", "createAnticipate", "t", "T", "w", "A", "R", "F", "createExpoIn", "D", "reverseEasing", "j", "mirrorEasing", "circIn", "q", "I", "P", "createBackIn", "T", "k", "E", "B", "createAnticipate", "C", "N", "U", "bounceOut", "w", "A", "R", "z", "identity", "createAttractor", "o", "s", "r", "G", "H", "wrap", "o", "Q", "V", "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", "numChildren", "j", "hasChildren", "isHorizontal", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "fe", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "SVG", "Image2", "css", "FramerTHpLozDff", "withCSS", "THpLozDff_default", "addPropertyControls", "ControlType", "addFonts"]
}
